blob: 6233af5d52ba490462639a55e1c3dd2e8e4a92f1 [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 Lattnerc64daab2010-01-26 05:02:42 +00001105const MCExpr *
1106X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1107 const MachineBasicBlock *MBB,
1108 unsigned uid,MCContext &Ctx) const{
1109 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1110 Subtarget->isPICStyleGOT());
1111 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1112 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001113 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1114 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001115}
1116
Evan Chengcc415862007-11-09 01:32:10 +00001117/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1118/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001119SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001120 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001121 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001122 // This doesn't have DebugLoc associated with it, but is not really the
1123 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001124 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001125 return Table;
1126}
1127
Chris Lattner589c6f62010-01-26 06:28:43 +00001128/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1129/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1130/// MCExpr.
1131const MCExpr *X86TargetLowering::
1132getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1133 MCContext &Ctx) const {
1134 // X86-64 uses RIP relative addressing based on the jump table label.
1135 if (Subtarget->isPICStyleRIPRel())
1136 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1137
1138 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001139 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001140}
1141
Bill Wendlingb4202b82009-07-01 18:50:55 +00001142/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling20c568f2009-06-30 22:38:32 +00001143unsigned X86TargetLowering::getFunctionAlignment(const Function *F) const {
Dan Gohman25103a22009-08-18 00:20:06 +00001144 return F->hasFnAttr(Attribute::OptimizeForSize) ? 0 : 4;
Bill Wendling20c568f2009-06-30 22:38:32 +00001145}
1146
Evan Chengdee81012010-07-26 21:50:05 +00001147std::pair<const TargetRegisterClass*, uint8_t>
1148X86TargetLowering::findRepresentativeClass(EVT VT) const{
1149 const TargetRegisterClass *RRC = 0;
1150 uint8_t Cost = 1;
1151 switch (VT.getSimpleVT().SimpleTy) {
1152 default:
1153 return TargetLowering::findRepresentativeClass(VT);
1154 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1155 RRC = (Subtarget->is64Bit()
1156 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1157 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001158 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001159 RRC = X86::VR64RegisterClass;
1160 break;
1161 case MVT::f32: case MVT::f64:
1162 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1163 case MVT::v4f32: case MVT::v2f64:
1164 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1165 case MVT::v4f64:
1166 RRC = X86::VR128RegisterClass;
1167 break;
1168 }
1169 return std::make_pair(RRC, Cost);
1170}
1171
Evan Cheng70017e42010-07-24 00:39:05 +00001172unsigned
1173X86TargetLowering::getRegPressureLimit(const TargetRegisterClass *RC,
1174 MachineFunction &MF) const {
1175 unsigned FPDiff = RegInfo->hasFP(MF) ? 1 : 0;
1176 switch (RC->getID()) {
1177 default:
1178 return 0;
1179 case X86::GR32RegClassID:
1180 return 4 - FPDiff;
1181 case X86::GR64RegClassID:
1182 return 8 - FPDiff;
1183 case X86::VR128RegClassID:
1184 return Subtarget->is64Bit() ? 10 : 4;
1185 case X86::VR64RegClassID:
1186 return 4;
1187 }
1188}
1189
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001190bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1191 unsigned &Offset) const {
1192 if (!Subtarget->isTargetLinux())
1193 return false;
1194
1195 if (Subtarget->is64Bit()) {
1196 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1197 Offset = 0x28;
1198 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1199 AddressSpace = 256;
1200 else
1201 AddressSpace = 257;
1202 } else {
1203 // %gs:0x14 on i386
1204 Offset = 0x14;
1205 AddressSpace = 256;
1206 }
1207 return true;
1208}
1209
1210
Chris Lattner2b02a442007-02-25 08:29:00 +00001211//===----------------------------------------------------------------------===//
1212// Return Value Calling Convention Implementation
1213//===----------------------------------------------------------------------===//
1214
Chris Lattner59ed56b2007-02-28 04:55:35 +00001215#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001216
Michael J. Spencerec38de22010-10-10 22:04:20 +00001217bool
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001218X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001219 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001220 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001221 SmallVector<CCValAssign, 16> RVLocs;
1222 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001223 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001224 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001225}
1226
Dan Gohman98ca4f22009-08-05 01:29:28 +00001227SDValue
1228X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001229 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001230 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001231 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001232 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001233 MachineFunction &MF = DAG.getMachineFunction();
1234 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001235
Chris Lattner9774c912007-02-27 05:28:59 +00001236 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001237 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1238 RVLocs, *DAG.getContext());
1239 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001240
Evan Chengdcea1632010-02-04 02:40:39 +00001241 // Add the regs to the liveout set for the function.
1242 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1243 for (unsigned i = 0; i != RVLocs.size(); ++i)
1244 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1245 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001246
Dan Gohman475871a2008-07-27 21:46:04 +00001247 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001248
Dan Gohman475871a2008-07-27 21:46:04 +00001249 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001250 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1251 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001252 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1253 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001254
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001255 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001256 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1257 CCValAssign &VA = RVLocs[i];
1258 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001259 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001260 EVT ValVT = ValToCopy.getValueType();
1261
Dale Johannesenc4510512010-09-24 19:05:48 +00001262 // If this is x86-64, and we disabled SSE, we can't return FP values,
1263 // or SSE or MMX vectors.
1264 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1265 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1266 (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001267 report_fatal_error("SSE register return with SSE disabled");
1268 }
1269 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1270 // llvm-gcc has never done it right and no one has noticed, so this
1271 // should be OK for now.
1272 if (ValVT == MVT::f64 &&
Chris Lattner83069682010-08-26 05:51:22 +00001273 (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001274 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001275
Chris Lattner447ff682008-03-11 03:23:40 +00001276 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1277 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001278 if (VA.getLocReg() == X86::ST0 ||
1279 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001280 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1281 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001282 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001283 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001284 RetOps.push_back(ValToCopy);
1285 // Don't emit a copytoreg.
1286 continue;
1287 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001288
Evan Cheng242b38b2009-02-23 09:03:22 +00001289 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1290 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001291 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001292 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001293 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001294 ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001295 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1296 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001297 // If we don't have SSE2 available, convert to v4f32 so the generated
1298 // register is legal.
1299 if (!Subtarget->hasSSE2())
1300 ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32,ValToCopy);
1301 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001302 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001303 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001304
Dale Johannesendd64c412009-02-04 00:33:20 +00001305 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001306 Flag = Chain.getValue(1);
1307 }
Dan Gohman61a92132008-04-21 23:59:07 +00001308
1309 // The x86-64 ABI for returning structs by value requires that we copy
1310 // the sret argument into %rax for the return. We saved the argument into
1311 // a virtual register in the entry block, so now we copy the value out
1312 // and into %rax.
1313 if (Subtarget->is64Bit() &&
1314 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1315 MachineFunction &MF = DAG.getMachineFunction();
1316 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1317 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001318 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001319 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001320 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001321
Dale Johannesendd64c412009-02-04 00:33:20 +00001322 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001323 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001324
1325 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001326 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001327 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001328
Chris Lattner447ff682008-03-11 03:23:40 +00001329 RetOps[0] = Chain; // Update chain.
1330
1331 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001332 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001333 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001334
1335 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001336 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001337}
1338
Dan Gohman98ca4f22009-08-05 01:29:28 +00001339/// LowerCallResult - Lower the result values of a call into the
1340/// appropriate copies out of appropriate physical registers.
1341///
1342SDValue
1343X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001344 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001345 const SmallVectorImpl<ISD::InputArg> &Ins,
1346 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001347 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001348
Chris Lattnere32bbf62007-02-28 07:09:55 +00001349 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001350 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001351 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001352 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +00001353 RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001354 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001355
Chris Lattner3085e152007-02-25 08:59:22 +00001356 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001357 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001358 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001359 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001360
Torok Edwin3f142c32009-02-01 18:15:56 +00001361 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001362 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Dan Gohman98ca4f22009-08-05 01:29:28 +00001363 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001364 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001365 }
1366
Evan Cheng79fb3b42009-02-20 20:43:02 +00001367 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001368
1369 // If this is a call to a function that returns an fp value on the floating
1370 // point stack, we must guarantee the the value is popped from the stack, so
1371 // a CopyFromReg is not good enough - the copy instruction may be eliminated
1372 // if the return value is not used. We use the FpGET_ST0 instructions
1373 // instead.
1374 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1375 // If we prefer to use the value in xmm registers, copy it out as f80 and
1376 // use a truncate to move it from fp stack reg to xmm reg.
1377 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1378 bool isST0 = VA.getLocReg() == X86::ST0;
1379 unsigned Opc = 0;
1380 if (CopyVT == MVT::f32) Opc = isST0 ? X86::FpGET_ST0_32:X86::FpGET_ST1_32;
1381 if (CopyVT == MVT::f64) Opc = isST0 ? X86::FpGET_ST0_64:X86::FpGET_ST1_64;
1382 if (CopyVT == MVT::f80) Opc = isST0 ? X86::FpGET_ST0_80:X86::FpGET_ST1_80;
1383 SDValue Ops[] = { Chain, InFlag };
1384 Chain = SDValue(DAG.getMachineNode(Opc, dl, CopyVT, MVT::Other, MVT::Flag,
1385 Ops, 2), 1);
1386 Val = Chain.getValue(0);
1387
1388 // Round the f80 to the right size, which also moves it to the appropriate
1389 // xmm register.
1390 if (CopyVT != VA.getValVT())
1391 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1392 // This truncation won't change the value.
1393 DAG.getIntPtrConstant(1));
1394 } else if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Cheng242b38b2009-02-23 09:03:22 +00001395 // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1396 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1397 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001398 MVT::v2i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001399 Val = Chain.getValue(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001400 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1401 Val, DAG.getConstant(0, MVT::i64));
Evan Cheng242b38b2009-02-23 09:03:22 +00001402 } else {
1403 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001404 MVT::i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001405 Val = Chain.getValue(0);
1406 }
Evan Cheng79fb3b42009-02-20 20:43:02 +00001407 Val = DAG.getNode(ISD::BIT_CONVERT, dl, CopyVT, Val);
1408 } else {
1409 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1410 CopyVT, InFlag).getValue(1);
1411 Val = Chain.getValue(0);
1412 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001413 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001414 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001415 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001416
Dan Gohman98ca4f22009-08-05 01:29:28 +00001417 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001418}
1419
1420
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001421//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001422// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001423//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001424// StdCall calling convention seems to be standard for many Windows' API
1425// routines and around. It differs from C calling convention just a little:
1426// callee should clean up the stack, not caller. Symbols should be also
1427// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001428// For info on fast calling convention see Fast Calling Convention (tail call)
1429// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001430
Dan Gohman98ca4f22009-08-05 01:29:28 +00001431/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001432/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001433static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1434 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001435 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001436
Dan Gohman98ca4f22009-08-05 01:29:28 +00001437 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001438}
1439
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001440/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001441/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001442static bool
1443ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1444 if (Ins.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 Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001448}
1449
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001450/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1451/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001452/// the specific parameter attribute. The copy will be passed as a byval
1453/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001454static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001455CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001456 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1457 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001458 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001459
Dale Johannesendd64c412009-02-04 00:33:20 +00001460 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Mon P Wang20adc9d2010-04-04 03:10:48 +00001461 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001462 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001463}
1464
Chris Lattner29689432010-03-11 00:22:57 +00001465/// IsTailCallConvention - Return true if the calling convention is one that
1466/// supports tail call optimization.
1467static bool IsTailCallConvention(CallingConv::ID CC) {
1468 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1469}
1470
Evan Cheng0c439eb2010-01-27 00:07:07 +00001471/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1472/// a tailcall target by changing its ABI.
1473static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001474 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001475}
1476
Dan Gohman98ca4f22009-08-05 01:29:28 +00001477SDValue
1478X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001479 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001480 const SmallVectorImpl<ISD::InputArg> &Ins,
1481 DebugLoc dl, SelectionDAG &DAG,
1482 const CCValAssign &VA,
1483 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001484 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001485 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001486 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001487 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001488 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001489 EVT ValVT;
1490
1491 // If value is passed by pointer we have address passed instead of the value
1492 // itself.
1493 if (VA.getLocInfo() == CCValAssign::Indirect)
1494 ValVT = VA.getLocVT();
1495 else
1496 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001497
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001498 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001499 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001500 // In case of tail call optimization mark all arguments mutable. Since they
1501 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001502 if (Flags.isByVal()) {
1503 int FI = MFI->CreateFixedObject(Flags.getByValSize(),
Evan Chenged2ae132010-07-03 00:40:23 +00001504 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001505 return DAG.getFrameIndex(FI, getPointerTy());
1506 } else {
1507 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001508 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001509 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1510 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001511 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001512 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001513 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001514}
1515
Dan Gohman475871a2008-07-27 21:46:04 +00001516SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001517X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001518 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001519 bool isVarArg,
1520 const SmallVectorImpl<ISD::InputArg> &Ins,
1521 DebugLoc dl,
1522 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001523 SmallVectorImpl<SDValue> &InVals)
1524 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001525 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001526 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001527
Gordon Henriksen86737662008-01-05 16:56:59 +00001528 const Function* Fn = MF.getFunction();
1529 if (Fn->hasExternalLinkage() &&
1530 Subtarget->isTargetCygMing() &&
1531 Fn->getName() == "main")
1532 FuncInfo->setForceFramePointer(true);
1533
Evan Cheng1bc78042006-04-26 01:20:17 +00001534 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001535 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001536 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001537
Chris Lattner29689432010-03-11 00:22:57 +00001538 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1539 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001540
Chris Lattner638402b2007-02-28 07:00:42 +00001541 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001542 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001543 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1544 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00001545 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001546
Chris Lattnerf39f7712007-02-28 05:46:49 +00001547 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001548 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001549 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1550 CCValAssign &VA = ArgLocs[i];
1551 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1552 // places.
1553 assert(VA.getValNo() != LastVal &&
1554 "Don't support value assigned to multiple locs yet");
1555 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001556
Chris Lattnerf39f7712007-02-28 05:46:49 +00001557 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001558 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001559 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001560 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001561 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001562 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001563 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001564 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001565 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001566 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001567 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001568 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1569 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001570 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001571 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001572 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001573 RC = X86::VR64RegisterClass;
1574 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001575 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001576
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001577 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001578 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001579
Chris Lattnerf39f7712007-02-28 05:46:49 +00001580 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1581 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1582 // right size.
1583 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001584 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001585 DAG.getValueType(VA.getValVT()));
1586 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001587 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001588 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001589 else if (VA.getLocInfo() == CCValAssign::BCvt)
Anton Korobeynikov6dde14b2009-08-03 08:14:14 +00001590 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001591
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001592 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001593 // Handle MMX values passed in XMM regs.
1594 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001595 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1596 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001597 } else
1598 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001599 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001600 } else {
1601 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001602 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001603 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001604
1605 // If value is passed via pointer - do a load.
1606 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001607 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1608 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001609
Dan Gohman98ca4f22009-08-05 01:29:28 +00001610 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001611 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001612
Dan Gohman61a92132008-04-21 23:59:07 +00001613 // The x86-64 ABI for returning structs by value requires that we copy
1614 // the sret argument into %rax for the return. Save the argument into
1615 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001616 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001617 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1618 unsigned Reg = FuncInfo->getSRetReturnReg();
1619 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001620 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001621 FuncInfo->setSRetReturnReg(Reg);
1622 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001623 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001624 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001625 }
1626
Chris Lattnerf39f7712007-02-28 05:46:49 +00001627 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001628 // Align stack specially for tail calls.
1629 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001630 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001631
Evan Cheng1bc78042006-04-26 01:20:17 +00001632 // If the function takes variable number of arguments, make a frame index for
1633 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001634 if (isVarArg) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001635 if (!IsWin64 && (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1636 CallConv != CallingConv::X86_ThisCall))) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001637 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001638 }
1639 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001640 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1641
1642 // FIXME: We should really autogenerate these arrays
1643 static const unsigned GPR64ArgRegsWin64[] = {
1644 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001645 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001646 static const unsigned GPR64ArgRegs64Bit[] = {
1647 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1648 };
1649 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001650 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1651 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1652 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001653 const unsigned *GPR64ArgRegs;
1654 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001655
1656 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001657 // The XMM registers which might contain var arg parameters are shadowed
1658 // in their paired GPR. So we only need to save the GPR to their home
1659 // slots.
1660 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001661 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001662 } else {
1663 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1664 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001665
1666 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001667 }
1668 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1669 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001670
Devang Patel578efa92009-06-05 21:57:13 +00001671 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Evan Chengc7ce29b2009-02-13 22:36:38 +00001672 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001673 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001674 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001675 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001676 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00001677 // Kernel mode asks for SSE to be disabled, so don't push them
1678 // on the stack.
1679 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001680
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001681 if (IsWin64) {
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001682 const TargetFrameInfo &TFI = *getTargetMachine().getFrameInfo();
1683 // Get to the caller-allocated home save location. Add 8 to account
1684 // for the return address.
1685 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001686 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001687 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001688 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
1689 } else {
1690 // For X86-64, if there are vararg parameters that are passed via
1691 // registers, then we must store them to their spots on the stack so they
1692 // may be loaded by deferencing the result of va_next.
1693 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1694 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1695 FuncInfo->setRegSaveFrameIndex(
1696 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001697 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001698 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001699
Gordon Henriksen86737662008-01-05 16:56:59 +00001700 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001701 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001702 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1703 getPointerTy());
1704 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001705 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001706 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1707 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001708 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
1709 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001710 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001711 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001712 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001713 MachinePointerInfo::getFixedStack(
1714 FuncInfo->getRegSaveFrameIndex(), Offset),
1715 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001716 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001717 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001718 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001719
Dan Gohmanface41a2009-08-16 21:24:25 +00001720 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1721 // Now store the XMM (fp + vector) parameter registers.
1722 SmallVector<SDValue, 11> SaveXMMOps;
1723 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001724
Dan Gohmanface41a2009-08-16 21:24:25 +00001725 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
1726 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1727 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001728
Dan Gohman1e93df62010-04-17 14:41:14 +00001729 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1730 FuncInfo->getRegSaveFrameIndex()));
1731 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1732 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001733
Dan Gohmanface41a2009-08-16 21:24:25 +00001734 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001735 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Dan Gohmanface41a2009-08-16 21:24:25 +00001736 X86::VR128RegisterClass);
1737 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1738 SaveXMMOps.push_back(Val);
1739 }
1740 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1741 MVT::Other,
1742 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001743 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001744
1745 if (!MemOps.empty())
1746 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1747 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001748 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001749 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001750
Gordon Henriksen86737662008-01-05 16:56:59 +00001751 // Some CCs need callee pop.
Dan Gohman4d3d6e12010-05-27 18:43:40 +00001752 if (Subtarget->IsCalleePop(isVarArg, CallConv)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001753 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001754 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001755 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001756 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001757 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001758 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001759 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001760
Gordon Henriksen86737662008-01-05 16:56:59 +00001761 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001762 // RegSaveFrameIndex is X86-64 only.
1763 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001764 if (CallConv == CallingConv::X86_FastCall ||
1765 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001766 // fastcc functions can't have varargs.
1767 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001768 }
Evan Cheng25caf632006-05-23 21:06:34 +00001769
Dan Gohman98ca4f22009-08-05 01:29:28 +00001770 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001771}
1772
Dan Gohman475871a2008-07-27 21:46:04 +00001773SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001774X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1775 SDValue StackPtr, SDValue Arg,
1776 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001777 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001778 ISD::ArgFlagsTy Flags) const {
Anton Korobeynikovc7c62bb2010-09-02 22:31:32 +00001779 const unsigned FirstStackArgOffset = (Subtarget->isTargetWin64() ? 32 : 0);
1780 unsigned LocMemOffset = FirstStackArgOffset + VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001781 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001782 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001783 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001784 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001785
1786 return DAG.getStore(Chain, dl, Arg, PtrOff,
1787 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001788 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001789}
1790
Bill Wendling64e87322009-01-16 19:25:27 +00001791/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001792/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001793SDValue
1794X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001795 SDValue &OutRetAddr, SDValue Chain,
1796 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001797 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001798 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001799 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001800 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001801
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001802 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001803 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1804 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001805 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001806}
1807
1808/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1809/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001810static SDValue
1811EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001812 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001813 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001814 // Store the return address to the appropriate stack slot.
1815 if (!FPDiff) return Chain;
1816 // Calculate the new stack slot for the return address.
1817 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001818 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001819 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001820 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001821 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001822 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001823 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001824 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001825 return Chain;
1826}
1827
Dan Gohman98ca4f22009-08-05 01:29:28 +00001828SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001829X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001830 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001831 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001832 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001833 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001834 const SmallVectorImpl<ISD::InputArg> &Ins,
1835 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001836 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001837 MachineFunction &MF = DAG.getMachineFunction();
1838 bool Is64Bit = Subtarget->is64Bit();
1839 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001840 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001841
Evan Cheng5f941932010-02-05 02:21:12 +00001842 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001843 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001844 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1845 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001846 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001847
1848 // Sibcalls are automatically detected tailcalls which do not require
1849 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001850 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001851 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001852
1853 if (isTailCall)
1854 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001855 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001856
Chris Lattner29689432010-03-11 00:22:57 +00001857 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1858 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001859
Chris Lattner638402b2007-02-28 07:00:42 +00001860 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001861 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001862 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1863 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00001864 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001865
Chris Lattner423c5f42007-02-28 05:31:48 +00001866 // Get a count of how many bytes are to be pushed on the stack.
1867 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00001868 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00001869 // This is a sibcall. The memory operands are available in caller's
1870 // own caller's stack.
1871 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00001872 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00001873 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001874
Gordon Henriksen86737662008-01-05 16:56:59 +00001875 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00001876 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001877 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00001878 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00001879 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1880 FPDiff = NumBytesCallerPushed - NumBytes;
1881
1882 // Set the delta of movement of the returnaddr stackslot.
1883 // But only set if delta is greater than previous delta.
1884 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1885 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1886 }
1887
Evan Chengf22f9b32010-02-06 03:28:46 +00001888 if (!IsSibcall)
1889 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001890
Dan Gohman475871a2008-07-27 21:46:04 +00001891 SDValue RetAddrFrIdx;
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001892 // Load return adress for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00001893 if (isTailCall && FPDiff)
1894 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
1895 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00001896
Dan Gohman475871a2008-07-27 21:46:04 +00001897 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1898 SmallVector<SDValue, 8> MemOpChains;
1899 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00001900
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001901 // Walk the register/memloc assignments, inserting copies/loads. In the case
1902 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00001903 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1904 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001905 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00001906 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00001907 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00001908 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00001909
Chris Lattner423c5f42007-02-28 05:31:48 +00001910 // Promote the value if needed.
1911 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001912 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00001913 case CCValAssign::Full: break;
1914 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001915 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001916 break;
1917 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001918 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001919 break;
1920 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001921 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
1922 // Special case: passing MMX values in XMM registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00001923 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
1924 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1925 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001926 } else
1927 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
1928 break;
1929 case CCValAssign::BCvt:
1930 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001931 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001932 case CCValAssign::Indirect: {
1933 // Store the argument.
1934 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00001935 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001936 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00001937 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001938 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001939 Arg = SpillSlot;
1940 break;
1941 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00001942 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001943
Chris Lattner423c5f42007-02-28 05:31:48 +00001944 if (VA.isRegLoc()) {
1945 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00001946 if (isVarArg && Subtarget->isTargetWin64()) {
1947 // Win64 ABI requires argument XMM reg to be copied to the corresponding
1948 // shadow reg if callee is a varargs function.
1949 unsigned ShadowReg = 0;
1950 switch (VA.getLocReg()) {
1951 case X86::XMM0: ShadowReg = X86::RCX; break;
1952 case X86::XMM1: ShadowReg = X86::RDX; break;
1953 case X86::XMM2: ShadowReg = X86::R8; break;
1954 case X86::XMM3: ShadowReg = X86::R9; break;
1955 }
1956 if (ShadowReg)
1957 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
1958 }
Evan Chengf22f9b32010-02-06 03:28:46 +00001959 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00001960 assert(VA.isMemLoc());
1961 if (StackPtr.getNode() == 0)
1962 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
1963 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1964 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001965 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001966 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001967
Evan Cheng32fe1032006-05-25 00:59:30 +00001968 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00001969 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001970 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001971
Evan Cheng347d5f72006-04-28 21:29:37 +00001972 // Build a sequence of copy-to-reg nodes chained together with token chain
1973 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001974 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001975 // Tail call byval lowering might overwrite argument registers so in case of
1976 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001977 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001978 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001979 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00001980 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001981 InFlag = Chain.getValue(1);
1982 }
Gordon Henriksen86737662008-01-05 16:56:59 +00001983
Chris Lattner88e1fd52009-07-09 04:24:46 +00001984 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00001985 // ELF / PIC requires GOT in the EBX register before function calls via PLT
1986 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001987 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00001988 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
1989 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001990 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00001991 InFlag);
1992 InFlag = Chain.getValue(1);
1993 } else {
1994 // If we are tail calling and generating PIC/GOT style code load the
1995 // address of the callee into ECX. The value in ecx is used as target of
1996 // the tail jump. This is done to circumvent the ebx/callee-saved problem
1997 // for tail calls on PIC/GOT architectures. Normally we would just put the
1998 // address of GOT into ebx and then call target@PLT. But for tail calls
1999 // ebx would be restored (since ebx is callee saved) before jumping to the
2000 // target@PLT.
2001
2002 // Note: The actual moving to ECX is done further down.
2003 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2004 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2005 !G->getGlobal()->hasProtectedVisibility())
2006 Callee = LowerGlobalAddress(Callee, DAG);
2007 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002008 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002009 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002010 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002011
Nate Begemanc8ea6732010-07-21 20:49:52 +00002012 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64()) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002013 // From AMD64 ABI document:
2014 // For calls that may call functions that use varargs or stdargs
2015 // (prototype-less calls or calls to functions containing ellipsis (...) in
2016 // the declaration) %al is used as hidden argument to specify the number
2017 // of SSE registers used. The contents of %al do not need to match exactly
2018 // the number of registers, but must be an ubound on the number of SSE
2019 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002020
Gordon Henriksen86737662008-01-05 16:56:59 +00002021 // Count the number of XMM registers allocated.
2022 static const unsigned XMMArgRegs[] = {
2023 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2024 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2025 };
2026 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Scott Michelfdc40a02009-02-17 22:15:04 +00002027 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002028 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002029
Dale Johannesendd64c412009-02-04 00:33:20 +00002030 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002031 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002032 InFlag = Chain.getValue(1);
2033 }
2034
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002035
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002036 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002037 if (isTailCall) {
2038 // Force all the incoming stack arguments to be loaded from the stack
2039 // before any new outgoing arguments are stored to the stack, because the
2040 // outgoing stack slots may alias the incoming argument stack slots, and
2041 // the alias isn't otherwise explicit. This is slightly more conservative
2042 // than necessary, because it means that each store effectively depends
2043 // on every argument instead of just those arguments it would clobber.
2044 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2045
Dan Gohman475871a2008-07-27 21:46:04 +00002046 SmallVector<SDValue, 8> MemOpChains2;
2047 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002048 int FI = 0;
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002049 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002050 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002051 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002052 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2053 CCValAssign &VA = ArgLocs[i];
2054 if (VA.isRegLoc())
2055 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002056 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002057 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002058 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002059 // Create frame index.
2060 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002061 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002062 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002063 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002064
Duncan Sands276dcbd2008-03-21 09:14:45 +00002065 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002066 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002067 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002068 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002069 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002070 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002071 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002072
Dan Gohman98ca4f22009-08-05 01:29:28 +00002073 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2074 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002075 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002076 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002077 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002078 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002079 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002080 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002081 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002082 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002083 }
2084 }
2085
2086 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002087 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002088 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002089
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002090 // Copy arguments to their registers.
2091 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002092 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002093 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002094 InFlag = Chain.getValue(1);
2095 }
Dan Gohman475871a2008-07-27 21:46:04 +00002096 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002097
Gordon Henriksen86737662008-01-05 16:56:59 +00002098 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002099 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002100 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002101 }
2102
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002103 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2104 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2105 // In the 64-bit large code model, we have to make all calls
2106 // through a register, since the call instruction's 32-bit
2107 // pc-relative offset may not be large enough to hold the whole
2108 // address.
2109 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002110 // If the callee is a GlobalAddress node (quite common, every direct call
2111 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2112 // it.
2113
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002114 // We should use extra load for direct calls to dllimported functions in
2115 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002116 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002117 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002118 unsigned char OpFlags = 0;
Eric Christopherfd179292009-08-27 18:07:15 +00002119
Chris Lattner48a7d022009-07-09 05:02:21 +00002120 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2121 // external symbols most go through the PLT in PIC mode. If the symbol
2122 // has hidden or protected visibility, or if it is static or local, then
2123 // we don't need to use the PLT - we can directly call it.
2124 if (Subtarget->isTargetELF() &&
2125 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002126 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002127 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002128 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002129 (GV->isDeclaration() || GV->isWeakForLinker()) &&
2130 Subtarget->getDarwinVers() < 9) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002131 // PC-relative references to external symbols should go through $stub,
2132 // unless we're building with the leopard linker or later, which
2133 // automatically synthesizes these stubs.
2134 OpFlags = X86II::MO_DARWIN_STUB;
2135 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002136
Devang Patel0d881da2010-07-06 22:08:15 +00002137 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002138 G->getOffset(), OpFlags);
2139 }
Bill Wendling056292f2008-09-16 21:48:12 +00002140 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002141 unsigned char OpFlags = 0;
2142
2143 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to external
2144 // symbols should go through the PLT.
2145 if (Subtarget->isTargetELF() &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002146 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002147 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002148 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002149 Subtarget->getDarwinVers() < 9) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002150 // PC-relative references to external symbols should go through $stub,
2151 // unless we're building with the leopard linker or later, which
2152 // automatically synthesizes these stubs.
2153 OpFlags = X86II::MO_DARWIN_STUB;
2154 }
Eric Christopherfd179292009-08-27 18:07:15 +00002155
Chris Lattner48a7d022009-07-09 05:02:21 +00002156 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2157 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002158 }
2159
Chris Lattnerd96d0722007-02-25 06:40:16 +00002160 // Returns a chain & a flag for retval copy to use.
Owen Anderson825b72b2009-08-11 20:47:22 +00002161 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00002162 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002163
Evan Chengf22f9b32010-02-06 03:28:46 +00002164 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002165 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2166 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002167 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002168 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002169
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002170 Ops.push_back(Chain);
2171 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002172
Dan Gohman98ca4f22009-08-05 01:29:28 +00002173 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002174 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002175
Gordon Henriksen86737662008-01-05 16:56:59 +00002176 // Add argument registers to the end of the list so that they are known live
2177 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002178 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2179 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2180 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002181
Evan Cheng586ccac2008-03-18 23:36:35 +00002182 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002183 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002184 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2185
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002186 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
2187 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64())
Owen Anderson825b72b2009-08-11 20:47:22 +00002188 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002189
Gabor Greifba36cb52008-08-28 21:40:38 +00002190 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002191 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002192
Dan Gohman98ca4f22009-08-05 01:29:28 +00002193 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002194 // We used to do:
2195 //// If this is the first return lowered for this function, add the regs
2196 //// to the liveout set for the function.
2197 // This isn't right, although it's probably harmless on x86; liveouts
2198 // should be computed from returns not tail calls. Consider a void
2199 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002200 return DAG.getNode(X86ISD::TC_RETURN, dl,
2201 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002202 }
2203
Dale Johannesenace16102009-02-03 19:33:06 +00002204 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002205 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002206
Chris Lattner2d297092006-05-23 18:50:38 +00002207 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002208 unsigned NumBytesForCalleeToPush;
Dan Gohman4d3d6e12010-05-27 18:43:40 +00002209 if (Subtarget->IsCalleePop(isVarArg, CallConv))
Gordon Henriksen86737662008-01-05 16:56:59 +00002210 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002211 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002212 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002213 // pops the hidden struct pointer, so we have to push it back.
2214 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002215 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002216 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002217 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002218
Gordon Henriksenae636f82008-01-03 16:47:34 +00002219 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002220 if (!IsSibcall) {
2221 Chain = DAG.getCALLSEQ_END(Chain,
2222 DAG.getIntPtrConstant(NumBytes, true),
2223 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2224 true),
2225 InFlag);
2226 InFlag = Chain.getValue(1);
2227 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002228
Chris Lattner3085e152007-02-25 08:59:22 +00002229 // Handle result values, copying them out of physregs into vregs that we
2230 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002231 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2232 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002233}
2234
Evan Cheng25ab6902006-09-08 06:48:29 +00002235
2236//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002237// Fast Calling Convention (tail call) implementation
2238//===----------------------------------------------------------------------===//
2239
2240// Like std call, callee cleans arguments, convention except that ECX is
2241// reserved for storing the tail called function address. Only 2 registers are
2242// free for argument passing (inreg). Tail call optimization is performed
2243// provided:
2244// * tailcallopt is enabled
2245// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002246// On X86_64 architecture with GOT-style position independent code only local
2247// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002248// To keep the stack aligned according to platform abi the function
2249// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2250// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002251// If a tail called function callee has more arguments than the caller the
2252// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002253// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002254// original REtADDR, but before the saved framepointer or the spilled registers
2255// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2256// stack layout:
2257// arg1
2258// arg2
2259// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002260// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002261// move area ]
2262// (possible EBP)
2263// ESI
2264// EDI
2265// local1 ..
2266
2267/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2268/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002269unsigned
2270X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2271 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002272 MachineFunction &MF = DAG.getMachineFunction();
2273 const TargetMachine &TM = MF.getTarget();
2274 const TargetFrameInfo &TFI = *TM.getFrameInfo();
2275 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002276 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002277 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002278 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002279 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2280 // Number smaller than 12 so just add the difference.
2281 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2282 } else {
2283 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002284 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002285 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002286 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002287 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002288}
2289
Evan Cheng5f941932010-02-05 02:21:12 +00002290/// MatchingStackOffset - Return true if the given stack call argument is
2291/// already available in the same position (relatively) of the caller's
2292/// incoming argument stack.
2293static
2294bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2295 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2296 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002297 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2298 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002299 if (Arg.getOpcode() == ISD::CopyFromReg) {
2300 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2301 if (!VR || TargetRegisterInfo::isPhysicalRegister(VR))
2302 return false;
2303 MachineInstr *Def = MRI->getVRegDef(VR);
2304 if (!Def)
2305 return false;
2306 if (!Flags.isByVal()) {
2307 if (!TII->isLoadFromStackSlot(Def, FI))
2308 return false;
2309 } else {
2310 unsigned Opcode = Def->getOpcode();
2311 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2312 Def->getOperand(1).isFI()) {
2313 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002314 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002315 } else
2316 return false;
2317 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002318 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2319 if (Flags.isByVal())
2320 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002321 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002322 // define @foo(%struct.X* %A) {
2323 // tail call @bar(%struct.X* byval %A)
2324 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002325 return false;
2326 SDValue Ptr = Ld->getBasePtr();
2327 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2328 if (!FINode)
2329 return false;
2330 FI = FINode->getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002331 } else
2332 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002333
Evan Cheng4cae1332010-03-05 08:38:04 +00002334 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002335 if (!MFI->isFixedObjectIndex(FI))
2336 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002337 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002338}
2339
Dan Gohman98ca4f22009-08-05 01:29:28 +00002340/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2341/// for tail call optimization. Targets which want to do tail call
2342/// optimization should implement this function.
2343bool
2344X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002345 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002346 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002347 bool isCalleeStructRet,
2348 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002349 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002350 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002351 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002352 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002353 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002354 CalleeCC != CallingConv::C)
2355 return false;
2356
Evan Cheng7096ae42010-01-29 06:45:59 +00002357 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002358 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002359 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002360 CallingConv::ID CallerCC = CallerF->getCallingConv();
2361 bool CCMatch = CallerCC == CalleeCC;
2362
Dan Gohman1797ed52010-02-08 20:27:50 +00002363 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002364 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002365 return true;
2366 return false;
2367 }
2368
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002369 // Look for obvious safe cases to perform tail call optimization that do not
2370 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002371
Evan Cheng2c12cb42010-03-26 16:26:03 +00002372 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2373 // emit a special epilogue.
2374 if (RegInfo->needsStackRealignment(MF))
2375 return false;
2376
Eric Christopher90eb4022010-07-22 00:26:08 +00002377 // Do not sibcall optimize vararg calls unless the call site is not passing
2378 // any arguments.
Evan Cheng3c262ee2010-03-26 02:13:13 +00002379 if (isVarArg && !Outs.empty())
Evan Cheng843bd692010-01-31 06:44:49 +00002380 return false;
2381
Evan Chenga375d472010-03-15 18:54:48 +00002382 // Also avoid sibcall optimization if either caller or callee uses struct
2383 // return semantics.
2384 if (isCalleeStructRet || isCallerStructRet)
2385 return false;
2386
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002387 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2388 // Therefore if it's not used by the call it is not safe to optimize this into
2389 // a sibcall.
2390 bool Unused = false;
2391 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2392 if (!Ins[i].Used) {
2393 Unused = true;
2394 break;
2395 }
2396 }
2397 if (Unused) {
2398 SmallVector<CCValAssign, 16> RVLocs;
2399 CCState CCInfo(CalleeCC, false, getTargetMachine(),
2400 RVLocs, *DAG.getContext());
2401 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002402 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002403 CCValAssign &VA = RVLocs[i];
2404 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2405 return false;
2406 }
2407 }
2408
Evan Cheng13617962010-04-30 01:12:32 +00002409 // If the calling conventions do not match, then we'd better make sure the
2410 // results are returned in the same way as what the caller expects.
2411 if (!CCMatch) {
2412 SmallVector<CCValAssign, 16> RVLocs1;
2413 CCState CCInfo1(CalleeCC, false, getTargetMachine(),
2414 RVLocs1, *DAG.getContext());
2415 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2416
2417 SmallVector<CCValAssign, 16> RVLocs2;
2418 CCState CCInfo2(CallerCC, false, getTargetMachine(),
2419 RVLocs2, *DAG.getContext());
2420 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2421
2422 if (RVLocs1.size() != RVLocs2.size())
2423 return false;
2424 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2425 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2426 return false;
2427 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2428 return false;
2429 if (RVLocs1[i].isRegLoc()) {
2430 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2431 return false;
2432 } else {
2433 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2434 return false;
2435 }
2436 }
2437 }
2438
Evan Chenga6bff982010-01-30 01:22:00 +00002439 // If the callee takes no arguments then go on to check the results of the
2440 // call.
2441 if (!Outs.empty()) {
2442 // Check if stack adjustment is needed. For now, do not do this if any
2443 // argument is passed on the stack.
2444 SmallVector<CCValAssign, 16> ArgLocs;
2445 CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(),
2446 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00002447 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Evan Chengb2c92902010-02-02 02:22:50 +00002448 if (CCInfo.getNextStackOffset()) {
2449 MachineFunction &MF = DAG.getMachineFunction();
2450 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2451 return false;
2452 if (Subtarget->isTargetWin64())
2453 // Win64 ABI has additional complications.
2454 return false;
2455
2456 // Check if the arguments are already laid out in the right way as
2457 // the caller's fixed stack objects.
2458 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002459 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2460 const X86InstrInfo *TII =
2461 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002462 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2463 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002464 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002465 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002466 if (VA.getLocInfo() == CCValAssign::Indirect)
2467 return false;
2468 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002469 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2470 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002471 return false;
2472 }
2473 }
2474 }
Evan Cheng9c044672010-05-29 01:35:22 +00002475
2476 // If the tailcall address may be in a register, then make sure it's
2477 // possible to register allocate for it. In 32-bit, the call address can
2478 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002479 // callee-saved registers are restored. These happen to be the same
2480 // registers used to pass 'inreg' arguments so watch out for those.
2481 if (!Subtarget->is64Bit() &&
2482 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002483 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002484 unsigned NumInRegs = 0;
2485 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2486 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002487 if (!VA.isRegLoc())
2488 continue;
2489 unsigned Reg = VA.getLocReg();
2490 switch (Reg) {
2491 default: break;
2492 case X86::EAX: case X86::EDX: case X86::ECX:
2493 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002494 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002495 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002496 }
2497 }
2498 }
Evan Chenga6bff982010-01-30 01:22:00 +00002499 }
Evan Chengb1712452010-01-27 06:25:16 +00002500
Dale Johannesend155d7e2010-10-25 22:17:05 +00002501 // An stdcall caller is expected to clean up its arguments; the callee
Dale Johannesen0e034562010-11-12 00:43:18 +00002502 // isn't going to do that.
Dale Johannesend155d7e2010-10-25 22:17:05 +00002503 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2504 return false;
2505
Evan Cheng86809cc2010-02-03 03:28:02 +00002506 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002507}
2508
Dan Gohman3df24e62008-09-03 23:12:08 +00002509FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002510X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2511 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002512}
2513
2514
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002515//===----------------------------------------------------------------------===//
2516// Other Lowering Hooks
2517//===----------------------------------------------------------------------===//
2518
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002519static bool MayFoldLoad(SDValue Op) {
2520 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2521}
2522
2523static bool MayFoldIntoStore(SDValue Op) {
2524 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2525}
2526
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002527static bool isTargetShuffle(unsigned Opcode) {
2528 switch(Opcode) {
2529 default: return false;
2530 case X86ISD::PSHUFD:
2531 case X86ISD::PSHUFHW:
2532 case X86ISD::PSHUFLW:
2533 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002534 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002535 case X86ISD::SHUFPS:
2536 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002537 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002538 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002539 case X86ISD::MOVLPS:
2540 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002541 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002542 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002543 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002544 case X86ISD::MOVSS:
2545 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002546 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002547 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002548 case X86ISD::PUNPCKLWD:
2549 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002550 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002551 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002552 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002553 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002554 case X86ISD::PUNPCKHWD:
2555 case X86ISD::PUNPCKHBW:
2556 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002557 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002558 return true;
2559 }
2560 return false;
2561}
2562
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002563static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002564 SDValue V1, SelectionDAG &DAG) {
2565 switch(Opc) {
2566 default: llvm_unreachable("Unknown x86 shuffle node");
2567 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002568 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002569 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002570 return DAG.getNode(Opc, dl, VT, V1);
2571 }
2572
2573 return SDValue();
2574}
2575
2576static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002577 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002578 switch(Opc) {
2579 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002580 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002581 case X86ISD::PSHUFHW:
2582 case X86ISD::PSHUFLW:
2583 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2584 }
2585
2586 return SDValue();
2587}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002588
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002589static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2590 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2591 switch(Opc) {
2592 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002593 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002594 case X86ISD::SHUFPD:
2595 case X86ISD::SHUFPS:
2596 return DAG.getNode(Opc, dl, VT, V1, V2,
2597 DAG.getConstant(TargetMask, MVT::i8));
2598 }
2599 return SDValue();
2600}
2601
2602static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2603 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2604 switch(Opc) {
2605 default: llvm_unreachable("Unknown x86 shuffle node");
2606 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002607 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002608 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002609 case X86ISD::MOVLPS:
2610 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002611 case X86ISD::MOVSS:
2612 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002613 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002614 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002615 case X86ISD::PUNPCKLWD:
2616 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002617 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002618 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002619 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002620 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002621 case X86ISD::PUNPCKHWD:
2622 case X86ISD::PUNPCKHBW:
2623 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002624 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002625 return DAG.getNode(Opc, dl, VT, V1, V2);
2626 }
2627 return SDValue();
2628}
2629
Dan Gohmand858e902010-04-17 15:26:15 +00002630SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002631 MachineFunction &MF = DAG.getMachineFunction();
2632 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2633 int ReturnAddrIndex = FuncInfo->getRAIndex();
2634
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002635 if (ReturnAddrIndex == 0) {
2636 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002637 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002638 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002639 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002640 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002641 }
2642
Evan Cheng25ab6902006-09-08 06:48:29 +00002643 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002644}
2645
2646
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002647bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2648 bool hasSymbolicDisplacement) {
2649 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002650 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002651 return false;
2652
2653 // If we don't have a symbolic displacement - we don't have any extra
2654 // restrictions.
2655 if (!hasSymbolicDisplacement)
2656 return true;
2657
2658 // FIXME: Some tweaks might be needed for medium code model.
2659 if (M != CodeModel::Small && M != CodeModel::Kernel)
2660 return false;
2661
2662 // For small code model we assume that latest object is 16MB before end of 31
2663 // bits boundary. We may also accept pretty large negative constants knowing
2664 // that all objects are in the positive half of address space.
2665 if (M == CodeModel::Small && Offset < 16*1024*1024)
2666 return true;
2667
2668 // For kernel code model we know that all object resist in the negative half
2669 // of 32bits address space. We may not accept negative offsets, since they may
2670 // be just off and we may accept pretty large positive ones.
2671 if (M == CodeModel::Kernel && Offset > 0)
2672 return true;
2673
2674 return false;
2675}
2676
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002677/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2678/// specific condition code, returning the condition code and the LHS/RHS of the
2679/// comparison to make.
2680static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2681 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002682 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002683 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2684 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2685 // X > -1 -> X == 0, jump !sign.
2686 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002687 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002688 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2689 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002690 return X86::COND_S;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002691 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002692 // X < 1 -> X <= 0
2693 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002694 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002695 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002696 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002697
Evan Chengd9558e02006-01-06 00:43:03 +00002698 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002699 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002700 case ISD::SETEQ: return X86::COND_E;
2701 case ISD::SETGT: return X86::COND_G;
2702 case ISD::SETGE: return X86::COND_GE;
2703 case ISD::SETLT: return X86::COND_L;
2704 case ISD::SETLE: return X86::COND_LE;
2705 case ISD::SETNE: return X86::COND_NE;
2706 case ISD::SETULT: return X86::COND_B;
2707 case ISD::SETUGT: return X86::COND_A;
2708 case ISD::SETULE: return X86::COND_BE;
2709 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002710 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002711 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002712
Chris Lattner4c78e022008-12-23 23:42:27 +00002713 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002714
Chris Lattner4c78e022008-12-23 23:42:27 +00002715 // If LHS is a foldable load, but RHS is not, flip the condition.
2716 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2717 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2718 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2719 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002720 }
2721
Chris Lattner4c78e022008-12-23 23:42:27 +00002722 switch (SetCCOpcode) {
2723 default: break;
2724 case ISD::SETOLT:
2725 case ISD::SETOLE:
2726 case ISD::SETUGT:
2727 case ISD::SETUGE:
2728 std::swap(LHS, RHS);
2729 break;
2730 }
2731
2732 // On a floating point condition, the flags are set as follows:
2733 // ZF PF CF op
2734 // 0 | 0 | 0 | X > Y
2735 // 0 | 0 | 1 | X < Y
2736 // 1 | 0 | 0 | X == Y
2737 // 1 | 1 | 1 | unordered
2738 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002739 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002740 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002741 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002742 case ISD::SETOLT: // flipped
2743 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002744 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002745 case ISD::SETOLE: // flipped
2746 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002747 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002748 case ISD::SETUGT: // flipped
2749 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002750 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002751 case ISD::SETUGE: // flipped
2752 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002753 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002754 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002755 case ISD::SETNE: return X86::COND_NE;
2756 case ISD::SETUO: return X86::COND_P;
2757 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002758 case ISD::SETOEQ:
2759 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002760 }
Evan Chengd9558e02006-01-06 00:43:03 +00002761}
2762
Evan Cheng4a460802006-01-11 00:33:36 +00002763/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2764/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002765/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002766static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002767 switch (X86CC) {
2768 default:
2769 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002770 case X86::COND_B:
2771 case X86::COND_BE:
2772 case X86::COND_E:
2773 case X86::COND_P:
2774 case X86::COND_A:
2775 case X86::COND_AE:
2776 case X86::COND_NE:
2777 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002778 return true;
2779 }
2780}
2781
Evan Chengeb2f9692009-10-27 19:56:55 +00002782/// isFPImmLegal - Returns true if the target can instruction select the
2783/// specified FP immediate natively. If false, the legalizer will
2784/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00002785bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00002786 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
2787 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
2788 return true;
2789 }
2790 return false;
2791}
2792
Nate Begeman9008ca62009-04-27 18:41:29 +00002793/// isUndefOrInRange - Return true if Val is undef or if its value falls within
2794/// the specified range (L, H].
2795static bool isUndefOrInRange(int Val, int Low, int Hi) {
2796 return (Val < 0) || (Val >= Low && Val < Hi);
2797}
2798
2799/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
2800/// specified value.
2801static bool isUndefOrEqual(int Val, int CmpVal) {
2802 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002803 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00002804 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00002805}
2806
Nate Begeman9008ca62009-04-27 18:41:29 +00002807/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
2808/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
2809/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00002810static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00002811 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00002812 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002813 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00002814 return (Mask[0] < 2 && Mask[1] < 2);
2815 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002816}
2817
Nate Begeman9008ca62009-04-27 18:41:29 +00002818bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002819 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002820 N->getMask(M);
2821 return ::isPSHUFDMask(M, N->getValueType(0));
2822}
Evan Cheng0188ecb2006-03-22 18:59:22 +00002823
Nate Begeman9008ca62009-04-27 18:41:29 +00002824/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
2825/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00002826static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002827 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00002828 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002829
Nate Begeman9008ca62009-04-27 18:41:29 +00002830 // Lower quadword copied in order or undef.
2831 for (int i = 0; i != 4; ++i)
2832 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00002833 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002834
Evan Cheng506d3df2006-03-29 23:07:14 +00002835 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002836 for (int i = 4; i != 8; ++i)
2837 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00002838 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002839
Evan Cheng506d3df2006-03-29 23:07:14 +00002840 return true;
2841}
2842
Nate Begeman9008ca62009-04-27 18:41:29 +00002843bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002844 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002845 N->getMask(M);
2846 return ::isPSHUFHWMask(M, N->getValueType(0));
2847}
Evan Cheng506d3df2006-03-29 23:07:14 +00002848
Nate Begeman9008ca62009-04-27 18:41:29 +00002849/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
2850/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00002851static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002852 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00002853 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002854
Rafael Espindola15684b22009-04-24 12:40:33 +00002855 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00002856 for (int i = 4; i != 8; ++i)
2857 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00002858 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002859
Rafael Espindola15684b22009-04-24 12:40:33 +00002860 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002861 for (int i = 0; i != 4; ++i)
2862 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00002863 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002864
Rafael Espindola15684b22009-04-24 12:40:33 +00002865 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00002866}
2867
Nate Begeman9008ca62009-04-27 18:41:29 +00002868bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002869 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002870 N->getMask(M);
2871 return ::isPSHUFLWMask(M, N->getValueType(0));
2872}
2873
Nate Begemana09008b2009-10-19 02:17:23 +00002874/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
2875/// is suitable for input to PALIGNR.
2876static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
2877 bool hasSSSE3) {
2878 int i, e = VT.getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00002879
Nate Begemana09008b2009-10-19 02:17:23 +00002880 // Do not handle v2i64 / v2f64 shuffles with palignr.
2881 if (e < 4 || !hasSSSE3)
2882 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002883
Nate Begemana09008b2009-10-19 02:17:23 +00002884 for (i = 0; i != e; ++i)
2885 if (Mask[i] >= 0)
2886 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002887
Nate Begemana09008b2009-10-19 02:17:23 +00002888 // All undef, not a palignr.
2889 if (i == e)
2890 return false;
2891
2892 // Determine if it's ok to perform a palignr with only the LHS, since we
2893 // don't have access to the actual shuffle elements to see if RHS is undef.
2894 bool Unary = Mask[i] < (int)e;
2895 bool NeedsUnary = false;
2896
2897 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002898
Nate Begemana09008b2009-10-19 02:17:23 +00002899 // Check the rest of the elements to see if they are consecutive.
2900 for (++i; i != e; ++i) {
2901 int m = Mask[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00002902 if (m < 0)
Nate Begemana09008b2009-10-19 02:17:23 +00002903 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002904
Nate Begemana09008b2009-10-19 02:17:23 +00002905 Unary = Unary && (m < (int)e);
2906 NeedsUnary = NeedsUnary || (m < s);
2907
2908 if (NeedsUnary && !Unary)
2909 return false;
2910 if (Unary && m != ((s+i) & (e-1)))
2911 return false;
2912 if (!Unary && m != (s+i))
2913 return false;
2914 }
2915 return true;
2916}
2917
2918bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) {
2919 SmallVector<int, 8> M;
2920 N->getMask(M);
2921 return ::isPALIGNRMask(M, N->getValueType(0), true);
2922}
2923
Evan Cheng14aed5e2006-03-24 01:18:28 +00002924/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2925/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00002926static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002927 int NumElems = VT.getVectorNumElements();
2928 if (NumElems != 2 && NumElems != 4)
2929 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002930
Nate Begeman9008ca62009-04-27 18:41:29 +00002931 int Half = NumElems / 2;
2932 for (int i = 0; i < Half; ++i)
2933 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002934 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002935 for (int i = Half; i < NumElems; ++i)
2936 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002937 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002938
Evan Cheng14aed5e2006-03-24 01:18:28 +00002939 return true;
2940}
2941
Nate Begeman9008ca62009-04-27 18:41:29 +00002942bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
2943 SmallVector<int, 8> M;
2944 N->getMask(M);
2945 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002946}
2947
Evan Cheng213d2cf2007-05-17 18:45:50 +00002948/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00002949/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2950/// half elements to come from vector 1 (which would equal the dest.) and
2951/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00002952static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002953 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00002954
2955 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00002956 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002957
Nate Begeman9008ca62009-04-27 18:41:29 +00002958 int Half = NumElems / 2;
2959 for (int i = 0; i < Half; ++i)
2960 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002961 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002962 for (int i = Half; i < NumElems; ++i)
2963 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002964 return false;
2965 return true;
2966}
2967
Nate Begeman9008ca62009-04-27 18:41:29 +00002968static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
2969 SmallVector<int, 8> M;
2970 N->getMask(M);
2971 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002972}
2973
Evan Cheng2c0dbd02006-03-24 02:58:06 +00002974/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
2975/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00002976bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
2977 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00002978 return false;
2979
Evan Cheng2064a2b2006-03-28 06:50:32 +00002980 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00002981 return isUndefOrEqual(N->getMaskElt(0), 6) &&
2982 isUndefOrEqual(N->getMaskElt(1), 7) &&
2983 isUndefOrEqual(N->getMaskElt(2), 2) &&
2984 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00002985}
2986
Nate Begeman0b10b912009-11-07 23:17:15 +00002987/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
2988/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
2989/// <2, 3, 2, 3>
2990bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
2991 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00002992
Nate Begeman0b10b912009-11-07 23:17:15 +00002993 if (NumElems != 4)
2994 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002995
Nate Begeman0b10b912009-11-07 23:17:15 +00002996 return isUndefOrEqual(N->getMaskElt(0), 2) &&
2997 isUndefOrEqual(N->getMaskElt(1), 3) &&
2998 isUndefOrEqual(N->getMaskElt(2), 2) &&
2999 isUndefOrEqual(N->getMaskElt(3), 3);
3000}
3001
Evan Cheng5ced1d82006-04-06 23:23:56 +00003002/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3003/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003004bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3005 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003006
Evan Cheng5ced1d82006-04-06 23:23:56 +00003007 if (NumElems != 2 && NumElems != 4)
3008 return false;
3009
Evan Chengc5cdff22006-04-07 21:53:05 +00003010 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003011 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003012 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003013
Evan Chengc5cdff22006-04-07 21:53:05 +00003014 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003015 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003016 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003017
3018 return true;
3019}
3020
Nate Begeman0b10b912009-11-07 23:17:15 +00003021/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3022/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3023bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003024 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003025
Evan Cheng5ced1d82006-04-06 23:23:56 +00003026 if (NumElems != 2 && NumElems != 4)
3027 return false;
3028
Evan Chengc5cdff22006-04-07 21:53:05 +00003029 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003030 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003031 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003032
Nate Begeman9008ca62009-04-27 18:41:29 +00003033 for (unsigned i = 0; i < NumElems/2; ++i)
3034 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003035 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003036
3037 return true;
3038}
3039
Evan Cheng0038e592006-03-28 00:39:58 +00003040/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3041/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003042static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003043 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003044 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003045 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00003046 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003047
Nate Begeman9008ca62009-04-27 18:41:29 +00003048 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3049 int BitI = Mask[i];
3050 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003051 if (!isUndefOrEqual(BitI, j))
3052 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003053 if (V2IsSplat) {
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003054 if (!isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003055 return false;
3056 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003057 if (!isUndefOrEqual(BitI1, j + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003058 return false;
3059 }
Evan Cheng0038e592006-03-28 00:39:58 +00003060 }
Evan Cheng0038e592006-03-28 00:39:58 +00003061 return true;
3062}
3063
Nate Begeman9008ca62009-04-27 18:41:29 +00003064bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3065 SmallVector<int, 8> M;
3066 N->getMask(M);
3067 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003068}
3069
Evan Cheng4fcb9222006-03-28 02:43:26 +00003070/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3071/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003072static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003073 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003074 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003075 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003076 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003077
Nate Begeman9008ca62009-04-27 18:41:29 +00003078 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3079 int BitI = Mask[i];
3080 int BitI1 = Mask[i+1];
Chris Lattner5a88b832007-02-25 07:10:00 +00003081 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00003082 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003083 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00003084 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003085 return false;
3086 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003087 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003088 return false;
3089 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003090 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003091 return true;
3092}
3093
Nate Begeman9008ca62009-04-27 18:41:29 +00003094bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3095 SmallVector<int, 8> M;
3096 N->getMask(M);
3097 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003098}
3099
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003100/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3101/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3102/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003103static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003104 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003105 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003106 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003107
Nate Begeman9008ca62009-04-27 18:41:29 +00003108 for (int i = 0, j = 0; i != NumElems; i += 2, ++j) {
3109 int BitI = Mask[i];
3110 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003111 if (!isUndefOrEqual(BitI, j))
3112 return false;
3113 if (!isUndefOrEqual(BitI1, j))
3114 return false;
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003115 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003116 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003117}
3118
Nate Begeman9008ca62009-04-27 18:41:29 +00003119bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3120 SmallVector<int, 8> M;
3121 N->getMask(M);
3122 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3123}
3124
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003125/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3126/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3127/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003128static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003129 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003130 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3131 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003132
Nate Begeman9008ca62009-04-27 18:41:29 +00003133 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3134 int BitI = Mask[i];
3135 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003136 if (!isUndefOrEqual(BitI, j))
3137 return false;
3138 if (!isUndefOrEqual(BitI1, j))
3139 return false;
3140 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003141 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003142}
3143
Nate Begeman9008ca62009-04-27 18:41:29 +00003144bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3145 SmallVector<int, 8> M;
3146 N->getMask(M);
3147 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3148}
3149
Evan Cheng017dcc62006-04-21 01:05:10 +00003150/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3151/// specifies a shuffle of elements that is suitable for input to MOVSS,
3152/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003153static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003154 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003155 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003156
3157 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003158
Nate Begeman9008ca62009-04-27 18:41:29 +00003159 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003160 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003161
Nate Begeman9008ca62009-04-27 18:41:29 +00003162 for (int i = 1; i < NumElts; ++i)
3163 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003164 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003165
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003166 return true;
3167}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003168
Nate Begeman9008ca62009-04-27 18:41:29 +00003169bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3170 SmallVector<int, 8> M;
3171 N->getMask(M);
3172 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003173}
3174
Evan Cheng017dcc62006-04-21 01:05:10 +00003175/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3176/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003177/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003178static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003179 bool V2IsSplat = false, bool V2IsUndef = false) {
3180 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003181 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003182 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003183
Nate Begeman9008ca62009-04-27 18:41:29 +00003184 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003185 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003186
Nate Begeman9008ca62009-04-27 18:41:29 +00003187 for (int i = 1; i < NumOps; ++i)
3188 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3189 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3190 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003191 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003192
Evan Cheng39623da2006-04-20 08:58:49 +00003193 return true;
3194}
3195
Nate Begeman9008ca62009-04-27 18:41:29 +00003196static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003197 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003198 SmallVector<int, 8> M;
3199 N->getMask(M);
3200 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003201}
3202
Evan Chengd9539472006-04-14 21:59:03 +00003203/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3204/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003205bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) {
3206 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003207 return false;
3208
3209 // Expect 1, 1, 3, 3
Rafael Espindola15684b22009-04-24 12:40:33 +00003210 for (unsigned i = 0; i < 2; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003211 int Elt = N->getMaskElt(i);
3212 if (Elt >= 0 && Elt != 1)
3213 return false;
Rafael Espindola15684b22009-04-24 12:40:33 +00003214 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003215
3216 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003217 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003218 int Elt = N->getMaskElt(i);
3219 if (Elt >= 0 && Elt != 3)
3220 return false;
3221 if (Elt == 3)
3222 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003223 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003224 // Don't use movshdup if it can be done with a shufps.
Nate Begeman9008ca62009-04-27 18:41:29 +00003225 // FIXME: verify that matching u, u, 3, 3 is what we want.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003226 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003227}
3228
3229/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3230/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003231bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) {
3232 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003233 return false;
3234
3235 // Expect 0, 0, 2, 2
Nate Begeman9008ca62009-04-27 18:41:29 +00003236 for (unsigned i = 0; i < 2; ++i)
3237 if (N->getMaskElt(i) > 0)
3238 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003239
3240 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003241 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003242 int Elt = N->getMaskElt(i);
3243 if (Elt >= 0 && Elt != 2)
3244 return false;
3245 if (Elt == 2)
3246 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003247 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003248 // Don't use movsldup if it can be done with a shufps.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003249 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003250}
3251
Evan Cheng0b457f02008-09-25 20:50:48 +00003252/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3253/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003254bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3255 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003256
Nate Begeman9008ca62009-04-27 18:41:29 +00003257 for (int i = 0; i < e; ++i)
3258 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003259 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003260 for (int i = 0; i < e; ++i)
3261 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003262 return false;
3263 return true;
3264}
3265
Evan Cheng63d33002006-03-22 08:01:21 +00003266/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003267/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003268unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003269 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3270 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3271
Evan Chengb9df0ca2006-03-22 02:53:00 +00003272 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3273 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003274 for (int i = 0; i < NumOperands; ++i) {
3275 int Val = SVOp->getMaskElt(NumOperands-i-1);
3276 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003277 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003278 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003279 if (i != NumOperands - 1)
3280 Mask <<= Shift;
3281 }
Evan Cheng63d33002006-03-22 08:01:21 +00003282 return Mask;
3283}
3284
Evan Cheng506d3df2006-03-29 23:07:14 +00003285/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003286/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003287unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003288 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003289 unsigned Mask = 0;
3290 // 8 nodes, but we only care about the last 4.
3291 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003292 int Val = SVOp->getMaskElt(i);
3293 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003294 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003295 if (i != 4)
3296 Mask <<= 2;
3297 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003298 return Mask;
3299}
3300
3301/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003302/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003303unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003304 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003305 unsigned Mask = 0;
3306 // 8 nodes, but we only care about the first 4.
3307 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003308 int Val = SVOp->getMaskElt(i);
3309 if (Val >= 0)
3310 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003311 if (i != 0)
3312 Mask <<= 2;
3313 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003314 return Mask;
3315}
3316
Nate Begemana09008b2009-10-19 02:17:23 +00003317/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3318/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3319unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3320 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3321 EVT VVT = N->getValueType(0);
3322 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3323 int Val = 0;
3324
3325 unsigned i, e;
3326 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3327 Val = SVOp->getMaskElt(i);
3328 if (Val >= 0)
3329 break;
3330 }
3331 return (Val - i) * EltSize;
3332}
3333
Evan Cheng37b73872009-07-30 08:33:02 +00003334/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3335/// constant +0.0.
3336bool X86::isZeroNode(SDValue Elt) {
3337 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003338 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003339 (isa<ConstantFPSDNode>(Elt) &&
3340 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3341}
3342
Nate Begeman9008ca62009-04-27 18:41:29 +00003343/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3344/// their permute mask.
3345static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3346 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003347 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003348 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003349 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003350
Nate Begeman5a5ca152009-04-29 05:20:52 +00003351 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003352 int idx = SVOp->getMaskElt(i);
3353 if (idx < 0)
3354 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003355 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003356 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003357 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003358 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003359 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003360 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3361 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003362}
3363
Evan Cheng779ccea2007-12-07 21:30:01 +00003364/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3365/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003366static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003367 unsigned NumElems = VT.getVectorNumElements();
3368 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003369 int idx = Mask[i];
3370 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003371 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003372 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003373 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003374 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003375 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003376 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003377}
3378
Evan Cheng533a0aa2006-04-19 20:35:22 +00003379/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3380/// match movhlps. The lower half elements should come from upper half of
3381/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003382/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003383static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3384 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003385 return false;
3386 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003387 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003388 return false;
3389 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003390 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003391 return false;
3392 return true;
3393}
3394
Evan Cheng5ced1d82006-04-06 23:23:56 +00003395/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003396/// is promoted to a vector. It also returns the LoadSDNode by reference if
3397/// required.
3398static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003399 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3400 return false;
3401 N = N->getOperand(0).getNode();
3402 if (!ISD::isNON_EXTLoad(N))
3403 return false;
3404 if (LD)
3405 *LD = cast<LoadSDNode>(N);
3406 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003407}
3408
Evan Cheng533a0aa2006-04-19 20:35:22 +00003409/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3410/// match movlp{s|d}. The lower half elements should come from lower half of
3411/// V1 (and in order), and the upper half elements should come from the upper
3412/// half of V2 (and in order). And since V1 will become the source of the
3413/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003414static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3415 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003416 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003417 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003418 // Is V2 is a vector load, don't do this transformation. We will try to use
3419 // load folding shufps op.
3420 if (ISD::isNON_EXTLoad(V2))
3421 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003422
Nate Begeman5a5ca152009-04-29 05:20:52 +00003423 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003424
Evan Cheng533a0aa2006-04-19 20:35:22 +00003425 if (NumElems != 2 && NumElems != 4)
3426 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003427 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003428 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003429 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003430 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003431 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003432 return false;
3433 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003434}
3435
Evan Cheng39623da2006-04-20 08:58:49 +00003436/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3437/// all the same.
3438static bool isSplatVector(SDNode *N) {
3439 if (N->getOpcode() != ISD::BUILD_VECTOR)
3440 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003441
Dan Gohman475871a2008-07-27 21:46:04 +00003442 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003443 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3444 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003445 return false;
3446 return true;
3447}
3448
Evan Cheng213d2cf2007-05-17 18:45:50 +00003449/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003450/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003451/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003452static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003453 SDValue V1 = N->getOperand(0);
3454 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003455 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3456 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003457 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003458 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003459 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003460 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3461 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003462 if (Opc != ISD::BUILD_VECTOR ||
3463 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003464 return false;
3465 } else if (Idx >= 0) {
3466 unsigned Opc = V1.getOpcode();
3467 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3468 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003469 if (Opc != ISD::BUILD_VECTOR ||
3470 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003471 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003472 }
3473 }
3474 return true;
3475}
3476
3477/// getZeroVector - Returns a vector of specified type with all zero elements.
3478///
Owen Andersone50ed302009-08-10 22:56:29 +00003479static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003480 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003481 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003482
Dale Johannesen0488fb62010-09-30 23:57:10 +00003483 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003484 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003485 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003486 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003487 if (HasSSE2) { // SSE2
3488 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3489 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3490 } else { // SSE1
3491 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3492 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3493 }
3494 } else if (VT.getSizeInBits() == 256) { // AVX
3495 // 256-bit logic and arithmetic instructions in AVX are
3496 // all floating-point, no support for integer ops. Default
3497 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003498 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003499 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3500 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003501 }
Dale Johannesenace16102009-02-03 19:33:06 +00003502 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003503}
3504
Chris Lattner8a594482007-11-25 00:24:49 +00003505/// getOnesVector - Returns a vector of specified type with all bits set.
3506///
Owen Andersone50ed302009-08-10 22:56:29 +00003507static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003508 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003509
Chris Lattner8a594482007-11-25 00:24:49 +00003510 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
3511 // type. This ensures they get CSE'd.
Owen Anderson825b72b2009-08-11 20:47:22 +00003512 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00003513 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003514 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Dale Johannesenace16102009-02-03 19:33:06 +00003515 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00003516}
3517
3518
Evan Cheng39623da2006-04-20 08:58:49 +00003519/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3520/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00003521static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003522 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003523 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003524
Evan Cheng39623da2006-04-20 08:58:49 +00003525 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003526 SmallVector<int, 8> MaskVec;
3527 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00003528
Nate Begeman5a5ca152009-04-29 05:20:52 +00003529 for (unsigned i = 0; i != NumElems; ++i) {
3530 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003531 MaskVec[i] = NumElems;
3532 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00003533 }
Evan Cheng39623da2006-04-20 08:58:49 +00003534 }
Evan Cheng39623da2006-04-20 08:58:49 +00003535 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00003536 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
3537 SVOp->getOperand(1), &MaskVec[0]);
3538 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00003539}
3540
Evan Cheng017dcc62006-04-21 01:05:10 +00003541/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
3542/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00003543static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003544 SDValue V2) {
3545 unsigned NumElems = VT.getVectorNumElements();
3546 SmallVector<int, 8> Mask;
3547 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00003548 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003549 Mask.push_back(i);
3550 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00003551}
3552
Nate Begeman9008ca62009-04-27 18:41:29 +00003553/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003554static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003555 SDValue V2) {
3556 unsigned NumElems = VT.getVectorNumElements();
3557 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00003558 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003559 Mask.push_back(i);
3560 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00003561 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003562 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00003563}
3564
Nate Begeman9008ca62009-04-27 18:41:29 +00003565/// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003566static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003567 SDValue V2) {
3568 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00003569 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003570 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00003571 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003572 Mask.push_back(i + Half);
3573 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00003574 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003575 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00003576}
3577
Bruno Cardoso Lopesbb0a9482010-08-13 17:50:47 +00003578/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32.
3579static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003580 EVT PVT = MVT::v4f32;
Owen Andersone50ed302009-08-10 22:56:29 +00003581 EVT VT = SV->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00003582 DebugLoc dl = SV->getDebugLoc();
3583 SDValue V1 = SV->getOperand(0);
3584 int NumElems = VT.getVectorNumElements();
3585 int EltNo = SV->getSplatIndex();
Rafael Espindola15684b22009-04-24 12:40:33 +00003586
Nate Begeman9008ca62009-04-27 18:41:29 +00003587 // unpack elements to the correct location
3588 while (NumElems > 4) {
3589 if (EltNo < NumElems/2) {
3590 V1 = getUnpackl(DAG, dl, VT, V1, V1);
3591 } else {
3592 V1 = getUnpackh(DAG, dl, VT, V1, V1);
3593 EltNo -= NumElems/2;
3594 }
3595 NumElems >>= 1;
3596 }
Eric Christopherfd179292009-08-27 18:07:15 +00003597
Nate Begeman9008ca62009-04-27 18:41:29 +00003598 // Perform the splat.
3599 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Dale Johannesenace16102009-02-03 19:33:06 +00003600 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
Nate Begeman9008ca62009-04-27 18:41:29 +00003601 V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]);
3602 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, V1);
Evan Chengc575ca22006-04-17 20:43:08 +00003603}
3604
Evan Chengba05f722006-04-21 23:03:30 +00003605/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00003606/// vector of zero or undef vector. This produces a shuffle where the low
3607/// element of V2 is swizzled into the zero/undef vector, landing at element
3608/// 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 +00003609static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00003610 bool isZero, bool HasSSE2,
3611 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003612 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003613 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00003614 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
3615 unsigned NumElems = VT.getVectorNumElements();
3616 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00003617 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003618 // If this is the insertion idx, put the low elt of V2 here.
3619 MaskVec.push_back(i == Idx ? NumElems : i);
3620 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00003621}
3622
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003623/// getShuffleScalarElt - Returns the scalar element that will make up the ith
3624/// element of the result of the vector shuffle.
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003625SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
3626 unsigned Depth) {
3627 if (Depth == 6)
3628 return SDValue(); // Limit search depth.
3629
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003630 SDValue V = SDValue(N, 0);
3631 EVT VT = V.getValueType();
3632 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003633
3634 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
3635 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
3636 Index = SV->getMaskElt(Index);
3637
3638 if (Index < 0)
3639 return DAG.getUNDEF(VT.getVectorElementType());
3640
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003641 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003642 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003643 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00003644 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003645
3646 // Recurse into target specific vector shuffles to find scalars.
3647 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003648 int NumElems = VT.getVectorNumElements();
3649 SmallVector<unsigned, 16> ShuffleMask;
3650 SDValue ImmN;
3651
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003652 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003653 case X86ISD::SHUFPS:
3654 case X86ISD::SHUFPD:
3655 ImmN = N->getOperand(N->getNumOperands()-1);
3656 DecodeSHUFPSMask(NumElems,
3657 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3658 ShuffleMask);
3659 break;
3660 case X86ISD::PUNPCKHBW:
3661 case X86ISD::PUNPCKHWD:
3662 case X86ISD::PUNPCKHDQ:
3663 case X86ISD::PUNPCKHQDQ:
3664 DecodePUNPCKHMask(NumElems, ShuffleMask);
3665 break;
3666 case X86ISD::UNPCKHPS:
3667 case X86ISD::UNPCKHPD:
3668 DecodeUNPCKHPMask(NumElems, ShuffleMask);
3669 break;
3670 case X86ISD::PUNPCKLBW:
3671 case X86ISD::PUNPCKLWD:
3672 case X86ISD::PUNPCKLDQ:
3673 case X86ISD::PUNPCKLQDQ:
3674 DecodePUNPCKLMask(NumElems, ShuffleMask);
3675 break;
3676 case X86ISD::UNPCKLPS:
3677 case X86ISD::UNPCKLPD:
3678 DecodeUNPCKLPMask(NumElems, ShuffleMask);
3679 break;
3680 case X86ISD::MOVHLPS:
3681 DecodeMOVHLPSMask(NumElems, ShuffleMask);
3682 break;
3683 case X86ISD::MOVLHPS:
3684 DecodeMOVLHPSMask(NumElems, ShuffleMask);
3685 break;
3686 case X86ISD::PSHUFD:
3687 ImmN = N->getOperand(N->getNumOperands()-1);
3688 DecodePSHUFMask(NumElems,
3689 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3690 ShuffleMask);
3691 break;
3692 case X86ISD::PSHUFHW:
3693 ImmN = N->getOperand(N->getNumOperands()-1);
3694 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3695 ShuffleMask);
3696 break;
3697 case X86ISD::PSHUFLW:
3698 ImmN = N->getOperand(N->getNumOperands()-1);
3699 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3700 ShuffleMask);
3701 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003702 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003703 case X86ISD::MOVSD: {
3704 // The index 0 always comes from the first element of the second source,
3705 // this is why MOVSS and MOVSD are used in the first place. The other
3706 // elements come from the other positions of the first source vector.
3707 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003708 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
3709 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003710 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003711 default:
3712 assert("not implemented for target shuffle node");
3713 return SDValue();
3714 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003715
3716 Index = ShuffleMask[Index];
3717 if (Index < 0)
3718 return DAG.getUNDEF(VT.getVectorElementType());
3719
3720 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
3721 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
3722 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003723 }
3724
3725 // Actual nodes that may contain scalar elements
3726 if (Opcode == ISD::BIT_CONVERT) {
3727 V = V.getOperand(0);
3728 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003729 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003730
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003731 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003732 return SDValue();
3733 }
3734
3735 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
3736 return (Index == 0) ? V.getOperand(0)
3737 : DAG.getUNDEF(VT.getVectorElementType());
3738
3739 if (V.getOpcode() == ISD::BUILD_VECTOR)
3740 return V.getOperand(Index);
3741
3742 return SDValue();
3743}
3744
3745/// getNumOfConsecutiveZeros - Return the number of elements of a vector
3746/// shuffle operation which come from a consecutively from a zero. The
3747/// search can start in two diferent directions, from left or right.
3748static
3749unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
3750 bool ZerosFromLeft, SelectionDAG &DAG) {
3751 int i = 0;
3752
3753 while (i < NumElems) {
3754 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003755 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003756 if (!(Elt.getNode() &&
3757 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
3758 break;
3759 ++i;
3760 }
3761
3762 return i;
3763}
3764
3765/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
3766/// MaskE correspond consecutively to elements from one of the vector operands,
3767/// starting from its index OpIdx. Also tell OpNum which source vector operand.
3768static
3769bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
3770 int OpIdx, int NumElems, unsigned &OpNum) {
3771 bool SeenV1 = false;
3772 bool SeenV2 = false;
3773
3774 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
3775 int Idx = SVOp->getMaskElt(i);
3776 // Ignore undef indicies
3777 if (Idx < 0)
3778 continue;
3779
3780 if (Idx < NumElems)
3781 SeenV1 = true;
3782 else
3783 SeenV2 = true;
3784
3785 // Only accept consecutive elements from the same vector
3786 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
3787 return false;
3788 }
3789
3790 OpNum = SeenV1 ? 0 : 1;
3791 return true;
3792}
3793
3794/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
3795/// logical left shift of a vector.
3796static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3797 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3798 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3799 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3800 false /* check zeros from right */, DAG);
3801 unsigned OpSrc;
3802
3803 if (!NumZeros)
3804 return false;
3805
3806 // Considering the elements in the mask that are not consecutive zeros,
3807 // check if they consecutively come from only one of the source vectors.
3808 //
3809 // V1 = {X, A, B, C} 0
3810 // \ \ \ /
3811 // vector_shuffle V1, V2 <1, 2, 3, X>
3812 //
3813 if (!isShuffleMaskConsecutive(SVOp,
3814 0, // Mask Start Index
3815 NumElems-NumZeros-1, // Mask End Index
3816 NumZeros, // Where to start looking in the src vector
3817 NumElems, // Number of elements in vector
3818 OpSrc)) // Which source operand ?
3819 return false;
3820
3821 isLeft = false;
3822 ShAmt = NumZeros;
3823 ShVal = SVOp->getOperand(OpSrc);
3824 return true;
3825}
3826
3827/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
3828/// logical left shift of a vector.
3829static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3830 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3831 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3832 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3833 true /* check zeros from left */, DAG);
3834 unsigned OpSrc;
3835
3836 if (!NumZeros)
3837 return false;
3838
3839 // Considering the elements in the mask that are not consecutive zeros,
3840 // check if they consecutively come from only one of the source vectors.
3841 //
3842 // 0 { A, B, X, X } = V2
3843 // / \ / /
3844 // vector_shuffle V1, V2 <X, X, 4, 5>
3845 //
3846 if (!isShuffleMaskConsecutive(SVOp,
3847 NumZeros, // Mask Start Index
3848 NumElems-1, // Mask End Index
3849 0, // Where to start looking in the src vector
3850 NumElems, // Number of elements in vector
3851 OpSrc)) // Which source operand ?
3852 return false;
3853
3854 isLeft = true;
3855 ShAmt = NumZeros;
3856 ShVal = SVOp->getOperand(OpSrc);
3857 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003858}
3859
3860/// isVectorShift - Returns true if the shuffle can be implemented as a
3861/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003862static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00003863 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003864 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
3865 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
3866 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003867
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003868 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00003869}
3870
Evan Chengc78d3b42006-04-24 18:01:45 +00003871/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3872///
Dan Gohman475871a2008-07-27 21:46:04 +00003873static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00003874 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00003875 SelectionDAG &DAG,
3876 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003877 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00003878 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003879
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003880 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003881 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003882 bool First = true;
3883 for (unsigned i = 0; i < 16; ++i) {
3884 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3885 if (ThisIsNonZero && First) {
3886 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003887 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003888 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003889 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003890 First = false;
3891 }
3892
3893 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00003894 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003895 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3896 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003897 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003898 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00003899 }
3900 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003901 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
3902 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
3903 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00003904 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003905 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00003906 } else
3907 ThisElt = LastElt;
3908
Gabor Greifba36cb52008-08-28 21:40:38 +00003909 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00003910 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00003911 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00003912 }
3913 }
3914
Owen Anderson825b72b2009-08-11 20:47:22 +00003915 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00003916}
3917
Bill Wendlinga348c562007-03-22 18:42:45 +00003918/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00003919///
Dan Gohman475871a2008-07-27 21:46:04 +00003920static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00003921 unsigned NumNonZero, unsigned NumZero,
3922 SelectionDAG &DAG,
3923 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003924 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00003925 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003926
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003927 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003928 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003929 bool First = true;
3930 for (unsigned i = 0; i < 8; ++i) {
3931 bool isNonZero = (NonZeros & (1 << i)) != 0;
3932 if (isNonZero) {
3933 if (First) {
3934 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003935 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003936 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003937 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003938 First = false;
3939 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003940 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003941 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00003942 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00003943 }
3944 }
3945
3946 return V;
3947}
3948
Evan Chengf26ffe92008-05-29 08:22:04 +00003949/// getVShift - Return a vector logical shift node.
3950///
Owen Andersone50ed302009-08-10 22:56:29 +00003951static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00003952 unsigned NumBits, SelectionDAG &DAG,
3953 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003954 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00003955 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Dale Johannesenace16102009-02-03 19:33:06 +00003956 SrcOp = DAG.getNode(ISD::BIT_CONVERT, dl, ShVT, SrcOp);
3957 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3958 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif327ef032008-08-28 23:19:51 +00003959 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengf26ffe92008-05-29 08:22:04 +00003960}
3961
Dan Gohman475871a2008-07-27 21:46:04 +00003962SDValue
Evan Chengc3630942009-12-09 21:00:30 +00003963X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00003964 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00003965
Evan Chengc3630942009-12-09 21:00:30 +00003966 // Check if the scalar load can be widened into a vector load. And if
3967 // the address is "base + cst" see if the cst can be "absorbed" into
3968 // the shuffle mask.
3969 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
3970 SDValue Ptr = LD->getBasePtr();
3971 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
3972 return SDValue();
3973 EVT PVT = LD->getValueType(0);
3974 if (PVT != MVT::i32 && PVT != MVT::f32)
3975 return SDValue();
3976
3977 int FI = -1;
3978 int64_t Offset = 0;
3979 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
3980 FI = FINode->getIndex();
3981 Offset = 0;
3982 } else if (Ptr.getOpcode() == ISD::ADD &&
3983 isa<ConstantSDNode>(Ptr.getOperand(1)) &&
3984 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
3985 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
3986 Offset = Ptr.getConstantOperandVal(1);
3987 Ptr = Ptr.getOperand(0);
3988 } else {
3989 return SDValue();
3990 }
3991
3992 SDValue Chain = LD->getChain();
3993 // Make sure the stack object alignment is at least 16.
3994 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
3995 if (DAG.InferPtrAlignment(Ptr) < 16) {
3996 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00003997 // Can't change the alignment. FIXME: It's possible to compute
3998 // the exact stack offset and reference FI + adjust offset instead.
3999 // If someone *really* cares about this. That's the way to implement it.
4000 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004001 } else {
4002 MFI->setObjectAlignment(FI, 16);
4003 }
4004 }
4005
4006 // (Offset % 16) must be multiple of 4. Then address is then
4007 // Ptr + (Offset & ~15).
4008 if (Offset < 0)
4009 return SDValue();
4010 if ((Offset % 16) & 3)
4011 return SDValue();
4012 int64_t StartOffset = Offset & ~15;
4013 if (StartOffset)
4014 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4015 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4016
4017 int EltNo = (Offset - StartOffset) >> 2;
4018 int Mask[4] = { EltNo, EltNo, EltNo, EltNo };
4019 EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32;
Chris Lattner51abfe42010-09-21 06:02:19 +00004020 SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr,
4021 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004022 false, false, 0);
Evan Chengc3630942009-12-09 21:00:30 +00004023 // Canonicalize it to a v4i32 shuffle.
4024 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32, V1);
4025 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4026 DAG.getVectorShuffle(MVT::v4i32, dl, V1,
Chris Lattner51abfe42010-09-21 06:02:19 +00004027 DAG.getUNDEF(MVT::v4i32),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004028 }
4029
4030 return SDValue();
4031}
4032
Michael J. Spencerec38de22010-10-10 22:04:20 +00004033/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4034/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004035/// load which has the same value as a build_vector whose operands are 'elts'.
4036///
4037/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004038///
Nate Begeman1449f292010-03-24 22:19:06 +00004039/// FIXME: we'd also like to handle the case where the last elements are zero
4040/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4041/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004042static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004043 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004044 EVT EltVT = VT.getVectorElementType();
4045 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004046
Nate Begemanfdea31a2010-03-24 20:49:50 +00004047 LoadSDNode *LDBase = NULL;
4048 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004049
Nate Begeman1449f292010-03-24 22:19:06 +00004050 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004051 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004052 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004053 for (unsigned i = 0; i < NumElems; ++i) {
4054 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004055
Nate Begemanfdea31a2010-03-24 20:49:50 +00004056 if (!Elt.getNode() ||
4057 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4058 return SDValue();
4059 if (!LDBase) {
4060 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4061 return SDValue();
4062 LDBase = cast<LoadSDNode>(Elt.getNode());
4063 LastLoadedElt = i;
4064 continue;
4065 }
4066 if (Elt.getOpcode() == ISD::UNDEF)
4067 continue;
4068
4069 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4070 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4071 return SDValue();
4072 LastLoadedElt = i;
4073 }
Nate Begeman1449f292010-03-24 22:19:06 +00004074
4075 // If we have found an entire vector of loads and undefs, then return a large
4076 // load of the entire vector width starting at the base pointer. If we found
4077 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004078 if (LastLoadedElt == NumElems - 1) {
4079 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004080 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004081 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004082 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004083 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004084 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004085 LDBase->isVolatile(), LDBase->isNonTemporal(),
4086 LDBase->getAlignment());
4087 } else if (NumElems == 4 && LastLoadedElt == 1) {
4088 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4089 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004090 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4091 Ops, 2, MVT::i32,
4092 LDBase->getMemOperand());
4093 return DAG.getNode(ISD::BIT_CONVERT, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004094 }
4095 return SDValue();
4096}
4097
Evan Chengc3630942009-12-09 21:00:30 +00004098SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004099X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004100 DebugLoc dl = Op.getDebugLoc();
Chris Lattner6e80e442010-08-28 17:15:43 +00004101 // All zero's are handled with pxor in SSE2 and above, xorps in SSE1.
4102 // All one's are handled with pcmpeqd. In AVX, zero's are handled with
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004103 // vpxor in 128-bit and xor{pd,ps} in 256-bit, but no 256 version of pcmpeqd
4104 // is present, so AllOnes is ignored.
4105 if (ISD::isBuildVectorAllZeros(Op.getNode()) ||
4106 (Op.getValueType().getSizeInBits() != 256 &&
4107 ISD::isBuildVectorAllOnes(Op.getNode()))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004108 // Canonicalize this to <4 x i32> (SSE) to
Chris Lattner8a594482007-11-25 00:24:49 +00004109 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
4110 // eliminated on x86-32 hosts.
Dale Johannesen0488fb62010-09-30 23:57:10 +00004111 if (Op.getValueType() == MVT::v4i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004112 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004113
Gabor Greifba36cb52008-08-28 21:40:38 +00004114 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004115 return getOnesVector(Op.getValueType(), DAG, dl);
4116 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004117 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004118
Owen Andersone50ed302009-08-10 22:56:29 +00004119 EVT VT = Op.getValueType();
4120 EVT ExtVT = VT.getVectorElementType();
4121 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004122
4123 unsigned NumElems = Op.getNumOperands();
4124 unsigned NumZero = 0;
4125 unsigned NumNonZero = 0;
4126 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004127 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004128 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004129 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004130 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004131 if (Elt.getOpcode() == ISD::UNDEF)
4132 continue;
4133 Values.insert(Elt);
4134 if (Elt.getOpcode() != ISD::Constant &&
4135 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004136 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004137 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004138 NumZero++;
4139 else {
4140 NonZeros |= (1 << i);
4141 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004142 }
4143 }
4144
Chris Lattner97a2a562010-08-26 05:24:29 +00004145 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4146 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004147 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004148
Chris Lattner67f453a2008-03-09 05:42:06 +00004149 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004150 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004151 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004152 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004153
Chris Lattner62098042008-03-09 01:05:04 +00004154 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4155 // the value are obviously zero, truncate the value to i32 and do the
4156 // insertion that way. Only do this if the value is non-constant or if the
4157 // value is a constant being inserted into element 0. It is cheaper to do
4158 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004159 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004160 (!IsAllConstants || Idx == 0)) {
4161 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004162 // Handle SSE only.
4163 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4164 EVT VecVT = MVT::v4i32;
4165 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004166
Chris Lattner62098042008-03-09 01:05:04 +00004167 // Truncate the value (which may itself be a constant) to i32, and
4168 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004169 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004170 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004171 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4172 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004173
Chris Lattner62098042008-03-09 01:05:04 +00004174 // Now we have our 32-bit value zero extended in the low element of
4175 // a vector. If Idx != 0, swizzle it into place.
4176 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004177 SmallVector<int, 4> Mask;
4178 Mask.push_back(Idx);
4179 for (unsigned i = 1; i != VecElts; ++i)
4180 Mask.push_back(i);
4181 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004182 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004183 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004184 }
Dale Johannesenace16102009-02-03 19:33:06 +00004185 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004186 }
4187 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004188
Chris Lattner19f79692008-03-08 22:59:52 +00004189 // If we have a constant or non-constant insertion into the low element of
4190 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4191 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004192 // depending on what the source datatype is.
4193 if (Idx == 0) {
4194 if (NumZero == 0) {
4195 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004196 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4197 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004198 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4199 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4200 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4201 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004202 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4203 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004204 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4205 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004206 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4207 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4208 Subtarget->hasSSE2(), DAG);
4209 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Item);
4210 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004211 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004212
4213 // Is it a vector logical left shift?
4214 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004215 X86::isZeroNode(Op.getOperand(0)) &&
4216 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004217 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004218 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004219 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004220 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004221 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004222 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004223
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004224 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004225 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004226
Chris Lattner19f79692008-03-08 22:59:52 +00004227 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4228 // is a non-constant being inserted into an element other than the low one,
4229 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4230 // movd/movss) to move this into the low element, then shuffle it into
4231 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004232 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004233 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004234
Evan Cheng0db9fe62006-04-25 20:13:52 +00004235 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004236 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4237 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004238 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004239 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004240 MaskVec.push_back(i == Idx ? 0 : 1);
4241 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004242 }
4243 }
4244
Chris Lattner67f453a2008-03-09 05:42:06 +00004245 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004246 if (Values.size() == 1) {
4247 if (EVTBits == 32) {
4248 // Instead of a shuffle like this:
4249 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4250 // Check if it's possible to issue this instead.
4251 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4252 unsigned Idx = CountTrailingZeros_32(NonZeros);
4253 SDValue Item = Op.getOperand(Idx);
4254 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4255 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4256 }
Dan Gohman475871a2008-07-27 21:46:04 +00004257 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004258 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004259
Dan Gohmana3941172007-07-24 22:55:08 +00004260 // A vector full of immediates; various special cases are already
4261 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004262 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004263 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004264
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004265 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004266 if (EVTBits == 64) {
4267 if (NumNonZero == 1) {
4268 // One half is zero or undef.
4269 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004270 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004271 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004272 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4273 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004274 }
Dan Gohman475871a2008-07-27 21:46:04 +00004275 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004276 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004277
4278 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004279 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004280 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004281 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004282 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004283 }
4284
Bill Wendling826f36f2007-03-28 00:57:11 +00004285 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004286 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004287 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004288 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004289 }
4290
4291 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004292 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004293 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004294 if (NumElems == 4 && NumZero > 0) {
4295 for (unsigned i = 0; i < 4; ++i) {
4296 bool isZero = !(NonZeros & (1 << i));
4297 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004298 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004299 else
Dale Johannesenace16102009-02-03 19:33:06 +00004300 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004301 }
4302
4303 for (unsigned i = 0; i < 2; ++i) {
4304 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4305 default: break;
4306 case 0:
4307 V[i] = V[i*2]; // Must be a zero vector.
4308 break;
4309 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004310 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004311 break;
4312 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004313 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004314 break;
4315 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004316 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004317 break;
4318 }
4319 }
4320
Nate Begeman9008ca62009-04-27 18:41:29 +00004321 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004322 bool Reverse = (NonZeros & 0x3) == 2;
4323 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004324 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004325 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4326 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004327 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4328 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004329 }
4330
Nate Begemanfdea31a2010-03-24 20:49:50 +00004331 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4332 // Check for a build vector of consecutive loads.
4333 for (unsigned i = 0; i < NumElems; ++i)
4334 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004335
Nate Begemanfdea31a2010-03-24 20:49:50 +00004336 // Check for elements which are consecutive loads.
4337 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4338 if (LD.getNode())
4339 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004340
4341 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004342 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004343 SDValue Result;
4344 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4345 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4346 else
4347 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004348
Chris Lattner24faf612010-08-28 17:59:08 +00004349 for (unsigned i = 1; i < NumElems; ++i) {
4350 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4351 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004352 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004353 }
4354 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004355 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004356
Chris Lattner6e80e442010-08-28 17:15:43 +00004357 // Otherwise, expand into a number of unpckl*, start by extending each of
4358 // our (non-undef) elements to the full vector width with the element in the
4359 // bottom slot of the vector (which generates no code for SSE).
4360 for (unsigned i = 0; i < NumElems; ++i) {
4361 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4362 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4363 else
4364 V[i] = DAG.getUNDEF(VT);
4365 }
4366
4367 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004368 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4369 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4370 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00004371 unsigned EltStride = NumElems >> 1;
4372 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00004373 for (unsigned i = 0; i < EltStride; ++i) {
4374 // If V[i+EltStride] is undef and this is the first round of mixing,
4375 // then it is safe to just drop this shuffle: V[i] is already in the
4376 // right place, the one element (since it's the first round) being
4377 // inserted as undef can be dropped. This isn't safe for successive
4378 // rounds because they will permute elements within both vectors.
4379 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
4380 EltStride == NumElems/2)
4381 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004382
Chris Lattner6e80e442010-08-28 17:15:43 +00004383 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00004384 }
Chris Lattner6e80e442010-08-28 17:15:43 +00004385 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004386 }
4387 return V[0];
4388 }
Dan Gohman475871a2008-07-27 21:46:04 +00004389 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004390}
4391
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004392SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004393X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004394 // We support concatenate two MMX registers and place them in a MMX
4395 // register. This is better than doing a stack convert.
4396 DebugLoc dl = Op.getDebugLoc();
4397 EVT ResVT = Op.getValueType();
4398 assert(Op.getNumOperands() == 2);
4399 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
4400 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
4401 int Mask[2];
4402 SDValue InVec = DAG.getNode(ISD::BIT_CONVERT,dl, MVT::v1i64, Op.getOperand(0));
4403 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4404 InVec = Op.getOperand(1);
4405 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4406 unsigned NumElts = ResVT.getVectorNumElements();
4407 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, ResVT, VecOp);
4408 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
4409 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
4410 } else {
4411 InVec = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v1i64, InVec);
4412 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4413 Mask[0] = 0; Mask[1] = 2;
4414 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
4415 }
4416 return DAG.getNode(ISD::BIT_CONVERT, dl, ResVT, VecOp);
4417}
4418
Nate Begemanb9a47b82009-02-23 08:49:38 +00004419// v8i16 shuffles - Prefer shuffles in the following order:
4420// 1. [all] pshuflw, pshufhw, optional move
4421// 2. [ssse3] 1 x pshufb
4422// 3. [ssse3] 2 x pshufb + 1 x por
4423// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004424SDValue
4425X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
4426 SelectionDAG &DAG) const {
4427 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00004428 SDValue V1 = SVOp->getOperand(0);
4429 SDValue V2 = SVOp->getOperand(1);
4430 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004431 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00004432
Nate Begemanb9a47b82009-02-23 08:49:38 +00004433 // Determine if more than 1 of the words in each of the low and high quadwords
4434 // of the result come from the same quadword of one of the two inputs. Undef
4435 // mask values count as coming from any quadword, for better codegen.
4436 SmallVector<unsigned, 4> LoQuad(4);
4437 SmallVector<unsigned, 4> HiQuad(4);
4438 BitVector InputQuads(4);
4439 for (unsigned i = 0; i < 8; ++i) {
4440 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00004441 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004442 MaskVals.push_back(EltIdx);
4443 if (EltIdx < 0) {
4444 ++Quad[0];
4445 ++Quad[1];
4446 ++Quad[2];
4447 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00004448 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004449 }
4450 ++Quad[EltIdx / 4];
4451 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00004452 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004453
Nate Begemanb9a47b82009-02-23 08:49:38 +00004454 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004455 unsigned MaxQuad = 1;
4456 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004457 if (LoQuad[i] > MaxQuad) {
4458 BestLoQuad = i;
4459 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004460 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004461 }
4462
Nate Begemanb9a47b82009-02-23 08:49:38 +00004463 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004464 MaxQuad = 1;
4465 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004466 if (HiQuad[i] > MaxQuad) {
4467 BestHiQuad = i;
4468 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004469 }
4470 }
4471
Nate Begemanb9a47b82009-02-23 08:49:38 +00004472 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00004473 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00004474 // single pshufb instruction is necessary. If There are more than 2 input
4475 // quads, disable the next transformation since it does not help SSSE3.
4476 bool V1Used = InputQuads[0] || InputQuads[1];
4477 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004478 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004479 if (InputQuads.count() == 2 && V1Used && V2Used) {
4480 BestLoQuad = InputQuads.find_first();
4481 BestHiQuad = InputQuads.find_next(BestLoQuad);
4482 }
4483 if (InputQuads.count() > 2) {
4484 BestLoQuad = -1;
4485 BestHiQuad = -1;
4486 }
4487 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004488
Nate Begemanb9a47b82009-02-23 08:49:38 +00004489 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
4490 // the shuffle mask. If a quad is scored as -1, that means that it contains
4491 // words from all 4 input quadwords.
4492 SDValue NewV;
4493 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004494 SmallVector<int, 8> MaskV;
4495 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
4496 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00004497 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004498 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V1),
4499 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V2), &MaskV[0]);
4500 NewV = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004501
Nate Begemanb9a47b82009-02-23 08:49:38 +00004502 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
4503 // source words for the shuffle, to aid later transformations.
4504 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00004505 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00004506 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004507 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00004508 if (idx != (int)i)
4509 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004510 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00004511 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004512 AllWordsInNewV = false;
4513 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00004514 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004515
Nate Begemanb9a47b82009-02-23 08:49:38 +00004516 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
4517 if (AllWordsInNewV) {
4518 for (int i = 0; i != 8; ++i) {
4519 int idx = MaskVals[i];
4520 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004521 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004522 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004523 if ((idx != i) && idx < 4)
4524 pshufhw = false;
4525 if ((idx != i) && idx > 3)
4526 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00004527 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00004528 V1 = NewV;
4529 V2Used = false;
4530 BestLoQuad = 0;
4531 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004532 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004533
Nate Begemanb9a47b82009-02-23 08:49:38 +00004534 // If we've eliminated the use of V2, and the new mask is a pshuflw or
4535 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00004536 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004537 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
4538 unsigned TargetMask = 0;
4539 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00004540 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004541 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
4542 X86::getShufflePSHUFLWImmediate(NewV.getNode());
4543 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004544 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00004545 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004546 }
Eric Christopherfd179292009-08-27 18:07:15 +00004547
Nate Begemanb9a47b82009-02-23 08:49:38 +00004548 // If we have SSSE3, and all words of the result are from 1 input vector,
4549 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
4550 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004551 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004552 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004553
Nate Begemanb9a47b82009-02-23 08:49:38 +00004554 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00004555 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00004556 // mask, and elements that come from V1 in the V2 mask, so that the two
4557 // results can be OR'd together.
4558 bool TwoInputs = V1Used && V2Used;
4559 for (unsigned i = 0; i != 8; ++i) {
4560 int EltIdx = MaskVals[i] * 2;
4561 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004562 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4563 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004564 continue;
4565 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004566 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
4567 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004568 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004569 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004570 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004571 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004572 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004573 if (!TwoInputs)
Owen Anderson825b72b2009-08-11 20:47:22 +00004574 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004575
Nate Begemanb9a47b82009-02-23 08:49:38 +00004576 // Calculate the shuffle mask for the second input, shuffle it, and
4577 // OR it with the first shuffled input.
4578 pshufbMask.clear();
4579 for (unsigned i = 0; i != 8; ++i) {
4580 int EltIdx = MaskVals[i] * 2;
4581 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004582 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4583 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004584 continue;
4585 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004586 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
4587 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004588 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004589 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00004590 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004591 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004592 MVT::v16i8, &pshufbMask[0], 16));
4593 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
4594 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004595 }
4596
4597 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
4598 // and update MaskVals with new element order.
4599 BitVector InOrder(8);
4600 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004601 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004602 for (int i = 0; i != 4; ++i) {
4603 int idx = MaskVals[i];
4604 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004605 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004606 InOrder.set(i);
4607 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004608 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004609 InOrder.set(i);
4610 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004611 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004612 }
4613 }
4614 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004615 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00004616 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004617 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004618
4619 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4620 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
4621 NewV.getOperand(0),
4622 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
4623 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004624 }
Eric Christopherfd179292009-08-27 18:07:15 +00004625
Nate Begemanb9a47b82009-02-23 08:49:38 +00004626 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
4627 // and update MaskVals with the new element order.
4628 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004629 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004630 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004631 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004632 for (unsigned i = 4; i != 8; ++i) {
4633 int idx = MaskVals[i];
4634 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004635 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004636 InOrder.set(i);
4637 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004638 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004639 InOrder.set(i);
4640 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004641 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004642 }
4643 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004644 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004645 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004646
4647 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4648 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
4649 NewV.getOperand(0),
4650 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
4651 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004652 }
Eric Christopherfd179292009-08-27 18:07:15 +00004653
Nate Begemanb9a47b82009-02-23 08:49:38 +00004654 // In case BestHi & BestLo were both -1, which means each quadword has a word
4655 // from each of the four input quadwords, calculate the InOrder bitvector now
4656 // before falling through to the insert/extract cleanup.
4657 if (BestLoQuad == -1 && BestHiQuad == -1) {
4658 NewV = V1;
4659 for (int i = 0; i != 8; ++i)
4660 if (MaskVals[i] < 0 || MaskVals[i] == i)
4661 InOrder.set(i);
4662 }
Eric Christopherfd179292009-08-27 18:07:15 +00004663
Nate Begemanb9a47b82009-02-23 08:49:38 +00004664 // The other elements are put in the right place using pextrw and pinsrw.
4665 for (unsigned i = 0; i != 8; ++i) {
4666 if (InOrder[i])
4667 continue;
4668 int EltIdx = MaskVals[i];
4669 if (EltIdx < 0)
4670 continue;
4671 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004672 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004673 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00004674 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004675 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00004676 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004677 DAG.getIntPtrConstant(i));
4678 }
4679 return NewV;
4680}
4681
4682// v16i8 shuffles - Prefer shuffles in the following order:
4683// 1. [ssse3] 1 x pshufb
4684// 2. [ssse3] 2 x pshufb + 1 x por
4685// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
4686static
Nate Begeman9008ca62009-04-27 18:41:29 +00004687SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00004688 SelectionDAG &DAG,
4689 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004690 SDValue V1 = SVOp->getOperand(0);
4691 SDValue V2 = SVOp->getOperand(1);
4692 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004693 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00004694 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00004695
Nate Begemanb9a47b82009-02-23 08:49:38 +00004696 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00004697 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00004698 // present, fall back to case 3.
4699 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
4700 bool V1Only = true;
4701 bool V2Only = true;
4702 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004703 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00004704 if (EltIdx < 0)
4705 continue;
4706 if (EltIdx < 16)
4707 V2Only = false;
4708 else
4709 V1Only = false;
4710 }
Eric Christopherfd179292009-08-27 18:07:15 +00004711
Nate Begemanb9a47b82009-02-23 08:49:38 +00004712 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
4713 if (TLI.getSubtarget()->hasSSSE3()) {
4714 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004715
Nate Begemanb9a47b82009-02-23 08:49:38 +00004716 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00004717 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004718 //
4719 // Otherwise, we have elements from both input vectors, and must zero out
4720 // elements that come from V2 in the first mask, and V1 in the second mask
4721 // so that we can OR them together.
4722 bool TwoInputs = !(V1Only || V2Only);
4723 for (unsigned i = 0; i != 16; ++i) {
4724 int EltIdx = MaskVals[i];
4725 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004726 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004727 continue;
4728 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004729 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004730 }
4731 // If all the elements are from V2, assign it to V1 and return after
4732 // building the first pshufb.
4733 if (V2Only)
4734 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00004735 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004736 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004737 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004738 if (!TwoInputs)
4739 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00004740
Nate Begemanb9a47b82009-02-23 08:49:38 +00004741 // Calculate the shuffle mask for the second input, shuffle it, and
4742 // OR it with the first shuffled input.
4743 pshufbMask.clear();
4744 for (unsigned i = 0; i != 16; ++i) {
4745 int EltIdx = MaskVals[i];
4746 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004747 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004748 continue;
4749 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004750 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004751 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004752 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004753 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004754 MVT::v16i8, &pshufbMask[0], 16));
4755 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004756 }
Eric Christopherfd179292009-08-27 18:07:15 +00004757
Nate Begemanb9a47b82009-02-23 08:49:38 +00004758 // No SSSE3 - Calculate in place words and then fix all out of place words
4759 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
4760 // the 16 different words that comprise the two doublequadword input vectors.
Owen Anderson825b72b2009-08-11 20:47:22 +00004761 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
4762 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004763 SDValue NewV = V2Only ? V2 : V1;
4764 for (int i = 0; i != 8; ++i) {
4765 int Elt0 = MaskVals[i*2];
4766 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00004767
Nate Begemanb9a47b82009-02-23 08:49:38 +00004768 // This word of the result is all undef, skip it.
4769 if (Elt0 < 0 && Elt1 < 0)
4770 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004771
Nate Begemanb9a47b82009-02-23 08:49:38 +00004772 // This word of the result is already in the correct place, skip it.
4773 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
4774 continue;
4775 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
4776 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004777
Nate Begemanb9a47b82009-02-23 08:49:38 +00004778 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
4779 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
4780 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00004781
4782 // If Elt0 and Elt1 are defined, are consecutive, and can be load
4783 // using a single extract together, load it and store it.
4784 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004785 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004786 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00004787 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004788 DAG.getIntPtrConstant(i));
4789 continue;
4790 }
4791
Nate Begemanb9a47b82009-02-23 08:49:38 +00004792 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00004793 // source byte is not also odd, shift the extracted word left 8 bits
4794 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004795 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004796 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004797 DAG.getIntPtrConstant(Elt1 / 2));
4798 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004799 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004800 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004801 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004802 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
4803 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004804 }
4805 // If Elt0 is defined, extract it from the appropriate source. If the
4806 // source byte is not also even, shift the extracted word right 8 bits. If
4807 // Elt1 was also defined, OR the extracted values together before
4808 // inserting them in the result.
4809 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004810 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004811 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
4812 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004813 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004814 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004815 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004816 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
4817 DAG.getConstant(0x00FF, MVT::i16));
4818 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00004819 : InsElt0;
4820 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004821 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004822 DAG.getIntPtrConstant(i));
4823 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004824 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004825}
4826
Evan Cheng7a831ce2007-12-15 03:00:47 +00004827/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004828/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00004829/// done when every pair / quad of shuffle mask elements point to elements in
4830/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004831/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00004832static
Nate Begeman9008ca62009-04-27 18:41:29 +00004833SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00004834 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00004835 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00004836 SDValue V1 = SVOp->getOperand(0);
4837 SDValue V2 = SVOp->getOperand(1);
4838 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00004839 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004840 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00004841 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004842 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00004843 case MVT::v4f32: NewVT = MVT::v2f64; break;
4844 case MVT::v4i32: NewVT = MVT::v2i64; break;
4845 case MVT::v8i16: NewVT = MVT::v4i32; break;
4846 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00004847 }
4848
Nate Begeman9008ca62009-04-27 18:41:29 +00004849 int Scale = NumElems / NewWidth;
4850 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00004851 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004852 int StartIdx = -1;
4853 for (int j = 0; j < Scale; ++j) {
4854 int EltIdx = SVOp->getMaskElt(i+j);
4855 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004856 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00004857 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00004858 StartIdx = EltIdx - (EltIdx % Scale);
4859 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00004860 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00004861 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004862 if (StartIdx == -1)
4863 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00004864 else
Nate Begeman9008ca62009-04-27 18:41:29 +00004865 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004866 }
4867
Dale Johannesenace16102009-02-03 19:33:06 +00004868 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V1);
4869 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00004870 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004871}
4872
Evan Chengd880b972008-05-09 21:53:03 +00004873/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004874///
Owen Andersone50ed302009-08-10 22:56:29 +00004875static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004876 SDValue SrcOp, SelectionDAG &DAG,
4877 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004878 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004879 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00004880 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00004881 LD = dyn_cast<LoadSDNode>(SrcOp);
4882 if (!LD) {
4883 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
4884 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00004885 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00004886 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00004887 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4888 SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00004889 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004890 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00004891 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Dale Johannesenace16102009-02-03 19:33:06 +00004892 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4893 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
4894 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4895 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00004896 SrcOp.getOperand(0)
4897 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004898 }
4899 }
4900 }
4901
Dale Johannesenace16102009-02-03 19:33:06 +00004902 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4903 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004904 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00004905 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004906}
4907
Evan Chengace3c172008-07-22 21:13:36 +00004908/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
4909/// shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004910static SDValue
Nate Begeman9008ca62009-04-27 18:41:29 +00004911LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
4912 SDValue V1 = SVOp->getOperand(0);
4913 SDValue V2 = SVOp->getOperand(1);
4914 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00004915 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00004916
Evan Chengace3c172008-07-22 21:13:36 +00004917 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00004918 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00004919 SmallVector<int, 8> Mask1(4U, -1);
4920 SmallVector<int, 8> PermMask;
4921 SVOp->getMask(PermMask);
4922
Evan Chengace3c172008-07-22 21:13:36 +00004923 unsigned NumHi = 0;
4924 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00004925 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004926 int Idx = PermMask[i];
4927 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00004928 Locs[i] = std::make_pair(-1, -1);
4929 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004930 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
4931 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00004932 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00004933 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004934 NumLo++;
4935 } else {
4936 Locs[i] = std::make_pair(1, NumHi);
4937 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00004938 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004939 NumHi++;
4940 }
4941 }
4942 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004943
Evan Chengace3c172008-07-22 21:13:36 +00004944 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004945 // If no more than two elements come from either vector. This can be
4946 // implemented with two shuffles. First shuffle gather the elements.
4947 // The second shuffle, which takes the first shuffle as both of its
4948 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00004949 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004950
Nate Begeman9008ca62009-04-27 18:41:29 +00004951 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00004952
Evan Chengace3c172008-07-22 21:13:36 +00004953 for (unsigned i = 0; i != 4; ++i) {
4954 if (Locs[i].first == -1)
4955 continue;
4956 else {
4957 unsigned Idx = (i < 2) ? 0 : 4;
4958 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00004959 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004960 }
4961 }
4962
Nate Begeman9008ca62009-04-27 18:41:29 +00004963 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004964 } else if (NumLo == 3 || NumHi == 3) {
4965 // Otherwise, we must have three elements from one vector, call it X, and
4966 // one element from the other, call it Y. First, use a shufps to build an
4967 // intermediate vector with the one element from Y and the element from X
4968 // that will be in the same half in the final destination (the indexes don't
4969 // matter). Then, use a shufps to build the final vector, taking the half
4970 // containing the element from Y from the intermediate, and the other half
4971 // from X.
4972 if (NumHi == 3) {
4973 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00004974 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004975 std::swap(V1, V2);
4976 }
4977
4978 // Find the element from V2.
4979 unsigned HiIndex;
4980 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004981 int Val = PermMask[HiIndex];
4982 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004983 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004984 if (Val >= 4)
4985 break;
4986 }
4987
Nate Begeman9008ca62009-04-27 18:41:29 +00004988 Mask1[0] = PermMask[HiIndex];
4989 Mask1[1] = -1;
4990 Mask1[2] = PermMask[HiIndex^1];
4991 Mask1[3] = -1;
4992 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004993
4994 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004995 Mask1[0] = PermMask[0];
4996 Mask1[1] = PermMask[1];
4997 Mask1[2] = HiIndex & 1 ? 6 : 4;
4998 Mask1[3] = HiIndex & 1 ? 4 : 6;
4999 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005000 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005001 Mask1[0] = HiIndex & 1 ? 2 : 0;
5002 Mask1[1] = HiIndex & 1 ? 0 : 2;
5003 Mask1[2] = PermMask[2];
5004 Mask1[3] = PermMask[3];
5005 if (Mask1[2] >= 0)
5006 Mask1[2] += 4;
5007 if (Mask1[3] >= 0)
5008 Mask1[3] += 4;
5009 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005010 }
Evan Chengace3c172008-07-22 21:13:36 +00005011 }
5012
5013 // Break it into (shuffle shuffle_hi, shuffle_lo).
5014 Locs.clear();
Nate Begeman9008ca62009-04-27 18:41:29 +00005015 SmallVector<int,8> LoMask(4U, -1);
5016 SmallVector<int,8> HiMask(4U, -1);
5017
5018 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005019 unsigned MaskIdx = 0;
5020 unsigned LoIdx = 0;
5021 unsigned HiIdx = 2;
5022 for (unsigned i = 0; i != 4; ++i) {
5023 if (i == 2) {
5024 MaskPtr = &HiMask;
5025 MaskIdx = 1;
5026 LoIdx = 0;
5027 HiIdx = 2;
5028 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005029 int Idx = PermMask[i];
5030 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005031 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005032 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005033 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005034 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005035 LoIdx++;
5036 } else {
5037 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005038 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005039 HiIdx++;
5040 }
5041 }
5042
Nate Begeman9008ca62009-04-27 18:41:29 +00005043 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5044 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5045 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005046 for (unsigned i = 0; i != 4; ++i) {
5047 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005048 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005049 } else {
5050 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005051 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005052 }
5053 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005054 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005055}
5056
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005057static bool MayFoldVectorLoad(SDValue V) {
5058 if (V.hasOneUse() && V.getOpcode() == ISD::BIT_CONVERT)
5059 V = V.getOperand(0);
5060 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5061 V = V.getOperand(0);
5062 if (MayFoldLoad(V))
5063 return true;
5064 return false;
5065}
5066
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005067// FIXME: the version above should always be used. Since there's
5068// a bug where several vector shuffles can't be folded because the
5069// DAG is not updated during lowering and a node claims to have two
5070// uses while it only has one, use this version, and let isel match
5071// another instruction if the load really happens to have more than
5072// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005073// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005074static bool RelaxedMayFoldVectorLoad(SDValue V) {
5075 if (V.hasOneUse() && V.getOpcode() == ISD::BIT_CONVERT)
5076 V = V.getOperand(0);
5077 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5078 V = V.getOperand(0);
5079 if (ISD::isNormalLoad(V.getNode()))
5080 return true;
5081 return false;
5082}
5083
5084/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5085/// a vector extract, and if both can be later optimized into a single load.
5086/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5087/// here because otherwise a target specific shuffle node is going to be
5088/// emitted for this shuffle, and the optimization not done.
5089/// FIXME: This is probably not the best approach, but fix the problem
5090/// until the right path is decided.
5091static
5092bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5093 const TargetLowering &TLI) {
5094 EVT VT = V.getValueType();
5095 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5096
5097 // Be sure that the vector shuffle is present in a pattern like this:
5098 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5099 if (!V.hasOneUse())
5100 return false;
5101
5102 SDNode *N = *V.getNode()->use_begin();
5103 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5104 return false;
5105
5106 SDValue EltNo = N->getOperand(1);
5107 if (!isa<ConstantSDNode>(EltNo))
5108 return false;
5109
5110 // If the bit convert changed the number of elements, it is unsafe
5111 // to examine the mask.
5112 bool HasShuffleIntoBitcast = false;
5113 if (V.getOpcode() == ISD::BIT_CONVERT) {
5114 EVT SrcVT = V.getOperand(0).getValueType();
5115 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5116 return false;
5117 V = V.getOperand(0);
5118 HasShuffleIntoBitcast = true;
5119 }
5120
5121 // Select the input vector, guarding against out of range extract vector.
5122 unsigned NumElems = VT.getVectorNumElements();
5123 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5124 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5125 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5126
5127 // Skip one more bit_convert if necessary
5128 if (V.getOpcode() == ISD::BIT_CONVERT)
5129 V = V.getOperand(0);
5130
5131 if (ISD::isNormalLoad(V.getNode())) {
5132 // Is the original load suitable?
5133 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5134
5135 // FIXME: avoid the multi-use bug that is preventing lots of
5136 // of foldings to be detected, this is still wrong of course, but
5137 // give the temporary desired behavior, and if it happens that
5138 // the load has real more uses, during isel it will not fold, and
5139 // will generate poor code.
5140 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5141 return false;
5142
5143 if (!HasShuffleIntoBitcast)
5144 return true;
5145
5146 // If there's a bitcast before the shuffle, check if the load type and
5147 // alignment is valid.
5148 unsigned Align = LN0->getAlignment();
5149 unsigned NewAlign =
5150 TLI.getTargetData()->getABITypeAlignment(
5151 VT.getTypeForEVT(*DAG.getContext()));
5152
5153 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5154 return false;
5155 }
5156
5157 return true;
5158}
5159
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005160static
Evan Cheng835580f2010-10-07 20:50:20 +00005161SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5162 EVT VT = Op.getValueType();
5163
5164 // Canonizalize to v2f64.
5165 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, V1);
5166 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
5167 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5168 V1, DAG));
5169}
5170
5171static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005172SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5173 bool HasSSE2) {
5174 SDValue V1 = Op.getOperand(0);
5175 SDValue V2 = Op.getOperand(1);
5176 EVT VT = Op.getValueType();
5177
5178 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5179
5180 if (HasSSE2 && VT == MVT::v2f64)
5181 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5182
5183 // v4f32 or v4i32
5184 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5185}
5186
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005187static
5188SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5189 SDValue V1 = Op.getOperand(0);
5190 SDValue V2 = Op.getOperand(1);
5191 EVT VT = Op.getValueType();
5192
5193 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5194 "unsupported shuffle type");
5195
5196 if (V2.getOpcode() == ISD::UNDEF)
5197 V2 = V1;
5198
5199 // v4i32 or v4f32
5200 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5201}
5202
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005203static
5204SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5205 SDValue V1 = Op.getOperand(0);
5206 SDValue V2 = Op.getOperand(1);
5207 EVT VT = Op.getValueType();
5208 unsigned NumElems = VT.getVectorNumElements();
5209
5210 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5211 // operand of these instructions is only memory, so check if there's a
5212 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5213 // same masks.
5214 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005215
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005216 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005217 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005218 CanFoldLoad = true;
5219
5220 // When V1 is a load, it can be folded later into a store in isel, example:
5221 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5222 // turns into:
5223 // (MOVLPSmr addr:$src1, VR128:$src2)
5224 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005225 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005226 CanFoldLoad = true;
5227
5228 if (CanFoldLoad) {
5229 if (HasSSE2 && NumElems == 2)
5230 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5231
5232 if (NumElems == 4)
5233 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5234 }
5235
5236 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5237 // movl and movlp will both match v2i64, but v2i64 is never matched by
5238 // movl earlier because we make it strict to avoid messing with the movlp load
5239 // folding logic (see the code above getMOVLP call). Match it here then,
5240 // this is horrible, but will stay like this until we move all shuffle
5241 // matching to x86 specific nodes. Note that for the 1st condition all
5242 // types are matched with movsd.
5243 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5244 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5245 else if (HasSSE2)
5246 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5247
5248
5249 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5250
5251 // Invert the operand order and use SHUFPS to match it.
5252 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5253 X86::getShuffleSHUFImmediate(SVOp), DAG);
5254}
5255
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005256static inline unsigned getUNPCKLOpcode(EVT VT) {
5257 switch(VT.getSimpleVT().SimpleTy) {
5258 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5259 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
5260 case MVT::v4f32: return X86ISD::UNPCKLPS;
5261 case MVT::v2f64: return X86ISD::UNPCKLPD;
5262 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5263 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5264 default:
5265 llvm_unreachable("Unknow type for unpckl");
5266 }
5267 return 0;
5268}
5269
5270static inline unsigned getUNPCKHOpcode(EVT VT) {
5271 switch(VT.getSimpleVT().SimpleTy) {
5272 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5273 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5274 case MVT::v4f32: return X86ISD::UNPCKHPS;
5275 case MVT::v2f64: return X86ISD::UNPCKHPD;
5276 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5277 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5278 default:
5279 llvm_unreachable("Unknow type for unpckh");
5280 }
5281 return 0;
5282}
5283
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005284static
5285SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005286 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005287 const X86Subtarget *Subtarget) {
5288 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5289 EVT VT = Op.getValueType();
5290 DebugLoc dl = Op.getDebugLoc();
5291 SDValue V1 = Op.getOperand(0);
5292 SDValue V2 = Op.getOperand(1);
5293
5294 if (isZeroShuffle(SVOp))
5295 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5296
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005297 // Handle splat operations
5298 if (SVOp->isSplat()) {
5299 // Special case, this is the only place now where it's
5300 // allowed to return a vector_shuffle operation without
5301 // using a target specific node, because *hopefully* it
5302 // will be optimized away by the dag combiner.
5303 if (VT.getVectorNumElements() <= 4 &&
5304 CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
5305 return Op;
5306
5307 // Handle splats by matching through known masks
5308 if (VT.getVectorNumElements() <= 4)
5309 return SDValue();
5310
Evan Cheng835580f2010-10-07 20:50:20 +00005311 // Canonicalize all of the remaining to v4f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005312 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005313 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005314
5315 // If the shuffle can be profitably rewritten as a narrower shuffle, then
5316 // do it!
5317 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
5318 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5319 if (NewOp.getNode())
5320 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, NewOp);
5321 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
5322 // FIXME: Figure out a cleaner way to do this.
5323 // Try to make use of movq to zero out the top part.
5324 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
5325 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5326 if (NewOp.getNode()) {
5327 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
5328 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
5329 DAG, Subtarget, dl);
5330 }
5331 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
5332 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5333 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
5334 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
5335 DAG, Subtarget, dl);
5336 }
5337 }
5338 return SDValue();
5339}
5340
Dan Gohman475871a2008-07-27 21:46:04 +00005341SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005342X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00005343 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005344 SDValue V1 = Op.getOperand(0);
5345 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005346 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005347 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00005348 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005349 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005350 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
5351 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00005352 bool V1IsSplat = false;
5353 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005354 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005355 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005356 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005357 MachineFunction &MF = DAG.getMachineFunction();
5358 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005359
Dale Johannesen0488fb62010-09-30 23:57:10 +00005360 // Shuffle operations on MMX not supported.
5361 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00005362 return Op;
5363
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005364 // Vector shuffle lowering takes 3 steps:
5365 //
5366 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
5367 // narrowing and commutation of operands should be handled.
5368 // 2) Matching of shuffles with known shuffle masks to x86 target specific
5369 // shuffle nodes.
5370 // 3) Rewriting of unmatched masks into new generic shuffle operations,
5371 // so the shuffle can be broken into other shuffles and the legalizer can
5372 // try the lowering again.
5373 //
5374 // The general ideia is that no vector_shuffle operation should be left to
5375 // be matched during isel, all of them must be converted to a target specific
5376 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00005377
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005378 // Normalize the input vectors. Here splats, zeroed vectors, profitable
5379 // narrowing and commutation of operands should be handled. The actual code
5380 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005381 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005382 if (NewOp.getNode())
5383 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00005384
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005385 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
5386 // unpckh_undef). Only use pshufd if speed is more important than size.
5387 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
5388 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5389 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5390 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
5391 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5392 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00005393
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005394 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00005395 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00005396 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005397
Dale Johannesen0488fb62010-09-30 23:57:10 +00005398 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005399 return getMOVHighToLow(Op, dl, DAG);
5400
5401 // Use to match splats
5402 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
5403 (VT == MVT::v2f64 || VT == MVT::v2i64))
5404 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5405
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005406 if (X86::isPSHUFDMask(SVOp)) {
5407 // The actual implementation will match the mask in the if above and then
5408 // during isel it can match several different instructions, not only pshufd
5409 // as its name says, sad but true, emulate the behavior for now...
5410 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
5411 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
5412
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005413 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5414
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005415 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005416 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
5417
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005418 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005419 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
5420 TargetMask, DAG);
5421
5422 if (VT == MVT::v4f32)
5423 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
5424 TargetMask, DAG);
5425 }
Eric Christopherfd179292009-08-27 18:07:15 +00005426
Evan Chengf26ffe92008-05-29 08:22:04 +00005427 // Check if this can be converted into a logical shift.
5428 bool isLeft = false;
5429 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00005430 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00005431 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00005432 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00005433 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005434 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00005435 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005436 EVT EltVT = VT.getVectorElementType();
5437 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005438 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005439 }
Eric Christopherfd179292009-08-27 18:07:15 +00005440
Nate Begeman9008ca62009-04-27 18:41:29 +00005441 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005442 if (V1IsUndef)
5443 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00005444 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00005445 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005446 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005447 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005448 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5449
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005450 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005451 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5452 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00005453 }
Eric Christopherfd179292009-08-27 18:07:15 +00005454
Nate Begeman9008ca62009-04-27 18:41:29 +00005455 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00005456 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
5457 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005458
Dale Johannesen0488fb62010-09-30 23:57:10 +00005459 if (X86::isMOVHLPSMask(SVOp))
5460 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005461
Dale Johannesen0488fb62010-09-30 23:57:10 +00005462 if (X86::isMOVSHDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5463 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005464
Dale Johannesen0488fb62010-09-30 23:57:10 +00005465 if (X86::isMOVSLDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5466 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00005467
Dale Johannesen0488fb62010-09-30 23:57:10 +00005468 if (X86::isMOVLPMask(SVOp))
5469 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005470
Nate Begeman9008ca62009-04-27 18:41:29 +00005471 if (ShouldXformToMOVHLPS(SVOp) ||
5472 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
5473 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005474
Evan Chengf26ffe92008-05-29 08:22:04 +00005475 if (isShift) {
5476 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005477 EVT EltVT = VT.getVectorElementType();
5478 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005479 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005480 }
Eric Christopherfd179292009-08-27 18:07:15 +00005481
Evan Cheng9eca5e82006-10-25 21:49:50 +00005482 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00005483 // FIXME: This should also accept a bitcast of a splat? Be careful, not
5484 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00005485 V1IsSplat = isSplatVector(V1.getNode());
5486 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005487
Chris Lattner8a594482007-11-25 00:24:49 +00005488 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00005489 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005490 Op = CommuteVectorShuffle(SVOp, DAG);
5491 SVOp = cast<ShuffleVectorSDNode>(Op);
5492 V1 = SVOp->getOperand(0);
5493 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00005494 std::swap(V1IsSplat, V2IsSplat);
5495 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005496 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00005497 }
5498
Nate Begeman9008ca62009-04-27 18:41:29 +00005499 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
5500 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00005501 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00005502 return V1;
5503 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
5504 // the instruction selector will not match, so get a canonical MOVL with
5505 // swapped operands to undo the commute.
5506 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00005507 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005508
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005509 if (X86::isUNPCKLMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005510 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005511
5512 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005513 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00005514
Evan Cheng9bbbb982006-10-25 20:48:19 +00005515 if (V2IsSplat) {
5516 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005517 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00005518 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00005519 SDValue NewMask = NormalizeMask(SVOp, DAG);
5520 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
5521 if (NSVOp != SVOp) {
5522 if (X86::isUNPCKLMask(NSVOp, true)) {
5523 return NewMask;
5524 } else if (X86::isUNPCKHMask(NSVOp, true)) {
5525 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005526 }
5527 }
5528 }
5529
Evan Cheng9eca5e82006-10-25 21:49:50 +00005530 if (Commuted) {
5531 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00005532 // FIXME: this seems wrong.
5533 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
5534 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005535
5536 if (X86::isUNPCKLMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005537 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005538
5539 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005540 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005541 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005542
Nate Begeman9008ca62009-04-27 18:41:29 +00005543 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00005544 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00005545 return CommuteVectorShuffle(SVOp, DAG);
5546
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00005547 // The checks below are all present in isShuffleMaskLegal, but they are
5548 // inlined here right now to enable us to directly emit target specific
5549 // nodes, and remove one by one until they don't return Op anymore.
5550 SmallVector<int, 16> M;
5551 SVOp->getMask(M);
5552
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005553 if (isPALIGNRMask(M, VT, HasSSSE3))
5554 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
5555 X86::getShufflePALIGNRImmediate(SVOp),
5556 DAG);
5557
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00005558 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
5559 SVOp->getSplatIndex() == 0 && V2IsUndef) {
5560 if (VT == MVT::v2f64)
5561 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
5562 if (VT == MVT::v2i64)
5563 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
5564 }
5565
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00005566 if (isPSHUFHWMask(M, VT))
5567 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
5568 X86::getShufflePSHUFHWImmediate(SVOp),
5569 DAG);
5570
5571 if (isPSHUFLWMask(M, VT))
5572 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
5573 X86::getShufflePSHUFLWImmediate(SVOp),
5574 DAG);
5575
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00005576 if (isSHUFPMask(M, VT)) {
5577 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5578 if (VT == MVT::v4f32 || VT == MVT::v4i32)
5579 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
5580 TargetMask, DAG);
5581 if (VT == MVT::v2f64 || VT == MVT::v2i64)
5582 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
5583 TargetMask, DAG);
5584 }
5585
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005586 if (X86::isUNPCKL_v_undef_Mask(SVOp))
5587 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5588 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5589 if (X86::isUNPCKH_v_undef_Mask(SVOp))
5590 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5591 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5592
Evan Cheng14b32e12007-12-11 01:46:18 +00005593 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
Owen Anderson825b72b2009-08-11 20:47:22 +00005594 if (VT == MVT::v8i16) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005595 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005596 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00005597 return NewOp;
5598 }
5599
Owen Anderson825b72b2009-08-11 20:47:22 +00005600 if (VT == MVT::v16i8) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005601 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005602 if (NewOp.getNode())
5603 return NewOp;
5604 }
Eric Christopherfd179292009-08-27 18:07:15 +00005605
Dale Johannesen0488fb62010-09-30 23:57:10 +00005606 // Handle all 4 wide cases with a number of shuffles.
5607 if (NumElems == 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005608 return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005609
Dan Gohman475871a2008-07-27 21:46:04 +00005610 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005611}
5612
Dan Gohman475871a2008-07-27 21:46:04 +00005613SDValue
5614X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005615 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005616 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005617 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005618 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005619 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005620 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005621 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005622 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005623 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005624 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00005625 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
5626 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
5627 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005628 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5629 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Dale Johannesenace16102009-02-03 19:33:06 +00005630 DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005631 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00005632 Op.getOperand(0)),
5633 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00005634 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005635 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005636 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005637 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005638 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00005639 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00005640 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
5641 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005642 // result has a single use which is a store or a bitcast to i32. And in
5643 // the case of a store, it's not worth it if the index is a constant 0,
5644 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00005645 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00005646 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00005647 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005648 if ((User->getOpcode() != ISD::STORE ||
5649 (isa<ConstantSDNode>(Op.getOperand(1)) &&
5650 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Dan Gohman171c11e2008-04-16 02:32:24 +00005651 (User->getOpcode() != ISD::BIT_CONVERT ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005652 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00005653 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00005654 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
5655 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00005656 Op.getOperand(0)),
5657 Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005658 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Extract);
5659 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00005660 // ExtractPS works with constant index.
5661 if (isa<ConstantSDNode>(Op.getOperand(1)))
5662 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005663 }
Dan Gohman475871a2008-07-27 21:46:04 +00005664 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005665}
5666
5667
Dan Gohman475871a2008-07-27 21:46:04 +00005668SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005669X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
5670 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005671 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00005672 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005673
Evan Cheng62a3f152008-03-24 21:52:23 +00005674 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005675 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005676 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00005677 return Res;
5678 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00005679
Owen Andersone50ed302009-08-10 22:56:29 +00005680 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005681 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005682 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005683 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005684 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005685 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005686 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005687 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5688 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michelfdc40a02009-02-17 22:15:04 +00005689 DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005690 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00005691 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005692 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00005693 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00005694 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005695 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00005696 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005697 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005698 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005699 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005700 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005701 if (Idx == 0)
5702 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00005703
Evan Cheng0db9fe62006-04-25 20:13:52 +00005704 // SHUFPS the element to the lowest double word, then movss.
Nate Begeman9008ca62009-04-27 18:41:29 +00005705 int Mask[4] = { Idx, -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005706 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005707 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005708 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005709 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005710 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00005711 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005712 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
5713 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
5714 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005715 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005716 if (Idx == 0)
5717 return Op;
5718
5719 // UNPCKHPD the element to the lowest double word, then movsd.
5720 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
5721 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00005722 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005723 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005724 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005725 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005726 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005727 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005728 }
5729
Dan Gohman475871a2008-07-27 21:46:04 +00005730 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005731}
5732
Dan Gohman475871a2008-07-27 21:46:04 +00005733SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005734X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
5735 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005736 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005737 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005738 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005739
Dan Gohman475871a2008-07-27 21:46:04 +00005740 SDValue N0 = Op.getOperand(0);
5741 SDValue N1 = Op.getOperand(1);
5742 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00005743
Dan Gohman8a55ce42009-09-23 21:02:20 +00005744 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00005745 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005746 unsigned Opc;
5747 if (VT == MVT::v8i16)
5748 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005749 else if (VT == MVT::v16i8)
5750 Opc = X86ISD::PINSRB;
5751 else
5752 Opc = X86ISD::PINSRB;
5753
Nate Begeman14d12ca2008-02-11 04:19:36 +00005754 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
5755 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005756 if (N1.getValueType() != MVT::i32)
5757 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5758 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005759 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00005760 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005761 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005762 // Bits [7:6] of the constant are the source select. This will always be
5763 // zero here. The DAG Combiner may combine an extract_elt index into these
5764 // bits. For example (insert (extract, 3), 2) could be matched by putting
5765 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00005766 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00005767 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00005768 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00005769 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005770 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00005771 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00005772 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00005773 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005774 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00005775 // PINSR* works with constant index.
5776 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005777 }
Dan Gohman475871a2008-07-27 21:46:04 +00005778 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005779}
5780
Dan Gohman475871a2008-07-27 21:46:04 +00005781SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005782X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005783 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005784 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005785
5786 if (Subtarget->hasSSE41())
5787 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
5788
Dan Gohman8a55ce42009-09-23 21:02:20 +00005789 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00005790 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00005791
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005792 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00005793 SDValue N0 = Op.getOperand(0);
5794 SDValue N1 = Op.getOperand(1);
5795 SDValue N2 = Op.getOperand(2);
Evan Cheng794405e2007-12-12 07:55:34 +00005796
Dan Gohman8a55ce42009-09-23 21:02:20 +00005797 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00005798 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
5799 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005800 if (N1.getValueType() != MVT::i32)
5801 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5802 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005803 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00005804 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005805 }
Dan Gohman475871a2008-07-27 21:46:04 +00005806 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005807}
5808
Dan Gohman475871a2008-07-27 21:46:04 +00005809SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005810X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005811 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005812
Chris Lattnerf172ecd2010-07-04 23:07:25 +00005813 if (Op.getValueType() == MVT::v1i64 &&
5814 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00005815 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00005816
Owen Anderson825b72b2009-08-11 20:47:22 +00005817 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00005818 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
5819 "Expected an SSE type!");
Dale Johannesenace16102009-02-03 19:33:06 +00005820 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00005821 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005822}
5823
Bill Wendling056292f2008-09-16 21:48:12 +00005824// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
5825// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
5826// one of the above mentioned nodes. It has to be wrapped because otherwise
5827// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
5828// be used to form addressing mode. These wrapped nodes will be selected
5829// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00005830SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005831X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005832 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005833
Chris Lattner41621a22009-06-26 19:22:52 +00005834 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5835 // global base reg.
5836 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00005837 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005838 CodeModel::Model M = getTargetMachine().getCodeModel();
5839
Chris Lattner4f066492009-07-11 20:29:19 +00005840 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005841 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005842 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005843 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005844 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005845 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005846 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005847
Evan Cheng1606e8e2009-03-13 07:51:59 +00005848 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00005849 CP->getAlignment(),
5850 CP->getOffset(), OpFlag);
5851 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00005852 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005853 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00005854 if (OpFlag) {
5855 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005856 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005857 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005858 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005859 }
5860
5861 return Result;
5862}
5863
Dan Gohmand858e902010-04-17 15:26:15 +00005864SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005865 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005866
Chris Lattner18c59872009-06-27 04:16:01 +00005867 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5868 // global base reg.
5869 unsigned char OpFlag = 0;
5870 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005871 CodeModel::Model M = getTargetMachine().getCodeModel();
5872
Chris Lattner4f066492009-07-11 20:29:19 +00005873 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005874 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005875 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005876 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005877 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005878 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005879 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005880
Chris Lattner18c59872009-06-27 04:16:01 +00005881 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
5882 OpFlag);
5883 DebugLoc DL = JT->getDebugLoc();
5884 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005885
Chris Lattner18c59872009-06-27 04:16:01 +00005886 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00005887 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00005888 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5889 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005890 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005891 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005892
Chris Lattner18c59872009-06-27 04:16:01 +00005893 return Result;
5894}
5895
5896SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005897X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005898 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00005899
Chris Lattner18c59872009-06-27 04:16:01 +00005900 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5901 // global base reg.
5902 unsigned char OpFlag = 0;
5903 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005904 CodeModel::Model M = getTargetMachine().getCodeModel();
5905
Chris Lattner4f066492009-07-11 20:29:19 +00005906 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005907 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005908 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005909 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005910 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005911 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005912 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005913
Chris Lattner18c59872009-06-27 04:16:01 +00005914 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00005915
Chris Lattner18c59872009-06-27 04:16:01 +00005916 DebugLoc DL = Op.getDebugLoc();
5917 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005918
5919
Chris Lattner18c59872009-06-27 04:16:01 +00005920 // With PIC, the address is actually $g + Offset.
5921 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00005922 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00005923 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5924 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005925 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005926 Result);
5927 }
Eric Christopherfd179292009-08-27 18:07:15 +00005928
Chris Lattner18c59872009-06-27 04:16:01 +00005929 return Result;
5930}
5931
Dan Gohman475871a2008-07-27 21:46:04 +00005932SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005933X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00005934 // Create the TargetBlockAddressAddress node.
5935 unsigned char OpFlags =
5936 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00005937 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00005938 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00005939 DebugLoc dl = Op.getDebugLoc();
5940 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
5941 /*isTarget=*/true, OpFlags);
5942
Dan Gohmanf705adb2009-10-30 01:28:02 +00005943 if (Subtarget->isPICStyleRIPRel() &&
5944 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00005945 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
5946 else
5947 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00005948
Dan Gohman29cbade2009-11-20 23:18:13 +00005949 // With PIC, the address is actually $g + Offset.
5950 if (isGlobalRelativeToPICBase(OpFlags)) {
5951 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
5952 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
5953 Result);
5954 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00005955
5956 return Result;
5957}
5958
5959SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00005960X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00005961 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00005962 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00005963 // Create the TargetGlobalAddress node, folding in the constant
5964 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00005965 unsigned char OpFlags =
5966 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005967 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00005968 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005969 if (OpFlags == X86II::MO_NO_FLAG &&
5970 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00005971 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00005972 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00005973 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00005974 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00005975 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00005976 }
Eric Christopherfd179292009-08-27 18:07:15 +00005977
Chris Lattner4f066492009-07-11 20:29:19 +00005978 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005979 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00005980 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
5981 else
5982 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00005983
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005984 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00005985 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00005986 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
5987 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005988 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005989 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005990
Chris Lattner36c25012009-07-10 07:34:39 +00005991 // For globals that require a load from a stub to get the address, emit the
5992 // load.
5993 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00005994 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00005995 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005996
Dan Gohman6520e202008-10-18 02:06:02 +00005997 // If there was a non-zero offset that we didn't fold, create an explicit
5998 // addition for it.
5999 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006000 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006001 DAG.getConstant(Offset, getPointerTy()));
6002
Evan Cheng0db9fe62006-04-25 20:13:52 +00006003 return Result;
6004}
6005
Evan Chengda43bcf2008-09-24 00:05:32 +00006006SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006007X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006008 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006009 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006010 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006011}
6012
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006013static SDValue
6014GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006015 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006016 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006017 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Owen Anderson825b72b2009-08-11 20:47:22 +00006018 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006019 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006020 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006021 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006022 GA->getOffset(),
6023 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006024 if (InFlag) {
6025 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006026 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006027 } else {
6028 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006029 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006030 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006031
6032 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006033 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006034
Rafael Espindola15f1b662009-04-24 12:59:40 +00006035 SDValue Flag = Chain.getValue(1);
6036 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006037}
6038
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006039// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006040static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006041LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006042 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006043 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006044 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6045 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006046 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006047 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006048 InFlag = Chain.getValue(1);
6049
Chris Lattnerb903bed2009-06-26 21:20:29 +00006050 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006051}
6052
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006053// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006054static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006055LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006056 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006057 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6058 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006059}
6060
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006061// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6062// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006063static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006064 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006065 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006066 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006067
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006068 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6069 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6070 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006071
Michael J. Spencerec38de22010-10-10 22:04:20 +00006072 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006073 DAG.getIntPtrConstant(0),
6074 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006075
Chris Lattnerb903bed2009-06-26 21:20:29 +00006076 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006077 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6078 // initialexec.
6079 unsigned WrapperKind = X86ISD::Wrapper;
6080 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006081 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006082 } else if (is64Bit) {
6083 assert(model == TLSModel::InitialExec);
6084 OperandFlags = X86II::MO_GOTTPOFF;
6085 WrapperKind = X86ISD::WrapperRIP;
6086 } else {
6087 assert(model == TLSModel::InitialExec);
6088 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006089 }
Eric Christopherfd179292009-08-27 18:07:15 +00006090
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006091 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6092 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006093 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006094 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006095 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006096 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006097
Rafael Espindola9a580232009-02-27 13:37:18 +00006098 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006099 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006100 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006101
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006102 // The address of the thread local variable is the add of the thread
6103 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006104 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006105}
6106
Dan Gohman475871a2008-07-27 21:46:04 +00006107SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006108X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006109
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006110 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006111 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006112
Eric Christopher30ef0e52010-06-03 04:07:48 +00006113 if (Subtarget->isTargetELF()) {
6114 // TODO: implement the "local dynamic" model
6115 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006116
Eric Christopher30ef0e52010-06-03 04:07:48 +00006117 // If GV is an alias then use the aliasee for determining
6118 // thread-localness.
6119 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6120 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006121
6122 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006123 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006124
Eric Christopher30ef0e52010-06-03 04:07:48 +00006125 switch (model) {
6126 case TLSModel::GeneralDynamic:
6127 case TLSModel::LocalDynamic: // not implemented
6128 if (Subtarget->is64Bit())
6129 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6130 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006131
Eric Christopher30ef0e52010-06-03 04:07:48 +00006132 case TLSModel::InitialExec:
6133 case TLSModel::LocalExec:
6134 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6135 Subtarget->is64Bit());
6136 }
6137 } else if (Subtarget->isTargetDarwin()) {
6138 // Darwin only has one model of TLS. Lower to that.
6139 unsigned char OpFlag = 0;
6140 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6141 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006142
Eric Christopher30ef0e52010-06-03 04:07:48 +00006143 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6144 // global base reg.
6145 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6146 !Subtarget->is64Bit();
6147 if (PIC32)
6148 OpFlag = X86II::MO_TLVP_PIC_BASE;
6149 else
6150 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006151 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006152 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopher30ef0e52010-06-03 04:07:48 +00006153 getPointerTy(),
6154 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00006155 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006156
Eric Christopher30ef0e52010-06-03 04:07:48 +00006157 // With PIC32, the address is actually $g + Offset.
6158 if (PIC32)
6159 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6160 DAG.getNode(X86ISD::GlobalBaseReg,
6161 DebugLoc(), getPointerTy()),
6162 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006163
Eric Christopher30ef0e52010-06-03 04:07:48 +00006164 // Lowering the machine isd will make sure everything is in the right
6165 // location.
6166 SDValue Args[] = { Offset };
6167 SDValue Chain = DAG.getNode(X86ISD::TLSCALL, DL, MVT::Other, Args, 1);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006168
Eric Christopher30ef0e52010-06-03 04:07:48 +00006169 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
6170 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6171 MFI->setAdjustsStack(true);
Eric Christopherfd179292009-08-27 18:07:15 +00006172
Eric Christopher30ef0e52010-06-03 04:07:48 +00006173 // And our return value (tls address) is in the standard call return value
6174 // location.
6175 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
6176 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006177 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006178
Eric Christopher30ef0e52010-06-03 04:07:48 +00006179 assert(false &&
6180 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00006181
Torok Edwinc23197a2009-07-14 16:55:14 +00006182 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00006183 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006184}
6185
Evan Cheng0db9fe62006-04-25 20:13:52 +00006186
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006187/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00006188/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohmand858e902010-04-17 15:26:15 +00006189SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00006190 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00006191 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006192 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006193 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006194 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00006195 SDValue ShOpLo = Op.getOperand(0);
6196 SDValue ShOpHi = Op.getOperand(1);
6197 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00006198 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00006199 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00006200 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00006201
Dan Gohman475871a2008-07-27 21:46:04 +00006202 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006203 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006204 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
6205 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006206 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006207 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
6208 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006209 }
Evan Chenge3413162006-01-09 18:33:28 +00006210
Owen Anderson825b72b2009-08-11 20:47:22 +00006211 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
6212 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00006213 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00006214 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00006215
Dan Gohman475871a2008-07-27 21:46:04 +00006216 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00006217 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00006218 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
6219 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00006220
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006221 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006222 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6223 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006224 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006225 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6226 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006227 }
6228
Dan Gohman475871a2008-07-27 21:46:04 +00006229 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00006230 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006231}
Evan Chenga3195e82006-01-12 22:54:21 +00006232
Dan Gohmand858e902010-04-17 15:26:15 +00006233SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
6234 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006235 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00006236
Dale Johannesen0488fb62010-09-30 23:57:10 +00006237 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006238 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006239
Owen Anderson825b72b2009-08-11 20:47:22 +00006240 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00006241 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00006242
Eli Friedman36df4992009-05-27 00:47:34 +00006243 // These are really Legal; return the operand so the caller accepts it as
6244 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006245 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00006246 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00006247 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00006248 Subtarget->is64Bit()) {
6249 return Op;
6250 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006251
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006252 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006253 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006254 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00006255 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006256 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00006257 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00006258 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006259 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006260 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006261 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
6262}
Evan Cheng0db9fe62006-04-25 20:13:52 +00006263
Owen Andersone50ed302009-08-10 22:56:29 +00006264SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00006265 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00006266 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006267 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00006268 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00006269 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00006270 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006271 if (useSSE)
Owen Anderson825b72b2009-08-11 20:47:22 +00006272 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
Chris Lattner5a88b832007-02-25 07:10:00 +00006273 else
Owen Anderson825b72b2009-08-11 20:47:22 +00006274 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006275
Chris Lattner492a43e2010-09-22 01:28:21 +00006276 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006277
Chris Lattner492a43e2010-09-22 01:28:21 +00006278 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6279 MachineMemOperand *MMO =
6280 DAG.getMachineFunction()
6281 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6282 MachineMemOperand::MOLoad, ByteSize, ByteSize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006283
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006284 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006285 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
6286 X86ISD::FILD, DL,
6287 Tys, Ops, array_lengthof(Ops),
6288 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006289
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006290 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006291 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00006292 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006293
6294 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
6295 // shouldn't be necessary except that RFP cannot be live across
6296 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006297 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006298 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
6299 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006300 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00006301 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006302 SDValue Ops[] = {
6303 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
6304 };
Chris Lattner492a43e2010-09-22 01:28:21 +00006305 MachineMemOperand *MMO =
6306 DAG.getMachineFunction()
6307 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006308 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006309
Chris Lattner492a43e2010-09-22 01:28:21 +00006310 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
6311 Ops, array_lengthof(Ops),
6312 Op.getValueType(), MMO);
6313 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006314 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006315 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006316 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006317
Evan Cheng0db9fe62006-04-25 20:13:52 +00006318 return Result;
6319}
6320
Bill Wendling8b8a6362009-01-17 03:56:04 +00006321// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006322SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
6323 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00006324 // This algorithm is not obvious. Here it is in C code, more or less:
6325 /*
6326 double uint64_to_double( uint32_t hi, uint32_t lo ) {
6327 static const __m128i exp = { 0x4330000045300000ULL, 0 };
6328 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00006329
Bill Wendling8b8a6362009-01-17 03:56:04 +00006330 // Copy ints to xmm registers.
6331 __m128i xh = _mm_cvtsi32_si128( hi );
6332 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00006333
Bill Wendling8b8a6362009-01-17 03:56:04 +00006334 // Combine into low half of a single xmm register.
6335 __m128i x = _mm_unpacklo_epi32( xh, xl );
6336 __m128d d;
6337 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00006338
Bill Wendling8b8a6362009-01-17 03:56:04 +00006339 // Merge in appropriate exponents to give the integer bits the right
6340 // magnitude.
6341 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00006342
Bill Wendling8b8a6362009-01-17 03:56:04 +00006343 // Subtract away the biases to deal with the IEEE-754 double precision
6344 // implicit 1.
6345 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00006346
Bill Wendling8b8a6362009-01-17 03:56:04 +00006347 // All conversions up to here are exact. The correctly rounded result is
6348 // calculated using the current rounding mode using the following
6349 // horizontal add.
6350 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
6351 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
6352 // store doesn't really need to be here (except
6353 // maybe to zero the other double)
6354 return sd;
6355 }
6356 */
Dale Johannesen040225f2008-10-21 23:07:49 +00006357
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006358 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00006359 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00006360
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006361 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00006362 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00006363 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
6364 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
6365 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
6366 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006367 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006368 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006369
Bill Wendling8b8a6362009-01-17 03:56:04 +00006370 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00006371 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006372 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00006373 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006374 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006375 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006376 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006377
Owen Anderson825b72b2009-08-11 20:47:22 +00006378 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6379 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006380 Op.getOperand(0),
6381 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006382 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6383 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006384 Op.getOperand(0),
6385 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006386 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
6387 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00006388 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006389 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006390 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
6391 SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Unpck2);
6392 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00006393 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006394 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006395 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006396
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006397 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00006398 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00006399 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
6400 DAG.getUNDEF(MVT::v2f64), ShufMask);
6401 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
6402 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006403 DAG.getIntPtrConstant(0));
6404}
6405
Bill Wendling8b8a6362009-01-17 03:56:04 +00006406// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006407SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
6408 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006409 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006410 // FP constant to bias correct the final result.
6411 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00006412 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006413
6414 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00006415 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6416 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00006417 Op.getOperand(0),
6418 DAG.getIntPtrConstant(0)));
6419
Owen Anderson825b72b2009-08-11 20:47:22 +00006420 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
6421 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006422 DAG.getIntPtrConstant(0));
6423
6424 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006425 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
6426 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006427 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006428 MVT::v2f64, Load)),
6429 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006430 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006431 MVT::v2f64, Bias)));
6432 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
6433 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006434 DAG.getIntPtrConstant(0));
6435
6436 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006437 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006438
6439 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00006440 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00006441
Owen Anderson825b72b2009-08-11 20:47:22 +00006442 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006443 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00006444 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00006445 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006446 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00006447 }
6448
6449 // Handle final rounding.
6450 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00006451}
6452
Dan Gohmand858e902010-04-17 15:26:15 +00006453SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
6454 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00006455 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006456 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006457
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006458 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00006459 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
6460 // the optimization here.
6461 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00006462 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00006463
Owen Andersone50ed302009-08-10 22:56:29 +00006464 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006465 EVT DstVT = Op.getValueType();
6466 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006467 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006468 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006469 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00006470
6471 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00006472 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006473 if (SrcVT == MVT::i32) {
6474 SDValue WordOff = DAG.getConstant(4, getPointerTy());
6475 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
6476 getPointerTy(), StackSlot, WordOff);
6477 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006478 StackSlot, MachinePointerInfo(),
6479 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006480 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006481 OffsetSlot, MachinePointerInfo(),
6482 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006483 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
6484 return Fild;
6485 }
6486
6487 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
6488 SDValue Store = 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 // For i64 source, we need to add the appropriate power of 2 if the input
6492 // was negative. This is the same as the optimization in
6493 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
6494 // we must be careful to do the computation in x87 extended precision, not
6495 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00006496 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6497 MachineMemOperand *MMO =
6498 DAG.getMachineFunction()
6499 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6500 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006501
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006502 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
6503 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006504 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
6505 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006506
6507 APInt FF(32, 0x5F800000ULL);
6508
6509 // Check whether the sign bit is set.
6510 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
6511 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
6512 ISD::SETLT);
6513
6514 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
6515 SDValue FudgePtr = DAG.getConstantPool(
6516 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
6517 getPointerTy());
6518
6519 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
6520 SDValue Zero = DAG.getIntPtrConstant(0);
6521 SDValue Four = DAG.getIntPtrConstant(4);
6522 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
6523 Zero, Four);
6524 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
6525
6526 // Load the value out, extending it from f32 to f80.
6527 // FIXME: Avoid the extend by constructing the right constant pool?
Evan Chengbcc80172010-07-07 22:15:37 +00006528 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, MVT::f80, dl, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00006529 FudgePtr, MachinePointerInfo::getConstantPool(),
6530 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006531 // Extend everything to 80 bits to force it to be done on x87.
6532 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
6533 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00006534}
6535
Dan Gohman475871a2008-07-27 21:46:04 +00006536std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00006537FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00006538 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00006539
Owen Andersone50ed302009-08-10 22:56:29 +00006540 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00006541
6542 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006543 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
6544 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00006545 }
6546
Owen Anderson825b72b2009-08-11 20:47:22 +00006547 assert(DstTy.getSimpleVT() <= MVT::i64 &&
6548 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00006549 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00006550
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006551 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006552 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00006553 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006554 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00006555 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006556 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00006557 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006558 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006559
Evan Cheng87c89352007-10-15 20:11:21 +00006560 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
6561 // stack slot.
6562 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00006563 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00006564 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006565 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00006566
Michael J. Spencerec38de22010-10-10 22:04:20 +00006567
6568
Evan Cheng0db9fe62006-04-25 20:13:52 +00006569 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00006570 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00006571 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00006572 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
6573 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
6574 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006575 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006576
Dan Gohman475871a2008-07-27 21:46:04 +00006577 SDValue Chain = DAG.getEntryNode();
6578 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00006579 EVT TheVT = Op.getOperand(0).getValueType();
6580 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006581 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00006582 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006583 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006584 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00006585 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00006586 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00006587 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00006588 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00006589
Chris Lattner492a43e2010-09-22 01:28:21 +00006590 MachineMemOperand *MMO =
6591 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6592 MachineMemOperand::MOLoad, MemSize, MemSize);
6593 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
6594 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006595 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00006596 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006597 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
6598 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006599
Chris Lattner07290932010-09-22 01:05:16 +00006600 MachineMemOperand *MMO =
6601 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6602 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006603
Evan Cheng0db9fe62006-04-25 20:13:52 +00006604 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00006605 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00006606 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
6607 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00006608
Chris Lattner27a6c732007-11-24 07:07:01 +00006609 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006610}
6611
Dan Gohmand858e902010-04-17 15:26:15 +00006612SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
6613 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00006614 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006615 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006616
Eli Friedman948e95a2009-05-23 09:59:16 +00006617 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00006618 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00006619 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
6620 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00006621
Chris Lattner27a6c732007-11-24 07:07:01 +00006622 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006623 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006624 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00006625}
6626
Dan Gohmand858e902010-04-17 15:26:15 +00006627SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
6628 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00006629 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
6630 SDValue FIST = Vals.first, StackSlot = Vals.second;
6631 assert(FIST.getNode() && "Unexpected failure");
6632
6633 // Load the result.
6634 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006635 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006636}
6637
Dan Gohmand858e902010-04-17 15:26:15 +00006638SDValue X86TargetLowering::LowerFABS(SDValue Op,
6639 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006640 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006641 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006642 EVT VT = Op.getValueType();
6643 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006644 if (VT.isVector())
6645 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006646 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006647 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006648 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00006649 CV.push_back(C);
6650 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006651 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006652 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00006653 CV.push_back(C);
6654 CV.push_back(C);
6655 CV.push_back(C);
6656 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006657 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006658 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006659 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006660 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006661 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006662 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006663 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006664}
6665
Dan Gohmand858e902010-04-17 15:26:15 +00006666SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006667 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006668 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006669 EVT VT = Op.getValueType();
6670 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00006671 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00006672 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006673 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006674 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006675 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00006676 CV.push_back(C);
6677 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006678 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006679 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00006680 CV.push_back(C);
6681 CV.push_back(C);
6682 CV.push_back(C);
6683 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006684 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006685 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006686 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006687 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006688 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006689 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006690 if (VT.isVector()) {
Dale Johannesenace16102009-02-03 19:33:06 +00006691 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00006692 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
6693 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006694 Op.getOperand(0)),
Owen Anderson825b72b2009-08-11 20:47:22 +00006695 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00006696 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006697 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00006698 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006699}
6700
Dan Gohmand858e902010-04-17 15:26:15 +00006701SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006702 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00006703 SDValue Op0 = Op.getOperand(0);
6704 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006705 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006706 EVT VT = Op.getValueType();
6707 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00006708
6709 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006710 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006711 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006712 SrcVT = VT;
6713 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006714 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006715 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006716 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006717 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006718 }
6719
6720 // At this point the operands and the result should have the same
6721 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00006722
Evan Cheng68c47cb2007-01-05 07:55:56 +00006723 // First get the sign bit of second operand.
6724 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006725 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006726 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
6727 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006728 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006729 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
6730 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6731 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6732 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006733 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006734 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006735 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006736 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006737 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006738 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006739 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006740
6741 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006742 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006743 // Op0 is MVT::f32, Op1 is MVT::f64.
6744 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
6745 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
6746 DAG.getConstant(32, MVT::i32));
6747 SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, SignBit);
6748 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00006749 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006750 }
6751
Evan Cheng73d6cf12007-01-05 21:37:56 +00006752 // Clear first operand sign bit.
6753 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00006754 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006755 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
6756 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006757 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006758 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
6759 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6760 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6761 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006762 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006763 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006764 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006765 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006766 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006767 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006768 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006769
6770 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00006771 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006772}
6773
Dan Gohman076aee32009-03-04 19:44:21 +00006774/// Emit nodes that will be selected as "test Op0,Op0", or something
6775/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006776SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006777 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006778 DebugLoc dl = Op.getDebugLoc();
6779
Dan Gohman31125812009-03-07 01:58:32 +00006780 // CF and OF aren't always set the way we want. Determine which
6781 // of these we need.
6782 bool NeedCF = false;
6783 bool NeedOF = false;
6784 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006785 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00006786 case X86::COND_A: case X86::COND_AE:
6787 case X86::COND_B: case X86::COND_BE:
6788 NeedCF = true;
6789 break;
6790 case X86::COND_G: case X86::COND_GE:
6791 case X86::COND_L: case X86::COND_LE:
6792 case X86::COND_O: case X86::COND_NO:
6793 NeedOF = true;
6794 break;
Dan Gohman31125812009-03-07 01:58:32 +00006795 }
6796
Dan Gohman076aee32009-03-04 19:44:21 +00006797 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00006798 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
6799 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006800 if (Op.getResNo() != 0 || NeedOF || NeedCF)
6801 // Emit a CMP with 0, which is the TEST pattern.
6802 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6803 DAG.getConstant(0, Op.getValueType()));
6804
6805 unsigned Opcode = 0;
6806 unsigned NumOperands = 0;
6807 switch (Op.getNode()->getOpcode()) {
6808 case ISD::ADD:
6809 // Due to an isel shortcoming, be conservative if this add is likely to be
6810 // selected as part of a load-modify-store instruction. When the root node
6811 // in a match is a store, isel doesn't know how to remap non-chain non-flag
6812 // uses of other nodes in the match, such as the ADD in this case. This
6813 // leads to the ADD being left around and reselected, with the result being
6814 // two adds in the output. Alas, even if none our users are stores, that
6815 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
6816 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
6817 // climbing the DAG back to the root, and it doesn't seem to be worth the
6818 // effort.
6819 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00006820 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006821 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
6822 goto default_case;
6823
6824 if (ConstantSDNode *C =
6825 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
6826 // An add of one will be selected as an INC.
6827 if (C->getAPIntValue() == 1) {
6828 Opcode = X86ISD::INC;
6829 NumOperands = 1;
6830 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00006831 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006832
6833 // An add of negative one (subtract of one) will be selected as a DEC.
6834 if (C->getAPIntValue().isAllOnesValue()) {
6835 Opcode = X86ISD::DEC;
6836 NumOperands = 1;
6837 break;
6838 }
Dan Gohman076aee32009-03-04 19:44:21 +00006839 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006840
6841 // Otherwise use a regular EFLAGS-setting add.
6842 Opcode = X86ISD::ADD;
6843 NumOperands = 2;
6844 break;
6845 case ISD::AND: {
6846 // If the primary and result isn't used, don't bother using X86ISD::AND,
6847 // because a TEST instruction will be better.
6848 bool NonFlagUse = false;
6849 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6850 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
6851 SDNode *User = *UI;
6852 unsigned UOpNo = UI.getOperandNo();
6853 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
6854 // Look pass truncate.
6855 UOpNo = User->use_begin().getOperandNo();
6856 User = *User->use_begin();
6857 }
6858
6859 if (User->getOpcode() != ISD::BRCOND &&
6860 User->getOpcode() != ISD::SETCC &&
6861 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
6862 NonFlagUse = true;
6863 break;
6864 }
Dan Gohman076aee32009-03-04 19:44:21 +00006865 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006866
6867 if (!NonFlagUse)
6868 break;
6869 }
6870 // FALL THROUGH
6871 case ISD::SUB:
6872 case ISD::OR:
6873 case ISD::XOR:
6874 // Due to the ISEL shortcoming noted above, be conservative if this op is
6875 // likely to be selected as part of a load-modify-store instruction.
6876 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6877 UE = Op.getNode()->use_end(); UI != UE; ++UI)
6878 if (UI->getOpcode() == ISD::STORE)
6879 goto default_case;
6880
6881 // Otherwise use a regular EFLAGS-setting instruction.
6882 switch (Op.getNode()->getOpcode()) {
6883 default: llvm_unreachable("unexpected operator!");
6884 case ISD::SUB: Opcode = X86ISD::SUB; break;
6885 case ISD::OR: Opcode = X86ISD::OR; break;
6886 case ISD::XOR: Opcode = X86ISD::XOR; break;
6887 case ISD::AND: Opcode = X86ISD::AND; break;
6888 }
6889
6890 NumOperands = 2;
6891 break;
6892 case X86ISD::ADD:
6893 case X86ISD::SUB:
6894 case X86ISD::INC:
6895 case X86ISD::DEC:
6896 case X86ISD::OR:
6897 case X86ISD::XOR:
6898 case X86ISD::AND:
6899 return SDValue(Op.getNode(), 1);
6900 default:
6901 default_case:
6902 break;
Dan Gohman076aee32009-03-04 19:44:21 +00006903 }
6904
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006905 if (Opcode == 0)
6906 // Emit a CMP with 0, which is the TEST pattern.
6907 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6908 DAG.getConstant(0, Op.getValueType()));
6909
6910 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
6911 SmallVector<SDValue, 4> Ops;
6912 for (unsigned i = 0; i != NumOperands; ++i)
6913 Ops.push_back(Op.getOperand(i));
6914
6915 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
6916 DAG.ReplaceAllUsesWith(Op, New);
6917 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00006918}
6919
6920/// Emit nodes that will be selected as "cmp Op0,Op1", or something
6921/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006922SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006923 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006924 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
6925 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00006926 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00006927
6928 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00006929 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00006930}
6931
Evan Chengd40d03e2010-01-06 19:38:29 +00006932/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
6933/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00006934SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
6935 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006936 SDValue Op0 = And.getOperand(0);
6937 SDValue Op1 = And.getOperand(1);
6938 if (Op0.getOpcode() == ISD::TRUNCATE)
6939 Op0 = Op0.getOperand(0);
6940 if (Op1.getOpcode() == ISD::TRUNCATE)
6941 Op1 = Op1.getOperand(0);
6942
Evan Chengd40d03e2010-01-06 19:38:29 +00006943 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006944 if (Op1.getOpcode() == ISD::SHL)
6945 std::swap(Op0, Op1);
6946 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006947 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
6948 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006949 // If we looked past a truncate, check that it's only truncating away
6950 // known zeros.
6951 unsigned BitWidth = Op0.getValueSizeInBits();
6952 unsigned AndBitWidth = And.getValueSizeInBits();
6953 if (BitWidth > AndBitWidth) {
6954 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
6955 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
6956 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
6957 return SDValue();
6958 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006959 LHS = Op1;
6960 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00006961 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006962 } else if (Op1.getOpcode() == ISD::Constant) {
6963 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
6964 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00006965 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
6966 LHS = AndLHS.getOperand(0);
6967 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00006968 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006969 }
Evan Cheng0488db92007-09-25 01:57:46 +00006970
Evan Chengd40d03e2010-01-06 19:38:29 +00006971 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00006972 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00006973 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00006974 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00006975 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00006976 // Also promote i16 to i32 for performance / code size reason.
6977 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00006978 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00006979 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00006980
Evan Chengd40d03e2010-01-06 19:38:29 +00006981 // If the operand types disagree, extend the shift amount to match. Since
6982 // BT ignores high bits (like shifts) we can use anyextend.
6983 if (LHS.getValueType() != RHS.getValueType())
6984 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00006985
Evan Chengd40d03e2010-01-06 19:38:29 +00006986 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
6987 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
6988 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
6989 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00006990 }
6991
Evan Cheng54de3ea2010-01-05 06:52:31 +00006992 return SDValue();
6993}
6994
Dan Gohmand858e902010-04-17 15:26:15 +00006995SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00006996 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
6997 SDValue Op0 = Op.getOperand(0);
6998 SDValue Op1 = Op.getOperand(1);
6999 DebugLoc dl = Op.getDebugLoc();
7000 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7001
7002 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007003 // Lower (X & (1 << N)) == 0 to BT(X, N).
7004 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7005 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
7006 if (Op0.getOpcode() == ISD::AND &&
7007 Op0.hasOneUse() &&
7008 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007009 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007010 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7011 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7012 if (NewSetCC.getNode())
7013 return NewSetCC;
7014 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007015
Evan Cheng2c755ba2010-02-27 07:36:59 +00007016 // Look for "(setcc) == / != 1" to avoid unncessary setcc.
7017 if (Op0.getOpcode() == X86ISD::SETCC &&
7018 Op1.getOpcode() == ISD::Constant &&
7019 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
7020 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7021 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7022 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7023 bool Invert = (CC == ISD::SETNE) ^
7024 cast<ConstantSDNode>(Op1)->isNullValue();
7025 if (Invert)
7026 CCode = X86::GetOppositeBranchCondition(CCode);
7027 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7028 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7029 }
7030
Evan Chenge5b51ac2010-04-17 06:13:15 +00007031 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007032 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007033 if (X86CC == X86::COND_INVALID)
7034 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007035
Evan Cheng552f09a2010-04-26 19:06:11 +00007036 SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG);
Evan Chengad9c0a32009-12-15 00:53:42 +00007037
7038 // Use sbb x, x to materialize carry bit into a GPR.
Evan Cheng2e489c42009-12-16 00:53:11 +00007039 if (X86CC == X86::COND_B)
Evan Chengad9c0a32009-12-15 00:53:42 +00007040 return DAG.getNode(ISD::AND, dl, MVT::i8,
7041 DAG.getNode(X86ISD::SETCC_CARRY, dl, MVT::i8,
7042 DAG.getConstant(X86CC, MVT::i8), Cond),
7043 DAG.getConstant(1, MVT::i8));
Evan Chengad9c0a32009-12-15 00:53:42 +00007044
Owen Anderson825b72b2009-08-11 20:47:22 +00007045 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7046 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007047}
7048
Dan Gohmand858e902010-04-17 15:26:15 +00007049SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007050 SDValue Cond;
7051 SDValue Op0 = Op.getOperand(0);
7052 SDValue Op1 = Op.getOperand(1);
7053 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007054 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007055 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7056 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007057 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007058
7059 if (isFP) {
7060 unsigned SSECC = 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007061 EVT VT0 = Op0.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00007062 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7063 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007064 bool Swap = false;
7065
7066 switch (SetCCOpcode) {
7067 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007068 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007069 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007070 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007071 case ISD::SETGT: Swap = true; // Fallthrough
7072 case ISD::SETLT:
7073 case ISD::SETOLT: SSECC = 1; break;
7074 case ISD::SETOGE:
7075 case ISD::SETGE: Swap = true; // Fallthrough
7076 case ISD::SETLE:
7077 case ISD::SETOLE: SSECC = 2; break;
7078 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007079 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007080 case ISD::SETNE: SSECC = 4; break;
7081 case ISD::SETULE: Swap = true;
7082 case ISD::SETUGE: SSECC = 5; break;
7083 case ISD::SETULT: Swap = true;
7084 case ISD::SETUGT: SSECC = 6; break;
7085 case ISD::SETO: SSECC = 7; break;
7086 }
7087 if (Swap)
7088 std::swap(Op0, Op1);
7089
Nate Begemanfb8ead02008-07-25 19:05:58 +00007090 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007091 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007092 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007093 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007094 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7095 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007096 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007097 }
7098 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007099 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007100 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7101 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007102 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007103 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007104 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007105 }
7106 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007107 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007108 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007109
Nate Begeman30a0de92008-07-17 16:51:19 +00007110 // We are handling one of the integer comparisons here. Since SSE only has
7111 // GT and EQ comparisons for integer, swapping operands and multiple
7112 // operations may be required for some comparisons.
7113 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7114 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007115
Owen Anderson825b72b2009-08-11 20:47:22 +00007116 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007117 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007118 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007119 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007120 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7121 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007122 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007123
Nate Begeman30a0de92008-07-17 16:51:19 +00007124 switch (SetCCOpcode) {
7125 default: break;
7126 case ISD::SETNE: Invert = true;
7127 case ISD::SETEQ: Opc = EQOpc; break;
7128 case ISD::SETLT: Swap = true;
7129 case ISD::SETGT: Opc = GTOpc; break;
7130 case ISD::SETGE: Swap = true;
7131 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
7132 case ISD::SETULT: Swap = true;
7133 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7134 case ISD::SETUGE: Swap = true;
7135 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7136 }
7137 if (Swap)
7138 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007139
Nate Begeman30a0de92008-07-17 16:51:19 +00007140 // Since SSE has no unsigned integer comparisons, we need to flip the sign
7141 // bits of the inputs before performing those operations.
7142 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00007143 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00007144 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7145 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00007146 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00007147 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
7148 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00007149 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
7150 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00007151 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007152
Dale Johannesenace16102009-02-03 19:33:06 +00007153 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00007154
7155 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00007156 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00007157 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00007158
Nate Begeman30a0de92008-07-17 16:51:19 +00007159 return Result;
7160}
Evan Cheng0488db92007-09-25 01:57:46 +00007161
Evan Cheng370e5342008-12-03 08:38:43 +00007162// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00007163static bool isX86LogicalCmp(SDValue Op) {
7164 unsigned Opc = Op.getNode()->getOpcode();
7165 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
7166 return true;
7167 if (Op.getResNo() == 1 &&
7168 (Opc == X86ISD::ADD ||
7169 Opc == X86ISD::SUB ||
7170 Opc == X86ISD::SMUL ||
7171 Opc == X86ISD::UMUL ||
7172 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00007173 Opc == X86ISD::DEC ||
7174 Opc == X86ISD::OR ||
7175 Opc == X86ISD::XOR ||
7176 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00007177 return true;
7178
7179 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00007180}
7181
Dan Gohmand858e902010-04-17 15:26:15 +00007182SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007183 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007184 SDValue Cond = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007185 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007186 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00007187
Dan Gohman1a492952009-10-20 16:22:37 +00007188 if (Cond.getOpcode() == ISD::SETCC) {
7189 SDValue NewCond = LowerSETCC(Cond, DAG);
7190 if (NewCond.getNode())
7191 Cond = NewCond;
7192 }
Evan Cheng734503b2006-09-11 02:19:56 +00007193
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007194 // (select (x == 0), -1, 0) -> (sign_bit (x - 1))
7195 SDValue Op1 = Op.getOperand(1);
7196 SDValue Op2 = Op.getOperand(2);
7197 if (Cond.getOpcode() == X86ISD::SETCC &&
7198 cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue() == X86::COND_E) {
7199 SDValue Cmp = Cond.getOperand(1);
7200 if (Cmp.getOpcode() == X86ISD::CMP) {
7201 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op1);
7202 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
7203 ConstantSDNode *RHSC =
7204 dyn_cast<ConstantSDNode>(Cmp.getOperand(1).getNode());
7205 if (N1C && N1C->isAllOnesValue() &&
7206 N2C && N2C->isNullValue() &&
7207 RHSC && RHSC->isNullValue()) {
7208 SDValue CmpOp0 = Cmp.getOperand(0);
Chris Lattnerda0688e2010-03-14 18:44:35 +00007209 Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007210 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
7211 return DAG.getNode(X86ISD::SETCC_CARRY, dl, Op.getValueType(),
7212 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
7213 }
7214 }
7215 }
7216
Evan Chengad9c0a32009-12-15 00:53:42 +00007217 // Look pass (and (setcc_carry (cmp ...)), 1).
7218 if (Cond.getOpcode() == ISD::AND &&
7219 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7220 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007221 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007222 Cond = Cond.getOperand(0);
7223 }
7224
Evan Cheng3f41d662007-10-08 22:16:29 +00007225 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7226 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007227 if (Cond.getOpcode() == X86ISD::SETCC ||
7228 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007229 CC = Cond.getOperand(0);
7230
Dan Gohman475871a2008-07-27 21:46:04 +00007231 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007232 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00007233 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00007234
Evan Cheng3f41d662007-10-08 22:16:29 +00007235 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007236 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00007237 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00007238 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00007239
Chris Lattnerd1980a52009-03-12 06:52:53 +00007240 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
7241 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00007242 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007243 addTest = false;
7244 }
7245 }
7246
7247 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007248 // Look pass the truncate.
7249 if (Cond.getOpcode() == ISD::TRUNCATE)
7250 Cond = Cond.getOperand(0);
7251
7252 // We know the result of AND is compared against zero. Try to match
7253 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007254 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007255 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7256 if (NewSetCC.getNode()) {
7257 CC = NewSetCC.getOperand(0);
7258 Cond = NewSetCC.getOperand(1);
7259 addTest = false;
7260 }
7261 }
7262 }
7263
7264 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007265 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007266 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007267 }
7268
Evan Cheng0488db92007-09-25 01:57:46 +00007269 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
7270 // condition is true.
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007271 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
7272 SDValue Ops[] = { Op2, Op1, CC, Cond };
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007273 return DAG.getNode(X86ISD::CMOV, dl, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00007274}
7275
Evan Cheng370e5342008-12-03 08:38:43 +00007276// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
7277// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
7278// from the AND / OR.
7279static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
7280 Opc = Op.getOpcode();
7281 if (Opc != ISD::OR && Opc != ISD::AND)
7282 return false;
7283 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7284 Op.getOperand(0).hasOneUse() &&
7285 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
7286 Op.getOperand(1).hasOneUse());
7287}
7288
Evan Cheng961d6d42009-02-02 08:19:07 +00007289// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
7290// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00007291static bool isXor1OfSetCC(SDValue Op) {
7292 if (Op.getOpcode() != ISD::XOR)
7293 return false;
7294 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7295 if (N1C && N1C->getAPIntValue() == 1) {
7296 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7297 Op.getOperand(0).hasOneUse();
7298 }
7299 return false;
7300}
7301
Dan Gohmand858e902010-04-17 15:26:15 +00007302SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007303 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007304 SDValue Chain = Op.getOperand(0);
7305 SDValue Cond = Op.getOperand(1);
7306 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007307 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007308 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00007309
Dan Gohman1a492952009-10-20 16:22:37 +00007310 if (Cond.getOpcode() == ISD::SETCC) {
7311 SDValue NewCond = LowerSETCC(Cond, DAG);
7312 if (NewCond.getNode())
7313 Cond = NewCond;
7314 }
Chris Lattnere55484e2008-12-25 05:34:37 +00007315#if 0
7316 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00007317 else if (Cond.getOpcode() == X86ISD::ADD ||
7318 Cond.getOpcode() == X86ISD::SUB ||
7319 Cond.getOpcode() == X86ISD::SMUL ||
7320 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00007321 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00007322#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00007323
Evan Chengad9c0a32009-12-15 00:53:42 +00007324 // Look pass (and (setcc_carry (cmp ...)), 1).
7325 if (Cond.getOpcode() == ISD::AND &&
7326 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7327 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007328 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007329 Cond = Cond.getOperand(0);
7330 }
7331
Evan Cheng3f41d662007-10-08 22:16:29 +00007332 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7333 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007334 if (Cond.getOpcode() == X86ISD::SETCC ||
7335 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007336 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007337
Dan Gohman475871a2008-07-27 21:46:04 +00007338 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007339 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00007340 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00007341 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00007342 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007343 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00007344 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00007345 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007346 default: break;
7347 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00007348 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00007349 // These can only come from an arithmetic instruction with overflow,
7350 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007351 Cond = Cond.getNode()->getOperand(1);
7352 addTest = false;
7353 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00007354 }
Evan Cheng0488db92007-09-25 01:57:46 +00007355 }
Evan Cheng370e5342008-12-03 08:38:43 +00007356 } else {
7357 unsigned CondOpc;
7358 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
7359 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00007360 if (CondOpc == ISD::OR) {
7361 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
7362 // two branches instead of an explicit OR instruction with a
7363 // separate test.
7364 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007365 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00007366 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007367 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007368 Chain, Dest, CC, Cmp);
7369 CC = Cond.getOperand(1).getOperand(0);
7370 Cond = Cmp;
7371 addTest = false;
7372 }
7373 } else { // ISD::AND
7374 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
7375 // two branches instead of an explicit AND instruction with a
7376 // separate test. However, we only do this if this block doesn't
7377 // have a fall-through edge, because this requires an explicit
7378 // jmp when the condition is false.
7379 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007380 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00007381 Op.getNode()->hasOneUse()) {
7382 X86::CondCode CCode =
7383 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7384 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007385 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00007386 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00007387 // Look for an unconditional branch following this conditional branch.
7388 // We need this because we need to reverse the successors in order
7389 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00007390 if (User->getOpcode() == ISD::BR) {
7391 SDValue FalseBB = User->getOperand(1);
7392 SDNode *NewBR =
7393 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00007394 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00007395 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00007396 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00007397
Dale Johannesene4d209d2009-02-03 20:21:25 +00007398 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007399 Chain, Dest, CC, Cmp);
7400 X86::CondCode CCode =
7401 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
7402 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007403 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00007404 Cond = Cmp;
7405 addTest = false;
7406 }
7407 }
Dan Gohman279c22e2008-10-21 03:29:32 +00007408 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00007409 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
7410 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
7411 // It should be transformed during dag combiner except when the condition
7412 // is set by a arithmetics with overflow node.
7413 X86::CondCode CCode =
7414 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7415 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007416 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00007417 Cond = Cond.getOperand(0).getOperand(1);
7418 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00007419 }
Evan Cheng0488db92007-09-25 01:57:46 +00007420 }
7421
7422 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007423 // Look pass the truncate.
7424 if (Cond.getOpcode() == ISD::TRUNCATE)
7425 Cond = Cond.getOperand(0);
7426
7427 // We know the result of AND is compared against zero. Try to match
7428 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007429 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007430 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7431 if (NewSetCC.getNode()) {
7432 CC = NewSetCC.getOperand(0);
7433 Cond = NewSetCC.getOperand(1);
7434 addTest = false;
7435 }
7436 }
7437 }
7438
7439 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007440 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007441 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007442 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00007443 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00007444 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007445}
7446
Anton Korobeynikove060b532007-04-17 19:34:00 +00007447
7448// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
7449// Calls to _alloca is needed to probe the stack when allocating more than 4k
7450// bytes in one go. Touching the stack at 4K increments is necessary to ensure
7451// that the guard pages used by the OS virtual memory manager are allocated in
7452// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00007453SDValue
7454X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007455 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00007456 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007457 "This should be used only on Windows targets");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007458 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007459
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007460 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007461 SDValue Chain = Op.getOperand(0);
7462 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007463 // FIXME: Ensure alignment here
7464
Dan Gohman475871a2008-07-27 21:46:04 +00007465 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007466
Owen Anderson825b72b2009-08-11 20:47:22 +00007467 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007468
Dale Johannesendd64c412009-02-04 00:33:20 +00007469 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007470 Flag = Chain.getValue(1);
7471
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007472 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007473
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007474 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007475 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007476
Dale Johannesendd64c412009-02-04 00:33:20 +00007477 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007478
Dan Gohman475871a2008-07-27 21:46:04 +00007479 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00007480 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007481}
7482
Dan Gohmand858e902010-04-17 15:26:15 +00007483SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00007484 MachineFunction &MF = DAG.getMachineFunction();
7485 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
7486
Dan Gohman69de1932008-02-06 22:27:42 +00007487 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00007488 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00007489
Anton Korobeynikove7beda12010-10-03 22:52:07 +00007490 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00007491 // vastart just stores the address of the VarArgsFrameIndex slot into the
7492 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00007493 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7494 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007495 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
7496 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007497 }
7498
7499 // __va_list_tag:
7500 // gp_offset (0 - 6 * 8)
7501 // fp_offset (48 - 48 + 8 * 16)
7502 // overflow_arg_area (point to parameters coming in memory).
7503 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00007504 SmallVector<SDValue, 8> MemOps;
7505 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00007506 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007507 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007508 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
7509 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007510 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007511 MemOps.push_back(Store);
7512
7513 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007514 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007515 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00007516 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007517 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
7518 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007519 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007520 MemOps.push_back(Store);
7521
7522 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00007523 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007524 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00007525 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7526 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007527 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
7528 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00007529 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007530 MemOps.push_back(Store);
7531
7532 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00007533 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007534 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00007535 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
7536 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007537 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
7538 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007539 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00007540 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00007541 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00007542}
7543
Dan Gohmand858e902010-04-17 15:26:15 +00007544SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00007545 assert(Subtarget->is64Bit() &&
7546 "LowerVAARG only handles 64-bit va_arg!");
7547 assert((Subtarget->isTargetLinux() ||
7548 Subtarget->isTargetDarwin()) &&
7549 "Unhandled target in LowerVAARG");
7550 assert(Op.getNode()->getNumOperands() == 4);
7551 SDValue Chain = Op.getOperand(0);
7552 SDValue SrcPtr = Op.getOperand(1);
7553 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
7554 unsigned Align = Op.getConstantOperandVal(3);
7555 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00007556
Dan Gohman320afb82010-10-12 18:00:49 +00007557 EVT ArgVT = Op.getNode()->getValueType(0);
7558 const Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
7559 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
7560 uint8_t ArgMode;
7561
7562 // Decide which area this value should be read from.
7563 // TODO: Implement the AMD64 ABI in its entirety. This simple
7564 // selection mechanism works only for the basic types.
7565 if (ArgVT == MVT::f80) {
7566 llvm_unreachable("va_arg for f80 not yet implemented");
7567 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
7568 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
7569 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
7570 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
7571 } else {
7572 llvm_unreachable("Unhandled argument type in LowerVAARG");
7573 }
7574
7575 if (ArgMode == 2) {
7576 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00007577 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00007578 !(DAG.getMachineFunction()
7579 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
7580 Subtarget->hasSSE1());
Dan Gohman320afb82010-10-12 18:00:49 +00007581 }
7582
7583 // Insert VAARG_64 node into the DAG
7584 // VAARG_64 returns two values: Variable Argument Address, Chain
7585 SmallVector<SDValue, 11> InstOps;
7586 InstOps.push_back(Chain);
7587 InstOps.push_back(SrcPtr);
7588 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
7589 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
7590 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
7591 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
7592 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
7593 VTs, &InstOps[0], InstOps.size(),
7594 MVT::i64,
7595 MachinePointerInfo(SV),
7596 /*Align=*/0,
7597 /*Volatile=*/false,
7598 /*ReadMem=*/true,
7599 /*WriteMem=*/true);
7600 Chain = VAARG.getValue(1);
7601
7602 // Load the next argument and return it
7603 return DAG.getLoad(ArgVT, dl,
7604 Chain,
7605 VAARG,
7606 MachinePointerInfo(),
7607 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00007608}
7609
Dan Gohmand858e902010-04-17 15:26:15 +00007610SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00007611 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00007612 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00007613 SDValue Chain = Op.getOperand(0);
7614 SDValue DstPtr = Op.getOperand(1);
7615 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00007616 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
7617 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00007618 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00007619
Chris Lattnere72f2022010-09-21 05:40:29 +00007620 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00007621 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007622 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00007623 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00007624}
7625
Dan Gohman475871a2008-07-27 21:46:04 +00007626SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007627X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007628 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007629 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007630 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00007631 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00007632 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00007633 case Intrinsic::x86_sse_comieq_ss:
7634 case Intrinsic::x86_sse_comilt_ss:
7635 case Intrinsic::x86_sse_comile_ss:
7636 case Intrinsic::x86_sse_comigt_ss:
7637 case Intrinsic::x86_sse_comige_ss:
7638 case Intrinsic::x86_sse_comineq_ss:
7639 case Intrinsic::x86_sse_ucomieq_ss:
7640 case Intrinsic::x86_sse_ucomilt_ss:
7641 case Intrinsic::x86_sse_ucomile_ss:
7642 case Intrinsic::x86_sse_ucomigt_ss:
7643 case Intrinsic::x86_sse_ucomige_ss:
7644 case Intrinsic::x86_sse_ucomineq_ss:
7645 case Intrinsic::x86_sse2_comieq_sd:
7646 case Intrinsic::x86_sse2_comilt_sd:
7647 case Intrinsic::x86_sse2_comile_sd:
7648 case Intrinsic::x86_sse2_comigt_sd:
7649 case Intrinsic::x86_sse2_comige_sd:
7650 case Intrinsic::x86_sse2_comineq_sd:
7651 case Intrinsic::x86_sse2_ucomieq_sd:
7652 case Intrinsic::x86_sse2_ucomilt_sd:
7653 case Intrinsic::x86_sse2_ucomile_sd:
7654 case Intrinsic::x86_sse2_ucomigt_sd:
7655 case Intrinsic::x86_sse2_ucomige_sd:
7656 case Intrinsic::x86_sse2_ucomineq_sd: {
7657 unsigned Opc = 0;
7658 ISD::CondCode CC = ISD::SETCC_INVALID;
7659 switch (IntNo) {
7660 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007661 case Intrinsic::x86_sse_comieq_ss:
7662 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007663 Opc = X86ISD::COMI;
7664 CC = ISD::SETEQ;
7665 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007666 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007667 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007668 Opc = X86ISD::COMI;
7669 CC = ISD::SETLT;
7670 break;
7671 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007672 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007673 Opc = X86ISD::COMI;
7674 CC = ISD::SETLE;
7675 break;
7676 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007677 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007678 Opc = X86ISD::COMI;
7679 CC = ISD::SETGT;
7680 break;
7681 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007682 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007683 Opc = X86ISD::COMI;
7684 CC = ISD::SETGE;
7685 break;
7686 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007687 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007688 Opc = X86ISD::COMI;
7689 CC = ISD::SETNE;
7690 break;
7691 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007692 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007693 Opc = X86ISD::UCOMI;
7694 CC = ISD::SETEQ;
7695 break;
7696 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007697 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007698 Opc = X86ISD::UCOMI;
7699 CC = ISD::SETLT;
7700 break;
7701 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007702 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007703 Opc = X86ISD::UCOMI;
7704 CC = ISD::SETLE;
7705 break;
7706 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007707 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007708 Opc = X86ISD::UCOMI;
7709 CC = ISD::SETGT;
7710 break;
7711 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007712 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007713 Opc = X86ISD::UCOMI;
7714 CC = ISD::SETGE;
7715 break;
7716 case Intrinsic::x86_sse_ucomineq_ss:
7717 case Intrinsic::x86_sse2_ucomineq_sd:
7718 Opc = X86ISD::UCOMI;
7719 CC = ISD::SETNE;
7720 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007721 }
Evan Cheng734503b2006-09-11 02:19:56 +00007722
Dan Gohman475871a2008-07-27 21:46:04 +00007723 SDValue LHS = Op.getOperand(1);
7724 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00007725 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007726 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007727 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
7728 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7729 DAG.getConstant(X86CC, MVT::i8), Cond);
7730 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00007731 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007732 // ptest and testp intrinsics. The intrinsic these come from are designed to
7733 // return an integer value, not just an instruction so lower it to the ptest
7734 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00007735 case Intrinsic::x86_sse41_ptestz:
7736 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007737 case Intrinsic::x86_sse41_ptestnzc:
7738 case Intrinsic::x86_avx_ptestz_256:
7739 case Intrinsic::x86_avx_ptestc_256:
7740 case Intrinsic::x86_avx_ptestnzc_256:
7741 case Intrinsic::x86_avx_vtestz_ps:
7742 case Intrinsic::x86_avx_vtestc_ps:
7743 case Intrinsic::x86_avx_vtestnzc_ps:
7744 case Intrinsic::x86_avx_vtestz_pd:
7745 case Intrinsic::x86_avx_vtestc_pd:
7746 case Intrinsic::x86_avx_vtestnzc_pd:
7747 case Intrinsic::x86_avx_vtestz_ps_256:
7748 case Intrinsic::x86_avx_vtestc_ps_256:
7749 case Intrinsic::x86_avx_vtestnzc_ps_256:
7750 case Intrinsic::x86_avx_vtestz_pd_256:
7751 case Intrinsic::x86_avx_vtestc_pd_256:
7752 case Intrinsic::x86_avx_vtestnzc_pd_256: {
7753 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00007754 unsigned X86CC = 0;
7755 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00007756 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007757 case Intrinsic::x86_avx_vtestz_ps:
7758 case Intrinsic::x86_avx_vtestz_pd:
7759 case Intrinsic::x86_avx_vtestz_ps_256:
7760 case Intrinsic::x86_avx_vtestz_pd_256:
7761 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007762 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007763 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007764 // ZF = 1
7765 X86CC = X86::COND_E;
7766 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007767 case Intrinsic::x86_avx_vtestc_ps:
7768 case Intrinsic::x86_avx_vtestc_pd:
7769 case Intrinsic::x86_avx_vtestc_ps_256:
7770 case Intrinsic::x86_avx_vtestc_pd_256:
7771 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007772 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007773 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007774 // CF = 1
7775 X86CC = X86::COND_B;
7776 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007777 case Intrinsic::x86_avx_vtestnzc_ps:
7778 case Intrinsic::x86_avx_vtestnzc_pd:
7779 case Intrinsic::x86_avx_vtestnzc_ps_256:
7780 case Intrinsic::x86_avx_vtestnzc_pd_256:
7781 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00007782 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007783 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007784 // ZF and CF = 0
7785 X86CC = X86::COND_A;
7786 break;
7787 }
Eric Christopherfd179292009-08-27 18:07:15 +00007788
Eric Christopher71c67532009-07-29 00:28:05 +00007789 SDValue LHS = Op.getOperand(1);
7790 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007791 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
7792 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00007793 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
7794 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
7795 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00007796 }
Evan Cheng5759f972008-05-04 09:15:50 +00007797
7798 // Fix vector shift instructions where the last operand is a non-immediate
7799 // i32 value.
7800 case Intrinsic::x86_sse2_pslli_w:
7801 case Intrinsic::x86_sse2_pslli_d:
7802 case Intrinsic::x86_sse2_pslli_q:
7803 case Intrinsic::x86_sse2_psrli_w:
7804 case Intrinsic::x86_sse2_psrli_d:
7805 case Intrinsic::x86_sse2_psrli_q:
7806 case Intrinsic::x86_sse2_psrai_w:
7807 case Intrinsic::x86_sse2_psrai_d:
7808 case Intrinsic::x86_mmx_pslli_w:
7809 case Intrinsic::x86_mmx_pslli_d:
7810 case Intrinsic::x86_mmx_pslli_q:
7811 case Intrinsic::x86_mmx_psrli_w:
7812 case Intrinsic::x86_mmx_psrli_d:
7813 case Intrinsic::x86_mmx_psrli_q:
7814 case Intrinsic::x86_mmx_psrai_w:
7815 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00007816 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00007817 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00007818 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00007819
7820 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00007821 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007822 switch (IntNo) {
7823 case Intrinsic::x86_sse2_pslli_w:
7824 NewIntNo = Intrinsic::x86_sse2_psll_w;
7825 break;
7826 case Intrinsic::x86_sse2_pslli_d:
7827 NewIntNo = Intrinsic::x86_sse2_psll_d;
7828 break;
7829 case Intrinsic::x86_sse2_pslli_q:
7830 NewIntNo = Intrinsic::x86_sse2_psll_q;
7831 break;
7832 case Intrinsic::x86_sse2_psrli_w:
7833 NewIntNo = Intrinsic::x86_sse2_psrl_w;
7834 break;
7835 case Intrinsic::x86_sse2_psrli_d:
7836 NewIntNo = Intrinsic::x86_sse2_psrl_d;
7837 break;
7838 case Intrinsic::x86_sse2_psrli_q:
7839 NewIntNo = Intrinsic::x86_sse2_psrl_q;
7840 break;
7841 case Intrinsic::x86_sse2_psrai_w:
7842 NewIntNo = Intrinsic::x86_sse2_psra_w;
7843 break;
7844 case Intrinsic::x86_sse2_psrai_d:
7845 NewIntNo = Intrinsic::x86_sse2_psra_d;
7846 break;
7847 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00007848 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007849 switch (IntNo) {
7850 case Intrinsic::x86_mmx_pslli_w:
7851 NewIntNo = Intrinsic::x86_mmx_psll_w;
7852 break;
7853 case Intrinsic::x86_mmx_pslli_d:
7854 NewIntNo = Intrinsic::x86_mmx_psll_d;
7855 break;
7856 case Intrinsic::x86_mmx_pslli_q:
7857 NewIntNo = Intrinsic::x86_mmx_psll_q;
7858 break;
7859 case Intrinsic::x86_mmx_psrli_w:
7860 NewIntNo = Intrinsic::x86_mmx_psrl_w;
7861 break;
7862 case Intrinsic::x86_mmx_psrli_d:
7863 NewIntNo = Intrinsic::x86_mmx_psrl_d;
7864 break;
7865 case Intrinsic::x86_mmx_psrli_q:
7866 NewIntNo = Intrinsic::x86_mmx_psrl_q;
7867 break;
7868 case Intrinsic::x86_mmx_psrai_w:
7869 NewIntNo = Intrinsic::x86_mmx_psra_w;
7870 break;
7871 case Intrinsic::x86_mmx_psrai_d:
7872 NewIntNo = Intrinsic::x86_mmx_psra_d;
7873 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00007874 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00007875 }
7876 break;
7877 }
7878 }
Mon P Wangefa42202009-09-03 19:56:25 +00007879
7880 // The vector shift intrinsics with scalars uses 32b shift amounts but
7881 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
7882 // to be zero.
7883 SDValue ShOps[4];
7884 ShOps[0] = ShAmt;
7885 ShOps[1] = DAG.getConstant(0, MVT::i32);
7886 if (ShAmtVT == MVT::v4i32) {
7887 ShOps[2] = DAG.getUNDEF(MVT::i32);
7888 ShOps[3] = DAG.getUNDEF(MVT::i32);
7889 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
7890 } else {
7891 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00007892// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00007893 }
7894
Owen Andersone50ed302009-08-10 22:56:29 +00007895 EVT VT = Op.getValueType();
Mon P Wangefa42202009-09-03 19:56:25 +00007896 ShAmt = DAG.getNode(ISD::BIT_CONVERT, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007897 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007898 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00007899 Op.getOperand(1), ShAmt);
7900 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00007901 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007902}
Evan Cheng72261582005-12-20 06:22:03 +00007903
Dan Gohmand858e902010-04-17 15:26:15 +00007904SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
7905 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00007906 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7907 MFI->setReturnAddressIsTaken(true);
7908
Bill Wendling64e87322009-01-16 19:25:27 +00007909 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007910 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00007911
7912 if (Depth > 0) {
7913 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
7914 SDValue Offset =
7915 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007916 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007917 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007918 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007919 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00007920 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00007921 }
7922
7923 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00007924 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00007925 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007926 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00007927}
7928
Dan Gohmand858e902010-04-17 15:26:15 +00007929SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00007930 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7931 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00007932
Owen Andersone50ed302009-08-10 22:56:29 +00007933 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007934 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00007935 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
7936 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00007937 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00007938 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00007939 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
7940 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00007941 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00007942 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00007943}
7944
Dan Gohman475871a2008-07-27 21:46:04 +00007945SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007946 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00007947 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007948}
7949
Dan Gohmand858e902010-04-17 15:26:15 +00007950SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007951 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00007952 SDValue Chain = Op.getOperand(0);
7953 SDValue Offset = Op.getOperand(1);
7954 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007955 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007956
Dan Gohmand8816272010-08-11 18:14:00 +00007957 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
7958 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
7959 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007960 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007961
Dan Gohmand8816272010-08-11 18:14:00 +00007962 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
7963 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00007964 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00007965 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
7966 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00007967 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007968 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007969
Dale Johannesene4d209d2009-02-03 20:21:25 +00007970 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007971 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007972 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007973}
7974
Dan Gohman475871a2008-07-27 21:46:04 +00007975SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007976 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007977 SDValue Root = Op.getOperand(0);
7978 SDValue Trmp = Op.getOperand(1); // trampoline
7979 SDValue FPtr = Op.getOperand(2); // nested function
7980 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007981 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00007982
Dan Gohman69de1932008-02-06 22:27:42 +00007983 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00007984
7985 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00007986 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00007987
7988 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00007989 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
7990 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00007991
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00007992 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
7993 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00007994
7995 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
7996
7997 // Load the pointer to the nested function into R11.
7998 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00007999 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008000 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008001 Addr, MachinePointerInfo(TrmpAddr),
8002 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008003
Owen Anderson825b72b2009-08-11 20:47:22 +00008004 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8005 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008006 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8007 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008008 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008009
8010 // Load the 'nest' parameter value into R10.
8011 // R10 is specified in X86CallingConv.td
8012 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008013 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8014 DAG.getConstant(10, MVT::i64));
8015 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008016 Addr, MachinePointerInfo(TrmpAddr, 10),
8017 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008018
Owen Anderson825b72b2009-08-11 20:47:22 +00008019 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8020 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008021 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8022 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008023 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008024
8025 // Jump to the nested function.
8026 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008027 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8028 DAG.getConstant(20, MVT::i64));
8029 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008030 Addr, MachinePointerInfo(TrmpAddr, 20),
8031 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008032
8033 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008034 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8035 DAG.getConstant(22, MVT::i64));
8036 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008037 MachinePointerInfo(TrmpAddr, 22),
8038 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008039
Dan Gohman475871a2008-07-27 21:46:04 +00008040 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008041 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008042 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008043 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008044 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008045 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008046 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008047 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008048
8049 switch (CC) {
8050 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008051 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008052 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008053 case CallingConv::X86_StdCall: {
8054 // Pass 'nest' parameter in ECX.
8055 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008056 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008057
8058 // Check that ECX wasn't needed by an 'inreg' parameter.
8059 const FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008060 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008061
Chris Lattner58d74912008-03-12 17:45:29 +00008062 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008063 unsigned InRegCount = 0;
8064 unsigned Idx = 1;
8065
8066 for (FunctionType::param_iterator I = FTy->param_begin(),
8067 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008068 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008069 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008070 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008071
8072 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008073 report_fatal_error("Nest register in use - reduce number of inreg"
8074 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008075 }
8076 }
8077 break;
8078 }
8079 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008080 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008081 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008082 // Pass 'nest' parameter in EAX.
8083 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008084 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008085 break;
8086 }
8087
Dan Gohman475871a2008-07-27 21:46:04 +00008088 SDValue OutChains[4];
8089 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008090
Owen Anderson825b72b2009-08-11 20:47:22 +00008091 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8092 DAG.getConstant(10, MVT::i32));
8093 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008094
Chris Lattnera62fe662010-02-05 19:20:30 +00008095 // This is storing the opcode for MOV32ri.
8096 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008097 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00008098 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008099 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008100 Trmp, MachinePointerInfo(TrmpAddr),
8101 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008102
Owen Anderson825b72b2009-08-11 20:47:22 +00008103 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8104 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008105 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
8106 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00008107 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008108
Chris Lattnera62fe662010-02-05 19:20:30 +00008109 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00008110 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8111 DAG.getConstant(5, MVT::i32));
8112 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008113 MachinePointerInfo(TrmpAddr, 5),
8114 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008115
Owen Anderson825b72b2009-08-11 20:47:22 +00008116 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8117 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008118 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
8119 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00008120 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008121
Dan Gohman475871a2008-07-27 21:46:04 +00008122 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008123 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008124 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008125 }
8126}
8127
Dan Gohmand858e902010-04-17 15:26:15 +00008128SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
8129 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008130 /*
8131 The rounding mode is in bits 11:10 of FPSR, and has the following
8132 settings:
8133 00 Round to nearest
8134 01 Round to -inf
8135 10 Round to +inf
8136 11 Round to 0
8137
8138 FLT_ROUNDS, on the other hand, expects the following:
8139 -1 Undefined
8140 0 Round to 0
8141 1 Round to nearest
8142 2 Round to +inf
8143 3 Round to -inf
8144
8145 To perform the conversion, we do:
8146 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
8147 */
8148
8149 MachineFunction &MF = DAG.getMachineFunction();
8150 const TargetMachine &TM = MF.getTarget();
8151 const TargetFrameInfo &TFI = *TM.getFrameInfo();
8152 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008153 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00008154 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008155
8156 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00008157 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008158 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008159
Michael J. Spencerec38de22010-10-10 22:04:20 +00008160
Chris Lattner2156b792010-09-22 01:11:26 +00008161 MachineMemOperand *MMO =
8162 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8163 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008164
Chris Lattner2156b792010-09-22 01:11:26 +00008165 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
8166 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
8167 DAG.getVTList(MVT::Other),
8168 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008169
8170 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00008171 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00008172 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008173
8174 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00008175 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00008176 DAG.getNode(ISD::SRL, DL, MVT::i16,
8177 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008178 CWD, DAG.getConstant(0x800, MVT::i16)),
8179 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00008180 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00008181 DAG.getNode(ISD::SRL, DL, MVT::i16,
8182 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008183 CWD, DAG.getConstant(0x400, MVT::i16)),
8184 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008185
Dan Gohman475871a2008-07-27 21:46:04 +00008186 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00008187 DAG.getNode(ISD::AND, DL, MVT::i16,
8188 DAG.getNode(ISD::ADD, DL, MVT::i16,
8189 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00008190 DAG.getConstant(1, MVT::i16)),
8191 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008192
8193
Duncan Sands83ec4b62008-06-06 12:08:01 +00008194 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00008195 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008196}
8197
Dan Gohmand858e902010-04-17 15:26:15 +00008198SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008199 EVT VT = Op.getValueType();
8200 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008201 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008202 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008203
8204 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008205 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00008206 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00008207 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008208 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008209 }
Evan Cheng18efe262007-12-14 02:13:44 +00008210
Evan Cheng152804e2007-12-14 08:30:15 +00008211 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008212 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008213 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008214
8215 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008216 SDValue Ops[] = {
8217 Op,
8218 DAG.getConstant(NumBits+NumBits-1, OpVT),
8219 DAG.getConstant(X86::COND_E, MVT::i8),
8220 Op.getValue(1)
8221 };
8222 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008223
8224 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00008225 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00008226
Owen Anderson825b72b2009-08-11 20:47:22 +00008227 if (VT == MVT::i8)
8228 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008229 return Op;
8230}
8231
Dan Gohmand858e902010-04-17 15:26:15 +00008232SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008233 EVT VT = Op.getValueType();
8234 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008235 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008236 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008237
8238 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008239 if (VT == MVT::i8) {
8240 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008241 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008242 }
Evan Cheng152804e2007-12-14 08:30:15 +00008243
8244 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008245 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008246 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008247
8248 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008249 SDValue Ops[] = {
8250 Op,
8251 DAG.getConstant(NumBits, OpVT),
8252 DAG.getConstant(X86::COND_E, MVT::i8),
8253 Op.getValue(1)
8254 };
8255 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008256
Owen Anderson825b72b2009-08-11 20:47:22 +00008257 if (VT == MVT::i8)
8258 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008259 return Op;
8260}
8261
Dan Gohmand858e902010-04-17 15:26:15 +00008262SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008263 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00008264 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008265 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008266
Mon P Wangaf9b9522008-12-18 21:42:19 +00008267 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
8268 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
8269 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
8270 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
8271 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
8272 //
8273 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
8274 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
8275 // return AloBlo + AloBhi + AhiBlo;
8276
8277 SDValue A = Op.getOperand(0);
8278 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008279
Dale Johannesene4d209d2009-02-03 20:21:25 +00008280 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008281 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8282 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008283 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008284 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8285 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008286 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008287 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008288 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008289 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008290 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008291 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008292 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008293 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008294 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008295 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008296 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8297 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008298 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008299 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8300 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008301 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
8302 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008303 return Res;
8304}
8305
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008306SDValue X86TargetLowering::LowerSHL(SDValue Op, SelectionDAG &DAG) const {
8307 EVT VT = Op.getValueType();
8308 DebugLoc dl = Op.getDebugLoc();
8309 SDValue R = Op.getOperand(0);
8310
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008311 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008312
Nate Begeman51409212010-07-28 00:21:48 +00008313 assert(Subtarget->hasSSE41() && "Cannot lower SHL without SSE4.1 or later");
8314
8315 if (VT == MVT::v4i32) {
8316 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8317 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8318 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
8319
8320 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008321
Nate Begeman51409212010-07-28 00:21:48 +00008322 std::vector<Constant*> CV(4, CI);
8323 Constant *C = ConstantVector::get(CV);
8324 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8325 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008326 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008327 false, false, 16);
8328
8329 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
8330 Op = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, Op);
8331 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
8332 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
8333 }
8334 if (VT == MVT::v16i8) {
8335 // a = a << 5;
8336 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8337 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8338 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
8339
8340 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
8341 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
8342
8343 std::vector<Constant*> CVM1(16, CM1);
8344 std::vector<Constant*> CVM2(16, CM2);
8345 Constant *C = ConstantVector::get(CVM1);
8346 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8347 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008348 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008349 false, false, 16);
8350
8351 // r = pblendv(r, psllw(r & (char16)15, 4), a);
8352 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8353 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8354 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8355 DAG.getConstant(4, MVT::i32));
8356 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8357 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8358 R, M, Op);
8359 // a += a
8360 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008361
Nate Begeman51409212010-07-28 00:21:48 +00008362 C = ConstantVector::get(CVM2);
8363 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8364 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008365 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008366 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008367
Nate Begeman51409212010-07-28 00:21:48 +00008368 // r = pblendv(r, psllw(r & (char16)63, 2), a);
8369 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8370 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8371 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8372 DAG.getConstant(2, MVT::i32));
8373 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8374 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8375 R, M, Op);
8376 // a += a
8377 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008378
Nate Begeman51409212010-07-28 00:21:48 +00008379 // return pblendv(r, r+r, a);
8380 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8381 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8382 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
8383 return R;
8384 }
8385 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008386}
Mon P Wangaf9b9522008-12-18 21:42:19 +00008387
Dan Gohmand858e902010-04-17 15:26:15 +00008388SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00008389 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
8390 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00008391 // looks for this combo and may remove the "setcc" instruction if the "setcc"
8392 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00008393 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00008394 SDValue LHS = N->getOperand(0);
8395 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00008396 unsigned BaseOp = 0;
8397 unsigned Cond = 0;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008398 DebugLoc dl = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00008399
8400 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008401 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00008402 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00008403 // A subtract of one will be selected as a INC. Note that INC doesn't
8404 // set CF, so we can't do this for UADDO.
8405 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8406 if (C->getAPIntValue() == 1) {
8407 BaseOp = X86ISD::INC;
8408 Cond = X86::COND_O;
8409 break;
8410 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008411 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00008412 Cond = X86::COND_O;
8413 break;
8414 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008415 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00008416 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008417 break;
8418 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00008419 // A subtract of one will be selected as a DEC. Note that DEC doesn't
8420 // set CF, so we can't do this for USUBO.
8421 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8422 if (C->getAPIntValue() == 1) {
8423 BaseOp = X86ISD::DEC;
8424 Cond = X86::COND_O;
8425 break;
8426 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008427 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00008428 Cond = X86::COND_O;
8429 break;
8430 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008431 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00008432 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008433 break;
8434 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008435 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00008436 Cond = X86::COND_O;
8437 break;
8438 case ISD::UMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008439 BaseOp = X86ISD::UMUL;
Dan Gohman653456c2009-01-07 00:15:08 +00008440 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008441 break;
8442 }
Bill Wendling3fafd932008-11-26 22:37:40 +00008443
Bill Wendling61edeb52008-12-02 01:06:39 +00008444 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008445 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008446 SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00008447
Bill Wendling61edeb52008-12-02 01:06:39 +00008448 SDValue SetCC =
Dale Johannesene4d209d2009-02-03 20:21:25 +00008449 DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1),
Owen Anderson825b72b2009-08-11 20:47:22 +00008450 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00008451
Bill Wendling61edeb52008-12-02 01:06:39 +00008452 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
8453 return Sum;
Bill Wendling41ea7e72008-11-24 19:21:46 +00008454}
8455
Eric Christopher9a9d2752010-07-22 02:48:34 +00008456SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
8457 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008458
Eric Christopherb6729dc2010-08-04 23:03:04 +00008459 if (!Subtarget->hasSSE2()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00008460 SDValue Chain = Op.getOperand(0);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008461 SDValue Zero = DAG.getConstant(0,
Eric Christopherb6729dc2010-08-04 23:03:04 +00008462 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00008463 SDValue Ops[] = {
8464 DAG.getRegister(X86::ESP, MVT::i32), // Base
8465 DAG.getTargetConstant(1, MVT::i8), // Scale
8466 DAG.getRegister(0, MVT::i32), // Index
8467 DAG.getTargetConstant(0, MVT::i32), // Disp
8468 DAG.getRegister(0, MVT::i32), // Segment.
8469 Zero,
8470 Chain
8471 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008472 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00008473 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
8474 array_lengthof(Ops));
8475 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00008476 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008477
Eric Christopher9a9d2752010-07-22 02:48:34 +00008478 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00008479 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00008480 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008481
Chris Lattner132929a2010-08-14 17:26:09 +00008482 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8483 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
8484 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
8485 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008486
Chris Lattner132929a2010-08-14 17:26:09 +00008487 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
8488 if (!Op1 && !Op2 && !Op3 && Op4)
8489 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008490
Chris Lattner132929a2010-08-14 17:26:09 +00008491 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
8492 if (Op1 && !Op2 && !Op3 && !Op4)
8493 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008494
8495 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00008496 // (MFENCE)>;
8497 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00008498}
8499
Dan Gohmand858e902010-04-17 15:26:15 +00008500SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008501 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008502 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00008503 unsigned Reg = 0;
8504 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008505 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008506 default:
8507 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008508 case MVT::i8: Reg = X86::AL; size = 1; break;
8509 case MVT::i16: Reg = X86::AX; size = 2; break;
8510 case MVT::i32: Reg = X86::EAX; size = 4; break;
8511 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00008512 assert(Subtarget->is64Bit() && "Node not type legal!");
8513 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00008514 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008515 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008516 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00008517 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00008518 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008519 Op.getOperand(1),
8520 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00008521 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008522 cpIn.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008523 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008524 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
8525 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
8526 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00008527 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008528 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00008529 return cpOut;
8530}
8531
Duncan Sands1607f052008-12-01 11:39:25 +00008532SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008533 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00008534 assert(Subtarget->is64Bit() && "Result not type legalized?");
Owen Anderson825b72b2009-08-11 20:47:22 +00008535 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008536 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008537 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008538 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008539 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
8540 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00008541 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00008542 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
8543 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00008544 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00008545 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00008546 rdx.getValue(1)
8547 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008548 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008549}
8550
Dale Johannesen7d07b482010-05-21 00:52:33 +00008551SDValue X86TargetLowering::LowerBIT_CONVERT(SDValue Op,
8552 SelectionDAG &DAG) const {
8553 EVT SrcVT = Op.getOperand(0).getValueType();
8554 EVT DstVT = Op.getValueType();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008555 assert((Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Dale Johannesen7d07b482010-05-21 00:52:33 +00008556 Subtarget->hasMMX() && !DisableMMX) &&
8557 "Unexpected custom BIT_CONVERT");
Michael J. Spencerec38de22010-10-10 22:04:20 +00008558 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00008559 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
8560 "Unexpected custom BIT_CONVERT");
8561 // i64 <=> MMX conversions are Legal.
8562 if (SrcVT==MVT::i64 && DstVT.isVector())
8563 return Op;
8564 if (DstVT==MVT::i64 && SrcVT.isVector())
8565 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00008566 // MMX <=> MMX conversions are Legal.
8567 if (SrcVT.isVector() && DstVT.isVector())
8568 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00008569 // All other conversions need to be expanded.
8570 return SDValue();
8571}
Dan Gohmand858e902010-04-17 15:26:15 +00008572SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008573 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008574 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008575 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008576 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00008577 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008578 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008579 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008580 Node->getOperand(0),
8581 Node->getOperand(1), negOp,
8582 cast<AtomicSDNode>(Node)->getSrcValue(),
8583 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00008584}
8585
Evan Cheng0db9fe62006-04-25 20:13:52 +00008586/// LowerOperation - Provide custom lowering hooks for some operations.
8587///
Dan Gohmand858e902010-04-17 15:26:15 +00008588SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008589 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008590 default: llvm_unreachable("Should not custom lower this!");
Eric Christopher9a9d2752010-07-22 02:48:34 +00008591 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008592 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
8593 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008594 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00008595 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008596 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
8597 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
8598 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
8599 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
8600 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
8601 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008602 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00008603 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00008604 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008605 case ISD::SHL_PARTS:
8606 case ISD::SRA_PARTS:
8607 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
8608 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008609 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008610 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00008611 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008612 case ISD::FABS: return LowerFABS(Op, DAG);
8613 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008614 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008615 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00008616 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008617 case ISD::SELECT: return LowerSELECT(Op, DAG);
8618 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008619 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008620 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00008621 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00008622 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008623 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008624 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
8625 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008626 case ISD::FRAME_TO_ARGS_OFFSET:
8627 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008628 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008629 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008630 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00008631 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00008632 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
8633 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008634 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008635 case ISD::SHL: return LowerSHL(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00008636 case ISD::SADDO:
8637 case ISD::UADDO:
8638 case ISD::SSUBO:
8639 case ISD::USUBO:
8640 case ISD::SMULO:
8641 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00008642 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Dale Johannesen7d07b482010-05-21 00:52:33 +00008643 case ISD::BIT_CONVERT: return LowerBIT_CONVERT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008644 }
Chris Lattner27a6c732007-11-24 07:07:01 +00008645}
8646
Duncan Sands1607f052008-12-01 11:39:25 +00008647void X86TargetLowering::
8648ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008649 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008650 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008651 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00008652 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00008653
8654 SDValue Chain = Node->getOperand(0);
8655 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008656 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008657 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008658 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008659 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00008660 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00008661 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00008662 SDValue Result =
8663 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
8664 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00008665 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008666 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008667 Results.push_back(Result.getValue(2));
8668}
8669
Duncan Sands126d9072008-07-04 11:47:58 +00008670/// ReplaceNodeResults - Replace a node with an illegal result type
8671/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00008672void X86TargetLowering::ReplaceNodeResults(SDNode *N,
8673 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008674 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00008675 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00008676 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00008677 default:
Duncan Sands1607f052008-12-01 11:39:25 +00008678 assert(false && "Do not know how to custom type legalize this operation!");
8679 return;
8680 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00008681 std::pair<SDValue,SDValue> Vals =
8682 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00008683 SDValue FIST = Vals.first, StackSlot = Vals.second;
8684 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00008685 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00008686 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00008687 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
8688 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00008689 }
8690 return;
8691 }
8692 case ISD::READCYCLECOUNTER: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008693 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008694 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008695 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008696 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00008697 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00008698 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008699 eax.getValue(2));
8700 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
8701 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00008702 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008703 Results.push_back(edx.getValue(1));
8704 return;
8705 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008706 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00008707 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008708 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00008709 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008710 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8711 DAG.getConstant(0, MVT::i32));
8712 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8713 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008714 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
8715 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008716 cpInL.getValue(1));
8717 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008718 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8719 DAG.getConstant(0, MVT::i32));
8720 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8721 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008722 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00008723 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008724 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008725 swapInL.getValue(1));
8726 SDValue Ops[] = { swapInH.getValue(0),
8727 N->getOperand(1),
8728 swapInH.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008729 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00008730 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
8731 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
8732 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00008733 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008734 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008735 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008736 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00008737 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008738 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008739 Results.push_back(cpOutH.getValue(1));
8740 return;
8741 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008742 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00008743 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
8744 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008745 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00008746 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
8747 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008748 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00008749 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
8750 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008751 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00008752 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
8753 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008754 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00008755 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
8756 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008757 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00008758 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
8759 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008760 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00008761 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
8762 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00008763 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008764}
8765
Evan Cheng72261582005-12-20 06:22:03 +00008766const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
8767 switch (Opcode) {
8768 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00008769 case X86ISD::BSF: return "X86ISD::BSF";
8770 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00008771 case X86ISD::SHLD: return "X86ISD::SHLD";
8772 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00008773 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008774 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00008775 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008776 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00008777 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00008778 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00008779 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
8780 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
8781 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00008782 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00008783 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00008784 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00008785 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00008786 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00008787 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00008788 case X86ISD::COMI: return "X86ISD::COMI";
8789 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00008790 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00008791 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Evan Cheng72261582005-12-20 06:22:03 +00008792 case X86ISD::CMOV: return "X86ISD::CMOV";
8793 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00008794 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00008795 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
8796 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00008797 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00008798 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00008799 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008800 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00008801 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008802 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
8803 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00008804 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00008805 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Evan Cheng8ca29322006-11-10 21:43:37 +00008806 case X86ISD::FMAX: return "X86ISD::FMAX";
8807 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00008808 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
8809 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008810 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00008811 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008812 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00008813 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008814 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00008815 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
8816 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008817 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
8818 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
8819 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
8820 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
8821 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
8822 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00008823 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
8824 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00008825 case X86ISD::VSHL: return "X86ISD::VSHL";
8826 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00008827 case X86ISD::CMPPD: return "X86ISD::CMPPD";
8828 case X86ISD::CMPPS: return "X86ISD::CMPPS";
8829 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
8830 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
8831 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
8832 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
8833 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
8834 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
8835 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
8836 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008837 case X86ISD::ADD: return "X86ISD::ADD";
8838 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingd350e022008-12-12 21:15:41 +00008839 case X86ISD::SMUL: return "X86ISD::SMUL";
8840 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00008841 case X86ISD::INC: return "X86ISD::INC";
8842 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00008843 case X86ISD::OR: return "X86ISD::OR";
8844 case X86ISD::XOR: return "X86ISD::XOR";
8845 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00008846 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00008847 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008848 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008849 case X86ISD::PALIGN: return "X86ISD::PALIGN";
8850 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
8851 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
8852 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
8853 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
8854 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
8855 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
8856 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
8857 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008858 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00008859 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008860 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00008861 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
8862 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008863 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
8864 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
8865 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
8866 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
8867 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
8868 case X86ISD::MOVSD: return "X86ISD::MOVSD";
8869 case X86ISD::MOVSS: return "X86ISD::MOVSS";
8870 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
8871 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
8872 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
8873 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
8874 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
8875 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
8876 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
8877 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
8878 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
8879 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
8880 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
8881 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +00008882 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +00008883 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008884 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +00008885 }
8886}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00008887
Chris Lattnerc9addb72007-03-30 23:15:24 +00008888// isLegalAddressingMode - Return true if the addressing mode represented
8889// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00008890bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00008891 const Type *Ty) const {
8892 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008893 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +00008894 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +00008895
Chris Lattnerc9addb72007-03-30 23:15:24 +00008896 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008897 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +00008898 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00008899
Chris Lattnerc9addb72007-03-30 23:15:24 +00008900 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +00008901 unsigned GVFlags =
8902 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008903
Chris Lattnerdfed4132009-07-10 07:38:24 +00008904 // If a reference to this global requires an extra load, we can't fold it.
8905 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +00008906 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008907
Chris Lattnerdfed4132009-07-10 07:38:24 +00008908 // If BaseGV requires a register for the PIC base, we cannot also have a
8909 // BaseReg specified.
8910 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +00008911 return false;
Evan Cheng52787842007-08-01 23:46:47 +00008912
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008913 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +00008914 if ((M != CodeModel::Small || R != Reloc::Static) &&
8915 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008916 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00008917 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008918
Chris Lattnerc9addb72007-03-30 23:15:24 +00008919 switch (AM.Scale) {
8920 case 0:
8921 case 1:
8922 case 2:
8923 case 4:
8924 case 8:
8925 // These scales always work.
8926 break;
8927 case 3:
8928 case 5:
8929 case 9:
8930 // These scales are formed with basereg+scalereg. Only accept if there is
8931 // no basereg yet.
8932 if (AM.HasBaseReg)
8933 return false;
8934 break;
8935 default: // Other stuff never works.
8936 return false;
8937 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008938
Chris Lattnerc9addb72007-03-30 23:15:24 +00008939 return true;
8940}
8941
8942
Evan Cheng2bd122c2007-10-26 01:56:11 +00008943bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00008944 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +00008945 return false;
Evan Chenge127a732007-10-29 07:57:50 +00008946 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
8947 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00008948 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00008949 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00008950 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +00008951}
8952
Owen Andersone50ed302009-08-10 22:56:29 +00008953bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008954 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008955 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008956 unsigned NumBits1 = VT1.getSizeInBits();
8957 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00008958 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008959 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00008960 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008961}
Evan Cheng2bd122c2007-10-26 01:56:11 +00008962
Dan Gohman97121ba2009-04-08 00:15:30 +00008963bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00008964 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00008965 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00008966}
8967
Owen Andersone50ed302009-08-10 22:56:29 +00008968bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00008969 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00008970 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00008971}
8972
Owen Andersone50ed302009-08-10 22:56:29 +00008973bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +00008974 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +00008975 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +00008976}
8977
Evan Cheng60c07e12006-07-05 22:17:51 +00008978/// isShuffleMaskLegal - Targets can use this to indicate that they only
8979/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
8980/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
8981/// are assumed to be legal.
8982bool
Eric Christopherfd179292009-08-27 18:07:15 +00008983X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +00008984 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +00008985 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +00008986 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +00008987 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +00008988
Nate Begemana09008b2009-10-19 02:17:23 +00008989 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +00008990 return (VT.getVectorNumElements() == 2 ||
8991 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
8992 isMOVLMask(M, VT) ||
8993 isSHUFPMask(M, VT) ||
8994 isPSHUFDMask(M, VT) ||
8995 isPSHUFHWMask(M, VT) ||
8996 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +00008997 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +00008998 isUNPCKLMask(M, VT) ||
8999 isUNPCKHMask(M, VT) ||
9000 isUNPCKL_v_undef_Mask(M, VT) ||
9001 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009002}
9003
Dan Gohman7d8143f2008-04-09 20:09:42 +00009004bool
Nate Begeman5a5ca152009-04-29 05:20:52 +00009005X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +00009006 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00009007 unsigned NumElts = VT.getVectorNumElements();
9008 // FIXME: This collection of masks seems suspect.
9009 if (NumElts == 2)
9010 return true;
9011 if (NumElts == 4 && VT.getSizeInBits() == 128) {
9012 return (isMOVLMask(Mask, VT) ||
9013 isCommutedMOVLMask(Mask, VT, true) ||
9014 isSHUFPMask(Mask, VT) ||
9015 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009016 }
9017 return false;
9018}
9019
9020//===----------------------------------------------------------------------===//
9021// X86 Scheduler Hooks
9022//===----------------------------------------------------------------------===//
9023
Mon P Wang63307c32008-05-05 19:05:59 +00009024// private utility function
9025MachineBasicBlock *
9026X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
9027 MachineBasicBlock *MBB,
9028 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009029 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009030 unsigned LoadOpc,
9031 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009032 unsigned notOpc,
9033 unsigned EAXreg,
9034 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009035 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009036 // For the atomic bitwise operator, we generate
9037 // thisMBB:
9038 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009039 // ld t1 = [bitinstr.addr]
9040 // op t2 = t1, [bitinstr.val]
9041 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009042 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9043 // bz newMBB
9044 // fallthrough -->nextMBB
9045 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9046 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009047 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009048 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009049
Mon P Wang63307c32008-05-05 19:05:59 +00009050 /// First build the CFG
9051 MachineFunction *F = MBB->getParent();
9052 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009053 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9054 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9055 F->insert(MBBIter, newMBB);
9056 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009057
Dan Gohman14152b42010-07-06 20:24:04 +00009058 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9059 nextMBB->splice(nextMBB->begin(), thisMBB,
9060 llvm::next(MachineBasicBlock::iterator(bInstr)),
9061 thisMBB->end());
9062 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009063
Mon P Wang63307c32008-05-05 19:05:59 +00009064 // Update thisMBB to fall through to newMBB
9065 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009066
Mon P Wang63307c32008-05-05 19:05:59 +00009067 // newMBB jumps to itself and fall through to nextMBB
9068 newMBB->addSuccessor(nextMBB);
9069 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009070
Mon P Wang63307c32008-05-05 19:05:59 +00009071 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009072 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009073 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00009074 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009075 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009076 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009077 int numArgs = bInstr->getNumOperands() - 1;
9078 for (int i=0; i < numArgs; ++i)
9079 argOpers[i] = &bInstr->getOperand(i+1);
9080
9081 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009082 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009083 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009084
Dale Johannesen140be2d2008-08-19 18:47:28 +00009085 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009086 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009087 for (int i=0; i <= lastAddrIndx; ++i)
9088 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009089
Dale Johannesen140be2d2008-08-19 18:47:28 +00009090 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009091 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009092 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009093 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009094 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009095 tt = t1;
9096
Dale Johannesen140be2d2008-08-19 18:47:28 +00009097 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00009098 assert((argOpers[valArgIndx]->isReg() ||
9099 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009100 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00009101 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009102 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009103 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009104 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009105 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00009106 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009107
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009108 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00009109 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009110
Dale Johannesene4d209d2009-02-03 20:21:25 +00009111 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00009112 for (int i=0; i <= lastAddrIndx; ++i)
9113 (*MIB).addOperand(*argOpers[i]);
9114 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00009115 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009116 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9117 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +00009118
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009119 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00009120 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009121
Mon P Wang63307c32008-05-05 19:05:59 +00009122 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009123 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009124
Dan Gohman14152b42010-07-06 20:24:04 +00009125 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009126 return nextMBB;
9127}
9128
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00009129// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00009130MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009131X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
9132 MachineBasicBlock *MBB,
9133 unsigned regOpcL,
9134 unsigned regOpcH,
9135 unsigned immOpcL,
9136 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009137 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009138 // For the atomic bitwise operator, we generate
9139 // thisMBB (instructions are in pairs, except cmpxchg8b)
9140 // ld t1,t2 = [bitinstr.addr]
9141 // newMBB:
9142 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
9143 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00009144 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009145 // mov ECX, EBX <- t5, t6
9146 // mov EAX, EDX <- t1, t2
9147 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
9148 // mov t3, t4 <- EAX, EDX
9149 // bz newMBB
9150 // result in out1, out2
9151 // fallthrough -->nextMBB
9152
9153 const TargetRegisterClass *RC = X86::GR32RegisterClass;
9154 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009155 const unsigned NotOpc = X86::NOT32r;
9156 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9157 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9158 MachineFunction::iterator MBBIter = MBB;
9159 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009160
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009161 /// First build the CFG
9162 MachineFunction *F = MBB->getParent();
9163 MachineBasicBlock *thisMBB = MBB;
9164 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9165 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9166 F->insert(MBBIter, newMBB);
9167 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009168
Dan Gohman14152b42010-07-06 20:24:04 +00009169 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9170 nextMBB->splice(nextMBB->begin(), thisMBB,
9171 llvm::next(MachineBasicBlock::iterator(bInstr)),
9172 thisMBB->end());
9173 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009174
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009175 // Update thisMBB to fall through to newMBB
9176 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009177
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009178 // newMBB jumps to itself and fall through to nextMBB
9179 newMBB->addSuccessor(nextMBB);
9180 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009181
Dale Johannesene4d209d2009-02-03 20:21:25 +00009182 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009183 // Insert instructions into newMBB based on incoming instruction
9184 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009185 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009186 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009187 MachineOperand& dest1Oper = bInstr->getOperand(0);
9188 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009189 MachineOperand* argOpers[2 + X86::AddrNumOperands];
9190 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009191 argOpers[i] = &bInstr->getOperand(i+2);
9192
Dan Gohman71ea4e52010-05-14 21:01:44 +00009193 // We use some of the operands multiple times, so conservatively just
9194 // clear any kill flags that might be present.
9195 if (argOpers[i]->isReg() && argOpers[i]->isUse())
9196 argOpers[i]->setIsKill(false);
9197 }
9198
Evan Chengad5b52f2010-01-08 19:14:57 +00009199 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009200 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +00009201
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009202 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009203 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009204 for (int i=0; i <= lastAddrIndx; ++i)
9205 (*MIB).addOperand(*argOpers[i]);
9206 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009207 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00009208 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +00009209 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009210 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +00009211 MachineOperand newOp3 = *(argOpers[3]);
9212 if (newOp3.isImm())
9213 newOp3.setImm(newOp3.getImm()+4);
9214 else
9215 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009216 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +00009217 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009218
9219 // t3/4 are defined later, at the bottom of the loop
9220 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
9221 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009222 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009223 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009224 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009225 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
9226
Evan Cheng306b4ca2010-01-08 23:41:50 +00009227 // The subsequent operations should be using the destination registers of
9228 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +00009229 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009230 t1 = F->getRegInfo().createVirtualRegister(RC);
9231 t2 = F->getRegInfo().createVirtualRegister(RC);
9232 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
9233 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009234 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009235 t1 = dest1Oper.getReg();
9236 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009237 }
9238
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009239 int valArgIndx = lastAddrIndx + 1;
9240 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +00009241 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009242 "invalid operand");
9243 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
9244 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009245 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009246 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009247 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009248 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +00009249 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009250 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009251 (*MIB).addOperand(*argOpers[valArgIndx]);
9252 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009253 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009254 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009255 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009256 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009257 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009258 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009259 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +00009260 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009261 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009262 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009263
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009264 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009265 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009266 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009267 MIB.addReg(t2);
9268
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009269 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009270 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009271 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009272 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +00009273
Dale Johannesene4d209d2009-02-03 20:21:25 +00009274 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009275 for (int i=0; i <= lastAddrIndx; ++i)
9276 (*MIB).addOperand(*argOpers[i]);
9277
9278 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009279 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9280 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009281
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009282 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009283 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009284 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009285 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009286
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009287 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009288 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009289
Dan Gohman14152b42010-07-06 20:24:04 +00009290 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009291 return nextMBB;
9292}
9293
9294// private utility function
9295MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +00009296X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
9297 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009298 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009299 // For the atomic min/max operator, we generate
9300 // thisMBB:
9301 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009302 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +00009303 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +00009304 // cmp t1, t2
9305 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +00009306 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009307 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9308 // bz newMBB
9309 // fallthrough -->nextMBB
9310 //
9311 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9312 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009313 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009314 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009315
Mon P Wang63307c32008-05-05 19:05:59 +00009316 /// First build the CFG
9317 MachineFunction *F = MBB->getParent();
9318 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009319 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9320 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9321 F->insert(MBBIter, newMBB);
9322 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009323
Dan Gohman14152b42010-07-06 20:24:04 +00009324 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9325 nextMBB->splice(nextMBB->begin(), thisMBB,
9326 llvm::next(MachineBasicBlock::iterator(mInstr)),
9327 thisMBB->end());
9328 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009329
Mon P Wang63307c32008-05-05 19:05:59 +00009330 // Update thisMBB to fall through to newMBB
9331 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009332
Mon P Wang63307c32008-05-05 19:05:59 +00009333 // newMBB jumps to newMBB and fall through to nextMBB
9334 newMBB->addSuccessor(nextMBB);
9335 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009336
Dale Johannesene4d209d2009-02-03 20:21:25 +00009337 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009338 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009339 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009340 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +00009341 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009342 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009343 int numArgs = mInstr->getNumOperands() - 1;
9344 for (int i=0; i < numArgs; ++i)
9345 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009346
Mon P Wang63307c32008-05-05 19:05:59 +00009347 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009348 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009349 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009350
Mon P Wangab3e7472008-05-05 22:56:23 +00009351 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009352 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009353 for (int i=0; i <= lastAddrIndx; ++i)
9354 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +00009355
Mon P Wang63307c32008-05-05 19:05:59 +00009356 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +00009357 assert((argOpers[valArgIndx]->isReg() ||
9358 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009359 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +00009360
9361 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +00009362 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009363 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009364 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009365 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009366 (*MIB).addOperand(*argOpers[valArgIndx]);
9367
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009368 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +00009369 MIB.addReg(t1);
9370
Dale Johannesene4d209d2009-02-03 20:21:25 +00009371 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +00009372 MIB.addReg(t1);
9373 MIB.addReg(t2);
9374
9375 // Generate movc
9376 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009377 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +00009378 MIB.addReg(t2);
9379 MIB.addReg(t1);
9380
9381 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +00009382 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +00009383 for (int i=0; i <= lastAddrIndx; ++i)
9384 (*MIB).addOperand(*argOpers[i]);
9385 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +00009386 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009387 (*MIB).setMemRefs(mInstr->memoperands_begin(),
9388 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00009389
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009390 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +00009391 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009392
Mon P Wang63307c32008-05-05 19:05:59 +00009393 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009394 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009395
Dan Gohman14152b42010-07-06 20:24:04 +00009396 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009397 return nextMBB;
9398}
9399
Eric Christopherf83a5de2009-08-27 18:08:16 +00009400// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009401// or XMM0_V32I8 in AVX all of this code can be replaced with that
9402// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009403MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +00009404X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +00009405 unsigned numArgs, bool memArg) const {
Eric Christopherb120ab42009-08-18 22:50:32 +00009406
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009407 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
9408 "Target must have SSE4.2 or AVX features enabled");
9409
Eric Christopherb120ab42009-08-18 22:50:32 +00009410 DebugLoc dl = MI->getDebugLoc();
9411 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9412
9413 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009414
9415 if (!Subtarget->hasAVX()) {
9416 if (memArg)
9417 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
9418 else
9419 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
9420 } else {
9421 if (memArg)
9422 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
9423 else
9424 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
9425 }
Eric Christopherb120ab42009-08-18 22:50:32 +00009426
9427 MachineInstrBuilder MIB = BuildMI(BB, dl, TII->get(Opc));
9428
9429 for (unsigned i = 0; i < numArgs; ++i) {
9430 MachineOperand &Op = MI->getOperand(i+1);
9431
9432 if (!(Op.isReg() && Op.isImplicit()))
9433 MIB.addOperand(Op);
9434 }
9435
9436 BuildMI(BB, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
9437 .addReg(X86::XMM0);
9438
Dan Gohman14152b42010-07-06 20:24:04 +00009439 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +00009440
9441 return BB;
9442}
9443
9444MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +00009445X86TargetLowering::EmitVAARG64WithCustomInserter(
9446 MachineInstr *MI,
9447 MachineBasicBlock *MBB) const {
9448 // Emit va_arg instruction on X86-64.
9449
9450 // Operands to this pseudo-instruction:
9451 // 0 ) Output : destination address (reg)
9452 // 1-5) Input : va_list address (addr, i64mem)
9453 // 6 ) ArgSize : Size (in bytes) of vararg type
9454 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
9455 // 8 ) Align : Alignment of type
9456 // 9 ) EFLAGS (implicit-def)
9457
9458 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
9459 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
9460
9461 unsigned DestReg = MI->getOperand(0).getReg();
9462 MachineOperand &Base = MI->getOperand(1);
9463 MachineOperand &Scale = MI->getOperand(2);
9464 MachineOperand &Index = MI->getOperand(3);
9465 MachineOperand &Disp = MI->getOperand(4);
9466 MachineOperand &Segment = MI->getOperand(5);
9467 unsigned ArgSize = MI->getOperand(6).getImm();
9468 unsigned ArgMode = MI->getOperand(7).getImm();
9469 unsigned Align = MI->getOperand(8).getImm();
9470
9471 // Memory Reference
9472 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
9473 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
9474 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
9475
9476 // Machine Information
9477 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9478 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
9479 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
9480 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
9481 DebugLoc DL = MI->getDebugLoc();
9482
9483 // struct va_list {
9484 // i32 gp_offset
9485 // i32 fp_offset
9486 // i64 overflow_area (address)
9487 // i64 reg_save_area (address)
9488 // }
9489 // sizeof(va_list) = 24
9490 // alignment(va_list) = 8
9491
9492 unsigned TotalNumIntRegs = 6;
9493 unsigned TotalNumXMMRegs = 8;
9494 bool UseGPOffset = (ArgMode == 1);
9495 bool UseFPOffset = (ArgMode == 2);
9496 unsigned MaxOffset = TotalNumIntRegs * 8 +
9497 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
9498
9499 /* Align ArgSize to a multiple of 8 */
9500 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
9501 bool NeedsAlign = (Align > 8);
9502
9503 MachineBasicBlock *thisMBB = MBB;
9504 MachineBasicBlock *overflowMBB;
9505 MachineBasicBlock *offsetMBB;
9506 MachineBasicBlock *endMBB;
9507
9508 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
9509 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
9510 unsigned OffsetReg = 0;
9511
9512 if (!UseGPOffset && !UseFPOffset) {
9513 // If we only pull from the overflow region, we don't create a branch.
9514 // We don't need to alter control flow.
9515 OffsetDestReg = 0; // unused
9516 OverflowDestReg = DestReg;
9517
9518 offsetMBB = NULL;
9519 overflowMBB = thisMBB;
9520 endMBB = thisMBB;
9521 } else {
9522 // First emit code to check if gp_offset (or fp_offset) is below the bound.
9523 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
9524 // If not, pull from overflow_area. (branch to overflowMBB)
9525 //
9526 // thisMBB
9527 // | .
9528 // | .
9529 // offsetMBB overflowMBB
9530 // | .
9531 // | .
9532 // endMBB
9533
9534 // Registers for the PHI in endMBB
9535 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
9536 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
9537
9538 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9539 MachineFunction *MF = MBB->getParent();
9540 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9541 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9542 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9543
9544 MachineFunction::iterator MBBIter = MBB;
9545 ++MBBIter;
9546
9547 // Insert the new basic blocks
9548 MF->insert(MBBIter, offsetMBB);
9549 MF->insert(MBBIter, overflowMBB);
9550 MF->insert(MBBIter, endMBB);
9551
9552 // Transfer the remainder of MBB and its successor edges to endMBB.
9553 endMBB->splice(endMBB->begin(), thisMBB,
9554 llvm::next(MachineBasicBlock::iterator(MI)),
9555 thisMBB->end());
9556 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
9557
9558 // Make offsetMBB and overflowMBB successors of thisMBB
9559 thisMBB->addSuccessor(offsetMBB);
9560 thisMBB->addSuccessor(overflowMBB);
9561
9562 // endMBB is a successor of both offsetMBB and overflowMBB
9563 offsetMBB->addSuccessor(endMBB);
9564 overflowMBB->addSuccessor(endMBB);
9565
9566 // Load the offset value into a register
9567 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
9568 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
9569 .addOperand(Base)
9570 .addOperand(Scale)
9571 .addOperand(Index)
9572 .addDisp(Disp, UseFPOffset ? 4 : 0)
9573 .addOperand(Segment)
9574 .setMemRefs(MMOBegin, MMOEnd);
9575
9576 // Check if there is enough room left to pull this argument.
9577 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
9578 .addReg(OffsetReg)
9579 .addImm(MaxOffset + 8 - ArgSizeA8);
9580
9581 // Branch to "overflowMBB" if offset >= max
9582 // Fall through to "offsetMBB" otherwise
9583 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
9584 .addMBB(overflowMBB);
9585 }
9586
9587 // In offsetMBB, emit code to use the reg_save_area.
9588 if (offsetMBB) {
9589 assert(OffsetReg != 0);
9590
9591 // Read the reg_save_area address.
9592 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
9593 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
9594 .addOperand(Base)
9595 .addOperand(Scale)
9596 .addOperand(Index)
9597 .addDisp(Disp, 16)
9598 .addOperand(Segment)
9599 .setMemRefs(MMOBegin, MMOEnd);
9600
9601 // Zero-extend the offset
9602 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
9603 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
9604 .addImm(0)
9605 .addReg(OffsetReg)
9606 .addImm(X86::sub_32bit);
9607
9608 // Add the offset to the reg_save_area to get the final address.
9609 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
9610 .addReg(OffsetReg64)
9611 .addReg(RegSaveReg);
9612
9613 // Compute the offset for the next argument
9614 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
9615 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
9616 .addReg(OffsetReg)
9617 .addImm(UseFPOffset ? 16 : 8);
9618
9619 // Store it back into the va_list.
9620 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
9621 .addOperand(Base)
9622 .addOperand(Scale)
9623 .addOperand(Index)
9624 .addDisp(Disp, UseFPOffset ? 4 : 0)
9625 .addOperand(Segment)
9626 .addReg(NextOffsetReg)
9627 .setMemRefs(MMOBegin, MMOEnd);
9628
9629 // Jump to endMBB
9630 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
9631 .addMBB(endMBB);
9632 }
9633
9634 //
9635 // Emit code to use overflow area
9636 //
9637
9638 // Load the overflow_area address into a register.
9639 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
9640 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
9641 .addOperand(Base)
9642 .addOperand(Scale)
9643 .addOperand(Index)
9644 .addDisp(Disp, 8)
9645 .addOperand(Segment)
9646 .setMemRefs(MMOBegin, MMOEnd);
9647
9648 // If we need to align it, do so. Otherwise, just copy the address
9649 // to OverflowDestReg.
9650 if (NeedsAlign) {
9651 // Align the overflow address
9652 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
9653 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
9654
9655 // aligned_addr = (addr + (align-1)) & ~(align-1)
9656 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
9657 .addReg(OverflowAddrReg)
9658 .addImm(Align-1);
9659
9660 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
9661 .addReg(TmpReg)
9662 .addImm(~(uint64_t)(Align-1));
9663 } else {
9664 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
9665 .addReg(OverflowAddrReg);
9666 }
9667
9668 // Compute the next overflow address after this argument.
9669 // (the overflow address should be kept 8-byte aligned)
9670 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
9671 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
9672 .addReg(OverflowDestReg)
9673 .addImm(ArgSizeA8);
9674
9675 // Store the new overflow address.
9676 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
9677 .addOperand(Base)
9678 .addOperand(Scale)
9679 .addOperand(Index)
9680 .addDisp(Disp, 8)
9681 .addOperand(Segment)
9682 .addReg(NextAddrReg)
9683 .setMemRefs(MMOBegin, MMOEnd);
9684
9685 // If we branched, emit the PHI to the front of endMBB.
9686 if (offsetMBB) {
9687 BuildMI(*endMBB, endMBB->begin(), DL,
9688 TII->get(X86::PHI), DestReg)
9689 .addReg(OffsetDestReg).addMBB(offsetMBB)
9690 .addReg(OverflowDestReg).addMBB(overflowMBB);
9691 }
9692
9693 // Erase the pseudo instruction
9694 MI->eraseFromParent();
9695
9696 return endMBB;
9697}
9698
9699MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +00009700X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
9701 MachineInstr *MI,
9702 MachineBasicBlock *MBB) const {
9703 // Emit code to save XMM registers to the stack. The ABI says that the
9704 // number of registers to save is given in %al, so it's theoretically
9705 // possible to do an indirect jump trick to avoid saving all of them,
9706 // however this code takes a simpler approach and just executes all
9707 // of the stores if %al is non-zero. It's less code, and it's probably
9708 // easier on the hardware branch predictor, and stores aren't all that
9709 // expensive anyway.
9710
9711 // Create the new basic blocks. One block contains all the XMM stores,
9712 // and one block is the final destination regardless of whether any
9713 // stores were performed.
9714 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9715 MachineFunction *F = MBB->getParent();
9716 MachineFunction::iterator MBBIter = MBB;
9717 ++MBBIter;
9718 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
9719 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
9720 F->insert(MBBIter, XMMSaveMBB);
9721 F->insert(MBBIter, EndMBB);
9722
Dan Gohman14152b42010-07-06 20:24:04 +00009723 // Transfer the remainder of MBB and its successor edges to EndMBB.
9724 EndMBB->splice(EndMBB->begin(), MBB,
9725 llvm::next(MachineBasicBlock::iterator(MI)),
9726 MBB->end());
9727 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
9728
Dan Gohmand6708ea2009-08-15 01:38:56 +00009729 // The original block will now fall through to the XMM save block.
9730 MBB->addSuccessor(XMMSaveMBB);
9731 // The XMMSaveMBB will fall through to the end block.
9732 XMMSaveMBB->addSuccessor(EndMBB);
9733
9734 // Now add the instructions.
9735 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9736 DebugLoc DL = MI->getDebugLoc();
9737
9738 unsigned CountReg = MI->getOperand(0).getReg();
9739 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
9740 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
9741
9742 if (!Subtarget->isTargetWin64()) {
9743 // If %al is 0, branch around the XMM save block.
9744 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009745 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009746 MBB->addSuccessor(EndMBB);
9747 }
9748
9749 // In the XMM save block, save all the XMM argument registers.
9750 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
9751 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +00009752 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +00009753 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +00009754 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +00009755 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +00009756 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009757 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
9758 .addFrameIndex(RegSaveFrameIndex)
9759 .addImm(/*Scale=*/1)
9760 .addReg(/*IndexReg=*/0)
9761 .addImm(/*Disp=*/Offset)
9762 .addReg(/*Segment=*/0)
9763 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +00009764 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009765 }
9766
Dan Gohman14152b42010-07-06 20:24:04 +00009767 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009768
9769 return EndMBB;
9770}
Mon P Wang63307c32008-05-05 19:05:59 +00009771
Evan Cheng60c07e12006-07-05 22:17:51 +00009772MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +00009773X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009774 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +00009775 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9776 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00009777
Chris Lattner52600972009-09-02 05:57:00 +00009778 // To "insert" a SELECT_CC instruction, we actually have to insert the
9779 // diamond control-flow pattern. The incoming instruction knows the
9780 // destination vreg to set, the condition code register to branch on, the
9781 // true/false values to select between, and a branch opcode to use.
9782 const BasicBlock *LLVM_BB = BB->getBasicBlock();
9783 MachineFunction::iterator It = BB;
9784 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +00009785
Chris Lattner52600972009-09-02 05:57:00 +00009786 // thisMBB:
9787 // ...
9788 // TrueVal = ...
9789 // cmpTY ccX, r1, r2
9790 // bCC copy1MBB
9791 // fallthrough --> copy0MBB
9792 MachineBasicBlock *thisMBB = BB;
9793 MachineFunction *F = BB->getParent();
9794 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
9795 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +00009796 F->insert(It, copy0MBB);
9797 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +00009798
Bill Wendling730c07e2010-06-25 20:48:10 +00009799 // If the EFLAGS register isn't dead in the terminator, then claim that it's
9800 // live into the sink and copy blocks.
9801 const MachineFunction *MF = BB->getParent();
9802 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
9803 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +00009804
Dan Gohman14152b42010-07-06 20:24:04 +00009805 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
9806 const MachineOperand &MO = MI->getOperand(I);
9807 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +00009808 unsigned Reg = MO.getReg();
9809 if (Reg != X86::EFLAGS) continue;
9810 copy0MBB->addLiveIn(Reg);
9811 sinkMBB->addLiveIn(Reg);
9812 }
9813
Dan Gohman14152b42010-07-06 20:24:04 +00009814 // Transfer the remainder of BB and its successor edges to sinkMBB.
9815 sinkMBB->splice(sinkMBB->begin(), BB,
9816 llvm::next(MachineBasicBlock::iterator(MI)),
9817 BB->end());
9818 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
9819
9820 // Add the true and fallthrough blocks as its successors.
9821 BB->addSuccessor(copy0MBB);
9822 BB->addSuccessor(sinkMBB);
9823
9824 // Create the conditional branch instruction.
9825 unsigned Opc =
9826 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
9827 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
9828
Chris Lattner52600972009-09-02 05:57:00 +00009829 // copy0MBB:
9830 // %FalseValue = ...
9831 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +00009832 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00009833
Chris Lattner52600972009-09-02 05:57:00 +00009834 // sinkMBB:
9835 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
9836 // ...
Dan Gohman14152b42010-07-06 20:24:04 +00009837 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
9838 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +00009839 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
9840 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
9841
Dan Gohman14152b42010-07-06 20:24:04 +00009842 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +00009843 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +00009844}
9845
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009846MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009847X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009848 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009849 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9850 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009851
9852 // The lowering is pretty easy: we're just emitting the call to _alloca. The
9853 // non-trivial part is impdef of ESP.
9854 // FIXME: The code should be tweaked as soon as we'll try to do codegen for
9855 // mingw-w64.
9856
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009857 const char *StackProbeSymbol =
9858 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
9859
Dan Gohman14152b42010-07-06 20:24:04 +00009860 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009861 .addExternalSymbol(StackProbeSymbol)
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009862 .addReg(X86::EAX, RegState::Implicit)
9863 .addReg(X86::ESP, RegState::Implicit)
9864 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
Anton Korobeynikov9f7f83b2010-08-25 07:50:11 +00009865 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
9866 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009867
Dan Gohman14152b42010-07-06 20:24:04 +00009868 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009869 return BB;
9870}
Chris Lattner52600972009-09-02 05:57:00 +00009871
9872MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +00009873X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
9874 MachineBasicBlock *BB) const {
9875 // This is pretty easy. We're taking the value that we received from
9876 // our load from the relocation, sticking it in either RDI (x86-64)
9877 // or EAX and doing an indirect call. The return value will then
9878 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +00009879 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +00009880 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +00009881 DebugLoc DL = MI->getDebugLoc();
9882 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +00009883
9884 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +00009885 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009886
Eric Christopher30ef0e52010-06-03 04:07:48 +00009887 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +00009888 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9889 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +00009890 .addReg(X86::RIP)
9891 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009892 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +00009893 MI->getOperand(3).getTargetFlags())
9894 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +00009895 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +00009896 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +00009897 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +00009898 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9899 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +00009900 .addReg(0)
9901 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009902 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +00009903 MI->getOperand(3).getTargetFlags())
9904 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +00009905 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +00009906 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009907 } else {
Dan Gohman14152b42010-07-06 20:24:04 +00009908 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9909 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +00009910 .addReg(TII->getGlobalBaseReg(F))
9911 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009912 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +00009913 MI->getOperand(3).getTargetFlags())
9914 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +00009915 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +00009916 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009917 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009918
Dan Gohman14152b42010-07-06 20:24:04 +00009919 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +00009920 return BB;
9921}
9922
9923MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00009924X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009925 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +00009926 switch (MI->getOpcode()) {
9927 default: assert(false && "Unexpected instr type to insert");
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009928 case X86::WIN_ALLOCA:
9929 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009930 case X86::TLSCall_32:
9931 case X86::TLSCall_64:
9932 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +00009933 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +00009934 case X86::CMOV_FR32:
9935 case X86::CMOV_FR64:
9936 case X86::CMOV_V4F32:
9937 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +00009938 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +00009939 case X86::CMOV_GR16:
9940 case X86::CMOV_GR32:
9941 case X86::CMOV_RFP32:
9942 case X86::CMOV_RFP64:
9943 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009944 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +00009945
Dale Johannesen849f2142007-07-03 00:53:03 +00009946 case X86::FP32_TO_INT16_IN_MEM:
9947 case X86::FP32_TO_INT32_IN_MEM:
9948 case X86::FP32_TO_INT64_IN_MEM:
9949 case X86::FP64_TO_INT16_IN_MEM:
9950 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +00009951 case X86::FP64_TO_INT64_IN_MEM:
9952 case X86::FP80_TO_INT16_IN_MEM:
9953 case X86::FP80_TO_INT32_IN_MEM:
9954 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +00009955 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9956 DebugLoc DL = MI->getDebugLoc();
9957
Evan Cheng60c07e12006-07-05 22:17:51 +00009958 // Change the floating point control register to use "round towards zero"
9959 // mode when truncating to an integer value.
9960 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +00009961 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +00009962 addFrameReference(BuildMI(*BB, MI, DL,
9963 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00009964
9965 // Load the old value of the high byte of the control word...
9966 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +00009967 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +00009968 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009969 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00009970
9971 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +00009972 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +00009973 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +00009974
9975 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +00009976 addFrameReference(BuildMI(*BB, MI, DL,
9977 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00009978
9979 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +00009980 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +00009981 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +00009982
9983 // Get the X86 opcode to use.
9984 unsigned Opc;
9985 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009986 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +00009987 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
9988 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
9989 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
9990 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
9991 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
9992 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +00009993 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
9994 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
9995 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +00009996 }
9997
9998 X86AddressMode AM;
9999 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000010000 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010001 AM.BaseType = X86AddressMode::RegBase;
10002 AM.Base.Reg = Op.getReg();
10003 } else {
10004 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000010005 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000010006 }
10007 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000010008 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010009 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010010 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000010011 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010012 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010013 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000010014 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010015 AM.GV = Op.getGlobal();
10016 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000010017 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010018 }
Dan Gohman14152b42010-07-06 20:24:04 +000010019 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010020 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000010021
10022 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000010023 addFrameReference(BuildMI(*BB, MI, DL,
10024 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010025
Dan Gohman14152b42010-07-06 20:24:04 +000010026 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000010027 return BB;
10028 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010029 // String/text processing lowering.
10030 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010031 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010032 return EmitPCMP(MI, BB, 3, false /* in-mem */);
10033 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010034 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010035 return EmitPCMP(MI, BB, 3, true /* in-mem */);
10036 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010037 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010038 return EmitPCMP(MI, BB, 5, false /* in mem */);
10039 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010040 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010041 return EmitPCMP(MI, BB, 5, true /* in mem */);
10042
10043 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000010044 case X86::ATOMAND32:
10045 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010046 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010047 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010048 X86::NOT32r, X86::EAX,
10049 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010050 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000010051 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
10052 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010053 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010054 X86::NOT32r, X86::EAX,
10055 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010056 case X86::ATOMXOR32:
10057 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010058 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010059 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010060 X86::NOT32r, X86::EAX,
10061 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010062 case X86::ATOMNAND32:
10063 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010064 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010065 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010066 X86::NOT32r, X86::EAX,
10067 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000010068 case X86::ATOMMIN32:
10069 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
10070 case X86::ATOMMAX32:
10071 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
10072 case X86::ATOMUMIN32:
10073 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
10074 case X86::ATOMUMAX32:
10075 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000010076
10077 case X86::ATOMAND16:
10078 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10079 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010080 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010081 X86::NOT16r, X86::AX,
10082 X86::GR16RegisterClass);
10083 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000010084 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010085 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010086 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010087 X86::NOT16r, X86::AX,
10088 X86::GR16RegisterClass);
10089 case X86::ATOMXOR16:
10090 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
10091 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010092 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010093 X86::NOT16r, X86::AX,
10094 X86::GR16RegisterClass);
10095 case X86::ATOMNAND16:
10096 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10097 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010098 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010099 X86::NOT16r, X86::AX,
10100 X86::GR16RegisterClass, true);
10101 case X86::ATOMMIN16:
10102 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
10103 case X86::ATOMMAX16:
10104 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
10105 case X86::ATOMUMIN16:
10106 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
10107 case X86::ATOMUMAX16:
10108 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
10109
10110 case X86::ATOMAND8:
10111 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10112 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010113 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010114 X86::NOT8r, X86::AL,
10115 X86::GR8RegisterClass);
10116 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000010117 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010118 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010119 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010120 X86::NOT8r, X86::AL,
10121 X86::GR8RegisterClass);
10122 case X86::ATOMXOR8:
10123 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
10124 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010125 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010126 X86::NOT8r, X86::AL,
10127 X86::GR8RegisterClass);
10128 case X86::ATOMNAND8:
10129 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10130 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010131 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010132 X86::NOT8r, X86::AL,
10133 X86::GR8RegisterClass, true);
10134 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010135 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000010136 case X86::ATOMAND64:
10137 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010138 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010139 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010140 X86::NOT64r, X86::RAX,
10141 X86::GR64RegisterClass);
10142 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000010143 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
10144 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010145 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010146 X86::NOT64r, X86::RAX,
10147 X86::GR64RegisterClass);
10148 case X86::ATOMXOR64:
10149 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010150 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010151 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010152 X86::NOT64r, X86::RAX,
10153 X86::GR64RegisterClass);
10154 case X86::ATOMNAND64:
10155 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
10156 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010157 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010158 X86::NOT64r, X86::RAX,
10159 X86::GR64RegisterClass, true);
10160 case X86::ATOMMIN64:
10161 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
10162 case X86::ATOMMAX64:
10163 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
10164 case X86::ATOMUMIN64:
10165 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
10166 case X86::ATOMUMAX64:
10167 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010168
10169 // This group does 64-bit operations on a 32-bit host.
10170 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010171 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010172 X86::AND32rr, X86::AND32rr,
10173 X86::AND32ri, X86::AND32ri,
10174 false);
10175 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010176 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010177 X86::OR32rr, X86::OR32rr,
10178 X86::OR32ri, X86::OR32ri,
10179 false);
10180 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010181 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010182 X86::XOR32rr, X86::XOR32rr,
10183 X86::XOR32ri, X86::XOR32ri,
10184 false);
10185 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010186 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010187 X86::AND32rr, X86::AND32rr,
10188 X86::AND32ri, X86::AND32ri,
10189 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010190 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010191 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010192 X86::ADD32rr, X86::ADC32rr,
10193 X86::ADD32ri, X86::ADC32ri,
10194 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010195 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010196 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010197 X86::SUB32rr, X86::SBB32rr,
10198 X86::SUB32ri, X86::SBB32ri,
10199 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000010200 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010201 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000010202 X86::MOV32rr, X86::MOV32rr,
10203 X86::MOV32ri, X86::MOV32ri,
10204 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010205 case X86::VASTART_SAVE_XMM_REGS:
10206 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000010207
10208 case X86::VAARG_64:
10209 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010210 }
10211}
10212
10213//===----------------------------------------------------------------------===//
10214// X86 Optimization Hooks
10215//===----------------------------------------------------------------------===//
10216
Dan Gohman475871a2008-07-27 21:46:04 +000010217void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000010218 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010219 APInt &KnownZero,
10220 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000010221 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000010222 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010223 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000010224 assert((Opc >= ISD::BUILTIN_OP_END ||
10225 Opc == ISD::INTRINSIC_WO_CHAIN ||
10226 Opc == ISD::INTRINSIC_W_CHAIN ||
10227 Opc == ISD::INTRINSIC_VOID) &&
10228 "Should use MaskedValueIsZero if you don't know whether Op"
10229 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010230
Dan Gohmanf4f92f52008-02-13 23:07:24 +000010231 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010232 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000010233 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010234 case X86ISD::ADD:
10235 case X86ISD::SUB:
10236 case X86ISD::SMUL:
10237 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000010238 case X86ISD::INC:
10239 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000010240 case X86ISD::OR:
10241 case X86ISD::XOR:
10242 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010243 // These nodes' second result is a boolean.
10244 if (Op.getResNo() == 0)
10245 break;
10246 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010247 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010248 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
10249 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000010250 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010251 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010252}
Chris Lattner259e97c2006-01-31 19:43:35 +000010253
Owen Andersonbc146b02010-09-21 20:42:50 +000010254unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
10255 unsigned Depth) const {
10256 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
10257 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
10258 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010259
Owen Andersonbc146b02010-09-21 20:42:50 +000010260 // Fallback case.
10261 return 1;
10262}
10263
Evan Cheng206ee9d2006-07-07 08:33:52 +000010264/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000010265/// node is a GlobalAddress + offset.
10266bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000010267 const GlobalValue* &GA,
10268 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000010269 if (N->getOpcode() == X86ISD::Wrapper) {
10270 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000010271 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000010272 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000010273 return true;
10274 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000010275 }
Evan Chengad4196b2008-05-12 19:56:52 +000010276 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000010277}
10278
Evan Cheng206ee9d2006-07-07 08:33:52 +000010279/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
10280/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
10281/// if the load addresses are consecutive, non-overlapping, and in the right
Nate Begemanfdea31a2010-03-24 20:49:50 +000010282/// order.
Dan Gohman475871a2008-07-27 21:46:04 +000010283static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Nate Begeman9008ca62009-04-27 18:41:29 +000010284 const TargetLowering &TLI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010285 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000010286 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000010287
Eli Friedman7a5e5552009-06-07 06:52:44 +000010288 if (VT.getSizeInBits() != 128)
10289 return SDValue();
10290
Nate Begemanfdea31a2010-03-24 20:49:50 +000010291 SmallVector<SDValue, 16> Elts;
10292 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000010293 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000010294
Nate Begemanfdea31a2010-03-24 20:49:50 +000010295 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000010296}
Evan Chengd880b972008-05-09 21:53:03 +000010297
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000010298/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
10299/// generation and convert it from being a bunch of shuffles and extracts
10300/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010301static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
10302 const TargetLowering &TLI) {
10303 SDValue InputVector = N->getOperand(0);
10304
10305 // Only operate on vectors of 4 elements, where the alternative shuffling
10306 // gets to be more expensive.
10307 if (InputVector.getValueType() != MVT::v4i32)
10308 return SDValue();
10309
10310 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
10311 // single use which is a sign-extend or zero-extend, and all elements are
10312 // used.
10313 SmallVector<SDNode *, 4> Uses;
10314 unsigned ExtractedElements = 0;
10315 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
10316 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
10317 if (UI.getUse().getResNo() != InputVector.getResNo())
10318 return SDValue();
10319
10320 SDNode *Extract = *UI;
10321 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
10322 return SDValue();
10323
10324 if (Extract->getValueType(0) != MVT::i32)
10325 return SDValue();
10326 if (!Extract->hasOneUse())
10327 return SDValue();
10328 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
10329 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
10330 return SDValue();
10331 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
10332 return SDValue();
10333
10334 // Record which element was extracted.
10335 ExtractedElements |=
10336 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
10337
10338 Uses.push_back(Extract);
10339 }
10340
10341 // If not all the elements were used, this may not be worthwhile.
10342 if (ExtractedElements != 15)
10343 return SDValue();
10344
10345 // Ok, we've now decided to do the transformation.
10346 DebugLoc dl = InputVector.getDebugLoc();
10347
10348 // Store the value to a temporary stack slot.
10349 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010350 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
10351 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010352
10353 // Replace each use (extract) with a load of the appropriate element.
10354 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
10355 UE = Uses.end(); UI != UE; ++UI) {
10356 SDNode *Extract = *UI;
10357
10358 // Compute the element's address.
10359 SDValue Idx = Extract->getOperand(1);
10360 unsigned EltSize =
10361 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
10362 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
10363 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
10364
Eric Christopher90eb4022010-07-22 00:26:08 +000010365 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(),
Chris Lattner51abfe42010-09-21 06:02:19 +000010366 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010367
10368 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000010369 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000010370 ScalarAddr, MachinePointerInfo(),
10371 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010372
10373 // Replace the exact with the load.
10374 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
10375 }
10376
10377 // The replacement was made in place; don't return anything.
10378 return SDValue();
10379}
10380
Chris Lattner83e6c992006-10-04 06:57:07 +000010381/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000010382static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000010383 const X86Subtarget *Subtarget) {
10384 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000010385 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000010386 // Get the LHS/RHS of the select.
10387 SDValue LHS = N->getOperand(1);
10388 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010389
Dan Gohman670e5392009-09-21 18:03:22 +000010390 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000010391 // instructions match the semantics of the common C idiom x<y?x:y but not
10392 // x<=y?x:y, because of how they handle negative zero (which can be
10393 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000010394 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000010395 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000010396 Cond.getOpcode() == ISD::SETCC) {
10397 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010398
Chris Lattner47b4ce82009-03-11 05:48:52 +000010399 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000010400 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000010401 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
10402 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010403 switch (CC) {
10404 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010405 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010406 // Converting this to a min would handle NaNs incorrectly, and swapping
10407 // the operands would cause it to handle comparisons between positive
10408 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010409 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010410 if (!UnsafeFPMath &&
10411 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10412 break;
10413 std::swap(LHS, RHS);
10414 }
Dan Gohman670e5392009-09-21 18:03:22 +000010415 Opcode = X86ISD::FMIN;
10416 break;
10417 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010418 // Converting this to a min would handle comparisons between positive
10419 // and negative zero incorrectly.
10420 if (!UnsafeFPMath &&
10421 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
10422 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010423 Opcode = X86ISD::FMIN;
10424 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010425 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010426 // Converting this to a min would handle both negative zeros and NaNs
10427 // incorrectly, but we can swap the operands to fix both.
10428 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010429 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010430 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010431 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010432 Opcode = X86ISD::FMIN;
10433 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010434
Dan Gohman670e5392009-09-21 18:03:22 +000010435 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010436 // Converting this to a max would handle comparisons between positive
10437 // and negative zero incorrectly.
10438 if (!UnsafeFPMath &&
10439 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
10440 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010441 Opcode = X86ISD::FMAX;
10442 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010443 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010444 // Converting this to a max would handle NaNs incorrectly, and swapping
10445 // the operands would cause it to handle comparisons between positive
10446 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010447 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010448 if (!UnsafeFPMath &&
10449 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10450 break;
10451 std::swap(LHS, RHS);
10452 }
Dan Gohman670e5392009-09-21 18:03:22 +000010453 Opcode = X86ISD::FMAX;
10454 break;
10455 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010456 // Converting this to a max would handle both negative zeros and NaNs
10457 // incorrectly, but we can swap the operands to fix both.
10458 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010459 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010460 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010461 case ISD::SETGE:
10462 Opcode = X86ISD::FMAX;
10463 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000010464 }
Dan Gohman670e5392009-09-21 18:03:22 +000010465 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000010466 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
10467 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010468 switch (CC) {
10469 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010470 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010471 // Converting this to a min would handle comparisons between positive
10472 // and negative zero incorrectly, and swapping the operands would
10473 // cause it to handle NaNs incorrectly.
10474 if (!UnsafeFPMath &&
10475 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000010476 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010477 break;
10478 std::swap(LHS, RHS);
10479 }
Dan Gohman670e5392009-09-21 18:03:22 +000010480 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000010481 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010482 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010483 // Converting this to a min would handle NaNs incorrectly.
10484 if (!UnsafeFPMath &&
10485 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
10486 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010487 Opcode = X86ISD::FMIN;
10488 break;
10489 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010490 // Converting this to a min would handle both negative zeros and NaNs
10491 // incorrectly, but we can swap the operands to fix both.
10492 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010493 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010494 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010495 case ISD::SETGE:
10496 Opcode = X86ISD::FMIN;
10497 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010498
Dan Gohman670e5392009-09-21 18:03:22 +000010499 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010500 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010501 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010502 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010503 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000010504 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010505 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010506 // Converting this to a max would handle comparisons between positive
10507 // and negative zero incorrectly, and swapping the operands would
10508 // cause it to handle NaNs incorrectly.
10509 if (!UnsafeFPMath &&
10510 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000010511 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010512 break;
10513 std::swap(LHS, RHS);
10514 }
Dan Gohman670e5392009-09-21 18:03:22 +000010515 Opcode = X86ISD::FMAX;
10516 break;
10517 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010518 // Converting this to a max would handle both negative zeros and NaNs
10519 // incorrectly, but we can swap the operands to fix both.
10520 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010521 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010522 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010523 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010524 Opcode = X86ISD::FMAX;
10525 break;
10526 }
Chris Lattner83e6c992006-10-04 06:57:07 +000010527 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010528
Chris Lattner47b4ce82009-03-11 05:48:52 +000010529 if (Opcode)
10530 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000010531 }
Eric Christopherfd179292009-08-27 18:07:15 +000010532
Chris Lattnerd1980a52009-03-12 06:52:53 +000010533 // If this is a select between two integer constants, try to do some
10534 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000010535 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
10536 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000010537 // Don't do this for crazy integer types.
10538 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
10539 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000010540 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010541 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000010542
Chris Lattnercee56e72009-03-13 05:53:31 +000010543 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000010544 // Efficiently invertible.
10545 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
10546 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
10547 isa<ConstantSDNode>(Cond.getOperand(1))))) {
10548 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000010549 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000010550 }
Eric Christopherfd179292009-08-27 18:07:15 +000010551
Chris Lattnerd1980a52009-03-12 06:52:53 +000010552 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010553 if (FalseC->getAPIntValue() == 0 &&
10554 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000010555 if (NeedsCondInvert) // Invert the condition if needed.
10556 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10557 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010558
Chris Lattnerd1980a52009-03-12 06:52:53 +000010559 // Zero extend the condition if needed.
10560 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010561
Chris Lattnercee56e72009-03-13 05:53:31 +000010562 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000010563 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010564 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010565 }
Eric Christopherfd179292009-08-27 18:07:15 +000010566
Chris Lattner97a29a52009-03-13 05:22:11 +000010567 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000010568 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000010569 if (NeedsCondInvert) // Invert the condition if needed.
10570 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10571 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010572
Chris Lattner97a29a52009-03-13 05:22:11 +000010573 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010574 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10575 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010576 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000010577 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000010578 }
Eric Christopherfd179292009-08-27 18:07:15 +000010579
Chris Lattnercee56e72009-03-13 05:53:31 +000010580 // Optimize cases that will turn into an LEA instruction. This requires
10581 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010582 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010583 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010584 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010585
Chris Lattnercee56e72009-03-13 05:53:31 +000010586 bool isFastMultiplier = false;
10587 if (Diff < 10) {
10588 switch ((unsigned char)Diff) {
10589 default: break;
10590 case 1: // result = add base, cond
10591 case 2: // result = lea base( , cond*2)
10592 case 3: // result = lea base(cond, cond*2)
10593 case 4: // result = lea base( , cond*4)
10594 case 5: // result = lea base(cond, cond*4)
10595 case 8: // result = lea base( , cond*8)
10596 case 9: // result = lea base(cond, cond*8)
10597 isFastMultiplier = true;
10598 break;
10599 }
10600 }
Eric Christopherfd179292009-08-27 18:07:15 +000010601
Chris Lattnercee56e72009-03-13 05:53:31 +000010602 if (isFastMultiplier) {
10603 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10604 if (NeedsCondInvert) // Invert the condition if needed.
10605 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10606 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010607
Chris Lattnercee56e72009-03-13 05:53:31 +000010608 // Zero extend the condition if needed.
10609 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10610 Cond);
10611 // Scale the condition by the difference.
10612 if (Diff != 1)
10613 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10614 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010615
Chris Lattnercee56e72009-03-13 05:53:31 +000010616 // Add the base if non-zero.
10617 if (FalseC->getAPIntValue() != 0)
10618 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10619 SDValue(FalseC, 0));
10620 return Cond;
10621 }
Eric Christopherfd179292009-08-27 18:07:15 +000010622 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010623 }
10624 }
Eric Christopherfd179292009-08-27 18:07:15 +000010625
Dan Gohman475871a2008-07-27 21:46:04 +000010626 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000010627}
10628
Chris Lattnerd1980a52009-03-12 06:52:53 +000010629/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
10630static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
10631 TargetLowering::DAGCombinerInfo &DCI) {
10632 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000010633
Chris Lattnerd1980a52009-03-12 06:52:53 +000010634 // If the flag operand isn't dead, don't touch this CMOV.
10635 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
10636 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000010637
Chris Lattnerd1980a52009-03-12 06:52:53 +000010638 // If this is a select between two integer constants, try to do some
10639 // optimizations. Note that the operands are ordered the opposite of SELECT
10640 // operands.
10641 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
10642 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
10643 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
10644 // larger than FalseC (the false value).
10645 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010646
Chris Lattnerd1980a52009-03-12 06:52:53 +000010647 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
10648 CC = X86::GetOppositeBranchCondition(CC);
10649 std::swap(TrueC, FalseC);
10650 }
Eric Christopherfd179292009-08-27 18:07:15 +000010651
Chris Lattnerd1980a52009-03-12 06:52:53 +000010652 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010653 // This is efficient for any integer data type (including i8/i16) and
10654 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010655 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
10656 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010657 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10658 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010659
Chris Lattnerd1980a52009-03-12 06:52:53 +000010660 // Zero extend the condition if needed.
10661 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010662
Chris Lattnerd1980a52009-03-12 06:52:53 +000010663 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
10664 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010665 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010666 if (N->getNumValues() == 2) // Dead flag value?
10667 return DCI.CombineTo(N, Cond, SDValue());
10668 return Cond;
10669 }
Eric Christopherfd179292009-08-27 18:07:15 +000010670
Chris Lattnercee56e72009-03-13 05:53:31 +000010671 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
10672 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000010673 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
10674 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010675 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10676 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010677
Chris Lattner97a29a52009-03-13 05:22:11 +000010678 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010679 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10680 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010681 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10682 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000010683
Chris Lattner97a29a52009-03-13 05:22:11 +000010684 if (N->getNumValues() == 2) // Dead flag value?
10685 return DCI.CombineTo(N, Cond, SDValue());
10686 return Cond;
10687 }
Eric Christopherfd179292009-08-27 18:07:15 +000010688
Chris Lattnercee56e72009-03-13 05:53:31 +000010689 // Optimize cases that will turn into an LEA instruction. This requires
10690 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010691 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010692 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010693 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010694
Chris Lattnercee56e72009-03-13 05:53:31 +000010695 bool isFastMultiplier = false;
10696 if (Diff < 10) {
10697 switch ((unsigned char)Diff) {
10698 default: break;
10699 case 1: // result = add base, cond
10700 case 2: // result = lea base( , cond*2)
10701 case 3: // result = lea base(cond, cond*2)
10702 case 4: // result = lea base( , cond*4)
10703 case 5: // result = lea base(cond, cond*4)
10704 case 8: // result = lea base( , cond*8)
10705 case 9: // result = lea base(cond, cond*8)
10706 isFastMultiplier = true;
10707 break;
10708 }
10709 }
Eric Christopherfd179292009-08-27 18:07:15 +000010710
Chris Lattnercee56e72009-03-13 05:53:31 +000010711 if (isFastMultiplier) {
10712 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10713 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010714 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10715 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000010716 // Zero extend the condition if needed.
10717 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10718 Cond);
10719 // Scale the condition by the difference.
10720 if (Diff != 1)
10721 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10722 DAG.getConstant(Diff, Cond.getValueType()));
10723
10724 // Add the base if non-zero.
10725 if (FalseC->getAPIntValue() != 0)
10726 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10727 SDValue(FalseC, 0));
10728 if (N->getNumValues() == 2) // Dead flag value?
10729 return DCI.CombineTo(N, Cond, SDValue());
10730 return Cond;
10731 }
Eric Christopherfd179292009-08-27 18:07:15 +000010732 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010733 }
10734 }
10735 return SDValue();
10736}
10737
10738
Evan Cheng0b0cd912009-03-28 05:57:29 +000010739/// PerformMulCombine - Optimize a single multiply with constant into two
10740/// in order to implement it with two cheaper instructions, e.g.
10741/// LEA + SHL, LEA + LEA.
10742static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
10743 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000010744 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
10745 return SDValue();
10746
Owen Andersone50ed302009-08-10 22:56:29 +000010747 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000010748 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000010749 return SDValue();
10750
10751 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
10752 if (!C)
10753 return SDValue();
10754 uint64_t MulAmt = C->getZExtValue();
10755 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
10756 return SDValue();
10757
10758 uint64_t MulAmt1 = 0;
10759 uint64_t MulAmt2 = 0;
10760 if ((MulAmt % 9) == 0) {
10761 MulAmt1 = 9;
10762 MulAmt2 = MulAmt / 9;
10763 } else if ((MulAmt % 5) == 0) {
10764 MulAmt1 = 5;
10765 MulAmt2 = MulAmt / 5;
10766 } else if ((MulAmt % 3) == 0) {
10767 MulAmt1 = 3;
10768 MulAmt2 = MulAmt / 3;
10769 }
10770 if (MulAmt2 &&
10771 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
10772 DebugLoc DL = N->getDebugLoc();
10773
10774 if (isPowerOf2_64(MulAmt2) &&
10775 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
10776 // If second multiplifer is pow2, issue it first. We want the multiply by
10777 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
10778 // is an add.
10779 std::swap(MulAmt1, MulAmt2);
10780
10781 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000010782 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010783 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000010784 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000010785 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010786 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000010787 DAG.getConstant(MulAmt1, VT));
10788
Eric Christopherfd179292009-08-27 18:07:15 +000010789 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010790 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000010791 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000010792 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010793 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000010794 DAG.getConstant(MulAmt2, VT));
10795
10796 // Do not add new nodes to DAG combiner worklist.
10797 DCI.CombineTo(N, NewMul, false);
10798 }
10799 return SDValue();
10800}
10801
Evan Chengad9c0a32009-12-15 00:53:42 +000010802static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
10803 SDValue N0 = N->getOperand(0);
10804 SDValue N1 = N->getOperand(1);
10805 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
10806 EVT VT = N0.getValueType();
10807
10808 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
10809 // since the result of setcc_c is all zero's or all ones.
10810 if (N1C && N0.getOpcode() == ISD::AND &&
10811 N0.getOperand(1).getOpcode() == ISD::Constant) {
10812 SDValue N00 = N0.getOperand(0);
10813 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
10814 ((N00.getOpcode() == ISD::ANY_EXTEND ||
10815 N00.getOpcode() == ISD::ZERO_EXTEND) &&
10816 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
10817 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
10818 APInt ShAmt = N1C->getAPIntValue();
10819 Mask = Mask.shl(ShAmt);
10820 if (Mask != 0)
10821 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
10822 N00, DAG.getConstant(Mask, VT));
10823 }
10824 }
10825
10826 return SDValue();
10827}
Evan Cheng0b0cd912009-03-28 05:57:29 +000010828
Nate Begeman740ab032009-01-26 00:52:55 +000010829/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
10830/// when possible.
10831static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
10832 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000010833 EVT VT = N->getValueType(0);
10834 if (!VT.isVector() && VT.isInteger() &&
10835 N->getOpcode() == ISD::SHL)
10836 return PerformSHLCombine(N, DAG);
10837
Nate Begeman740ab032009-01-26 00:52:55 +000010838 // On X86 with SSE2 support, we can transform this to a vector shift if
10839 // all elements are shifted by the same amount. We can't do this in legalize
10840 // because the a constant vector is typically transformed to a constant pool
10841 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010842 if (!Subtarget->hasSSE2())
10843 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010844
Owen Anderson825b72b2009-08-11 20:47:22 +000010845 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010846 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010847
Mon P Wang3becd092009-01-28 08:12:05 +000010848 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000010849 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000010850 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000010851 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000010852 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
10853 unsigned NumElts = VT.getVectorNumElements();
10854 unsigned i = 0;
10855 for (; i != NumElts; ++i) {
10856 SDValue Arg = ShAmtOp.getOperand(i);
10857 if (Arg.getOpcode() == ISD::UNDEF) continue;
10858 BaseShAmt = Arg;
10859 break;
10860 }
10861 for (; i != NumElts; ++i) {
10862 SDValue Arg = ShAmtOp.getOperand(i);
10863 if (Arg.getOpcode() == ISD::UNDEF) continue;
10864 if (Arg != BaseShAmt) {
10865 return SDValue();
10866 }
10867 }
10868 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000010869 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000010870 SDValue InVec = ShAmtOp.getOperand(0);
10871 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
10872 unsigned NumElts = InVec.getValueType().getVectorNumElements();
10873 unsigned i = 0;
10874 for (; i != NumElts; ++i) {
10875 SDValue Arg = InVec.getOperand(i);
10876 if (Arg.getOpcode() == ISD::UNDEF) continue;
10877 BaseShAmt = Arg;
10878 break;
10879 }
10880 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
10881 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000010882 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000010883 if (C->getZExtValue() == SplatIdx)
10884 BaseShAmt = InVec.getOperand(1);
10885 }
10886 }
10887 if (BaseShAmt.getNode() == 0)
10888 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
10889 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000010890 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010891 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000010892
Mon P Wangefa42202009-09-03 19:56:25 +000010893 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000010894 if (EltVT.bitsGT(MVT::i32))
10895 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
10896 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000010897 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000010898
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010899 // The shift amount is identical so we can do a vector shift.
10900 SDValue ValOp = N->getOperand(0);
10901 switch (N->getOpcode()) {
10902 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000010903 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010904 break;
10905 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000010906 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010907 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010908 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010909 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010910 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010911 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010912 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010913 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010914 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010915 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010916 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010917 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010918 break;
10919 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000010920 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010921 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010922 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010923 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010924 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010925 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010926 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010927 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010928 break;
10929 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000010930 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010931 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010932 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010933 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010934 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010935 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010936 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010937 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010938 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010939 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010940 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010941 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010942 break;
Nate Begeman740ab032009-01-26 00:52:55 +000010943 }
10944 return SDValue();
10945}
10946
Evan Cheng760d1942010-01-04 21:22:48 +000010947static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000010948 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000010949 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000010950 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000010951 return SDValue();
10952
Evan Cheng760d1942010-01-04 21:22:48 +000010953 EVT VT = N->getValueType(0);
Evan Cheng8b1190a2010-04-28 01:18:01 +000010954 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
Evan Cheng760d1942010-01-04 21:22:48 +000010955 return SDValue();
10956
10957 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
10958 SDValue N0 = N->getOperand(0);
10959 SDValue N1 = N->getOperand(1);
10960 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
10961 std::swap(N0, N1);
10962 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
10963 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000010964 if (!N0.hasOneUse() || !N1.hasOneUse())
10965 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000010966
10967 SDValue ShAmt0 = N0.getOperand(1);
10968 if (ShAmt0.getValueType() != MVT::i8)
10969 return SDValue();
10970 SDValue ShAmt1 = N1.getOperand(1);
10971 if (ShAmt1.getValueType() != MVT::i8)
10972 return SDValue();
10973 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
10974 ShAmt0 = ShAmt0.getOperand(0);
10975 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
10976 ShAmt1 = ShAmt1.getOperand(0);
10977
10978 DebugLoc DL = N->getDebugLoc();
10979 unsigned Opc = X86ISD::SHLD;
10980 SDValue Op0 = N0.getOperand(0);
10981 SDValue Op1 = N1.getOperand(0);
10982 if (ShAmt0.getOpcode() == ISD::SUB) {
10983 Opc = X86ISD::SHRD;
10984 std::swap(Op0, Op1);
10985 std::swap(ShAmt0, ShAmt1);
10986 }
10987
Evan Cheng8b1190a2010-04-28 01:18:01 +000010988 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000010989 if (ShAmt1.getOpcode() == ISD::SUB) {
10990 SDValue Sum = ShAmt1.getOperand(0);
10991 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000010992 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
10993 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
10994 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
10995 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000010996 return DAG.getNode(Opc, DL, VT,
10997 Op0, Op1,
10998 DAG.getNode(ISD::TRUNCATE, DL,
10999 MVT::i8, ShAmt0));
11000 }
11001 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
11002 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
11003 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000011004 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000011005 return DAG.getNode(Opc, DL, VT,
11006 N0.getOperand(0), N1.getOperand(0),
11007 DAG.getNode(ISD::TRUNCATE, DL,
11008 MVT::i8, ShAmt0));
11009 }
11010
11011 return SDValue();
11012}
11013
Chris Lattner149a4e52008-02-22 02:09:43 +000011014/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011015static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000011016 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000011017 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
11018 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000011019 // A preferable solution to the general problem is to figure out the right
11020 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000011021
11022 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000011023 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000011024 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000011025 if (VT.getSizeInBits() != 64)
11026 return SDValue();
11027
Devang Patel578efa92009-06-05 21:57:13 +000011028 const Function *F = DAG.getMachineFunction().getFunction();
11029 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000011030 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000011031 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000011032 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000011033 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000011034 isa<LoadSDNode>(St->getValue()) &&
11035 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
11036 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011037 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011038 LoadSDNode *Ld = 0;
11039 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000011040 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000011041 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011042 // Must be a store of a load. We currently handle two cases: the load
11043 // is a direct child, and it's under an intervening TokenFactor. It is
11044 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000011045 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000011046 Ld = cast<LoadSDNode>(St->getChain());
11047 else if (St->getValue().hasOneUse() &&
11048 ChainVal->getOpcode() == ISD::TokenFactor) {
11049 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011050 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000011051 TokenFactorIndex = i;
11052 Ld = cast<LoadSDNode>(St->getValue());
11053 } else
11054 Ops.push_back(ChainVal->getOperand(i));
11055 }
11056 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000011057
Evan Cheng536e6672009-03-12 05:59:15 +000011058 if (!Ld || !ISD::isNormalLoad(Ld))
11059 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011060
Evan Cheng536e6672009-03-12 05:59:15 +000011061 // If this is not the MMX case, i.e. we are just turning i64 load/store
11062 // into f64 load/store, avoid the transformation if there are multiple
11063 // uses of the loaded value.
11064 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
11065 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011066
Evan Cheng536e6672009-03-12 05:59:15 +000011067 DebugLoc LdDL = Ld->getDebugLoc();
11068 DebugLoc StDL = N->getDebugLoc();
11069 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
11070 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
11071 // pair instead.
11072 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011073 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000011074 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
11075 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011076 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011077 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000011078 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000011079 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000011080 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000011081 Ops.size());
11082 }
Evan Cheng536e6672009-03-12 05:59:15 +000011083 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011084 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011085 St->isVolatile(), St->isNonTemporal(),
11086 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000011087 }
Evan Cheng536e6672009-03-12 05:59:15 +000011088
11089 // Otherwise, lower to two pairs of 32-bit loads / stores.
11090 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011091 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
11092 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011093
Owen Anderson825b72b2009-08-11 20:47:22 +000011094 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011095 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011096 Ld->isVolatile(), Ld->isNonTemporal(),
11097 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000011098 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011099 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000011100 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011101 MinAlign(Ld->getAlignment(), 4));
11102
11103 SDValue NewChain = LoLd.getValue(1);
11104 if (TokenFactorIndex != -1) {
11105 Ops.push_back(LoLd);
11106 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000011107 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000011108 Ops.size());
11109 }
11110
11111 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011112 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
11113 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011114
11115 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011116 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011117 St->isVolatile(), St->isNonTemporal(),
11118 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011119 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011120 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000011121 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011122 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011123 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000011124 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000011125 }
Dan Gohman475871a2008-07-27 21:46:04 +000011126 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000011127}
11128
Chris Lattner6cf73262008-01-25 06:14:17 +000011129/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
11130/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011131static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000011132 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
11133 // F[X]OR(0.0, x) -> x
11134 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000011135 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11136 if (C->getValueAPF().isPosZero())
11137 return N->getOperand(1);
11138 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11139 if (C->getValueAPF().isPosZero())
11140 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000011141 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011142}
11143
11144/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011145static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000011146 // FAND(0.0, x) -> 0.0
11147 // FAND(x, 0.0) -> 0.0
11148 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11149 if (C->getValueAPF().isPosZero())
11150 return N->getOperand(0);
11151 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11152 if (C->getValueAPF().isPosZero())
11153 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000011154 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011155}
11156
Dan Gohmane5af2d32009-01-29 01:59:02 +000011157static SDValue PerformBTCombine(SDNode *N,
11158 SelectionDAG &DAG,
11159 TargetLowering::DAGCombinerInfo &DCI) {
11160 // BT ignores high bits in the bit index operand.
11161 SDValue Op1 = N->getOperand(1);
11162 if (Op1.hasOneUse()) {
11163 unsigned BitWidth = Op1.getValueSizeInBits();
11164 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
11165 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011166 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
11167 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000011168 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000011169 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
11170 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
11171 DCI.CommitTargetLoweringOpt(TLO);
11172 }
11173 return SDValue();
11174}
Chris Lattner83e6c992006-10-04 06:57:07 +000011175
Eli Friedman7a5e5552009-06-07 06:52:44 +000011176static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
11177 SDValue Op = N->getOperand(0);
11178 if (Op.getOpcode() == ISD::BIT_CONVERT)
11179 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000011180 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000011181 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000011182 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000011183 OpVT.getVectorElementType().getSizeInBits()) {
11184 return DAG.getNode(ISD::BIT_CONVERT, N->getDebugLoc(), VT, Op);
11185 }
11186 return SDValue();
11187}
11188
Evan Cheng2e489c42009-12-16 00:53:11 +000011189static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
11190 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
11191 // (and (i32 x86isd::setcc_carry), 1)
11192 // This eliminates the zext. This transformation is necessary because
11193 // ISD::SETCC is always legalized to i8.
11194 DebugLoc dl = N->getDebugLoc();
11195 SDValue N0 = N->getOperand(0);
11196 EVT VT = N->getValueType(0);
11197 if (N0.getOpcode() == ISD::AND &&
11198 N0.hasOneUse() &&
11199 N0.getOperand(0).hasOneUse()) {
11200 SDValue N00 = N0.getOperand(0);
11201 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
11202 return SDValue();
11203 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
11204 if (!C || C->getZExtValue() != 1)
11205 return SDValue();
11206 return DAG.getNode(ISD::AND, dl, VT,
11207 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
11208 N00.getOperand(0), N00.getOperand(1)),
11209 DAG.getConstant(1, VT));
11210 }
11211
11212 return SDValue();
11213}
11214
Dan Gohman475871a2008-07-27 21:46:04 +000011215SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000011216 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011217 SelectionDAG &DAG = DCI.DAG;
11218 switch (N->getOpcode()) {
11219 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011220 case ISD::EXTRACT_VECTOR_ELT:
11221 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000011222 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011223 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000011224 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000011225 case ISD::SHL:
11226 case ISD::SRA:
11227 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000011228 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000011229 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000011230 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000011231 case X86ISD::FOR: return PerformFORCombine(N, DAG);
11232 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000011233 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000011234 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000011235 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011236 case X86ISD::SHUFPS: // Handle all target specific shuffles
11237 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000011238 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011239 case X86ISD::PUNPCKHBW:
11240 case X86ISD::PUNPCKHWD:
11241 case X86ISD::PUNPCKHDQ:
11242 case X86ISD::PUNPCKHQDQ:
11243 case X86ISD::UNPCKHPS:
11244 case X86ISD::UNPCKHPD:
11245 case X86ISD::PUNPCKLBW:
11246 case X86ISD::PUNPCKLWD:
11247 case X86ISD::PUNPCKLDQ:
11248 case X86ISD::PUNPCKLQDQ:
11249 case X86ISD::UNPCKLPS:
11250 case X86ISD::UNPCKLPD:
11251 case X86ISD::MOVHLPS:
11252 case X86ISD::MOVLHPS:
11253 case X86ISD::PSHUFD:
11254 case X86ISD::PSHUFHW:
11255 case X86ISD::PSHUFLW:
11256 case X86ISD::MOVSS:
11257 case X86ISD::MOVSD:
11258 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011259 }
11260
Dan Gohman475871a2008-07-27 21:46:04 +000011261 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011262}
11263
Evan Chenge5b51ac2010-04-17 06:13:15 +000011264/// isTypeDesirableForOp - Return true if the target has native support for
11265/// the specified value type and it is 'desirable' to use the type for the
11266/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
11267/// instruction encodings are longer and some i16 instructions are slow.
11268bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
11269 if (!isTypeLegal(VT))
11270 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011271 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000011272 return true;
11273
11274 switch (Opc) {
11275 default:
11276 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000011277 case ISD::LOAD:
11278 case ISD::SIGN_EXTEND:
11279 case ISD::ZERO_EXTEND:
11280 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000011281 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000011282 case ISD::SRL:
11283 case ISD::SUB:
11284 case ISD::ADD:
11285 case ISD::MUL:
11286 case ISD::AND:
11287 case ISD::OR:
11288 case ISD::XOR:
11289 return false;
11290 }
11291}
11292
11293/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000011294/// beneficial for dag combiner to promote the specified node. If true, it
11295/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000011296bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011297 EVT VT = Op.getValueType();
11298 if (VT != MVT::i16)
11299 return false;
11300
Evan Cheng4c26e932010-04-19 19:29:22 +000011301 bool Promote = false;
11302 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011303 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000011304 default: break;
11305 case ISD::LOAD: {
11306 LoadSDNode *LD = cast<LoadSDNode>(Op);
11307 // If the non-extending load has a single use and it's not live out, then it
11308 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011309 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
11310 Op.hasOneUse()*/) {
11311 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
11312 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
11313 // The only case where we'd want to promote LOAD (rather then it being
11314 // promoted as an operand is when it's only use is liveout.
11315 if (UI->getOpcode() != ISD::CopyToReg)
11316 return false;
11317 }
11318 }
Evan Cheng4c26e932010-04-19 19:29:22 +000011319 Promote = true;
11320 break;
11321 }
11322 case ISD::SIGN_EXTEND:
11323 case ISD::ZERO_EXTEND:
11324 case ISD::ANY_EXTEND:
11325 Promote = true;
11326 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011327 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011328 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000011329 SDValue N0 = Op.getOperand(0);
11330 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000011331 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000011332 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011333 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011334 break;
11335 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000011336 case ISD::ADD:
11337 case ISD::MUL:
11338 case ISD::AND:
11339 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000011340 case ISD::XOR:
11341 Commute = true;
11342 // fallthrough
11343 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011344 SDValue N0 = Op.getOperand(0);
11345 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000011346 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011347 return false;
11348 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000011349 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011350 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000011351 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011352 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011353 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011354 }
11355 }
11356
11357 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000011358 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011359}
11360
Evan Cheng60c07e12006-07-05 22:17:51 +000011361//===----------------------------------------------------------------------===//
11362// X86 Inline Assembly Support
11363//===----------------------------------------------------------------------===//
11364
Chris Lattnerb8105652009-07-20 17:51:36 +000011365static bool LowerToBSwap(CallInst *CI) {
11366 // FIXME: this should verify that we are targetting a 486 or better. If not,
11367 // we will turn this bswap into something that will be lowered to logical ops
11368 // instead of emitting the bswap asm. For now, we don't support 486 or lower
11369 // so don't worry about this.
Eric Christopherfd179292009-08-27 18:07:15 +000011370
Chris Lattnerb8105652009-07-20 17:51:36 +000011371 // Verify this is a simple bswap.
Gabor Greife1c2b9c2010-06-30 13:03:37 +000011372 if (CI->getNumArgOperands() != 1 ||
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011373 CI->getType() != CI->getArgOperand(0)->getType() ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011374 !CI->getType()->isIntegerTy())
Chris Lattnerb8105652009-07-20 17:51:36 +000011375 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011376
Chris Lattnerb8105652009-07-20 17:51:36 +000011377 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
11378 if (!Ty || Ty->getBitWidth() % 16 != 0)
11379 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011380
Chris Lattnerb8105652009-07-20 17:51:36 +000011381 // Okay, we can do this xform, do so now.
11382 const Type *Tys[] = { Ty };
11383 Module *M = CI->getParent()->getParent()->getParent();
11384 Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 1);
Eric Christopherfd179292009-08-27 18:07:15 +000011385
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011386 Value *Op = CI->getArgOperand(0);
Chris Lattnerb8105652009-07-20 17:51:36 +000011387 Op = CallInst::Create(Int, Op, CI->getName(), CI);
Eric Christopherfd179292009-08-27 18:07:15 +000011388
Chris Lattnerb8105652009-07-20 17:51:36 +000011389 CI->replaceAllUsesWith(Op);
11390 CI->eraseFromParent();
11391 return true;
11392}
11393
11394bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
11395 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
John Thompson44ab89e2010-10-29 17:29:13 +000011396 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
Chris Lattnerb8105652009-07-20 17:51:36 +000011397
11398 std::string AsmStr = IA->getAsmString();
11399
11400 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011401 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000011402 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000011403
11404 switch (AsmPieces.size()) {
11405 default: return false;
11406 case 1:
11407 AsmStr = AsmPieces[0];
11408 AsmPieces.clear();
11409 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
11410
11411 // bswap $0
11412 if (AsmPieces.size() == 2 &&
11413 (AsmPieces[0] == "bswap" ||
11414 AsmPieces[0] == "bswapq" ||
11415 AsmPieces[0] == "bswapl") &&
11416 (AsmPieces[1] == "$0" ||
11417 AsmPieces[1] == "${0:q}")) {
11418 // No need to check constraints, nothing other than the equivalent of
11419 // "=r,0" would be valid here.
11420 return LowerToBSwap(CI);
11421 }
11422 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011423 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011424 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011425 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011426 AsmPieces[1] == "$$8," &&
11427 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011428 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
11429 AsmPieces.clear();
Benjamin Kramer018cbd52010-03-12 13:54:59 +000011430 const std::string &Constraints = IA->getConstraintString();
11431 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000011432 std::sort(AsmPieces.begin(), AsmPieces.end());
11433 if (AsmPieces.size() == 4 &&
11434 AsmPieces[0] == "~{cc}" &&
11435 AsmPieces[1] == "~{dirflag}" &&
11436 AsmPieces[2] == "~{flags}" &&
11437 AsmPieces[3] == "~{fpsr}") {
11438 return LowerToBSwap(CI);
11439 }
Chris Lattnerb8105652009-07-20 17:51:36 +000011440 }
11441 break;
11442 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000011443 if (CI->getType()->isIntegerTy(32) &&
11444 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
11445 SmallVector<StringRef, 4> Words;
11446 SplitString(AsmPieces[0], Words, " \t,");
11447 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
11448 Words[2] == "${0:w}") {
11449 Words.clear();
11450 SplitString(AsmPieces[1], Words, " \t,");
11451 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
11452 Words[2] == "$0") {
11453 Words.clear();
11454 SplitString(AsmPieces[2], Words, " \t,");
11455 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
11456 Words[2] == "${0:w}") {
11457 AsmPieces.clear();
11458 const std::string &Constraints = IA->getConstraintString();
11459 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
11460 std::sort(AsmPieces.begin(), AsmPieces.end());
11461 if (AsmPieces.size() == 4 &&
11462 AsmPieces[0] == "~{cc}" &&
11463 AsmPieces[1] == "~{dirflag}" &&
11464 AsmPieces[2] == "~{flags}" &&
11465 AsmPieces[3] == "~{fpsr}") {
11466 return LowerToBSwap(CI);
11467 }
11468 }
11469 }
11470 }
11471 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011472 if (CI->getType()->isIntegerTy(64) &&
Owen Anderson1d0be152009-08-13 21:58:54 +000011473 Constraints.size() >= 2 &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011474 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
11475 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
11476 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011477 SmallVector<StringRef, 4> Words;
Chris Lattnerb8105652009-07-20 17:51:36 +000011478 SplitString(AsmPieces[0], Words, " \t");
11479 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
11480 Words.clear();
11481 SplitString(AsmPieces[1], Words, " \t");
11482 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
11483 Words.clear();
11484 SplitString(AsmPieces[2], Words, " \t,");
11485 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
11486 Words[2] == "%edx") {
11487 return LowerToBSwap(CI);
11488 }
11489 }
11490 }
11491 }
11492 break;
11493 }
11494 return false;
11495}
11496
11497
11498
Chris Lattnerf4dff842006-07-11 02:54:03 +000011499/// getConstraintType - Given a constraint letter, return the type of
11500/// constraint it is for this target.
11501X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000011502X86TargetLowering::getConstraintType(const std::string &Constraint) const {
11503 if (Constraint.size() == 1) {
11504 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000011505 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000011506 case 'q':
11507 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000011508 case 'f':
11509 case 't':
11510 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000011511 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000011512 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000011513 case 'Y':
11514 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000011515 case 'a':
11516 case 'b':
11517 case 'c':
11518 case 'd':
11519 case 'S':
11520 case 'D':
11521 case 'A':
11522 return C_Register;
11523 case 'I':
11524 case 'J':
11525 case 'K':
11526 case 'L':
11527 case 'M':
11528 case 'N':
11529 case 'G':
11530 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000011531 case 'e':
11532 case 'Z':
11533 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000011534 default:
11535 break;
11536 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000011537 }
Chris Lattner4234f572007-03-25 02:14:49 +000011538 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000011539}
11540
John Thompson44ab89e2010-10-29 17:29:13 +000011541/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000011542/// This object must already have been set up with the operand type
11543/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000011544TargetLowering::ConstraintWeight
11545 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000011546 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000011547 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011548 Value *CallOperandVal = info.CallOperandVal;
11549 // If we don't have a value, we can't do a match,
11550 // but allow it at the lowest weight.
11551 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000011552 return CW_Default;
11553 const Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000011554 // Look at the constraint type.
11555 switch (*constraint) {
11556 default:
John Thompson44ab89e2010-10-29 17:29:13 +000011557 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
11558 case 'R':
11559 case 'q':
11560 case 'Q':
11561 case 'a':
11562 case 'b':
11563 case 'c':
11564 case 'd':
11565 case 'S':
11566 case 'D':
11567 case 'A':
11568 if (CallOperandVal->getType()->isIntegerTy())
11569 weight = CW_SpecificReg;
11570 break;
11571 case 'f':
11572 case 't':
11573 case 'u':
11574 if (type->isFloatingPointTy())
11575 weight = CW_SpecificReg;
11576 break;
11577 case 'y':
11578 if (type->isX86_MMXTy() && !DisableMMX && Subtarget->hasMMX())
11579 weight = CW_SpecificReg;
11580 break;
11581 case 'x':
11582 case 'Y':
11583 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1())
11584 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011585 break;
11586 case 'I':
11587 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
11588 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000011589 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011590 }
11591 break;
John Thompson44ab89e2010-10-29 17:29:13 +000011592 case 'J':
11593 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11594 if (C->getZExtValue() <= 63)
11595 weight = CW_Constant;
11596 }
11597 break;
11598 case 'K':
11599 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11600 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
11601 weight = CW_Constant;
11602 }
11603 break;
11604 case 'L':
11605 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11606 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
11607 weight = CW_Constant;
11608 }
11609 break;
11610 case 'M':
11611 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11612 if (C->getZExtValue() <= 3)
11613 weight = CW_Constant;
11614 }
11615 break;
11616 case 'N':
11617 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11618 if (C->getZExtValue() <= 0xff)
11619 weight = CW_Constant;
11620 }
11621 break;
11622 case 'G':
11623 case 'C':
11624 if (dyn_cast<ConstantFP>(CallOperandVal)) {
11625 weight = CW_Constant;
11626 }
11627 break;
11628 case 'e':
11629 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11630 if ((C->getSExtValue() >= -0x80000000LL) &&
11631 (C->getSExtValue() <= 0x7fffffffLL))
11632 weight = CW_Constant;
11633 }
11634 break;
11635 case 'Z':
11636 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11637 if (C->getZExtValue() <= 0xffffffff)
11638 weight = CW_Constant;
11639 }
11640 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011641 }
11642 return weight;
11643}
11644
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011645/// LowerXConstraint - try to replace an X constraint, which matches anything,
11646/// with another that has more specific requirements based on the type of the
11647/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000011648const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000011649LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000011650 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
11651 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000011652 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011653 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +000011654 return "Y";
11655 if (Subtarget->hasSSE1())
11656 return "x";
11657 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011658
Chris Lattner5e764232008-04-26 23:02:14 +000011659 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011660}
11661
Chris Lattner48884cd2007-08-25 00:47:38 +000011662/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
11663/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000011664void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattner48884cd2007-08-25 00:47:38 +000011665 char Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000011666 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000011667 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000011668 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000011669
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011670 switch (Constraint) {
11671 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000011672 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000011673 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011674 if (C->getZExtValue() <= 31) {
11675 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011676 break;
11677 }
Devang Patel84f7fd22007-03-17 00:13:28 +000011678 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011679 return;
Evan Cheng364091e2008-09-22 23:57:37 +000011680 case 'J':
11681 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011682 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000011683 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11684 break;
11685 }
11686 }
11687 return;
11688 case 'K':
11689 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011690 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000011691 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11692 break;
11693 }
11694 }
11695 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000011696 case 'N':
11697 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011698 if (C->getZExtValue() <= 255) {
11699 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011700 break;
11701 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000011702 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011703 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000011704 case 'e': {
11705 // 32-bit signed value
11706 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000011707 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
11708 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011709 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000011710 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000011711 break;
11712 }
11713 // FIXME gcc accepts some relocatable values here too, but only in certain
11714 // memory models; it's complicated.
11715 }
11716 return;
11717 }
11718 case 'Z': {
11719 // 32-bit unsigned value
11720 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000011721 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
11722 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011723 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11724 break;
11725 }
11726 }
11727 // FIXME gcc accepts some relocatable values here too, but only in certain
11728 // memory models; it's complicated.
11729 return;
11730 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011731 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011732 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000011733 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011734 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000011735 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000011736 break;
11737 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011738
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000011739 // In any sort of PIC mode addresses need to be computed at runtime by
11740 // adding in a register or some sort of table lookup. These can't
11741 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000011742 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000011743 return;
11744
Chris Lattnerdc43a882007-05-03 16:52:29 +000011745 // If we are in non-pic codegen mode, we allow the address of a global (with
11746 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000011747 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000011748 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000011749
Chris Lattner49921962009-05-08 18:23:14 +000011750 // Match either (GA), (GA+C), (GA+C1+C2), etc.
11751 while (1) {
11752 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
11753 Offset += GA->getOffset();
11754 break;
11755 } else if (Op.getOpcode() == ISD::ADD) {
11756 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
11757 Offset += C->getZExtValue();
11758 Op = Op.getOperand(0);
11759 continue;
11760 }
11761 } else if (Op.getOpcode() == ISD::SUB) {
11762 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
11763 Offset += -C->getZExtValue();
11764 Op = Op.getOperand(0);
11765 continue;
11766 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011767 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011768
Chris Lattner49921962009-05-08 18:23:14 +000011769 // Otherwise, this isn't something we can handle, reject it.
11770 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000011771 }
Eric Christopherfd179292009-08-27 18:07:15 +000011772
Dan Gohman46510a72010-04-15 01:51:59 +000011773 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011774 // If we require an extra load to get this address, as in PIC mode, we
11775 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000011776 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
11777 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011778 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000011779
Devang Patel0d881da2010-07-06 22:08:15 +000011780 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
11781 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000011782 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011783 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011784 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011785
Gabor Greifba36cb52008-08-28 21:40:38 +000011786 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000011787 Ops.push_back(Result);
11788 return;
11789 }
Dale Johannesen1784d162010-06-25 21:55:36 +000011790 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011791}
11792
Chris Lattner259e97c2006-01-31 19:43:35 +000011793std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +000011794getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000011795 EVT VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +000011796 if (Constraint.size() == 1) {
11797 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +000011798 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +000011799 default: break; // Unknown constraint letter
Evan Cheng47e9fab2009-07-17 22:13:25 +000011800 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
11801 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011802 if (VT == MVT::i32)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011803 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX,
11804 X86::ESI, X86::EDI, X86::R8D, X86::R9D,
11805 X86::R10D,X86::R11D,X86::R12D,
11806 X86::R13D,X86::R14D,X86::R15D,
11807 X86::EBP, X86::ESP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011808 else if (VT == MVT::i16)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011809 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX,
11810 X86::SI, X86::DI, X86::R8W,X86::R9W,
11811 X86::R10W,X86::R11W,X86::R12W,
11812 X86::R13W,X86::R14W,X86::R15W,
11813 X86::BP, X86::SP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011814 else if (VT == MVT::i8)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011815 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL,
11816 X86::SIL, X86::DIL, X86::R8B,X86::R9B,
11817 X86::R10B,X86::R11B,X86::R12B,
11818 X86::R13B,X86::R14B,X86::R15B,
11819 X86::BPL, X86::SPL, 0);
11820
Owen Anderson825b72b2009-08-11 20:47:22 +000011821 else if (VT == MVT::i64)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011822 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX,
11823 X86::RSI, X86::RDI, X86::R8, X86::R9,
11824 X86::R10, X86::R11, X86::R12,
11825 X86::R13, X86::R14, X86::R15,
11826 X86::RBP, X86::RSP, 0);
11827
11828 break;
11829 }
Eric Christopherfd179292009-08-27 18:07:15 +000011830 // 32-bit fallthrough
Chris Lattner259e97c2006-01-31 19:43:35 +000011831 case 'Q': // Q_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000011832 if (VT == MVT::i32)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000011833 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011834 else if (VT == MVT::i16)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000011835 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011836 else if (VT == MVT::i8)
Evan Cheng12914382007-08-13 23:27:11 +000011837 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011838 else if (VT == MVT::i64)
Chris Lattner03e6c702007-11-04 06:51:12 +000011839 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
11840 break;
Chris Lattner259e97c2006-01-31 19:43:35 +000011841 }
11842 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011843
Chris Lattner1efa40f2006-02-22 00:56:39 +000011844 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +000011845}
Chris Lattnerf76d1802006-07-31 23:26:50 +000011846
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011847std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000011848X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000011849 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000011850 // First, see if this is a constraint that directly corresponds to an LLVM
11851 // register class.
11852 if (Constraint.size() == 1) {
11853 // GCC Constraint Letters
11854 switch (Constraint[0]) {
11855 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000011856 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000011857 case 'l': // INDEX_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000011858 if (VT == MVT::i8)
Chris Lattner0f65cad2007-04-09 05:49:22 +000011859 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011860 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000011861 return std::make_pair(0U, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011862 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000011863 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000011864 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000011865 case 'R': // LEGACY_REGS
11866 if (VT == MVT::i8)
11867 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
11868 if (VT == MVT::i16)
11869 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
11870 if (VT == MVT::i32 || !Subtarget->is64Bit())
11871 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
11872 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011873 case 'f': // FP Stack registers.
11874 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
11875 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000011876 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011877 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011878 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011879 return std::make_pair(0U, X86::RFP64RegisterClass);
11880 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000011881 case 'y': // MMX_REGS if MMX allowed.
11882 if (!Subtarget->hasMMX()) break;
11883 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000011884 case 'Y': // SSE_REGS if SSE2 allowed
11885 if (!Subtarget->hasSSE2()) break;
11886 // FALL THROUGH.
11887 case 'x': // SSE_REGS if SSE1 allowed
11888 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000011889
Owen Anderson825b72b2009-08-11 20:47:22 +000011890 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000011891 default: break;
11892 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000011893 case MVT::f32:
11894 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000011895 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011896 case MVT::f64:
11897 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000011898 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000011899 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000011900 case MVT::v16i8:
11901 case MVT::v8i16:
11902 case MVT::v4i32:
11903 case MVT::v2i64:
11904 case MVT::v4f32:
11905 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000011906 return std::make_pair(0U, X86::VR128RegisterClass);
11907 }
Chris Lattnerad043e82007-04-09 05:11:28 +000011908 break;
11909 }
11910 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011911
Chris Lattnerf76d1802006-07-31 23:26:50 +000011912 // Use the default implementation in TargetLowering to convert the register
11913 // constraint into a member of a register class.
11914 std::pair<unsigned, const TargetRegisterClass*> Res;
11915 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000011916
11917 // Not found as a standard register?
11918 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000011919 // Map st(0) -> st(7) -> ST0
11920 if (Constraint.size() == 7 && Constraint[0] == '{' &&
11921 tolower(Constraint[1]) == 's' &&
11922 tolower(Constraint[2]) == 't' &&
11923 Constraint[3] == '(' &&
11924 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
11925 Constraint[5] == ')' &&
11926 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000011927
Chris Lattner56d77c72009-09-13 22:41:48 +000011928 Res.first = X86::ST0+Constraint[4]-'0';
11929 Res.second = X86::RFP80RegisterClass;
11930 return Res;
11931 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000011932
Chris Lattner56d77c72009-09-13 22:41:48 +000011933 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000011934 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000011935 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000011936 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000011937 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000011938 }
Chris Lattner56d77c72009-09-13 22:41:48 +000011939
11940 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000011941 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000011942 Res.first = X86::EFLAGS;
11943 Res.second = X86::CCRRegisterClass;
11944 return Res;
11945 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000011946
Dale Johannesen330169f2008-11-13 21:52:36 +000011947 // 'A' means EAX + EDX.
11948 if (Constraint == "A") {
11949 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000011950 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000011951 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000011952 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000011953 return Res;
11954 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011955
Chris Lattnerf76d1802006-07-31 23:26:50 +000011956 // Otherwise, check to see if this is a register class of the wrong value
11957 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
11958 // turn into {ax},{dx}.
11959 if (Res.second->hasType(VT))
11960 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011961
Chris Lattnerf76d1802006-07-31 23:26:50 +000011962 // All of the single-register GCC register classes map their values onto
11963 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
11964 // really want an 8-bit or 32-bit register, map to the appropriate register
11965 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000011966 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011967 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000011968 unsigned DestReg = 0;
11969 switch (Res.first) {
11970 default: break;
11971 case X86::AX: DestReg = X86::AL; break;
11972 case X86::DX: DestReg = X86::DL; break;
11973 case X86::CX: DestReg = X86::CL; break;
11974 case X86::BX: DestReg = X86::BL; break;
11975 }
11976 if (DestReg) {
11977 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000011978 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000011979 }
Owen Anderson825b72b2009-08-11 20:47:22 +000011980 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000011981 unsigned DestReg = 0;
11982 switch (Res.first) {
11983 default: break;
11984 case X86::AX: DestReg = X86::EAX; break;
11985 case X86::DX: DestReg = X86::EDX; break;
11986 case X86::CX: DestReg = X86::ECX; break;
11987 case X86::BX: DestReg = X86::EBX; break;
11988 case X86::SI: DestReg = X86::ESI; break;
11989 case X86::DI: DestReg = X86::EDI; break;
11990 case X86::BP: DestReg = X86::EBP; break;
11991 case X86::SP: DestReg = X86::ESP; break;
11992 }
11993 if (DestReg) {
11994 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000011995 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000011996 }
Owen Anderson825b72b2009-08-11 20:47:22 +000011997 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000011998 unsigned DestReg = 0;
11999 switch (Res.first) {
12000 default: break;
12001 case X86::AX: DestReg = X86::RAX; break;
12002 case X86::DX: DestReg = X86::RDX; break;
12003 case X86::CX: DestReg = X86::RCX; break;
12004 case X86::BX: DestReg = X86::RBX; break;
12005 case X86::SI: DestReg = X86::RSI; break;
12006 case X86::DI: DestReg = X86::RDI; break;
12007 case X86::BP: DestReg = X86::RBP; break;
12008 case X86::SP: DestReg = X86::RSP; break;
12009 }
12010 if (DestReg) {
12011 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012012 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012013 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000012014 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000012015 } else if (Res.second == X86::FR32RegisterClass ||
12016 Res.second == X86::FR64RegisterClass ||
12017 Res.second == X86::VR128RegisterClass) {
12018 // Handle references to XMM physical registers that got mapped into the
12019 // wrong class. This can happen with constraints like {xmm0} where the
12020 // target independent register mapper will just pick the first match it can
12021 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000012022 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012023 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000012024 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012025 Res.second = X86::FR64RegisterClass;
12026 else if (X86::VR128RegisterClass->hasType(VT))
12027 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000012028 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012029
Chris Lattnerf76d1802006-07-31 23:26:50 +000012030 return Res;
12031}