blob: f3c1b8537304fe237e1572c60e0b95a6ee47395b [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) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000229 setOperationAction(ISD::BITCAST , MVT::f32 , Expand);
230 setOperationAction(ISD::BITCAST , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000231 if (Subtarget->is64Bit()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000232 setOperationAction(ISD::BITCAST , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000233 // Without SSE, i64->f64 goes through memory.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000234 setOperationAction(ISD::BITCAST , 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);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000657 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
658 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
659 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
660 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000661
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 {
Anton Korobeynikovd0c38172010-11-18 21:19:35 +00001175 const TargetFrameInfo *TFI = MF.getTarget().getFrameInfo();
1176
1177 unsigned FPDiff = TFI->hasFP(MF) ? 1 : 0;
Evan Cheng70017e42010-07-24 00:39:05 +00001178 switch (RC->getID()) {
1179 default:
1180 return 0;
1181 case X86::GR32RegClassID:
1182 return 4 - FPDiff;
1183 case X86::GR64RegClassID:
1184 return 8 - FPDiff;
1185 case X86::VR128RegClassID:
1186 return Subtarget->is64Bit() ? 10 : 4;
1187 case X86::VR64RegClassID:
1188 return 4;
1189 }
1190}
1191
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001192bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1193 unsigned &Offset) const {
1194 if (!Subtarget->isTargetLinux())
1195 return false;
1196
1197 if (Subtarget->is64Bit()) {
1198 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1199 Offset = 0x28;
1200 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1201 AddressSpace = 256;
1202 else
1203 AddressSpace = 257;
1204 } else {
1205 // %gs:0x14 on i386
1206 Offset = 0x14;
1207 AddressSpace = 256;
1208 }
1209 return true;
1210}
1211
1212
Chris Lattner2b02a442007-02-25 08:29:00 +00001213//===----------------------------------------------------------------------===//
1214// Return Value Calling Convention Implementation
1215//===----------------------------------------------------------------------===//
1216
Chris Lattner59ed56b2007-02-28 04:55:35 +00001217#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001218
Michael J. Spencerec38de22010-10-10 22:04:20 +00001219bool
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001220X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001221 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001222 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001223 SmallVector<CCValAssign, 16> RVLocs;
1224 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001225 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001226 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001227}
1228
Dan Gohman98ca4f22009-08-05 01:29:28 +00001229SDValue
1230X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001231 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001232 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001233 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001234 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001235 MachineFunction &MF = DAG.getMachineFunction();
1236 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001237
Chris Lattner9774c912007-02-27 05:28:59 +00001238 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001239 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1240 RVLocs, *DAG.getContext());
1241 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001242
Evan Chengdcea1632010-02-04 02:40:39 +00001243 // Add the regs to the liveout set for the function.
1244 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1245 for (unsigned i = 0; i != RVLocs.size(); ++i)
1246 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1247 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001248
Dan Gohman475871a2008-07-27 21:46:04 +00001249 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001250
Dan Gohman475871a2008-07-27 21:46:04 +00001251 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001252 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1253 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001254 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1255 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001256
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001257 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001258 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1259 CCValAssign &VA = RVLocs[i];
1260 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001261 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001262 EVT ValVT = ValToCopy.getValueType();
1263
Dale Johannesenc4510512010-09-24 19:05:48 +00001264 // If this is x86-64, and we disabled SSE, we can't return FP values,
1265 // or SSE or MMX vectors.
1266 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1267 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1268 (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001269 report_fatal_error("SSE register return with SSE disabled");
1270 }
1271 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1272 // llvm-gcc has never done it right and no one has noticed, so this
1273 // should be OK for now.
1274 if (ValVT == MVT::f64 &&
Chris Lattner83069682010-08-26 05:51:22 +00001275 (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001276 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001277
Chris Lattner447ff682008-03-11 03:23:40 +00001278 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1279 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001280 if (VA.getLocReg() == X86::ST0 ||
1281 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001282 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1283 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001284 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001285 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001286 RetOps.push_back(ValToCopy);
1287 // Don't emit a copytoreg.
1288 continue;
1289 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001290
Evan Cheng242b38b2009-02-23 09:03:22 +00001291 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1292 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001293 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001294 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001295 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001296 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001297 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1298 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001299 // If we don't have SSE2 available, convert to v4f32 so the generated
1300 // register is legal.
1301 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001302 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001303 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001304 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001305 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001306
Dale Johannesendd64c412009-02-04 00:33:20 +00001307 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001308 Flag = Chain.getValue(1);
1309 }
Dan Gohman61a92132008-04-21 23:59:07 +00001310
1311 // The x86-64 ABI for returning structs by value requires that we copy
1312 // the sret argument into %rax for the return. We saved the argument into
1313 // a virtual register in the entry block, so now we copy the value out
1314 // and into %rax.
1315 if (Subtarget->is64Bit() &&
1316 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1317 MachineFunction &MF = DAG.getMachineFunction();
1318 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1319 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001320 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001321 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001322 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001323
Dale Johannesendd64c412009-02-04 00:33:20 +00001324 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001325 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001326
1327 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001328 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001329 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001330
Chris Lattner447ff682008-03-11 03:23:40 +00001331 RetOps[0] = Chain; // Update chain.
1332
1333 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001334 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001335 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001336
1337 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001338 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001339}
1340
Evan Cheng3d2125c2010-11-30 23:55:39 +00001341bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1342 if (N->getNumValues() != 1)
1343 return false;
1344 if (!N->hasNUsesOfValue(1, 0))
1345 return false;
1346
1347 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001348 if (Copy->getOpcode() != ISD::CopyToReg &&
1349 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001350 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001351
1352 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001353 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001354 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001355 if (UI->getOpcode() != X86ISD::RET_FLAG)
1356 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001357 HasRet = true;
1358 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001359
Evan Cheng1bf891a2010-12-01 22:59:46 +00001360 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001361}
1362
Dan Gohman98ca4f22009-08-05 01:29:28 +00001363/// LowerCallResult - Lower the result values of a call into the
1364/// appropriate copies out of appropriate physical registers.
1365///
1366SDValue
1367X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001368 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001369 const SmallVectorImpl<ISD::InputArg> &Ins,
1370 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001371 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001372
Chris Lattnere32bbf62007-02-28 07:09:55 +00001373 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001374 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001375 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001376 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +00001377 RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001378 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001379
Chris Lattner3085e152007-02-25 08:59:22 +00001380 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001381 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001382 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001383 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001384
Torok Edwin3f142c32009-02-01 18:15:56 +00001385 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001386 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Dan Gohman98ca4f22009-08-05 01:29:28 +00001387 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001388 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001389 }
1390
Evan Cheng79fb3b42009-02-20 20:43:02 +00001391 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001392
1393 // If this is a call to a function that returns an fp value on the floating
1394 // point stack, we must guarantee the the value is popped from the stack, so
1395 // a CopyFromReg is not good enough - the copy instruction may be eliminated
1396 // if the return value is not used. We use the FpGET_ST0 instructions
1397 // instead.
1398 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1399 // If we prefer to use the value in xmm registers, copy it out as f80 and
1400 // use a truncate to move it from fp stack reg to xmm reg.
1401 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1402 bool isST0 = VA.getLocReg() == X86::ST0;
1403 unsigned Opc = 0;
1404 if (CopyVT == MVT::f32) Opc = isST0 ? X86::FpGET_ST0_32:X86::FpGET_ST1_32;
1405 if (CopyVT == MVT::f64) Opc = isST0 ? X86::FpGET_ST0_64:X86::FpGET_ST1_64;
1406 if (CopyVT == MVT::f80) Opc = isST0 ? X86::FpGET_ST0_80:X86::FpGET_ST1_80;
1407 SDValue Ops[] = { Chain, InFlag };
1408 Chain = SDValue(DAG.getMachineNode(Opc, dl, CopyVT, MVT::Other, MVT::Flag,
1409 Ops, 2), 1);
1410 Val = Chain.getValue(0);
1411
1412 // Round the f80 to the right size, which also moves it to the appropriate
1413 // xmm register.
1414 if (CopyVT != VA.getValVT())
1415 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1416 // This truncation won't change the value.
1417 DAG.getIntPtrConstant(1));
1418 } else if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Cheng242b38b2009-02-23 09:03:22 +00001419 // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1420 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1421 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001422 MVT::v2i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001423 Val = Chain.getValue(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001424 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1425 Val, DAG.getConstant(0, MVT::i64));
Evan Cheng242b38b2009-02-23 09:03:22 +00001426 } else {
1427 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001428 MVT::i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001429 Val = Chain.getValue(0);
1430 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001431 Val = DAG.getNode(ISD::BITCAST, dl, CopyVT, Val);
Evan Cheng79fb3b42009-02-20 20:43:02 +00001432 } else {
1433 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1434 CopyVT, InFlag).getValue(1);
1435 Val = Chain.getValue(0);
1436 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001437 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001438 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001439 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001440
Dan Gohman98ca4f22009-08-05 01:29:28 +00001441 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001442}
1443
1444
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001445//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001446// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001447//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001448// StdCall calling convention seems to be standard for many Windows' API
1449// routines and around. It differs from C calling convention just a little:
1450// callee should clean up the stack, not caller. Symbols should be also
1451// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001452// For info on fast calling convention see Fast Calling Convention (tail call)
1453// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001454
Dan Gohman98ca4f22009-08-05 01:29:28 +00001455/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001456/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001457static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1458 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001459 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001460
Dan Gohman98ca4f22009-08-05 01:29:28 +00001461 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001462}
1463
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001464/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001465/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001466static bool
1467ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1468 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001469 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001470
Dan Gohman98ca4f22009-08-05 01:29:28 +00001471 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001472}
1473
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001474/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1475/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001476/// the specific parameter attribute. The copy will be passed as a byval
1477/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001478static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001479CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001480 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1481 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001482 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001483
Dale Johannesendd64c412009-02-04 00:33:20 +00001484 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Mon P Wang20adc9d2010-04-04 03:10:48 +00001485 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001486 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001487}
1488
Chris Lattner29689432010-03-11 00:22:57 +00001489/// IsTailCallConvention - Return true if the calling convention is one that
1490/// supports tail call optimization.
1491static bool IsTailCallConvention(CallingConv::ID CC) {
1492 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1493}
1494
Evan Cheng0c439eb2010-01-27 00:07:07 +00001495/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1496/// a tailcall target by changing its ABI.
1497static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001498 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001499}
1500
Dan Gohman98ca4f22009-08-05 01:29:28 +00001501SDValue
1502X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001503 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001504 const SmallVectorImpl<ISD::InputArg> &Ins,
1505 DebugLoc dl, SelectionDAG &DAG,
1506 const CCValAssign &VA,
1507 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001508 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001509 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001510 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001511 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001512 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001513 EVT ValVT;
1514
1515 // If value is passed by pointer we have address passed instead of the value
1516 // itself.
1517 if (VA.getLocInfo() == CCValAssign::Indirect)
1518 ValVT = VA.getLocVT();
1519 else
1520 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001521
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001522 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001523 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001524 // In case of tail call optimization mark all arguments mutable. Since they
1525 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001526 if (Flags.isByVal()) {
1527 int FI = MFI->CreateFixedObject(Flags.getByValSize(),
Evan Chenged2ae132010-07-03 00:40:23 +00001528 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001529 return DAG.getFrameIndex(FI, getPointerTy());
1530 } else {
1531 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001532 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001533 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1534 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001535 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001536 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001537 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001538}
1539
Dan Gohman475871a2008-07-27 21:46:04 +00001540SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001541X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001542 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001543 bool isVarArg,
1544 const SmallVectorImpl<ISD::InputArg> &Ins,
1545 DebugLoc dl,
1546 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001547 SmallVectorImpl<SDValue> &InVals)
1548 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001549 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001550 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001551
Gordon Henriksen86737662008-01-05 16:56:59 +00001552 const Function* Fn = MF.getFunction();
1553 if (Fn->hasExternalLinkage() &&
1554 Subtarget->isTargetCygMing() &&
1555 Fn->getName() == "main")
1556 FuncInfo->setForceFramePointer(true);
1557
Evan Cheng1bc78042006-04-26 01:20:17 +00001558 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001559 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001560 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001561
Chris Lattner29689432010-03-11 00:22:57 +00001562 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1563 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001564
Chris Lattner638402b2007-02-28 07:00:42 +00001565 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001566 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001567 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1568 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00001569 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001570
Chris Lattnerf39f7712007-02-28 05:46:49 +00001571 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001572 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001573 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1574 CCValAssign &VA = ArgLocs[i];
1575 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1576 // places.
1577 assert(VA.getValNo() != LastVal &&
1578 "Don't support value assigned to multiple locs yet");
1579 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001580
Chris Lattnerf39f7712007-02-28 05:46:49 +00001581 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001582 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001583 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001584 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001585 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001586 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001587 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001588 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001589 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001590 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001591 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001592 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1593 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001594 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001595 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001596 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001597 RC = X86::VR64RegisterClass;
1598 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001599 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001600
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001601 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001602 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001603
Chris Lattnerf39f7712007-02-28 05:46:49 +00001604 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1605 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1606 // right size.
1607 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001608 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001609 DAG.getValueType(VA.getValVT()));
1610 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001611 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001612 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001613 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001614 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001615
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001616 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001617 // Handle MMX values passed in XMM regs.
1618 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001619 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1620 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001621 } else
1622 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001623 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001624 } else {
1625 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001626 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001627 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001628
1629 // If value is passed via pointer - do a load.
1630 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001631 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1632 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001633
Dan Gohman98ca4f22009-08-05 01:29:28 +00001634 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001635 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001636
Dan Gohman61a92132008-04-21 23:59:07 +00001637 // The x86-64 ABI for returning structs by value requires that we copy
1638 // the sret argument into %rax for the return. Save the argument into
1639 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001640 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001641 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1642 unsigned Reg = FuncInfo->getSRetReturnReg();
1643 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001644 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001645 FuncInfo->setSRetReturnReg(Reg);
1646 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001647 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001648 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001649 }
1650
Chris Lattnerf39f7712007-02-28 05:46:49 +00001651 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001652 // Align stack specially for tail calls.
1653 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001654 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001655
Evan Cheng1bc78042006-04-26 01:20:17 +00001656 // If the function takes variable number of arguments, make a frame index for
1657 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001658 if (isVarArg) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001659 if (!IsWin64 && (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1660 CallConv != CallingConv::X86_ThisCall))) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001661 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001662 }
1663 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001664 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1665
1666 // FIXME: We should really autogenerate these arrays
1667 static const unsigned GPR64ArgRegsWin64[] = {
1668 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001669 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001670 static const unsigned GPR64ArgRegs64Bit[] = {
1671 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1672 };
1673 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001674 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1675 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1676 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001677 const unsigned *GPR64ArgRegs;
1678 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001679
1680 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001681 // The XMM registers which might contain var arg parameters are shadowed
1682 // in their paired GPR. So we only need to save the GPR to their home
1683 // slots.
1684 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001685 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001686 } else {
1687 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1688 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001689
1690 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001691 }
1692 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1693 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001694
Devang Patel578efa92009-06-05 21:57:13 +00001695 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Evan Chengc7ce29b2009-02-13 22:36:38 +00001696 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001697 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001698 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001699 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001700 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00001701 // Kernel mode asks for SSE to be disabled, so don't push them
1702 // on the stack.
1703 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001704
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001705 if (IsWin64) {
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001706 const TargetFrameInfo &TFI = *getTargetMachine().getFrameInfo();
1707 // Get to the caller-allocated home save location. Add 8 to account
1708 // for the return address.
1709 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001710 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001711 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001712 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
1713 } else {
1714 // For X86-64, if there are vararg parameters that are passed via
1715 // registers, then we must store them to their spots on the stack so they
1716 // may be loaded by deferencing the result of va_next.
1717 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1718 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1719 FuncInfo->setRegSaveFrameIndex(
1720 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001721 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001722 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001723
Gordon Henriksen86737662008-01-05 16:56:59 +00001724 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001725 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001726 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1727 getPointerTy());
1728 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001729 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001730 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1731 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001732 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
1733 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001734 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001735 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001736 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001737 MachinePointerInfo::getFixedStack(
1738 FuncInfo->getRegSaveFrameIndex(), Offset),
1739 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001740 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001741 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001742 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001743
Dan Gohmanface41a2009-08-16 21:24:25 +00001744 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1745 // Now store the XMM (fp + vector) parameter registers.
1746 SmallVector<SDValue, 11> SaveXMMOps;
1747 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001748
Dan Gohmanface41a2009-08-16 21:24:25 +00001749 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
1750 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1751 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001752
Dan Gohman1e93df62010-04-17 14:41:14 +00001753 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1754 FuncInfo->getRegSaveFrameIndex()));
1755 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1756 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001757
Dan Gohmanface41a2009-08-16 21:24:25 +00001758 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001759 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Dan Gohmanface41a2009-08-16 21:24:25 +00001760 X86::VR128RegisterClass);
1761 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1762 SaveXMMOps.push_back(Val);
1763 }
1764 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1765 MVT::Other,
1766 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001767 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001768
1769 if (!MemOps.empty())
1770 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1771 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001772 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001773 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001774
Gordon Henriksen86737662008-01-05 16:56:59 +00001775 // Some CCs need callee pop.
Dan Gohman4d3d6e12010-05-27 18:43:40 +00001776 if (Subtarget->IsCalleePop(isVarArg, CallConv)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001777 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001778 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001779 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001780 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001781 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001782 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001783 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001784
Gordon Henriksen86737662008-01-05 16:56:59 +00001785 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001786 // RegSaveFrameIndex is X86-64 only.
1787 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001788 if (CallConv == CallingConv::X86_FastCall ||
1789 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001790 // fastcc functions can't have varargs.
1791 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001792 }
Evan Cheng25caf632006-05-23 21:06:34 +00001793
Dan Gohman98ca4f22009-08-05 01:29:28 +00001794 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001795}
1796
Dan Gohman475871a2008-07-27 21:46:04 +00001797SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001798X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1799 SDValue StackPtr, SDValue Arg,
1800 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001801 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001802 ISD::ArgFlagsTy Flags) const {
Anton Korobeynikovc7c62bb2010-09-02 22:31:32 +00001803 const unsigned FirstStackArgOffset = (Subtarget->isTargetWin64() ? 32 : 0);
1804 unsigned LocMemOffset = FirstStackArgOffset + VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001805 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001806 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001807 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001808 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001809
1810 return DAG.getStore(Chain, dl, Arg, PtrOff,
1811 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001812 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001813}
1814
Bill Wendling64e87322009-01-16 19:25:27 +00001815/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001816/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001817SDValue
1818X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001819 SDValue &OutRetAddr, SDValue Chain,
1820 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001821 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001822 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001823 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001824 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001825
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001826 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001827 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1828 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001829 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001830}
1831
1832/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1833/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001834static SDValue
1835EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001836 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001837 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001838 // Store the return address to the appropriate stack slot.
1839 if (!FPDiff) return Chain;
1840 // Calculate the new stack slot for the return address.
1841 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001842 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001843 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001844 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001845 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001846 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001847 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001848 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001849 return Chain;
1850}
1851
Dan Gohman98ca4f22009-08-05 01:29:28 +00001852SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001853X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001854 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001855 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001856 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001857 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001858 const SmallVectorImpl<ISD::InputArg> &Ins,
1859 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001860 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001861 MachineFunction &MF = DAG.getMachineFunction();
1862 bool Is64Bit = Subtarget->is64Bit();
1863 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001864 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001865
Evan Cheng5f941932010-02-05 02:21:12 +00001866 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001867 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001868 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1869 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001870 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001871
1872 // Sibcalls are automatically detected tailcalls which do not require
1873 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001874 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001875 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001876
1877 if (isTailCall)
1878 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001879 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001880
Chris Lattner29689432010-03-11 00:22:57 +00001881 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1882 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001883
Chris Lattner638402b2007-02-28 07:00:42 +00001884 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001885 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001886 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1887 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00001888 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001889
Chris Lattner423c5f42007-02-28 05:31:48 +00001890 // Get a count of how many bytes are to be pushed on the stack.
1891 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00001892 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00001893 // This is a sibcall. The memory operands are available in caller's
1894 // own caller's stack.
1895 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00001896 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00001897 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001898
Gordon Henriksen86737662008-01-05 16:56:59 +00001899 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00001900 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001901 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00001902 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00001903 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1904 FPDiff = NumBytesCallerPushed - NumBytes;
1905
1906 // Set the delta of movement of the returnaddr stackslot.
1907 // But only set if delta is greater than previous delta.
1908 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1909 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1910 }
1911
Evan Chengf22f9b32010-02-06 03:28:46 +00001912 if (!IsSibcall)
1913 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001914
Dan Gohman475871a2008-07-27 21:46:04 +00001915 SDValue RetAddrFrIdx;
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001916 // Load return adress for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00001917 if (isTailCall && FPDiff)
1918 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
1919 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00001920
Dan Gohman475871a2008-07-27 21:46:04 +00001921 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1922 SmallVector<SDValue, 8> MemOpChains;
1923 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00001924
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001925 // Walk the register/memloc assignments, inserting copies/loads. In the case
1926 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00001927 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1928 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001929 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00001930 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00001931 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00001932 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00001933
Chris Lattner423c5f42007-02-28 05:31:48 +00001934 // Promote the value if needed.
1935 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001936 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00001937 case CCValAssign::Full: break;
1938 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001939 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001940 break;
1941 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001942 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001943 break;
1944 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001945 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
1946 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001947 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00001948 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1949 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001950 } else
1951 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
1952 break;
1953 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001954 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001955 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001956 case CCValAssign::Indirect: {
1957 // Store the argument.
1958 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00001959 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001960 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00001961 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001962 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001963 Arg = SpillSlot;
1964 break;
1965 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00001966 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001967
Chris Lattner423c5f42007-02-28 05:31:48 +00001968 if (VA.isRegLoc()) {
1969 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00001970 if (isVarArg && Subtarget->isTargetWin64()) {
1971 // Win64 ABI requires argument XMM reg to be copied to the corresponding
1972 // shadow reg if callee is a varargs function.
1973 unsigned ShadowReg = 0;
1974 switch (VA.getLocReg()) {
1975 case X86::XMM0: ShadowReg = X86::RCX; break;
1976 case X86::XMM1: ShadowReg = X86::RDX; break;
1977 case X86::XMM2: ShadowReg = X86::R8; break;
1978 case X86::XMM3: ShadowReg = X86::R9; break;
1979 }
1980 if (ShadowReg)
1981 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
1982 }
Evan Chengf22f9b32010-02-06 03:28:46 +00001983 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00001984 assert(VA.isMemLoc());
1985 if (StackPtr.getNode() == 0)
1986 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
1987 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1988 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001989 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001990 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001991
Evan Cheng32fe1032006-05-25 00:59:30 +00001992 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00001993 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001994 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001995
Evan Cheng347d5f72006-04-28 21:29:37 +00001996 // Build a sequence of copy-to-reg nodes chained together with token chain
1997 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001998 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001999 // Tail call byval lowering might overwrite argument registers so in case of
2000 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002001 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002002 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002003 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002004 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002005 InFlag = Chain.getValue(1);
2006 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002007
Chris Lattner88e1fd52009-07-09 04:24:46 +00002008 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002009 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2010 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002011 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002012 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2013 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002014 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002015 InFlag);
2016 InFlag = Chain.getValue(1);
2017 } else {
2018 // If we are tail calling and generating PIC/GOT style code load the
2019 // address of the callee into ECX. The value in ecx is used as target of
2020 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2021 // for tail calls on PIC/GOT architectures. Normally we would just put the
2022 // address of GOT into ebx and then call target@PLT. But for tail calls
2023 // ebx would be restored (since ebx is callee saved) before jumping to the
2024 // target@PLT.
2025
2026 // Note: The actual moving to ECX is done further down.
2027 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2028 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2029 !G->getGlobal()->hasProtectedVisibility())
2030 Callee = LowerGlobalAddress(Callee, DAG);
2031 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002032 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002033 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002034 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002035
Nate Begemanc8ea6732010-07-21 20:49:52 +00002036 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64()) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002037 // From AMD64 ABI document:
2038 // For calls that may call functions that use varargs or stdargs
2039 // (prototype-less calls or calls to functions containing ellipsis (...) in
2040 // the declaration) %al is used as hidden argument to specify the number
2041 // of SSE registers used. The contents of %al do not need to match exactly
2042 // the number of registers, but must be an ubound on the number of SSE
2043 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002044
Gordon Henriksen86737662008-01-05 16:56:59 +00002045 // Count the number of XMM registers allocated.
2046 static const unsigned XMMArgRegs[] = {
2047 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2048 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2049 };
2050 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Scott Michelfdc40a02009-02-17 22:15:04 +00002051 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002052 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002053
Dale Johannesendd64c412009-02-04 00:33:20 +00002054 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002055 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002056 InFlag = Chain.getValue(1);
2057 }
2058
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002059
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002060 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002061 if (isTailCall) {
2062 // Force all the incoming stack arguments to be loaded from the stack
2063 // before any new outgoing arguments are stored to the stack, because the
2064 // outgoing stack slots may alias the incoming argument stack slots, and
2065 // the alias isn't otherwise explicit. This is slightly more conservative
2066 // than necessary, because it means that each store effectively depends
2067 // on every argument instead of just those arguments it would clobber.
2068 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2069
Dan Gohman475871a2008-07-27 21:46:04 +00002070 SmallVector<SDValue, 8> MemOpChains2;
2071 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002072 int FI = 0;
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002073 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002074 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002075 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002076 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2077 CCValAssign &VA = ArgLocs[i];
2078 if (VA.isRegLoc())
2079 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002080 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002081 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002082 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002083 // Create frame index.
2084 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002085 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002086 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002087 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002088
Duncan Sands276dcbd2008-03-21 09:14:45 +00002089 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002090 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002091 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002092 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002093 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002094 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002095 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002096
Dan Gohman98ca4f22009-08-05 01:29:28 +00002097 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2098 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002099 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002100 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002101 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002102 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002103 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002104 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002105 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002106 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002107 }
2108 }
2109
2110 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002111 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002112 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002113
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002114 // Copy arguments to their registers.
2115 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002116 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002117 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002118 InFlag = Chain.getValue(1);
2119 }
Dan Gohman475871a2008-07-27 21:46:04 +00002120 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002121
Gordon Henriksen86737662008-01-05 16:56:59 +00002122 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002123 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002124 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002125 }
2126
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002127 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2128 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2129 // In the 64-bit large code model, we have to make all calls
2130 // through a register, since the call instruction's 32-bit
2131 // pc-relative offset may not be large enough to hold the whole
2132 // address.
2133 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002134 // If the callee is a GlobalAddress node (quite common, every direct call
2135 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2136 // it.
2137
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002138 // We should use extra load for direct calls to dllimported functions in
2139 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002140 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002141 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002142 unsigned char OpFlags = 0;
Eric Christopherfd179292009-08-27 18:07:15 +00002143
Chris Lattner48a7d022009-07-09 05:02:21 +00002144 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2145 // external symbols most go through the PLT in PIC mode. If the symbol
2146 // has hidden or protected visibility, or if it is static or local, then
2147 // we don't need to use the PLT - we can directly call it.
2148 if (Subtarget->isTargetELF() &&
2149 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002150 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002151 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002152 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002153 (GV->isDeclaration() || GV->isWeakForLinker()) &&
2154 Subtarget->getDarwinVers() < 9) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002155 // PC-relative references to external symbols should go through $stub,
2156 // unless we're building with the leopard linker or later, which
2157 // automatically synthesizes these stubs.
2158 OpFlags = X86II::MO_DARWIN_STUB;
2159 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002160
Devang Patel0d881da2010-07-06 22:08:15 +00002161 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002162 G->getOffset(), OpFlags);
2163 }
Bill Wendling056292f2008-09-16 21:48:12 +00002164 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002165 unsigned char OpFlags = 0;
2166
Evan Cheng1bf891a2010-12-01 22:59:46 +00002167 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2168 // external symbols should go through the PLT.
2169 if (Subtarget->isTargetELF() &&
2170 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2171 OpFlags = X86II::MO_PLT;
2172 } else if (Subtarget->isPICStyleStubAny() &&
2173 Subtarget->getDarwinVers() < 9) {
2174 // PC-relative references to external symbols should go through $stub,
2175 // unless we're building with the leopard linker or later, which
2176 // automatically synthesizes these stubs.
2177 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002178 }
Eric Christopherfd179292009-08-27 18:07:15 +00002179
Chris Lattner48a7d022009-07-09 05:02:21 +00002180 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2181 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002182 }
2183
Chris Lattnerd96d0722007-02-25 06:40:16 +00002184 // Returns a chain & a flag for retval copy to use.
Owen Anderson825b72b2009-08-11 20:47:22 +00002185 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00002186 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002187
Evan Chengf22f9b32010-02-06 03:28:46 +00002188 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002189 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2190 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002191 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002192 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002193
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002194 Ops.push_back(Chain);
2195 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002196
Dan Gohman98ca4f22009-08-05 01:29:28 +00002197 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002198 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002199
Gordon Henriksen86737662008-01-05 16:56:59 +00002200 // Add argument registers to the end of the list so that they are known live
2201 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002202 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2203 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2204 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002205
Evan Cheng586ccac2008-03-18 23:36:35 +00002206 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002207 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002208 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2209
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002210 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
2211 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64())
Owen Anderson825b72b2009-08-11 20:47:22 +00002212 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002213
Gabor Greifba36cb52008-08-28 21:40:38 +00002214 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002215 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002216
Dan Gohman98ca4f22009-08-05 01:29:28 +00002217 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002218 // We used to do:
2219 //// If this is the first return lowered for this function, add the regs
2220 //// to the liveout set for the function.
2221 // This isn't right, although it's probably harmless on x86; liveouts
2222 // should be computed from returns not tail calls. Consider a void
2223 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002224 return DAG.getNode(X86ISD::TC_RETURN, dl,
2225 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002226 }
2227
Dale Johannesenace16102009-02-03 19:33:06 +00002228 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002229 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002230
Chris Lattner2d297092006-05-23 18:50:38 +00002231 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002232 unsigned NumBytesForCalleeToPush;
Dan Gohman4d3d6e12010-05-27 18:43:40 +00002233 if (Subtarget->IsCalleePop(isVarArg, CallConv))
Gordon Henriksen86737662008-01-05 16:56:59 +00002234 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002235 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002236 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002237 // pops the hidden struct pointer, so we have to push it back.
2238 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002239 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002240 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002241 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002242
Gordon Henriksenae636f82008-01-03 16:47:34 +00002243 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002244 if (!IsSibcall) {
2245 Chain = DAG.getCALLSEQ_END(Chain,
2246 DAG.getIntPtrConstant(NumBytes, true),
2247 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2248 true),
2249 InFlag);
2250 InFlag = Chain.getValue(1);
2251 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002252
Chris Lattner3085e152007-02-25 08:59:22 +00002253 // Handle result values, copying them out of physregs into vregs that we
2254 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002255 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2256 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002257}
2258
Evan Cheng25ab6902006-09-08 06:48:29 +00002259
2260//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002261// Fast Calling Convention (tail call) implementation
2262//===----------------------------------------------------------------------===//
2263
2264// Like std call, callee cleans arguments, convention except that ECX is
2265// reserved for storing the tail called function address. Only 2 registers are
2266// free for argument passing (inreg). Tail call optimization is performed
2267// provided:
2268// * tailcallopt is enabled
2269// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002270// On X86_64 architecture with GOT-style position independent code only local
2271// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002272// To keep the stack aligned according to platform abi the function
2273// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2274// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002275// If a tail called function callee has more arguments than the caller the
2276// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002277// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002278// original REtADDR, but before the saved framepointer or the spilled registers
2279// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2280// stack layout:
2281// arg1
2282// arg2
2283// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002284// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002285// move area ]
2286// (possible EBP)
2287// ESI
2288// EDI
2289// local1 ..
2290
2291/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2292/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002293unsigned
2294X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2295 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002296 MachineFunction &MF = DAG.getMachineFunction();
2297 const TargetMachine &TM = MF.getTarget();
2298 const TargetFrameInfo &TFI = *TM.getFrameInfo();
2299 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002300 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002301 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002302 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002303 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2304 // Number smaller than 12 so just add the difference.
2305 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2306 } else {
2307 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002308 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002309 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002310 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002311 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002312}
2313
Evan Cheng5f941932010-02-05 02:21:12 +00002314/// MatchingStackOffset - Return true if the given stack call argument is
2315/// already available in the same position (relatively) of the caller's
2316/// incoming argument stack.
2317static
2318bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2319 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2320 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002321 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2322 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002323 if (Arg.getOpcode() == ISD::CopyFromReg) {
2324 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2325 if (!VR || TargetRegisterInfo::isPhysicalRegister(VR))
2326 return false;
2327 MachineInstr *Def = MRI->getVRegDef(VR);
2328 if (!Def)
2329 return false;
2330 if (!Flags.isByVal()) {
2331 if (!TII->isLoadFromStackSlot(Def, FI))
2332 return false;
2333 } else {
2334 unsigned Opcode = Def->getOpcode();
2335 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2336 Def->getOperand(1).isFI()) {
2337 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002338 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002339 } else
2340 return false;
2341 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002342 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2343 if (Flags.isByVal())
2344 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002345 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002346 // define @foo(%struct.X* %A) {
2347 // tail call @bar(%struct.X* byval %A)
2348 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002349 return false;
2350 SDValue Ptr = Ld->getBasePtr();
2351 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2352 if (!FINode)
2353 return false;
2354 FI = FINode->getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002355 } else
2356 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002357
Evan Cheng4cae1332010-03-05 08:38:04 +00002358 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002359 if (!MFI->isFixedObjectIndex(FI))
2360 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002361 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002362}
2363
Dan Gohman98ca4f22009-08-05 01:29:28 +00002364/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2365/// for tail call optimization. Targets which want to do tail call
2366/// optimization should implement this function.
2367bool
2368X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002369 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002370 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002371 bool isCalleeStructRet,
2372 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002373 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002374 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002375 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002376 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002377 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002378 CalleeCC != CallingConv::C)
2379 return false;
2380
Evan Cheng7096ae42010-01-29 06:45:59 +00002381 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002382 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002383 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002384 CallingConv::ID CallerCC = CallerF->getCallingConv();
2385 bool CCMatch = CallerCC == CalleeCC;
2386
Dan Gohman1797ed52010-02-08 20:27:50 +00002387 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002388 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002389 return true;
2390 return false;
2391 }
2392
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002393 // Look for obvious safe cases to perform tail call optimization that do not
2394 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002395
Evan Cheng2c12cb42010-03-26 16:26:03 +00002396 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2397 // emit a special epilogue.
2398 if (RegInfo->needsStackRealignment(MF))
2399 return false;
2400
Eric Christopher90eb4022010-07-22 00:26:08 +00002401 // Do not sibcall optimize vararg calls unless the call site is not passing
2402 // any arguments.
Evan Cheng3c262ee2010-03-26 02:13:13 +00002403 if (isVarArg && !Outs.empty())
Evan Cheng843bd692010-01-31 06:44:49 +00002404 return false;
2405
Evan Chenga375d472010-03-15 18:54:48 +00002406 // Also avoid sibcall optimization if either caller or callee uses struct
2407 // return semantics.
2408 if (isCalleeStructRet || isCallerStructRet)
2409 return false;
2410
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002411 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2412 // Therefore if it's not used by the call it is not safe to optimize this into
2413 // a sibcall.
2414 bool Unused = false;
2415 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2416 if (!Ins[i].Used) {
2417 Unused = true;
2418 break;
2419 }
2420 }
2421 if (Unused) {
2422 SmallVector<CCValAssign, 16> RVLocs;
2423 CCState CCInfo(CalleeCC, false, getTargetMachine(),
2424 RVLocs, *DAG.getContext());
2425 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002426 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002427 CCValAssign &VA = RVLocs[i];
2428 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2429 return false;
2430 }
2431 }
2432
Evan Cheng13617962010-04-30 01:12:32 +00002433 // If the calling conventions do not match, then we'd better make sure the
2434 // results are returned in the same way as what the caller expects.
2435 if (!CCMatch) {
2436 SmallVector<CCValAssign, 16> RVLocs1;
2437 CCState CCInfo1(CalleeCC, false, getTargetMachine(),
2438 RVLocs1, *DAG.getContext());
2439 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2440
2441 SmallVector<CCValAssign, 16> RVLocs2;
2442 CCState CCInfo2(CallerCC, false, getTargetMachine(),
2443 RVLocs2, *DAG.getContext());
2444 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2445
2446 if (RVLocs1.size() != RVLocs2.size())
2447 return false;
2448 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2449 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2450 return false;
2451 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2452 return false;
2453 if (RVLocs1[i].isRegLoc()) {
2454 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2455 return false;
2456 } else {
2457 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2458 return false;
2459 }
2460 }
2461 }
2462
Evan Chenga6bff982010-01-30 01:22:00 +00002463 // If the callee takes no arguments then go on to check the results of the
2464 // call.
2465 if (!Outs.empty()) {
2466 // Check if stack adjustment is needed. For now, do not do this if any
2467 // argument is passed on the stack.
2468 SmallVector<CCValAssign, 16> ArgLocs;
2469 CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(),
2470 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00002471 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Evan Chengb2c92902010-02-02 02:22:50 +00002472 if (CCInfo.getNextStackOffset()) {
2473 MachineFunction &MF = DAG.getMachineFunction();
2474 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2475 return false;
2476 if (Subtarget->isTargetWin64())
2477 // Win64 ABI has additional complications.
2478 return false;
2479
2480 // Check if the arguments are already laid out in the right way as
2481 // the caller's fixed stack objects.
2482 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002483 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2484 const X86InstrInfo *TII =
2485 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002486 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2487 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002488 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002489 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002490 if (VA.getLocInfo() == CCValAssign::Indirect)
2491 return false;
2492 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002493 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2494 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002495 return false;
2496 }
2497 }
2498 }
Evan Cheng9c044672010-05-29 01:35:22 +00002499
2500 // If the tailcall address may be in a register, then make sure it's
2501 // possible to register allocate for it. In 32-bit, the call address can
2502 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002503 // callee-saved registers are restored. These happen to be the same
2504 // registers used to pass 'inreg' arguments so watch out for those.
2505 if (!Subtarget->is64Bit() &&
2506 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002507 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002508 unsigned NumInRegs = 0;
2509 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2510 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002511 if (!VA.isRegLoc())
2512 continue;
2513 unsigned Reg = VA.getLocReg();
2514 switch (Reg) {
2515 default: break;
2516 case X86::EAX: case X86::EDX: case X86::ECX:
2517 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002518 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002519 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002520 }
2521 }
2522 }
Evan Chenga6bff982010-01-30 01:22:00 +00002523 }
Evan Chengb1712452010-01-27 06:25:16 +00002524
Dale Johannesend155d7e2010-10-25 22:17:05 +00002525 // An stdcall caller is expected to clean up its arguments; the callee
Dale Johannesen0e034562010-11-12 00:43:18 +00002526 // isn't going to do that.
Dale Johannesend155d7e2010-10-25 22:17:05 +00002527 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2528 return false;
2529
Evan Cheng86809cc2010-02-03 03:28:02 +00002530 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002531}
2532
Dan Gohman3df24e62008-09-03 23:12:08 +00002533FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002534X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2535 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002536}
2537
2538
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002539//===----------------------------------------------------------------------===//
2540// Other Lowering Hooks
2541//===----------------------------------------------------------------------===//
2542
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002543static bool MayFoldLoad(SDValue Op) {
2544 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2545}
2546
2547static bool MayFoldIntoStore(SDValue Op) {
2548 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2549}
2550
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002551static bool isTargetShuffle(unsigned Opcode) {
2552 switch(Opcode) {
2553 default: return false;
2554 case X86ISD::PSHUFD:
2555 case X86ISD::PSHUFHW:
2556 case X86ISD::PSHUFLW:
2557 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002558 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002559 case X86ISD::SHUFPS:
2560 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002561 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002562 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002563 case X86ISD::MOVLPS:
2564 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002565 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002566 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002567 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002568 case X86ISD::MOVSS:
2569 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002570 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002571 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002572 case X86ISD::PUNPCKLWD:
2573 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002574 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002575 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002576 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002577 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002578 case X86ISD::PUNPCKHWD:
2579 case X86ISD::PUNPCKHBW:
2580 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002581 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002582 return true;
2583 }
2584 return false;
2585}
2586
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002587static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002588 SDValue V1, SelectionDAG &DAG) {
2589 switch(Opc) {
2590 default: llvm_unreachable("Unknown x86 shuffle node");
2591 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002592 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002593 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002594 return DAG.getNode(Opc, dl, VT, V1);
2595 }
2596
2597 return SDValue();
2598}
2599
2600static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002601 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002602 switch(Opc) {
2603 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002604 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002605 case X86ISD::PSHUFHW:
2606 case X86ISD::PSHUFLW:
2607 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2608 }
2609
2610 return SDValue();
2611}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002612
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002613static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2614 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2615 switch(Opc) {
2616 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002617 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002618 case X86ISD::SHUFPD:
2619 case X86ISD::SHUFPS:
2620 return DAG.getNode(Opc, dl, VT, V1, V2,
2621 DAG.getConstant(TargetMask, MVT::i8));
2622 }
2623 return SDValue();
2624}
2625
2626static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2627 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2628 switch(Opc) {
2629 default: llvm_unreachable("Unknown x86 shuffle node");
2630 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002631 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002632 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002633 case X86ISD::MOVLPS:
2634 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002635 case X86ISD::MOVSS:
2636 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002637 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002638 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002639 case X86ISD::PUNPCKLWD:
2640 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002641 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002642 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002643 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002644 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002645 case X86ISD::PUNPCKHWD:
2646 case X86ISD::PUNPCKHBW:
2647 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002648 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002649 return DAG.getNode(Opc, dl, VT, V1, V2);
2650 }
2651 return SDValue();
2652}
2653
Dan Gohmand858e902010-04-17 15:26:15 +00002654SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002655 MachineFunction &MF = DAG.getMachineFunction();
2656 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2657 int ReturnAddrIndex = FuncInfo->getRAIndex();
2658
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002659 if (ReturnAddrIndex == 0) {
2660 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002661 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002662 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002663 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002664 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002665 }
2666
Evan Cheng25ab6902006-09-08 06:48:29 +00002667 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002668}
2669
2670
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002671bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2672 bool hasSymbolicDisplacement) {
2673 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002674 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002675 return false;
2676
2677 // If we don't have a symbolic displacement - we don't have any extra
2678 // restrictions.
2679 if (!hasSymbolicDisplacement)
2680 return true;
2681
2682 // FIXME: Some tweaks might be needed for medium code model.
2683 if (M != CodeModel::Small && M != CodeModel::Kernel)
2684 return false;
2685
2686 // For small code model we assume that latest object is 16MB before end of 31
2687 // bits boundary. We may also accept pretty large negative constants knowing
2688 // that all objects are in the positive half of address space.
2689 if (M == CodeModel::Small && Offset < 16*1024*1024)
2690 return true;
2691
2692 // For kernel code model we know that all object resist in the negative half
2693 // of 32bits address space. We may not accept negative offsets, since they may
2694 // be just off and we may accept pretty large positive ones.
2695 if (M == CodeModel::Kernel && Offset > 0)
2696 return true;
2697
2698 return false;
2699}
2700
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002701/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2702/// specific condition code, returning the condition code and the LHS/RHS of the
2703/// comparison to make.
2704static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2705 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002706 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002707 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2708 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2709 // X > -1 -> X == 0, jump !sign.
2710 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002711 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002712 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2713 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002714 return X86::COND_S;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002715 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002716 // X < 1 -> X <= 0
2717 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002718 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002719 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002720 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002721
Evan Chengd9558e02006-01-06 00:43:03 +00002722 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002723 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002724 case ISD::SETEQ: return X86::COND_E;
2725 case ISD::SETGT: return X86::COND_G;
2726 case ISD::SETGE: return X86::COND_GE;
2727 case ISD::SETLT: return X86::COND_L;
2728 case ISD::SETLE: return X86::COND_LE;
2729 case ISD::SETNE: return X86::COND_NE;
2730 case ISD::SETULT: return X86::COND_B;
2731 case ISD::SETUGT: return X86::COND_A;
2732 case ISD::SETULE: return X86::COND_BE;
2733 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002734 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002735 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002736
Chris Lattner4c78e022008-12-23 23:42:27 +00002737 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002738
Chris Lattner4c78e022008-12-23 23:42:27 +00002739 // If LHS is a foldable load, but RHS is not, flip the condition.
2740 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2741 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2742 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2743 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002744 }
2745
Chris Lattner4c78e022008-12-23 23:42:27 +00002746 switch (SetCCOpcode) {
2747 default: break;
2748 case ISD::SETOLT:
2749 case ISD::SETOLE:
2750 case ISD::SETUGT:
2751 case ISD::SETUGE:
2752 std::swap(LHS, RHS);
2753 break;
2754 }
2755
2756 // On a floating point condition, the flags are set as follows:
2757 // ZF PF CF op
2758 // 0 | 0 | 0 | X > Y
2759 // 0 | 0 | 1 | X < Y
2760 // 1 | 0 | 0 | X == Y
2761 // 1 | 1 | 1 | unordered
2762 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002763 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002764 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002765 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002766 case ISD::SETOLT: // flipped
2767 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002768 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002769 case ISD::SETOLE: // flipped
2770 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002771 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002772 case ISD::SETUGT: // flipped
2773 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002774 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002775 case ISD::SETUGE: // flipped
2776 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002777 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002778 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002779 case ISD::SETNE: return X86::COND_NE;
2780 case ISD::SETUO: return X86::COND_P;
2781 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002782 case ISD::SETOEQ:
2783 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002784 }
Evan Chengd9558e02006-01-06 00:43:03 +00002785}
2786
Evan Cheng4a460802006-01-11 00:33:36 +00002787/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2788/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002789/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002790static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002791 switch (X86CC) {
2792 default:
2793 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002794 case X86::COND_B:
2795 case X86::COND_BE:
2796 case X86::COND_E:
2797 case X86::COND_P:
2798 case X86::COND_A:
2799 case X86::COND_AE:
2800 case X86::COND_NE:
2801 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002802 return true;
2803 }
2804}
2805
Evan Chengeb2f9692009-10-27 19:56:55 +00002806/// isFPImmLegal - Returns true if the target can instruction select the
2807/// specified FP immediate natively. If false, the legalizer will
2808/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00002809bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00002810 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
2811 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
2812 return true;
2813 }
2814 return false;
2815}
2816
Nate Begeman9008ca62009-04-27 18:41:29 +00002817/// isUndefOrInRange - Return true if Val is undef or if its value falls within
2818/// the specified range (L, H].
2819static bool isUndefOrInRange(int Val, int Low, int Hi) {
2820 return (Val < 0) || (Val >= Low && Val < Hi);
2821}
2822
2823/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
2824/// specified value.
2825static bool isUndefOrEqual(int Val, int CmpVal) {
2826 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002827 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00002828 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00002829}
2830
Nate Begeman9008ca62009-04-27 18:41:29 +00002831/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
2832/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
2833/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00002834static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00002835 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00002836 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002837 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00002838 return (Mask[0] < 2 && Mask[1] < 2);
2839 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002840}
2841
Nate Begeman9008ca62009-04-27 18:41:29 +00002842bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002843 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002844 N->getMask(M);
2845 return ::isPSHUFDMask(M, N->getValueType(0));
2846}
Evan Cheng0188ecb2006-03-22 18:59:22 +00002847
Nate Begeman9008ca62009-04-27 18:41:29 +00002848/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
2849/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00002850static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002851 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00002852 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002853
Nate Begeman9008ca62009-04-27 18:41:29 +00002854 // Lower quadword copied in order or undef.
2855 for (int i = 0; i != 4; ++i)
2856 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00002857 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002858
Evan Cheng506d3df2006-03-29 23:07:14 +00002859 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002860 for (int i = 4; i != 8; ++i)
2861 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00002862 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002863
Evan Cheng506d3df2006-03-29 23:07:14 +00002864 return true;
2865}
2866
Nate Begeman9008ca62009-04-27 18:41:29 +00002867bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002868 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002869 N->getMask(M);
2870 return ::isPSHUFHWMask(M, N->getValueType(0));
2871}
Evan Cheng506d3df2006-03-29 23:07:14 +00002872
Nate Begeman9008ca62009-04-27 18:41:29 +00002873/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
2874/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00002875static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002876 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00002877 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002878
Rafael Espindola15684b22009-04-24 12:40:33 +00002879 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00002880 for (int i = 4; i != 8; ++i)
2881 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00002882 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002883
Rafael Espindola15684b22009-04-24 12:40:33 +00002884 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002885 for (int i = 0; i != 4; ++i)
2886 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00002887 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002888
Rafael Espindola15684b22009-04-24 12:40:33 +00002889 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00002890}
2891
Nate Begeman9008ca62009-04-27 18:41:29 +00002892bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002893 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002894 N->getMask(M);
2895 return ::isPSHUFLWMask(M, N->getValueType(0));
2896}
2897
Nate Begemana09008b2009-10-19 02:17:23 +00002898/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
2899/// is suitable for input to PALIGNR.
2900static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
2901 bool hasSSSE3) {
2902 int i, e = VT.getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00002903
Nate Begemana09008b2009-10-19 02:17:23 +00002904 // Do not handle v2i64 / v2f64 shuffles with palignr.
2905 if (e < 4 || !hasSSSE3)
2906 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002907
Nate Begemana09008b2009-10-19 02:17:23 +00002908 for (i = 0; i != e; ++i)
2909 if (Mask[i] >= 0)
2910 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002911
Nate Begemana09008b2009-10-19 02:17:23 +00002912 // All undef, not a palignr.
2913 if (i == e)
2914 return false;
2915
2916 // Determine if it's ok to perform a palignr with only the LHS, since we
2917 // don't have access to the actual shuffle elements to see if RHS is undef.
2918 bool Unary = Mask[i] < (int)e;
2919 bool NeedsUnary = false;
2920
2921 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002922
Nate Begemana09008b2009-10-19 02:17:23 +00002923 // Check the rest of the elements to see if they are consecutive.
2924 for (++i; i != e; ++i) {
2925 int m = Mask[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00002926 if (m < 0)
Nate Begemana09008b2009-10-19 02:17:23 +00002927 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002928
Nate Begemana09008b2009-10-19 02:17:23 +00002929 Unary = Unary && (m < (int)e);
2930 NeedsUnary = NeedsUnary || (m < s);
2931
2932 if (NeedsUnary && !Unary)
2933 return false;
2934 if (Unary && m != ((s+i) & (e-1)))
2935 return false;
2936 if (!Unary && m != (s+i))
2937 return false;
2938 }
2939 return true;
2940}
2941
2942bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) {
2943 SmallVector<int, 8> M;
2944 N->getMask(M);
2945 return ::isPALIGNRMask(M, N->getValueType(0), true);
2946}
2947
Evan Cheng14aed5e2006-03-24 01:18:28 +00002948/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2949/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00002950static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002951 int NumElems = VT.getVectorNumElements();
2952 if (NumElems != 2 && NumElems != 4)
2953 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002954
Nate Begeman9008ca62009-04-27 18:41:29 +00002955 int Half = NumElems / 2;
2956 for (int i = 0; i < Half; ++i)
2957 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002958 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002959 for (int i = Half; i < NumElems; ++i)
2960 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002961 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002962
Evan Cheng14aed5e2006-03-24 01:18:28 +00002963 return true;
2964}
2965
Nate Begeman9008ca62009-04-27 18:41:29 +00002966bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
2967 SmallVector<int, 8> M;
2968 N->getMask(M);
2969 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002970}
2971
Evan Cheng213d2cf2007-05-17 18:45:50 +00002972/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00002973/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2974/// half elements to come from vector 1 (which would equal the dest.) and
2975/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00002976static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002977 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00002978
2979 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00002980 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002981
Nate Begeman9008ca62009-04-27 18:41:29 +00002982 int Half = NumElems / 2;
2983 for (int i = 0; i < Half; ++i)
2984 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002985 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002986 for (int i = Half; i < NumElems; ++i)
2987 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002988 return false;
2989 return true;
2990}
2991
Nate Begeman9008ca62009-04-27 18:41:29 +00002992static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
2993 SmallVector<int, 8> M;
2994 N->getMask(M);
2995 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002996}
2997
Evan Cheng2c0dbd02006-03-24 02:58:06 +00002998/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
2999/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003000bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
3001 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003002 return false;
3003
Evan Cheng2064a2b2006-03-28 06:50:32 +00003004 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003005 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3006 isUndefOrEqual(N->getMaskElt(1), 7) &&
3007 isUndefOrEqual(N->getMaskElt(2), 2) &&
3008 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003009}
3010
Nate Begeman0b10b912009-11-07 23:17:15 +00003011/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3012/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3013/// <2, 3, 2, 3>
3014bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
3015 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003016
Nate Begeman0b10b912009-11-07 23:17:15 +00003017 if (NumElems != 4)
3018 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003019
Nate Begeman0b10b912009-11-07 23:17:15 +00003020 return isUndefOrEqual(N->getMaskElt(0), 2) &&
3021 isUndefOrEqual(N->getMaskElt(1), 3) &&
3022 isUndefOrEqual(N->getMaskElt(2), 2) &&
3023 isUndefOrEqual(N->getMaskElt(3), 3);
3024}
3025
Evan Cheng5ced1d82006-04-06 23:23:56 +00003026/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3027/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003028bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3029 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003030
Evan Cheng5ced1d82006-04-06 23:23:56 +00003031 if (NumElems != 2 && NumElems != 4)
3032 return false;
3033
Evan Chengc5cdff22006-04-07 21:53:05 +00003034 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003035 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003036 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003037
Evan Chengc5cdff22006-04-07 21:53:05 +00003038 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003039 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003040 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003041
3042 return true;
3043}
3044
Nate Begeman0b10b912009-11-07 23:17:15 +00003045/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3046/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3047bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003048 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003049
Evan Cheng5ced1d82006-04-06 23:23:56 +00003050 if (NumElems != 2 && NumElems != 4)
3051 return false;
3052
Evan Chengc5cdff22006-04-07 21:53:05 +00003053 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003054 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003055 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003056
Nate Begeman9008ca62009-04-27 18:41:29 +00003057 for (unsigned i = 0; i < NumElems/2; ++i)
3058 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003059 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003060
3061 return true;
3062}
3063
Evan Cheng0038e592006-03-28 00:39:58 +00003064/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3065/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003066static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003067 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003068 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003069 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00003070 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003071
Nate Begeman9008ca62009-04-27 18:41:29 +00003072 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3073 int BitI = Mask[i];
3074 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003075 if (!isUndefOrEqual(BitI, j))
3076 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003077 if (V2IsSplat) {
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003078 if (!isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003079 return false;
3080 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003081 if (!isUndefOrEqual(BitI1, j + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003082 return false;
3083 }
Evan Cheng0038e592006-03-28 00:39:58 +00003084 }
Evan Cheng0038e592006-03-28 00:39:58 +00003085 return true;
3086}
3087
Nate Begeman9008ca62009-04-27 18:41:29 +00003088bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3089 SmallVector<int, 8> M;
3090 N->getMask(M);
3091 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003092}
3093
Evan Cheng4fcb9222006-03-28 02:43:26 +00003094/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3095/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003096static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003097 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003098 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003099 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003100 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003101
Nate Begeman9008ca62009-04-27 18:41:29 +00003102 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3103 int BitI = Mask[i];
3104 int BitI1 = Mask[i+1];
Chris Lattner5a88b832007-02-25 07:10:00 +00003105 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00003106 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003107 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00003108 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003109 return false;
3110 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003111 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003112 return false;
3113 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003114 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003115 return true;
3116}
3117
Nate Begeman9008ca62009-04-27 18:41:29 +00003118bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3119 SmallVector<int, 8> M;
3120 N->getMask(M);
3121 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003122}
3123
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003124/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3125/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3126/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003127static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003128 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003129 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003130 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003131
Nate Begeman9008ca62009-04-27 18:41:29 +00003132 for (int i = 0, j = 0; i != NumElems; i += 2, ++j) {
3133 int BitI = Mask[i];
3134 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003135 if (!isUndefOrEqual(BitI, j))
3136 return false;
3137 if (!isUndefOrEqual(BitI1, j))
3138 return false;
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003139 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003140 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003141}
3142
Nate Begeman9008ca62009-04-27 18:41:29 +00003143bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3144 SmallVector<int, 8> M;
3145 N->getMask(M);
3146 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3147}
3148
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003149/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3150/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3151/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003152static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003153 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003154 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3155 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003156
Nate Begeman9008ca62009-04-27 18:41:29 +00003157 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3158 int BitI = Mask[i];
3159 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003160 if (!isUndefOrEqual(BitI, j))
3161 return false;
3162 if (!isUndefOrEqual(BitI1, j))
3163 return false;
3164 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003165 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003166}
3167
Nate Begeman9008ca62009-04-27 18:41:29 +00003168bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3169 SmallVector<int, 8> M;
3170 N->getMask(M);
3171 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3172}
3173
Evan Cheng017dcc62006-04-21 01:05:10 +00003174/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3175/// specifies a shuffle of elements that is suitable for input to MOVSS,
3176/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003177static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003178 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003179 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003180
3181 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003182
Nate Begeman9008ca62009-04-27 18:41:29 +00003183 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003184 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003185
Nate Begeman9008ca62009-04-27 18:41:29 +00003186 for (int i = 1; i < NumElts; ++i)
3187 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003188 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003189
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003190 return true;
3191}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003192
Nate Begeman9008ca62009-04-27 18:41:29 +00003193bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3194 SmallVector<int, 8> M;
3195 N->getMask(M);
3196 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003197}
3198
Evan Cheng017dcc62006-04-21 01:05:10 +00003199/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3200/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003201/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003202static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003203 bool V2IsSplat = false, bool V2IsUndef = false) {
3204 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003205 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003206 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003207
Nate Begeman9008ca62009-04-27 18:41:29 +00003208 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003209 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003210
Nate Begeman9008ca62009-04-27 18:41:29 +00003211 for (int i = 1; i < NumOps; ++i)
3212 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3213 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3214 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003215 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003216
Evan Cheng39623da2006-04-20 08:58:49 +00003217 return true;
3218}
3219
Nate Begeman9008ca62009-04-27 18:41:29 +00003220static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003221 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003222 SmallVector<int, 8> M;
3223 N->getMask(M);
3224 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003225}
3226
Evan Chengd9539472006-04-14 21:59:03 +00003227/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3228/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003229bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) {
3230 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003231 return false;
3232
3233 // Expect 1, 1, 3, 3
Rafael Espindola15684b22009-04-24 12:40:33 +00003234 for (unsigned i = 0; i < 2; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003235 int Elt = N->getMaskElt(i);
3236 if (Elt >= 0 && Elt != 1)
3237 return false;
Rafael Espindola15684b22009-04-24 12:40:33 +00003238 }
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 != 3)
3244 return false;
3245 if (Elt == 3)
3246 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003247 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003248 // Don't use movshdup if it can be done with a shufps.
Nate Begeman9008ca62009-04-27 18:41:29 +00003249 // FIXME: verify that matching u, u, 3, 3 is what we want.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003250 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003251}
3252
3253/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3254/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003255bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) {
3256 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003257 return false;
3258
3259 // Expect 0, 0, 2, 2
Nate Begeman9008ca62009-04-27 18:41:29 +00003260 for (unsigned i = 0; i < 2; ++i)
3261 if (N->getMaskElt(i) > 0)
3262 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003263
3264 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003265 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003266 int Elt = N->getMaskElt(i);
3267 if (Elt >= 0 && Elt != 2)
3268 return false;
3269 if (Elt == 2)
3270 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003271 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003272 // Don't use movsldup if it can be done with a shufps.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003273 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003274}
3275
Evan Cheng0b457f02008-09-25 20:50:48 +00003276/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3277/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003278bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3279 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003280
Nate Begeman9008ca62009-04-27 18:41:29 +00003281 for (int i = 0; i < e; ++i)
3282 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003283 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003284 for (int i = 0; i < e; ++i)
3285 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003286 return false;
3287 return true;
3288}
3289
Evan Cheng63d33002006-03-22 08:01:21 +00003290/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003291/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003292unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003293 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3294 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3295
Evan Chengb9df0ca2006-03-22 02:53:00 +00003296 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3297 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003298 for (int i = 0; i < NumOperands; ++i) {
3299 int Val = SVOp->getMaskElt(NumOperands-i-1);
3300 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003301 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003302 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003303 if (i != NumOperands - 1)
3304 Mask <<= Shift;
3305 }
Evan Cheng63d33002006-03-22 08:01:21 +00003306 return Mask;
3307}
3308
Evan Cheng506d3df2006-03-29 23:07:14 +00003309/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003310/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003311unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003312 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003313 unsigned Mask = 0;
3314 // 8 nodes, but we only care about the last 4.
3315 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003316 int Val = SVOp->getMaskElt(i);
3317 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003318 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003319 if (i != 4)
3320 Mask <<= 2;
3321 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003322 return Mask;
3323}
3324
3325/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003326/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003327unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003328 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003329 unsigned Mask = 0;
3330 // 8 nodes, but we only care about the first 4.
3331 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003332 int Val = SVOp->getMaskElt(i);
3333 if (Val >= 0)
3334 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003335 if (i != 0)
3336 Mask <<= 2;
3337 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003338 return Mask;
3339}
3340
Nate Begemana09008b2009-10-19 02:17:23 +00003341/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3342/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3343unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3344 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3345 EVT VVT = N->getValueType(0);
3346 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3347 int Val = 0;
3348
3349 unsigned i, e;
3350 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3351 Val = SVOp->getMaskElt(i);
3352 if (Val >= 0)
3353 break;
3354 }
3355 return (Val - i) * EltSize;
3356}
3357
Evan Cheng37b73872009-07-30 08:33:02 +00003358/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3359/// constant +0.0.
3360bool X86::isZeroNode(SDValue Elt) {
3361 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003362 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003363 (isa<ConstantFPSDNode>(Elt) &&
3364 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3365}
3366
Nate Begeman9008ca62009-04-27 18:41:29 +00003367/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3368/// their permute mask.
3369static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3370 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003371 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003372 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003373 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003374
Nate Begeman5a5ca152009-04-29 05:20:52 +00003375 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003376 int idx = SVOp->getMaskElt(i);
3377 if (idx < 0)
3378 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003379 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003380 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003381 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003382 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003383 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003384 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3385 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003386}
3387
Evan Cheng779ccea2007-12-07 21:30:01 +00003388/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3389/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003390static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003391 unsigned NumElems = VT.getVectorNumElements();
3392 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003393 int idx = Mask[i];
3394 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003395 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003396 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003397 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003398 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003399 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003400 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003401}
3402
Evan Cheng533a0aa2006-04-19 20:35:22 +00003403/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3404/// match movhlps. The lower half elements should come from upper half of
3405/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003406/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003407static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3408 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003409 return false;
3410 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003411 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003412 return false;
3413 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003414 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003415 return false;
3416 return true;
3417}
3418
Evan Cheng5ced1d82006-04-06 23:23:56 +00003419/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003420/// is promoted to a vector. It also returns the LoadSDNode by reference if
3421/// required.
3422static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003423 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3424 return false;
3425 N = N->getOperand(0).getNode();
3426 if (!ISD::isNON_EXTLoad(N))
3427 return false;
3428 if (LD)
3429 *LD = cast<LoadSDNode>(N);
3430 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003431}
3432
Evan Cheng533a0aa2006-04-19 20:35:22 +00003433/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3434/// match movlp{s|d}. The lower half elements should come from lower half of
3435/// V1 (and in order), and the upper half elements should come from the upper
3436/// half of V2 (and in order). And since V1 will become the source of the
3437/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003438static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3439 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003440 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003441 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003442 // Is V2 is a vector load, don't do this transformation. We will try to use
3443 // load folding shufps op.
3444 if (ISD::isNON_EXTLoad(V2))
3445 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003446
Nate Begeman5a5ca152009-04-29 05:20:52 +00003447 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003448
Evan Cheng533a0aa2006-04-19 20:35:22 +00003449 if (NumElems != 2 && NumElems != 4)
3450 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003451 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003452 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003453 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003454 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003455 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003456 return false;
3457 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003458}
3459
Evan Cheng39623da2006-04-20 08:58:49 +00003460/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3461/// all the same.
3462static bool isSplatVector(SDNode *N) {
3463 if (N->getOpcode() != ISD::BUILD_VECTOR)
3464 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003465
Dan Gohman475871a2008-07-27 21:46:04 +00003466 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003467 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3468 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003469 return false;
3470 return true;
3471}
3472
Evan Cheng213d2cf2007-05-17 18:45:50 +00003473/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003474/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003475/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003476static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003477 SDValue V1 = N->getOperand(0);
3478 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003479 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3480 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003481 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003482 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003483 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003484 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3485 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003486 if (Opc != ISD::BUILD_VECTOR ||
3487 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003488 return false;
3489 } else if (Idx >= 0) {
3490 unsigned Opc = V1.getOpcode();
3491 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3492 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003493 if (Opc != ISD::BUILD_VECTOR ||
3494 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003495 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003496 }
3497 }
3498 return true;
3499}
3500
3501/// getZeroVector - Returns a vector of specified type with all zero elements.
3502///
Owen Andersone50ed302009-08-10 22:56:29 +00003503static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003504 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003505 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003506
Dale Johannesen0488fb62010-09-30 23:57:10 +00003507 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003508 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003509 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003510 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003511 if (HasSSE2) { // SSE2
3512 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3513 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3514 } else { // SSE1
3515 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3516 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3517 }
3518 } else if (VT.getSizeInBits() == 256) { // AVX
3519 // 256-bit logic and arithmetic instructions in AVX are
3520 // all floating-point, no support for integer ops. Default
3521 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003522 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003523 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3524 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003525 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003526 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003527}
3528
Chris Lattner8a594482007-11-25 00:24:49 +00003529/// getOnesVector - Returns a vector of specified type with all bits set.
3530///
Owen Andersone50ed302009-08-10 22:56:29 +00003531static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003532 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003533
Chris Lattner8a594482007-11-25 00:24:49 +00003534 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
3535 // type. This ensures they get CSE'd.
Owen Anderson825b72b2009-08-11 20:47:22 +00003536 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00003537 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003538 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003539 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00003540}
3541
3542
Evan Cheng39623da2006-04-20 08:58:49 +00003543/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3544/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00003545static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003546 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003547 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003548
Evan Cheng39623da2006-04-20 08:58:49 +00003549 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003550 SmallVector<int, 8> MaskVec;
3551 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00003552
Nate Begeman5a5ca152009-04-29 05:20:52 +00003553 for (unsigned i = 0; i != NumElems; ++i) {
3554 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003555 MaskVec[i] = NumElems;
3556 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00003557 }
Evan Cheng39623da2006-04-20 08:58:49 +00003558 }
Evan Cheng39623da2006-04-20 08:58:49 +00003559 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00003560 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
3561 SVOp->getOperand(1), &MaskVec[0]);
3562 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00003563}
3564
Evan Cheng017dcc62006-04-21 01:05:10 +00003565/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
3566/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00003567static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003568 SDValue V2) {
3569 unsigned NumElems = VT.getVectorNumElements();
3570 SmallVector<int, 8> Mask;
3571 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00003572 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003573 Mask.push_back(i);
3574 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00003575}
3576
Nate Begeman9008ca62009-04-27 18:41:29 +00003577/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003578static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003579 SDValue V2) {
3580 unsigned NumElems = VT.getVectorNumElements();
3581 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00003582 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003583 Mask.push_back(i);
3584 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00003585 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003586 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00003587}
3588
Nate Begeman9008ca62009-04-27 18:41:29 +00003589/// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003590static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003591 SDValue V2) {
3592 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00003593 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003594 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00003595 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003596 Mask.push_back(i + Half);
3597 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00003598 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003599 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00003600}
3601
Bruno Cardoso Lopesbb0a9482010-08-13 17:50:47 +00003602/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32.
3603static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003604 EVT PVT = MVT::v4f32;
Owen Andersone50ed302009-08-10 22:56:29 +00003605 EVT VT = SV->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00003606 DebugLoc dl = SV->getDebugLoc();
3607 SDValue V1 = SV->getOperand(0);
3608 int NumElems = VT.getVectorNumElements();
3609 int EltNo = SV->getSplatIndex();
Rafael Espindola15684b22009-04-24 12:40:33 +00003610
Nate Begeman9008ca62009-04-27 18:41:29 +00003611 // unpack elements to the correct location
3612 while (NumElems > 4) {
3613 if (EltNo < NumElems/2) {
3614 V1 = getUnpackl(DAG, dl, VT, V1, V1);
3615 } else {
3616 V1 = getUnpackh(DAG, dl, VT, V1, V1);
3617 EltNo -= NumElems/2;
3618 }
3619 NumElems >>= 1;
3620 }
Eric Christopherfd179292009-08-27 18:07:15 +00003621
Nate Begeman9008ca62009-04-27 18:41:29 +00003622 // Perform the splat.
3623 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003624 V1 = DAG.getNode(ISD::BITCAST, dl, PVT, V1);
Nate Begeman9008ca62009-04-27 18:41:29 +00003625 V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003626 return DAG.getNode(ISD::BITCAST, dl, VT, V1);
Evan Chengc575ca22006-04-17 20:43:08 +00003627}
3628
Evan Chengba05f722006-04-21 23:03:30 +00003629/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00003630/// vector of zero or undef vector. This produces a shuffle where the low
3631/// element of V2 is swizzled into the zero/undef vector, landing at element
3632/// 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 +00003633static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00003634 bool isZero, bool HasSSE2,
3635 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003636 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003637 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00003638 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
3639 unsigned NumElems = VT.getVectorNumElements();
3640 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00003641 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003642 // If this is the insertion idx, put the low elt of V2 here.
3643 MaskVec.push_back(i == Idx ? NumElems : i);
3644 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00003645}
3646
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003647/// getShuffleScalarElt - Returns the scalar element that will make up the ith
3648/// element of the result of the vector shuffle.
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003649SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
3650 unsigned Depth) {
3651 if (Depth == 6)
3652 return SDValue(); // Limit search depth.
3653
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003654 SDValue V = SDValue(N, 0);
3655 EVT VT = V.getValueType();
3656 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003657
3658 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
3659 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
3660 Index = SV->getMaskElt(Index);
3661
3662 if (Index < 0)
3663 return DAG.getUNDEF(VT.getVectorElementType());
3664
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003665 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003666 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003667 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00003668 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003669
3670 // Recurse into target specific vector shuffles to find scalars.
3671 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003672 int NumElems = VT.getVectorNumElements();
3673 SmallVector<unsigned, 16> ShuffleMask;
3674 SDValue ImmN;
3675
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003676 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003677 case X86ISD::SHUFPS:
3678 case X86ISD::SHUFPD:
3679 ImmN = N->getOperand(N->getNumOperands()-1);
3680 DecodeSHUFPSMask(NumElems,
3681 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3682 ShuffleMask);
3683 break;
3684 case X86ISD::PUNPCKHBW:
3685 case X86ISD::PUNPCKHWD:
3686 case X86ISD::PUNPCKHDQ:
3687 case X86ISD::PUNPCKHQDQ:
3688 DecodePUNPCKHMask(NumElems, ShuffleMask);
3689 break;
3690 case X86ISD::UNPCKHPS:
3691 case X86ISD::UNPCKHPD:
3692 DecodeUNPCKHPMask(NumElems, ShuffleMask);
3693 break;
3694 case X86ISD::PUNPCKLBW:
3695 case X86ISD::PUNPCKLWD:
3696 case X86ISD::PUNPCKLDQ:
3697 case X86ISD::PUNPCKLQDQ:
3698 DecodePUNPCKLMask(NumElems, ShuffleMask);
3699 break;
3700 case X86ISD::UNPCKLPS:
3701 case X86ISD::UNPCKLPD:
3702 DecodeUNPCKLPMask(NumElems, ShuffleMask);
3703 break;
3704 case X86ISD::MOVHLPS:
3705 DecodeMOVHLPSMask(NumElems, ShuffleMask);
3706 break;
3707 case X86ISD::MOVLHPS:
3708 DecodeMOVLHPSMask(NumElems, ShuffleMask);
3709 break;
3710 case X86ISD::PSHUFD:
3711 ImmN = N->getOperand(N->getNumOperands()-1);
3712 DecodePSHUFMask(NumElems,
3713 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3714 ShuffleMask);
3715 break;
3716 case X86ISD::PSHUFHW:
3717 ImmN = N->getOperand(N->getNumOperands()-1);
3718 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3719 ShuffleMask);
3720 break;
3721 case X86ISD::PSHUFLW:
3722 ImmN = N->getOperand(N->getNumOperands()-1);
3723 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3724 ShuffleMask);
3725 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003726 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003727 case X86ISD::MOVSD: {
3728 // The index 0 always comes from the first element of the second source,
3729 // this is why MOVSS and MOVSD are used in the first place. The other
3730 // elements come from the other positions of the first source vector.
3731 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003732 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
3733 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003734 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003735 default:
3736 assert("not implemented for target shuffle node");
3737 return SDValue();
3738 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003739
3740 Index = ShuffleMask[Index];
3741 if (Index < 0)
3742 return DAG.getUNDEF(VT.getVectorElementType());
3743
3744 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
3745 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
3746 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003747 }
3748
3749 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003750 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003751 V = V.getOperand(0);
3752 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003753 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003754
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003755 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003756 return SDValue();
3757 }
3758
3759 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
3760 return (Index == 0) ? V.getOperand(0)
3761 : DAG.getUNDEF(VT.getVectorElementType());
3762
3763 if (V.getOpcode() == ISD::BUILD_VECTOR)
3764 return V.getOperand(Index);
3765
3766 return SDValue();
3767}
3768
3769/// getNumOfConsecutiveZeros - Return the number of elements of a vector
3770/// shuffle operation which come from a consecutively from a zero. The
3771/// search can start in two diferent directions, from left or right.
3772static
3773unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
3774 bool ZerosFromLeft, SelectionDAG &DAG) {
3775 int i = 0;
3776
3777 while (i < NumElems) {
3778 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003779 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003780 if (!(Elt.getNode() &&
3781 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
3782 break;
3783 ++i;
3784 }
3785
3786 return i;
3787}
3788
3789/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
3790/// MaskE correspond consecutively to elements from one of the vector operands,
3791/// starting from its index OpIdx. Also tell OpNum which source vector operand.
3792static
3793bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
3794 int OpIdx, int NumElems, unsigned &OpNum) {
3795 bool SeenV1 = false;
3796 bool SeenV2 = false;
3797
3798 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
3799 int Idx = SVOp->getMaskElt(i);
3800 // Ignore undef indicies
3801 if (Idx < 0)
3802 continue;
3803
3804 if (Idx < NumElems)
3805 SeenV1 = true;
3806 else
3807 SeenV2 = true;
3808
3809 // Only accept consecutive elements from the same vector
3810 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
3811 return false;
3812 }
3813
3814 OpNum = SeenV1 ? 0 : 1;
3815 return true;
3816}
3817
3818/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
3819/// logical left shift of a vector.
3820static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3821 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3822 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3823 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3824 false /* check zeros from right */, DAG);
3825 unsigned OpSrc;
3826
3827 if (!NumZeros)
3828 return false;
3829
3830 // Considering the elements in the mask that are not consecutive zeros,
3831 // check if they consecutively come from only one of the source vectors.
3832 //
3833 // V1 = {X, A, B, C} 0
3834 // \ \ \ /
3835 // vector_shuffle V1, V2 <1, 2, 3, X>
3836 //
3837 if (!isShuffleMaskConsecutive(SVOp,
3838 0, // Mask Start Index
3839 NumElems-NumZeros-1, // Mask End Index
3840 NumZeros, // Where to start looking in the src vector
3841 NumElems, // Number of elements in vector
3842 OpSrc)) // Which source operand ?
3843 return false;
3844
3845 isLeft = false;
3846 ShAmt = NumZeros;
3847 ShVal = SVOp->getOperand(OpSrc);
3848 return true;
3849}
3850
3851/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
3852/// logical left shift of a vector.
3853static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3854 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3855 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3856 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3857 true /* check zeros from left */, DAG);
3858 unsigned OpSrc;
3859
3860 if (!NumZeros)
3861 return false;
3862
3863 // Considering the elements in the mask that are not consecutive zeros,
3864 // check if they consecutively come from only one of the source vectors.
3865 //
3866 // 0 { A, B, X, X } = V2
3867 // / \ / /
3868 // vector_shuffle V1, V2 <X, X, 4, 5>
3869 //
3870 if (!isShuffleMaskConsecutive(SVOp,
3871 NumZeros, // Mask Start Index
3872 NumElems-1, // Mask End Index
3873 0, // Where to start looking in the src vector
3874 NumElems, // Number of elements in vector
3875 OpSrc)) // Which source operand ?
3876 return false;
3877
3878 isLeft = true;
3879 ShAmt = NumZeros;
3880 ShVal = SVOp->getOperand(OpSrc);
3881 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003882}
3883
3884/// isVectorShift - Returns true if the shuffle can be implemented as a
3885/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003886static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00003887 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003888 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
3889 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
3890 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003891
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003892 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00003893}
3894
Evan Chengc78d3b42006-04-24 18:01:45 +00003895/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3896///
Dan Gohman475871a2008-07-27 21:46:04 +00003897static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00003898 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00003899 SelectionDAG &DAG,
3900 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003901 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00003902 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003903
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003904 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003905 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003906 bool First = true;
3907 for (unsigned i = 0; i < 16; ++i) {
3908 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3909 if (ThisIsNonZero && First) {
3910 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003911 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003912 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003913 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003914 First = false;
3915 }
3916
3917 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00003918 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003919 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3920 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003921 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003922 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00003923 }
3924 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003925 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
3926 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
3927 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00003928 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003929 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00003930 } else
3931 ThisElt = LastElt;
3932
Gabor Greifba36cb52008-08-28 21:40:38 +00003933 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00003934 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00003935 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00003936 }
3937 }
3938
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003939 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00003940}
3941
Bill Wendlinga348c562007-03-22 18:42:45 +00003942/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00003943///
Dan Gohman475871a2008-07-27 21:46:04 +00003944static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00003945 unsigned NumNonZero, unsigned NumZero,
3946 SelectionDAG &DAG,
3947 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003948 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00003949 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003950
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003951 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003952 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003953 bool First = true;
3954 for (unsigned i = 0; i < 8; ++i) {
3955 bool isNonZero = (NonZeros & (1 << i)) != 0;
3956 if (isNonZero) {
3957 if (First) {
3958 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003959 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003960 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003961 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003962 First = false;
3963 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003964 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003965 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00003966 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00003967 }
3968 }
3969
3970 return V;
3971}
3972
Evan Chengf26ffe92008-05-29 08:22:04 +00003973/// getVShift - Return a vector logical shift node.
3974///
Owen Andersone50ed302009-08-10 22:56:29 +00003975static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00003976 unsigned NumBits, SelectionDAG &DAG,
3977 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003978 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00003979 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003980 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
3981 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00003982 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif327ef032008-08-28 23:19:51 +00003983 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengf26ffe92008-05-29 08:22:04 +00003984}
3985
Dan Gohman475871a2008-07-27 21:46:04 +00003986SDValue
Evan Chengc3630942009-12-09 21:00:30 +00003987X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00003988 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00003989
Evan Chengc3630942009-12-09 21:00:30 +00003990 // Check if the scalar load can be widened into a vector load. And if
3991 // the address is "base + cst" see if the cst can be "absorbed" into
3992 // the shuffle mask.
3993 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
3994 SDValue Ptr = LD->getBasePtr();
3995 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
3996 return SDValue();
3997 EVT PVT = LD->getValueType(0);
3998 if (PVT != MVT::i32 && PVT != MVT::f32)
3999 return SDValue();
4000
4001 int FI = -1;
4002 int64_t Offset = 0;
4003 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4004 FI = FINode->getIndex();
4005 Offset = 0;
4006 } else if (Ptr.getOpcode() == ISD::ADD &&
4007 isa<ConstantSDNode>(Ptr.getOperand(1)) &&
4008 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4009 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4010 Offset = Ptr.getConstantOperandVal(1);
4011 Ptr = Ptr.getOperand(0);
4012 } else {
4013 return SDValue();
4014 }
4015
4016 SDValue Chain = LD->getChain();
4017 // Make sure the stack object alignment is at least 16.
4018 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4019 if (DAG.InferPtrAlignment(Ptr) < 16) {
4020 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004021 // Can't change the alignment. FIXME: It's possible to compute
4022 // the exact stack offset and reference FI + adjust offset instead.
4023 // If someone *really* cares about this. That's the way to implement it.
4024 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004025 } else {
4026 MFI->setObjectAlignment(FI, 16);
4027 }
4028 }
4029
4030 // (Offset % 16) must be multiple of 4. Then address is then
4031 // Ptr + (Offset & ~15).
4032 if (Offset < 0)
4033 return SDValue();
4034 if ((Offset % 16) & 3)
4035 return SDValue();
4036 int64_t StartOffset = Offset & ~15;
4037 if (StartOffset)
4038 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4039 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4040
4041 int EltNo = (Offset - StartOffset) >> 2;
4042 int Mask[4] = { EltNo, EltNo, EltNo, EltNo };
4043 EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32;
Chris Lattner51abfe42010-09-21 06:02:19 +00004044 SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr,
4045 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004046 false, false, 0);
Evan Chengc3630942009-12-09 21:00:30 +00004047 // Canonicalize it to a v4i32 shuffle.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004048 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V1);
4049 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Chengc3630942009-12-09 21:00:30 +00004050 DAG.getVectorShuffle(MVT::v4i32, dl, V1,
Chris Lattner51abfe42010-09-21 06:02:19 +00004051 DAG.getUNDEF(MVT::v4i32),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004052 }
4053
4054 return SDValue();
4055}
4056
Michael J. Spencerec38de22010-10-10 22:04:20 +00004057/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4058/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004059/// load which has the same value as a build_vector whose operands are 'elts'.
4060///
4061/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004062///
Nate Begeman1449f292010-03-24 22:19:06 +00004063/// FIXME: we'd also like to handle the case where the last elements are zero
4064/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4065/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004066static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004067 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004068 EVT EltVT = VT.getVectorElementType();
4069 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004070
Nate Begemanfdea31a2010-03-24 20:49:50 +00004071 LoadSDNode *LDBase = NULL;
4072 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004073
Nate Begeman1449f292010-03-24 22:19:06 +00004074 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004075 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004076 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004077 for (unsigned i = 0; i < NumElems; ++i) {
4078 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004079
Nate Begemanfdea31a2010-03-24 20:49:50 +00004080 if (!Elt.getNode() ||
4081 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4082 return SDValue();
4083 if (!LDBase) {
4084 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4085 return SDValue();
4086 LDBase = cast<LoadSDNode>(Elt.getNode());
4087 LastLoadedElt = i;
4088 continue;
4089 }
4090 if (Elt.getOpcode() == ISD::UNDEF)
4091 continue;
4092
4093 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4094 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4095 return SDValue();
4096 LastLoadedElt = i;
4097 }
Nate Begeman1449f292010-03-24 22:19:06 +00004098
4099 // If we have found an entire vector of loads and undefs, then return a large
4100 // load of the entire vector width starting at the base pointer. If we found
4101 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004102 if (LastLoadedElt == NumElems - 1) {
4103 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004104 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004105 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004106 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004107 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004108 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004109 LDBase->isVolatile(), LDBase->isNonTemporal(),
4110 LDBase->getAlignment());
4111 } else if (NumElems == 4 && LastLoadedElt == 1) {
4112 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4113 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004114 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4115 Ops, 2, MVT::i32,
4116 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004117 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004118 }
4119 return SDValue();
4120}
4121
Evan Chengc3630942009-12-09 21:00:30 +00004122SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004123X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004124 DebugLoc dl = Op.getDebugLoc();
Chris Lattner6e80e442010-08-28 17:15:43 +00004125 // All zero's are handled with pxor in SSE2 and above, xorps in SSE1.
4126 // All one's are handled with pcmpeqd. In AVX, zero's are handled with
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004127 // vpxor in 128-bit and xor{pd,ps} in 256-bit, but no 256 version of pcmpeqd
4128 // is present, so AllOnes is ignored.
4129 if (ISD::isBuildVectorAllZeros(Op.getNode()) ||
4130 (Op.getValueType().getSizeInBits() != 256 &&
4131 ISD::isBuildVectorAllOnes(Op.getNode()))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004132 // Canonicalize this to <4 x i32> (SSE) to
Chris Lattner8a594482007-11-25 00:24:49 +00004133 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
4134 // eliminated on x86-32 hosts.
Dale Johannesen0488fb62010-09-30 23:57:10 +00004135 if (Op.getValueType() == MVT::v4i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004136 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004137
Gabor Greifba36cb52008-08-28 21:40:38 +00004138 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004139 return getOnesVector(Op.getValueType(), DAG, dl);
4140 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004141 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004142
Owen Andersone50ed302009-08-10 22:56:29 +00004143 EVT VT = Op.getValueType();
4144 EVT ExtVT = VT.getVectorElementType();
4145 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004146
4147 unsigned NumElems = Op.getNumOperands();
4148 unsigned NumZero = 0;
4149 unsigned NumNonZero = 0;
4150 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004151 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004152 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004153 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004154 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004155 if (Elt.getOpcode() == ISD::UNDEF)
4156 continue;
4157 Values.insert(Elt);
4158 if (Elt.getOpcode() != ISD::Constant &&
4159 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004160 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004161 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004162 NumZero++;
4163 else {
4164 NonZeros |= (1 << i);
4165 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004166 }
4167 }
4168
Chris Lattner97a2a562010-08-26 05:24:29 +00004169 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4170 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004171 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004172
Chris Lattner67f453a2008-03-09 05:42:06 +00004173 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004174 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004175 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004176 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004177
Chris Lattner62098042008-03-09 01:05:04 +00004178 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4179 // the value are obviously zero, truncate the value to i32 and do the
4180 // insertion that way. Only do this if the value is non-constant or if the
4181 // value is a constant being inserted into element 0. It is cheaper to do
4182 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004183 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004184 (!IsAllConstants || Idx == 0)) {
4185 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004186 // Handle SSE only.
4187 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4188 EVT VecVT = MVT::v4i32;
4189 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004190
Chris Lattner62098042008-03-09 01:05:04 +00004191 // Truncate the value (which may itself be a constant) to i32, and
4192 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004193 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004194 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004195 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4196 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004197
Chris Lattner62098042008-03-09 01:05:04 +00004198 // Now we have our 32-bit value zero extended in the low element of
4199 // a vector. If Idx != 0, swizzle it into place.
4200 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004201 SmallVector<int, 4> Mask;
4202 Mask.push_back(Idx);
4203 for (unsigned i = 1; i != VecElts; ++i)
4204 Mask.push_back(i);
4205 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004206 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004207 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004208 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004209 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004210 }
4211 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004212
Chris Lattner19f79692008-03-08 22:59:52 +00004213 // If we have a constant or non-constant insertion into the low element of
4214 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4215 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004216 // depending on what the source datatype is.
4217 if (Idx == 0) {
4218 if (NumZero == 0) {
4219 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004220 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4221 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004222 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4223 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4224 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4225 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004226 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4227 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004228 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4229 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004230 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4231 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4232 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004233 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004234 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004235 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004236
4237 // Is it a vector logical left shift?
4238 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004239 X86::isZeroNode(Op.getOperand(0)) &&
4240 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004241 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004242 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004243 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004244 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004245 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004246 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004247
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004248 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004249 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004250
Chris Lattner19f79692008-03-08 22:59:52 +00004251 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4252 // is a non-constant being inserted into an element other than the low one,
4253 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4254 // movd/movss) to move this into the low element, then shuffle it into
4255 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004256 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004257 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004258
Evan Cheng0db9fe62006-04-25 20:13:52 +00004259 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004260 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4261 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004262 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004263 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004264 MaskVec.push_back(i == Idx ? 0 : 1);
4265 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004266 }
4267 }
4268
Chris Lattner67f453a2008-03-09 05:42:06 +00004269 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004270 if (Values.size() == 1) {
4271 if (EVTBits == 32) {
4272 // Instead of a shuffle like this:
4273 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4274 // Check if it's possible to issue this instead.
4275 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4276 unsigned Idx = CountTrailingZeros_32(NonZeros);
4277 SDValue Item = Op.getOperand(Idx);
4278 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4279 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4280 }
Dan Gohman475871a2008-07-27 21:46:04 +00004281 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004282 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004283
Dan Gohmana3941172007-07-24 22:55:08 +00004284 // A vector full of immediates; various special cases are already
4285 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004286 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004287 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004288
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004289 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004290 if (EVTBits == 64) {
4291 if (NumNonZero == 1) {
4292 // One half is zero or undef.
4293 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004294 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004295 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004296 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4297 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004298 }
Dan Gohman475871a2008-07-27 21:46:04 +00004299 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004300 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004301
4302 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004303 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004304 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004305 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004306 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004307 }
4308
Bill Wendling826f36f2007-03-28 00:57:11 +00004309 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004310 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004311 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004312 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004313 }
4314
4315 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004316 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004317 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004318 if (NumElems == 4 && NumZero > 0) {
4319 for (unsigned i = 0; i < 4; ++i) {
4320 bool isZero = !(NonZeros & (1 << i));
4321 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004322 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004323 else
Dale Johannesenace16102009-02-03 19:33:06 +00004324 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004325 }
4326
4327 for (unsigned i = 0; i < 2; ++i) {
4328 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4329 default: break;
4330 case 0:
4331 V[i] = V[i*2]; // Must be a zero vector.
4332 break;
4333 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004334 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004335 break;
4336 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004337 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004338 break;
4339 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004340 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004341 break;
4342 }
4343 }
4344
Nate Begeman9008ca62009-04-27 18:41:29 +00004345 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004346 bool Reverse = (NonZeros & 0x3) == 2;
4347 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004348 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004349 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4350 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004351 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4352 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004353 }
4354
Nate Begemanfdea31a2010-03-24 20:49:50 +00004355 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4356 // Check for a build vector of consecutive loads.
4357 for (unsigned i = 0; i < NumElems; ++i)
4358 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004359
Nate Begemanfdea31a2010-03-24 20:49:50 +00004360 // Check for elements which are consecutive loads.
4361 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4362 if (LD.getNode())
4363 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004364
4365 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004366 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004367 SDValue Result;
4368 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4369 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4370 else
4371 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004372
Chris Lattner24faf612010-08-28 17:59:08 +00004373 for (unsigned i = 1; i < NumElems; ++i) {
4374 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4375 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004376 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004377 }
4378 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004379 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004380
Chris Lattner6e80e442010-08-28 17:15:43 +00004381 // Otherwise, expand into a number of unpckl*, start by extending each of
4382 // our (non-undef) elements to the full vector width with the element in the
4383 // bottom slot of the vector (which generates no code for SSE).
4384 for (unsigned i = 0; i < NumElems; ++i) {
4385 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4386 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4387 else
4388 V[i] = DAG.getUNDEF(VT);
4389 }
4390
4391 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004392 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4393 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4394 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00004395 unsigned EltStride = NumElems >> 1;
4396 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00004397 for (unsigned i = 0; i < EltStride; ++i) {
4398 // If V[i+EltStride] is undef and this is the first round of mixing,
4399 // then it is safe to just drop this shuffle: V[i] is already in the
4400 // right place, the one element (since it's the first round) being
4401 // inserted as undef can be dropped. This isn't safe for successive
4402 // rounds because they will permute elements within both vectors.
4403 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
4404 EltStride == NumElems/2)
4405 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004406
Chris Lattner6e80e442010-08-28 17:15:43 +00004407 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00004408 }
Chris Lattner6e80e442010-08-28 17:15:43 +00004409 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004410 }
4411 return V[0];
4412 }
Dan Gohman475871a2008-07-27 21:46:04 +00004413 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004414}
4415
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004416SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004417X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004418 // We support concatenate two MMX registers and place them in a MMX
4419 // register. This is better than doing a stack convert.
4420 DebugLoc dl = Op.getDebugLoc();
4421 EVT ResVT = Op.getValueType();
4422 assert(Op.getNumOperands() == 2);
4423 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
4424 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
4425 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004426 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004427 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4428 InVec = Op.getOperand(1);
4429 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4430 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004431 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004432 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
4433 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
4434 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004435 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004436 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4437 Mask[0] = 0; Mask[1] = 2;
4438 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
4439 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004440 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004441}
4442
Nate Begemanb9a47b82009-02-23 08:49:38 +00004443// v8i16 shuffles - Prefer shuffles in the following order:
4444// 1. [all] pshuflw, pshufhw, optional move
4445// 2. [ssse3] 1 x pshufb
4446// 3. [ssse3] 2 x pshufb + 1 x por
4447// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004448SDValue
4449X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
4450 SelectionDAG &DAG) const {
4451 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00004452 SDValue V1 = SVOp->getOperand(0);
4453 SDValue V2 = SVOp->getOperand(1);
4454 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004455 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00004456
Nate Begemanb9a47b82009-02-23 08:49:38 +00004457 // Determine if more than 1 of the words in each of the low and high quadwords
4458 // of the result come from the same quadword of one of the two inputs. Undef
4459 // mask values count as coming from any quadword, for better codegen.
4460 SmallVector<unsigned, 4> LoQuad(4);
4461 SmallVector<unsigned, 4> HiQuad(4);
4462 BitVector InputQuads(4);
4463 for (unsigned i = 0; i < 8; ++i) {
4464 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00004465 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004466 MaskVals.push_back(EltIdx);
4467 if (EltIdx < 0) {
4468 ++Quad[0];
4469 ++Quad[1];
4470 ++Quad[2];
4471 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00004472 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004473 }
4474 ++Quad[EltIdx / 4];
4475 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00004476 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004477
Nate Begemanb9a47b82009-02-23 08:49:38 +00004478 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004479 unsigned MaxQuad = 1;
4480 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004481 if (LoQuad[i] > MaxQuad) {
4482 BestLoQuad = i;
4483 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004484 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004485 }
4486
Nate Begemanb9a47b82009-02-23 08:49:38 +00004487 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004488 MaxQuad = 1;
4489 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004490 if (HiQuad[i] > MaxQuad) {
4491 BestHiQuad = i;
4492 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004493 }
4494 }
4495
Nate Begemanb9a47b82009-02-23 08:49:38 +00004496 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00004497 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00004498 // single pshufb instruction is necessary. If There are more than 2 input
4499 // quads, disable the next transformation since it does not help SSSE3.
4500 bool V1Used = InputQuads[0] || InputQuads[1];
4501 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004502 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004503 if (InputQuads.count() == 2 && V1Used && V2Used) {
4504 BestLoQuad = InputQuads.find_first();
4505 BestHiQuad = InputQuads.find_next(BestLoQuad);
4506 }
4507 if (InputQuads.count() > 2) {
4508 BestLoQuad = -1;
4509 BestHiQuad = -1;
4510 }
4511 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004512
Nate Begemanb9a47b82009-02-23 08:49:38 +00004513 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
4514 // the shuffle mask. If a quad is scored as -1, that means that it contains
4515 // words from all 4 input quadwords.
4516 SDValue NewV;
4517 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004518 SmallVector<int, 8> MaskV;
4519 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
4520 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00004521 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004522 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
4523 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
4524 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004525
Nate Begemanb9a47b82009-02-23 08:49:38 +00004526 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
4527 // source words for the shuffle, to aid later transformations.
4528 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00004529 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00004530 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004531 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00004532 if (idx != (int)i)
4533 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004534 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00004535 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004536 AllWordsInNewV = false;
4537 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00004538 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004539
Nate Begemanb9a47b82009-02-23 08:49:38 +00004540 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
4541 if (AllWordsInNewV) {
4542 for (int i = 0; i != 8; ++i) {
4543 int idx = MaskVals[i];
4544 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004545 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004546 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004547 if ((idx != i) && idx < 4)
4548 pshufhw = false;
4549 if ((idx != i) && idx > 3)
4550 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00004551 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00004552 V1 = NewV;
4553 V2Used = false;
4554 BestLoQuad = 0;
4555 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004556 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004557
Nate Begemanb9a47b82009-02-23 08:49:38 +00004558 // If we've eliminated the use of V2, and the new mask is a pshuflw or
4559 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00004560 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004561 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
4562 unsigned TargetMask = 0;
4563 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00004564 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004565 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
4566 X86::getShufflePSHUFLWImmediate(NewV.getNode());
4567 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004568 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00004569 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004570 }
Eric Christopherfd179292009-08-27 18:07:15 +00004571
Nate Begemanb9a47b82009-02-23 08:49:38 +00004572 // If we have SSSE3, and all words of the result are from 1 input vector,
4573 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
4574 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004575 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004576 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004577
Nate Begemanb9a47b82009-02-23 08:49:38 +00004578 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00004579 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00004580 // mask, and elements that come from V1 in the V2 mask, so that the two
4581 // results can be OR'd together.
4582 bool TwoInputs = V1Used && V2Used;
4583 for (unsigned i = 0; i != 8; ++i) {
4584 int EltIdx = MaskVals[i] * 2;
4585 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004586 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4587 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004588 continue;
4589 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004590 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
4591 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004592 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004593 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004594 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004595 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004596 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004597 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004598 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004599
Nate Begemanb9a47b82009-02-23 08:49:38 +00004600 // Calculate the shuffle mask for the second input, shuffle it, and
4601 // OR it with the first shuffled input.
4602 pshufbMask.clear();
4603 for (unsigned i = 0; i != 8; ++i) {
4604 int EltIdx = MaskVals[i] * 2;
4605 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004606 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4607 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004608 continue;
4609 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004610 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
4611 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004612 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004613 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00004614 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004615 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004616 MVT::v16i8, &pshufbMask[0], 16));
4617 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004618 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004619 }
4620
4621 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
4622 // and update MaskVals with new element order.
4623 BitVector InOrder(8);
4624 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004625 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004626 for (int i = 0; i != 4; ++i) {
4627 int idx = MaskVals[i];
4628 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004629 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004630 InOrder.set(i);
4631 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004632 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004633 InOrder.set(i);
4634 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004635 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004636 }
4637 }
4638 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004639 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00004640 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004641 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004642
4643 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4644 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
4645 NewV.getOperand(0),
4646 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
4647 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004648 }
Eric Christopherfd179292009-08-27 18:07:15 +00004649
Nate Begemanb9a47b82009-02-23 08:49:38 +00004650 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
4651 // and update MaskVals with the new element order.
4652 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004653 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004654 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004655 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004656 for (unsigned i = 4; i != 8; ++i) {
4657 int idx = MaskVals[i];
4658 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004659 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004660 InOrder.set(i);
4661 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004662 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004663 InOrder.set(i);
4664 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004665 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004666 }
4667 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004668 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004669 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004670
4671 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4672 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
4673 NewV.getOperand(0),
4674 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
4675 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004676 }
Eric Christopherfd179292009-08-27 18:07:15 +00004677
Nate Begemanb9a47b82009-02-23 08:49:38 +00004678 // In case BestHi & BestLo were both -1, which means each quadword has a word
4679 // from each of the four input quadwords, calculate the InOrder bitvector now
4680 // before falling through to the insert/extract cleanup.
4681 if (BestLoQuad == -1 && BestHiQuad == -1) {
4682 NewV = V1;
4683 for (int i = 0; i != 8; ++i)
4684 if (MaskVals[i] < 0 || MaskVals[i] == i)
4685 InOrder.set(i);
4686 }
Eric Christopherfd179292009-08-27 18:07:15 +00004687
Nate Begemanb9a47b82009-02-23 08:49:38 +00004688 // The other elements are put in the right place using pextrw and pinsrw.
4689 for (unsigned i = 0; i != 8; ++i) {
4690 if (InOrder[i])
4691 continue;
4692 int EltIdx = MaskVals[i];
4693 if (EltIdx < 0)
4694 continue;
4695 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004696 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004697 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00004698 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004699 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00004700 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004701 DAG.getIntPtrConstant(i));
4702 }
4703 return NewV;
4704}
4705
4706// v16i8 shuffles - Prefer shuffles in the following order:
4707// 1. [ssse3] 1 x pshufb
4708// 2. [ssse3] 2 x pshufb + 1 x por
4709// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
4710static
Nate Begeman9008ca62009-04-27 18:41:29 +00004711SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00004712 SelectionDAG &DAG,
4713 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004714 SDValue V1 = SVOp->getOperand(0);
4715 SDValue V2 = SVOp->getOperand(1);
4716 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004717 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00004718 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00004719
Nate Begemanb9a47b82009-02-23 08:49:38 +00004720 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00004721 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00004722 // present, fall back to case 3.
4723 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
4724 bool V1Only = true;
4725 bool V2Only = true;
4726 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004727 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00004728 if (EltIdx < 0)
4729 continue;
4730 if (EltIdx < 16)
4731 V2Only = false;
4732 else
4733 V1Only = false;
4734 }
Eric Christopherfd179292009-08-27 18:07:15 +00004735
Nate Begemanb9a47b82009-02-23 08:49:38 +00004736 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
4737 if (TLI.getSubtarget()->hasSSSE3()) {
4738 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004739
Nate Begemanb9a47b82009-02-23 08:49:38 +00004740 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00004741 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004742 //
4743 // Otherwise, we have elements from both input vectors, and must zero out
4744 // elements that come from V2 in the first mask, and V1 in the second mask
4745 // so that we can OR them together.
4746 bool TwoInputs = !(V1Only || V2Only);
4747 for (unsigned i = 0; i != 16; ++i) {
4748 int EltIdx = MaskVals[i];
4749 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004750 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004751 continue;
4752 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004753 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004754 }
4755 // If all the elements are from V2, assign it to V1 and return after
4756 // building the first pshufb.
4757 if (V2Only)
4758 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00004759 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004760 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004761 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004762 if (!TwoInputs)
4763 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00004764
Nate Begemanb9a47b82009-02-23 08:49:38 +00004765 // Calculate the shuffle mask for the second input, shuffle it, and
4766 // OR it with the first shuffled input.
4767 pshufbMask.clear();
4768 for (unsigned i = 0; i != 16; ++i) {
4769 int EltIdx = MaskVals[i];
4770 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004771 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004772 continue;
4773 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004774 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004775 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004776 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004777 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004778 MVT::v16i8, &pshufbMask[0], 16));
4779 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004780 }
Eric Christopherfd179292009-08-27 18:07:15 +00004781
Nate Begemanb9a47b82009-02-23 08:49:38 +00004782 // No SSSE3 - Calculate in place words and then fix all out of place words
4783 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
4784 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004785 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
4786 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004787 SDValue NewV = V2Only ? V2 : V1;
4788 for (int i = 0; i != 8; ++i) {
4789 int Elt0 = MaskVals[i*2];
4790 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00004791
Nate Begemanb9a47b82009-02-23 08:49:38 +00004792 // This word of the result is all undef, skip it.
4793 if (Elt0 < 0 && Elt1 < 0)
4794 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004795
Nate Begemanb9a47b82009-02-23 08:49:38 +00004796 // This word of the result is already in the correct place, skip it.
4797 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
4798 continue;
4799 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
4800 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004801
Nate Begemanb9a47b82009-02-23 08:49:38 +00004802 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
4803 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
4804 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00004805
4806 // If Elt0 and Elt1 are defined, are consecutive, and can be load
4807 // using a single extract together, load it and store it.
4808 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004809 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004810 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00004811 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004812 DAG.getIntPtrConstant(i));
4813 continue;
4814 }
4815
Nate Begemanb9a47b82009-02-23 08:49:38 +00004816 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00004817 // source byte is not also odd, shift the extracted word left 8 bits
4818 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004819 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004820 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004821 DAG.getIntPtrConstant(Elt1 / 2));
4822 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004823 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004824 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004825 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004826 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
4827 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004828 }
4829 // If Elt0 is defined, extract it from the appropriate source. If the
4830 // source byte is not also even, shift the extracted word right 8 bits. If
4831 // Elt1 was also defined, OR the extracted values together before
4832 // inserting them in the result.
4833 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004834 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004835 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
4836 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004837 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004838 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004839 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004840 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
4841 DAG.getConstant(0x00FF, MVT::i16));
4842 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00004843 : InsElt0;
4844 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004845 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004846 DAG.getIntPtrConstant(i));
4847 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004848 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004849}
4850
Evan Cheng7a831ce2007-12-15 03:00:47 +00004851/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004852/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00004853/// done when every pair / quad of shuffle mask elements point to elements in
4854/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004855/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00004856static
Nate Begeman9008ca62009-04-27 18:41:29 +00004857SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00004858 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00004859 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00004860 SDValue V1 = SVOp->getOperand(0);
4861 SDValue V2 = SVOp->getOperand(1);
4862 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00004863 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004864 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00004865 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004866 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00004867 case MVT::v4f32: NewVT = MVT::v2f64; break;
4868 case MVT::v4i32: NewVT = MVT::v2i64; break;
4869 case MVT::v8i16: NewVT = MVT::v4i32; break;
4870 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00004871 }
4872
Nate Begeman9008ca62009-04-27 18:41:29 +00004873 int Scale = NumElems / NewWidth;
4874 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00004875 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004876 int StartIdx = -1;
4877 for (int j = 0; j < Scale; ++j) {
4878 int EltIdx = SVOp->getMaskElt(i+j);
4879 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004880 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00004881 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00004882 StartIdx = EltIdx - (EltIdx % Scale);
4883 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00004884 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00004885 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004886 if (StartIdx == -1)
4887 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00004888 else
Nate Begeman9008ca62009-04-27 18:41:29 +00004889 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004890 }
4891
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004892 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
4893 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00004894 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004895}
4896
Evan Chengd880b972008-05-09 21:53:03 +00004897/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004898///
Owen Andersone50ed302009-08-10 22:56:29 +00004899static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004900 SDValue SrcOp, SelectionDAG &DAG,
4901 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004902 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004903 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00004904 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00004905 LD = dyn_cast<LoadSDNode>(SrcOp);
4906 if (!LD) {
4907 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
4908 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00004909 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00004910 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00004911 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004912 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00004913 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004914 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00004915 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004916 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004917 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
4918 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4919 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00004920 SrcOp.getOperand(0)
4921 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004922 }
4923 }
4924 }
4925
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004926 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004927 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004928 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00004929 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004930}
4931
Evan Chengace3c172008-07-22 21:13:36 +00004932/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
4933/// shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004934static SDValue
Nate Begeman9008ca62009-04-27 18:41:29 +00004935LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
4936 SDValue V1 = SVOp->getOperand(0);
4937 SDValue V2 = SVOp->getOperand(1);
4938 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00004939 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00004940
Evan Chengace3c172008-07-22 21:13:36 +00004941 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00004942 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00004943 SmallVector<int, 8> Mask1(4U, -1);
4944 SmallVector<int, 8> PermMask;
4945 SVOp->getMask(PermMask);
4946
Evan Chengace3c172008-07-22 21:13:36 +00004947 unsigned NumHi = 0;
4948 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00004949 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004950 int Idx = PermMask[i];
4951 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00004952 Locs[i] = std::make_pair(-1, -1);
4953 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004954 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
4955 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00004956 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00004957 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004958 NumLo++;
4959 } else {
4960 Locs[i] = std::make_pair(1, NumHi);
4961 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00004962 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004963 NumHi++;
4964 }
4965 }
4966 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004967
Evan Chengace3c172008-07-22 21:13:36 +00004968 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004969 // If no more than two elements come from either vector. This can be
4970 // implemented with two shuffles. First shuffle gather the elements.
4971 // The second shuffle, which takes the first shuffle as both of its
4972 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00004973 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004974
Nate Begeman9008ca62009-04-27 18:41:29 +00004975 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00004976
Evan Chengace3c172008-07-22 21:13:36 +00004977 for (unsigned i = 0; i != 4; ++i) {
4978 if (Locs[i].first == -1)
4979 continue;
4980 else {
4981 unsigned Idx = (i < 2) ? 0 : 4;
4982 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00004983 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004984 }
4985 }
4986
Nate Begeman9008ca62009-04-27 18:41:29 +00004987 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004988 } else if (NumLo == 3 || NumHi == 3) {
4989 // Otherwise, we must have three elements from one vector, call it X, and
4990 // one element from the other, call it Y. First, use a shufps to build an
4991 // intermediate vector with the one element from Y and the element from X
4992 // that will be in the same half in the final destination (the indexes don't
4993 // matter). Then, use a shufps to build the final vector, taking the half
4994 // containing the element from Y from the intermediate, and the other half
4995 // from X.
4996 if (NumHi == 3) {
4997 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00004998 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004999 std::swap(V1, V2);
5000 }
5001
5002 // Find the element from V2.
5003 unsigned HiIndex;
5004 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005005 int Val = PermMask[HiIndex];
5006 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005007 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005008 if (Val >= 4)
5009 break;
5010 }
5011
Nate Begeman9008ca62009-04-27 18:41:29 +00005012 Mask1[0] = PermMask[HiIndex];
5013 Mask1[1] = -1;
5014 Mask1[2] = PermMask[HiIndex^1];
5015 Mask1[3] = -1;
5016 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005017
5018 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005019 Mask1[0] = PermMask[0];
5020 Mask1[1] = PermMask[1];
5021 Mask1[2] = HiIndex & 1 ? 6 : 4;
5022 Mask1[3] = HiIndex & 1 ? 4 : 6;
5023 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005024 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005025 Mask1[0] = HiIndex & 1 ? 2 : 0;
5026 Mask1[1] = HiIndex & 1 ? 0 : 2;
5027 Mask1[2] = PermMask[2];
5028 Mask1[3] = PermMask[3];
5029 if (Mask1[2] >= 0)
5030 Mask1[2] += 4;
5031 if (Mask1[3] >= 0)
5032 Mask1[3] += 4;
5033 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005034 }
Evan Chengace3c172008-07-22 21:13:36 +00005035 }
5036
5037 // Break it into (shuffle shuffle_hi, shuffle_lo).
5038 Locs.clear();
Nate Begeman9008ca62009-04-27 18:41:29 +00005039 SmallVector<int,8> LoMask(4U, -1);
5040 SmallVector<int,8> HiMask(4U, -1);
5041
5042 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005043 unsigned MaskIdx = 0;
5044 unsigned LoIdx = 0;
5045 unsigned HiIdx = 2;
5046 for (unsigned i = 0; i != 4; ++i) {
5047 if (i == 2) {
5048 MaskPtr = &HiMask;
5049 MaskIdx = 1;
5050 LoIdx = 0;
5051 HiIdx = 2;
5052 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005053 int Idx = PermMask[i];
5054 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005055 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005056 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005057 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005058 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005059 LoIdx++;
5060 } else {
5061 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005062 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005063 HiIdx++;
5064 }
5065 }
5066
Nate Begeman9008ca62009-04-27 18:41:29 +00005067 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5068 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5069 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005070 for (unsigned i = 0; i != 4; ++i) {
5071 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005072 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005073 } else {
5074 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005075 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005076 }
5077 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005078 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005079}
5080
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005081static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005082 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005083 V = V.getOperand(0);
5084 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5085 V = V.getOperand(0);
5086 if (MayFoldLoad(V))
5087 return true;
5088 return false;
5089}
5090
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005091// FIXME: the version above should always be used. Since there's
5092// a bug where several vector shuffles can't be folded because the
5093// DAG is not updated during lowering and a node claims to have two
5094// uses while it only has one, use this version, and let isel match
5095// another instruction if the load really happens to have more than
5096// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005097// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005098static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005099 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005100 V = V.getOperand(0);
5101 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5102 V = V.getOperand(0);
5103 if (ISD::isNormalLoad(V.getNode()))
5104 return true;
5105 return false;
5106}
5107
5108/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5109/// a vector extract, and if both can be later optimized into a single load.
5110/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5111/// here because otherwise a target specific shuffle node is going to be
5112/// emitted for this shuffle, and the optimization not done.
5113/// FIXME: This is probably not the best approach, but fix the problem
5114/// until the right path is decided.
5115static
5116bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5117 const TargetLowering &TLI) {
5118 EVT VT = V.getValueType();
5119 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5120
5121 // Be sure that the vector shuffle is present in a pattern like this:
5122 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5123 if (!V.hasOneUse())
5124 return false;
5125
5126 SDNode *N = *V.getNode()->use_begin();
5127 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5128 return false;
5129
5130 SDValue EltNo = N->getOperand(1);
5131 if (!isa<ConstantSDNode>(EltNo))
5132 return false;
5133
5134 // If the bit convert changed the number of elements, it is unsafe
5135 // to examine the mask.
5136 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005137 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005138 EVT SrcVT = V.getOperand(0).getValueType();
5139 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5140 return false;
5141 V = V.getOperand(0);
5142 HasShuffleIntoBitcast = true;
5143 }
5144
5145 // Select the input vector, guarding against out of range extract vector.
5146 unsigned NumElems = VT.getVectorNumElements();
5147 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5148 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5149 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5150
5151 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005152 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005153 V = V.getOperand(0);
5154
5155 if (ISD::isNormalLoad(V.getNode())) {
5156 // Is the original load suitable?
5157 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5158
5159 // FIXME: avoid the multi-use bug that is preventing lots of
5160 // of foldings to be detected, this is still wrong of course, but
5161 // give the temporary desired behavior, and if it happens that
5162 // the load has real more uses, during isel it will not fold, and
5163 // will generate poor code.
5164 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5165 return false;
5166
5167 if (!HasShuffleIntoBitcast)
5168 return true;
5169
5170 // If there's a bitcast before the shuffle, check if the load type and
5171 // alignment is valid.
5172 unsigned Align = LN0->getAlignment();
5173 unsigned NewAlign =
5174 TLI.getTargetData()->getABITypeAlignment(
5175 VT.getTypeForEVT(*DAG.getContext()));
5176
5177 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5178 return false;
5179 }
5180
5181 return true;
5182}
5183
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005184static
Evan Cheng835580f2010-10-07 20:50:20 +00005185SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5186 EVT VT = Op.getValueType();
5187
5188 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005189 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
5190 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00005191 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5192 V1, DAG));
5193}
5194
5195static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005196SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5197 bool HasSSE2) {
5198 SDValue V1 = Op.getOperand(0);
5199 SDValue V2 = Op.getOperand(1);
5200 EVT VT = Op.getValueType();
5201
5202 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5203
5204 if (HasSSE2 && VT == MVT::v2f64)
5205 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5206
5207 // v4f32 or v4i32
5208 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5209}
5210
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005211static
5212SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5213 SDValue V1 = Op.getOperand(0);
5214 SDValue V2 = Op.getOperand(1);
5215 EVT VT = Op.getValueType();
5216
5217 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5218 "unsupported shuffle type");
5219
5220 if (V2.getOpcode() == ISD::UNDEF)
5221 V2 = V1;
5222
5223 // v4i32 or v4f32
5224 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5225}
5226
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005227static
5228SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5229 SDValue V1 = Op.getOperand(0);
5230 SDValue V2 = Op.getOperand(1);
5231 EVT VT = Op.getValueType();
5232 unsigned NumElems = VT.getVectorNumElements();
5233
5234 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5235 // operand of these instructions is only memory, so check if there's a
5236 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5237 // same masks.
5238 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005239
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005240 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005241 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005242 CanFoldLoad = true;
5243
5244 // When V1 is a load, it can be folded later into a store in isel, example:
5245 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5246 // turns into:
5247 // (MOVLPSmr addr:$src1, VR128:$src2)
5248 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005249 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005250 CanFoldLoad = true;
5251
5252 if (CanFoldLoad) {
5253 if (HasSSE2 && NumElems == 2)
5254 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5255
5256 if (NumElems == 4)
5257 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5258 }
5259
5260 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5261 // movl and movlp will both match v2i64, but v2i64 is never matched by
5262 // movl earlier because we make it strict to avoid messing with the movlp load
5263 // folding logic (see the code above getMOVLP call). Match it here then,
5264 // this is horrible, but will stay like this until we move all shuffle
5265 // matching to x86 specific nodes. Note that for the 1st condition all
5266 // types are matched with movsd.
5267 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5268 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5269 else if (HasSSE2)
5270 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5271
5272
5273 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5274
5275 // Invert the operand order and use SHUFPS to match it.
5276 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5277 X86::getShuffleSHUFImmediate(SVOp), DAG);
5278}
5279
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005280static inline unsigned getUNPCKLOpcode(EVT VT) {
5281 switch(VT.getSimpleVT().SimpleTy) {
5282 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5283 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
5284 case MVT::v4f32: return X86ISD::UNPCKLPS;
5285 case MVT::v2f64: return X86ISD::UNPCKLPD;
5286 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5287 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5288 default:
5289 llvm_unreachable("Unknow type for unpckl");
5290 }
5291 return 0;
5292}
5293
5294static inline unsigned getUNPCKHOpcode(EVT VT) {
5295 switch(VT.getSimpleVT().SimpleTy) {
5296 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5297 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5298 case MVT::v4f32: return X86ISD::UNPCKHPS;
5299 case MVT::v2f64: return X86ISD::UNPCKHPD;
5300 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5301 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5302 default:
5303 llvm_unreachable("Unknow type for unpckh");
5304 }
5305 return 0;
5306}
5307
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005308static
5309SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005310 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005311 const X86Subtarget *Subtarget) {
5312 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5313 EVT VT = Op.getValueType();
5314 DebugLoc dl = Op.getDebugLoc();
5315 SDValue V1 = Op.getOperand(0);
5316 SDValue V2 = Op.getOperand(1);
5317
5318 if (isZeroShuffle(SVOp))
5319 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5320
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005321 // Handle splat operations
5322 if (SVOp->isSplat()) {
5323 // Special case, this is the only place now where it's
5324 // allowed to return a vector_shuffle operation without
5325 // using a target specific node, because *hopefully* it
5326 // will be optimized away by the dag combiner.
5327 if (VT.getVectorNumElements() <= 4 &&
5328 CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
5329 return Op;
5330
5331 // Handle splats by matching through known masks
5332 if (VT.getVectorNumElements() <= 4)
5333 return SDValue();
5334
Evan Cheng835580f2010-10-07 20:50:20 +00005335 // Canonicalize all of the remaining to v4f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005336 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005337 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005338
5339 // If the shuffle can be profitably rewritten as a narrower shuffle, then
5340 // do it!
5341 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
5342 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5343 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005344 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005345 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
5346 // FIXME: Figure out a cleaner way to do this.
5347 // Try to make use of movq to zero out the top part.
5348 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
5349 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5350 if (NewOp.getNode()) {
5351 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
5352 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
5353 DAG, Subtarget, dl);
5354 }
5355 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
5356 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5357 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
5358 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
5359 DAG, Subtarget, dl);
5360 }
5361 }
5362 return SDValue();
5363}
5364
Dan Gohman475871a2008-07-27 21:46:04 +00005365SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005366X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00005367 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005368 SDValue V1 = Op.getOperand(0);
5369 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005370 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005371 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00005372 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005373 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005374 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
5375 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00005376 bool V1IsSplat = false;
5377 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005378 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005379 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005380 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005381 MachineFunction &MF = DAG.getMachineFunction();
5382 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005383
Dale Johannesen0488fb62010-09-30 23:57:10 +00005384 // Shuffle operations on MMX not supported.
5385 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00005386 return Op;
5387
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005388 // Vector shuffle lowering takes 3 steps:
5389 //
5390 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
5391 // narrowing and commutation of operands should be handled.
5392 // 2) Matching of shuffles with known shuffle masks to x86 target specific
5393 // shuffle nodes.
5394 // 3) Rewriting of unmatched masks into new generic shuffle operations,
5395 // so the shuffle can be broken into other shuffles and the legalizer can
5396 // try the lowering again.
5397 //
5398 // The general ideia is that no vector_shuffle operation should be left to
5399 // be matched during isel, all of them must be converted to a target specific
5400 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00005401
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005402 // Normalize the input vectors. Here splats, zeroed vectors, profitable
5403 // narrowing and commutation of operands should be handled. The actual code
5404 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005405 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005406 if (NewOp.getNode())
5407 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00005408
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005409 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
5410 // unpckh_undef). Only use pshufd if speed is more important than size.
5411 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
5412 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5413 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5414 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
5415 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5416 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00005417
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005418 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00005419 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00005420 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005421
Dale Johannesen0488fb62010-09-30 23:57:10 +00005422 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005423 return getMOVHighToLow(Op, dl, DAG);
5424
5425 // Use to match splats
5426 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
5427 (VT == MVT::v2f64 || VT == MVT::v2i64))
5428 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5429
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005430 if (X86::isPSHUFDMask(SVOp)) {
5431 // The actual implementation will match the mask in the if above and then
5432 // during isel it can match several different instructions, not only pshufd
5433 // as its name says, sad but true, emulate the behavior for now...
5434 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
5435 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
5436
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005437 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5438
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005439 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005440 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
5441
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005442 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005443 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
5444 TargetMask, DAG);
5445
5446 if (VT == MVT::v4f32)
5447 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
5448 TargetMask, DAG);
5449 }
Eric Christopherfd179292009-08-27 18:07:15 +00005450
Evan Chengf26ffe92008-05-29 08:22:04 +00005451 // Check if this can be converted into a logical shift.
5452 bool isLeft = false;
5453 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00005454 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00005455 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00005456 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00005457 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005458 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00005459 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005460 EVT EltVT = VT.getVectorElementType();
5461 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005462 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005463 }
Eric Christopherfd179292009-08-27 18:07:15 +00005464
Nate Begeman9008ca62009-04-27 18:41:29 +00005465 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005466 if (V1IsUndef)
5467 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00005468 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00005469 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005470 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005471 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005472 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5473
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005474 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005475 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5476 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00005477 }
Eric Christopherfd179292009-08-27 18:07:15 +00005478
Nate Begeman9008ca62009-04-27 18:41:29 +00005479 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00005480 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
5481 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005482
Dale Johannesen0488fb62010-09-30 23:57:10 +00005483 if (X86::isMOVHLPSMask(SVOp))
5484 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005485
Dale Johannesen0488fb62010-09-30 23:57:10 +00005486 if (X86::isMOVSHDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5487 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005488
Dale Johannesen0488fb62010-09-30 23:57:10 +00005489 if (X86::isMOVSLDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5490 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00005491
Dale Johannesen0488fb62010-09-30 23:57:10 +00005492 if (X86::isMOVLPMask(SVOp))
5493 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005494
Nate Begeman9008ca62009-04-27 18:41:29 +00005495 if (ShouldXformToMOVHLPS(SVOp) ||
5496 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
5497 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005498
Evan Chengf26ffe92008-05-29 08:22:04 +00005499 if (isShift) {
5500 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005501 EVT EltVT = VT.getVectorElementType();
5502 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005503 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005504 }
Eric Christopherfd179292009-08-27 18:07:15 +00005505
Evan Cheng9eca5e82006-10-25 21:49:50 +00005506 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00005507 // FIXME: This should also accept a bitcast of a splat? Be careful, not
5508 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00005509 V1IsSplat = isSplatVector(V1.getNode());
5510 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005511
Chris Lattner8a594482007-11-25 00:24:49 +00005512 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00005513 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005514 Op = CommuteVectorShuffle(SVOp, DAG);
5515 SVOp = cast<ShuffleVectorSDNode>(Op);
5516 V1 = SVOp->getOperand(0);
5517 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00005518 std::swap(V1IsSplat, V2IsSplat);
5519 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005520 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00005521 }
5522
Nate Begeman9008ca62009-04-27 18:41:29 +00005523 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
5524 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00005525 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00005526 return V1;
5527 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
5528 // the instruction selector will not match, so get a canonical MOVL with
5529 // swapped operands to undo the commute.
5530 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00005531 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005532
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005533 if (X86::isUNPCKLMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005534 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005535
5536 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005537 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00005538
Evan Cheng9bbbb982006-10-25 20:48:19 +00005539 if (V2IsSplat) {
5540 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005541 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00005542 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00005543 SDValue NewMask = NormalizeMask(SVOp, DAG);
5544 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
5545 if (NSVOp != SVOp) {
5546 if (X86::isUNPCKLMask(NSVOp, true)) {
5547 return NewMask;
5548 } else if (X86::isUNPCKHMask(NSVOp, true)) {
5549 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005550 }
5551 }
5552 }
5553
Evan Cheng9eca5e82006-10-25 21:49:50 +00005554 if (Commuted) {
5555 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00005556 // FIXME: this seems wrong.
5557 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
5558 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005559
5560 if (X86::isUNPCKLMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005561 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005562
5563 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005564 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005565 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005566
Nate Begeman9008ca62009-04-27 18:41:29 +00005567 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00005568 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00005569 return CommuteVectorShuffle(SVOp, DAG);
5570
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00005571 // The checks below are all present in isShuffleMaskLegal, but they are
5572 // inlined here right now to enable us to directly emit target specific
5573 // nodes, and remove one by one until they don't return Op anymore.
5574 SmallVector<int, 16> M;
5575 SVOp->getMask(M);
5576
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005577 if (isPALIGNRMask(M, VT, HasSSSE3))
5578 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
5579 X86::getShufflePALIGNRImmediate(SVOp),
5580 DAG);
5581
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00005582 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
5583 SVOp->getSplatIndex() == 0 && V2IsUndef) {
5584 if (VT == MVT::v2f64)
5585 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
5586 if (VT == MVT::v2i64)
5587 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
5588 }
5589
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00005590 if (isPSHUFHWMask(M, VT))
5591 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
5592 X86::getShufflePSHUFHWImmediate(SVOp),
5593 DAG);
5594
5595 if (isPSHUFLWMask(M, VT))
5596 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
5597 X86::getShufflePSHUFLWImmediate(SVOp),
5598 DAG);
5599
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00005600 if (isSHUFPMask(M, VT)) {
5601 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5602 if (VT == MVT::v4f32 || VT == MVT::v4i32)
5603 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
5604 TargetMask, DAG);
5605 if (VT == MVT::v2f64 || VT == MVT::v2i64)
5606 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
5607 TargetMask, DAG);
5608 }
5609
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005610 if (X86::isUNPCKL_v_undef_Mask(SVOp))
5611 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5612 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5613 if (X86::isUNPCKH_v_undef_Mask(SVOp))
5614 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5615 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5616
Evan Cheng14b32e12007-12-11 01:46:18 +00005617 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
Owen Anderson825b72b2009-08-11 20:47:22 +00005618 if (VT == MVT::v8i16) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005619 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005620 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00005621 return NewOp;
5622 }
5623
Owen Anderson825b72b2009-08-11 20:47:22 +00005624 if (VT == MVT::v16i8) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005625 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005626 if (NewOp.getNode())
5627 return NewOp;
5628 }
Eric Christopherfd179292009-08-27 18:07:15 +00005629
Dale Johannesen0488fb62010-09-30 23:57:10 +00005630 // Handle all 4 wide cases with a number of shuffles.
5631 if (NumElems == 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005632 return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005633
Dan Gohman475871a2008-07-27 21:46:04 +00005634 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005635}
5636
Dan Gohman475871a2008-07-27 21:46:04 +00005637SDValue
5638X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005639 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005640 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005641 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005642 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005643 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005644 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005645 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005646 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005647 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005648 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00005649 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
5650 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
5651 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005652 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5653 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005654 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005655 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00005656 Op.getOperand(0)),
5657 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00005658 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005659 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005660 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005661 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005662 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00005663 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00005664 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
5665 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005666 // result has a single use which is a store or a bitcast to i32. And in
5667 // the case of a store, it's not worth it if the index is a constant 0,
5668 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00005669 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00005670 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00005671 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005672 if ((User->getOpcode() != ISD::STORE ||
5673 (isa<ConstantSDNode>(Op.getOperand(1)) &&
5674 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005675 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005676 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00005677 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00005678 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005679 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00005680 Op.getOperand(0)),
5681 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005682 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00005683 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00005684 // ExtractPS works with constant index.
5685 if (isa<ConstantSDNode>(Op.getOperand(1)))
5686 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005687 }
Dan Gohman475871a2008-07-27 21:46:04 +00005688 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005689}
5690
5691
Dan Gohman475871a2008-07-27 21:46:04 +00005692SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005693X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
5694 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005695 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00005696 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005697
Evan Cheng62a3f152008-03-24 21:52:23 +00005698 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005699 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005700 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00005701 return Res;
5702 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00005703
Owen Andersone50ed302009-08-10 22:56:29 +00005704 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005705 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005706 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005707 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005708 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005709 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005710 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005711 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5712 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005713 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005714 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00005715 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005716 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00005717 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00005718 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005719 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00005720 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005721 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005722 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005723 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005724 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005725 if (Idx == 0)
5726 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00005727
Evan Cheng0db9fe62006-04-25 20:13:52 +00005728 // SHUFPS the element to the lowest double word, then movss.
Nate Begeman9008ca62009-04-27 18:41:29 +00005729 int Mask[4] = { Idx, -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005730 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005731 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005732 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005733 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005734 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00005735 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005736 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
5737 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
5738 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005739 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005740 if (Idx == 0)
5741 return Op;
5742
5743 // UNPCKHPD the element to the lowest double word, then movsd.
5744 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
5745 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00005746 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005747 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005748 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005749 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005750 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005751 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005752 }
5753
Dan Gohman475871a2008-07-27 21:46:04 +00005754 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005755}
5756
Dan Gohman475871a2008-07-27 21:46:04 +00005757SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005758X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
5759 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005760 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005761 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005762 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005763
Dan Gohman475871a2008-07-27 21:46:04 +00005764 SDValue N0 = Op.getOperand(0);
5765 SDValue N1 = Op.getOperand(1);
5766 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00005767
Dan Gohman8a55ce42009-09-23 21:02:20 +00005768 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00005769 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005770 unsigned Opc;
5771 if (VT == MVT::v8i16)
5772 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005773 else if (VT == MVT::v16i8)
5774 Opc = X86ISD::PINSRB;
5775 else
5776 Opc = X86ISD::PINSRB;
5777
Nate Begeman14d12ca2008-02-11 04:19:36 +00005778 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
5779 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005780 if (N1.getValueType() != MVT::i32)
5781 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5782 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005783 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00005784 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005785 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005786 // Bits [7:6] of the constant are the source select. This will always be
5787 // zero here. The DAG Combiner may combine an extract_elt index into these
5788 // bits. For example (insert (extract, 3), 2) could be matched by putting
5789 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00005790 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00005791 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00005792 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00005793 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005794 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00005795 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00005796 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00005797 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005798 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00005799 // PINSR* works with constant index.
5800 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005801 }
Dan Gohman475871a2008-07-27 21:46:04 +00005802 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005803}
5804
Dan Gohman475871a2008-07-27 21:46:04 +00005805SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005806X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005807 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005808 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005809
5810 if (Subtarget->hasSSE41())
5811 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
5812
Dan Gohman8a55ce42009-09-23 21:02:20 +00005813 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00005814 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00005815
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005816 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00005817 SDValue N0 = Op.getOperand(0);
5818 SDValue N1 = Op.getOperand(1);
5819 SDValue N2 = Op.getOperand(2);
Evan Cheng794405e2007-12-12 07:55:34 +00005820
Dan Gohman8a55ce42009-09-23 21:02:20 +00005821 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00005822 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
5823 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005824 if (N1.getValueType() != MVT::i32)
5825 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5826 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005827 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00005828 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005829 }
Dan Gohman475871a2008-07-27 21:46:04 +00005830 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005831}
5832
Dan Gohman475871a2008-07-27 21:46:04 +00005833SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005834X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005835 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005836
Chris Lattnerf172ecd2010-07-04 23:07:25 +00005837 if (Op.getValueType() == MVT::v1i64 &&
5838 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00005839 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00005840
Owen Anderson825b72b2009-08-11 20:47:22 +00005841 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00005842 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
5843 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005844 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00005845 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005846}
5847
Bill Wendling056292f2008-09-16 21:48:12 +00005848// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
5849// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
5850// one of the above mentioned nodes. It has to be wrapped because otherwise
5851// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
5852// be used to form addressing mode. These wrapped nodes will be selected
5853// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00005854SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005855X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005856 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005857
Chris Lattner41621a22009-06-26 19:22:52 +00005858 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5859 // global base reg.
5860 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00005861 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005862 CodeModel::Model M = getTargetMachine().getCodeModel();
5863
Chris Lattner4f066492009-07-11 20:29:19 +00005864 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005865 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005866 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005867 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005868 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005869 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005870 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005871
Evan Cheng1606e8e2009-03-13 07:51:59 +00005872 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00005873 CP->getAlignment(),
5874 CP->getOffset(), OpFlag);
5875 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00005876 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005877 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00005878 if (OpFlag) {
5879 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005880 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005881 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005882 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005883 }
5884
5885 return Result;
5886}
5887
Dan Gohmand858e902010-04-17 15:26:15 +00005888SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005889 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005890
Chris Lattner18c59872009-06-27 04:16:01 +00005891 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5892 // global base reg.
5893 unsigned char OpFlag = 0;
5894 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005895 CodeModel::Model M = getTargetMachine().getCodeModel();
5896
Chris Lattner4f066492009-07-11 20:29:19 +00005897 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005898 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005899 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005900 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005901 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005902 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005903 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005904
Chris Lattner18c59872009-06-27 04:16:01 +00005905 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
5906 OpFlag);
5907 DebugLoc DL = JT->getDebugLoc();
5908 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005909
Chris Lattner18c59872009-06-27 04:16:01 +00005910 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00005911 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00005912 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5913 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005914 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005915 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005916
Chris Lattner18c59872009-06-27 04:16:01 +00005917 return Result;
5918}
5919
5920SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005921X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005922 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00005923
Chris Lattner18c59872009-06-27 04:16:01 +00005924 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5925 // global base reg.
5926 unsigned char OpFlag = 0;
5927 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005928 CodeModel::Model M = getTargetMachine().getCodeModel();
5929
Chris Lattner4f066492009-07-11 20:29:19 +00005930 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005931 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005932 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005933 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005934 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005935 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005936 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005937
Chris Lattner18c59872009-06-27 04:16:01 +00005938 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00005939
Chris Lattner18c59872009-06-27 04:16:01 +00005940 DebugLoc DL = Op.getDebugLoc();
5941 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005942
5943
Chris Lattner18c59872009-06-27 04:16:01 +00005944 // With PIC, the address is actually $g + Offset.
5945 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00005946 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00005947 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5948 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005949 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005950 Result);
5951 }
Eric Christopherfd179292009-08-27 18:07:15 +00005952
Chris Lattner18c59872009-06-27 04:16:01 +00005953 return Result;
5954}
5955
Dan Gohman475871a2008-07-27 21:46:04 +00005956SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005957X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00005958 // Create the TargetBlockAddressAddress node.
5959 unsigned char OpFlags =
5960 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00005961 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00005962 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00005963 DebugLoc dl = Op.getDebugLoc();
5964 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
5965 /*isTarget=*/true, OpFlags);
5966
Dan Gohmanf705adb2009-10-30 01:28:02 +00005967 if (Subtarget->isPICStyleRIPRel() &&
5968 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00005969 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
5970 else
5971 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00005972
Dan Gohman29cbade2009-11-20 23:18:13 +00005973 // With PIC, the address is actually $g + Offset.
5974 if (isGlobalRelativeToPICBase(OpFlags)) {
5975 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
5976 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
5977 Result);
5978 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00005979
5980 return Result;
5981}
5982
5983SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00005984X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00005985 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00005986 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00005987 // Create the TargetGlobalAddress node, folding in the constant
5988 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00005989 unsigned char OpFlags =
5990 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005991 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00005992 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005993 if (OpFlags == X86II::MO_NO_FLAG &&
5994 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00005995 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00005996 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00005997 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00005998 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00005999 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006000 }
Eric Christopherfd179292009-08-27 18:07:15 +00006001
Chris Lattner4f066492009-07-11 20:29:19 +00006002 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006003 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00006004 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6005 else
6006 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00006007
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006008 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00006009 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006010 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6011 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006012 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006013 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006014
Chris Lattner36c25012009-07-10 07:34:39 +00006015 // For globals that require a load from a stub to get the address, emit the
6016 // load.
6017 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006018 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006019 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006020
Dan Gohman6520e202008-10-18 02:06:02 +00006021 // If there was a non-zero offset that we didn't fold, create an explicit
6022 // addition for it.
6023 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006024 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006025 DAG.getConstant(Offset, getPointerTy()));
6026
Evan Cheng0db9fe62006-04-25 20:13:52 +00006027 return Result;
6028}
6029
Evan Chengda43bcf2008-09-24 00:05:32 +00006030SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006031X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006032 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006033 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006034 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006035}
6036
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006037static SDValue
6038GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006039 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006040 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006041 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Owen Anderson825b72b2009-08-11 20:47:22 +00006042 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006043 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006044 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006045 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006046 GA->getOffset(),
6047 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006048 if (InFlag) {
6049 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006050 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006051 } else {
6052 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006053 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006054 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006055
6056 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006057 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006058
Rafael Espindola15f1b662009-04-24 12:59:40 +00006059 SDValue Flag = Chain.getValue(1);
6060 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006061}
6062
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006063// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006064static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006065LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006066 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006067 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006068 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6069 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006070 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006071 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006072 InFlag = Chain.getValue(1);
6073
Chris Lattnerb903bed2009-06-26 21:20:29 +00006074 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006075}
6076
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006077// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006078static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006079LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006080 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006081 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6082 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006083}
6084
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006085// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6086// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006087static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006088 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006089 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006090 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006091
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006092 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6093 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6094 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006095
Michael J. Spencerec38de22010-10-10 22:04:20 +00006096 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006097 DAG.getIntPtrConstant(0),
6098 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006099
Chris Lattnerb903bed2009-06-26 21:20:29 +00006100 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006101 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6102 // initialexec.
6103 unsigned WrapperKind = X86ISD::Wrapper;
6104 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006105 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006106 } else if (is64Bit) {
6107 assert(model == TLSModel::InitialExec);
6108 OperandFlags = X86II::MO_GOTTPOFF;
6109 WrapperKind = X86ISD::WrapperRIP;
6110 } else {
6111 assert(model == TLSModel::InitialExec);
6112 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006113 }
Eric Christopherfd179292009-08-27 18:07:15 +00006114
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006115 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6116 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006117 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006118 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006119 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006120 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006121
Rafael Espindola9a580232009-02-27 13:37:18 +00006122 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006123 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006124 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006125
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006126 // The address of the thread local variable is the add of the thread
6127 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006128 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006129}
6130
Dan Gohman475871a2008-07-27 21:46:04 +00006131SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006132X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006133
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006134 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006135 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006136
Eric Christopher30ef0e52010-06-03 04:07:48 +00006137 if (Subtarget->isTargetELF()) {
6138 // TODO: implement the "local dynamic" model
6139 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006140
Eric Christopher30ef0e52010-06-03 04:07:48 +00006141 // If GV is an alias then use the aliasee for determining
6142 // thread-localness.
6143 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6144 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006145
6146 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006147 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006148
Eric Christopher30ef0e52010-06-03 04:07:48 +00006149 switch (model) {
6150 case TLSModel::GeneralDynamic:
6151 case TLSModel::LocalDynamic: // not implemented
6152 if (Subtarget->is64Bit())
6153 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6154 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006155
Eric Christopher30ef0e52010-06-03 04:07:48 +00006156 case TLSModel::InitialExec:
6157 case TLSModel::LocalExec:
6158 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6159 Subtarget->is64Bit());
6160 }
6161 } else if (Subtarget->isTargetDarwin()) {
6162 // Darwin only has one model of TLS. Lower to that.
6163 unsigned char OpFlag = 0;
6164 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6165 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006166
Eric Christopher30ef0e52010-06-03 04:07:48 +00006167 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6168 // global base reg.
6169 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6170 !Subtarget->is64Bit();
6171 if (PIC32)
6172 OpFlag = X86II::MO_TLVP_PIC_BASE;
6173 else
6174 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006175 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006176 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopher30ef0e52010-06-03 04:07:48 +00006177 getPointerTy(),
6178 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00006179 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006180
Eric Christopher30ef0e52010-06-03 04:07:48 +00006181 // With PIC32, the address is actually $g + Offset.
6182 if (PIC32)
6183 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6184 DAG.getNode(X86ISD::GlobalBaseReg,
6185 DebugLoc(), getPointerTy()),
6186 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006187
Eric Christopher30ef0e52010-06-03 04:07:48 +00006188 // Lowering the machine isd will make sure everything is in the right
6189 // location.
6190 SDValue Args[] = { Offset };
6191 SDValue Chain = DAG.getNode(X86ISD::TLSCALL, DL, MVT::Other, Args, 1);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006192
Eric Christopher30ef0e52010-06-03 04:07:48 +00006193 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
6194 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6195 MFI->setAdjustsStack(true);
Eric Christopherfd179292009-08-27 18:07:15 +00006196
Eric Christopher30ef0e52010-06-03 04:07:48 +00006197 // And our return value (tls address) is in the standard call return value
6198 // location.
6199 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
6200 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006201 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006202
Eric Christopher30ef0e52010-06-03 04:07:48 +00006203 assert(false &&
6204 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00006205
Torok Edwinc23197a2009-07-14 16:55:14 +00006206 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00006207 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006208}
6209
Evan Cheng0db9fe62006-04-25 20:13:52 +00006210
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006211/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00006212/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohmand858e902010-04-17 15:26:15 +00006213SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00006214 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00006215 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006216 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006217 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006218 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00006219 SDValue ShOpLo = Op.getOperand(0);
6220 SDValue ShOpHi = Op.getOperand(1);
6221 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00006222 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00006223 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00006224 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00006225
Dan Gohman475871a2008-07-27 21:46:04 +00006226 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006227 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006228 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
6229 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006230 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006231 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
6232 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006233 }
Evan Chenge3413162006-01-09 18:33:28 +00006234
Owen Anderson825b72b2009-08-11 20:47:22 +00006235 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
6236 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00006237 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00006238 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00006239
Dan Gohman475871a2008-07-27 21:46:04 +00006240 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00006241 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00006242 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
6243 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00006244
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006245 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006246 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6247 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006248 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006249 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6250 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006251 }
6252
Dan Gohman475871a2008-07-27 21:46:04 +00006253 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00006254 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006255}
Evan Chenga3195e82006-01-12 22:54:21 +00006256
Dan Gohmand858e902010-04-17 15:26:15 +00006257SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
6258 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006259 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00006260
Dale Johannesen0488fb62010-09-30 23:57:10 +00006261 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006262 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006263
Owen Anderson825b72b2009-08-11 20:47:22 +00006264 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00006265 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00006266
Eli Friedman36df4992009-05-27 00:47:34 +00006267 // These are really Legal; return the operand so the caller accepts it as
6268 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006269 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00006270 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00006271 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00006272 Subtarget->is64Bit()) {
6273 return Op;
6274 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006275
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006276 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006277 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006278 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00006279 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006280 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00006281 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00006282 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006283 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006284 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006285 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
6286}
Evan Cheng0db9fe62006-04-25 20:13:52 +00006287
Owen Andersone50ed302009-08-10 22:56:29 +00006288SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00006289 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00006290 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006291 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00006292 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00006293 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00006294 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006295 if (useSSE)
Owen Anderson825b72b2009-08-11 20:47:22 +00006296 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
Chris Lattner5a88b832007-02-25 07:10:00 +00006297 else
Owen Anderson825b72b2009-08-11 20:47:22 +00006298 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006299
Chris Lattner492a43e2010-09-22 01:28:21 +00006300 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006301
Chris Lattner492a43e2010-09-22 01:28:21 +00006302 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6303 MachineMemOperand *MMO =
6304 DAG.getMachineFunction()
6305 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6306 MachineMemOperand::MOLoad, ByteSize, ByteSize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006307
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006308 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006309 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
6310 X86ISD::FILD, DL,
6311 Tys, Ops, array_lengthof(Ops),
6312 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006313
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006314 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006315 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00006316 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006317
6318 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
6319 // shouldn't be necessary except that RFP cannot be live across
6320 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006321 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006322 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
6323 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006324 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00006325 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006326 SDValue Ops[] = {
6327 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
6328 };
Chris Lattner492a43e2010-09-22 01:28:21 +00006329 MachineMemOperand *MMO =
6330 DAG.getMachineFunction()
6331 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006332 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006333
Chris Lattner492a43e2010-09-22 01:28:21 +00006334 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
6335 Ops, array_lengthof(Ops),
6336 Op.getValueType(), MMO);
6337 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006338 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006339 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006340 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006341
Evan Cheng0db9fe62006-04-25 20:13:52 +00006342 return Result;
6343}
6344
Bill Wendling8b8a6362009-01-17 03:56:04 +00006345// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006346SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
6347 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00006348 // This algorithm is not obvious. Here it is in C code, more or less:
6349 /*
6350 double uint64_to_double( uint32_t hi, uint32_t lo ) {
6351 static const __m128i exp = { 0x4330000045300000ULL, 0 };
6352 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00006353
Bill Wendling8b8a6362009-01-17 03:56:04 +00006354 // Copy ints to xmm registers.
6355 __m128i xh = _mm_cvtsi32_si128( hi );
6356 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00006357
Bill Wendling8b8a6362009-01-17 03:56:04 +00006358 // Combine into low half of a single xmm register.
6359 __m128i x = _mm_unpacklo_epi32( xh, xl );
6360 __m128d d;
6361 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00006362
Bill Wendling8b8a6362009-01-17 03:56:04 +00006363 // Merge in appropriate exponents to give the integer bits the right
6364 // magnitude.
6365 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00006366
Bill Wendling8b8a6362009-01-17 03:56:04 +00006367 // Subtract away the biases to deal with the IEEE-754 double precision
6368 // implicit 1.
6369 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00006370
Bill Wendling8b8a6362009-01-17 03:56:04 +00006371 // All conversions up to here are exact. The correctly rounded result is
6372 // calculated using the current rounding mode using the following
6373 // horizontal add.
6374 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
6375 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
6376 // store doesn't really need to be here (except
6377 // maybe to zero the other double)
6378 return sd;
6379 }
6380 */
Dale Johannesen040225f2008-10-21 23:07:49 +00006381
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006382 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00006383 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00006384
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006385 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00006386 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00006387 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
6388 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
6389 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
6390 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006391 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006392 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006393
Bill Wendling8b8a6362009-01-17 03:56:04 +00006394 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00006395 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006396 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00006397 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006398 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006399 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006400 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006401
Owen Anderson825b72b2009-08-11 20:47:22 +00006402 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6403 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006404 Op.getOperand(0),
6405 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006406 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6407 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006408 Op.getOperand(0),
6409 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006410 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
6411 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00006412 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006413 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006414 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006415 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00006416 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00006417 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006418 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006419 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006420
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006421 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00006422 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00006423 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
6424 DAG.getUNDEF(MVT::v2f64), ShufMask);
6425 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
6426 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006427 DAG.getIntPtrConstant(0));
6428}
6429
Bill Wendling8b8a6362009-01-17 03:56:04 +00006430// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006431SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
6432 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006433 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006434 // FP constant to bias correct the final result.
6435 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00006436 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006437
6438 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00006439 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6440 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00006441 Op.getOperand(0),
6442 DAG.getIntPtrConstant(0)));
6443
Owen Anderson825b72b2009-08-11 20:47:22 +00006444 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006445 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006446 DAG.getIntPtrConstant(0));
6447
6448 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006449 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006450 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006451 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006452 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006453 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006454 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006455 MVT::v2f64, Bias)));
6456 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006457 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006458 DAG.getIntPtrConstant(0));
6459
6460 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006461 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006462
6463 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00006464 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00006465
Owen Anderson825b72b2009-08-11 20:47:22 +00006466 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006467 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00006468 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00006469 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006470 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00006471 }
6472
6473 // Handle final rounding.
6474 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00006475}
6476
Dan Gohmand858e902010-04-17 15:26:15 +00006477SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
6478 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00006479 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006480 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006481
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006482 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00006483 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
6484 // the optimization here.
6485 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00006486 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00006487
Owen Andersone50ed302009-08-10 22:56:29 +00006488 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006489 EVT DstVT = Op.getValueType();
6490 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006491 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006492 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006493 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00006494
6495 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00006496 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006497 if (SrcVT == MVT::i32) {
6498 SDValue WordOff = DAG.getConstant(4, getPointerTy());
6499 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
6500 getPointerTy(), StackSlot, WordOff);
6501 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006502 StackSlot, MachinePointerInfo(),
6503 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006504 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006505 OffsetSlot, MachinePointerInfo(),
6506 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006507 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
6508 return Fild;
6509 }
6510
6511 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
6512 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006513 StackSlot, MachinePointerInfo(),
6514 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006515 // For i64 source, we need to add the appropriate power of 2 if the input
6516 // was negative. This is the same as the optimization in
6517 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
6518 // we must be careful to do the computation in x87 extended precision, not
6519 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00006520 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6521 MachineMemOperand *MMO =
6522 DAG.getMachineFunction()
6523 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6524 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006525
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006526 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
6527 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006528 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
6529 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006530
6531 APInt FF(32, 0x5F800000ULL);
6532
6533 // Check whether the sign bit is set.
6534 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
6535 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
6536 ISD::SETLT);
6537
6538 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
6539 SDValue FudgePtr = DAG.getConstantPool(
6540 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
6541 getPointerTy());
6542
6543 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
6544 SDValue Zero = DAG.getIntPtrConstant(0);
6545 SDValue Four = DAG.getIntPtrConstant(4);
6546 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
6547 Zero, Four);
6548 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
6549
6550 // Load the value out, extending it from f32 to f80.
6551 // FIXME: Avoid the extend by constructing the right constant pool?
Evan Chengbcc80172010-07-07 22:15:37 +00006552 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, MVT::f80, dl, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00006553 FudgePtr, MachinePointerInfo::getConstantPool(),
6554 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006555 // Extend everything to 80 bits to force it to be done on x87.
6556 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
6557 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00006558}
6559
Dan Gohman475871a2008-07-27 21:46:04 +00006560std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00006561FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00006562 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00006563
Owen Andersone50ed302009-08-10 22:56:29 +00006564 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00006565
6566 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006567 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
6568 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00006569 }
6570
Owen Anderson825b72b2009-08-11 20:47:22 +00006571 assert(DstTy.getSimpleVT() <= MVT::i64 &&
6572 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00006573 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00006574
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006575 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006576 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00006577 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006578 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00006579 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006580 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00006581 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006582 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006583
Evan Cheng87c89352007-10-15 20:11:21 +00006584 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
6585 // stack slot.
6586 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00006587 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00006588 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006589 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00006590
Michael J. Spencerec38de22010-10-10 22:04:20 +00006591
6592
Evan Cheng0db9fe62006-04-25 20:13:52 +00006593 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00006594 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00006595 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00006596 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
6597 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
6598 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006599 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006600
Dan Gohman475871a2008-07-27 21:46:04 +00006601 SDValue Chain = DAG.getEntryNode();
6602 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00006603 EVT TheVT = Op.getOperand(0).getValueType();
6604 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006605 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00006606 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006607 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006608 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00006609 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00006610 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00006611 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00006612 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00006613
Chris Lattner492a43e2010-09-22 01:28:21 +00006614 MachineMemOperand *MMO =
6615 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6616 MachineMemOperand::MOLoad, MemSize, MemSize);
6617 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
6618 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006619 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00006620 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006621 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
6622 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006623
Chris Lattner07290932010-09-22 01:05:16 +00006624 MachineMemOperand *MMO =
6625 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6626 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006627
Evan Cheng0db9fe62006-04-25 20:13:52 +00006628 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00006629 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00006630 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
6631 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00006632
Chris Lattner27a6c732007-11-24 07:07:01 +00006633 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006634}
6635
Dan Gohmand858e902010-04-17 15:26:15 +00006636SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
6637 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00006638 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006639 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006640
Eli Friedman948e95a2009-05-23 09:59:16 +00006641 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00006642 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00006643 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
6644 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00006645
Chris Lattner27a6c732007-11-24 07:07:01 +00006646 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006647 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006648 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00006649}
6650
Dan Gohmand858e902010-04-17 15:26:15 +00006651SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
6652 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00006653 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
6654 SDValue FIST = Vals.first, StackSlot = Vals.second;
6655 assert(FIST.getNode() && "Unexpected failure");
6656
6657 // Load the result.
6658 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006659 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006660}
6661
Dan Gohmand858e902010-04-17 15:26:15 +00006662SDValue X86TargetLowering::LowerFABS(SDValue Op,
6663 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006664 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006665 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006666 EVT VT = Op.getValueType();
6667 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006668 if (VT.isVector())
6669 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006670 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006671 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006672 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00006673 CV.push_back(C);
6674 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006675 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006676 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00006677 CV.push_back(C);
6678 CV.push_back(C);
6679 CV.push_back(C);
6680 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006681 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006682 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006683 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006684 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006685 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006686 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006687 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006688}
6689
Dan Gohmand858e902010-04-17 15:26:15 +00006690SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006691 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006692 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006693 EVT VT = Op.getValueType();
6694 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00006695 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00006696 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006697 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006698 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006699 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00006700 CV.push_back(C);
6701 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006702 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006703 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00006704 CV.push_back(C);
6705 CV.push_back(C);
6706 CV.push_back(C);
6707 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006708 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006709 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006710 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006711 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006712 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006713 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006714 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006715 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00006716 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006717 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006718 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006719 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00006720 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006721 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00006722 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006723}
6724
Dan Gohmand858e902010-04-17 15:26:15 +00006725SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006726 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00006727 SDValue Op0 = Op.getOperand(0);
6728 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006729 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006730 EVT VT = Op.getValueType();
6731 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00006732
6733 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006734 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006735 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006736 SrcVT = VT;
6737 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006738 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006739 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006740 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006741 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006742 }
6743
6744 // At this point the operands and the result should have the same
6745 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00006746
Evan Cheng68c47cb2007-01-05 07:55:56 +00006747 // First get the sign bit of second operand.
6748 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006749 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006750 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
6751 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006752 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006753 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
6754 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6755 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6756 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006757 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006758 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006759 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006760 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006761 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006762 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006763 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006764
6765 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006766 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006767 // Op0 is MVT::f32, Op1 is MVT::f64.
6768 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
6769 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
6770 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006771 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00006772 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00006773 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006774 }
6775
Evan Cheng73d6cf12007-01-05 21:37:56 +00006776 // Clear first operand sign bit.
6777 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00006778 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006779 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
6780 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006781 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006782 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
6783 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6784 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6785 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006786 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006787 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006788 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006789 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006790 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006791 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006792 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006793
6794 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00006795 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006796}
6797
Dan Gohman076aee32009-03-04 19:44:21 +00006798/// Emit nodes that will be selected as "test Op0,Op0", or something
6799/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006800SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006801 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006802 DebugLoc dl = Op.getDebugLoc();
6803
Dan Gohman31125812009-03-07 01:58:32 +00006804 // CF and OF aren't always set the way we want. Determine which
6805 // of these we need.
6806 bool NeedCF = false;
6807 bool NeedOF = false;
6808 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006809 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00006810 case X86::COND_A: case X86::COND_AE:
6811 case X86::COND_B: case X86::COND_BE:
6812 NeedCF = true;
6813 break;
6814 case X86::COND_G: case X86::COND_GE:
6815 case X86::COND_L: case X86::COND_LE:
6816 case X86::COND_O: case X86::COND_NO:
6817 NeedOF = true;
6818 break;
Dan Gohman31125812009-03-07 01:58:32 +00006819 }
6820
Dan Gohman076aee32009-03-04 19:44:21 +00006821 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00006822 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
6823 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006824 if (Op.getResNo() != 0 || NeedOF || NeedCF)
6825 // Emit a CMP with 0, which is the TEST pattern.
6826 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6827 DAG.getConstant(0, Op.getValueType()));
6828
6829 unsigned Opcode = 0;
6830 unsigned NumOperands = 0;
6831 switch (Op.getNode()->getOpcode()) {
6832 case ISD::ADD:
6833 // Due to an isel shortcoming, be conservative if this add is likely to be
6834 // selected as part of a load-modify-store instruction. When the root node
6835 // in a match is a store, isel doesn't know how to remap non-chain non-flag
6836 // uses of other nodes in the match, such as the ADD in this case. This
6837 // leads to the ADD being left around and reselected, with the result being
6838 // two adds in the output. Alas, even if none our users are stores, that
6839 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
6840 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
6841 // climbing the DAG back to the root, and it doesn't seem to be worth the
6842 // effort.
6843 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00006844 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006845 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
6846 goto default_case;
6847
6848 if (ConstantSDNode *C =
6849 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
6850 // An add of one will be selected as an INC.
6851 if (C->getAPIntValue() == 1) {
6852 Opcode = X86ISD::INC;
6853 NumOperands = 1;
6854 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00006855 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006856
6857 // An add of negative one (subtract of one) will be selected as a DEC.
6858 if (C->getAPIntValue().isAllOnesValue()) {
6859 Opcode = X86ISD::DEC;
6860 NumOperands = 1;
6861 break;
6862 }
Dan Gohman076aee32009-03-04 19:44:21 +00006863 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006864
6865 // Otherwise use a regular EFLAGS-setting add.
6866 Opcode = X86ISD::ADD;
6867 NumOperands = 2;
6868 break;
6869 case ISD::AND: {
6870 // If the primary and result isn't used, don't bother using X86ISD::AND,
6871 // because a TEST instruction will be better.
6872 bool NonFlagUse = false;
6873 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6874 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
6875 SDNode *User = *UI;
6876 unsigned UOpNo = UI.getOperandNo();
6877 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
6878 // Look pass truncate.
6879 UOpNo = User->use_begin().getOperandNo();
6880 User = *User->use_begin();
6881 }
6882
6883 if (User->getOpcode() != ISD::BRCOND &&
6884 User->getOpcode() != ISD::SETCC &&
6885 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
6886 NonFlagUse = true;
6887 break;
6888 }
Dan Gohman076aee32009-03-04 19:44:21 +00006889 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006890
6891 if (!NonFlagUse)
6892 break;
6893 }
6894 // FALL THROUGH
6895 case ISD::SUB:
6896 case ISD::OR:
6897 case ISD::XOR:
6898 // Due to the ISEL shortcoming noted above, be conservative if this op is
6899 // likely to be selected as part of a load-modify-store instruction.
6900 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6901 UE = Op.getNode()->use_end(); UI != UE; ++UI)
6902 if (UI->getOpcode() == ISD::STORE)
6903 goto default_case;
6904
6905 // Otherwise use a regular EFLAGS-setting instruction.
6906 switch (Op.getNode()->getOpcode()) {
6907 default: llvm_unreachable("unexpected operator!");
6908 case ISD::SUB: Opcode = X86ISD::SUB; break;
6909 case ISD::OR: Opcode = X86ISD::OR; break;
6910 case ISD::XOR: Opcode = X86ISD::XOR; break;
6911 case ISD::AND: Opcode = X86ISD::AND; break;
6912 }
6913
6914 NumOperands = 2;
6915 break;
6916 case X86ISD::ADD:
6917 case X86ISD::SUB:
6918 case X86ISD::INC:
6919 case X86ISD::DEC:
6920 case X86ISD::OR:
6921 case X86ISD::XOR:
6922 case X86ISD::AND:
6923 return SDValue(Op.getNode(), 1);
6924 default:
6925 default_case:
6926 break;
Dan Gohman076aee32009-03-04 19:44:21 +00006927 }
6928
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006929 if (Opcode == 0)
6930 // Emit a CMP with 0, which is the TEST pattern.
6931 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6932 DAG.getConstant(0, Op.getValueType()));
6933
6934 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
6935 SmallVector<SDValue, 4> Ops;
6936 for (unsigned i = 0; i != NumOperands; ++i)
6937 Ops.push_back(Op.getOperand(i));
6938
6939 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
6940 DAG.ReplaceAllUsesWith(Op, New);
6941 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00006942}
6943
6944/// Emit nodes that will be selected as "cmp Op0,Op1", or something
6945/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006946SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006947 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006948 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
6949 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00006950 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00006951
6952 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00006953 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00006954}
6955
Evan Chengd40d03e2010-01-06 19:38:29 +00006956/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
6957/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00006958SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
6959 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006960 SDValue Op0 = And.getOperand(0);
6961 SDValue Op1 = And.getOperand(1);
6962 if (Op0.getOpcode() == ISD::TRUNCATE)
6963 Op0 = Op0.getOperand(0);
6964 if (Op1.getOpcode() == ISD::TRUNCATE)
6965 Op1 = Op1.getOperand(0);
6966
Evan Chengd40d03e2010-01-06 19:38:29 +00006967 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006968 if (Op1.getOpcode() == ISD::SHL)
6969 std::swap(Op0, Op1);
6970 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006971 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
6972 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006973 // If we looked past a truncate, check that it's only truncating away
6974 // known zeros.
6975 unsigned BitWidth = Op0.getValueSizeInBits();
6976 unsigned AndBitWidth = And.getValueSizeInBits();
6977 if (BitWidth > AndBitWidth) {
6978 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
6979 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
6980 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
6981 return SDValue();
6982 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006983 LHS = Op1;
6984 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00006985 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006986 } else if (Op1.getOpcode() == ISD::Constant) {
6987 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
6988 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00006989 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
6990 LHS = AndLHS.getOperand(0);
6991 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00006992 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006993 }
Evan Cheng0488db92007-09-25 01:57:46 +00006994
Evan Chengd40d03e2010-01-06 19:38:29 +00006995 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00006996 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00006997 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00006998 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00006999 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00007000 // Also promote i16 to i32 for performance / code size reason.
7001 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00007002 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00007003 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00007004
Evan Chengd40d03e2010-01-06 19:38:29 +00007005 // If the operand types disagree, extend the shift amount to match. Since
7006 // BT ignores high bits (like shifts) we can use anyextend.
7007 if (LHS.getValueType() != RHS.getValueType())
7008 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007009
Evan Chengd40d03e2010-01-06 19:38:29 +00007010 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7011 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7012 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7013 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007014 }
7015
Evan Cheng54de3ea2010-01-05 06:52:31 +00007016 return SDValue();
7017}
7018
Dan Gohmand858e902010-04-17 15:26:15 +00007019SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007020 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7021 SDValue Op0 = Op.getOperand(0);
7022 SDValue Op1 = Op.getOperand(1);
7023 DebugLoc dl = Op.getDebugLoc();
7024 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7025
7026 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007027 // Lower (X & (1 << N)) == 0 to BT(X, N).
7028 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7029 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
7030 if (Op0.getOpcode() == ISD::AND &&
7031 Op0.hasOneUse() &&
7032 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007033 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007034 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7035 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7036 if (NewSetCC.getNode())
7037 return NewSetCC;
7038 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007039
Evan Cheng2c755ba2010-02-27 07:36:59 +00007040 // Look for "(setcc) == / != 1" to avoid unncessary setcc.
7041 if (Op0.getOpcode() == X86ISD::SETCC &&
7042 Op1.getOpcode() == ISD::Constant &&
7043 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
7044 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7045 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7046 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7047 bool Invert = (CC == ISD::SETNE) ^
7048 cast<ConstantSDNode>(Op1)->isNullValue();
7049 if (Invert)
7050 CCode = X86::GetOppositeBranchCondition(CCode);
7051 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7052 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7053 }
7054
Evan Chenge5b51ac2010-04-17 06:13:15 +00007055 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007056 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007057 if (X86CC == X86::COND_INVALID)
7058 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007059
Evan Cheng552f09a2010-04-26 19:06:11 +00007060 SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG);
Evan Chengad9c0a32009-12-15 00:53:42 +00007061
7062 // Use sbb x, x to materialize carry bit into a GPR.
Evan Cheng2e489c42009-12-16 00:53:11 +00007063 if (X86CC == X86::COND_B)
Evan Chengad9c0a32009-12-15 00:53:42 +00007064 return DAG.getNode(ISD::AND, dl, MVT::i8,
7065 DAG.getNode(X86ISD::SETCC_CARRY, dl, MVT::i8,
7066 DAG.getConstant(X86CC, MVT::i8), Cond),
7067 DAG.getConstant(1, MVT::i8));
Evan Chengad9c0a32009-12-15 00:53:42 +00007068
Owen Anderson825b72b2009-08-11 20:47:22 +00007069 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7070 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007071}
7072
Dan Gohmand858e902010-04-17 15:26:15 +00007073SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007074 SDValue Cond;
7075 SDValue Op0 = Op.getOperand(0);
7076 SDValue Op1 = Op.getOperand(1);
7077 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007078 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007079 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7080 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007081 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007082
7083 if (isFP) {
7084 unsigned SSECC = 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007085 EVT VT0 = Op0.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00007086 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7087 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007088 bool Swap = false;
7089
7090 switch (SetCCOpcode) {
7091 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007092 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007093 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007094 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007095 case ISD::SETGT: Swap = true; // Fallthrough
7096 case ISD::SETLT:
7097 case ISD::SETOLT: SSECC = 1; break;
7098 case ISD::SETOGE:
7099 case ISD::SETGE: Swap = true; // Fallthrough
7100 case ISD::SETLE:
7101 case ISD::SETOLE: SSECC = 2; break;
7102 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007103 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007104 case ISD::SETNE: SSECC = 4; break;
7105 case ISD::SETULE: Swap = true;
7106 case ISD::SETUGE: SSECC = 5; break;
7107 case ISD::SETULT: Swap = true;
7108 case ISD::SETUGT: SSECC = 6; break;
7109 case ISD::SETO: SSECC = 7; break;
7110 }
7111 if (Swap)
7112 std::swap(Op0, Op1);
7113
Nate Begemanfb8ead02008-07-25 19:05:58 +00007114 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007115 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007116 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007117 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007118 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7119 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007120 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007121 }
7122 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007123 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007124 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7125 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007126 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007127 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007128 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007129 }
7130 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007131 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007132 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007133
Nate Begeman30a0de92008-07-17 16:51:19 +00007134 // We are handling one of the integer comparisons here. Since SSE only has
7135 // GT and EQ comparisons for integer, swapping operands and multiple
7136 // operations may be required for some comparisons.
7137 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7138 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007139
Owen Anderson825b72b2009-08-11 20:47:22 +00007140 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007141 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007142 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007143 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007144 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7145 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007146 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007147
Nate Begeman30a0de92008-07-17 16:51:19 +00007148 switch (SetCCOpcode) {
7149 default: break;
7150 case ISD::SETNE: Invert = true;
7151 case ISD::SETEQ: Opc = EQOpc; break;
7152 case ISD::SETLT: Swap = true;
7153 case ISD::SETGT: Opc = GTOpc; break;
7154 case ISD::SETGE: Swap = true;
7155 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
7156 case ISD::SETULT: Swap = true;
7157 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7158 case ISD::SETUGE: Swap = true;
7159 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7160 }
7161 if (Swap)
7162 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007163
Nate Begeman30a0de92008-07-17 16:51:19 +00007164 // Since SSE has no unsigned integer comparisons, we need to flip the sign
7165 // bits of the inputs before performing those operations.
7166 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00007167 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00007168 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7169 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00007170 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00007171 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
7172 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00007173 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
7174 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00007175 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007176
Dale Johannesenace16102009-02-03 19:33:06 +00007177 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00007178
7179 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00007180 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00007181 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00007182
Nate Begeman30a0de92008-07-17 16:51:19 +00007183 return Result;
7184}
Evan Cheng0488db92007-09-25 01:57:46 +00007185
Evan Cheng370e5342008-12-03 08:38:43 +00007186// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00007187static bool isX86LogicalCmp(SDValue Op) {
7188 unsigned Opc = Op.getNode()->getOpcode();
7189 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
7190 return true;
7191 if (Op.getResNo() == 1 &&
7192 (Opc == X86ISD::ADD ||
7193 Opc == X86ISD::SUB ||
7194 Opc == X86ISD::SMUL ||
7195 Opc == X86ISD::UMUL ||
7196 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00007197 Opc == X86ISD::DEC ||
7198 Opc == X86ISD::OR ||
7199 Opc == X86ISD::XOR ||
7200 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00007201 return true;
7202
7203 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00007204}
7205
Dan Gohmand858e902010-04-17 15:26:15 +00007206SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007207 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007208 SDValue Cond = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007209 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007210 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00007211
Dan Gohman1a492952009-10-20 16:22:37 +00007212 if (Cond.getOpcode() == ISD::SETCC) {
7213 SDValue NewCond = LowerSETCC(Cond, DAG);
7214 if (NewCond.getNode())
7215 Cond = NewCond;
7216 }
Evan Cheng734503b2006-09-11 02:19:56 +00007217
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007218 // (select (x == 0), -1, 0) -> (sign_bit (x - 1))
7219 SDValue Op1 = Op.getOperand(1);
7220 SDValue Op2 = Op.getOperand(2);
7221 if (Cond.getOpcode() == X86ISD::SETCC &&
7222 cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue() == X86::COND_E) {
7223 SDValue Cmp = Cond.getOperand(1);
7224 if (Cmp.getOpcode() == X86ISD::CMP) {
7225 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op1);
7226 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
7227 ConstantSDNode *RHSC =
7228 dyn_cast<ConstantSDNode>(Cmp.getOperand(1).getNode());
7229 if (N1C && N1C->isAllOnesValue() &&
7230 N2C && N2C->isNullValue() &&
7231 RHSC && RHSC->isNullValue()) {
7232 SDValue CmpOp0 = Cmp.getOperand(0);
Chris Lattnerda0688e2010-03-14 18:44:35 +00007233 Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007234 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
7235 return DAG.getNode(X86ISD::SETCC_CARRY, dl, Op.getValueType(),
7236 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
7237 }
7238 }
7239 }
7240
Evan Chengad9c0a32009-12-15 00:53:42 +00007241 // Look pass (and (setcc_carry (cmp ...)), 1).
7242 if (Cond.getOpcode() == ISD::AND &&
7243 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7244 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007245 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007246 Cond = Cond.getOperand(0);
7247 }
7248
Evan Cheng3f41d662007-10-08 22:16:29 +00007249 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7250 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007251 if (Cond.getOpcode() == X86ISD::SETCC ||
7252 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007253 CC = Cond.getOperand(0);
7254
Dan Gohman475871a2008-07-27 21:46:04 +00007255 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007256 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00007257 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00007258
Evan Cheng3f41d662007-10-08 22:16:29 +00007259 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007260 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00007261 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00007262 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00007263
Chris Lattnerd1980a52009-03-12 06:52:53 +00007264 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
7265 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00007266 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007267 addTest = false;
7268 }
7269 }
7270
7271 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007272 // Look pass the truncate.
7273 if (Cond.getOpcode() == ISD::TRUNCATE)
7274 Cond = Cond.getOperand(0);
7275
7276 // We know the result of AND is compared against zero. Try to match
7277 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007278 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007279 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7280 if (NewSetCC.getNode()) {
7281 CC = NewSetCC.getOperand(0);
7282 Cond = NewSetCC.getOperand(1);
7283 addTest = false;
7284 }
7285 }
7286 }
7287
7288 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007289 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007290 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007291 }
7292
Evan Cheng0488db92007-09-25 01:57:46 +00007293 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
7294 // condition is true.
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007295 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
7296 SDValue Ops[] = { Op2, Op1, CC, Cond };
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007297 return DAG.getNode(X86ISD::CMOV, dl, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00007298}
7299
Evan Cheng370e5342008-12-03 08:38:43 +00007300// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
7301// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
7302// from the AND / OR.
7303static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
7304 Opc = Op.getOpcode();
7305 if (Opc != ISD::OR && Opc != ISD::AND)
7306 return false;
7307 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7308 Op.getOperand(0).hasOneUse() &&
7309 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
7310 Op.getOperand(1).hasOneUse());
7311}
7312
Evan Cheng961d6d42009-02-02 08:19:07 +00007313// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
7314// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00007315static bool isXor1OfSetCC(SDValue Op) {
7316 if (Op.getOpcode() != ISD::XOR)
7317 return false;
7318 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7319 if (N1C && N1C->getAPIntValue() == 1) {
7320 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7321 Op.getOperand(0).hasOneUse();
7322 }
7323 return false;
7324}
7325
Dan Gohmand858e902010-04-17 15:26:15 +00007326SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007327 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007328 SDValue Chain = Op.getOperand(0);
7329 SDValue Cond = Op.getOperand(1);
7330 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007331 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007332 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00007333
Dan Gohman1a492952009-10-20 16:22:37 +00007334 if (Cond.getOpcode() == ISD::SETCC) {
7335 SDValue NewCond = LowerSETCC(Cond, DAG);
7336 if (NewCond.getNode())
7337 Cond = NewCond;
7338 }
Chris Lattnere55484e2008-12-25 05:34:37 +00007339#if 0
7340 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00007341 else if (Cond.getOpcode() == X86ISD::ADD ||
7342 Cond.getOpcode() == X86ISD::SUB ||
7343 Cond.getOpcode() == X86ISD::SMUL ||
7344 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00007345 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00007346#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00007347
Evan Chengad9c0a32009-12-15 00:53:42 +00007348 // Look pass (and (setcc_carry (cmp ...)), 1).
7349 if (Cond.getOpcode() == ISD::AND &&
7350 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7351 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007352 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007353 Cond = Cond.getOperand(0);
7354 }
7355
Evan Cheng3f41d662007-10-08 22:16:29 +00007356 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7357 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007358 if (Cond.getOpcode() == X86ISD::SETCC ||
7359 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007360 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007361
Dan Gohman475871a2008-07-27 21:46:04 +00007362 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007363 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00007364 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00007365 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00007366 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007367 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00007368 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00007369 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007370 default: break;
7371 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00007372 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00007373 // These can only come from an arithmetic instruction with overflow,
7374 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007375 Cond = Cond.getNode()->getOperand(1);
7376 addTest = false;
7377 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00007378 }
Evan Cheng0488db92007-09-25 01:57:46 +00007379 }
Evan Cheng370e5342008-12-03 08:38:43 +00007380 } else {
7381 unsigned CondOpc;
7382 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
7383 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00007384 if (CondOpc == ISD::OR) {
7385 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
7386 // two branches instead of an explicit OR instruction with a
7387 // separate test.
7388 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007389 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00007390 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007391 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007392 Chain, Dest, CC, Cmp);
7393 CC = Cond.getOperand(1).getOperand(0);
7394 Cond = Cmp;
7395 addTest = false;
7396 }
7397 } else { // ISD::AND
7398 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
7399 // two branches instead of an explicit AND instruction with a
7400 // separate test. However, we only do this if this block doesn't
7401 // have a fall-through edge, because this requires an explicit
7402 // jmp when the condition is false.
7403 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007404 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00007405 Op.getNode()->hasOneUse()) {
7406 X86::CondCode CCode =
7407 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7408 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007409 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00007410 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00007411 // Look for an unconditional branch following this conditional branch.
7412 // We need this because we need to reverse the successors in order
7413 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00007414 if (User->getOpcode() == ISD::BR) {
7415 SDValue FalseBB = User->getOperand(1);
7416 SDNode *NewBR =
7417 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00007418 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00007419 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00007420 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00007421
Dale Johannesene4d209d2009-02-03 20:21:25 +00007422 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007423 Chain, Dest, CC, Cmp);
7424 X86::CondCode CCode =
7425 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
7426 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007427 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00007428 Cond = Cmp;
7429 addTest = false;
7430 }
7431 }
Dan Gohman279c22e2008-10-21 03:29:32 +00007432 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00007433 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
7434 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
7435 // It should be transformed during dag combiner except when the condition
7436 // is set by a arithmetics with overflow node.
7437 X86::CondCode CCode =
7438 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7439 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007440 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00007441 Cond = Cond.getOperand(0).getOperand(1);
7442 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00007443 }
Evan Cheng0488db92007-09-25 01:57:46 +00007444 }
7445
7446 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007447 // Look pass the truncate.
7448 if (Cond.getOpcode() == ISD::TRUNCATE)
7449 Cond = Cond.getOperand(0);
7450
7451 // We know the result of AND is compared against zero. Try to match
7452 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007453 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007454 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7455 if (NewSetCC.getNode()) {
7456 CC = NewSetCC.getOperand(0);
7457 Cond = NewSetCC.getOperand(1);
7458 addTest = false;
7459 }
7460 }
7461 }
7462
7463 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007464 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007465 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007466 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00007467 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00007468 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007469}
7470
Anton Korobeynikove060b532007-04-17 19:34:00 +00007471
7472// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
7473// Calls to _alloca is needed to probe the stack when allocating more than 4k
7474// bytes in one go. Touching the stack at 4K increments is necessary to ensure
7475// that the guard pages used by the OS virtual memory manager are allocated in
7476// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00007477SDValue
7478X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007479 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00007480 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007481 "This should be used only on Windows targets");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007482 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007483
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007484 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007485 SDValue Chain = Op.getOperand(0);
7486 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007487 // FIXME: Ensure alignment here
7488
Dan Gohman475871a2008-07-27 21:46:04 +00007489 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007490
Owen Anderson825b72b2009-08-11 20:47:22 +00007491 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007492
Dale Johannesendd64c412009-02-04 00:33:20 +00007493 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007494 Flag = Chain.getValue(1);
7495
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007496 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007497
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007498 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007499 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007500
Dale Johannesendd64c412009-02-04 00:33:20 +00007501 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007502
Dan Gohman475871a2008-07-27 21:46:04 +00007503 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00007504 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007505}
7506
Dan Gohmand858e902010-04-17 15:26:15 +00007507SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00007508 MachineFunction &MF = DAG.getMachineFunction();
7509 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
7510
Dan Gohman69de1932008-02-06 22:27:42 +00007511 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00007512 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00007513
Anton Korobeynikove7beda12010-10-03 22:52:07 +00007514 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00007515 // vastart just stores the address of the VarArgsFrameIndex slot into the
7516 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00007517 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7518 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007519 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
7520 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007521 }
7522
7523 // __va_list_tag:
7524 // gp_offset (0 - 6 * 8)
7525 // fp_offset (48 - 48 + 8 * 16)
7526 // overflow_arg_area (point to parameters coming in memory).
7527 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00007528 SmallVector<SDValue, 8> MemOps;
7529 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00007530 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007531 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007532 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
7533 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007534 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007535 MemOps.push_back(Store);
7536
7537 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007538 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007539 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00007540 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007541 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
7542 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007543 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007544 MemOps.push_back(Store);
7545
7546 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00007547 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007548 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00007549 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7550 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007551 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
7552 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00007553 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007554 MemOps.push_back(Store);
7555
7556 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00007557 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007558 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00007559 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
7560 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007561 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
7562 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007563 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00007564 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00007565 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00007566}
7567
Dan Gohmand858e902010-04-17 15:26:15 +00007568SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00007569 assert(Subtarget->is64Bit() &&
7570 "LowerVAARG only handles 64-bit va_arg!");
7571 assert((Subtarget->isTargetLinux() ||
7572 Subtarget->isTargetDarwin()) &&
7573 "Unhandled target in LowerVAARG");
7574 assert(Op.getNode()->getNumOperands() == 4);
7575 SDValue Chain = Op.getOperand(0);
7576 SDValue SrcPtr = Op.getOperand(1);
7577 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
7578 unsigned Align = Op.getConstantOperandVal(3);
7579 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00007580
Dan Gohman320afb82010-10-12 18:00:49 +00007581 EVT ArgVT = Op.getNode()->getValueType(0);
7582 const Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
7583 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
7584 uint8_t ArgMode;
7585
7586 // Decide which area this value should be read from.
7587 // TODO: Implement the AMD64 ABI in its entirety. This simple
7588 // selection mechanism works only for the basic types.
7589 if (ArgVT == MVT::f80) {
7590 llvm_unreachable("va_arg for f80 not yet implemented");
7591 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
7592 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
7593 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
7594 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
7595 } else {
7596 llvm_unreachable("Unhandled argument type in LowerVAARG");
7597 }
7598
7599 if (ArgMode == 2) {
7600 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00007601 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00007602 !(DAG.getMachineFunction()
7603 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
7604 Subtarget->hasSSE1());
Dan Gohman320afb82010-10-12 18:00:49 +00007605 }
7606
7607 // Insert VAARG_64 node into the DAG
7608 // VAARG_64 returns two values: Variable Argument Address, Chain
7609 SmallVector<SDValue, 11> InstOps;
7610 InstOps.push_back(Chain);
7611 InstOps.push_back(SrcPtr);
7612 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
7613 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
7614 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
7615 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
7616 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
7617 VTs, &InstOps[0], InstOps.size(),
7618 MVT::i64,
7619 MachinePointerInfo(SV),
7620 /*Align=*/0,
7621 /*Volatile=*/false,
7622 /*ReadMem=*/true,
7623 /*WriteMem=*/true);
7624 Chain = VAARG.getValue(1);
7625
7626 // Load the next argument and return it
7627 return DAG.getLoad(ArgVT, dl,
7628 Chain,
7629 VAARG,
7630 MachinePointerInfo(),
7631 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00007632}
7633
Dan Gohmand858e902010-04-17 15:26:15 +00007634SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00007635 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00007636 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00007637 SDValue Chain = Op.getOperand(0);
7638 SDValue DstPtr = Op.getOperand(1);
7639 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00007640 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
7641 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00007642 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00007643
Chris Lattnere72f2022010-09-21 05:40:29 +00007644 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00007645 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007646 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00007647 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00007648}
7649
Dan Gohman475871a2008-07-27 21:46:04 +00007650SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007651X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007652 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007653 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007654 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00007655 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00007656 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00007657 case Intrinsic::x86_sse_comieq_ss:
7658 case Intrinsic::x86_sse_comilt_ss:
7659 case Intrinsic::x86_sse_comile_ss:
7660 case Intrinsic::x86_sse_comigt_ss:
7661 case Intrinsic::x86_sse_comige_ss:
7662 case Intrinsic::x86_sse_comineq_ss:
7663 case Intrinsic::x86_sse_ucomieq_ss:
7664 case Intrinsic::x86_sse_ucomilt_ss:
7665 case Intrinsic::x86_sse_ucomile_ss:
7666 case Intrinsic::x86_sse_ucomigt_ss:
7667 case Intrinsic::x86_sse_ucomige_ss:
7668 case Intrinsic::x86_sse_ucomineq_ss:
7669 case Intrinsic::x86_sse2_comieq_sd:
7670 case Intrinsic::x86_sse2_comilt_sd:
7671 case Intrinsic::x86_sse2_comile_sd:
7672 case Intrinsic::x86_sse2_comigt_sd:
7673 case Intrinsic::x86_sse2_comige_sd:
7674 case Intrinsic::x86_sse2_comineq_sd:
7675 case Intrinsic::x86_sse2_ucomieq_sd:
7676 case Intrinsic::x86_sse2_ucomilt_sd:
7677 case Intrinsic::x86_sse2_ucomile_sd:
7678 case Intrinsic::x86_sse2_ucomigt_sd:
7679 case Intrinsic::x86_sse2_ucomige_sd:
7680 case Intrinsic::x86_sse2_ucomineq_sd: {
7681 unsigned Opc = 0;
7682 ISD::CondCode CC = ISD::SETCC_INVALID;
7683 switch (IntNo) {
7684 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007685 case Intrinsic::x86_sse_comieq_ss:
7686 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007687 Opc = X86ISD::COMI;
7688 CC = ISD::SETEQ;
7689 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007690 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007691 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007692 Opc = X86ISD::COMI;
7693 CC = ISD::SETLT;
7694 break;
7695 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007696 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007697 Opc = X86ISD::COMI;
7698 CC = ISD::SETLE;
7699 break;
7700 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007701 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007702 Opc = X86ISD::COMI;
7703 CC = ISD::SETGT;
7704 break;
7705 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007706 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007707 Opc = X86ISD::COMI;
7708 CC = ISD::SETGE;
7709 break;
7710 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007711 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007712 Opc = X86ISD::COMI;
7713 CC = ISD::SETNE;
7714 break;
7715 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007716 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007717 Opc = X86ISD::UCOMI;
7718 CC = ISD::SETEQ;
7719 break;
7720 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007721 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007722 Opc = X86ISD::UCOMI;
7723 CC = ISD::SETLT;
7724 break;
7725 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007726 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007727 Opc = X86ISD::UCOMI;
7728 CC = ISD::SETLE;
7729 break;
7730 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007731 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007732 Opc = X86ISD::UCOMI;
7733 CC = ISD::SETGT;
7734 break;
7735 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007736 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007737 Opc = X86ISD::UCOMI;
7738 CC = ISD::SETGE;
7739 break;
7740 case Intrinsic::x86_sse_ucomineq_ss:
7741 case Intrinsic::x86_sse2_ucomineq_sd:
7742 Opc = X86ISD::UCOMI;
7743 CC = ISD::SETNE;
7744 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007745 }
Evan Cheng734503b2006-09-11 02:19:56 +00007746
Dan Gohman475871a2008-07-27 21:46:04 +00007747 SDValue LHS = Op.getOperand(1);
7748 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00007749 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007750 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007751 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
7752 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7753 DAG.getConstant(X86CC, MVT::i8), Cond);
7754 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00007755 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007756 // ptest and testp intrinsics. The intrinsic these come from are designed to
7757 // return an integer value, not just an instruction so lower it to the ptest
7758 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00007759 case Intrinsic::x86_sse41_ptestz:
7760 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007761 case Intrinsic::x86_sse41_ptestnzc:
7762 case Intrinsic::x86_avx_ptestz_256:
7763 case Intrinsic::x86_avx_ptestc_256:
7764 case Intrinsic::x86_avx_ptestnzc_256:
7765 case Intrinsic::x86_avx_vtestz_ps:
7766 case Intrinsic::x86_avx_vtestc_ps:
7767 case Intrinsic::x86_avx_vtestnzc_ps:
7768 case Intrinsic::x86_avx_vtestz_pd:
7769 case Intrinsic::x86_avx_vtestc_pd:
7770 case Intrinsic::x86_avx_vtestnzc_pd:
7771 case Intrinsic::x86_avx_vtestz_ps_256:
7772 case Intrinsic::x86_avx_vtestc_ps_256:
7773 case Intrinsic::x86_avx_vtestnzc_ps_256:
7774 case Intrinsic::x86_avx_vtestz_pd_256:
7775 case Intrinsic::x86_avx_vtestc_pd_256:
7776 case Intrinsic::x86_avx_vtestnzc_pd_256: {
7777 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00007778 unsigned X86CC = 0;
7779 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00007780 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007781 case Intrinsic::x86_avx_vtestz_ps:
7782 case Intrinsic::x86_avx_vtestz_pd:
7783 case Intrinsic::x86_avx_vtestz_ps_256:
7784 case Intrinsic::x86_avx_vtestz_pd_256:
7785 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007786 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007787 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007788 // ZF = 1
7789 X86CC = X86::COND_E;
7790 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007791 case Intrinsic::x86_avx_vtestc_ps:
7792 case Intrinsic::x86_avx_vtestc_pd:
7793 case Intrinsic::x86_avx_vtestc_ps_256:
7794 case Intrinsic::x86_avx_vtestc_pd_256:
7795 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007796 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007797 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007798 // CF = 1
7799 X86CC = X86::COND_B;
7800 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007801 case Intrinsic::x86_avx_vtestnzc_ps:
7802 case Intrinsic::x86_avx_vtestnzc_pd:
7803 case Intrinsic::x86_avx_vtestnzc_ps_256:
7804 case Intrinsic::x86_avx_vtestnzc_pd_256:
7805 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00007806 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007807 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007808 // ZF and CF = 0
7809 X86CC = X86::COND_A;
7810 break;
7811 }
Eric Christopherfd179292009-08-27 18:07:15 +00007812
Eric Christopher71c67532009-07-29 00:28:05 +00007813 SDValue LHS = Op.getOperand(1);
7814 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007815 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
7816 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00007817 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
7818 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
7819 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00007820 }
Evan Cheng5759f972008-05-04 09:15:50 +00007821
7822 // Fix vector shift instructions where the last operand is a non-immediate
7823 // i32 value.
7824 case Intrinsic::x86_sse2_pslli_w:
7825 case Intrinsic::x86_sse2_pslli_d:
7826 case Intrinsic::x86_sse2_pslli_q:
7827 case Intrinsic::x86_sse2_psrli_w:
7828 case Intrinsic::x86_sse2_psrli_d:
7829 case Intrinsic::x86_sse2_psrli_q:
7830 case Intrinsic::x86_sse2_psrai_w:
7831 case Intrinsic::x86_sse2_psrai_d:
7832 case Intrinsic::x86_mmx_pslli_w:
7833 case Intrinsic::x86_mmx_pslli_d:
7834 case Intrinsic::x86_mmx_pslli_q:
7835 case Intrinsic::x86_mmx_psrli_w:
7836 case Intrinsic::x86_mmx_psrli_d:
7837 case Intrinsic::x86_mmx_psrli_q:
7838 case Intrinsic::x86_mmx_psrai_w:
7839 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00007840 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00007841 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00007842 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00007843
7844 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00007845 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007846 switch (IntNo) {
7847 case Intrinsic::x86_sse2_pslli_w:
7848 NewIntNo = Intrinsic::x86_sse2_psll_w;
7849 break;
7850 case Intrinsic::x86_sse2_pslli_d:
7851 NewIntNo = Intrinsic::x86_sse2_psll_d;
7852 break;
7853 case Intrinsic::x86_sse2_pslli_q:
7854 NewIntNo = Intrinsic::x86_sse2_psll_q;
7855 break;
7856 case Intrinsic::x86_sse2_psrli_w:
7857 NewIntNo = Intrinsic::x86_sse2_psrl_w;
7858 break;
7859 case Intrinsic::x86_sse2_psrli_d:
7860 NewIntNo = Intrinsic::x86_sse2_psrl_d;
7861 break;
7862 case Intrinsic::x86_sse2_psrli_q:
7863 NewIntNo = Intrinsic::x86_sse2_psrl_q;
7864 break;
7865 case Intrinsic::x86_sse2_psrai_w:
7866 NewIntNo = Intrinsic::x86_sse2_psra_w;
7867 break;
7868 case Intrinsic::x86_sse2_psrai_d:
7869 NewIntNo = Intrinsic::x86_sse2_psra_d;
7870 break;
7871 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00007872 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007873 switch (IntNo) {
7874 case Intrinsic::x86_mmx_pslli_w:
7875 NewIntNo = Intrinsic::x86_mmx_psll_w;
7876 break;
7877 case Intrinsic::x86_mmx_pslli_d:
7878 NewIntNo = Intrinsic::x86_mmx_psll_d;
7879 break;
7880 case Intrinsic::x86_mmx_pslli_q:
7881 NewIntNo = Intrinsic::x86_mmx_psll_q;
7882 break;
7883 case Intrinsic::x86_mmx_psrli_w:
7884 NewIntNo = Intrinsic::x86_mmx_psrl_w;
7885 break;
7886 case Intrinsic::x86_mmx_psrli_d:
7887 NewIntNo = Intrinsic::x86_mmx_psrl_d;
7888 break;
7889 case Intrinsic::x86_mmx_psrli_q:
7890 NewIntNo = Intrinsic::x86_mmx_psrl_q;
7891 break;
7892 case Intrinsic::x86_mmx_psrai_w:
7893 NewIntNo = Intrinsic::x86_mmx_psra_w;
7894 break;
7895 case Intrinsic::x86_mmx_psrai_d:
7896 NewIntNo = Intrinsic::x86_mmx_psra_d;
7897 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00007898 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00007899 }
7900 break;
7901 }
7902 }
Mon P Wangefa42202009-09-03 19:56:25 +00007903
7904 // The vector shift intrinsics with scalars uses 32b shift amounts but
7905 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
7906 // to be zero.
7907 SDValue ShOps[4];
7908 ShOps[0] = ShAmt;
7909 ShOps[1] = DAG.getConstant(0, MVT::i32);
7910 if (ShAmtVT == MVT::v4i32) {
7911 ShOps[2] = DAG.getUNDEF(MVT::i32);
7912 ShOps[3] = DAG.getUNDEF(MVT::i32);
7913 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
7914 } else {
7915 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00007916// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00007917 }
7918
Owen Andersone50ed302009-08-10 22:56:29 +00007919 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007920 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007921 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007922 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00007923 Op.getOperand(1), ShAmt);
7924 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00007925 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007926}
Evan Cheng72261582005-12-20 06:22:03 +00007927
Dan Gohmand858e902010-04-17 15:26:15 +00007928SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
7929 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00007930 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7931 MFI->setReturnAddressIsTaken(true);
7932
Bill Wendling64e87322009-01-16 19:25:27 +00007933 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007934 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00007935
7936 if (Depth > 0) {
7937 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
7938 SDValue Offset =
7939 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007940 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007941 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007942 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007943 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00007944 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00007945 }
7946
7947 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00007948 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00007949 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007950 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00007951}
7952
Dan Gohmand858e902010-04-17 15:26:15 +00007953SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00007954 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7955 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00007956
Owen Andersone50ed302009-08-10 22:56:29 +00007957 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007958 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00007959 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
7960 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00007961 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00007962 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00007963 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
7964 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00007965 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00007966 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00007967}
7968
Dan Gohman475871a2008-07-27 21:46:04 +00007969SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007970 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00007971 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007972}
7973
Dan Gohmand858e902010-04-17 15:26:15 +00007974SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007975 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00007976 SDValue Chain = Op.getOperand(0);
7977 SDValue Offset = Op.getOperand(1);
7978 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007979 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007980
Dan Gohmand8816272010-08-11 18:14:00 +00007981 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
7982 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
7983 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007984 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007985
Dan Gohmand8816272010-08-11 18:14:00 +00007986 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
7987 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00007988 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00007989 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
7990 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00007991 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007992 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007993
Dale Johannesene4d209d2009-02-03 20:21:25 +00007994 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007995 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007996 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007997}
7998
Dan Gohman475871a2008-07-27 21:46:04 +00007999SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008000 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008001 SDValue Root = Op.getOperand(0);
8002 SDValue Trmp = Op.getOperand(1); // trampoline
8003 SDValue FPtr = Op.getOperand(2); // nested function
8004 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008005 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008006
Dan Gohman69de1932008-02-06 22:27:42 +00008007 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008008
8009 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008010 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00008011
8012 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00008013 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
8014 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00008015
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008016 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
8017 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00008018
8019 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8020
8021 // Load the pointer to the nested function into R11.
8022 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00008023 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008024 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008025 Addr, MachinePointerInfo(TrmpAddr),
8026 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008027
Owen Anderson825b72b2009-08-11 20:47:22 +00008028 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8029 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008030 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8031 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008032 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008033
8034 // Load the 'nest' parameter value into R10.
8035 // R10 is specified in X86CallingConv.td
8036 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008037 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8038 DAG.getConstant(10, MVT::i64));
8039 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008040 Addr, MachinePointerInfo(TrmpAddr, 10),
8041 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008042
Owen Anderson825b72b2009-08-11 20:47:22 +00008043 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8044 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008045 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8046 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008047 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008048
8049 // Jump to the nested function.
8050 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008051 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8052 DAG.getConstant(20, MVT::i64));
8053 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008054 Addr, MachinePointerInfo(TrmpAddr, 20),
8055 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008056
8057 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008058 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8059 DAG.getConstant(22, MVT::i64));
8060 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008061 MachinePointerInfo(TrmpAddr, 22),
8062 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008063
Dan Gohman475871a2008-07-27 21:46:04 +00008064 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008065 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008066 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008067 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008068 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008069 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008070 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008071 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008072
8073 switch (CC) {
8074 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008075 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008076 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008077 case CallingConv::X86_StdCall: {
8078 // Pass 'nest' parameter in ECX.
8079 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008080 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008081
8082 // Check that ECX wasn't needed by an 'inreg' parameter.
8083 const FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008084 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008085
Chris Lattner58d74912008-03-12 17:45:29 +00008086 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008087 unsigned InRegCount = 0;
8088 unsigned Idx = 1;
8089
8090 for (FunctionType::param_iterator I = FTy->param_begin(),
8091 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008092 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008093 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008094 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008095
8096 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008097 report_fatal_error("Nest register in use - reduce number of inreg"
8098 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008099 }
8100 }
8101 break;
8102 }
8103 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008104 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008105 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008106 // Pass 'nest' parameter in EAX.
8107 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008108 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008109 break;
8110 }
8111
Dan Gohman475871a2008-07-27 21:46:04 +00008112 SDValue OutChains[4];
8113 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008114
Owen Anderson825b72b2009-08-11 20:47:22 +00008115 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8116 DAG.getConstant(10, MVT::i32));
8117 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008118
Chris Lattnera62fe662010-02-05 19:20:30 +00008119 // This is storing the opcode for MOV32ri.
8120 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008121 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00008122 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008123 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008124 Trmp, MachinePointerInfo(TrmpAddr),
8125 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008126
Owen Anderson825b72b2009-08-11 20:47:22 +00008127 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8128 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008129 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
8130 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00008131 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008132
Chris Lattnera62fe662010-02-05 19:20:30 +00008133 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00008134 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8135 DAG.getConstant(5, MVT::i32));
8136 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008137 MachinePointerInfo(TrmpAddr, 5),
8138 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008139
Owen Anderson825b72b2009-08-11 20:47:22 +00008140 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8141 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008142 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
8143 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00008144 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008145
Dan Gohman475871a2008-07-27 21:46:04 +00008146 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008147 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008148 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008149 }
8150}
8151
Dan Gohmand858e902010-04-17 15:26:15 +00008152SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
8153 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008154 /*
8155 The rounding mode is in bits 11:10 of FPSR, and has the following
8156 settings:
8157 00 Round to nearest
8158 01 Round to -inf
8159 10 Round to +inf
8160 11 Round to 0
8161
8162 FLT_ROUNDS, on the other hand, expects the following:
8163 -1 Undefined
8164 0 Round to 0
8165 1 Round to nearest
8166 2 Round to +inf
8167 3 Round to -inf
8168
8169 To perform the conversion, we do:
8170 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
8171 */
8172
8173 MachineFunction &MF = DAG.getMachineFunction();
8174 const TargetMachine &TM = MF.getTarget();
8175 const TargetFrameInfo &TFI = *TM.getFrameInfo();
8176 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008177 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00008178 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008179
8180 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00008181 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008182 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008183
Michael J. Spencerec38de22010-10-10 22:04:20 +00008184
Chris Lattner2156b792010-09-22 01:11:26 +00008185 MachineMemOperand *MMO =
8186 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8187 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008188
Chris Lattner2156b792010-09-22 01:11:26 +00008189 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
8190 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
8191 DAG.getVTList(MVT::Other),
8192 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008193
8194 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00008195 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00008196 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008197
8198 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00008199 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00008200 DAG.getNode(ISD::SRL, DL, MVT::i16,
8201 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008202 CWD, DAG.getConstant(0x800, MVT::i16)),
8203 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00008204 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00008205 DAG.getNode(ISD::SRL, DL, MVT::i16,
8206 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008207 CWD, DAG.getConstant(0x400, MVT::i16)),
8208 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008209
Dan Gohman475871a2008-07-27 21:46:04 +00008210 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00008211 DAG.getNode(ISD::AND, DL, MVT::i16,
8212 DAG.getNode(ISD::ADD, DL, MVT::i16,
8213 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00008214 DAG.getConstant(1, MVT::i16)),
8215 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008216
8217
Duncan Sands83ec4b62008-06-06 12:08:01 +00008218 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00008219 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008220}
8221
Dan Gohmand858e902010-04-17 15:26:15 +00008222SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008223 EVT VT = Op.getValueType();
8224 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008225 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008226 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008227
8228 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008229 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00008230 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00008231 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008232 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008233 }
Evan Cheng18efe262007-12-14 02:13:44 +00008234
Evan Cheng152804e2007-12-14 08:30:15 +00008235 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008236 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008237 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008238
8239 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008240 SDValue Ops[] = {
8241 Op,
8242 DAG.getConstant(NumBits+NumBits-1, OpVT),
8243 DAG.getConstant(X86::COND_E, MVT::i8),
8244 Op.getValue(1)
8245 };
8246 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008247
8248 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00008249 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00008250
Owen Anderson825b72b2009-08-11 20:47:22 +00008251 if (VT == MVT::i8)
8252 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008253 return Op;
8254}
8255
Dan Gohmand858e902010-04-17 15:26:15 +00008256SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008257 EVT VT = Op.getValueType();
8258 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008259 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008260 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008261
8262 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008263 if (VT == MVT::i8) {
8264 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008265 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008266 }
Evan Cheng152804e2007-12-14 08:30:15 +00008267
8268 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008269 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008270 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008271
8272 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008273 SDValue Ops[] = {
8274 Op,
8275 DAG.getConstant(NumBits, OpVT),
8276 DAG.getConstant(X86::COND_E, MVT::i8),
8277 Op.getValue(1)
8278 };
8279 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008280
Owen Anderson825b72b2009-08-11 20:47:22 +00008281 if (VT == MVT::i8)
8282 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008283 return Op;
8284}
8285
Dan Gohmand858e902010-04-17 15:26:15 +00008286SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008287 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00008288 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008289 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008290
Mon P Wangaf9b9522008-12-18 21:42:19 +00008291 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
8292 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
8293 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
8294 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
8295 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
8296 //
8297 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
8298 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
8299 // return AloBlo + AloBhi + AhiBlo;
8300
8301 SDValue A = Op.getOperand(0);
8302 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008303
Dale Johannesene4d209d2009-02-03 20:21:25 +00008304 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008305 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8306 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008307 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008308 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8309 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008310 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008311 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008312 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008313 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008314 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008315 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008316 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008317 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008318 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008319 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008320 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8321 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008322 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008323 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8324 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008325 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
8326 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008327 return Res;
8328}
8329
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008330SDValue X86TargetLowering::LowerSHL(SDValue Op, SelectionDAG &DAG) const {
8331 EVT VT = Op.getValueType();
8332 DebugLoc dl = Op.getDebugLoc();
8333 SDValue R = Op.getOperand(0);
8334
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008335 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008336
Nate Begeman51409212010-07-28 00:21:48 +00008337 assert(Subtarget->hasSSE41() && "Cannot lower SHL without SSE4.1 or later");
8338
8339 if (VT == MVT::v4i32) {
8340 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8341 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8342 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
8343
8344 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008345
Nate Begeman51409212010-07-28 00:21:48 +00008346 std::vector<Constant*> CV(4, CI);
8347 Constant *C = ConstantVector::get(CV);
8348 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8349 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008350 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008351 false, false, 16);
8352
8353 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008354 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00008355 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
8356 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
8357 }
8358 if (VT == MVT::v16i8) {
8359 // a = a << 5;
8360 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8361 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8362 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
8363
8364 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
8365 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
8366
8367 std::vector<Constant*> CVM1(16, CM1);
8368 std::vector<Constant*> CVM2(16, CM2);
8369 Constant *C = ConstantVector::get(CVM1);
8370 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8371 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008372 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008373 false, false, 16);
8374
8375 // r = pblendv(r, psllw(r & (char16)15, 4), a);
8376 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8377 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8378 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8379 DAG.getConstant(4, MVT::i32));
8380 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8381 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8382 R, M, Op);
8383 // a += a
8384 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008385
Nate Begeman51409212010-07-28 00:21:48 +00008386 C = ConstantVector::get(CVM2);
8387 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8388 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008389 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008390 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008391
Nate Begeman51409212010-07-28 00:21:48 +00008392 // r = pblendv(r, psllw(r & (char16)63, 2), a);
8393 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8394 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8395 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8396 DAG.getConstant(2, MVT::i32));
8397 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8398 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8399 R, M, Op);
8400 // a += a
8401 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008402
Nate Begeman51409212010-07-28 00:21:48 +00008403 // return pblendv(r, r+r, a);
8404 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8405 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8406 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
8407 return R;
8408 }
8409 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008410}
Mon P Wangaf9b9522008-12-18 21:42:19 +00008411
Dan Gohmand858e902010-04-17 15:26:15 +00008412SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00008413 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
8414 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00008415 // looks for this combo and may remove the "setcc" instruction if the "setcc"
8416 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00008417 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00008418 SDValue LHS = N->getOperand(0);
8419 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00008420 unsigned BaseOp = 0;
8421 unsigned Cond = 0;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008422 DebugLoc dl = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00008423
8424 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008425 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00008426 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00008427 // A subtract of one will be selected as a INC. Note that INC doesn't
8428 // set CF, so we can't do this for UADDO.
8429 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8430 if (C->getAPIntValue() == 1) {
8431 BaseOp = X86ISD::INC;
8432 Cond = X86::COND_O;
8433 break;
8434 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008435 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00008436 Cond = X86::COND_O;
8437 break;
8438 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008439 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00008440 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008441 break;
8442 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00008443 // A subtract of one will be selected as a DEC. Note that DEC doesn't
8444 // set CF, so we can't do this for USUBO.
8445 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8446 if (C->getAPIntValue() == 1) {
8447 BaseOp = X86ISD::DEC;
8448 Cond = X86::COND_O;
8449 break;
8450 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008451 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00008452 Cond = X86::COND_O;
8453 break;
8454 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008455 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00008456 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008457 break;
8458 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008459 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00008460 Cond = X86::COND_O;
8461 break;
8462 case ISD::UMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008463 BaseOp = X86ISD::UMUL;
Dan Gohman653456c2009-01-07 00:15:08 +00008464 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008465 break;
8466 }
Bill Wendling3fafd932008-11-26 22:37:40 +00008467
Bill Wendling61edeb52008-12-02 01:06:39 +00008468 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008469 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008470 SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00008471
Bill Wendling61edeb52008-12-02 01:06:39 +00008472 SDValue SetCC =
Dale Johannesene4d209d2009-02-03 20:21:25 +00008473 DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1),
Owen Anderson825b72b2009-08-11 20:47:22 +00008474 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00008475
Bill Wendling61edeb52008-12-02 01:06:39 +00008476 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
8477 return Sum;
Bill Wendling41ea7e72008-11-24 19:21:46 +00008478}
8479
Eric Christopher9a9d2752010-07-22 02:48:34 +00008480SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
8481 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008482
Eric Christopherb6729dc2010-08-04 23:03:04 +00008483 if (!Subtarget->hasSSE2()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00008484 SDValue Chain = Op.getOperand(0);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008485 SDValue Zero = DAG.getConstant(0,
Eric Christopherb6729dc2010-08-04 23:03:04 +00008486 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00008487 SDValue Ops[] = {
8488 DAG.getRegister(X86::ESP, MVT::i32), // Base
8489 DAG.getTargetConstant(1, MVT::i8), // Scale
8490 DAG.getRegister(0, MVT::i32), // Index
8491 DAG.getTargetConstant(0, MVT::i32), // Disp
8492 DAG.getRegister(0, MVT::i32), // Segment.
8493 Zero,
8494 Chain
8495 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008496 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00008497 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
8498 array_lengthof(Ops));
8499 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00008500 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008501
Eric Christopher9a9d2752010-07-22 02:48:34 +00008502 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00008503 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00008504 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008505
Chris Lattner132929a2010-08-14 17:26:09 +00008506 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8507 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
8508 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
8509 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008510
Chris Lattner132929a2010-08-14 17:26:09 +00008511 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
8512 if (!Op1 && !Op2 && !Op3 && Op4)
8513 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008514
Chris Lattner132929a2010-08-14 17:26:09 +00008515 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
8516 if (Op1 && !Op2 && !Op3 && !Op4)
8517 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008518
8519 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00008520 // (MFENCE)>;
8521 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00008522}
8523
Dan Gohmand858e902010-04-17 15:26:15 +00008524SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008525 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008526 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00008527 unsigned Reg = 0;
8528 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008529 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008530 default:
8531 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008532 case MVT::i8: Reg = X86::AL; size = 1; break;
8533 case MVT::i16: Reg = X86::AX; size = 2; break;
8534 case MVT::i32: Reg = X86::EAX; size = 4; break;
8535 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00008536 assert(Subtarget->is64Bit() && "Node not type legal!");
8537 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00008538 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008539 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008540 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00008541 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00008542 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008543 Op.getOperand(1),
8544 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00008545 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008546 cpIn.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008547 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008548 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
8549 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
8550 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00008551 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008552 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00008553 return cpOut;
8554}
8555
Duncan Sands1607f052008-12-01 11:39:25 +00008556SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008557 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00008558 assert(Subtarget->is64Bit() && "Result not type legalized?");
Owen Anderson825b72b2009-08-11 20:47:22 +00008559 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008560 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008561 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008562 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008563 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
8564 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00008565 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00008566 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
8567 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00008568 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00008569 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00008570 rdx.getValue(1)
8571 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008572 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008573}
8574
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008575SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00008576 SelectionDAG &DAG) const {
8577 EVT SrcVT = Op.getOperand(0).getValueType();
8578 EVT DstVT = Op.getValueType();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008579 assert((Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Dale Johannesen7d07b482010-05-21 00:52:33 +00008580 Subtarget->hasMMX() && !DisableMMX) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008581 "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00008582 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00008583 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008584 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00008585 // i64 <=> MMX conversions are Legal.
8586 if (SrcVT==MVT::i64 && DstVT.isVector())
8587 return Op;
8588 if (DstVT==MVT::i64 && SrcVT.isVector())
8589 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00008590 // MMX <=> MMX conversions are Legal.
8591 if (SrcVT.isVector() && DstVT.isVector())
8592 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00008593 // All other conversions need to be expanded.
8594 return SDValue();
8595}
Dan Gohmand858e902010-04-17 15:26:15 +00008596SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008597 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008598 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008599 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008600 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00008601 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008602 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008603 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008604 Node->getOperand(0),
8605 Node->getOperand(1), negOp,
8606 cast<AtomicSDNode>(Node)->getSrcValue(),
8607 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00008608}
8609
Evan Cheng0db9fe62006-04-25 20:13:52 +00008610/// LowerOperation - Provide custom lowering hooks for some operations.
8611///
Dan Gohmand858e902010-04-17 15:26:15 +00008612SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008613 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008614 default: llvm_unreachable("Should not custom lower this!");
Eric Christopher9a9d2752010-07-22 02:48:34 +00008615 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008616 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
8617 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008618 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00008619 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008620 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
8621 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
8622 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
8623 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
8624 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
8625 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008626 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00008627 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00008628 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008629 case ISD::SHL_PARTS:
8630 case ISD::SRA_PARTS:
8631 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
8632 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008633 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008634 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00008635 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008636 case ISD::FABS: return LowerFABS(Op, DAG);
8637 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008638 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008639 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00008640 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008641 case ISD::SELECT: return LowerSELECT(Op, DAG);
8642 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008643 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008644 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00008645 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00008646 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008647 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008648 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
8649 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008650 case ISD::FRAME_TO_ARGS_OFFSET:
8651 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008652 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008653 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008654 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00008655 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00008656 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
8657 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008658 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008659 case ISD::SHL: return LowerSHL(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00008660 case ISD::SADDO:
8661 case ISD::UADDO:
8662 case ISD::SSUBO:
8663 case ISD::USUBO:
8664 case ISD::SMULO:
8665 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00008666 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008667 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008668 }
Chris Lattner27a6c732007-11-24 07:07:01 +00008669}
8670
Duncan Sands1607f052008-12-01 11:39:25 +00008671void X86TargetLowering::
8672ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008673 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008674 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008675 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00008676 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00008677
8678 SDValue Chain = Node->getOperand(0);
8679 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008680 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008681 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008682 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008683 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00008684 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00008685 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00008686 SDValue Result =
8687 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
8688 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00008689 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008690 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008691 Results.push_back(Result.getValue(2));
8692}
8693
Duncan Sands126d9072008-07-04 11:47:58 +00008694/// ReplaceNodeResults - Replace a node with an illegal result type
8695/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00008696void X86TargetLowering::ReplaceNodeResults(SDNode *N,
8697 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008698 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00008699 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00008700 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00008701 default:
Duncan Sands1607f052008-12-01 11:39:25 +00008702 assert(false && "Do not know how to custom type legalize this operation!");
8703 return;
8704 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00008705 std::pair<SDValue,SDValue> Vals =
8706 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00008707 SDValue FIST = Vals.first, StackSlot = Vals.second;
8708 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00008709 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00008710 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00008711 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
8712 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00008713 }
8714 return;
8715 }
8716 case ISD::READCYCLECOUNTER: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008717 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008718 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008719 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008720 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00008721 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00008722 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008723 eax.getValue(2));
8724 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
8725 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00008726 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008727 Results.push_back(edx.getValue(1));
8728 return;
8729 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008730 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00008731 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008732 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00008733 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008734 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8735 DAG.getConstant(0, MVT::i32));
8736 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8737 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008738 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
8739 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008740 cpInL.getValue(1));
8741 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008742 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8743 DAG.getConstant(0, MVT::i32));
8744 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8745 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008746 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00008747 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008748 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008749 swapInL.getValue(1));
8750 SDValue Ops[] = { swapInH.getValue(0),
8751 N->getOperand(1),
8752 swapInH.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008753 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00008754 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
8755 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
8756 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00008757 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008758 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008759 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008760 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00008761 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008762 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008763 Results.push_back(cpOutH.getValue(1));
8764 return;
8765 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008766 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00008767 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
8768 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008769 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00008770 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
8771 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008772 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00008773 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
8774 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008775 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00008776 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
8777 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008778 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00008779 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
8780 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008781 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00008782 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
8783 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008784 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00008785 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
8786 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00008787 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008788}
8789
Evan Cheng72261582005-12-20 06:22:03 +00008790const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
8791 switch (Opcode) {
8792 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00008793 case X86ISD::BSF: return "X86ISD::BSF";
8794 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00008795 case X86ISD::SHLD: return "X86ISD::SHLD";
8796 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00008797 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008798 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00008799 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008800 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00008801 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00008802 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00008803 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
8804 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
8805 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00008806 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00008807 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00008808 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00008809 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00008810 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00008811 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00008812 case X86ISD::COMI: return "X86ISD::COMI";
8813 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00008814 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00008815 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Evan Cheng72261582005-12-20 06:22:03 +00008816 case X86ISD::CMOV: return "X86ISD::CMOV";
8817 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00008818 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00008819 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
8820 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00008821 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00008822 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00008823 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008824 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00008825 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008826 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
8827 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00008828 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00008829 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Evan Cheng8ca29322006-11-10 21:43:37 +00008830 case X86ISD::FMAX: return "X86ISD::FMAX";
8831 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00008832 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
8833 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008834 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00008835 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008836 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00008837 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008838 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00008839 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
8840 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008841 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
8842 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
8843 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
8844 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
8845 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
8846 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00008847 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
8848 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00008849 case X86ISD::VSHL: return "X86ISD::VSHL";
8850 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00008851 case X86ISD::CMPPD: return "X86ISD::CMPPD";
8852 case X86ISD::CMPPS: return "X86ISD::CMPPS";
8853 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
8854 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
8855 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
8856 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
8857 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
8858 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
8859 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
8860 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008861 case X86ISD::ADD: return "X86ISD::ADD";
8862 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingd350e022008-12-12 21:15:41 +00008863 case X86ISD::SMUL: return "X86ISD::SMUL";
8864 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00008865 case X86ISD::INC: return "X86ISD::INC";
8866 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00008867 case X86ISD::OR: return "X86ISD::OR";
8868 case X86ISD::XOR: return "X86ISD::XOR";
8869 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00008870 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00008871 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008872 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008873 case X86ISD::PALIGN: return "X86ISD::PALIGN";
8874 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
8875 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
8876 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
8877 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
8878 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
8879 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
8880 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
8881 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008882 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00008883 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008884 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00008885 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
8886 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008887 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
8888 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
8889 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
8890 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
8891 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
8892 case X86ISD::MOVSD: return "X86ISD::MOVSD";
8893 case X86ISD::MOVSS: return "X86ISD::MOVSS";
8894 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
8895 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
8896 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
8897 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
8898 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
8899 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
8900 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
8901 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
8902 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
8903 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
8904 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
8905 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +00008906 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +00008907 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008908 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +00008909 }
8910}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00008911
Chris Lattnerc9addb72007-03-30 23:15:24 +00008912// isLegalAddressingMode - Return true if the addressing mode represented
8913// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00008914bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00008915 const Type *Ty) const {
8916 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008917 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +00008918 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +00008919
Chris Lattnerc9addb72007-03-30 23:15:24 +00008920 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008921 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +00008922 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00008923
Chris Lattnerc9addb72007-03-30 23:15:24 +00008924 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +00008925 unsigned GVFlags =
8926 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008927
Chris Lattnerdfed4132009-07-10 07:38:24 +00008928 // If a reference to this global requires an extra load, we can't fold it.
8929 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +00008930 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008931
Chris Lattnerdfed4132009-07-10 07:38:24 +00008932 // If BaseGV requires a register for the PIC base, we cannot also have a
8933 // BaseReg specified.
8934 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +00008935 return false;
Evan Cheng52787842007-08-01 23:46:47 +00008936
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008937 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +00008938 if ((M != CodeModel::Small || R != Reloc::Static) &&
8939 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008940 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00008941 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008942
Chris Lattnerc9addb72007-03-30 23:15:24 +00008943 switch (AM.Scale) {
8944 case 0:
8945 case 1:
8946 case 2:
8947 case 4:
8948 case 8:
8949 // These scales always work.
8950 break;
8951 case 3:
8952 case 5:
8953 case 9:
8954 // These scales are formed with basereg+scalereg. Only accept if there is
8955 // no basereg yet.
8956 if (AM.HasBaseReg)
8957 return false;
8958 break;
8959 default: // Other stuff never works.
8960 return false;
8961 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008962
Chris Lattnerc9addb72007-03-30 23:15:24 +00008963 return true;
8964}
8965
8966
Evan Cheng2bd122c2007-10-26 01:56:11 +00008967bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00008968 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +00008969 return false;
Evan Chenge127a732007-10-29 07:57:50 +00008970 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
8971 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00008972 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00008973 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00008974 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +00008975}
8976
Owen Andersone50ed302009-08-10 22:56:29 +00008977bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008978 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008979 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008980 unsigned NumBits1 = VT1.getSizeInBits();
8981 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00008982 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008983 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00008984 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008985}
Evan Cheng2bd122c2007-10-26 01:56:11 +00008986
Dan Gohman97121ba2009-04-08 00:15:30 +00008987bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00008988 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00008989 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00008990}
8991
Owen Andersone50ed302009-08-10 22:56:29 +00008992bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00008993 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00008994 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00008995}
8996
Owen Andersone50ed302009-08-10 22:56:29 +00008997bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +00008998 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +00008999 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +00009000}
9001
Evan Cheng60c07e12006-07-05 22:17:51 +00009002/// isShuffleMaskLegal - Targets can use this to indicate that they only
9003/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
9004/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
9005/// are assumed to be legal.
9006bool
Eric Christopherfd179292009-08-27 18:07:15 +00009007X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +00009008 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +00009009 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +00009010 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +00009011 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +00009012
Nate Begemana09008b2009-10-19 02:17:23 +00009013 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +00009014 return (VT.getVectorNumElements() == 2 ||
9015 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
9016 isMOVLMask(M, VT) ||
9017 isSHUFPMask(M, VT) ||
9018 isPSHUFDMask(M, VT) ||
9019 isPSHUFHWMask(M, VT) ||
9020 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +00009021 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +00009022 isUNPCKLMask(M, VT) ||
9023 isUNPCKHMask(M, VT) ||
9024 isUNPCKL_v_undef_Mask(M, VT) ||
9025 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009026}
9027
Dan Gohman7d8143f2008-04-09 20:09:42 +00009028bool
Nate Begeman5a5ca152009-04-29 05:20:52 +00009029X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +00009030 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00009031 unsigned NumElts = VT.getVectorNumElements();
9032 // FIXME: This collection of masks seems suspect.
9033 if (NumElts == 2)
9034 return true;
9035 if (NumElts == 4 && VT.getSizeInBits() == 128) {
9036 return (isMOVLMask(Mask, VT) ||
9037 isCommutedMOVLMask(Mask, VT, true) ||
9038 isSHUFPMask(Mask, VT) ||
9039 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009040 }
9041 return false;
9042}
9043
9044//===----------------------------------------------------------------------===//
9045// X86 Scheduler Hooks
9046//===----------------------------------------------------------------------===//
9047
Mon P Wang63307c32008-05-05 19:05:59 +00009048// private utility function
9049MachineBasicBlock *
9050X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
9051 MachineBasicBlock *MBB,
9052 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009053 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009054 unsigned LoadOpc,
9055 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009056 unsigned notOpc,
9057 unsigned EAXreg,
9058 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009059 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009060 // For the atomic bitwise operator, we generate
9061 // thisMBB:
9062 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009063 // ld t1 = [bitinstr.addr]
9064 // op t2 = t1, [bitinstr.val]
9065 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009066 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9067 // bz newMBB
9068 // fallthrough -->nextMBB
9069 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9070 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009071 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009072 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009073
Mon P Wang63307c32008-05-05 19:05:59 +00009074 /// First build the CFG
9075 MachineFunction *F = MBB->getParent();
9076 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009077 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9078 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9079 F->insert(MBBIter, newMBB);
9080 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009081
Dan Gohman14152b42010-07-06 20:24:04 +00009082 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9083 nextMBB->splice(nextMBB->begin(), thisMBB,
9084 llvm::next(MachineBasicBlock::iterator(bInstr)),
9085 thisMBB->end());
9086 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009087
Mon P Wang63307c32008-05-05 19:05:59 +00009088 // Update thisMBB to fall through to newMBB
9089 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009090
Mon P Wang63307c32008-05-05 19:05:59 +00009091 // newMBB jumps to itself and fall through to nextMBB
9092 newMBB->addSuccessor(nextMBB);
9093 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009094
Mon P Wang63307c32008-05-05 19:05:59 +00009095 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009096 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009097 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00009098 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009099 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009100 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009101 int numArgs = bInstr->getNumOperands() - 1;
9102 for (int i=0; i < numArgs; ++i)
9103 argOpers[i] = &bInstr->getOperand(i+1);
9104
9105 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009106 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009107 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009108
Dale Johannesen140be2d2008-08-19 18:47:28 +00009109 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009110 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009111 for (int i=0; i <= lastAddrIndx; ++i)
9112 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009113
Dale Johannesen140be2d2008-08-19 18:47:28 +00009114 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009115 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009116 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009117 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009118 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009119 tt = t1;
9120
Dale Johannesen140be2d2008-08-19 18:47:28 +00009121 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00009122 assert((argOpers[valArgIndx]->isReg() ||
9123 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009124 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00009125 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009126 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009127 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009128 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009129 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00009130 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009131
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009132 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00009133 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009134
Dale Johannesene4d209d2009-02-03 20:21:25 +00009135 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00009136 for (int i=0; i <= lastAddrIndx; ++i)
9137 (*MIB).addOperand(*argOpers[i]);
9138 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00009139 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009140 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9141 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +00009142
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009143 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00009144 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009145
Mon P Wang63307c32008-05-05 19:05:59 +00009146 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009147 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009148
Dan Gohman14152b42010-07-06 20:24:04 +00009149 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009150 return nextMBB;
9151}
9152
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00009153// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00009154MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009155X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
9156 MachineBasicBlock *MBB,
9157 unsigned regOpcL,
9158 unsigned regOpcH,
9159 unsigned immOpcL,
9160 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009161 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009162 // For the atomic bitwise operator, we generate
9163 // thisMBB (instructions are in pairs, except cmpxchg8b)
9164 // ld t1,t2 = [bitinstr.addr]
9165 // newMBB:
9166 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
9167 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00009168 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009169 // mov ECX, EBX <- t5, t6
9170 // mov EAX, EDX <- t1, t2
9171 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
9172 // mov t3, t4 <- EAX, EDX
9173 // bz newMBB
9174 // result in out1, out2
9175 // fallthrough -->nextMBB
9176
9177 const TargetRegisterClass *RC = X86::GR32RegisterClass;
9178 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009179 const unsigned NotOpc = X86::NOT32r;
9180 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9181 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9182 MachineFunction::iterator MBBIter = MBB;
9183 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009184
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009185 /// First build the CFG
9186 MachineFunction *F = MBB->getParent();
9187 MachineBasicBlock *thisMBB = MBB;
9188 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9189 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9190 F->insert(MBBIter, newMBB);
9191 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009192
Dan Gohman14152b42010-07-06 20:24:04 +00009193 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9194 nextMBB->splice(nextMBB->begin(), thisMBB,
9195 llvm::next(MachineBasicBlock::iterator(bInstr)),
9196 thisMBB->end());
9197 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009198
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009199 // Update thisMBB to fall through to newMBB
9200 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009201
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009202 // newMBB jumps to itself and fall through to nextMBB
9203 newMBB->addSuccessor(nextMBB);
9204 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009205
Dale Johannesene4d209d2009-02-03 20:21:25 +00009206 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009207 // Insert instructions into newMBB based on incoming instruction
9208 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009209 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009210 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009211 MachineOperand& dest1Oper = bInstr->getOperand(0);
9212 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009213 MachineOperand* argOpers[2 + X86::AddrNumOperands];
9214 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009215 argOpers[i] = &bInstr->getOperand(i+2);
9216
Dan Gohman71ea4e52010-05-14 21:01:44 +00009217 // We use some of the operands multiple times, so conservatively just
9218 // clear any kill flags that might be present.
9219 if (argOpers[i]->isReg() && argOpers[i]->isUse())
9220 argOpers[i]->setIsKill(false);
9221 }
9222
Evan Chengad5b52f2010-01-08 19:14:57 +00009223 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009224 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +00009225
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009226 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009227 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009228 for (int i=0; i <= lastAddrIndx; ++i)
9229 (*MIB).addOperand(*argOpers[i]);
9230 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009231 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00009232 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +00009233 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009234 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +00009235 MachineOperand newOp3 = *(argOpers[3]);
9236 if (newOp3.isImm())
9237 newOp3.setImm(newOp3.getImm()+4);
9238 else
9239 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009240 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +00009241 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009242
9243 // t3/4 are defined later, at the bottom of the loop
9244 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
9245 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009246 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009247 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009248 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009249 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
9250
Evan Cheng306b4ca2010-01-08 23:41:50 +00009251 // The subsequent operations should be using the destination registers of
9252 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +00009253 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009254 t1 = F->getRegInfo().createVirtualRegister(RC);
9255 t2 = F->getRegInfo().createVirtualRegister(RC);
9256 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
9257 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009258 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009259 t1 = dest1Oper.getReg();
9260 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009261 }
9262
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009263 int valArgIndx = lastAddrIndx + 1;
9264 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +00009265 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009266 "invalid operand");
9267 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
9268 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009269 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009270 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009271 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009272 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +00009273 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009274 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009275 (*MIB).addOperand(*argOpers[valArgIndx]);
9276 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009277 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009278 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009279 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009280 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009281 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009282 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009283 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +00009284 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009285 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009286 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009287
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009288 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009289 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009290 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009291 MIB.addReg(t2);
9292
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009293 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009294 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009295 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009296 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +00009297
Dale Johannesene4d209d2009-02-03 20:21:25 +00009298 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009299 for (int i=0; i <= lastAddrIndx; ++i)
9300 (*MIB).addOperand(*argOpers[i]);
9301
9302 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009303 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9304 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009305
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009306 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009307 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009308 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009309 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009310
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009311 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009312 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009313
Dan Gohman14152b42010-07-06 20:24:04 +00009314 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009315 return nextMBB;
9316}
9317
9318// private utility function
9319MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +00009320X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
9321 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009322 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009323 // For the atomic min/max operator, we generate
9324 // thisMBB:
9325 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009326 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +00009327 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +00009328 // cmp t1, t2
9329 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +00009330 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009331 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9332 // bz newMBB
9333 // fallthrough -->nextMBB
9334 //
9335 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9336 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009337 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009338 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009339
Mon P Wang63307c32008-05-05 19:05:59 +00009340 /// First build the CFG
9341 MachineFunction *F = MBB->getParent();
9342 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009343 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9344 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9345 F->insert(MBBIter, newMBB);
9346 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009347
Dan Gohman14152b42010-07-06 20:24:04 +00009348 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9349 nextMBB->splice(nextMBB->begin(), thisMBB,
9350 llvm::next(MachineBasicBlock::iterator(mInstr)),
9351 thisMBB->end());
9352 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009353
Mon P Wang63307c32008-05-05 19:05:59 +00009354 // Update thisMBB to fall through to newMBB
9355 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009356
Mon P Wang63307c32008-05-05 19:05:59 +00009357 // newMBB jumps to newMBB and fall through to nextMBB
9358 newMBB->addSuccessor(nextMBB);
9359 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009360
Dale Johannesene4d209d2009-02-03 20:21:25 +00009361 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009362 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009363 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009364 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +00009365 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009366 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009367 int numArgs = mInstr->getNumOperands() - 1;
9368 for (int i=0; i < numArgs; ++i)
9369 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009370
Mon P Wang63307c32008-05-05 19:05:59 +00009371 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009372 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009373 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009374
Mon P Wangab3e7472008-05-05 22:56:23 +00009375 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009376 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009377 for (int i=0; i <= lastAddrIndx; ++i)
9378 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +00009379
Mon P Wang63307c32008-05-05 19:05:59 +00009380 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +00009381 assert((argOpers[valArgIndx]->isReg() ||
9382 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009383 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +00009384
9385 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +00009386 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009387 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009388 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009389 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009390 (*MIB).addOperand(*argOpers[valArgIndx]);
9391
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009392 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +00009393 MIB.addReg(t1);
9394
Dale Johannesene4d209d2009-02-03 20:21:25 +00009395 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +00009396 MIB.addReg(t1);
9397 MIB.addReg(t2);
9398
9399 // Generate movc
9400 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009401 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +00009402 MIB.addReg(t2);
9403 MIB.addReg(t1);
9404
9405 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +00009406 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +00009407 for (int i=0; i <= lastAddrIndx; ++i)
9408 (*MIB).addOperand(*argOpers[i]);
9409 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +00009410 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009411 (*MIB).setMemRefs(mInstr->memoperands_begin(),
9412 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00009413
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009414 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +00009415 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009416
Mon P Wang63307c32008-05-05 19:05:59 +00009417 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009418 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009419
Dan Gohman14152b42010-07-06 20:24:04 +00009420 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009421 return nextMBB;
9422}
9423
Eric Christopherf83a5de2009-08-27 18:08:16 +00009424// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009425// or XMM0_V32I8 in AVX all of this code can be replaced with that
9426// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009427MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +00009428X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +00009429 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009430 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
9431 "Target must have SSE4.2 or AVX features enabled");
9432
Eric Christopherb120ab42009-08-18 22:50:32 +00009433 DebugLoc dl = MI->getDebugLoc();
9434 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +00009435 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009436 if (!Subtarget->hasAVX()) {
9437 if (memArg)
9438 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
9439 else
9440 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
9441 } else {
9442 if (memArg)
9443 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
9444 else
9445 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
9446 }
Eric Christopherb120ab42009-08-18 22:50:32 +00009447
Eric Christopher41c902f2010-11-30 08:20:21 +00009448 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +00009449 for (unsigned i = 0; i < numArgs; ++i) {
9450 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +00009451 if (!(Op.isReg() && Op.isImplicit()))
9452 MIB.addOperand(Op);
9453 }
Eric Christopher41c902f2010-11-30 08:20:21 +00009454 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +00009455 .addReg(X86::XMM0);
9456
Dan Gohman14152b42010-07-06 20:24:04 +00009457 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +00009458 return BB;
9459}
9460
9461MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +00009462X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +00009463 DebugLoc dl = MI->getDebugLoc();
9464 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9465
9466 // Address into RAX/EAX, other two args into ECX, EDX.
9467 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
9468 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
9469 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
9470 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +00009471 MIB.addOperand(MI->getOperand(i));
Eric Christopher228232b2010-11-30 07:20:12 +00009472
9473 unsigned ValOps = X86::AddrNumOperands;
9474 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
9475 .addReg(MI->getOperand(ValOps).getReg());
9476 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
9477 .addReg(MI->getOperand(ValOps+1).getReg());
9478
9479 // The instruction doesn't actually take any operands though.
9480 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
9481
9482 MI->eraseFromParent(); // The pseudo is gone now.
9483 return BB;
9484}
9485
9486MachineBasicBlock *
9487X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +00009488 DebugLoc dl = MI->getDebugLoc();
9489 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9490
9491 // First arg in ECX, the second in EAX.
9492 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
9493 .addReg(MI->getOperand(0).getReg());
9494 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
9495 .addReg(MI->getOperand(1).getReg());
9496
9497 // The instruction doesn't actually take any operands though.
9498 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
9499
9500 MI->eraseFromParent(); // The pseudo is gone now.
9501 return BB;
9502}
9503
9504MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +00009505X86TargetLowering::EmitVAARG64WithCustomInserter(
9506 MachineInstr *MI,
9507 MachineBasicBlock *MBB) const {
9508 // Emit va_arg instruction on X86-64.
9509
9510 // Operands to this pseudo-instruction:
9511 // 0 ) Output : destination address (reg)
9512 // 1-5) Input : va_list address (addr, i64mem)
9513 // 6 ) ArgSize : Size (in bytes) of vararg type
9514 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
9515 // 8 ) Align : Alignment of type
9516 // 9 ) EFLAGS (implicit-def)
9517
9518 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
9519 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
9520
9521 unsigned DestReg = MI->getOperand(0).getReg();
9522 MachineOperand &Base = MI->getOperand(1);
9523 MachineOperand &Scale = MI->getOperand(2);
9524 MachineOperand &Index = MI->getOperand(3);
9525 MachineOperand &Disp = MI->getOperand(4);
9526 MachineOperand &Segment = MI->getOperand(5);
9527 unsigned ArgSize = MI->getOperand(6).getImm();
9528 unsigned ArgMode = MI->getOperand(7).getImm();
9529 unsigned Align = MI->getOperand(8).getImm();
9530
9531 // Memory Reference
9532 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
9533 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
9534 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
9535
9536 // Machine Information
9537 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9538 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
9539 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
9540 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
9541 DebugLoc DL = MI->getDebugLoc();
9542
9543 // struct va_list {
9544 // i32 gp_offset
9545 // i32 fp_offset
9546 // i64 overflow_area (address)
9547 // i64 reg_save_area (address)
9548 // }
9549 // sizeof(va_list) = 24
9550 // alignment(va_list) = 8
9551
9552 unsigned TotalNumIntRegs = 6;
9553 unsigned TotalNumXMMRegs = 8;
9554 bool UseGPOffset = (ArgMode == 1);
9555 bool UseFPOffset = (ArgMode == 2);
9556 unsigned MaxOffset = TotalNumIntRegs * 8 +
9557 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
9558
9559 /* Align ArgSize to a multiple of 8 */
9560 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
9561 bool NeedsAlign = (Align > 8);
9562
9563 MachineBasicBlock *thisMBB = MBB;
9564 MachineBasicBlock *overflowMBB;
9565 MachineBasicBlock *offsetMBB;
9566 MachineBasicBlock *endMBB;
9567
9568 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
9569 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
9570 unsigned OffsetReg = 0;
9571
9572 if (!UseGPOffset && !UseFPOffset) {
9573 // If we only pull from the overflow region, we don't create a branch.
9574 // We don't need to alter control flow.
9575 OffsetDestReg = 0; // unused
9576 OverflowDestReg = DestReg;
9577
9578 offsetMBB = NULL;
9579 overflowMBB = thisMBB;
9580 endMBB = thisMBB;
9581 } else {
9582 // First emit code to check if gp_offset (or fp_offset) is below the bound.
9583 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
9584 // If not, pull from overflow_area. (branch to overflowMBB)
9585 //
9586 // thisMBB
9587 // | .
9588 // | .
9589 // offsetMBB overflowMBB
9590 // | .
9591 // | .
9592 // endMBB
9593
9594 // Registers for the PHI in endMBB
9595 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
9596 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
9597
9598 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9599 MachineFunction *MF = MBB->getParent();
9600 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9601 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9602 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9603
9604 MachineFunction::iterator MBBIter = MBB;
9605 ++MBBIter;
9606
9607 // Insert the new basic blocks
9608 MF->insert(MBBIter, offsetMBB);
9609 MF->insert(MBBIter, overflowMBB);
9610 MF->insert(MBBIter, endMBB);
9611
9612 // Transfer the remainder of MBB and its successor edges to endMBB.
9613 endMBB->splice(endMBB->begin(), thisMBB,
9614 llvm::next(MachineBasicBlock::iterator(MI)),
9615 thisMBB->end());
9616 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
9617
9618 // Make offsetMBB and overflowMBB successors of thisMBB
9619 thisMBB->addSuccessor(offsetMBB);
9620 thisMBB->addSuccessor(overflowMBB);
9621
9622 // endMBB is a successor of both offsetMBB and overflowMBB
9623 offsetMBB->addSuccessor(endMBB);
9624 overflowMBB->addSuccessor(endMBB);
9625
9626 // Load the offset value into a register
9627 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
9628 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
9629 .addOperand(Base)
9630 .addOperand(Scale)
9631 .addOperand(Index)
9632 .addDisp(Disp, UseFPOffset ? 4 : 0)
9633 .addOperand(Segment)
9634 .setMemRefs(MMOBegin, MMOEnd);
9635
9636 // Check if there is enough room left to pull this argument.
9637 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
9638 .addReg(OffsetReg)
9639 .addImm(MaxOffset + 8 - ArgSizeA8);
9640
9641 // Branch to "overflowMBB" if offset >= max
9642 // Fall through to "offsetMBB" otherwise
9643 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
9644 .addMBB(overflowMBB);
9645 }
9646
9647 // In offsetMBB, emit code to use the reg_save_area.
9648 if (offsetMBB) {
9649 assert(OffsetReg != 0);
9650
9651 // Read the reg_save_area address.
9652 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
9653 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
9654 .addOperand(Base)
9655 .addOperand(Scale)
9656 .addOperand(Index)
9657 .addDisp(Disp, 16)
9658 .addOperand(Segment)
9659 .setMemRefs(MMOBegin, MMOEnd);
9660
9661 // Zero-extend the offset
9662 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
9663 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
9664 .addImm(0)
9665 .addReg(OffsetReg)
9666 .addImm(X86::sub_32bit);
9667
9668 // Add the offset to the reg_save_area to get the final address.
9669 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
9670 .addReg(OffsetReg64)
9671 .addReg(RegSaveReg);
9672
9673 // Compute the offset for the next argument
9674 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
9675 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
9676 .addReg(OffsetReg)
9677 .addImm(UseFPOffset ? 16 : 8);
9678
9679 // Store it back into the va_list.
9680 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
9681 .addOperand(Base)
9682 .addOperand(Scale)
9683 .addOperand(Index)
9684 .addDisp(Disp, UseFPOffset ? 4 : 0)
9685 .addOperand(Segment)
9686 .addReg(NextOffsetReg)
9687 .setMemRefs(MMOBegin, MMOEnd);
9688
9689 // Jump to endMBB
9690 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
9691 .addMBB(endMBB);
9692 }
9693
9694 //
9695 // Emit code to use overflow area
9696 //
9697
9698 // Load the overflow_area address into a register.
9699 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
9700 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
9701 .addOperand(Base)
9702 .addOperand(Scale)
9703 .addOperand(Index)
9704 .addDisp(Disp, 8)
9705 .addOperand(Segment)
9706 .setMemRefs(MMOBegin, MMOEnd);
9707
9708 // If we need to align it, do so. Otherwise, just copy the address
9709 // to OverflowDestReg.
9710 if (NeedsAlign) {
9711 // Align the overflow address
9712 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
9713 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
9714
9715 // aligned_addr = (addr + (align-1)) & ~(align-1)
9716 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
9717 .addReg(OverflowAddrReg)
9718 .addImm(Align-1);
9719
9720 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
9721 .addReg(TmpReg)
9722 .addImm(~(uint64_t)(Align-1));
9723 } else {
9724 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
9725 .addReg(OverflowAddrReg);
9726 }
9727
9728 // Compute the next overflow address after this argument.
9729 // (the overflow address should be kept 8-byte aligned)
9730 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
9731 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
9732 .addReg(OverflowDestReg)
9733 .addImm(ArgSizeA8);
9734
9735 // Store the new overflow address.
9736 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
9737 .addOperand(Base)
9738 .addOperand(Scale)
9739 .addOperand(Index)
9740 .addDisp(Disp, 8)
9741 .addOperand(Segment)
9742 .addReg(NextAddrReg)
9743 .setMemRefs(MMOBegin, MMOEnd);
9744
9745 // If we branched, emit the PHI to the front of endMBB.
9746 if (offsetMBB) {
9747 BuildMI(*endMBB, endMBB->begin(), DL,
9748 TII->get(X86::PHI), DestReg)
9749 .addReg(OffsetDestReg).addMBB(offsetMBB)
9750 .addReg(OverflowDestReg).addMBB(overflowMBB);
9751 }
9752
9753 // Erase the pseudo instruction
9754 MI->eraseFromParent();
9755
9756 return endMBB;
9757}
9758
9759MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +00009760X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
9761 MachineInstr *MI,
9762 MachineBasicBlock *MBB) const {
9763 // Emit code to save XMM registers to the stack. The ABI says that the
9764 // number of registers to save is given in %al, so it's theoretically
9765 // possible to do an indirect jump trick to avoid saving all of them,
9766 // however this code takes a simpler approach and just executes all
9767 // of the stores if %al is non-zero. It's less code, and it's probably
9768 // easier on the hardware branch predictor, and stores aren't all that
9769 // expensive anyway.
9770
9771 // Create the new basic blocks. One block contains all the XMM stores,
9772 // and one block is the final destination regardless of whether any
9773 // stores were performed.
9774 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9775 MachineFunction *F = MBB->getParent();
9776 MachineFunction::iterator MBBIter = MBB;
9777 ++MBBIter;
9778 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
9779 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
9780 F->insert(MBBIter, XMMSaveMBB);
9781 F->insert(MBBIter, EndMBB);
9782
Dan Gohman14152b42010-07-06 20:24:04 +00009783 // Transfer the remainder of MBB and its successor edges to EndMBB.
9784 EndMBB->splice(EndMBB->begin(), MBB,
9785 llvm::next(MachineBasicBlock::iterator(MI)),
9786 MBB->end());
9787 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
9788
Dan Gohmand6708ea2009-08-15 01:38:56 +00009789 // The original block will now fall through to the XMM save block.
9790 MBB->addSuccessor(XMMSaveMBB);
9791 // The XMMSaveMBB will fall through to the end block.
9792 XMMSaveMBB->addSuccessor(EndMBB);
9793
9794 // Now add the instructions.
9795 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9796 DebugLoc DL = MI->getDebugLoc();
9797
9798 unsigned CountReg = MI->getOperand(0).getReg();
9799 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
9800 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
9801
9802 if (!Subtarget->isTargetWin64()) {
9803 // If %al is 0, branch around the XMM save block.
9804 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009805 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009806 MBB->addSuccessor(EndMBB);
9807 }
9808
9809 // In the XMM save block, save all the XMM argument registers.
9810 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
9811 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +00009812 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +00009813 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +00009814 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +00009815 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +00009816 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009817 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
9818 .addFrameIndex(RegSaveFrameIndex)
9819 .addImm(/*Scale=*/1)
9820 .addReg(/*IndexReg=*/0)
9821 .addImm(/*Disp=*/Offset)
9822 .addReg(/*Segment=*/0)
9823 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +00009824 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009825 }
9826
Dan Gohman14152b42010-07-06 20:24:04 +00009827 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009828
9829 return EndMBB;
9830}
Mon P Wang63307c32008-05-05 19:05:59 +00009831
Evan Cheng60c07e12006-07-05 22:17:51 +00009832MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +00009833X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009834 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +00009835 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9836 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00009837
Chris Lattner52600972009-09-02 05:57:00 +00009838 // To "insert" a SELECT_CC instruction, we actually have to insert the
9839 // diamond control-flow pattern. The incoming instruction knows the
9840 // destination vreg to set, the condition code register to branch on, the
9841 // true/false values to select between, and a branch opcode to use.
9842 const BasicBlock *LLVM_BB = BB->getBasicBlock();
9843 MachineFunction::iterator It = BB;
9844 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +00009845
Chris Lattner52600972009-09-02 05:57:00 +00009846 // thisMBB:
9847 // ...
9848 // TrueVal = ...
9849 // cmpTY ccX, r1, r2
9850 // bCC copy1MBB
9851 // fallthrough --> copy0MBB
9852 MachineBasicBlock *thisMBB = BB;
9853 MachineFunction *F = BB->getParent();
9854 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
9855 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +00009856 F->insert(It, copy0MBB);
9857 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +00009858
Bill Wendling730c07e2010-06-25 20:48:10 +00009859 // If the EFLAGS register isn't dead in the terminator, then claim that it's
9860 // live into the sink and copy blocks.
9861 const MachineFunction *MF = BB->getParent();
9862 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
9863 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +00009864
Dan Gohman14152b42010-07-06 20:24:04 +00009865 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
9866 const MachineOperand &MO = MI->getOperand(I);
9867 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +00009868 unsigned Reg = MO.getReg();
9869 if (Reg != X86::EFLAGS) continue;
9870 copy0MBB->addLiveIn(Reg);
9871 sinkMBB->addLiveIn(Reg);
9872 }
9873
Dan Gohman14152b42010-07-06 20:24:04 +00009874 // Transfer the remainder of BB and its successor edges to sinkMBB.
9875 sinkMBB->splice(sinkMBB->begin(), BB,
9876 llvm::next(MachineBasicBlock::iterator(MI)),
9877 BB->end());
9878 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
9879
9880 // Add the true and fallthrough blocks as its successors.
9881 BB->addSuccessor(copy0MBB);
9882 BB->addSuccessor(sinkMBB);
9883
9884 // Create the conditional branch instruction.
9885 unsigned Opc =
9886 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
9887 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
9888
Chris Lattner52600972009-09-02 05:57:00 +00009889 // copy0MBB:
9890 // %FalseValue = ...
9891 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +00009892 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00009893
Chris Lattner52600972009-09-02 05:57:00 +00009894 // sinkMBB:
9895 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
9896 // ...
Dan Gohman14152b42010-07-06 20:24:04 +00009897 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
9898 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +00009899 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
9900 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
9901
Dan Gohman14152b42010-07-06 20:24:04 +00009902 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +00009903 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +00009904}
9905
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009906MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009907X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009908 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009909 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9910 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009911
9912 // The lowering is pretty easy: we're just emitting the call to _alloca. The
9913 // non-trivial part is impdef of ESP.
9914 // FIXME: The code should be tweaked as soon as we'll try to do codegen for
9915 // mingw-w64.
9916
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009917 const char *StackProbeSymbol =
9918 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
9919
Dan Gohman14152b42010-07-06 20:24:04 +00009920 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009921 .addExternalSymbol(StackProbeSymbol)
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009922 .addReg(X86::EAX, RegState::Implicit)
9923 .addReg(X86::ESP, RegState::Implicit)
9924 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
Anton Korobeynikov9f7f83b2010-08-25 07:50:11 +00009925 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
9926 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009927
Dan Gohman14152b42010-07-06 20:24:04 +00009928 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009929 return BB;
9930}
Chris Lattner52600972009-09-02 05:57:00 +00009931
9932MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +00009933X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
9934 MachineBasicBlock *BB) const {
9935 // This is pretty easy. We're taking the value that we received from
9936 // our load from the relocation, sticking it in either RDI (x86-64)
9937 // or EAX and doing an indirect call. The return value will then
9938 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +00009939 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +00009940 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +00009941 DebugLoc DL = MI->getDebugLoc();
9942 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +00009943
9944 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +00009945 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009946
Eric Christopher30ef0e52010-06-03 04:07:48 +00009947 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +00009948 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9949 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +00009950 .addReg(X86::RIP)
9951 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009952 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +00009953 MI->getOperand(3).getTargetFlags())
9954 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +00009955 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +00009956 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +00009957 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +00009958 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9959 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +00009960 .addReg(0)
9961 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009962 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +00009963 MI->getOperand(3).getTargetFlags())
9964 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +00009965 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +00009966 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009967 } else {
Dan Gohman14152b42010-07-06 20:24:04 +00009968 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9969 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +00009970 .addReg(TII->getGlobalBaseReg(F))
9971 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009972 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +00009973 MI->getOperand(3).getTargetFlags())
9974 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +00009975 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +00009976 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009977 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009978
Dan Gohman14152b42010-07-06 20:24:04 +00009979 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +00009980 return BB;
9981}
9982
9983MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00009984X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009985 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +00009986 switch (MI->getOpcode()) {
9987 default: assert(false && "Unexpected instr type to insert");
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009988 case X86::WIN_ALLOCA:
9989 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009990 case X86::TLSCall_32:
9991 case X86::TLSCall_64:
9992 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +00009993 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +00009994 case X86::CMOV_FR32:
9995 case X86::CMOV_FR64:
9996 case X86::CMOV_V4F32:
9997 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +00009998 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +00009999 case X86::CMOV_GR16:
10000 case X86::CMOV_GR32:
10001 case X86::CMOV_RFP32:
10002 case X86::CMOV_RFP64:
10003 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010004 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010005
Dale Johannesen849f2142007-07-03 00:53:03 +000010006 case X86::FP32_TO_INT16_IN_MEM:
10007 case X86::FP32_TO_INT32_IN_MEM:
10008 case X86::FP32_TO_INT64_IN_MEM:
10009 case X86::FP64_TO_INT16_IN_MEM:
10010 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000010011 case X86::FP64_TO_INT64_IN_MEM:
10012 case X86::FP80_TO_INT16_IN_MEM:
10013 case X86::FP80_TO_INT32_IN_MEM:
10014 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000010015 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10016 DebugLoc DL = MI->getDebugLoc();
10017
Evan Cheng60c07e12006-07-05 22:17:51 +000010018 // Change the floating point control register to use "round towards zero"
10019 // mode when truncating to an integer value.
10020 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000010021 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000010022 addFrameReference(BuildMI(*BB, MI, DL,
10023 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010024
10025 // Load the old value of the high byte of the control word...
10026 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000010027 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000010028 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010029 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010030
10031 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000010032 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010033 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000010034
10035 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000010036 addFrameReference(BuildMI(*BB, MI, DL,
10037 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010038
10039 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000010040 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010041 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000010042
10043 // Get the X86 opcode to use.
10044 unsigned Opc;
10045 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010046 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000010047 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
10048 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
10049 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
10050 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
10051 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
10052 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000010053 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
10054 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
10055 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000010056 }
10057
10058 X86AddressMode AM;
10059 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000010060 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010061 AM.BaseType = X86AddressMode::RegBase;
10062 AM.Base.Reg = Op.getReg();
10063 } else {
10064 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000010065 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000010066 }
10067 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000010068 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010069 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010070 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000010071 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010072 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010073 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000010074 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010075 AM.GV = Op.getGlobal();
10076 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000010077 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010078 }
Dan Gohman14152b42010-07-06 20:24:04 +000010079 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010080 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000010081
10082 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000010083 addFrameReference(BuildMI(*BB, MI, DL,
10084 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010085
Dan Gohman14152b42010-07-06 20:24:04 +000010086 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000010087 return BB;
10088 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010089 // String/text processing lowering.
10090 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010091 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010092 return EmitPCMP(MI, BB, 3, false /* in-mem */);
10093 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010094 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010095 return EmitPCMP(MI, BB, 3, true /* in-mem */);
10096 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010097 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010098 return EmitPCMP(MI, BB, 5, false /* in mem */);
10099 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010100 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010101 return EmitPCMP(MI, BB, 5, true /* in mem */);
10102
Eric Christopher228232b2010-11-30 07:20:12 +000010103 // Thread synchronization.
10104 case X86::MONITOR:
10105 return EmitMonitor(MI, BB);
10106 case X86::MWAIT:
10107 return EmitMwait(MI, BB);
10108
Eric Christopherb120ab42009-08-18 22:50:32 +000010109 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000010110 case X86::ATOMAND32:
10111 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010112 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010113 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010114 X86::NOT32r, X86::EAX,
10115 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010116 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000010117 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
10118 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010119 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010120 X86::NOT32r, X86::EAX,
10121 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010122 case X86::ATOMXOR32:
10123 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010124 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010125 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010126 X86::NOT32r, X86::EAX,
10127 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010128 case X86::ATOMNAND32:
10129 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010130 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010131 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010132 X86::NOT32r, X86::EAX,
10133 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000010134 case X86::ATOMMIN32:
10135 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
10136 case X86::ATOMMAX32:
10137 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
10138 case X86::ATOMUMIN32:
10139 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
10140 case X86::ATOMUMAX32:
10141 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000010142
10143 case X86::ATOMAND16:
10144 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10145 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010146 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010147 X86::NOT16r, X86::AX,
10148 X86::GR16RegisterClass);
10149 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000010150 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010151 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010152 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010153 X86::NOT16r, X86::AX,
10154 X86::GR16RegisterClass);
10155 case X86::ATOMXOR16:
10156 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
10157 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010158 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010159 X86::NOT16r, X86::AX,
10160 X86::GR16RegisterClass);
10161 case X86::ATOMNAND16:
10162 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10163 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010164 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010165 X86::NOT16r, X86::AX,
10166 X86::GR16RegisterClass, true);
10167 case X86::ATOMMIN16:
10168 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
10169 case X86::ATOMMAX16:
10170 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
10171 case X86::ATOMUMIN16:
10172 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
10173 case X86::ATOMUMAX16:
10174 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
10175
10176 case X86::ATOMAND8:
10177 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10178 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010179 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010180 X86::NOT8r, X86::AL,
10181 X86::GR8RegisterClass);
10182 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000010183 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010184 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010185 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010186 X86::NOT8r, X86::AL,
10187 X86::GR8RegisterClass);
10188 case X86::ATOMXOR8:
10189 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
10190 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010191 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010192 X86::NOT8r, X86::AL,
10193 X86::GR8RegisterClass);
10194 case X86::ATOMNAND8:
10195 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10196 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010197 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010198 X86::NOT8r, X86::AL,
10199 X86::GR8RegisterClass, true);
10200 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010201 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000010202 case X86::ATOMAND64:
10203 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010204 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010205 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010206 X86::NOT64r, X86::RAX,
10207 X86::GR64RegisterClass);
10208 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000010209 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
10210 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010211 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010212 X86::NOT64r, X86::RAX,
10213 X86::GR64RegisterClass);
10214 case X86::ATOMXOR64:
10215 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010216 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010217 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010218 X86::NOT64r, X86::RAX,
10219 X86::GR64RegisterClass);
10220 case X86::ATOMNAND64:
10221 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
10222 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010223 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010224 X86::NOT64r, X86::RAX,
10225 X86::GR64RegisterClass, true);
10226 case X86::ATOMMIN64:
10227 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
10228 case X86::ATOMMAX64:
10229 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
10230 case X86::ATOMUMIN64:
10231 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
10232 case X86::ATOMUMAX64:
10233 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010234
10235 // This group does 64-bit operations on a 32-bit host.
10236 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010237 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010238 X86::AND32rr, X86::AND32rr,
10239 X86::AND32ri, X86::AND32ri,
10240 false);
10241 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010242 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010243 X86::OR32rr, X86::OR32rr,
10244 X86::OR32ri, X86::OR32ri,
10245 false);
10246 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010247 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010248 X86::XOR32rr, X86::XOR32rr,
10249 X86::XOR32ri, X86::XOR32ri,
10250 false);
10251 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010252 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010253 X86::AND32rr, X86::AND32rr,
10254 X86::AND32ri, X86::AND32ri,
10255 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010256 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010257 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010258 X86::ADD32rr, X86::ADC32rr,
10259 X86::ADD32ri, X86::ADC32ri,
10260 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010261 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010262 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010263 X86::SUB32rr, X86::SBB32rr,
10264 X86::SUB32ri, X86::SBB32ri,
10265 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000010266 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010267 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000010268 X86::MOV32rr, X86::MOV32rr,
10269 X86::MOV32ri, X86::MOV32ri,
10270 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010271 case X86::VASTART_SAVE_XMM_REGS:
10272 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000010273
10274 case X86::VAARG_64:
10275 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010276 }
10277}
10278
10279//===----------------------------------------------------------------------===//
10280// X86 Optimization Hooks
10281//===----------------------------------------------------------------------===//
10282
Dan Gohman475871a2008-07-27 21:46:04 +000010283void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000010284 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010285 APInt &KnownZero,
10286 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000010287 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000010288 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010289 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000010290 assert((Opc >= ISD::BUILTIN_OP_END ||
10291 Opc == ISD::INTRINSIC_WO_CHAIN ||
10292 Opc == ISD::INTRINSIC_W_CHAIN ||
10293 Opc == ISD::INTRINSIC_VOID) &&
10294 "Should use MaskedValueIsZero if you don't know whether Op"
10295 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010296
Dan Gohmanf4f92f52008-02-13 23:07:24 +000010297 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010298 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000010299 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010300 case X86ISD::ADD:
10301 case X86ISD::SUB:
10302 case X86ISD::SMUL:
10303 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000010304 case X86ISD::INC:
10305 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000010306 case X86ISD::OR:
10307 case X86ISD::XOR:
10308 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010309 // These nodes' second result is a boolean.
10310 if (Op.getResNo() == 0)
10311 break;
10312 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010313 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010314 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
10315 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000010316 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010317 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010318}
Chris Lattner259e97c2006-01-31 19:43:35 +000010319
Owen Andersonbc146b02010-09-21 20:42:50 +000010320unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
10321 unsigned Depth) const {
10322 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
10323 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
10324 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010325
Owen Andersonbc146b02010-09-21 20:42:50 +000010326 // Fallback case.
10327 return 1;
10328}
10329
Evan Cheng206ee9d2006-07-07 08:33:52 +000010330/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000010331/// node is a GlobalAddress + offset.
10332bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000010333 const GlobalValue* &GA,
10334 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000010335 if (N->getOpcode() == X86ISD::Wrapper) {
10336 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000010337 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000010338 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000010339 return true;
10340 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000010341 }
Evan Chengad4196b2008-05-12 19:56:52 +000010342 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000010343}
10344
Evan Cheng206ee9d2006-07-07 08:33:52 +000010345/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
10346/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
10347/// if the load addresses are consecutive, non-overlapping, and in the right
Nate Begemanfdea31a2010-03-24 20:49:50 +000010348/// order.
Dan Gohman475871a2008-07-27 21:46:04 +000010349static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Nate Begeman9008ca62009-04-27 18:41:29 +000010350 const TargetLowering &TLI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010351 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000010352 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000010353
Eli Friedman7a5e5552009-06-07 06:52:44 +000010354 if (VT.getSizeInBits() != 128)
10355 return SDValue();
10356
Nate Begemanfdea31a2010-03-24 20:49:50 +000010357 SmallVector<SDValue, 16> Elts;
10358 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000010359 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000010360
Nate Begemanfdea31a2010-03-24 20:49:50 +000010361 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000010362}
Evan Chengd880b972008-05-09 21:53:03 +000010363
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000010364/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
10365/// generation and convert it from being a bunch of shuffles and extracts
10366/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010367static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
10368 const TargetLowering &TLI) {
10369 SDValue InputVector = N->getOperand(0);
10370
10371 // Only operate on vectors of 4 elements, where the alternative shuffling
10372 // gets to be more expensive.
10373 if (InputVector.getValueType() != MVT::v4i32)
10374 return SDValue();
10375
10376 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
10377 // single use which is a sign-extend or zero-extend, and all elements are
10378 // used.
10379 SmallVector<SDNode *, 4> Uses;
10380 unsigned ExtractedElements = 0;
10381 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
10382 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
10383 if (UI.getUse().getResNo() != InputVector.getResNo())
10384 return SDValue();
10385
10386 SDNode *Extract = *UI;
10387 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
10388 return SDValue();
10389
10390 if (Extract->getValueType(0) != MVT::i32)
10391 return SDValue();
10392 if (!Extract->hasOneUse())
10393 return SDValue();
10394 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
10395 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
10396 return SDValue();
10397 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
10398 return SDValue();
10399
10400 // Record which element was extracted.
10401 ExtractedElements |=
10402 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
10403
10404 Uses.push_back(Extract);
10405 }
10406
10407 // If not all the elements were used, this may not be worthwhile.
10408 if (ExtractedElements != 15)
10409 return SDValue();
10410
10411 // Ok, we've now decided to do the transformation.
10412 DebugLoc dl = InputVector.getDebugLoc();
10413
10414 // Store the value to a temporary stack slot.
10415 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010416 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
10417 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010418
10419 // Replace each use (extract) with a load of the appropriate element.
10420 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
10421 UE = Uses.end(); UI != UE; ++UI) {
10422 SDNode *Extract = *UI;
10423
10424 // Compute the element's address.
10425 SDValue Idx = Extract->getOperand(1);
10426 unsigned EltSize =
10427 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
10428 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
10429 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
10430
Eric Christopher90eb4022010-07-22 00:26:08 +000010431 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(),
Chris Lattner51abfe42010-09-21 06:02:19 +000010432 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010433
10434 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000010435 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000010436 ScalarAddr, MachinePointerInfo(),
10437 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010438
10439 // Replace the exact with the load.
10440 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
10441 }
10442
10443 // The replacement was made in place; don't return anything.
10444 return SDValue();
10445}
10446
Chris Lattner83e6c992006-10-04 06:57:07 +000010447/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000010448static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000010449 const X86Subtarget *Subtarget) {
10450 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000010451 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000010452 // Get the LHS/RHS of the select.
10453 SDValue LHS = N->getOperand(1);
10454 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010455
Dan Gohman670e5392009-09-21 18:03:22 +000010456 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000010457 // instructions match the semantics of the common C idiom x<y?x:y but not
10458 // x<=y?x:y, because of how they handle negative zero (which can be
10459 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000010460 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000010461 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000010462 Cond.getOpcode() == ISD::SETCC) {
10463 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010464
Chris Lattner47b4ce82009-03-11 05:48:52 +000010465 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000010466 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000010467 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
10468 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010469 switch (CC) {
10470 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010471 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010472 // Converting this to a min would handle NaNs incorrectly, and swapping
10473 // the operands would cause it to handle comparisons between positive
10474 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010475 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010476 if (!UnsafeFPMath &&
10477 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10478 break;
10479 std::swap(LHS, RHS);
10480 }
Dan Gohman670e5392009-09-21 18:03:22 +000010481 Opcode = X86ISD::FMIN;
10482 break;
10483 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010484 // Converting this to a min would handle comparisons between positive
10485 // and negative zero incorrectly.
10486 if (!UnsafeFPMath &&
10487 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
10488 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010489 Opcode = X86ISD::FMIN;
10490 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010491 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010492 // Converting this to a min would handle both negative zeros and NaNs
10493 // incorrectly, but we can swap the operands to fix both.
10494 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010495 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010496 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010497 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010498 Opcode = X86ISD::FMIN;
10499 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010500
Dan Gohman670e5392009-09-21 18:03:22 +000010501 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010502 // Converting this to a max would handle comparisons between positive
10503 // and negative zero incorrectly.
10504 if (!UnsafeFPMath &&
10505 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
10506 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010507 Opcode = X86ISD::FMAX;
10508 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010509 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010510 // Converting this to a max would handle NaNs incorrectly, and swapping
10511 // the operands would cause it to handle comparisons between positive
10512 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010513 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010514 if (!UnsafeFPMath &&
10515 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10516 break;
10517 std::swap(LHS, RHS);
10518 }
Dan Gohman670e5392009-09-21 18:03:22 +000010519 Opcode = X86ISD::FMAX;
10520 break;
10521 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010522 // Converting this to a max would handle both negative zeros and NaNs
10523 // incorrectly, but we can swap the operands to fix both.
10524 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010525 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010526 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010527 case ISD::SETGE:
10528 Opcode = X86ISD::FMAX;
10529 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000010530 }
Dan Gohman670e5392009-09-21 18:03:22 +000010531 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000010532 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
10533 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010534 switch (CC) {
10535 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010536 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010537 // Converting this to a min would handle comparisons between positive
10538 // and negative zero incorrectly, and swapping the operands would
10539 // cause it to handle NaNs incorrectly.
10540 if (!UnsafeFPMath &&
10541 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000010542 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010543 break;
10544 std::swap(LHS, RHS);
10545 }
Dan Gohman670e5392009-09-21 18:03:22 +000010546 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000010547 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010548 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010549 // Converting this to a min would handle NaNs incorrectly.
10550 if (!UnsafeFPMath &&
10551 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
10552 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010553 Opcode = X86ISD::FMIN;
10554 break;
10555 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010556 // Converting this to a min would handle both negative zeros and NaNs
10557 // incorrectly, but we can swap the operands to fix both.
10558 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010559 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010560 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010561 case ISD::SETGE:
10562 Opcode = X86ISD::FMIN;
10563 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010564
Dan Gohman670e5392009-09-21 18:03:22 +000010565 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010566 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010567 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010568 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010569 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000010570 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010571 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010572 // Converting this to a max would handle comparisons between positive
10573 // and negative zero incorrectly, and swapping the operands would
10574 // cause it to handle NaNs incorrectly.
10575 if (!UnsafeFPMath &&
10576 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000010577 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010578 break;
10579 std::swap(LHS, RHS);
10580 }
Dan Gohman670e5392009-09-21 18:03:22 +000010581 Opcode = X86ISD::FMAX;
10582 break;
10583 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010584 // Converting this to a max would handle both negative zeros and NaNs
10585 // incorrectly, but we can swap the operands to fix both.
10586 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010587 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010588 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010589 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010590 Opcode = X86ISD::FMAX;
10591 break;
10592 }
Chris Lattner83e6c992006-10-04 06:57:07 +000010593 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010594
Chris Lattner47b4ce82009-03-11 05:48:52 +000010595 if (Opcode)
10596 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000010597 }
Eric Christopherfd179292009-08-27 18:07:15 +000010598
Chris Lattnerd1980a52009-03-12 06:52:53 +000010599 // If this is a select between two integer constants, try to do some
10600 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000010601 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
10602 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000010603 // Don't do this for crazy integer types.
10604 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
10605 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000010606 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010607 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000010608
Chris Lattnercee56e72009-03-13 05:53:31 +000010609 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000010610 // Efficiently invertible.
10611 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
10612 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
10613 isa<ConstantSDNode>(Cond.getOperand(1))))) {
10614 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000010615 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000010616 }
Eric Christopherfd179292009-08-27 18:07:15 +000010617
Chris Lattnerd1980a52009-03-12 06:52:53 +000010618 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010619 if (FalseC->getAPIntValue() == 0 &&
10620 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000010621 if (NeedsCondInvert) // Invert the condition if needed.
10622 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10623 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010624
Chris Lattnerd1980a52009-03-12 06:52:53 +000010625 // Zero extend the condition if needed.
10626 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010627
Chris Lattnercee56e72009-03-13 05:53:31 +000010628 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000010629 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010630 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010631 }
Eric Christopherfd179292009-08-27 18:07:15 +000010632
Chris Lattner97a29a52009-03-13 05:22:11 +000010633 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000010634 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000010635 if (NeedsCondInvert) // Invert the condition if needed.
10636 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10637 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010638
Chris Lattner97a29a52009-03-13 05:22:11 +000010639 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010640 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10641 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010642 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000010643 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000010644 }
Eric Christopherfd179292009-08-27 18:07:15 +000010645
Chris Lattnercee56e72009-03-13 05:53:31 +000010646 // Optimize cases that will turn into an LEA instruction. This requires
10647 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010648 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010649 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010650 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010651
Chris Lattnercee56e72009-03-13 05:53:31 +000010652 bool isFastMultiplier = false;
10653 if (Diff < 10) {
10654 switch ((unsigned char)Diff) {
10655 default: break;
10656 case 1: // result = add base, cond
10657 case 2: // result = lea base( , cond*2)
10658 case 3: // result = lea base(cond, cond*2)
10659 case 4: // result = lea base( , cond*4)
10660 case 5: // result = lea base(cond, cond*4)
10661 case 8: // result = lea base( , cond*8)
10662 case 9: // result = lea base(cond, cond*8)
10663 isFastMultiplier = true;
10664 break;
10665 }
10666 }
Eric Christopherfd179292009-08-27 18:07:15 +000010667
Chris Lattnercee56e72009-03-13 05:53:31 +000010668 if (isFastMultiplier) {
10669 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10670 if (NeedsCondInvert) // Invert the condition if needed.
10671 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10672 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010673
Chris Lattnercee56e72009-03-13 05:53:31 +000010674 // Zero extend the condition if needed.
10675 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10676 Cond);
10677 // Scale the condition by the difference.
10678 if (Diff != 1)
10679 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10680 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010681
Chris Lattnercee56e72009-03-13 05:53:31 +000010682 // Add the base if non-zero.
10683 if (FalseC->getAPIntValue() != 0)
10684 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10685 SDValue(FalseC, 0));
10686 return Cond;
10687 }
Eric Christopherfd179292009-08-27 18:07:15 +000010688 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010689 }
10690 }
Eric Christopherfd179292009-08-27 18:07:15 +000010691
Dan Gohman475871a2008-07-27 21:46:04 +000010692 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000010693}
10694
Chris Lattnerd1980a52009-03-12 06:52:53 +000010695/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
10696static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
10697 TargetLowering::DAGCombinerInfo &DCI) {
10698 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000010699
Chris Lattnerd1980a52009-03-12 06:52:53 +000010700 // If the flag operand isn't dead, don't touch this CMOV.
10701 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
10702 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000010703
Chris Lattnerd1980a52009-03-12 06:52:53 +000010704 // If this is a select between two integer constants, try to do some
10705 // optimizations. Note that the operands are ordered the opposite of SELECT
10706 // operands.
10707 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
10708 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
10709 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
10710 // larger than FalseC (the false value).
10711 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010712
Chris Lattnerd1980a52009-03-12 06:52:53 +000010713 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
10714 CC = X86::GetOppositeBranchCondition(CC);
10715 std::swap(TrueC, FalseC);
10716 }
Eric Christopherfd179292009-08-27 18:07:15 +000010717
Chris Lattnerd1980a52009-03-12 06:52:53 +000010718 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010719 // This is efficient for any integer data type (including i8/i16) and
10720 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010721 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
10722 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010723 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10724 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010725
Chris Lattnerd1980a52009-03-12 06:52:53 +000010726 // Zero extend the condition if needed.
10727 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010728
Chris Lattnerd1980a52009-03-12 06:52:53 +000010729 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
10730 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010731 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010732 if (N->getNumValues() == 2) // Dead flag value?
10733 return DCI.CombineTo(N, Cond, SDValue());
10734 return Cond;
10735 }
Eric Christopherfd179292009-08-27 18:07:15 +000010736
Chris Lattnercee56e72009-03-13 05:53:31 +000010737 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
10738 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000010739 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
10740 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010741 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10742 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010743
Chris Lattner97a29a52009-03-13 05:22:11 +000010744 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010745 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10746 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010747 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10748 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000010749
Chris Lattner97a29a52009-03-13 05:22:11 +000010750 if (N->getNumValues() == 2) // Dead flag value?
10751 return DCI.CombineTo(N, Cond, SDValue());
10752 return Cond;
10753 }
Eric Christopherfd179292009-08-27 18:07:15 +000010754
Chris Lattnercee56e72009-03-13 05:53:31 +000010755 // Optimize cases that will turn into an LEA instruction. This requires
10756 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010757 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010758 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010759 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010760
Chris Lattnercee56e72009-03-13 05:53:31 +000010761 bool isFastMultiplier = false;
10762 if (Diff < 10) {
10763 switch ((unsigned char)Diff) {
10764 default: break;
10765 case 1: // result = add base, cond
10766 case 2: // result = lea base( , cond*2)
10767 case 3: // result = lea base(cond, cond*2)
10768 case 4: // result = lea base( , cond*4)
10769 case 5: // result = lea base(cond, cond*4)
10770 case 8: // result = lea base( , cond*8)
10771 case 9: // result = lea base(cond, cond*8)
10772 isFastMultiplier = true;
10773 break;
10774 }
10775 }
Eric Christopherfd179292009-08-27 18:07:15 +000010776
Chris Lattnercee56e72009-03-13 05:53:31 +000010777 if (isFastMultiplier) {
10778 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10779 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010780 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10781 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000010782 // Zero extend the condition if needed.
10783 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10784 Cond);
10785 // Scale the condition by the difference.
10786 if (Diff != 1)
10787 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10788 DAG.getConstant(Diff, Cond.getValueType()));
10789
10790 // Add the base if non-zero.
10791 if (FalseC->getAPIntValue() != 0)
10792 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10793 SDValue(FalseC, 0));
10794 if (N->getNumValues() == 2) // Dead flag value?
10795 return DCI.CombineTo(N, Cond, SDValue());
10796 return Cond;
10797 }
Eric Christopherfd179292009-08-27 18:07:15 +000010798 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010799 }
10800 }
10801 return SDValue();
10802}
10803
10804
Evan Cheng0b0cd912009-03-28 05:57:29 +000010805/// PerformMulCombine - Optimize a single multiply with constant into two
10806/// in order to implement it with two cheaper instructions, e.g.
10807/// LEA + SHL, LEA + LEA.
10808static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
10809 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000010810 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
10811 return SDValue();
10812
Owen Andersone50ed302009-08-10 22:56:29 +000010813 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000010814 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000010815 return SDValue();
10816
10817 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
10818 if (!C)
10819 return SDValue();
10820 uint64_t MulAmt = C->getZExtValue();
10821 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
10822 return SDValue();
10823
10824 uint64_t MulAmt1 = 0;
10825 uint64_t MulAmt2 = 0;
10826 if ((MulAmt % 9) == 0) {
10827 MulAmt1 = 9;
10828 MulAmt2 = MulAmt / 9;
10829 } else if ((MulAmt % 5) == 0) {
10830 MulAmt1 = 5;
10831 MulAmt2 = MulAmt / 5;
10832 } else if ((MulAmt % 3) == 0) {
10833 MulAmt1 = 3;
10834 MulAmt2 = MulAmt / 3;
10835 }
10836 if (MulAmt2 &&
10837 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
10838 DebugLoc DL = N->getDebugLoc();
10839
10840 if (isPowerOf2_64(MulAmt2) &&
10841 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
10842 // If second multiplifer is pow2, issue it first. We want the multiply by
10843 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
10844 // is an add.
10845 std::swap(MulAmt1, MulAmt2);
10846
10847 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000010848 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010849 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000010850 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000010851 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010852 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000010853 DAG.getConstant(MulAmt1, VT));
10854
Eric Christopherfd179292009-08-27 18:07:15 +000010855 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010856 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000010857 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000010858 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010859 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000010860 DAG.getConstant(MulAmt2, VT));
10861
10862 // Do not add new nodes to DAG combiner worklist.
10863 DCI.CombineTo(N, NewMul, false);
10864 }
10865 return SDValue();
10866}
10867
Evan Chengad9c0a32009-12-15 00:53:42 +000010868static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
10869 SDValue N0 = N->getOperand(0);
10870 SDValue N1 = N->getOperand(1);
10871 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
10872 EVT VT = N0.getValueType();
10873
10874 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
10875 // since the result of setcc_c is all zero's or all ones.
10876 if (N1C && N0.getOpcode() == ISD::AND &&
10877 N0.getOperand(1).getOpcode() == ISD::Constant) {
10878 SDValue N00 = N0.getOperand(0);
10879 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
10880 ((N00.getOpcode() == ISD::ANY_EXTEND ||
10881 N00.getOpcode() == ISD::ZERO_EXTEND) &&
10882 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
10883 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
10884 APInt ShAmt = N1C->getAPIntValue();
10885 Mask = Mask.shl(ShAmt);
10886 if (Mask != 0)
10887 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
10888 N00, DAG.getConstant(Mask, VT));
10889 }
10890 }
10891
10892 return SDValue();
10893}
Evan Cheng0b0cd912009-03-28 05:57:29 +000010894
Nate Begeman740ab032009-01-26 00:52:55 +000010895/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
10896/// when possible.
10897static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
10898 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000010899 EVT VT = N->getValueType(0);
10900 if (!VT.isVector() && VT.isInteger() &&
10901 N->getOpcode() == ISD::SHL)
10902 return PerformSHLCombine(N, DAG);
10903
Nate Begeman740ab032009-01-26 00:52:55 +000010904 // On X86 with SSE2 support, we can transform this to a vector shift if
10905 // all elements are shifted by the same amount. We can't do this in legalize
10906 // because the a constant vector is typically transformed to a constant pool
10907 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010908 if (!Subtarget->hasSSE2())
10909 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010910
Owen Anderson825b72b2009-08-11 20:47:22 +000010911 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010912 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010913
Mon P Wang3becd092009-01-28 08:12:05 +000010914 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000010915 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000010916 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000010917 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000010918 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
10919 unsigned NumElts = VT.getVectorNumElements();
10920 unsigned i = 0;
10921 for (; i != NumElts; ++i) {
10922 SDValue Arg = ShAmtOp.getOperand(i);
10923 if (Arg.getOpcode() == ISD::UNDEF) continue;
10924 BaseShAmt = Arg;
10925 break;
10926 }
10927 for (; i != NumElts; ++i) {
10928 SDValue Arg = ShAmtOp.getOperand(i);
10929 if (Arg.getOpcode() == ISD::UNDEF) continue;
10930 if (Arg != BaseShAmt) {
10931 return SDValue();
10932 }
10933 }
10934 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000010935 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000010936 SDValue InVec = ShAmtOp.getOperand(0);
10937 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
10938 unsigned NumElts = InVec.getValueType().getVectorNumElements();
10939 unsigned i = 0;
10940 for (; i != NumElts; ++i) {
10941 SDValue Arg = InVec.getOperand(i);
10942 if (Arg.getOpcode() == ISD::UNDEF) continue;
10943 BaseShAmt = Arg;
10944 break;
10945 }
10946 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
10947 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000010948 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000010949 if (C->getZExtValue() == SplatIdx)
10950 BaseShAmt = InVec.getOperand(1);
10951 }
10952 }
10953 if (BaseShAmt.getNode() == 0)
10954 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
10955 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000010956 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010957 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000010958
Mon P Wangefa42202009-09-03 19:56:25 +000010959 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000010960 if (EltVT.bitsGT(MVT::i32))
10961 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
10962 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000010963 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000010964
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010965 // The shift amount is identical so we can do a vector shift.
10966 SDValue ValOp = N->getOperand(0);
10967 switch (N->getOpcode()) {
10968 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000010969 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010970 break;
10971 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000010972 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010973 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010974 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010975 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010976 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010977 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010978 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010979 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010980 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010981 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010982 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010983 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010984 break;
10985 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000010986 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010987 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010988 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010989 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010990 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010991 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010992 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010993 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010994 break;
10995 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000010996 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010997 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010998 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010999 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011000 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011001 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011002 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011003 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011004 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011005 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011006 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011007 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011008 break;
Nate Begeman740ab032009-01-26 00:52:55 +000011009 }
11010 return SDValue();
11011}
11012
Evan Cheng760d1942010-01-04 21:22:48 +000011013static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000011014 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000011015 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000011016 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000011017 return SDValue();
11018
Evan Cheng760d1942010-01-04 21:22:48 +000011019 EVT VT = N->getValueType(0);
Evan Cheng8b1190a2010-04-28 01:18:01 +000011020 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
Evan Cheng760d1942010-01-04 21:22:48 +000011021 return SDValue();
11022
11023 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
11024 SDValue N0 = N->getOperand(0);
11025 SDValue N1 = N->getOperand(1);
11026 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
11027 std::swap(N0, N1);
11028 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
11029 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000011030 if (!N0.hasOneUse() || !N1.hasOneUse())
11031 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000011032
11033 SDValue ShAmt0 = N0.getOperand(1);
11034 if (ShAmt0.getValueType() != MVT::i8)
11035 return SDValue();
11036 SDValue ShAmt1 = N1.getOperand(1);
11037 if (ShAmt1.getValueType() != MVT::i8)
11038 return SDValue();
11039 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
11040 ShAmt0 = ShAmt0.getOperand(0);
11041 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
11042 ShAmt1 = ShAmt1.getOperand(0);
11043
11044 DebugLoc DL = N->getDebugLoc();
11045 unsigned Opc = X86ISD::SHLD;
11046 SDValue Op0 = N0.getOperand(0);
11047 SDValue Op1 = N1.getOperand(0);
11048 if (ShAmt0.getOpcode() == ISD::SUB) {
11049 Opc = X86ISD::SHRD;
11050 std::swap(Op0, Op1);
11051 std::swap(ShAmt0, ShAmt1);
11052 }
11053
Evan Cheng8b1190a2010-04-28 01:18:01 +000011054 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000011055 if (ShAmt1.getOpcode() == ISD::SUB) {
11056 SDValue Sum = ShAmt1.getOperand(0);
11057 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000011058 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
11059 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
11060 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
11061 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000011062 return DAG.getNode(Opc, DL, VT,
11063 Op0, Op1,
11064 DAG.getNode(ISD::TRUNCATE, DL,
11065 MVT::i8, ShAmt0));
11066 }
11067 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
11068 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
11069 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000011070 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000011071 return DAG.getNode(Opc, DL, VT,
11072 N0.getOperand(0), N1.getOperand(0),
11073 DAG.getNode(ISD::TRUNCATE, DL,
11074 MVT::i8, ShAmt0));
11075 }
11076
11077 return SDValue();
11078}
11079
Chris Lattner149a4e52008-02-22 02:09:43 +000011080/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011081static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000011082 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000011083 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
11084 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000011085 // A preferable solution to the general problem is to figure out the right
11086 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000011087
11088 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000011089 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000011090 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000011091 if (VT.getSizeInBits() != 64)
11092 return SDValue();
11093
Devang Patel578efa92009-06-05 21:57:13 +000011094 const Function *F = DAG.getMachineFunction().getFunction();
11095 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000011096 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000011097 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000011098 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000011099 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000011100 isa<LoadSDNode>(St->getValue()) &&
11101 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
11102 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011103 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011104 LoadSDNode *Ld = 0;
11105 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000011106 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000011107 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011108 // Must be a store of a load. We currently handle two cases: the load
11109 // is a direct child, and it's under an intervening TokenFactor. It is
11110 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000011111 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000011112 Ld = cast<LoadSDNode>(St->getChain());
11113 else if (St->getValue().hasOneUse() &&
11114 ChainVal->getOpcode() == ISD::TokenFactor) {
11115 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011116 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000011117 TokenFactorIndex = i;
11118 Ld = cast<LoadSDNode>(St->getValue());
11119 } else
11120 Ops.push_back(ChainVal->getOperand(i));
11121 }
11122 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000011123
Evan Cheng536e6672009-03-12 05:59:15 +000011124 if (!Ld || !ISD::isNormalLoad(Ld))
11125 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011126
Evan Cheng536e6672009-03-12 05:59:15 +000011127 // If this is not the MMX case, i.e. we are just turning i64 load/store
11128 // into f64 load/store, avoid the transformation if there are multiple
11129 // uses of the loaded value.
11130 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
11131 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011132
Evan Cheng536e6672009-03-12 05:59:15 +000011133 DebugLoc LdDL = Ld->getDebugLoc();
11134 DebugLoc StDL = N->getDebugLoc();
11135 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
11136 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
11137 // pair instead.
11138 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011139 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000011140 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
11141 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011142 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011143 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000011144 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000011145 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000011146 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000011147 Ops.size());
11148 }
Evan Cheng536e6672009-03-12 05:59:15 +000011149 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011150 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011151 St->isVolatile(), St->isNonTemporal(),
11152 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000011153 }
Evan Cheng536e6672009-03-12 05:59:15 +000011154
11155 // Otherwise, lower to two pairs of 32-bit loads / stores.
11156 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011157 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
11158 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011159
Owen Anderson825b72b2009-08-11 20:47:22 +000011160 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011161 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011162 Ld->isVolatile(), Ld->isNonTemporal(),
11163 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000011164 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011165 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000011166 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011167 MinAlign(Ld->getAlignment(), 4));
11168
11169 SDValue NewChain = LoLd.getValue(1);
11170 if (TokenFactorIndex != -1) {
11171 Ops.push_back(LoLd);
11172 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000011173 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000011174 Ops.size());
11175 }
11176
11177 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011178 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
11179 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011180
11181 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011182 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011183 St->isVolatile(), St->isNonTemporal(),
11184 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011185 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011186 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000011187 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011188 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011189 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000011190 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000011191 }
Dan Gohman475871a2008-07-27 21:46:04 +000011192 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000011193}
11194
Chris Lattner6cf73262008-01-25 06:14:17 +000011195/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
11196/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011197static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000011198 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
11199 // F[X]OR(0.0, x) -> x
11200 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000011201 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11202 if (C->getValueAPF().isPosZero())
11203 return N->getOperand(1);
11204 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11205 if (C->getValueAPF().isPosZero())
11206 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000011207 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011208}
11209
11210/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011211static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000011212 // FAND(0.0, x) -> 0.0
11213 // FAND(x, 0.0) -> 0.0
11214 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11215 if (C->getValueAPF().isPosZero())
11216 return N->getOperand(0);
11217 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11218 if (C->getValueAPF().isPosZero())
11219 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000011220 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011221}
11222
Dan Gohmane5af2d32009-01-29 01:59:02 +000011223static SDValue PerformBTCombine(SDNode *N,
11224 SelectionDAG &DAG,
11225 TargetLowering::DAGCombinerInfo &DCI) {
11226 // BT ignores high bits in the bit index operand.
11227 SDValue Op1 = N->getOperand(1);
11228 if (Op1.hasOneUse()) {
11229 unsigned BitWidth = Op1.getValueSizeInBits();
11230 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
11231 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011232 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
11233 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000011234 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000011235 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
11236 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
11237 DCI.CommitTargetLoweringOpt(TLO);
11238 }
11239 return SDValue();
11240}
Chris Lattner83e6c992006-10-04 06:57:07 +000011241
Eli Friedman7a5e5552009-06-07 06:52:44 +000011242static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
11243 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000011244 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000011245 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000011246 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000011247 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000011248 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000011249 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000011250 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000011251 }
11252 return SDValue();
11253}
11254
Evan Cheng2e489c42009-12-16 00:53:11 +000011255static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
11256 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
11257 // (and (i32 x86isd::setcc_carry), 1)
11258 // This eliminates the zext. This transformation is necessary because
11259 // ISD::SETCC is always legalized to i8.
11260 DebugLoc dl = N->getDebugLoc();
11261 SDValue N0 = N->getOperand(0);
11262 EVT VT = N->getValueType(0);
11263 if (N0.getOpcode() == ISD::AND &&
11264 N0.hasOneUse() &&
11265 N0.getOperand(0).hasOneUse()) {
11266 SDValue N00 = N0.getOperand(0);
11267 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
11268 return SDValue();
11269 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
11270 if (!C || C->getZExtValue() != 1)
11271 return SDValue();
11272 return DAG.getNode(ISD::AND, dl, VT,
11273 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
11274 N00.getOperand(0), N00.getOperand(1)),
11275 DAG.getConstant(1, VT));
11276 }
11277
11278 return SDValue();
11279}
11280
Dan Gohman475871a2008-07-27 21:46:04 +000011281SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000011282 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011283 SelectionDAG &DAG = DCI.DAG;
11284 switch (N->getOpcode()) {
11285 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011286 case ISD::EXTRACT_VECTOR_ELT:
11287 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000011288 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011289 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000011290 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000011291 case ISD::SHL:
11292 case ISD::SRA:
11293 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000011294 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000011295 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000011296 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000011297 case X86ISD::FOR: return PerformFORCombine(N, DAG);
11298 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000011299 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000011300 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000011301 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011302 case X86ISD::SHUFPS: // Handle all target specific shuffles
11303 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000011304 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011305 case X86ISD::PUNPCKHBW:
11306 case X86ISD::PUNPCKHWD:
11307 case X86ISD::PUNPCKHDQ:
11308 case X86ISD::PUNPCKHQDQ:
11309 case X86ISD::UNPCKHPS:
11310 case X86ISD::UNPCKHPD:
11311 case X86ISD::PUNPCKLBW:
11312 case X86ISD::PUNPCKLWD:
11313 case X86ISD::PUNPCKLDQ:
11314 case X86ISD::PUNPCKLQDQ:
11315 case X86ISD::UNPCKLPS:
11316 case X86ISD::UNPCKLPD:
11317 case X86ISD::MOVHLPS:
11318 case X86ISD::MOVLHPS:
11319 case X86ISD::PSHUFD:
11320 case X86ISD::PSHUFHW:
11321 case X86ISD::PSHUFLW:
11322 case X86ISD::MOVSS:
11323 case X86ISD::MOVSD:
11324 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011325 }
11326
Dan Gohman475871a2008-07-27 21:46:04 +000011327 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011328}
11329
Evan Chenge5b51ac2010-04-17 06:13:15 +000011330/// isTypeDesirableForOp - Return true if the target has native support for
11331/// the specified value type and it is 'desirable' to use the type for the
11332/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
11333/// instruction encodings are longer and some i16 instructions are slow.
11334bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
11335 if (!isTypeLegal(VT))
11336 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011337 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000011338 return true;
11339
11340 switch (Opc) {
11341 default:
11342 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000011343 case ISD::LOAD:
11344 case ISD::SIGN_EXTEND:
11345 case ISD::ZERO_EXTEND:
11346 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000011347 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000011348 case ISD::SRL:
11349 case ISD::SUB:
11350 case ISD::ADD:
11351 case ISD::MUL:
11352 case ISD::AND:
11353 case ISD::OR:
11354 case ISD::XOR:
11355 return false;
11356 }
11357}
11358
11359/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000011360/// beneficial for dag combiner to promote the specified node. If true, it
11361/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000011362bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011363 EVT VT = Op.getValueType();
11364 if (VT != MVT::i16)
11365 return false;
11366
Evan Cheng4c26e932010-04-19 19:29:22 +000011367 bool Promote = false;
11368 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011369 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000011370 default: break;
11371 case ISD::LOAD: {
11372 LoadSDNode *LD = cast<LoadSDNode>(Op);
11373 // If the non-extending load has a single use and it's not live out, then it
11374 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011375 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
11376 Op.hasOneUse()*/) {
11377 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
11378 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
11379 // The only case where we'd want to promote LOAD (rather then it being
11380 // promoted as an operand is when it's only use is liveout.
11381 if (UI->getOpcode() != ISD::CopyToReg)
11382 return false;
11383 }
11384 }
Evan Cheng4c26e932010-04-19 19:29:22 +000011385 Promote = true;
11386 break;
11387 }
11388 case ISD::SIGN_EXTEND:
11389 case ISD::ZERO_EXTEND:
11390 case ISD::ANY_EXTEND:
11391 Promote = true;
11392 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011393 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011394 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000011395 SDValue N0 = Op.getOperand(0);
11396 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000011397 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000011398 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011399 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011400 break;
11401 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000011402 case ISD::ADD:
11403 case ISD::MUL:
11404 case ISD::AND:
11405 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000011406 case ISD::XOR:
11407 Commute = true;
11408 // fallthrough
11409 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011410 SDValue N0 = Op.getOperand(0);
11411 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000011412 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011413 return false;
11414 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000011415 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011416 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000011417 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011418 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011419 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011420 }
11421 }
11422
11423 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000011424 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011425}
11426
Evan Cheng60c07e12006-07-05 22:17:51 +000011427//===----------------------------------------------------------------------===//
11428// X86 Inline Assembly Support
11429//===----------------------------------------------------------------------===//
11430
Chris Lattnerb8105652009-07-20 17:51:36 +000011431static bool LowerToBSwap(CallInst *CI) {
11432 // FIXME: this should verify that we are targetting a 486 or better. If not,
11433 // we will turn this bswap into something that will be lowered to logical ops
11434 // instead of emitting the bswap asm. For now, we don't support 486 or lower
11435 // so don't worry about this.
Eric Christopherfd179292009-08-27 18:07:15 +000011436
Chris Lattnerb8105652009-07-20 17:51:36 +000011437 // Verify this is a simple bswap.
Gabor Greife1c2b9c2010-06-30 13:03:37 +000011438 if (CI->getNumArgOperands() != 1 ||
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011439 CI->getType() != CI->getArgOperand(0)->getType() ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011440 !CI->getType()->isIntegerTy())
Chris Lattnerb8105652009-07-20 17:51:36 +000011441 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011442
Chris Lattnerb8105652009-07-20 17:51:36 +000011443 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
11444 if (!Ty || Ty->getBitWidth() % 16 != 0)
11445 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011446
Chris Lattnerb8105652009-07-20 17:51:36 +000011447 // Okay, we can do this xform, do so now.
11448 const Type *Tys[] = { Ty };
11449 Module *M = CI->getParent()->getParent()->getParent();
11450 Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 1);
Eric Christopherfd179292009-08-27 18:07:15 +000011451
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011452 Value *Op = CI->getArgOperand(0);
Chris Lattnerb8105652009-07-20 17:51:36 +000011453 Op = CallInst::Create(Int, Op, CI->getName(), CI);
Eric Christopherfd179292009-08-27 18:07:15 +000011454
Chris Lattnerb8105652009-07-20 17:51:36 +000011455 CI->replaceAllUsesWith(Op);
11456 CI->eraseFromParent();
11457 return true;
11458}
11459
11460bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
11461 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
John Thompson44ab89e2010-10-29 17:29:13 +000011462 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
Chris Lattnerb8105652009-07-20 17:51:36 +000011463
11464 std::string AsmStr = IA->getAsmString();
11465
11466 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011467 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000011468 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000011469
11470 switch (AsmPieces.size()) {
11471 default: return false;
11472 case 1:
11473 AsmStr = AsmPieces[0];
11474 AsmPieces.clear();
11475 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
11476
11477 // bswap $0
11478 if (AsmPieces.size() == 2 &&
11479 (AsmPieces[0] == "bswap" ||
11480 AsmPieces[0] == "bswapq" ||
11481 AsmPieces[0] == "bswapl") &&
11482 (AsmPieces[1] == "$0" ||
11483 AsmPieces[1] == "${0:q}")) {
11484 // No need to check constraints, nothing other than the equivalent of
11485 // "=r,0" would be valid here.
11486 return LowerToBSwap(CI);
11487 }
11488 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011489 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011490 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011491 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011492 AsmPieces[1] == "$$8," &&
11493 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011494 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
11495 AsmPieces.clear();
Benjamin Kramer018cbd52010-03-12 13:54:59 +000011496 const std::string &Constraints = IA->getConstraintString();
11497 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000011498 std::sort(AsmPieces.begin(), AsmPieces.end());
11499 if (AsmPieces.size() == 4 &&
11500 AsmPieces[0] == "~{cc}" &&
11501 AsmPieces[1] == "~{dirflag}" &&
11502 AsmPieces[2] == "~{flags}" &&
11503 AsmPieces[3] == "~{fpsr}") {
11504 return LowerToBSwap(CI);
11505 }
Chris Lattnerb8105652009-07-20 17:51:36 +000011506 }
11507 break;
11508 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000011509 if (CI->getType()->isIntegerTy(32) &&
11510 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
11511 SmallVector<StringRef, 4> Words;
11512 SplitString(AsmPieces[0], Words, " \t,");
11513 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
11514 Words[2] == "${0:w}") {
11515 Words.clear();
11516 SplitString(AsmPieces[1], Words, " \t,");
11517 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
11518 Words[2] == "$0") {
11519 Words.clear();
11520 SplitString(AsmPieces[2], Words, " \t,");
11521 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
11522 Words[2] == "${0:w}") {
11523 AsmPieces.clear();
11524 const std::string &Constraints = IA->getConstraintString();
11525 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
11526 std::sort(AsmPieces.begin(), AsmPieces.end());
11527 if (AsmPieces.size() == 4 &&
11528 AsmPieces[0] == "~{cc}" &&
11529 AsmPieces[1] == "~{dirflag}" &&
11530 AsmPieces[2] == "~{flags}" &&
11531 AsmPieces[3] == "~{fpsr}") {
11532 return LowerToBSwap(CI);
11533 }
11534 }
11535 }
11536 }
11537 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011538 if (CI->getType()->isIntegerTy(64) &&
Owen Anderson1d0be152009-08-13 21:58:54 +000011539 Constraints.size() >= 2 &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011540 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
11541 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
11542 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011543 SmallVector<StringRef, 4> Words;
Chris Lattnerb8105652009-07-20 17:51:36 +000011544 SplitString(AsmPieces[0], Words, " \t");
11545 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
11546 Words.clear();
11547 SplitString(AsmPieces[1], Words, " \t");
11548 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
11549 Words.clear();
11550 SplitString(AsmPieces[2], Words, " \t,");
11551 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
11552 Words[2] == "%edx") {
11553 return LowerToBSwap(CI);
11554 }
11555 }
11556 }
11557 }
11558 break;
11559 }
11560 return false;
11561}
11562
11563
11564
Chris Lattnerf4dff842006-07-11 02:54:03 +000011565/// getConstraintType - Given a constraint letter, return the type of
11566/// constraint it is for this target.
11567X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000011568X86TargetLowering::getConstraintType(const std::string &Constraint) const {
11569 if (Constraint.size() == 1) {
11570 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000011571 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000011572 case 'q':
11573 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000011574 case 'f':
11575 case 't':
11576 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000011577 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000011578 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000011579 case 'Y':
11580 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000011581 case 'a':
11582 case 'b':
11583 case 'c':
11584 case 'd':
11585 case 'S':
11586 case 'D':
11587 case 'A':
11588 return C_Register;
11589 case 'I':
11590 case 'J':
11591 case 'K':
11592 case 'L':
11593 case 'M':
11594 case 'N':
11595 case 'G':
11596 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000011597 case 'e':
11598 case 'Z':
11599 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000011600 default:
11601 break;
11602 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000011603 }
Chris Lattner4234f572007-03-25 02:14:49 +000011604 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000011605}
11606
John Thompson44ab89e2010-10-29 17:29:13 +000011607/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000011608/// This object must already have been set up with the operand type
11609/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000011610TargetLowering::ConstraintWeight
11611 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000011612 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000011613 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011614 Value *CallOperandVal = info.CallOperandVal;
11615 // If we don't have a value, we can't do a match,
11616 // but allow it at the lowest weight.
11617 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000011618 return CW_Default;
11619 const Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000011620 // Look at the constraint type.
11621 switch (*constraint) {
11622 default:
John Thompson44ab89e2010-10-29 17:29:13 +000011623 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
11624 case 'R':
11625 case 'q':
11626 case 'Q':
11627 case 'a':
11628 case 'b':
11629 case 'c':
11630 case 'd':
11631 case 'S':
11632 case 'D':
11633 case 'A':
11634 if (CallOperandVal->getType()->isIntegerTy())
11635 weight = CW_SpecificReg;
11636 break;
11637 case 'f':
11638 case 't':
11639 case 'u':
11640 if (type->isFloatingPointTy())
11641 weight = CW_SpecificReg;
11642 break;
11643 case 'y':
11644 if (type->isX86_MMXTy() && !DisableMMX && Subtarget->hasMMX())
11645 weight = CW_SpecificReg;
11646 break;
11647 case 'x':
11648 case 'Y':
11649 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1())
11650 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011651 break;
11652 case 'I':
11653 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
11654 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000011655 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011656 }
11657 break;
John Thompson44ab89e2010-10-29 17:29:13 +000011658 case 'J':
11659 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11660 if (C->getZExtValue() <= 63)
11661 weight = CW_Constant;
11662 }
11663 break;
11664 case 'K':
11665 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11666 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
11667 weight = CW_Constant;
11668 }
11669 break;
11670 case 'L':
11671 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11672 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
11673 weight = CW_Constant;
11674 }
11675 break;
11676 case 'M':
11677 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11678 if (C->getZExtValue() <= 3)
11679 weight = CW_Constant;
11680 }
11681 break;
11682 case 'N':
11683 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11684 if (C->getZExtValue() <= 0xff)
11685 weight = CW_Constant;
11686 }
11687 break;
11688 case 'G':
11689 case 'C':
11690 if (dyn_cast<ConstantFP>(CallOperandVal)) {
11691 weight = CW_Constant;
11692 }
11693 break;
11694 case 'e':
11695 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11696 if ((C->getSExtValue() >= -0x80000000LL) &&
11697 (C->getSExtValue() <= 0x7fffffffLL))
11698 weight = CW_Constant;
11699 }
11700 break;
11701 case 'Z':
11702 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11703 if (C->getZExtValue() <= 0xffffffff)
11704 weight = CW_Constant;
11705 }
11706 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011707 }
11708 return weight;
11709}
11710
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011711/// LowerXConstraint - try to replace an X constraint, which matches anything,
11712/// with another that has more specific requirements based on the type of the
11713/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000011714const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000011715LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000011716 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
11717 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000011718 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011719 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +000011720 return "Y";
11721 if (Subtarget->hasSSE1())
11722 return "x";
11723 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011724
Chris Lattner5e764232008-04-26 23:02:14 +000011725 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011726}
11727
Chris Lattner48884cd2007-08-25 00:47:38 +000011728/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
11729/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000011730void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattner48884cd2007-08-25 00:47:38 +000011731 char Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000011732 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000011733 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000011734 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000011735
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011736 switch (Constraint) {
11737 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000011738 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000011739 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011740 if (C->getZExtValue() <= 31) {
11741 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011742 break;
11743 }
Devang Patel84f7fd22007-03-17 00:13:28 +000011744 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011745 return;
Evan Cheng364091e2008-09-22 23:57:37 +000011746 case 'J':
11747 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011748 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000011749 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11750 break;
11751 }
11752 }
11753 return;
11754 case 'K':
11755 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011756 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000011757 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11758 break;
11759 }
11760 }
11761 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000011762 case 'N':
11763 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011764 if (C->getZExtValue() <= 255) {
11765 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011766 break;
11767 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000011768 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011769 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000011770 case 'e': {
11771 // 32-bit signed value
11772 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000011773 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
11774 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011775 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000011776 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000011777 break;
11778 }
11779 // FIXME gcc accepts some relocatable values here too, but only in certain
11780 // memory models; it's complicated.
11781 }
11782 return;
11783 }
11784 case 'Z': {
11785 // 32-bit unsigned value
11786 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000011787 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
11788 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011789 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11790 break;
11791 }
11792 }
11793 // FIXME gcc accepts some relocatable values here too, but only in certain
11794 // memory models; it's complicated.
11795 return;
11796 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011797 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011798 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000011799 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011800 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000011801 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000011802 break;
11803 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011804
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000011805 // In any sort of PIC mode addresses need to be computed at runtime by
11806 // adding in a register or some sort of table lookup. These can't
11807 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000011808 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000011809 return;
11810
Chris Lattnerdc43a882007-05-03 16:52:29 +000011811 // If we are in non-pic codegen mode, we allow the address of a global (with
11812 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000011813 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000011814 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000011815
Chris Lattner49921962009-05-08 18:23:14 +000011816 // Match either (GA), (GA+C), (GA+C1+C2), etc.
11817 while (1) {
11818 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
11819 Offset += GA->getOffset();
11820 break;
11821 } else if (Op.getOpcode() == ISD::ADD) {
11822 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
11823 Offset += C->getZExtValue();
11824 Op = Op.getOperand(0);
11825 continue;
11826 }
11827 } else if (Op.getOpcode() == ISD::SUB) {
11828 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
11829 Offset += -C->getZExtValue();
11830 Op = Op.getOperand(0);
11831 continue;
11832 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011833 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011834
Chris Lattner49921962009-05-08 18:23:14 +000011835 // Otherwise, this isn't something we can handle, reject it.
11836 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000011837 }
Eric Christopherfd179292009-08-27 18:07:15 +000011838
Dan Gohman46510a72010-04-15 01:51:59 +000011839 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011840 // If we require an extra load to get this address, as in PIC mode, we
11841 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000011842 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
11843 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011844 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000011845
Devang Patel0d881da2010-07-06 22:08:15 +000011846 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
11847 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000011848 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011849 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011850 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011851
Gabor Greifba36cb52008-08-28 21:40:38 +000011852 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000011853 Ops.push_back(Result);
11854 return;
11855 }
Dale Johannesen1784d162010-06-25 21:55:36 +000011856 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011857}
11858
Chris Lattner259e97c2006-01-31 19:43:35 +000011859std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +000011860getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000011861 EVT VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +000011862 if (Constraint.size() == 1) {
11863 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +000011864 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +000011865 default: break; // Unknown constraint letter
Evan Cheng47e9fab2009-07-17 22:13:25 +000011866 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
11867 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011868 if (VT == MVT::i32)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011869 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX,
11870 X86::ESI, X86::EDI, X86::R8D, X86::R9D,
11871 X86::R10D,X86::R11D,X86::R12D,
11872 X86::R13D,X86::R14D,X86::R15D,
11873 X86::EBP, X86::ESP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011874 else if (VT == MVT::i16)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011875 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX,
11876 X86::SI, X86::DI, X86::R8W,X86::R9W,
11877 X86::R10W,X86::R11W,X86::R12W,
11878 X86::R13W,X86::R14W,X86::R15W,
11879 X86::BP, X86::SP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011880 else if (VT == MVT::i8)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011881 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL,
11882 X86::SIL, X86::DIL, X86::R8B,X86::R9B,
11883 X86::R10B,X86::R11B,X86::R12B,
11884 X86::R13B,X86::R14B,X86::R15B,
11885 X86::BPL, X86::SPL, 0);
11886
Owen Anderson825b72b2009-08-11 20:47:22 +000011887 else if (VT == MVT::i64)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011888 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX,
11889 X86::RSI, X86::RDI, X86::R8, X86::R9,
11890 X86::R10, X86::R11, X86::R12,
11891 X86::R13, X86::R14, X86::R15,
11892 X86::RBP, X86::RSP, 0);
11893
11894 break;
11895 }
Eric Christopherfd179292009-08-27 18:07:15 +000011896 // 32-bit fallthrough
Chris Lattner259e97c2006-01-31 19:43:35 +000011897 case 'Q': // Q_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000011898 if (VT == MVT::i32)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000011899 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011900 else if (VT == MVT::i16)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000011901 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011902 else if (VT == MVT::i8)
Evan Cheng12914382007-08-13 23:27:11 +000011903 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011904 else if (VT == MVT::i64)
Chris Lattner03e6c702007-11-04 06:51:12 +000011905 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
11906 break;
Chris Lattner259e97c2006-01-31 19:43:35 +000011907 }
11908 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011909
Chris Lattner1efa40f2006-02-22 00:56:39 +000011910 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +000011911}
Chris Lattnerf76d1802006-07-31 23:26:50 +000011912
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011913std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000011914X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000011915 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000011916 // First, see if this is a constraint that directly corresponds to an LLVM
11917 // register class.
11918 if (Constraint.size() == 1) {
11919 // GCC Constraint Letters
11920 switch (Constraint[0]) {
11921 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000011922 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000011923 case 'l': // INDEX_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000011924 if (VT == MVT::i8)
Chris Lattner0f65cad2007-04-09 05:49:22 +000011925 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011926 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000011927 return std::make_pair(0U, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011928 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000011929 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000011930 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000011931 case 'R': // LEGACY_REGS
11932 if (VT == MVT::i8)
11933 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
11934 if (VT == MVT::i16)
11935 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
11936 if (VT == MVT::i32 || !Subtarget->is64Bit())
11937 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
11938 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011939 case 'f': // FP Stack registers.
11940 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
11941 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000011942 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011943 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011944 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011945 return std::make_pair(0U, X86::RFP64RegisterClass);
11946 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000011947 case 'y': // MMX_REGS if MMX allowed.
11948 if (!Subtarget->hasMMX()) break;
11949 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000011950 case 'Y': // SSE_REGS if SSE2 allowed
11951 if (!Subtarget->hasSSE2()) break;
11952 // FALL THROUGH.
11953 case 'x': // SSE_REGS if SSE1 allowed
11954 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000011955
Owen Anderson825b72b2009-08-11 20:47:22 +000011956 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000011957 default: break;
11958 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000011959 case MVT::f32:
11960 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000011961 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011962 case MVT::f64:
11963 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000011964 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000011965 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000011966 case MVT::v16i8:
11967 case MVT::v8i16:
11968 case MVT::v4i32:
11969 case MVT::v2i64:
11970 case MVT::v4f32:
11971 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000011972 return std::make_pair(0U, X86::VR128RegisterClass);
11973 }
Chris Lattnerad043e82007-04-09 05:11:28 +000011974 break;
11975 }
11976 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011977
Chris Lattnerf76d1802006-07-31 23:26:50 +000011978 // Use the default implementation in TargetLowering to convert the register
11979 // constraint into a member of a register class.
11980 std::pair<unsigned, const TargetRegisterClass*> Res;
11981 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000011982
11983 // Not found as a standard register?
11984 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000011985 // Map st(0) -> st(7) -> ST0
11986 if (Constraint.size() == 7 && Constraint[0] == '{' &&
11987 tolower(Constraint[1]) == 's' &&
11988 tolower(Constraint[2]) == 't' &&
11989 Constraint[3] == '(' &&
11990 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
11991 Constraint[5] == ')' &&
11992 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000011993
Chris Lattner56d77c72009-09-13 22:41:48 +000011994 Res.first = X86::ST0+Constraint[4]-'0';
11995 Res.second = X86::RFP80RegisterClass;
11996 return Res;
11997 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000011998
Chris Lattner56d77c72009-09-13 22:41:48 +000011999 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000012000 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000012001 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000012002 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000012003 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000012004 }
Chris Lattner56d77c72009-09-13 22:41:48 +000012005
12006 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000012007 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000012008 Res.first = X86::EFLAGS;
12009 Res.second = X86::CCRRegisterClass;
12010 return Res;
12011 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000012012
Dale Johannesen330169f2008-11-13 21:52:36 +000012013 // 'A' means EAX + EDX.
12014 if (Constraint == "A") {
12015 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000012016 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000012017 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000012018 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000012019 return Res;
12020 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012021
Chris Lattnerf76d1802006-07-31 23:26:50 +000012022 // Otherwise, check to see if this is a register class of the wrong value
12023 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
12024 // turn into {ax},{dx}.
12025 if (Res.second->hasType(VT))
12026 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012027
Chris Lattnerf76d1802006-07-31 23:26:50 +000012028 // All of the single-register GCC register classes map their values onto
12029 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
12030 // really want an 8-bit or 32-bit register, map to the appropriate register
12031 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000012032 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012033 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012034 unsigned DestReg = 0;
12035 switch (Res.first) {
12036 default: break;
12037 case X86::AX: DestReg = X86::AL; break;
12038 case X86::DX: DestReg = X86::DL; break;
12039 case X86::CX: DestReg = X86::CL; break;
12040 case X86::BX: DestReg = X86::BL; break;
12041 }
12042 if (DestReg) {
12043 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012044 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012045 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012046 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012047 unsigned DestReg = 0;
12048 switch (Res.first) {
12049 default: break;
12050 case X86::AX: DestReg = X86::EAX; break;
12051 case X86::DX: DestReg = X86::EDX; break;
12052 case X86::CX: DestReg = X86::ECX; break;
12053 case X86::BX: DestReg = X86::EBX; break;
12054 case X86::SI: DestReg = X86::ESI; break;
12055 case X86::DI: DestReg = X86::EDI; break;
12056 case X86::BP: DestReg = X86::EBP; break;
12057 case X86::SP: DestReg = X86::ESP; break;
12058 }
12059 if (DestReg) {
12060 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012061 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012062 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012063 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012064 unsigned DestReg = 0;
12065 switch (Res.first) {
12066 default: break;
12067 case X86::AX: DestReg = X86::RAX; break;
12068 case X86::DX: DestReg = X86::RDX; break;
12069 case X86::CX: DestReg = X86::RCX; break;
12070 case X86::BX: DestReg = X86::RBX; break;
12071 case X86::SI: DestReg = X86::RSI; break;
12072 case X86::DI: DestReg = X86::RDI; break;
12073 case X86::BP: DestReg = X86::RBP; break;
12074 case X86::SP: DestReg = X86::RSP; break;
12075 }
12076 if (DestReg) {
12077 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012078 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012079 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000012080 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000012081 } else if (Res.second == X86::FR32RegisterClass ||
12082 Res.second == X86::FR64RegisterClass ||
12083 Res.second == X86::VR128RegisterClass) {
12084 // Handle references to XMM physical registers that got mapped into the
12085 // wrong class. This can happen with constraints like {xmm0} where the
12086 // target independent register mapper will just pick the first match it can
12087 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000012088 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012089 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000012090 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012091 Res.second = X86::FR64RegisterClass;
12092 else if (X86::VR128RegisterClass->hasType(VT))
12093 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000012094 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012095
Chris Lattnerf76d1802006-07-31 23:26:50 +000012096 return Res;
12097}