blob: 43a7bb5bb5bdfcd8d8693f97cb95faefff4078ff [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
15#include "X86.h"
Evan Cheng0cc39452006-01-16 21:21:29 +000016#include "X86InstrBuilder.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000017#include "X86ISelLowering.h"
Evan Chenge8bd0a32006-06-06 23:30:24 +000018#include "X86MachineFunctionInfo.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000019#include "X86TargetMachine.h"
20#include "llvm/CallingConv.h"
Evan Cheng223547a2006-01-31 22:28:30 +000021#include "llvm/Constants.h"
Evan Cheng347d5f72006-04-28 21:29:37 +000022#include "llvm/DerivedTypes.h"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000023#include "llvm/GlobalVariable.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000024#include "llvm/Function.h"
Evan Cheng6be2c582006-04-05 23:38:46 +000025#include "llvm/Intrinsics.h"
Evan Cheng14b32e12007-12-11 01:46:18 +000026#include "llvm/ADT/BitVector.h"
Evan Cheng30b37b52006-03-13 23:18:16 +000027#include "llvm/ADT/VectorExtras.h"
Chris Lattner362e98a2007-02-27 04:43:02 +000028#include "llvm/CodeGen/CallingConvLower.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000029#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng4a460802006-01-11 00:33:36 +000030#include "llvm/CodeGen/MachineFunction.h"
31#include "llvm/CodeGen/MachineInstrBuilder.h"
Evan Chenga844bde2008-02-02 04:07:54 +000032#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000033#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000034#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000035#include "llvm/CodeGen/SelectionDAG.h"
Evan Chengef6ffb12006-01-31 03:14:29 +000036#include "llvm/Support/MathExtras.h"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000037#include "llvm/Support/Debug.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000038#include "llvm/Target/TargetOptions.h"
Evan Cheng14b32e12007-12-11 01:46:18 +000039#include "llvm/ADT/SmallSet.h"
Chris Lattner1a60aa72006-10-31 19:42:44 +000040#include "llvm/ADT/StringExtras.h"
Mon P Wang3c81d352008-11-23 04:37:22 +000041#include "llvm/Support/CommandLine.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000042using namespace llvm;
43
Mon P Wang3c81d352008-11-23 04:37:22 +000044static cl::opt<bool>
Mon P Wang9f22a4a2008-11-24 02:10:43 +000045DisableMMX("disable-mmx", cl::Hidden, cl::desc("Disable use of MMX"));
Mon P Wang3c81d352008-11-23 04:37:22 +000046
Evan Cheng10e86422008-04-25 19:11:04 +000047// Forward declarations.
Dan Gohman475871a2008-07-27 21:46:04 +000048static SDValue getMOVLMask(unsigned NumElems, SelectionDAG &DAG);
Evan Cheng10e86422008-04-25 19:11:04 +000049
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +000050X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000051 : TargetLowering(TM) {
Evan Cheng559806f2006-01-27 08:10:46 +000052 Subtarget = &TM.getSubtarget<X86Subtarget>();
Dale Johannesenf1fc3a82007-09-23 14:52:20 +000053 X86ScalarSSEf64 = Subtarget->hasSSE2();
54 X86ScalarSSEf32 = Subtarget->hasSSE1();
Evan Cheng25ab6902006-09-08 06:48:29 +000055 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000056
Chris Lattnerd43d00c2008-01-24 08:07:48 +000057 bool Fast = false;
Evan Cheng559806f2006-01-27 08:10:46 +000058
Anton Korobeynikov2365f512007-07-14 14:06:15 +000059 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000060 TD = getTargetData();
Anton Korobeynikov2365f512007-07-14 14:06:15 +000061
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000062 // Set up the TargetLowering object.
63
64 // X86 is weird, it always uses i8 for shift amounts and setcc results.
65 setShiftAmountType(MVT::i8);
Duncan Sands03228082008-11-23 15:47:28 +000066 setBooleanContents(ZeroOrOneBooleanContent);
Evan Cheng0b2afbd2006-01-25 09:15:17 +000067 setSchedulingPreference(SchedulingForRegPressure);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000068 setShiftAmountFlavor(Mask); // shl X, 32 == shl X, 0
Evan Cheng25ab6902006-09-08 06:48:29 +000069 setStackPointerRegisterToSaveRestore(X86StackPtr);
Evan Cheng714554d2006-03-16 21:47:42 +000070
Anton Korobeynikovd27a2582006-12-10 23:12:42 +000071 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +000072 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +000073 setUseUnderscoreSetJmp(false);
74 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +000075 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +000076 // MS runtime is weird: it exports _setjmp, but longjmp!
77 setUseUnderscoreSetJmp(true);
78 setUseUnderscoreLongJmp(false);
79 } else {
80 setUseUnderscoreSetJmp(true);
81 setUseUnderscoreLongJmp(true);
82 }
83
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000084 // Set up the register classes.
Evan Cheng069287d2006-05-16 07:21:53 +000085 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
86 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
87 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
Evan Cheng25ab6902006-09-08 06:48:29 +000088 if (Subtarget->is64Bit())
89 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000090
Evan Cheng03294662008-10-14 21:26:46 +000091 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +000092
Chris Lattnerddf89562008-01-17 19:59:44 +000093 // We don't accept any truncstore of integer registers.
94 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
95 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
96 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
97 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
98 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
Evan Cheng7f042682008-10-15 02:05:31 +000099 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
100
101 // SETOEQ and SETUNE require checking two conditions.
102 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
103 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
104 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
105 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
106 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
107 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000108
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000109 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
110 // operation.
111 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
112 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
113 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000114
Evan Cheng25ab6902006-09-08 06:48:29 +0000115 if (Subtarget->is64Bit()) {
116 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Evan Cheng6892f282006-01-17 02:32:49 +0000117 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
Evan Cheng25ab6902006-09-08 06:48:29 +0000118 } else {
Dale Johannesen1c15bf52008-10-21 20:50:01 +0000119 if (X86ScalarSSEf64) {
120 // We have an impenetrably clever algorithm for ui64->double only.
121 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000122 // If SSE i64 SINT_TO_FP is not available, expand i32 UINT_TO_FP.
123 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Expand);
Dale Johannesen1c15bf52008-10-21 20:50:01 +0000124 } else
Evan Cheng25ab6902006-09-08 06:48:29 +0000125 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
126 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000127
128 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
129 // this operation.
130 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
131 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000132 // SSE has no i16 to fp conversion, only i32
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000133 if (X86ScalarSSEf32) {
Evan Cheng02568ff2006-01-30 22:13:22 +0000134 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000135 // f32 and f64 cases are Legal, f80 case is not
136 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
137 } else {
Evan Cheng5298bcc2006-02-17 07:01:52 +0000138 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
139 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
140 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000141
Dale Johannesen73328d12007-09-19 23:55:34 +0000142 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
143 // are Legal, f80 is custom lowered.
144 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
145 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000146
Evan Cheng02568ff2006-01-30 22:13:22 +0000147 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
148 // this operation.
149 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
150 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
151
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000152 if (X86ScalarSSEf32) {
Evan Cheng02568ff2006-01-30 22:13:22 +0000153 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000154 // f32 and f64 cases are Legal, f80 case is not
155 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000156 } else {
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000157 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000158 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000159 }
160
161 // Handle FP_TO_UINT by promoting the destination to a larger signed
162 // conversion.
163 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
164 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
165 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
166
Evan Cheng25ab6902006-09-08 06:48:29 +0000167 if (Subtarget->is64Bit()) {
168 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000169 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Evan Cheng25ab6902006-09-08 06:48:29 +0000170 } else {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000171 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000172 // Expand FP_TO_UINT into a select.
173 // FIXME: We would like to use a Custom expander here eventually to do
174 // the optimal thing for SSE vs. the default expansion in the legalizer.
175 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
176 else
177 // With SSE3 we can use fisttpll to convert to a signed i64.
178 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
179 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000180
Chris Lattner399610a2006-12-05 18:22:22 +0000181 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000182 if (!X86ScalarSSEf64) {
Chris Lattnerf3597a12006-12-05 18:45:06 +0000183 setOperationAction(ISD::BIT_CONVERT , MVT::f32 , Expand);
184 setOperationAction(ISD::BIT_CONVERT , MVT::i32 , Expand);
185 }
Chris Lattner21f66852005-12-23 05:15:23 +0000186
Dan Gohmanb00ee212008-02-18 19:34:53 +0000187 // Scalar integer divide and remainder are lowered to use operations that
188 // produce two results, to match the available instructions. This exposes
189 // the two-result form to trivial CSE, which is able to combine x/y and x%y
190 // into a single instruction.
191 //
192 // Scalar integer multiply-high is also lowered to use two-result
193 // operations, to match the available instructions. However, plain multiply
194 // (low) operations are left as Legal, as there are single-result
195 // instructions for this in x86. Using the two-result multiply instructions
196 // when both high and low results are needed must be arranged by dagcombine.
Dan Gohman525178c2007-10-08 18:33:35 +0000197 setOperationAction(ISD::MULHS , MVT::i8 , Expand);
198 setOperationAction(ISD::MULHU , MVT::i8 , Expand);
199 setOperationAction(ISD::SDIV , MVT::i8 , Expand);
200 setOperationAction(ISD::UDIV , MVT::i8 , Expand);
201 setOperationAction(ISD::SREM , MVT::i8 , Expand);
202 setOperationAction(ISD::UREM , MVT::i8 , Expand);
Dan Gohman525178c2007-10-08 18:33:35 +0000203 setOperationAction(ISD::MULHS , MVT::i16 , Expand);
204 setOperationAction(ISD::MULHU , MVT::i16 , Expand);
205 setOperationAction(ISD::SDIV , MVT::i16 , Expand);
206 setOperationAction(ISD::UDIV , MVT::i16 , Expand);
207 setOperationAction(ISD::SREM , MVT::i16 , Expand);
208 setOperationAction(ISD::UREM , MVT::i16 , Expand);
Dan Gohman525178c2007-10-08 18:33:35 +0000209 setOperationAction(ISD::MULHS , MVT::i32 , Expand);
210 setOperationAction(ISD::MULHU , MVT::i32 , Expand);
211 setOperationAction(ISD::SDIV , MVT::i32 , Expand);
212 setOperationAction(ISD::UDIV , MVT::i32 , Expand);
213 setOperationAction(ISD::SREM , MVT::i32 , Expand);
214 setOperationAction(ISD::UREM , MVT::i32 , Expand);
Dan Gohman525178c2007-10-08 18:33:35 +0000215 setOperationAction(ISD::MULHS , MVT::i64 , Expand);
216 setOperationAction(ISD::MULHU , MVT::i64 , Expand);
217 setOperationAction(ISD::SDIV , MVT::i64 , Expand);
218 setOperationAction(ISD::UDIV , MVT::i64 , Expand);
219 setOperationAction(ISD::SREM , MVT::i64 , Expand);
220 setOperationAction(ISD::UREM , MVT::i64 , Expand);
Dan Gohmana37c9f72007-09-25 18:23:27 +0000221
Evan Chengc35497f2006-10-30 08:02:39 +0000222 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000223 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
Nate Begeman750ac1b2006-02-01 07:19:44 +0000224 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
225 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000226 if (Subtarget->is64Bit())
Christopher Lambc59e5212007-08-10 21:48:46 +0000227 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
228 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
229 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000230 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
231 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
Chris Lattnerd1108222008-03-07 06:36:32 +0000232 setOperationAction(ISD::FREM , MVT::f32 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000233 setOperationAction(ISD::FREM , MVT::f64 , Expand);
Chris Lattnerd1108222008-03-07 06:36:32 +0000234 setOperationAction(ISD::FREM , MVT::f80 , Expand);
Dan Gohman1a024862008-01-31 00:41:03 +0000235 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +0000236
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000237 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
Evan Cheng18efe262007-12-14 02:13:44 +0000238 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
239 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000240 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
Evan Cheng18efe262007-12-14 02:13:44 +0000241 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
242 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000243 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
Evan Cheng18efe262007-12-14 02:13:44 +0000244 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
245 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000246 if (Subtarget->is64Bit()) {
247 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
Evan Cheng18efe262007-12-14 02:13:44 +0000248 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
249 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000250 }
251
Andrew Lenharthb873ff32005-11-20 21:41:10 +0000252 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
Nate Begemand88fc032006-01-14 03:14:10 +0000253 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000254
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000255 // These should be promoted to a larger select which is supported.
256 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
257 setOperationAction(ISD::SELECT , MVT::i8 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000258 // X86 wants to expand cmov itself.
Evan Cheng5298bcc2006-02-17 07:01:52 +0000259 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
260 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
261 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
262 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000263 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000264 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
265 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
266 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
267 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
268 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000269 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000270 if (Subtarget->is64Bit()) {
271 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
272 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
273 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000274 // X86 ret instruction may pop stack.
Evan Cheng5298bcc2006-02-17 07:01:52 +0000275 setOperationAction(ISD::RET , MVT::Other, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000276 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000277
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000278 // Darwin ABI issue.
Evan Cheng7ccced62006-02-18 00:15:05 +0000279 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
Nate Begeman37efe672006-04-22 18:53:45 +0000280 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000281 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000282 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000283 if (Subtarget->is64Bit())
284 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
Bill Wendling056292f2008-09-16 21:48:12 +0000285 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000286 if (Subtarget->is64Bit()) {
287 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
288 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
289 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
Bill Wendling056292f2008-09-16 21:48:12 +0000290 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000291 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000292 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Evan Cheng5298bcc2006-02-17 07:01:52 +0000293 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
294 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
295 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000296 if (Subtarget->is64Bit()) {
297 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
298 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
299 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
300 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000301
Evan Chengd2cde682008-03-10 19:38:10 +0000302 if (Subtarget->hasSSE1())
303 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000304
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000305 if (!Subtarget->hasSSE2())
306 setOperationAction(ISD::MEMBARRIER , MVT::Other, Expand);
307
Mon P Wang63307c32008-05-05 19:05:59 +0000308 // Expand certain atomics
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000309 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Custom);
310 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Custom);
311 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
312 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
Bill Wendling5bf1b4e2008-08-20 00:28:16 +0000313
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000314 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Custom);
315 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Custom);
316 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom);
317 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000318
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000319 if (!Subtarget->is64Bit()) {
Dan Gohman0b1d4a72008-12-23 21:37:04 +0000320 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
321 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
322 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
323 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
324 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
325 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
326 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000327 }
328
Dan Gohman7f460202008-06-30 20:59:49 +0000329 // Use the default ISD::DBG_STOPPOINT, ISD::DECLARE expansion.
330 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
Evan Cheng3c992d22006-03-07 02:02:57 +0000331 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000332 if (!Subtarget->isTargetDarwin() &&
333 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000334 !Subtarget->isTargetCygMing()) {
335 setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand);
336 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
337 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000338
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000339 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
340 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
341 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
342 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
343 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000344 setExceptionPointerRegister(X86::RAX);
345 setExceptionSelectorRegister(X86::RDX);
346 } else {
347 setExceptionPointerRegister(X86::EAX);
348 setExceptionSelectorRegister(X86::EDX);
349 }
Anton Korobeynikov38252622007-09-03 00:36:06 +0000350 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000351 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
352
Duncan Sandsf7331b32007-09-11 14:10:23 +0000353 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000354
Chris Lattnerda68d302008-01-15 21:58:22 +0000355 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000356
Nate Begemanacc398c2006-01-25 18:21:52 +0000357 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
358 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Nate Begemanacc398c2006-01-25 18:21:52 +0000359 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000360 if (Subtarget->is64Bit()) {
361 setOperationAction(ISD::VAARG , MVT::Other, Custom);
Evan Chengae642192007-03-02 23:16:35 +0000362 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000363 } else {
364 setOperationAction(ISD::VAARG , MVT::Other, Expand);
Evan Chengae642192007-03-02 23:16:35 +0000365 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000366 }
Evan Chengae642192007-03-02 23:16:35 +0000367
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000368 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
Chris Lattnere1125522006-01-15 09:00:21 +0000369 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000370 if (Subtarget->is64Bit())
371 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000372 if (Subtarget->isTargetCygMing())
373 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
374 else
375 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000376
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000377 if (X86ScalarSSEf64) {
378 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000379 // Set up the FP register classes.
Evan Cheng5ee4ccc2006-01-12 08:27:59 +0000380 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
381 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000382
Evan Cheng223547a2006-01-31 22:28:30 +0000383 // Use ANDPD to simulate FABS.
384 setOperationAction(ISD::FABS , MVT::f64, Custom);
385 setOperationAction(ISD::FABS , MVT::f32, Custom);
386
387 // Use XORP to simulate FNEG.
388 setOperationAction(ISD::FNEG , MVT::f64, Custom);
389 setOperationAction(ISD::FNEG , MVT::f32, Custom);
390
Evan Cheng68c47cb2007-01-05 07:55:56 +0000391 // Use ANDPD and ORPD to simulate FCOPYSIGN.
392 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
393 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
394
Evan Chengd25e9e82006-02-02 00:28:23 +0000395 // We don't support sin/cos/fmod
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000396 setOperationAction(ISD::FSIN , MVT::f64, Expand);
397 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000398 setOperationAction(ISD::FSIN , MVT::f32, Expand);
399 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000400
Chris Lattnera54aa942006-01-29 06:26:08 +0000401 // Expand FP immediates into loads from the stack, except for the special
402 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000403 addLegalFPImmediate(APFloat(+0.0)); // xorpd
404 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Dale Johannesen5411a392007-08-09 01:04:01 +0000405
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000406 // Floating truncations from f80 and extensions to f80 go through memory.
407 // If optimizing, we lie about this though and handle it in
408 // InstructionSelectPreprocess so that dagcombine2 can hack on these.
409 if (Fast) {
410 setConvertAction(MVT::f32, MVT::f80, Expand);
411 setConvertAction(MVT::f64, MVT::f80, Expand);
412 setConvertAction(MVT::f80, MVT::f32, Expand);
413 setConvertAction(MVT::f80, MVT::f64, Expand);
414 }
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000415 } else if (X86ScalarSSEf32) {
416 // Use SSE for f32, x87 for f64.
417 // Set up the FP register classes.
418 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
419 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
420
421 // Use ANDPS to simulate FABS.
422 setOperationAction(ISD::FABS , MVT::f32, Custom);
423
424 // Use XORP to simulate FNEG.
425 setOperationAction(ISD::FNEG , MVT::f32, Custom);
426
427 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
428
429 // Use ANDPS and ORPS to simulate FCOPYSIGN.
430 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
431 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
432
433 // We don't support sin/cos/fmod
434 setOperationAction(ISD::FSIN , MVT::f32, Expand);
435 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000436
Nate Begemane1795842008-02-14 08:57:00 +0000437 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000438 addLegalFPImmediate(APFloat(+0.0f)); // xorps
439 addLegalFPImmediate(APFloat(+0.0)); // FLD0
440 addLegalFPImmediate(APFloat(+1.0)); // FLD1
441 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
442 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
443
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000444 // SSE <-> X87 conversions go through memory. If optimizing, we lie about
445 // this though and handle it in InstructionSelectPreprocess so that
446 // dagcombine2 can hack on these.
447 if (Fast) {
448 setConvertAction(MVT::f32, MVT::f64, Expand);
449 setConvertAction(MVT::f32, MVT::f80, Expand);
450 setConvertAction(MVT::f80, MVT::f32, Expand);
451 setConvertAction(MVT::f64, MVT::f32, Expand);
452 // And x87->x87 truncations also.
453 setConvertAction(MVT::f80, MVT::f64, Expand);
454 }
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000455
456 if (!UnsafeFPMath) {
457 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
458 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
459 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000460 } else {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000461 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000462 // Set up the FP register classes.
Dale Johannesen849f2142007-07-03 00:53:03 +0000463 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
464 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000465
Evan Cheng68c47cb2007-01-05 07:55:56 +0000466 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesen849f2142007-07-03 00:53:03 +0000467 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000468 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
469 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000470
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000471 // Floating truncations go through memory. If optimizing, we lie about
472 // this though and handle it in InstructionSelectPreprocess so that
473 // dagcombine2 can hack on these.
474 if (Fast) {
475 setConvertAction(MVT::f80, MVT::f32, Expand);
476 setConvertAction(MVT::f64, MVT::f32, Expand);
477 setConvertAction(MVT::f80, MVT::f64, Expand);
478 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000479
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000480 if (!UnsafeFPMath) {
481 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
482 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
483 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000484 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
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000488 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
489 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
490 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
491 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000492 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000493
Dale Johannesen59a58732007-08-05 18:49:15 +0000494 // Long double always uses X87.
495 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000496 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
497 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Chris Lattner71d07a02008-01-27 06:19:31 +0000498 {
Dale Johannesen23a98552008-10-09 23:00:39 +0000499 bool ignored;
Chris Lattner71d07a02008-01-27 06:19:31 +0000500 APFloat TmpFlt(+0.0);
Dale Johannesen23a98552008-10-09 23:00:39 +0000501 TmpFlt.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
502 &ignored);
Chris Lattner71d07a02008-01-27 06:19:31 +0000503 addLegalFPImmediate(TmpFlt); // FLD0
504 TmpFlt.changeSign();
505 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
506 APFloat TmpFlt2(+1.0);
Dale Johannesen23a98552008-10-09 23:00:39 +0000507 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
508 &ignored);
Chris Lattner71d07a02008-01-27 06:19:31 +0000509 addLegalFPImmediate(TmpFlt2); // FLD1
510 TmpFlt2.changeSign();
511 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
512 }
513
Dale Johannesen2f429012007-09-26 21:10:55 +0000514 if (!UnsafeFPMath) {
515 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
516 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
517 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000518
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000519 // Always use a library call for pow.
520 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
521 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
522 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
523
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000524 setOperationAction(ISD::FLOG, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000525 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000526 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000527 setOperationAction(ISD::FEXP, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000528 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
529
Mon P Wangf007a8b2008-11-06 05:31:54 +0000530 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000531 // (for widening) or expand (for scalarization). Then we will selectively
532 // turn on ones that can be effectively codegen'd.
Dan Gohmanfa0f77d2007-05-18 18:44:07 +0000533 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
534 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000535 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
536 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
537 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
538 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
539 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
540 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
541 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
542 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
543 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
544 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
545 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
546 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
547 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
Gabor Greif327ef032008-08-28 23:19:51 +0000548 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
549 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
550 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000551 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
552 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
553 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
554 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
555 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
556 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
557 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
558 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
559 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
560 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
561 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
562 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
563 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
564 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
565 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
566 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
567 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
568 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
569 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
570 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
571 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
572 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
Dale Johannesenfb0e1322008-09-10 17:31:40 +0000573 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
574 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
575 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
576 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
577 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000578 }
579
Mon P Wang3c81d352008-11-23 04:37:22 +0000580 if (!DisableMMX && Subtarget->hasMMX()) {
Evan Cheng470a6ad2006-02-22 02:26:30 +0000581 addRegisterClass(MVT::v8i8, X86::VR64RegisterClass);
582 addRegisterClass(MVT::v4i16, X86::VR64RegisterClass);
583 addRegisterClass(MVT::v2i32, X86::VR64RegisterClass);
Dale Johannesena68f9012008-06-24 22:01:44 +0000584 addRegisterClass(MVT::v2f32, X86::VR64RegisterClass);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000585 addRegisterClass(MVT::v1i64, X86::VR64RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000586
Evan Chengd30bf012006-03-01 01:11:20 +0000587 // FIXME: add MMX packed arithmetics
Bill Wendlingbc9bffa2007-03-07 05:43:18 +0000588
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000589 setOperationAction(ISD::ADD, MVT::v8i8, Legal);
590 setOperationAction(ISD::ADD, MVT::v4i16, Legal);
591 setOperationAction(ISD::ADD, MVT::v2i32, Legal);
Chris Lattner6c284d72007-04-12 04:14:49 +0000592 setOperationAction(ISD::ADD, MVT::v1i64, Legal);
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000593
Bill Wendlingc1fb0472007-03-10 09:57:05 +0000594 setOperationAction(ISD::SUB, MVT::v8i8, Legal);
595 setOperationAction(ISD::SUB, MVT::v4i16, Legal);
596 setOperationAction(ISD::SUB, MVT::v2i32, Legal);
Dale Johannesen8d26e592007-10-30 01:18:38 +0000597 setOperationAction(ISD::SUB, MVT::v1i64, Legal);
Bill Wendlingc1fb0472007-03-10 09:57:05 +0000598
Bill Wendling74027e92007-03-15 21:24:36 +0000599 setOperationAction(ISD::MULHS, MVT::v4i16, Legal);
600 setOperationAction(ISD::MUL, MVT::v4i16, Legal);
601
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000602 setOperationAction(ISD::AND, MVT::v8i8, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000603 AddPromotedToType (ISD::AND, MVT::v8i8, MVT::v1i64);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000604 setOperationAction(ISD::AND, MVT::v4i16, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000605 AddPromotedToType (ISD::AND, MVT::v4i16, MVT::v1i64);
606 setOperationAction(ISD::AND, MVT::v2i32, Promote);
607 AddPromotedToType (ISD::AND, MVT::v2i32, MVT::v1i64);
608 setOperationAction(ISD::AND, MVT::v1i64, Legal);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000609
610 setOperationAction(ISD::OR, MVT::v8i8, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000611 AddPromotedToType (ISD::OR, MVT::v8i8, MVT::v1i64);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000612 setOperationAction(ISD::OR, MVT::v4i16, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000613 AddPromotedToType (ISD::OR, MVT::v4i16, MVT::v1i64);
614 setOperationAction(ISD::OR, MVT::v2i32, Promote);
615 AddPromotedToType (ISD::OR, MVT::v2i32, MVT::v1i64);
616 setOperationAction(ISD::OR, MVT::v1i64, Legal);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000617
618 setOperationAction(ISD::XOR, MVT::v8i8, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000619 AddPromotedToType (ISD::XOR, MVT::v8i8, MVT::v1i64);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000620 setOperationAction(ISD::XOR, MVT::v4i16, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000621 AddPromotedToType (ISD::XOR, MVT::v4i16, MVT::v1i64);
622 setOperationAction(ISD::XOR, MVT::v2i32, Promote);
623 AddPromotedToType (ISD::XOR, MVT::v2i32, MVT::v1i64);
624 setOperationAction(ISD::XOR, MVT::v1i64, Legal);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000625
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000626 setOperationAction(ISD::LOAD, MVT::v8i8, Promote);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000627 AddPromotedToType (ISD::LOAD, MVT::v8i8, MVT::v1i64);
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000628 setOperationAction(ISD::LOAD, MVT::v4i16, Promote);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000629 AddPromotedToType (ISD::LOAD, MVT::v4i16, MVT::v1i64);
630 setOperationAction(ISD::LOAD, MVT::v2i32, Promote);
631 AddPromotedToType (ISD::LOAD, MVT::v2i32, MVT::v1i64);
Dale Johannesena68f9012008-06-24 22:01:44 +0000632 setOperationAction(ISD::LOAD, MVT::v2f32, Promote);
633 AddPromotedToType (ISD::LOAD, MVT::v2f32, MVT::v1i64);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000634 setOperationAction(ISD::LOAD, MVT::v1i64, Legal);
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000635
Bill Wendlingccc44ad2007-03-27 20:22:40 +0000636 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i8, Custom);
637 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i16, Custom);
638 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i32, Custom);
Dale Johannesena68f9012008-06-24 22:01:44 +0000639 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f32, Custom);
Bill Wendlingccc44ad2007-03-27 20:22:40 +0000640 setOperationAction(ISD::BUILD_VECTOR, MVT::v1i64, Custom);
Bill Wendlinga348c562007-03-22 18:42:45 +0000641
642 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i8, Custom);
643 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i16, Custom);
644 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i32, Custom);
Bill Wendlingccc44ad2007-03-27 20:22:40 +0000645 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v1i64, Custom);
Bill Wendling826f36f2007-03-28 00:57:11 +0000646
Evan Cheng52672b82008-07-22 18:39:19 +0000647 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2f32, Custom);
Bill Wendling826f36f2007-03-28 00:57:11 +0000648 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Custom);
649 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Custom);
Bill Wendling2f9bb1a2007-04-24 21:16:55 +0000650 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Custom);
Bill Wendling3180e202008-07-20 02:32:23 +0000651
652 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i16, Custom);
Mon P Wang9e5ecb82008-12-12 01:25:51 +0000653
654 setTruncStoreAction(MVT::v8i16, MVT::v8i8, Expand);
655 setOperationAction(ISD::TRUNCATE, MVT::v8i8, Expand);
656 setOperationAction(ISD::SELECT, MVT::v8i8, Promote);
657 setOperationAction(ISD::SELECT, MVT::v4i16, Promote);
658 setOperationAction(ISD::SELECT, MVT::v2i32, Promote);
659 setOperationAction(ISD::SELECT, MVT::v1i64, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000660 }
661
Evan Chenga88973f2006-03-22 19:22:18 +0000662 if (Subtarget->hasSSE1()) {
Evan Cheng470a6ad2006-02-22 02:26:30 +0000663 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
664
Evan Cheng6bdb3f62006-10-27 18:49:08 +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);
Dan Gohman20382522007-07-10 00:05:58 +0000669 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
670 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000671 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
672 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
673 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
Evan Cheng11e15b32006-04-03 20:53:28 +0000674 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000675 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Nate Begeman30a0de92008-07-17 16:51:19 +0000676 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000677 }
678
Evan Chenga88973f2006-03-22 19:22:18 +0000679 if (Subtarget->hasSSE2()) {
Evan Cheng470a6ad2006-02-22 02:26:30 +0000680 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
681 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
682 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
683 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
684 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
685
Evan Chengf7c378e2006-04-10 07:23:14 +0000686 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
687 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
688 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
Evan Cheng37e88562007-03-12 22:58:52 +0000689 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
Mon P Wangaf9b9522008-12-18 21:42:19 +0000690 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000691 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
692 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
693 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
Evan Cheng37e88562007-03-12 22:58:52 +0000694 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
Evan Chengf9989842006-04-13 05:10:25 +0000695 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
Evan Cheng6bdb3f62006-10-27 18:49:08 +0000696 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
697 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
698 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
699 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
Dan Gohman20382522007-07-10 00:05:58 +0000700 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
701 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000702
Nate Begeman30a0de92008-07-17 16:51:19 +0000703 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
704 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
705 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
706 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000707
Evan Chengf7c378e2006-04-10 07:23:14 +0000708 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
709 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
Evan Chengb067a1e2006-03-31 19:22:53 +0000710 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
Evan Cheng5edb8d22006-04-17 22:04:06 +0000711 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
Evan Cheng5edb8d22006-04-17 22:04:06 +0000712 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000713
Evan Cheng2c3ae372006-04-12 21:21:57 +0000714 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000715 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
716 MVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000717 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000718 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000719 continue;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000720 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
721 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
722 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000723 }
724 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
725 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
726 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
727 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000728 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000729 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000730 if (Subtarget->is64Bit()) {
731 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
Dale Johannesen25f1d082007-10-31 00:32:36 +0000732 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000733 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000734
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000735 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Evan Cheng2c3ae372006-04-12 21:21:57 +0000736 for (unsigned VT = (unsigned)MVT::v16i8; VT != (unsigned)MVT::v2i64; VT++) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000737 setOperationAction(ISD::AND, (MVT::SimpleValueType)VT, Promote);
738 AddPromotedToType (ISD::AND, (MVT::SimpleValueType)VT, MVT::v2i64);
739 setOperationAction(ISD::OR, (MVT::SimpleValueType)VT, Promote);
740 AddPromotedToType (ISD::OR, (MVT::SimpleValueType)VT, MVT::v2i64);
741 setOperationAction(ISD::XOR, (MVT::SimpleValueType)VT, Promote);
742 AddPromotedToType (ISD::XOR, (MVT::SimpleValueType)VT, MVT::v2i64);
743 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Promote);
744 AddPromotedToType (ISD::LOAD, (MVT::SimpleValueType)VT, MVT::v2i64);
745 setOperationAction(ISD::SELECT, (MVT::SimpleValueType)VT, Promote);
746 AddPromotedToType (ISD::SELECT, (MVT::SimpleValueType)VT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000747 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000748
Chris Lattnerddf89562008-01-17 19:59:44 +0000749 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000750
Evan Cheng2c3ae372006-04-12 21:21:57 +0000751 // Custom lower v2i64 and v2f64 selects.
752 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
Evan Cheng91b740d2006-04-12 17:12:36 +0000753 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
Evan Chengf7c378e2006-04-10 07:23:14 +0000754 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000755 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000756
Evan Cheng470a6ad2006-02-22 02:26:30 +0000757 }
Nate Begeman14d12ca2008-02-11 04:19:36 +0000758
759 if (Subtarget->hasSSE41()) {
760 // FIXME: Do we need to handle scalar-to-vector here?
761 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
762
763 // i8 and i16 vectors are custom , because the source register and source
764 // source memory operand types are not the same width. f32 vectors are
765 // custom since the immediate controlling the insert encodes additional
766 // information.
767 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
768 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
769 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Legal);
770 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
771
772 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
773 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
774 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Legal);
Evan Cheng62a3f152008-03-24 21:52:23 +0000775 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000776
777 if (Subtarget->is64Bit()) {
Nate Begemancdd1eec2008-02-12 22:51:28 +0000778 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
779 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000780 }
781 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000782
Nate Begeman30a0de92008-07-17 16:51:19 +0000783 if (Subtarget->hasSSE42()) {
784 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
785 }
786
Evan Cheng6be2c582006-04-05 23:38:46 +0000787 // We want to custom lower some of our intrinsics.
788 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
789
Bill Wendling74c37652008-12-09 22:08:41 +0000790 // Add/Sub/Mul with overflow operations are custom lowered.
Bill Wendling41ea7e72008-11-24 19:21:46 +0000791 setOperationAction(ISD::SADDO, MVT::i32, Custom);
792 setOperationAction(ISD::SADDO, MVT::i64, Custom);
793 setOperationAction(ISD::UADDO, MVT::i32, Custom);
794 setOperationAction(ISD::UADDO, MVT::i64, Custom);
Bill Wendling74c37652008-12-09 22:08:41 +0000795 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
796 setOperationAction(ISD::SSUBO, MVT::i64, Custom);
797 setOperationAction(ISD::USUBO, MVT::i32, Custom);
798 setOperationAction(ISD::USUBO, MVT::i64, Custom);
799 setOperationAction(ISD::SMULO, MVT::i32, Custom);
800 setOperationAction(ISD::SMULO, MVT::i64, Custom);
801 setOperationAction(ISD::UMULO, MVT::i32, Custom);
802 setOperationAction(ISD::UMULO, MVT::i64, Custom);
Bill Wendling41ea7e72008-11-24 19:21:46 +0000803
Evan Cheng206ee9d2006-07-07 08:33:52 +0000804 // We have target-specific dag combine patterns for the following nodes:
805 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Evan Chengd880b972008-05-09 21:53:03 +0000806 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +0000807 setTargetDAGCombine(ISD::SELECT);
Chris Lattner149a4e52008-02-22 02:09:43 +0000808 setTargetDAGCombine(ISD::STORE);
Evan Cheng206ee9d2006-07-07 08:33:52 +0000809
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000810 computeRegisterProperties();
811
Evan Cheng87ed7162006-02-14 08:25:08 +0000812 // FIXME: These should be based on subtarget info. Plus, the values should
813 // be smaller when we are in optimizing for size mode.
Dan Gohman87060f52008-06-30 21:00:56 +0000814 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
815 maxStoresPerMemcpy = 16; // For @llvm.memcpy -> sequence of stores
816 maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000817 allowUnalignedMemoryAccesses = true; // x86 supports it!
Evan Chengfb8075d2008-02-28 00:43:03 +0000818 setPrefLoopAlignment(16);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000819}
820
Scott Michel5b8f82e2008-03-10 15:42:14 +0000821
Duncan Sands5480c042009-01-01 15:52:00 +0000822MVT X86TargetLowering::getSetCCResultType(MVT VT) const {
Scott Michel5b8f82e2008-03-10 15:42:14 +0000823 return MVT::i8;
824}
825
826
Evan Cheng29286502008-01-23 23:17:41 +0000827/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
828/// the desired ByVal argument alignment.
829static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
830 if (MaxAlign == 16)
831 return;
832 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
833 if (VTy->getBitWidth() == 128)
834 MaxAlign = 16;
Evan Cheng29286502008-01-23 23:17:41 +0000835 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
836 unsigned EltAlign = 0;
837 getMaxByValAlign(ATy->getElementType(), EltAlign);
838 if (EltAlign > MaxAlign)
839 MaxAlign = EltAlign;
840 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
841 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
842 unsigned EltAlign = 0;
843 getMaxByValAlign(STy->getElementType(i), EltAlign);
844 if (EltAlign > MaxAlign)
845 MaxAlign = EltAlign;
846 if (MaxAlign == 16)
847 break;
848 }
849 }
850 return;
851}
852
853/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
854/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +0000855/// that contain SSE vectors are placed at 16-byte boundaries while the rest
856/// are at 4-byte boundaries.
Evan Cheng29286502008-01-23 23:17:41 +0000857unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +0000858 if (Subtarget->is64Bit()) {
859 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000860 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +0000861 if (TyAlign > 8)
862 return TyAlign;
863 return 8;
864 }
865
Evan Cheng29286502008-01-23 23:17:41 +0000866 unsigned Align = 4;
Dale Johannesen0c191872008-02-08 19:48:20 +0000867 if (Subtarget->hasSSE1())
868 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +0000869 return Align;
870}
Chris Lattner2b02a442007-02-25 08:29:00 +0000871
Evan Chengf0df0312008-05-15 08:39:06 +0000872/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Cheng0ef8de32008-05-15 22:13:02 +0000873/// and store operations as a result of memset, memcpy, and memmove
874/// lowering. It returns MVT::iAny if SelectionDAG should be responsible for
Evan Chengf0df0312008-05-15 08:39:06 +0000875/// determining it.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000876MVT
Evan Chengf0df0312008-05-15 08:39:06 +0000877X86TargetLowering::getOptimalMemOpType(uint64_t Size, unsigned Align,
878 bool isSrcConst, bool isSrcStr) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +0000879 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
880 // linux. This is because the stack realignment code can't handle certain
881 // cases like PR2962. This should be removed when PR2962 is fixed.
882 if (Subtarget->getStackAlignment() >= 16) {
883 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE2() && Size >= 16)
884 return MVT::v4i32;
885 if ((isSrcConst || isSrcStr) && Subtarget->hasSSE1() && Size >= 16)
886 return MVT::v4f32;
887 }
Evan Chengf0df0312008-05-15 08:39:06 +0000888 if (Subtarget->is64Bit() && Size >= 8)
889 return MVT::i64;
890 return MVT::i32;
891}
892
893
Evan Chengcc415862007-11-09 01:32:10 +0000894/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
895/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +0000896SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Evan Chengcc415862007-11-09 01:32:10 +0000897 SelectionDAG &DAG) const {
898 if (usesGlobalOffsetTable())
899 return DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, getPointerTy());
900 if (!Subtarget->isPICStyleRIPRel())
901 return DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy());
902 return Table;
903}
904
Chris Lattner2b02a442007-02-25 08:29:00 +0000905//===----------------------------------------------------------------------===//
906// Return Value Calling Convention Implementation
907//===----------------------------------------------------------------------===//
908
Chris Lattner59ed56b2007-02-28 04:55:35 +0000909#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000910
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000911/// LowerRET - Lower an ISD::RET node.
Dan Gohman475871a2008-07-27 21:46:04 +0000912SDValue X86TargetLowering::LowerRET(SDValue Op, SelectionDAG &DAG) {
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000913 assert((Op.getNumOperands() & 1) == 1 && "ISD::RET should have odd # args");
914
Chris Lattner9774c912007-02-27 05:28:59 +0000915 SmallVector<CCValAssign, 16> RVLocs;
916 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
Chris Lattner52387be2007-06-19 00:13:10 +0000917 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
918 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
Gabor Greifba36cb52008-08-28 21:40:38 +0000919 CCInfo.AnalyzeReturn(Op.getNode(), RetCC_X86);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000920
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000921 // If this is the first return lowered for this function, add the regs to the
922 // liveout set for the function.
Chris Lattner84bc5422007-12-31 04:13:23 +0000923 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Chris Lattner9774c912007-02-27 05:28:59 +0000924 for (unsigned i = 0; i != RVLocs.size(); ++i)
925 if (RVLocs[i].isRegLoc())
Chris Lattner84bc5422007-12-31 04:13:23 +0000926 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000927 }
Dan Gohman475871a2008-07-27 21:46:04 +0000928 SDValue Chain = Op.getOperand(0);
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000929
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000930 // Handle tail call return.
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +0000931 Chain = GetPossiblePreceedingTailCall(Chain, X86ISD::TAILCALL);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000932 if (Chain.getOpcode() == X86ISD::TAILCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +0000933 SDValue TailCall = Chain;
934 SDValue TargetAddress = TailCall.getOperand(1);
935 SDValue StackAdjustment = TailCall.getOperand(2);
Chris Lattnerb4a6eaa2008-01-16 05:52:18 +0000936 assert(((TargetAddress.getOpcode() == ISD::Register &&
Arnold Schwaighofer290ae032008-09-22 14:50:07 +0000937 (cast<RegisterSDNode>(TargetAddress)->getReg() == X86::EAX ||
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000938 cast<RegisterSDNode>(TargetAddress)->getReg() == X86::R9)) ||
Bill Wendling056292f2008-09-16 21:48:12 +0000939 TargetAddress.getOpcode() == ISD::TargetExternalSymbol ||
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000940 TargetAddress.getOpcode() == ISD::TargetGlobalAddress) &&
941 "Expecting an global address, external symbol, or register");
Chris Lattnerb4a6eaa2008-01-16 05:52:18 +0000942 assert(StackAdjustment.getOpcode() == ISD::Constant &&
943 "Expecting a const value");
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000944
Dan Gohman475871a2008-07-27 21:46:04 +0000945 SmallVector<SDValue,8> Operands;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000946 Operands.push_back(Chain.getOperand(0));
947 Operands.push_back(TargetAddress);
948 Operands.push_back(StackAdjustment);
949 // Copy registers used by the call. Last operand is a flag so it is not
950 // copied.
Arnold Schwaighofer448175f2007-10-16 09:05:00 +0000951 for (unsigned i=3; i < TailCall.getNumOperands()-1; i++) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000952 Operands.push_back(Chain.getOperand(i));
953 }
Arnold Schwaighofer448175f2007-10-16 09:05:00 +0000954 return DAG.getNode(X86ISD::TC_RETURN, MVT::Other, &Operands[0],
955 Operands.size());
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000956 }
957
958 // Regular return.
Dan Gohman475871a2008-07-27 21:46:04 +0000959 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +0000960
Dan Gohman475871a2008-07-27 21:46:04 +0000961 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +0000962 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
963 // Operand #1 = Bytes To Pop
964 RetOps.push_back(DAG.getConstant(getBytesToPopOnReturn(), MVT::i16));
965
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000966 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +0000967 for (unsigned i = 0; i != RVLocs.size(); ++i) {
968 CCValAssign &VA = RVLocs[i];
969 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohman475871a2008-07-27 21:46:04 +0000970 SDValue ValToCopy = Op.getOperand(i*2+1);
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000971
Chris Lattner447ff682008-03-11 03:23:40 +0000972 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
973 // the RET instruction and handled by the FP Stackifier.
974 if (RVLocs[i].getLocReg() == X86::ST0 ||
975 RVLocs[i].getLocReg() == X86::ST1) {
976 // If this is a copy from an xmm register to ST(0), use an FPExtend to
977 // change the value to the FP stack register class.
978 if (isScalarFPTypeInSSEReg(RVLocs[i].getValVT()))
979 ValToCopy = DAG.getNode(ISD::FP_EXTEND, MVT::f80, ValToCopy);
980 RetOps.push_back(ValToCopy);
981 // Don't emit a copytoreg.
982 continue;
983 }
Dale Johannesena68f9012008-06-24 22:01:44 +0000984
Chris Lattner8e6da152008-03-10 21:08:41 +0000985 Chain = DAG.getCopyToReg(Chain, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000986 Flag = Chain.getValue(1);
987 }
Dan Gohman61a92132008-04-21 23:59:07 +0000988
989 // The x86-64 ABI for returning structs by value requires that we copy
990 // the sret argument into %rax for the return. We saved the argument into
991 // a virtual register in the entry block, so now we copy the value out
992 // and into %rax.
993 if (Subtarget->is64Bit() &&
994 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
995 MachineFunction &MF = DAG.getMachineFunction();
996 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
997 unsigned Reg = FuncInfo->getSRetReturnReg();
998 if (!Reg) {
999 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1000 FuncInfo->setSRetReturnReg(Reg);
1001 }
Dan Gohman475871a2008-07-27 21:46:04 +00001002 SDValue Val = DAG.getCopyFromReg(Chain, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001003
1004 Chain = DAG.getCopyToReg(Chain, X86::RAX, Val, Flag);
1005 Flag = Chain.getValue(1);
1006 }
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001007
Chris Lattner447ff682008-03-11 03:23:40 +00001008 RetOps[0] = Chain; // Update chain.
1009
1010 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001011 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001012 RetOps.push_back(Flag);
1013
1014 return DAG.getNode(X86ISD::RET_FLAG, MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001015}
1016
1017
Chris Lattner3085e152007-02-25 08:59:22 +00001018/// LowerCallResult - Lower the result values of an ISD::CALL into the
1019/// appropriate copies out of appropriate physical registers. This assumes that
1020/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
1021/// being lowered. The returns a SDNode with the same number of values as the
1022/// ISD::CALL.
1023SDNode *X86TargetLowering::
Dan Gohman095cc292008-09-13 01:54:27 +00001024LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall,
Chris Lattner3085e152007-02-25 08:59:22 +00001025 unsigned CallingConv, SelectionDAG &DAG) {
Chris Lattnere32bbf62007-02-28 07:09:55 +00001026
1027 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001028 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman095cc292008-09-13 01:54:27 +00001029 bool isVarArg = TheCall->isVarArg();
Chris Lattner52387be2007-06-19 00:13:10 +00001030 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
Chris Lattnere32bbf62007-02-28 07:09:55 +00001031 CCInfo.AnalyzeCallResult(TheCall, RetCC_X86);
1032
Dan Gohman475871a2008-07-27 21:46:04 +00001033 SmallVector<SDValue, 8> ResultVals;
Chris Lattner3085e152007-02-25 08:59:22 +00001034
1035 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001036 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001037 MVT CopyVT = RVLocs[i].getValVT();
Chris Lattner8e6da152008-03-10 21:08:41 +00001038
1039 // If this is a call to a function that returns an fp value on the floating
1040 // point stack, but where we prefer to use the value in xmm registers, copy
1041 // it out as F80 and use a truncate to move it from fp stack reg to xmm reg.
Mon P Wang7e665102008-08-21 19:54:16 +00001042 if ((RVLocs[i].getLocReg() == X86::ST0 ||
1043 RVLocs[i].getLocReg() == X86::ST1) &&
Chris Lattner8e6da152008-03-10 21:08:41 +00001044 isScalarFPTypeInSSEReg(RVLocs[i].getValVT())) {
1045 CopyVT = MVT::f80;
Chris Lattner3085e152007-02-25 08:59:22 +00001046 }
Chris Lattner3085e152007-02-25 08:59:22 +00001047
Chris Lattner8e6da152008-03-10 21:08:41 +00001048 Chain = DAG.getCopyFromReg(Chain, RVLocs[i].getLocReg(),
1049 CopyVT, InFlag).getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00001050 SDValue Val = Chain.getValue(0);
Chris Lattner8e6da152008-03-10 21:08:41 +00001051 InFlag = Chain.getValue(2);
Chris Lattner112dedc2007-12-29 06:41:28 +00001052
Chris Lattner8e6da152008-03-10 21:08:41 +00001053 if (CopyVT != RVLocs[i].getValVT()) {
1054 // Round the F80 the right size, which also moves to the appropriate xmm
1055 // register.
1056 Val = DAG.getNode(ISD::FP_ROUND, RVLocs[i].getValVT(), Val,
1057 // This truncation won't change the value.
1058 DAG.getIntPtrConstant(1));
1059 }
Chris Lattnerd43d00c2008-01-24 08:07:48 +00001060
Chris Lattner8e6da152008-03-10 21:08:41 +00001061 ResultVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001062 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001063
Chris Lattner3085e152007-02-25 08:59:22 +00001064 // Merge everything together with a MERGE_VALUES node.
1065 ResultVals.push_back(Chain);
Duncan Sandsaaffa052008-12-01 11:41:29 +00001066 return DAG.getNode(ISD::MERGE_VALUES, TheCall->getVTList(), &ResultVals[0],
1067 ResultVals.size()).getNode();
Chris Lattner2b02a442007-02-25 08:29:00 +00001068}
1069
1070
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001071//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001072// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001073//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001074// StdCall calling convention seems to be standard for many Windows' API
1075// routines and around. It differs from C calling convention just a little:
1076// callee should clean up the stack, not caller. Symbols should be also
1077// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001078// For info on fast calling convention see Fast Calling Convention (tail call)
1079// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001080
Evan Cheng85e38002006-04-27 05:35:28 +00001081/// AddLiveIn - This helper function adds the specified physical register to the
1082/// MachineFunction as a live in value. It also creates a corresponding virtual
1083/// register for it.
1084static unsigned AddLiveIn(MachineFunction &MF, unsigned PReg,
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001085 const TargetRegisterClass *RC) {
Evan Cheng85e38002006-04-27 05:35:28 +00001086 assert(RC->contains(PReg) && "Not the correct regclass!");
Chris Lattner84bc5422007-12-31 04:13:23 +00001087 unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
1088 MF.getRegInfo().addLiveIn(PReg, VReg);
Evan Cheng85e38002006-04-27 05:35:28 +00001089 return VReg;
1090}
1091
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001092/// CallIsStructReturn - Determines whether a CALL node uses struct return
1093/// semantics.
Dan Gohman095cc292008-09-13 01:54:27 +00001094static bool CallIsStructReturn(CallSDNode *TheCall) {
1095 unsigned NumOps = TheCall->getNumArgs();
Gordon Henriksen86737662008-01-05 16:56:59 +00001096 if (!NumOps)
1097 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001098
Dan Gohman095cc292008-09-13 01:54:27 +00001099 return TheCall->getArgFlags(0).isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001100}
1101
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001102/// ArgsAreStructReturn - Determines whether a FORMAL_ARGUMENTS node uses struct
1103/// return semantics.
Dan Gohman475871a2008-07-27 21:46:04 +00001104static bool ArgsAreStructReturn(SDValue Op) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001105 unsigned NumArgs = Op.getNode()->getNumValues() - 1;
Gordon Henriksen86737662008-01-05 16:56:59 +00001106 if (!NumArgs)
1107 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001108
1109 return cast<ARG_FLAGSSDNode>(Op.getOperand(3))->getArgFlags().isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001110}
1111
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001112/// IsCalleePop - Determines whether a CALL or FORMAL_ARGUMENTS node requires
1113/// the callee to pop its own arguments. Callee pop is necessary to support tail
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001114/// calls.
Dan Gohman095cc292008-09-13 01:54:27 +00001115bool X86TargetLowering::IsCalleePop(bool IsVarArg, unsigned CallingConv) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001116 if (IsVarArg)
1117 return false;
1118
Dan Gohman095cc292008-09-13 01:54:27 +00001119 switch (CallingConv) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001120 default:
1121 return false;
1122 case CallingConv::X86_StdCall:
1123 return !Subtarget->is64Bit();
1124 case CallingConv::X86_FastCall:
1125 return !Subtarget->is64Bit();
1126 case CallingConv::Fast:
1127 return PerformTailCallOpt;
1128 }
1129}
1130
Dan Gohman095cc292008-09-13 01:54:27 +00001131/// CCAssignFnForNode - Selects the correct CCAssignFn for a the
1132/// given CallingConvention value.
1133CCAssignFn *X86TargetLowering::CCAssignFnForNode(unsigned CC) const {
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00001134 if (Subtarget->is64Bit()) {
Anton Korobeynikov1a979d92008-03-22 20:57:27 +00001135 if (Subtarget->isTargetWin64())
Anton Korobeynikov8f88cb02008-03-22 20:37:30 +00001136 return CC_X86_Win64_C;
Evan Chenge9ac9e62008-09-07 09:07:23 +00001137 else if (CC == CallingConv::Fast && PerformTailCallOpt)
1138 return CC_X86_64_TailCall;
1139 else
1140 return CC_X86_64_C;
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00001141 }
1142
Gordon Henriksen86737662008-01-05 16:56:59 +00001143 if (CC == CallingConv::X86_FastCall)
1144 return CC_X86_32_FastCall;
Evan Chengb188dd92008-09-10 18:25:29 +00001145 else if (CC == CallingConv::Fast)
1146 return CC_X86_32_FastCC;
Gordon Henriksen86737662008-01-05 16:56:59 +00001147 else
1148 return CC_X86_32_C;
1149}
1150
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001151/// NameDecorationForFORMAL_ARGUMENTS - Selects the appropriate decoration to
1152/// apply to a MachineFunction containing a given FORMAL_ARGUMENTS node.
Gordon Henriksen86737662008-01-05 16:56:59 +00001153NameDecorationStyle
Dan Gohman475871a2008-07-27 21:46:04 +00001154X86TargetLowering::NameDecorationForFORMAL_ARGUMENTS(SDValue Op) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001155 unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Gordon Henriksen86737662008-01-05 16:56:59 +00001156 if (CC == CallingConv::X86_FastCall)
1157 return FastCall;
1158 else if (CC == CallingConv::X86_StdCall)
1159 return StdCall;
1160 return None;
1161}
1162
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001163
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001164/// CallRequiresGOTInRegister - Check whether the call requires the GOT pointer
1165/// in a register before calling.
1166bool X86TargetLowering::CallRequiresGOTPtrInReg(bool Is64Bit, bool IsTailCall) {
1167 return !IsTailCall && !Is64Bit &&
1168 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1169 Subtarget->isPICStyleGOT();
1170}
1171
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001172/// CallRequiresFnAddressInReg - Check whether the call requires the function
1173/// address to be loaded in a register.
1174bool
1175X86TargetLowering::CallRequiresFnAddressInReg(bool Is64Bit, bool IsTailCall) {
1176 return !Is64Bit && IsTailCall &&
1177 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1178 Subtarget->isPICStyleGOT();
1179}
1180
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001181/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1182/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001183/// the specific parameter attribute. The copy will be passed as a byval
1184/// function parameter.
Dan Gohman475871a2008-07-27 21:46:04 +00001185static SDValue
1186CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Duncan Sands276dcbd2008-03-21 09:14:45 +00001187 ISD::ArgFlagsTy Flags, SelectionDAG &DAG) {
Dan Gohman475871a2008-07-27 21:46:04 +00001188 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Dan Gohman707e0182008-04-12 04:36:06 +00001189 return DAG.getMemcpy(Chain, Dst, Src, SizeNode, Flags.getByValAlign(),
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001190 /*AlwaysInline=*/true, NULL, 0, NULL, 0);
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001191}
1192
Dan Gohman475871a2008-07-27 21:46:04 +00001193SDValue X86TargetLowering::LowerMemArgument(SDValue Op, SelectionDAG &DAG,
Rafael Espindola7effac52007-09-14 15:48:13 +00001194 const CCValAssign &VA,
1195 MachineFrameInfo *MFI,
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001196 unsigned CC,
Dan Gohman475871a2008-07-27 21:46:04 +00001197 SDValue Root, unsigned i) {
Rafael Espindola7effac52007-09-14 15:48:13 +00001198 // Create the nodes corresponding to a load from this parameter slot.
Duncan Sands276dcbd2008-03-21 09:14:45 +00001199 ISD::ArgFlagsTy Flags =
1200 cast<ARG_FLAGSSDNode>(Op.getOperand(3 + i))->getArgFlags();
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001201 bool AlwaysUseMutable = (CC==CallingConv::Fast) && PerformTailCallOpt;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001202 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Evan Chenge70bb592008-01-10 02:24:25 +00001203
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001204 // FIXME: For now, all byval parameter objects are marked mutable. This can be
1205 // changed with more analysis.
1206 // In case of tail call optimization mark all arguments mutable. Since they
1207 // could be overwritten by lowering of arguments in case of a tail call.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001208 int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001209 VA.getLocMemOffset(), isImmutable);
Dan Gohman475871a2008-07-27 21:46:04 +00001210 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Duncan Sands276dcbd2008-03-21 09:14:45 +00001211 if (Flags.isByVal())
Rafael Espindola7effac52007-09-14 15:48:13 +00001212 return FIN;
Dan Gohman69de1932008-02-06 22:27:42 +00001213 return DAG.getLoad(VA.getValVT(), Root, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00001214 PseudoSourceValue::getFixedStack(FI), 0);
Rafael Espindola7effac52007-09-14 15:48:13 +00001215}
1216
Dan Gohman475871a2008-07-27 21:46:04 +00001217SDValue
1218X86TargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG) {
Evan Cheng1bc78042006-04-26 01:20:17 +00001219 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001220 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1221
1222 const Function* Fn = MF.getFunction();
1223 if (Fn->hasExternalLinkage() &&
1224 Subtarget->isTargetCygMing() &&
1225 Fn->getName() == "main")
1226 FuncInfo->setForceFramePointer(true);
1227
1228 // Decorate the function name.
1229 FuncInfo->setDecorationStyle(NameDecorationForFORMAL_ARGUMENTS(Op));
1230
Evan Cheng1bc78042006-04-26 01:20:17 +00001231 MachineFrameInfo *MFI = MF.getFrameInfo();
Dan Gohman475871a2008-07-27 21:46:04 +00001232 SDValue Root = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001233 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001234 unsigned CC = MF.getFunction()->getCallingConv();
Gordon Henriksen86737662008-01-05 16:56:59 +00001235 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001236 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001237
1238 assert(!(isVarArg && CC == CallingConv::Fast) &&
1239 "Var args not supported with calling convention fastcc");
1240
Chris Lattner638402b2007-02-28 07:00:42 +00001241 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001242 SmallVector<CCValAssign, 16> ArgLocs;
Gordon Henriksenae636f82008-01-03 16:47:34 +00001243 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman095cc292008-09-13 01:54:27 +00001244 CCInfo.AnalyzeFormalArguments(Op.getNode(), CCAssignFnForNode(CC));
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001245
Dan Gohman475871a2008-07-27 21:46:04 +00001246 SmallVector<SDValue, 8> ArgValues;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001247 unsigned LastVal = ~0U;
1248 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1249 CCValAssign &VA = ArgLocs[i];
1250 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1251 // places.
1252 assert(VA.getValNo() != LastVal &&
1253 "Don't support value assigned to multiple locs yet");
1254 LastVal = VA.getValNo();
1255
1256 if (VA.isRegLoc()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001257 MVT RegVT = VA.getLocVT();
Chris Lattnerf39f7712007-02-28 05:46:49 +00001258 TargetRegisterClass *RC;
1259 if (RegVT == MVT::i32)
1260 RC = X86::GR32RegisterClass;
Gordon Henriksen86737662008-01-05 16:56:59 +00001261 else if (Is64Bit && RegVT == MVT::i64)
1262 RC = X86::GR64RegisterClass;
Dale Johannesene672af12008-02-05 20:46:33 +00001263 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001264 RC = X86::FR32RegisterClass;
Dale Johannesene672af12008-02-05 20:46:33 +00001265 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001266 RC = X86::FR64RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001267 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001268 RC = X86::VR128RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001269 else if (RegVT.isVector()) {
1270 assert(RegVT.getSizeInBits() == 64);
Evan Chengee472b12008-04-25 07:56:45 +00001271 if (!Is64Bit)
1272 RC = X86::VR64RegisterClass; // MMX values are passed in MMXs.
1273 else {
1274 // Darwin calling convention passes MMX values in either GPRs or
1275 // XMMs in x86-64. Other targets pass them in memory.
1276 if (RegVT != MVT::v1i64 && Subtarget->hasSSE2()) {
1277 RC = X86::VR128RegisterClass; // MMX values are passed in XMMs.
1278 RegVT = MVT::v2i64;
1279 } else {
1280 RC = X86::GR64RegisterClass; // v1i64 values are passed in GPRs.
1281 RegVT = MVT::i64;
1282 }
1283 }
1284 } else {
1285 assert(0 && "Unknown argument type!");
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001286 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001287
Chris Lattner82932a52007-03-02 05:12:29 +00001288 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
Dan Gohman475871a2008-07-27 21:46:04 +00001289 SDValue ArgValue = DAG.getCopyFromReg(Root, Reg, RegVT);
Chris Lattnerf39f7712007-02-28 05:46:49 +00001290
1291 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1292 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1293 // right size.
1294 if (VA.getLocInfo() == CCValAssign::SExt)
1295 ArgValue = DAG.getNode(ISD::AssertSext, RegVT, ArgValue,
1296 DAG.getValueType(VA.getValVT()));
1297 else if (VA.getLocInfo() == CCValAssign::ZExt)
1298 ArgValue = DAG.getNode(ISD::AssertZext, RegVT, ArgValue,
1299 DAG.getValueType(VA.getValVT()));
1300
1301 if (VA.getLocInfo() != CCValAssign::Full)
1302 ArgValue = DAG.getNode(ISD::TRUNCATE, VA.getValVT(), ArgValue);
1303
Gordon Henriksen86737662008-01-05 16:56:59 +00001304 // Handle MMX values passed in GPRs.
Evan Cheng44c0fd12008-04-25 20:13:28 +00001305 if (Is64Bit && RegVT != VA.getLocVT()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001306 if (RegVT.getSizeInBits() == 64 && RC == X86::GR64RegisterClass)
Evan Cheng44c0fd12008-04-25 20:13:28 +00001307 ArgValue = DAG.getNode(ISD::BIT_CONVERT, VA.getLocVT(), ArgValue);
1308 else if (RC == X86::VR128RegisterClass) {
1309 ArgValue = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i64, ArgValue,
1310 DAG.getConstant(0, MVT::i64));
1311 ArgValue = DAG.getNode(ISD::BIT_CONVERT, VA.getLocVT(), ArgValue);
1312 }
1313 }
Gordon Henriksen86737662008-01-05 16:56:59 +00001314
Chris Lattnerf39f7712007-02-28 05:46:49 +00001315 ArgValues.push_back(ArgValue);
1316 } else {
1317 assert(VA.isMemLoc());
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001318 ArgValues.push_back(LowerMemArgument(Op, DAG, VA, MFI, CC, Root, i));
Evan Cheng1bc78042006-04-26 01:20:17 +00001319 }
Evan Cheng1bc78042006-04-26 01:20:17 +00001320 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001321
Dan Gohman61a92132008-04-21 23:59:07 +00001322 // The x86-64 ABI for returning structs by value requires that we copy
1323 // the sret argument into %rax for the return. Save the argument into
1324 // a virtual register so that we can access it from the return points.
1325 if (Is64Bit && DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1326 MachineFunction &MF = DAG.getMachineFunction();
1327 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1328 unsigned Reg = FuncInfo->getSRetReturnReg();
1329 if (!Reg) {
1330 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1331 FuncInfo->setSRetReturnReg(Reg);
1332 }
Dan Gohman475871a2008-07-27 21:46:04 +00001333 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), Reg, ArgValues[0]);
Dan Gohman61a92132008-04-21 23:59:07 +00001334 Root = DAG.getNode(ISD::TokenFactor, MVT::Other, Copy, Root);
1335 }
1336
Chris Lattnerf39f7712007-02-28 05:46:49 +00001337 unsigned StackSize = CCInfo.getNextStackOffset();
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001338 // align stack specially for tail calls
Evan Chenge9ac9e62008-09-07 09:07:23 +00001339 if (PerformTailCallOpt && CC == CallingConv::Fast)
Gordon Henriksenae636f82008-01-03 16:47:34 +00001340 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001341
Evan Cheng1bc78042006-04-26 01:20:17 +00001342 // If the function takes variable number of arguments, make a frame index for
1343 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001344 if (isVarArg) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001345 if (Is64Bit || CC != CallingConv::X86_FastCall) {
1346 VarArgsFrameIndex = MFI->CreateFixedObject(1, StackSize);
1347 }
1348 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001349 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1350
1351 // FIXME: We should really autogenerate these arrays
1352 static const unsigned GPR64ArgRegsWin64[] = {
1353 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001354 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001355 static const unsigned XMMArgRegsWin64[] = {
1356 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3
1357 };
1358 static const unsigned GPR64ArgRegs64Bit[] = {
1359 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1360 };
1361 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001362 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1363 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1364 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001365 const unsigned *GPR64ArgRegs, *XMMArgRegs;
1366
1367 if (IsWin64) {
1368 TotalNumIntRegs = 4; TotalNumXMMRegs = 4;
1369 GPR64ArgRegs = GPR64ArgRegsWin64;
1370 XMMArgRegs = XMMArgRegsWin64;
1371 } else {
1372 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1373 GPR64ArgRegs = GPR64ArgRegs64Bit;
1374 XMMArgRegs = XMMArgRegs64Bit;
1375 }
1376 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1377 TotalNumIntRegs);
1378 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs,
1379 TotalNumXMMRegs);
1380
Gordon Henriksen86737662008-01-05 16:56:59 +00001381 // For X86-64, if there are vararg parameters that are passed via
1382 // registers, then we must store them to their spots on the stack so they
1383 // may be loaded by deferencing the result of va_next.
1384 VarArgsGPOffset = NumIntRegs * 8;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001385 VarArgsFPOffset = TotalNumIntRegs * 8 + NumXMMRegs * 16;
1386 RegSaveFrameIndex = MFI->CreateStackObject(TotalNumIntRegs * 8 +
1387 TotalNumXMMRegs * 16, 16);
1388
Gordon Henriksen86737662008-01-05 16:56:59 +00001389 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001390 SmallVector<SDValue, 8> MemOps;
1391 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
1392 SDValue FIN = DAG.getNode(ISD::ADD, getPointerTy(), RSFIN,
Chris Lattner0bd48932008-01-17 07:00:52 +00001393 DAG.getIntPtrConstant(VarArgsGPOffset));
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001394 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001395 unsigned VReg = AddLiveIn(MF, GPR64ArgRegs[NumIntRegs],
1396 X86::GR64RegisterClass);
Dan Gohman475871a2008-07-27 21:46:04 +00001397 SDValue Val = DAG.getCopyFromReg(Root, VReg, MVT::i64);
1398 SDValue Store =
Dan Gohman69de1932008-02-06 22:27:42 +00001399 DAG.getStore(Val.getValue(1), Val, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00001400 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001401 MemOps.push_back(Store);
1402 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN,
Chris Lattner0bd48932008-01-17 07:00:52 +00001403 DAG.getIntPtrConstant(8));
Gordon Henriksen86737662008-01-05 16:56:59 +00001404 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001405
Gordon Henriksen86737662008-01-05 16:56:59 +00001406 // Now store the XMM (fp + vector) parameter registers.
1407 FIN = DAG.getNode(ISD::ADD, getPointerTy(), RSFIN,
Chris Lattner0bd48932008-01-17 07:00:52 +00001408 DAG.getIntPtrConstant(VarArgsFPOffset));
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001409 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001410 unsigned VReg = AddLiveIn(MF, XMMArgRegs[NumXMMRegs],
1411 X86::VR128RegisterClass);
Dan Gohman475871a2008-07-27 21:46:04 +00001412 SDValue Val = DAG.getCopyFromReg(Root, VReg, MVT::v4f32);
1413 SDValue Store =
Dan Gohman69de1932008-02-06 22:27:42 +00001414 DAG.getStore(Val.getValue(1), Val, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00001415 PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001416 MemOps.push_back(Store);
1417 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN,
Chris Lattner0bd48932008-01-17 07:00:52 +00001418 DAG.getIntPtrConstant(16));
Gordon Henriksen86737662008-01-05 16:56:59 +00001419 }
1420 if (!MemOps.empty())
1421 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
1422 &MemOps[0], MemOps.size());
1423 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001424 }
Gordon Henriksen86737662008-01-05 16:56:59 +00001425
Gordon Henriksenae636f82008-01-03 16:47:34 +00001426 ArgValues.push_back(Root);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001427
Gordon Henriksen86737662008-01-05 16:56:59 +00001428 // Some CCs need callee pop.
Dan Gohman095cc292008-09-13 01:54:27 +00001429 if (IsCalleePop(isVarArg, CC)) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001430 BytesToPopOnReturn = StackSize; // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001431 BytesCallerReserves = 0;
1432 } else {
Anton Korobeynikov1d9bacc2007-03-06 08:12:33 +00001433 BytesToPopOnReturn = 0; // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001434 // If this is an sret function, the return should pop the hidden pointer.
Evan Chengb188dd92008-09-10 18:25:29 +00001435 if (!Is64Bit && CC != CallingConv::Fast && ArgsAreStructReturn(Op))
Chris Lattnerf39f7712007-02-28 05:46:49 +00001436 BytesToPopOnReturn = 4;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001437 BytesCallerReserves = StackSize;
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001438 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001439
Gordon Henriksen86737662008-01-05 16:56:59 +00001440 if (!Is64Bit) {
1441 RegSaveFrameIndex = 0xAAAAAAA; // RegSaveFrameIndex is X86-64 only.
1442 if (CC == CallingConv::X86_FastCall)
1443 VarArgsFrameIndex = 0xAAAAAAA; // fastcc functions can't have varargs.
1444 }
Evan Cheng25caf632006-05-23 21:06:34 +00001445
Anton Korobeynikova2780e12007-08-15 17:12:32 +00001446 FuncInfo->setBytesToPopOnReturn(BytesToPopOnReturn);
Evan Cheng1bc78042006-04-26 01:20:17 +00001447
Evan Cheng25caf632006-05-23 21:06:34 +00001448 // Return the new list of results.
Duncan Sandsaaffa052008-12-01 11:41:29 +00001449 return DAG.getNode(ISD::MERGE_VALUES, Op.getNode()->getVTList(),
1450 &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001451}
1452
Dan Gohman475871a2008-07-27 21:46:04 +00001453SDValue
Dan Gohman095cc292008-09-13 01:54:27 +00001454X86TargetLowering::LowerMemOpCallTo(CallSDNode *TheCall, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00001455 const SDValue &StackPtr,
Evan Chengdffbd832008-01-10 00:09:10 +00001456 const CCValAssign &VA,
Dan Gohman475871a2008-07-27 21:46:04 +00001457 SDValue Chain,
Dan Gohman095cc292008-09-13 01:54:27 +00001458 SDValue Arg, ISD::ArgFlagsTy Flags) {
Dan Gohman4fdad172008-02-07 16:28:05 +00001459 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001460 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Evan Chengdffbd832008-01-10 00:09:10 +00001461 PtrOff = DAG.getNode(ISD::ADD, getPointerTy(), StackPtr, PtrOff);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001462 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00001463 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG);
Evan Chengdffbd832008-01-10 00:09:10 +00001464 }
Dan Gohman4fdad172008-02-07 16:28:05 +00001465 return DAG.getStore(Chain, Arg, PtrOff,
Dan Gohman3069b872008-02-07 18:41:25 +00001466 PseudoSourceValue::getStack(), LocMemOffset);
Evan Chengdffbd832008-01-10 00:09:10 +00001467}
1468
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001469/// EmitTailCallLoadRetAddr - Emit a load of return adress if tail call
1470/// optimization is performed and it is required.
Dan Gohman475871a2008-07-27 21:46:04 +00001471SDValue
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001472X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00001473 SDValue &OutRetAddr,
1474 SDValue Chain,
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001475 bool IsTailCall,
1476 bool Is64Bit,
1477 int FPDiff) {
1478 if (!IsTailCall || FPDiff==0) return Chain;
1479
1480 // Adjust the Return address stack slot.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001481 MVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001482 OutRetAddr = getReturnAddressFrameIndex(DAG);
1483 // Load the "old" Return address.
1484 OutRetAddr = DAG.getLoad(VT, Chain,OutRetAddr, NULL, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001485 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001486}
1487
1488/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1489/// optimization is performed and it is required (FPDiff!=0).
Dan Gohman475871a2008-07-27 21:46:04 +00001490static SDValue
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001491EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001492 SDValue Chain, SDValue RetAddrFrIdx,
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001493 bool Is64Bit, int FPDiff) {
1494 // Store the return address to the appropriate stack slot.
1495 if (!FPDiff) return Chain;
1496 // Calculate the new stack slot for the return address.
1497 int SlotSize = Is64Bit ? 8 : 4;
1498 int NewReturnAddrFI =
1499 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001500 MVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001501 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001502 Chain = DAG.getStore(Chain, RetAddrFrIdx, NewRetAddrFrIdx,
Dan Gohmana54cf172008-07-11 22:44:52 +00001503 PseudoSourceValue::getFixedStack(NewReturnAddrFI), 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001504 return Chain;
1505}
1506
Dan Gohman475871a2008-07-27 21:46:04 +00001507SDValue X86TargetLowering::LowerCALL(SDValue Op, SelectionDAG &DAG) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001508 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman095cc292008-09-13 01:54:27 +00001509 CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
1510 SDValue Chain = TheCall->getChain();
1511 unsigned CC = TheCall->getCallingConv();
1512 bool isVarArg = TheCall->isVarArg();
1513 bool IsTailCall = TheCall->isTailCall() &&
1514 CC == CallingConv::Fast && PerformTailCallOpt;
1515 SDValue Callee = TheCall->getCallee();
Gordon Henriksen86737662008-01-05 16:56:59 +00001516 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman095cc292008-09-13 01:54:27 +00001517 bool IsStructRet = CallIsStructReturn(TheCall);
Gordon Henriksenae636f82008-01-03 16:47:34 +00001518
1519 assert(!(isVarArg && CC == CallingConv::Fast) &&
1520 "Var args not supported with calling convention fastcc");
1521
Chris Lattner638402b2007-02-28 07:00:42 +00001522 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001523 SmallVector<CCValAssign, 16> ArgLocs;
Chris Lattner52387be2007-06-19 00:13:10 +00001524 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Dan Gohman095cc292008-09-13 01:54:27 +00001525 CCInfo.AnalyzeCallOperands(TheCall, CCAssignFnForNode(CC));
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001526
Chris Lattner423c5f42007-02-28 05:31:48 +00001527 // Get a count of how many bytes are to be pushed on the stack.
1528 unsigned NumBytes = CCInfo.getNextStackOffset();
Arnold Schwaighofer1fdc40f2008-09-11 20:28:43 +00001529 if (PerformTailCallOpt && CC == CallingConv::Fast)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001530 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001531
Gordon Henriksen86737662008-01-05 16:56:59 +00001532 int FPDiff = 0;
1533 if (IsTailCall) {
1534 // Lower arguments at fp - stackoffset + fpdiff.
1535 unsigned NumBytesCallerPushed =
1536 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1537 FPDiff = NumBytesCallerPushed - NumBytes;
1538
1539 // Set the delta of movement of the returnaddr stackslot.
1540 // But only set if delta is greater than previous delta.
1541 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1542 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1543 }
1544
Chris Lattnere563bbc2008-10-11 22:08:30 +00001545 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001546
Dan Gohman475871a2008-07-27 21:46:04 +00001547 SDValue RetAddrFrIdx;
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001548 // Load return adress for tail calls.
1549 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, IsTailCall, Is64Bit,
1550 FPDiff);
Gordon Henriksen86737662008-01-05 16:56:59 +00001551
Dan Gohman475871a2008-07-27 21:46:04 +00001552 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1553 SmallVector<SDValue, 8> MemOpChains;
1554 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00001555
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001556 // Walk the register/memloc assignments, inserting copies/loads. In the case
1557 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00001558 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1559 CCValAssign &VA = ArgLocs[i];
Dan Gohman095cc292008-09-13 01:54:27 +00001560 SDValue Arg = TheCall->getArg(i);
1561 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
1562 bool isByVal = Flags.isByVal();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001563
Chris Lattner423c5f42007-02-28 05:31:48 +00001564 // Promote the value if needed.
1565 switch (VA.getLocInfo()) {
1566 default: assert(0 && "Unknown loc info!");
1567 case CCValAssign::Full: break;
1568 case CCValAssign::SExt:
1569 Arg = DAG.getNode(ISD::SIGN_EXTEND, VA.getLocVT(), Arg);
1570 break;
1571 case CCValAssign::ZExt:
1572 Arg = DAG.getNode(ISD::ZERO_EXTEND, VA.getLocVT(), Arg);
1573 break;
1574 case CCValAssign::AExt:
1575 Arg = DAG.getNode(ISD::ANY_EXTEND, VA.getLocVT(), Arg);
1576 break;
Evan Cheng6b5783d2006-05-25 18:56:34 +00001577 }
Chris Lattner423c5f42007-02-28 05:31:48 +00001578
1579 if (VA.isRegLoc()) {
Evan Cheng10e86422008-04-25 19:11:04 +00001580 if (Is64Bit) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001581 MVT RegVT = VA.getLocVT();
1582 if (RegVT.isVector() && RegVT.getSizeInBits() == 64)
Evan Cheng10e86422008-04-25 19:11:04 +00001583 switch (VA.getLocReg()) {
1584 default:
1585 break;
1586 case X86::RDI: case X86::RSI: case X86::RDX: case X86::RCX:
1587 case X86::R8: {
1588 // Special case: passing MMX values in GPR registers.
1589 Arg = DAG.getNode(ISD::BIT_CONVERT, MVT::i64, Arg);
1590 break;
1591 }
1592 case X86::XMM0: case X86::XMM1: case X86::XMM2: case X86::XMM3:
1593 case X86::XMM4: case X86::XMM5: case X86::XMM6: case X86::XMM7: {
1594 // Special case: passing MMX values in XMM registers.
1595 Arg = DAG.getNode(ISD::BIT_CONVERT, MVT::i64, Arg);
1596 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, MVT::v2i64, Arg);
1597 Arg = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v2i64,
1598 DAG.getNode(ISD::UNDEF, MVT::v2i64), Arg,
1599 getMOVLMask(2, DAG));
1600 break;
1601 }
1602 }
1603 }
Chris Lattner423c5f42007-02-28 05:31:48 +00001604 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1605 } else {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001606 if (!IsTailCall || (IsTailCall && isByVal)) {
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001607 assert(VA.isMemLoc());
Gabor Greifba36cb52008-08-28 21:40:38 +00001608 if (StackPtr.getNode() == 0)
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001609 StackPtr = DAG.getCopyFromReg(Chain, X86StackPtr, getPointerTy());
1610
Dan Gohman095cc292008-09-13 01:54:27 +00001611 MemOpChains.push_back(LowerMemOpCallTo(TheCall, DAG, StackPtr, VA,
1612 Chain, Arg, Flags));
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001613 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001614 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001615 }
Chris Lattnerc0bdf342007-02-28 05:39:26 +00001616
Evan Cheng32fe1032006-05-25 00:59:30 +00001617 if (!MemOpChains.empty())
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001618 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
1619 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001620
Evan Cheng347d5f72006-04-28 21:29:37 +00001621 // Build a sequence of copy-to-reg nodes chained together with token chain
1622 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001623 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001624 // Tail call byval lowering might overwrite argument registers so in case of
1625 // tail call optimization the copies to registers are lowered later.
1626 if (!IsTailCall)
1627 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1628 Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first, RegsToPass[i].second,
1629 InFlag);
1630 InFlag = Chain.getValue(1);
1631 }
Gordon Henriksen86737662008-01-05 16:56:59 +00001632
Evan Chengf4684712007-02-21 21:18:14 +00001633 // ELF / PIC requires GOT in the EBX register before function calls via PLT
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001634 // GOT pointer.
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001635 if (CallRequiresGOTPtrInReg(Is64Bit, IsTailCall)) {
1636 Chain = DAG.getCopyToReg(Chain, X86::EBX,
1637 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
1638 InFlag);
1639 InFlag = Chain.getValue(1);
1640 }
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001641 // If we are tail calling and generating PIC/GOT style code load the address
1642 // of the callee into ecx. The value in ecx is used as target of the tail
1643 // jump. This is done to circumvent the ebx/callee-saved problem for tail
1644 // calls on PIC/GOT architectures. Normally we would just put the address of
1645 // GOT into ebx and then call target@PLT. But for tail callss ebx would be
1646 // restored (since ebx is callee saved) before jumping to the target@PLT.
Arnold Schwaighofer258bb1b2008-02-26 22:21:54 +00001647 if (CallRequiresFnAddressInReg(Is64Bit, IsTailCall)) {
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001648 // Note: The actual moving to ecx is done further down.
1649 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
Evan Chengda43bcf2008-09-24 00:05:32 +00001650 if (G && !G->getGlobal()->hasHiddenVisibility() &&
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001651 !G->getGlobal()->hasProtectedVisibility())
1652 Callee = LowerGlobalAddress(Callee, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00001653 else if (isa<ExternalSymbolSDNode>(Callee))
1654 Callee = LowerExternalSymbol(Callee,DAG);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00001655 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001656
Gordon Henriksen86737662008-01-05 16:56:59 +00001657 if (Is64Bit && isVarArg) {
1658 // From AMD64 ABI document:
1659 // For calls that may call functions that use varargs or stdargs
1660 // (prototype-less calls or calls to functions containing ellipsis (...) in
1661 // the declaration) %al is used as hidden argument to specify the number
1662 // of SSE registers used. The contents of %al do not need to match exactly
1663 // the number of registers, but must be an ubound on the number of SSE
1664 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001665
1666 // FIXME: Verify this on Win64
Gordon Henriksen86737662008-01-05 16:56:59 +00001667 // Count the number of XMM registers allocated.
1668 static const unsigned XMMArgRegs[] = {
1669 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1670 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1671 };
1672 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
1673
1674 Chain = DAG.getCopyToReg(Chain, X86::AL,
1675 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
1676 InFlag = Chain.getValue(1);
1677 }
1678
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001679
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001680 // For tail calls lower the arguments to the 'real' stack slot.
Gordon Henriksen86737662008-01-05 16:56:59 +00001681 if (IsTailCall) {
Dan Gohman475871a2008-07-27 21:46:04 +00001682 SmallVector<SDValue, 8> MemOpChains2;
1683 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00001684 int FI = 0;
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001685 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00001686 InFlag = SDValue();
Gordon Henriksen86737662008-01-05 16:56:59 +00001687 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1688 CCValAssign &VA = ArgLocs[i];
1689 if (!VA.isRegLoc()) {
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001690 assert(VA.isMemLoc());
Dan Gohman095cc292008-09-13 01:54:27 +00001691 SDValue Arg = TheCall->getArg(i);
1692 ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
Gordon Henriksen86737662008-01-05 16:56:59 +00001693 // Create frame index.
1694 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001695 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001696 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001697 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001698
Duncan Sands276dcbd2008-03-21 09:14:45 +00001699 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00001700 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00001701 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00001702 if (StackPtr.getNode() == 0)
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001703 StackPtr = DAG.getCopyFromReg(Chain, X86StackPtr, getPointerTy());
1704 Source = DAG.getNode(ISD::ADD, getPointerTy(), StackPtr, Source);
1705
1706 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN, Chain,
Evan Cheng8e5712b2008-01-12 01:08:07 +00001707 Flags, DAG));
Gordon Henriksen86737662008-01-05 16:56:59 +00001708 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00001709 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00001710 MemOpChains2.push_back(
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001711 DAG.getStore(Chain, Arg, FIN,
Dan Gohmana54cf172008-07-11 22:44:52 +00001712 PseudoSourceValue::getFixedStack(FI), 0));
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001713 }
Gordon Henriksen86737662008-01-05 16:56:59 +00001714 }
1715 }
1716
1717 if (!MemOpChains2.empty())
1718 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00001719 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001720
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001721 // Copy arguments to their registers.
1722 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1723 Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first, RegsToPass[i].second,
1724 InFlag);
1725 InFlag = Chain.getValue(1);
1726 }
Dan Gohman475871a2008-07-27 21:46:04 +00001727 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001728
Gordon Henriksen86737662008-01-05 16:56:59 +00001729 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001730 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
1731 FPDiff);
Gordon Henriksen86737662008-01-05 16:56:59 +00001732 }
1733
Evan Cheng32fe1032006-05-25 00:59:30 +00001734 // If the callee is a GlobalAddress node (quite common, every direct call is)
1735 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
Anton Korobeynikova5986852006-11-20 10:46:14 +00001736 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00001737 // We should use extra load for direct calls to dllimported functions in
1738 // non-JIT mode.
Evan Cheng817a6a92008-07-16 01:34:02 +00001739 if (!Subtarget->GVRequiresExtraLoad(G->getGlobal(),
1740 getTargetMachine(), true))
Dan Gohman6520e202008-10-18 02:06:02 +00001741 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy(),
1742 G->getOffset());
Bill Wendling056292f2008-09-16 21:48:12 +00001743 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1744 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
Gordon Henriksen86737662008-01-05 16:56:59 +00001745 } else if (IsTailCall) {
Arnold Schwaighofer290ae032008-09-22 14:50:07 +00001746 unsigned Opc = Is64Bit ? X86::R9 : X86::EAX;
Gordon Henriksen86737662008-01-05 16:56:59 +00001747
1748 Chain = DAG.getCopyToReg(Chain,
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001749 DAG.getRegister(Opc, getPointerTy()),
Gordon Henriksen86737662008-01-05 16:56:59 +00001750 Callee,InFlag);
1751 Callee = DAG.getRegister(Opc, getPointerTy());
1752 // Add register as live out.
1753 DAG.getMachineFunction().getRegInfo().addLiveOut(Opc);
Gordon Henriksenae636f82008-01-03 16:47:34 +00001754 }
1755
Chris Lattnerd96d0722007-02-25 06:40:16 +00001756 // Returns a chain & a flag for retval copy to use.
1757 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00001758 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00001759
1760 if (IsTailCall) {
1761 Ops.push_back(Chain);
Chris Lattnere563bbc2008-10-11 22:08:30 +00001762 Ops.push_back(DAG.getIntPtrConstant(NumBytes, true));
1763 Ops.push_back(DAG.getIntPtrConstant(0, true));
Gabor Greifba36cb52008-08-28 21:40:38 +00001764 if (InFlag.getNode())
Gordon Henriksen86737662008-01-05 16:56:59 +00001765 Ops.push_back(InFlag);
1766 Chain = DAG.getNode(ISD::CALLSEQ_END, NodeTys, &Ops[0], Ops.size());
1767 InFlag = Chain.getValue(1);
1768
1769 // Returns a chain & a flag for retval copy to use.
1770 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
1771 Ops.clear();
1772 }
1773
Nate Begeman4c5dcf52006-02-17 00:03:04 +00001774 Ops.push_back(Chain);
1775 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00001776
Gordon Henriksen86737662008-01-05 16:56:59 +00001777 if (IsTailCall)
1778 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00001779
Gordon Henriksen86737662008-01-05 16:56:59 +00001780 // Add argument registers to the end of the list so that they are known live
1781 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00001782 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1783 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1784 RegsToPass[i].second.getValueType()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001785
Evan Cheng586ccac2008-03-18 23:36:35 +00001786 // Add an implicit use GOT pointer in EBX.
1787 if (!IsTailCall && !Is64Bit &&
1788 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1789 Subtarget->isPICStyleGOT())
1790 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
1791
1792 // Add an implicit use of AL for x86 vararg functions.
1793 if (Is64Bit && isVarArg)
1794 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
1795
Gabor Greifba36cb52008-08-28 21:40:38 +00001796 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00001797 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00001798
Gordon Henriksen86737662008-01-05 16:56:59 +00001799 if (IsTailCall) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001800 assert(InFlag.getNode() &&
Gordon Henriksen86737662008-01-05 16:56:59 +00001801 "Flag must be set. Depend on flag being set in LowerRET");
1802 Chain = DAG.getNode(X86ISD::TAILCALL,
Dan Gohman095cc292008-09-13 01:54:27 +00001803 TheCall->getVTList(), &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001804
Gabor Greifba36cb52008-08-28 21:40:38 +00001805 return SDValue(Chain.getNode(), Op.getResNo());
Gordon Henriksen86737662008-01-05 16:56:59 +00001806 }
1807
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001808 Chain = DAG.getNode(X86ISD::CALL, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00001809 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00001810
Chris Lattner2d297092006-05-23 18:50:38 +00001811 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00001812 unsigned NumBytesForCalleeToPush;
Dan Gohman095cc292008-09-13 01:54:27 +00001813 if (IsCalleePop(isVarArg, CC))
Gordon Henriksen86737662008-01-05 16:56:59 +00001814 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Evan Chengb188dd92008-09-10 18:25:29 +00001815 else if (!Is64Bit && CC != CallingConv::Fast && IsStructRet)
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001816 // If this is is a call to a struct-return function, the callee
1817 // pops the hidden struct pointer, so we have to push it back.
1818 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001819 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00001820 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00001821 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Gordon Henriksen86737662008-01-05 16:56:59 +00001822
Gordon Henriksenae636f82008-01-03 16:47:34 +00001823 // Returns a flag for retval copy to use.
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001824 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnere563bbc2008-10-11 22:08:30 +00001825 DAG.getIntPtrConstant(NumBytes, true),
1826 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
1827 true),
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001828 InFlag);
Chris Lattner3085e152007-02-25 08:59:22 +00001829 InFlag = Chain.getValue(1);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00001830
Chris Lattner3085e152007-02-25 08:59:22 +00001831 // Handle result values, copying them out of physregs into vregs that we
1832 // return.
Dan Gohman095cc292008-09-13 01:54:27 +00001833 return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG),
Gabor Greif327ef032008-08-28 23:19:51 +00001834 Op.getResNo());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001835}
1836
Evan Cheng25ab6902006-09-08 06:48:29 +00001837
1838//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001839// Fast Calling Convention (tail call) implementation
1840//===----------------------------------------------------------------------===//
1841
1842// Like std call, callee cleans arguments, convention except that ECX is
1843// reserved for storing the tail called function address. Only 2 registers are
1844// free for argument passing (inreg). Tail call optimization is performed
1845// provided:
1846// * tailcallopt is enabled
1847// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001848// On X86_64 architecture with GOT-style position independent code only local
1849// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00001850// To keep the stack aligned according to platform abi the function
1851// GetAlignedArgumentStackSize ensures that argument delta is always multiples
1852// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001853// If a tail called function callee has more arguments than the caller the
1854// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00001855// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001856// original REtADDR, but before the saved framepointer or the spilled registers
1857// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
1858// stack layout:
1859// arg1
1860// arg2
1861// RETADDR
1862// [ new RETADDR
1863// move area ]
1864// (possible EBP)
1865// ESI
1866// EDI
1867// local1 ..
1868
1869/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
1870/// for a 16 byte align requirement.
1871unsigned X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
1872 SelectionDAG& DAG) {
Evan Chenge9ac9e62008-09-07 09:07:23 +00001873 MachineFunction &MF = DAG.getMachineFunction();
1874 const TargetMachine &TM = MF.getTarget();
1875 const TargetFrameInfo &TFI = *TM.getFrameInfo();
1876 unsigned StackAlignment = TFI.getStackAlignment();
1877 uint64_t AlignMask = StackAlignment - 1;
1878 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001879 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00001880 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
1881 // Number smaller than 12 so just add the difference.
1882 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
1883 } else {
1884 // Mask out lower bits, add stackalignment once plus the 12 bytes.
1885 Offset = ((~AlignMask) & Offset) + StackAlignment +
1886 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001887 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00001888 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001889}
1890
1891/// IsEligibleForTailCallElimination - Check to see whether the next instruction
Evan Cheng9df7dc52007-11-02 01:26:22 +00001892/// following the call is a return. A function is eligible if caller/callee
1893/// calling conventions match, currently only fastcc supports tail calls, and
1894/// the function CALL is immediatly followed by a RET.
Dan Gohman095cc292008-09-13 01:54:27 +00001895bool X86TargetLowering::IsEligibleForTailCallOptimization(CallSDNode *TheCall,
Dan Gohman475871a2008-07-27 21:46:04 +00001896 SDValue Ret,
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001897 SelectionDAG& DAG) const {
Evan Cheng9df7dc52007-11-02 01:26:22 +00001898 if (!PerformTailCallOpt)
1899 return false;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001900
Dan Gohman095cc292008-09-13 01:54:27 +00001901 if (CheckTailCallReturnConstraints(TheCall, Ret)) {
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001902 MachineFunction &MF = DAG.getMachineFunction();
1903 unsigned CallerCC = MF.getFunction()->getCallingConv();
Dan Gohman095cc292008-09-13 01:54:27 +00001904 unsigned CalleeCC= TheCall->getCallingConv();
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001905 if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
Dan Gohman095cc292008-09-13 01:54:27 +00001906 SDValue Callee = TheCall->getCallee();
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001907 // On x86/32Bit PIC/GOT tail calls are supported.
Evan Cheng9df7dc52007-11-02 01:26:22 +00001908 if (getTargetMachine().getRelocationModel() != Reloc::PIC_ ||
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001909 !Subtarget->isPICStyleGOT()|| !Subtarget->is64Bit())
Evan Cheng9df7dc52007-11-02 01:26:22 +00001910 return true;
1911
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00001912 // Can only do local tail calls (in same module, hidden or protected) on
1913 // x86_64 PIC/GOT at the moment.
Gordon Henriksen86737662008-01-05 16:56:59 +00001914 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
1915 return G->getGlobal()->hasHiddenVisibility()
1916 || G->getGlobal()->hasProtectedVisibility();
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001917 }
1918 }
Evan Cheng9df7dc52007-11-02 01:26:22 +00001919
1920 return false;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001921}
1922
Dan Gohman3df24e62008-09-03 23:12:08 +00001923FastISel *
1924X86TargetLowering::createFastISel(MachineFunction &mf,
Dan Gohmand57dd5f2008-09-23 21:53:34 +00001925 MachineModuleInfo *mmo,
Dan Gohman3df24e62008-09-03 23:12:08 +00001926 DenseMap<const Value *, unsigned> &vm,
1927 DenseMap<const BasicBlock *,
Dan Gohman0586d912008-09-10 20:11:02 +00001928 MachineBasicBlock *> &bm,
Dan Gohmandd5b58a2008-10-14 23:54:11 +00001929 DenseMap<const AllocaInst *, int> &am
1930#ifndef NDEBUG
1931 , SmallSet<Instruction*, 8> &cil
1932#endif
1933 ) {
1934 return X86::createFastISel(mf, mmo, vm, bm, am
1935#ifndef NDEBUG
1936 , cil
1937#endif
1938 );
Dan Gohmand9f3c482008-08-19 21:32:53 +00001939}
1940
1941
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00001942//===----------------------------------------------------------------------===//
1943// Other Lowering Hooks
1944//===----------------------------------------------------------------------===//
1945
1946
Dan Gohman475871a2008-07-27 21:46:04 +00001947SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00001948 MachineFunction &MF = DAG.getMachineFunction();
1949 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1950 int ReturnAddrIndex = FuncInfo->getRAIndex();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001951 uint64_t SlotSize = TD->getPointerSize();
Anton Korobeynikova2780e12007-08-15 17:12:32 +00001952
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001953 if (ReturnAddrIndex == 0) {
1954 // Set up a frame object for the return address.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001955 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00001956 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001957 }
1958
Evan Cheng25ab6902006-09-08 06:48:29 +00001959 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001960}
1961
1962
Chris Lattner1c39d4c2008-12-24 23:53:05 +00001963/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
1964/// specific condition code, returning the condition code and the LHS/RHS of the
1965/// comparison to make.
1966static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
1967 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00001968 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00001969 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
1970 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
1971 // X > -1 -> X == 0, jump !sign.
1972 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00001973 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00001974 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
1975 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00001976 return X86::COND_S;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001977 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00001978 // X < 1 -> X <= 0
1979 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00001980 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00001981 }
Chris Lattnerf9570512006-09-13 03:22:10 +00001982 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00001983
Evan Chengd9558e02006-01-06 00:43:03 +00001984 switch (SetCCOpcode) {
Chris Lattner4c78e022008-12-23 23:42:27 +00001985 default: assert(0 && "Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00001986 case ISD::SETEQ: return X86::COND_E;
1987 case ISD::SETGT: return X86::COND_G;
1988 case ISD::SETGE: return X86::COND_GE;
1989 case ISD::SETLT: return X86::COND_L;
1990 case ISD::SETLE: return X86::COND_LE;
1991 case ISD::SETNE: return X86::COND_NE;
1992 case ISD::SETULT: return X86::COND_B;
1993 case ISD::SETUGT: return X86::COND_A;
1994 case ISD::SETULE: return X86::COND_BE;
1995 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00001996 }
Chris Lattner4c78e022008-12-23 23:42:27 +00001997 }
1998
1999 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002000
Chris Lattner4c78e022008-12-23 23:42:27 +00002001 // If LHS is a foldable load, but RHS is not, flip the condition.
2002 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2003 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2004 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2005 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002006 }
2007
Chris Lattner4c78e022008-12-23 23:42:27 +00002008 switch (SetCCOpcode) {
2009 default: break;
2010 case ISD::SETOLT:
2011 case ISD::SETOLE:
2012 case ISD::SETUGT:
2013 case ISD::SETUGE:
2014 std::swap(LHS, RHS);
2015 break;
2016 }
2017
2018 // On a floating point condition, the flags are set as follows:
2019 // ZF PF CF op
2020 // 0 | 0 | 0 | X > Y
2021 // 0 | 0 | 1 | X < Y
2022 // 1 | 0 | 0 | X == Y
2023 // 1 | 1 | 1 | unordered
2024 switch (SetCCOpcode) {
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002025 default: assert(0 && "Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002026 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002027 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002028 case ISD::SETOLT: // flipped
2029 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002030 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002031 case ISD::SETOLE: // flipped
2032 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002033 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002034 case ISD::SETUGT: // flipped
2035 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002036 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002037 case ISD::SETUGE: // flipped
2038 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002039 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002040 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002041 case ISD::SETNE: return X86::COND_NE;
2042 case ISD::SETUO: return X86::COND_P;
2043 case ISD::SETO: return X86::COND_NP;
Chris Lattner4c78e022008-12-23 23:42:27 +00002044 }
Evan Chengd9558e02006-01-06 00:43:03 +00002045}
2046
Evan Cheng4a460802006-01-11 00:33:36 +00002047/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2048/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002049/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002050static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002051 switch (X86CC) {
2052 default:
2053 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002054 case X86::COND_B:
2055 case X86::COND_BE:
2056 case X86::COND_E:
2057 case X86::COND_P:
2058 case X86::COND_A:
2059 case X86::COND_AE:
2060 case X86::COND_NE:
2061 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002062 return true;
2063 }
2064}
2065
Evan Cheng5ced1d82006-04-06 23:23:56 +00002066/// isUndefOrInRange - Op is either an undef node or a ConstantSDNode. Return
Evan Chengc5cdff22006-04-07 21:53:05 +00002067/// true if Op is undef or if its value falls within the specified range (L, H].
Dan Gohman475871a2008-07-27 21:46:04 +00002068static bool isUndefOrInRange(SDValue Op, unsigned Low, unsigned Hi) {
Evan Cheng5ced1d82006-04-06 23:23:56 +00002069 if (Op.getOpcode() == ISD::UNDEF)
2070 return true;
2071
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002072 unsigned Val = cast<ConstantSDNode>(Op)->getZExtValue();
Evan Chengc5cdff22006-04-07 21:53:05 +00002073 return (Val >= Low && Val < Hi);
2074}
2075
2076/// isUndefOrEqual - Op is either an undef node or a ConstantSDNode. Return
2077/// true if Op is undef or if its value equal to the specified value.
Dan Gohman475871a2008-07-27 21:46:04 +00002078static bool isUndefOrEqual(SDValue Op, unsigned Val) {
Evan Chengc5cdff22006-04-07 21:53:05 +00002079 if (Op.getOpcode() == ISD::UNDEF)
2080 return true;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002081 return cast<ConstantSDNode>(Op)->getZExtValue() == Val;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002082}
2083
Evan Cheng0188ecb2006-03-22 18:59:22 +00002084/// isPSHUFDMask - Return true if the specified VECTOR_SHUFFLE operand
2085/// specifies a shuffle of elements that is suitable for input to PSHUFD.
2086bool X86::isPSHUFDMask(SDNode *N) {
2087 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2088
Dan Gohman7f55fcb2007-08-02 21:17:01 +00002089 if (N->getNumOperands() != 2 && N->getNumOperands() != 4)
Evan Cheng0188ecb2006-03-22 18:59:22 +00002090 return false;
2091
2092 // Check if the value doesn't reference the second vector.
Evan Cheng506d3df2006-03-29 23:07:14 +00002093 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002094 SDValue Arg = N->getOperand(i);
Evan Chengef698ca2006-03-31 00:30:29 +00002095 if (Arg.getOpcode() == ISD::UNDEF) continue;
2096 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002097 if (cast<ConstantSDNode>(Arg)->getZExtValue() >= e)
Evan Cheng506d3df2006-03-29 23:07:14 +00002098 return false;
2099 }
2100
2101 return true;
2102}
2103
2104/// isPSHUFHWMask - Return true if the specified VECTOR_SHUFFLE operand
Evan Chengc21a0532006-04-05 01:47:37 +00002105/// specifies a shuffle of elements that is suitable for input to PSHUFHW.
Evan Cheng506d3df2006-03-29 23:07:14 +00002106bool X86::isPSHUFHWMask(SDNode *N) {
2107 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2108
2109 if (N->getNumOperands() != 8)
2110 return false;
2111
2112 // Lower quadword copied in order.
2113 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002114 SDValue Arg = N->getOperand(i);
Evan Chengef698ca2006-03-31 00:30:29 +00002115 if (Arg.getOpcode() == ISD::UNDEF) continue;
2116 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002117 if (cast<ConstantSDNode>(Arg)->getZExtValue() != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00002118 return false;
2119 }
2120
2121 // Upper quadword shuffled.
2122 for (unsigned i = 4; i != 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002123 SDValue Arg = N->getOperand(i);
Evan Chengef698ca2006-03-31 00:30:29 +00002124 if (Arg.getOpcode() == ISD::UNDEF) continue;
2125 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002126 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng506d3df2006-03-29 23:07:14 +00002127 if (Val < 4 || Val > 7)
2128 return false;
2129 }
2130
2131 return true;
2132}
2133
2134/// isPSHUFLWMask - Return true if the specified VECTOR_SHUFFLE operand
Evan Chengc21a0532006-04-05 01:47:37 +00002135/// specifies a shuffle of elements that is suitable for input to PSHUFLW.
Evan Cheng506d3df2006-03-29 23:07:14 +00002136bool X86::isPSHUFLWMask(SDNode *N) {
2137 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2138
2139 if (N->getNumOperands() != 8)
2140 return false;
2141
2142 // Upper quadword copied in order.
Evan Chengc5cdff22006-04-07 21:53:05 +00002143 for (unsigned i = 4; i != 8; ++i)
2144 if (!isUndefOrEqual(N->getOperand(i), i))
Evan Cheng506d3df2006-03-29 23:07:14 +00002145 return false;
Evan Cheng506d3df2006-03-29 23:07:14 +00002146
2147 // Lower quadword shuffled.
Evan Chengc5cdff22006-04-07 21:53:05 +00002148 for (unsigned i = 0; i != 4; ++i)
2149 if (!isUndefOrInRange(N->getOperand(i), 0, 4))
Evan Cheng506d3df2006-03-29 23:07:14 +00002150 return false;
Evan Cheng0188ecb2006-03-22 18:59:22 +00002151
2152 return true;
2153}
2154
Evan Cheng14aed5e2006-03-24 01:18:28 +00002155/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2156/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Roman Levenstein9cac5252008-04-16 16:15:27 +00002157static bool isSHUFPMask(SDOperandPtr Elems, unsigned NumElems) {
Evan Cheng39623da2006-04-20 08:58:49 +00002158 if (NumElems != 2 && NumElems != 4) return false;
Evan Cheng14aed5e2006-03-24 01:18:28 +00002159
Evan Cheng39623da2006-04-20 08:58:49 +00002160 unsigned Half = NumElems / 2;
2161 for (unsigned i = 0; i < Half; ++i)
Chris Lattner5a88b832007-02-25 07:10:00 +00002162 if (!isUndefOrInRange(Elems[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002163 return false;
2164 for (unsigned i = Half; i < NumElems; ++i)
Chris Lattner5a88b832007-02-25 07:10:00 +00002165 if (!isUndefOrInRange(Elems[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002166 return false;
Evan Cheng14aed5e2006-03-24 01:18:28 +00002167
2168 return true;
2169}
2170
Evan Cheng39623da2006-04-20 08:58:49 +00002171bool X86::isSHUFPMask(SDNode *N) {
2172 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002173 return ::isSHUFPMask(N->op_begin(), N->getNumOperands());
Evan Cheng39623da2006-04-20 08:58:49 +00002174}
2175
Evan Cheng213d2cf2007-05-17 18:45:50 +00002176/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00002177/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2178/// half elements to come from vector 1 (which would equal the dest.) and
2179/// the upper half to come from vector 2.
Roman Levenstein9cac5252008-04-16 16:15:27 +00002180static bool isCommutedSHUFP(SDOperandPtr Ops, unsigned NumOps) {
Chris Lattner5a88b832007-02-25 07:10:00 +00002181 if (NumOps != 2 && NumOps != 4) return false;
Evan Cheng39623da2006-04-20 08:58:49 +00002182
Chris Lattner5a88b832007-02-25 07:10:00 +00002183 unsigned Half = NumOps / 2;
Evan Cheng39623da2006-04-20 08:58:49 +00002184 for (unsigned i = 0; i < Half; ++i)
Chris Lattner5a88b832007-02-25 07:10:00 +00002185 if (!isUndefOrInRange(Ops[i], NumOps, NumOps*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002186 return false;
Chris Lattner5a88b832007-02-25 07:10:00 +00002187 for (unsigned i = Half; i < NumOps; ++i)
2188 if (!isUndefOrInRange(Ops[i], 0, NumOps))
Evan Cheng39623da2006-04-20 08:58:49 +00002189 return false;
2190 return true;
2191}
2192
2193static bool isCommutedSHUFP(SDNode *N) {
2194 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002195 return isCommutedSHUFP(N->op_begin(), N->getNumOperands());
Evan Cheng39623da2006-04-20 08:58:49 +00002196}
2197
Evan Cheng2c0dbd02006-03-24 02:58:06 +00002198/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
2199/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
2200bool X86::isMOVHLPSMask(SDNode *N) {
2201 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2202
Evan Cheng2064a2b2006-03-28 06:50:32 +00002203 if (N->getNumOperands() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00002204 return false;
2205
Evan Cheng2064a2b2006-03-28 06:50:32 +00002206 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Evan Chengc5cdff22006-04-07 21:53:05 +00002207 return isUndefOrEqual(N->getOperand(0), 6) &&
2208 isUndefOrEqual(N->getOperand(1), 7) &&
2209 isUndefOrEqual(N->getOperand(2), 2) &&
2210 isUndefOrEqual(N->getOperand(3), 3);
Evan Cheng2064a2b2006-03-28 06:50:32 +00002211}
2212
Evan Cheng6e56e2c2006-11-07 22:14:24 +00002213/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
2214/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
2215/// <2, 3, 2, 3>
2216bool X86::isMOVHLPS_v_undef_Mask(SDNode *N) {
2217 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2218
2219 if (N->getNumOperands() != 4)
2220 return false;
2221
2222 // Expect bit0 == 2, bit1 == 3, bit2 == 2, bit3 == 3
2223 return isUndefOrEqual(N->getOperand(0), 2) &&
2224 isUndefOrEqual(N->getOperand(1), 3) &&
2225 isUndefOrEqual(N->getOperand(2), 2) &&
2226 isUndefOrEqual(N->getOperand(3), 3);
2227}
2228
Evan Cheng5ced1d82006-04-06 23:23:56 +00002229/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
2230/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
2231bool X86::isMOVLPMask(SDNode *N) {
2232 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2233
2234 unsigned NumElems = N->getNumOperands();
2235 if (NumElems != 2 && NumElems != 4)
2236 return false;
2237
Evan Chengc5cdff22006-04-07 21:53:05 +00002238 for (unsigned i = 0; i < NumElems/2; ++i)
2239 if (!isUndefOrEqual(N->getOperand(i), i + NumElems))
2240 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002241
Evan Chengc5cdff22006-04-07 21:53:05 +00002242 for (unsigned i = NumElems/2; i < NumElems; ++i)
2243 if (!isUndefOrEqual(N->getOperand(i), i))
2244 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002245
2246 return true;
2247}
2248
2249/// isMOVHPMask - Return true if the specified VECTOR_SHUFFLE operand
Evan Cheng533a0aa2006-04-19 20:35:22 +00002250/// specifies a shuffle of elements that is suitable for input to MOVHP{S|D}
2251/// and MOVLHPS.
Evan Cheng5ced1d82006-04-06 23:23:56 +00002252bool X86::isMOVHPMask(SDNode *N) {
2253 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2254
2255 unsigned NumElems = N->getNumOperands();
2256 if (NumElems != 2 && NumElems != 4)
2257 return false;
2258
Evan Chengc5cdff22006-04-07 21:53:05 +00002259 for (unsigned i = 0; i < NumElems/2; ++i)
2260 if (!isUndefOrEqual(N->getOperand(i), i))
2261 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002262
2263 for (unsigned i = 0; i < NumElems/2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002264 SDValue Arg = N->getOperand(i + NumElems/2);
Evan Chengc5cdff22006-04-07 21:53:05 +00002265 if (!isUndefOrEqual(Arg, i + NumElems))
2266 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002267 }
2268
2269 return true;
2270}
2271
Evan Cheng0038e592006-03-28 00:39:58 +00002272/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
2273/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Roman Levenstein9cac5252008-04-16 16:15:27 +00002274bool static isUNPCKLMask(SDOperandPtr Elts, unsigned NumElts,
Chris Lattner5a88b832007-02-25 07:10:00 +00002275 bool V2IsSplat = false) {
2276 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00002277 return false;
2278
Chris Lattner5a88b832007-02-25 07:10:00 +00002279 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +00002280 SDValue BitI = Elts[i];
2281 SDValue BitI1 = Elts[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00002282 if (!isUndefOrEqual(BitI, j))
2283 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00002284 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00002285 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00002286 return false;
2287 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00002288 if (!isUndefOrEqual(BitI1, j + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00002289 return false;
2290 }
Evan Cheng0038e592006-03-28 00:39:58 +00002291 }
2292
2293 return true;
2294}
2295
Evan Cheng39623da2006-04-20 08:58:49 +00002296bool X86::isUNPCKLMask(SDNode *N, bool V2IsSplat) {
2297 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002298 return ::isUNPCKLMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00002299}
2300
Evan Cheng4fcb9222006-03-28 02:43:26 +00002301/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
2302/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Roman Levenstein9cac5252008-04-16 16:15:27 +00002303bool static isUNPCKHMask(SDOperandPtr Elts, unsigned NumElts,
Chris Lattner5a88b832007-02-25 07:10:00 +00002304 bool V2IsSplat = false) {
2305 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00002306 return false;
2307
Chris Lattner5a88b832007-02-25 07:10:00 +00002308 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +00002309 SDValue BitI = Elts[i];
2310 SDValue BitI1 = Elts[i+1];
Chris Lattner5a88b832007-02-25 07:10:00 +00002311 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00002312 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00002313 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00002314 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00002315 return false;
2316 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00002317 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00002318 return false;
2319 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00002320 }
2321
2322 return true;
2323}
2324
Evan Cheng39623da2006-04-20 08:58:49 +00002325bool X86::isUNPCKHMask(SDNode *N, bool V2IsSplat) {
2326 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002327 return ::isUNPCKHMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00002328}
2329
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002330/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
2331/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
2332/// <0, 0, 1, 1>
2333bool X86::isUNPCKL_v_undef_Mask(SDNode *N) {
2334 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2335
2336 unsigned NumElems = N->getNumOperands();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00002337 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002338 return false;
2339
2340 for (unsigned i = 0, j = 0; i != NumElems; i += 2, ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +00002341 SDValue BitI = N->getOperand(i);
2342 SDValue BitI1 = N->getOperand(i+1);
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002343
Evan Chengc5cdff22006-04-07 21:53:05 +00002344 if (!isUndefOrEqual(BitI, j))
2345 return false;
2346 if (!isUndefOrEqual(BitI1, j))
2347 return false;
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002348 }
2349
2350 return true;
2351}
2352
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00002353/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
2354/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
2355/// <2, 2, 3, 3>
2356bool X86::isUNPCKH_v_undef_Mask(SDNode *N) {
2357 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2358
2359 unsigned NumElems = N->getNumOperands();
2360 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2361 return false;
2362
2363 for (unsigned i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +00002364 SDValue BitI = N->getOperand(i);
2365 SDValue BitI1 = N->getOperand(i + 1);
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00002366
2367 if (!isUndefOrEqual(BitI, j))
2368 return false;
2369 if (!isUndefOrEqual(BitI1, j))
2370 return false;
2371 }
2372
2373 return true;
2374}
2375
Evan Cheng017dcc62006-04-21 01:05:10 +00002376/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
2377/// specifies a shuffle of elements that is suitable for input to MOVSS,
2378/// MOVSD, and MOVD, i.e. setting the lowest element.
Roman Levenstein9cac5252008-04-16 16:15:27 +00002379static bool isMOVLMask(SDOperandPtr Elts, unsigned NumElts) {
Evan Cheng10762102007-12-06 22:14:22 +00002380 if (NumElts != 2 && NumElts != 4)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00002381 return false;
2382
Chris Lattner5a88b832007-02-25 07:10:00 +00002383 if (!isUndefOrEqual(Elts[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00002384 return false;
2385
Chris Lattner5a88b832007-02-25 07:10:00 +00002386 for (unsigned i = 1; i < NumElts; ++i) {
2387 if (!isUndefOrEqual(Elts[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00002388 return false;
2389 }
2390
2391 return true;
2392}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00002393
Evan Cheng017dcc62006-04-21 01:05:10 +00002394bool X86::isMOVLMask(SDNode *N) {
Evan Cheng39623da2006-04-20 08:58:49 +00002395 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002396 return ::isMOVLMask(N->op_begin(), N->getNumOperands());
Evan Cheng39623da2006-04-20 08:58:49 +00002397}
2398
Evan Cheng017dcc62006-04-21 01:05:10 +00002399/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
2400/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00002401/// element of vector 2 and the other elements to come from vector 1 in order.
Roman Levenstein9cac5252008-04-16 16:15:27 +00002402static bool isCommutedMOVL(SDOperandPtr Ops, unsigned NumOps,
Chris Lattner5a88b832007-02-25 07:10:00 +00002403 bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00002404 bool V2IsUndef = false) {
Chris Lattner5a88b832007-02-25 07:10:00 +00002405 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00002406 return false;
2407
2408 if (!isUndefOrEqual(Ops[0], 0))
2409 return false;
2410
Chris Lattner5a88b832007-02-25 07:10:00 +00002411 for (unsigned i = 1; i < NumOps; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002412 SDValue Arg = Ops[i];
Chris Lattner5a88b832007-02-25 07:10:00 +00002413 if (!(isUndefOrEqual(Arg, i+NumOps) ||
2414 (V2IsUndef && isUndefOrInRange(Arg, NumOps, NumOps*2)) ||
2415 (V2IsSplat && isUndefOrEqual(Arg, NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00002416 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00002417 }
2418
2419 return true;
2420}
2421
Evan Cheng8cf723d2006-09-08 01:50:06 +00002422static bool isCommutedMOVL(SDNode *N, bool V2IsSplat = false,
2423 bool V2IsUndef = false) {
Evan Cheng39623da2006-04-20 08:58:49 +00002424 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00002425 return isCommutedMOVL(N->op_begin(), N->getNumOperands(),
2426 V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00002427}
2428
Evan Chengd9539472006-04-14 21:59:03 +00002429/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2430/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
2431bool X86::isMOVSHDUPMask(SDNode *N) {
2432 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2433
2434 if (N->getNumOperands() != 4)
2435 return false;
2436
2437 // Expect 1, 1, 3, 3
2438 for (unsigned i = 0; i < 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002439 SDValue Arg = N->getOperand(i);
Evan Chengd9539472006-04-14 21:59:03 +00002440 if (Arg.getOpcode() == ISD::UNDEF) continue;
2441 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002442 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengd9539472006-04-14 21:59:03 +00002443 if (Val != 1) return false;
2444 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002445
2446 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00002447 for (unsigned i = 2; i < 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002448 SDValue Arg = N->getOperand(i);
Evan Chengd9539472006-04-14 21:59:03 +00002449 if (Arg.getOpcode() == ISD::UNDEF) continue;
2450 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002451 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengd9539472006-04-14 21:59:03 +00002452 if (Val != 3) return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002453 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00002454 }
Evan Cheng39fc1452006-04-15 03:13:24 +00002455
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002456 // Don't use movshdup if it can be done with a shufps.
2457 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00002458}
2459
2460/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2461/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
2462bool X86::isMOVSLDUPMask(SDNode *N) {
2463 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2464
2465 if (N->getNumOperands() != 4)
2466 return false;
2467
2468 // Expect 0, 0, 2, 2
2469 for (unsigned i = 0; i < 2; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002470 SDValue Arg = N->getOperand(i);
Evan Chengd9539472006-04-14 21:59:03 +00002471 if (Arg.getOpcode() == ISD::UNDEF) continue;
2472 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002473 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengd9539472006-04-14 21:59:03 +00002474 if (Val != 0) return false;
2475 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002476
2477 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00002478 for (unsigned i = 2; i < 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002479 SDValue Arg = N->getOperand(i);
Evan Chengd9539472006-04-14 21:59:03 +00002480 if (Arg.getOpcode() == ISD::UNDEF) continue;
2481 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002482 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengd9539472006-04-14 21:59:03 +00002483 if (Val != 2) return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002484 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00002485 }
Evan Cheng39fc1452006-04-15 03:13:24 +00002486
Evan Cheng57ebe9f2006-04-15 05:37:34 +00002487 // Don't use movshdup if it can be done with a shufps.
2488 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00002489}
2490
Evan Cheng49892af2007-06-19 00:02:56 +00002491/// isIdentityMask - Return true if the specified VECTOR_SHUFFLE operand
2492/// specifies a identity operation on the LHS or RHS.
2493static bool isIdentityMask(SDNode *N, bool RHS = false) {
2494 unsigned NumElems = N->getNumOperands();
2495 for (unsigned i = 0; i < NumElems; ++i)
2496 if (!isUndefOrEqual(N->getOperand(i), i + (RHS ? NumElems : 0)))
2497 return false;
2498 return true;
2499}
2500
Evan Chengb9df0ca2006-03-22 02:53:00 +00002501/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2502/// a splat of a single element.
Evan Chengc575ca22006-04-17 20:43:08 +00002503static bool isSplatMask(SDNode *N) {
Evan Chengb9df0ca2006-03-22 02:53:00 +00002504 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2505
Evan Chengb9df0ca2006-03-22 02:53:00 +00002506 // This is a splat operation if each element of the permute is the same, and
2507 // if the value doesn't reference the second vector.
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002508 unsigned NumElems = N->getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00002509 SDValue ElementBase;
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002510 unsigned i = 0;
2511 for (; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002512 SDValue Elt = N->getOperand(i);
Reid Spencer3ed469c2006-11-02 20:25:50 +00002513 if (isa<ConstantSDNode>(Elt)) {
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002514 ElementBase = Elt;
2515 break;
2516 }
2517 }
2518
Gabor Greifba36cb52008-08-28 21:40:38 +00002519 if (!ElementBase.getNode())
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002520 return false;
2521
2522 for (; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002523 SDValue Arg = N->getOperand(i);
Evan Chengef698ca2006-03-31 00:30:29 +00002524 if (Arg.getOpcode() == ISD::UNDEF) continue;
2525 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002526 if (Arg != ElementBase) return false;
Evan Chengb9df0ca2006-03-22 02:53:00 +00002527 }
2528
2529 // Make sure it is a splat of the first vector operand.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002530 return cast<ConstantSDNode>(ElementBase)->getZExtValue() < NumElems;
Evan Chengb9df0ca2006-03-22 02:53:00 +00002531}
2532
Mon P Wang62c75ea2008-12-23 04:03:27 +00002533/// getSplatMaskEltNo - Given a splat mask, return the index to the element
2534/// we want to splat.
2535static SDValue getSplatMaskEltNo(SDNode *N) {
2536 assert(isSplatMask(N) && "Not a splat mask");
2537 unsigned NumElems = N->getNumOperands();
2538 SDValue ElementBase;
2539 unsigned i = 0;
2540 for (; i != NumElems; ++i) {
2541 SDValue Elt = N->getOperand(i);
2542 if (isa<ConstantSDNode>(Elt))
2543 return Elt;
2544 }
2545 assert(0 && " No splat value found!");
2546 return SDValue();
2547}
2548
2549
Evan Chengc575ca22006-04-17 20:43:08 +00002550/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2551/// a splat of a single element and it's a 2 or 4 element mask.
2552bool X86::isSplatMask(SDNode *N) {
2553 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2554
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002555 // We can only splat 64-bit, and 32-bit quantities with a single instruction.
Evan Chengc575ca22006-04-17 20:43:08 +00002556 if (N->getNumOperands() != 4 && N->getNumOperands() != 2)
2557 return false;
2558 return ::isSplatMask(N);
2559}
2560
Evan Chengf686d9b2006-10-27 21:08:32 +00002561/// isSplatLoMask - Return true if the specified VECTOR_SHUFFLE operand
2562/// specifies a splat of zero element.
2563bool X86::isSplatLoMask(SDNode *N) {
2564 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2565
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002566 for (unsigned i = 0, e = N->getNumOperands(); i < e; ++i)
Evan Chengf686d9b2006-10-27 21:08:32 +00002567 if (!isUndefOrEqual(N->getOperand(i), 0))
2568 return false;
2569 return true;
2570}
2571
Evan Cheng0b457f02008-09-25 20:50:48 +00002572/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2573/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
2574bool X86::isMOVDDUPMask(SDNode *N) {
2575 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2576
2577 unsigned e = N->getNumOperands() / 2;
2578 for (unsigned i = 0; i < e; ++i)
2579 if (!isUndefOrEqual(N->getOperand(i), i))
2580 return false;
2581 for (unsigned i = 0; i < e; ++i)
2582 if (!isUndefOrEqual(N->getOperand(e+i), i))
2583 return false;
2584 return true;
2585}
2586
Evan Cheng63d33002006-03-22 08:01:21 +00002587/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
2588/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUF* and SHUFP*
2589/// instructions.
2590unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Evan Chengb9df0ca2006-03-22 02:53:00 +00002591 unsigned NumOperands = N->getNumOperands();
2592 unsigned Shift = (NumOperands == 4) ? 2 : 1;
2593 unsigned Mask = 0;
Evan Cheng36b27f32006-03-28 23:41:33 +00002594 for (unsigned i = 0; i < NumOperands; ++i) {
Evan Chengef698ca2006-03-31 00:30:29 +00002595 unsigned Val = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002596 SDValue Arg = N->getOperand(NumOperands-i-1);
Evan Chengef698ca2006-03-31 00:30:29 +00002597 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002598 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng14aed5e2006-03-24 01:18:28 +00002599 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00002600 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00002601 if (i != NumOperands - 1)
2602 Mask <<= Shift;
2603 }
Evan Cheng63d33002006-03-22 08:01:21 +00002604
2605 return Mask;
2606}
2607
Evan Cheng506d3df2006-03-29 23:07:14 +00002608/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
2609/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFHW
2610/// instructions.
2611unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
2612 unsigned Mask = 0;
2613 // 8 nodes, but we only care about the last 4.
2614 for (unsigned i = 7; i >= 4; --i) {
Evan Chengef698ca2006-03-31 00:30:29 +00002615 unsigned Val = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002616 SDValue Arg = N->getOperand(i);
Evan Chengef698ca2006-03-31 00:30:29 +00002617 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002618 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng506d3df2006-03-29 23:07:14 +00002619 Mask |= (Val - 4);
2620 if (i != 4)
2621 Mask <<= 2;
2622 }
2623
2624 return Mask;
2625}
2626
2627/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
2628/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFLW
2629/// instructions.
2630unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
2631 unsigned Mask = 0;
2632 // 8 nodes, but we only care about the first 4.
2633 for (int i = 3; i >= 0; --i) {
Evan Chengef698ca2006-03-31 00:30:29 +00002634 unsigned Val = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002635 SDValue Arg = N->getOperand(i);
Evan Chengef698ca2006-03-31 00:30:29 +00002636 if (Arg.getOpcode() != ISD::UNDEF)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002637 Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng506d3df2006-03-29 23:07:14 +00002638 Mask |= Val;
2639 if (i != 0)
2640 Mask <<= 2;
2641 }
2642
2643 return Mask;
2644}
2645
Evan Chengc21a0532006-04-05 01:47:37 +00002646/// isPSHUFHW_PSHUFLWMask - true if the specified VECTOR_SHUFFLE operand
2647/// specifies a 8 element shuffle that can be broken into a pair of
2648/// PSHUFHW and PSHUFLW.
2649static bool isPSHUFHW_PSHUFLWMask(SDNode *N) {
2650 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2651
2652 if (N->getNumOperands() != 8)
2653 return false;
2654
2655 // Lower quadword shuffled.
2656 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002657 SDValue Arg = N->getOperand(i);
Evan Chengc21a0532006-04-05 01:47:37 +00002658 if (Arg.getOpcode() == ISD::UNDEF) continue;
2659 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002660 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00002661 if (Val >= 4)
Evan Chengc21a0532006-04-05 01:47:37 +00002662 return false;
2663 }
2664
2665 // Upper quadword shuffled.
2666 for (unsigned i = 4; i != 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002667 SDValue Arg = N->getOperand(i);
Evan Chengc21a0532006-04-05 01:47:37 +00002668 if (Arg.getOpcode() == ISD::UNDEF) continue;
2669 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002670 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Chengc21a0532006-04-05 01:47:37 +00002671 if (Val < 4 || Val > 7)
2672 return false;
2673 }
2674
2675 return true;
2676}
2677
Chris Lattner8a594482007-11-25 00:24:49 +00002678/// CommuteVectorShuffle - Swap vector_shuffle operands as well as
Evan Cheng5ced1d82006-04-06 23:23:56 +00002679/// values in ther permute mask.
Dan Gohman475871a2008-07-27 21:46:04 +00002680static SDValue CommuteVectorShuffle(SDValue Op, SDValue &V1,
2681 SDValue &V2, SDValue &Mask,
Evan Cheng9eca5e82006-10-25 21:49:50 +00002682 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002683 MVT VT = Op.getValueType();
2684 MVT MaskVT = Mask.getValueType();
2685 MVT EltVT = MaskVT.getVectorElementType();
Evan Cheng5ced1d82006-04-06 23:23:56 +00002686 unsigned NumElems = Mask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00002687 SmallVector<SDValue, 8> MaskVec;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002688
2689 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002690 SDValue Arg = Mask.getOperand(i);
Evan Cheng80d428c2006-04-19 22:48:17 +00002691 if (Arg.getOpcode() == ISD::UNDEF) {
2692 MaskVec.push_back(DAG.getNode(ISD::UNDEF, EltVT));
2693 continue;
2694 }
Evan Cheng5ced1d82006-04-06 23:23:56 +00002695 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002696 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng5ced1d82006-04-06 23:23:56 +00002697 if (Val < NumElems)
2698 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2699 else
2700 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2701 }
2702
Evan Cheng9eca5e82006-10-25 21:49:50 +00002703 std::swap(V1, V2);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002704 Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], NumElems);
Evan Cheng9eca5e82006-10-25 21:49:50 +00002705 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, Mask);
Evan Cheng5ced1d82006-04-06 23:23:56 +00002706}
2707
Evan Cheng779ccea2007-12-07 21:30:01 +00002708/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
2709/// the two vector operands have swapped position.
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002710static
Dan Gohman475871a2008-07-27 21:46:04 +00002711SDValue CommuteVectorShuffleMask(SDValue Mask, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002712 MVT MaskVT = Mask.getValueType();
2713 MVT EltVT = MaskVT.getVectorElementType();
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002714 unsigned NumElems = Mask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00002715 SmallVector<SDValue, 8> MaskVec;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002716 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002717 SDValue Arg = Mask.getOperand(i);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002718 if (Arg.getOpcode() == ISD::UNDEF) {
2719 MaskVec.push_back(DAG.getNode(ISD::UNDEF, EltVT));
2720 continue;
2721 }
2722 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002723 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng8a86c3f2007-12-07 08:07:39 +00002724 if (Val < NumElems)
2725 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2726 else
2727 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2728 }
2729 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], NumElems);
2730}
2731
2732
Evan Cheng533a0aa2006-04-19 20:35:22 +00002733/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
2734/// match movhlps. The lower half elements should come from upper half of
2735/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002736/// half of V2 (and in order).
Evan Cheng533a0aa2006-04-19 20:35:22 +00002737static bool ShouldXformToMOVHLPS(SDNode *Mask) {
2738 unsigned NumElems = Mask->getNumOperands();
2739 if (NumElems != 4)
2740 return false;
2741 for (unsigned i = 0, e = 2; i != e; ++i)
2742 if (!isUndefOrEqual(Mask->getOperand(i), i+2))
2743 return false;
2744 for (unsigned i = 2; i != 4; ++i)
2745 if (!isUndefOrEqual(Mask->getOperand(i), i+4))
2746 return false;
2747 return true;
2748}
2749
Evan Cheng5ced1d82006-04-06 23:23:56 +00002750/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00002751/// is promoted to a vector. It also returns the LoadSDNode by reference if
2752/// required.
2753static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00002754 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
2755 return false;
2756 N = N->getOperand(0).getNode();
2757 if (!ISD::isNON_EXTLoad(N))
2758 return false;
2759 if (LD)
2760 *LD = cast<LoadSDNode>(N);
2761 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002762}
2763
Evan Cheng533a0aa2006-04-19 20:35:22 +00002764/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
2765/// match movlp{s|d}. The lower half elements should come from lower half of
2766/// V1 (and in order), and the upper half elements should come from the upper
2767/// half of V2 (and in order). And since V1 will become the source of the
2768/// MOVLP, it must be either a vector load or a scalar load to vector.
Evan Cheng23425f52006-10-09 21:39:25 +00002769static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2, SDNode *Mask) {
Evan Cheng466685d2006-10-09 20:57:25 +00002770 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00002771 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00002772 // Is V2 is a vector load, don't do this transformation. We will try to use
2773 // load folding shufps op.
2774 if (ISD::isNON_EXTLoad(V2))
2775 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002776
Evan Cheng533a0aa2006-04-19 20:35:22 +00002777 unsigned NumElems = Mask->getNumOperands();
2778 if (NumElems != 2 && NumElems != 4)
2779 return false;
2780 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
2781 if (!isUndefOrEqual(Mask->getOperand(i), i))
2782 return false;
2783 for (unsigned i = NumElems/2; i != NumElems; ++i)
2784 if (!isUndefOrEqual(Mask->getOperand(i), i+NumElems))
2785 return false;
2786 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002787}
2788
Evan Cheng39623da2006-04-20 08:58:49 +00002789/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
2790/// all the same.
2791static bool isSplatVector(SDNode *N) {
2792 if (N->getOpcode() != ISD::BUILD_VECTOR)
2793 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002794
Dan Gohman475871a2008-07-27 21:46:04 +00002795 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00002796 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
2797 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002798 return false;
2799 return true;
2800}
2801
Evan Cheng8cf723d2006-09-08 01:50:06 +00002802/// isUndefShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2803/// to an undef.
2804static bool isUndefShuffle(SDNode *N) {
Evan Cheng213d2cf2007-05-17 18:45:50 +00002805 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
Evan Cheng8cf723d2006-09-08 01:50:06 +00002806 return false;
2807
Dan Gohman475871a2008-07-27 21:46:04 +00002808 SDValue V1 = N->getOperand(0);
2809 SDValue V2 = N->getOperand(1);
2810 SDValue Mask = N->getOperand(2);
Evan Cheng8cf723d2006-09-08 01:50:06 +00002811 unsigned NumElems = Mask.getNumOperands();
2812 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002813 SDValue Arg = Mask.getOperand(i);
Evan Cheng8cf723d2006-09-08 01:50:06 +00002814 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002815 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng8cf723d2006-09-08 01:50:06 +00002816 if (Val < NumElems && V1.getOpcode() != ISD::UNDEF)
2817 return false;
2818 else if (Val >= NumElems && V2.getOpcode() != ISD::UNDEF)
2819 return false;
2820 }
2821 }
2822 return true;
2823}
2824
Evan Cheng213d2cf2007-05-17 18:45:50 +00002825/// isZeroNode - Returns true if Elt is a constant zero or a floating point
2826/// constant +0.0.
Dan Gohman475871a2008-07-27 21:46:04 +00002827static inline bool isZeroNode(SDValue Elt) {
Evan Cheng213d2cf2007-05-17 18:45:50 +00002828 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002829 cast<ConstantSDNode>(Elt)->getZExtValue() == 0) ||
Evan Cheng213d2cf2007-05-17 18:45:50 +00002830 (isa<ConstantFPSDNode>(Elt) &&
Dale Johanneseneaf08942007-08-31 04:03:46 +00002831 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
Evan Cheng213d2cf2007-05-17 18:45:50 +00002832}
2833
2834/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2835/// to an zero vector.
2836static bool isZeroShuffle(SDNode *N) {
2837 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
2838 return false;
2839
Dan Gohman475871a2008-07-27 21:46:04 +00002840 SDValue V1 = N->getOperand(0);
2841 SDValue V2 = N->getOperand(1);
2842 SDValue Mask = N->getOperand(2);
Evan Cheng213d2cf2007-05-17 18:45:50 +00002843 unsigned NumElems = Mask.getNumOperands();
2844 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002845 SDValue Arg = Mask.getOperand(i);
Chris Lattner8a594482007-11-25 00:24:49 +00002846 if (Arg.getOpcode() == ISD::UNDEF)
2847 continue;
2848
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002849 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Chris Lattner8a594482007-11-25 00:24:49 +00002850 if (Idx < NumElems) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002851 unsigned Opc = V1.getNode()->getOpcode();
2852 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
Chris Lattner8a594482007-11-25 00:24:49 +00002853 continue;
2854 if (Opc != ISD::BUILD_VECTOR ||
Gabor Greifba36cb52008-08-28 21:40:38 +00002855 !isZeroNode(V1.getNode()->getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00002856 return false;
2857 } else if (Idx >= NumElems) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002858 unsigned Opc = V2.getNode()->getOpcode();
2859 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
Chris Lattner8a594482007-11-25 00:24:49 +00002860 continue;
2861 if (Opc != ISD::BUILD_VECTOR ||
Gabor Greifba36cb52008-08-28 21:40:38 +00002862 !isZeroNode(V2.getNode()->getOperand(Idx - NumElems)))
Chris Lattner8a594482007-11-25 00:24:49 +00002863 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00002864 }
2865 }
2866 return true;
2867}
2868
2869/// getZeroVector - Returns a vector of specified type with all zero elements.
2870///
Dan Gohman475871a2008-07-27 21:46:04 +00002871static SDValue getZeroVector(MVT VT, bool HasSSE2, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002872 assert(VT.isVector() && "Expected a vector type");
Chris Lattner8a594482007-11-25 00:24:49 +00002873
2874 // Always build zero vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2875 // type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00002876 SDValue Vec;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002877 if (VT.getSizeInBits() == 64) { // MMX
Dan Gohman475871a2008-07-27 21:46:04 +00002878 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Chris Lattner8a594482007-11-25 00:24:49 +00002879 Vec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v2i32, Cst, Cst);
Evan Chengf0df0312008-05-15 08:39:06 +00002880 } else if (HasSSE2) { // SSE2
Dan Gohman475871a2008-07-27 21:46:04 +00002881 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
Chris Lattner8a594482007-11-25 00:24:49 +00002882 Vec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, Cst, Cst, Cst, Cst);
Evan Chengf0df0312008-05-15 08:39:06 +00002883 } else { // SSE1
Dan Gohman475871a2008-07-27 21:46:04 +00002884 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Evan Chengf0df0312008-05-15 08:39:06 +00002885 Vec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4f32, Cst, Cst, Cst, Cst);
2886 }
Chris Lattner8a594482007-11-25 00:24:49 +00002887 return DAG.getNode(ISD::BIT_CONVERT, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00002888}
2889
Chris Lattner8a594482007-11-25 00:24:49 +00002890/// getOnesVector - Returns a vector of specified type with all bits set.
2891///
Dan Gohman475871a2008-07-27 21:46:04 +00002892static SDValue getOnesVector(MVT VT, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002893 assert(VT.isVector() && "Expected a vector type");
Chris Lattner8a594482007-11-25 00:24:49 +00002894
2895 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2896 // type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00002897 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
2898 SDValue Vec;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002899 if (VT.getSizeInBits() == 64) // MMX
Chris Lattner8a594482007-11-25 00:24:49 +00002900 Vec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v2i32, Cst, Cst);
2901 else // SSE
2902 Vec = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, Cst, Cst, Cst, Cst);
2903 return DAG.getNode(ISD::BIT_CONVERT, VT, Vec);
2904}
2905
2906
Evan Cheng39623da2006-04-20 08:58:49 +00002907/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
2908/// that point to V2 points to its first element.
Dan Gohman475871a2008-07-27 21:46:04 +00002909static SDValue NormalizeMask(SDValue Mask, SelectionDAG &DAG) {
Evan Cheng39623da2006-04-20 08:58:49 +00002910 assert(Mask.getOpcode() == ISD::BUILD_VECTOR);
2911
2912 bool Changed = false;
Dan Gohman475871a2008-07-27 21:46:04 +00002913 SmallVector<SDValue, 8> MaskVec;
Evan Cheng39623da2006-04-20 08:58:49 +00002914 unsigned NumElems = Mask.getNumOperands();
2915 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00002916 SDValue Arg = Mask.getOperand(i);
Evan Cheng39623da2006-04-20 08:58:49 +00002917 if (Arg.getOpcode() != ISD::UNDEF) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002918 unsigned Val = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng39623da2006-04-20 08:58:49 +00002919 if (Val > NumElems) {
2920 Arg = DAG.getConstant(NumElems, Arg.getValueType());
2921 Changed = true;
2922 }
2923 }
2924 MaskVec.push_back(Arg);
2925 }
2926
2927 if (Changed)
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002928 Mask = DAG.getNode(ISD::BUILD_VECTOR, Mask.getValueType(),
2929 &MaskVec[0], MaskVec.size());
Evan Cheng39623da2006-04-20 08:58:49 +00002930 return Mask;
2931}
2932
Evan Cheng017dcc62006-04-21 01:05:10 +00002933/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
2934/// operation of specified width.
Dan Gohman475871a2008-07-27 21:46:04 +00002935static SDValue getMOVLMask(unsigned NumElems, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002936 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2937 MVT BaseVT = MaskVT.getVectorElementType();
Evan Cheng39623da2006-04-20 08:58:49 +00002938
Dan Gohman475871a2008-07-27 21:46:04 +00002939 SmallVector<SDValue, 8> MaskVec;
Evan Cheng39623da2006-04-20 08:58:49 +00002940 MaskVec.push_back(DAG.getConstant(NumElems, BaseVT));
2941 for (unsigned i = 1; i != NumElems; ++i)
2942 MaskVec.push_back(DAG.getConstant(i, BaseVT));
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002943 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], MaskVec.size());
Evan Cheng39623da2006-04-20 08:58:49 +00002944}
2945
Evan Chengc575ca22006-04-17 20:43:08 +00002946/// getUnpacklMask - Returns a vector_shuffle mask for an unpackl operation
2947/// of specified width.
Dan Gohman475871a2008-07-27 21:46:04 +00002948static SDValue getUnpacklMask(unsigned NumElems, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002949 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2950 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00002951 SmallVector<SDValue, 8> MaskVec;
Evan Chengc575ca22006-04-17 20:43:08 +00002952 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
2953 MaskVec.push_back(DAG.getConstant(i, BaseVT));
2954 MaskVec.push_back(DAG.getConstant(i + NumElems, BaseVT));
2955 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002956 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], MaskVec.size());
Evan Chengc575ca22006-04-17 20:43:08 +00002957}
2958
Evan Cheng39623da2006-04-20 08:58:49 +00002959/// getUnpackhMask - Returns a vector_shuffle mask for an unpackh operation
2960/// of specified width.
Dan Gohman475871a2008-07-27 21:46:04 +00002961static SDValue getUnpackhMask(unsigned NumElems, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002962 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2963 MVT BaseVT = MaskVT.getVectorElementType();
Evan Cheng39623da2006-04-20 08:58:49 +00002964 unsigned Half = NumElems/2;
Dan Gohman475871a2008-07-27 21:46:04 +00002965 SmallVector<SDValue, 8> MaskVec;
Evan Cheng39623da2006-04-20 08:58:49 +00002966 for (unsigned i = 0; i != Half; ++i) {
2967 MaskVec.push_back(DAG.getConstant(i + Half, BaseVT));
2968 MaskVec.push_back(DAG.getConstant(i + NumElems + Half, BaseVT));
2969 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002970 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], MaskVec.size());
Evan Cheng39623da2006-04-20 08:58:49 +00002971}
2972
Chris Lattner62098042008-03-09 01:05:04 +00002973/// getSwapEltZeroMask - Returns a vector_shuffle mask for a shuffle that swaps
2974/// element #0 of a vector with the specified index, leaving the rest of the
2975/// elements in place.
Dan Gohman475871a2008-07-27 21:46:04 +00002976static SDValue getSwapEltZeroMask(unsigned NumElems, unsigned DestElt,
Chris Lattner62098042008-03-09 01:05:04 +00002977 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002978 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
2979 MVT BaseVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00002980 SmallVector<SDValue, 8> MaskVec;
Chris Lattner62098042008-03-09 01:05:04 +00002981 // Element #0 of the result gets the elt we are replacing.
2982 MaskVec.push_back(DAG.getConstant(DestElt, BaseVT));
2983 for (unsigned i = 1; i != NumElems; ++i)
2984 MaskVec.push_back(DAG.getConstant(i == DestElt ? 0 : i, BaseVT));
2985 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], MaskVec.size());
2986}
2987
Evan Cheng0c0f83f2008-04-05 00:30:36 +00002988/// PromoteSplat - Promote a splat of v4f32, v8i16 or v16i8 to v4i32.
Dan Gohman475871a2008-07-27 21:46:04 +00002989static SDValue PromoteSplat(SDValue Op, SelectionDAG &DAG, bool HasSSE2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002990 MVT PVT = HasSSE2 ? MVT::v4i32 : MVT::v4f32;
2991 MVT VT = Op.getValueType();
Evan Cheng0c0f83f2008-04-05 00:30:36 +00002992 if (PVT == VT)
2993 return Op;
Dan Gohman475871a2008-07-27 21:46:04 +00002994 SDValue V1 = Op.getOperand(0);
2995 SDValue Mask = Op.getOperand(2);
Mon P Wang62c75ea2008-12-23 04:03:27 +00002996 unsigned MaskNumElems = Mask.getNumOperands();
2997 unsigned NumElems = MaskNumElems;
Evan Cheng0c0f83f2008-04-05 00:30:36 +00002998 // Special handling of v4f32 -> v4i32.
2999 if (VT != MVT::v4f32) {
Mon P Wang62c75ea2008-12-23 04:03:27 +00003000 // Find which element we want to splat.
3001 SDNode* EltNoNode = getSplatMaskEltNo(Mask.getNode()).getNode();
3002 unsigned EltNo = cast<ConstantSDNode>(EltNoNode)->getZExtValue();
3003 // unpack elements to the correct location
Evan Cheng0c0f83f2008-04-05 00:30:36 +00003004 while (NumElems > 4) {
Mon P Wang62c75ea2008-12-23 04:03:27 +00003005 if (EltNo < NumElems/2) {
3006 Mask = getUnpacklMask(MaskNumElems, DAG);
3007 } else {
3008 Mask = getUnpackhMask(MaskNumElems, DAG);
3009 EltNo -= NumElems/2;
3010 }
Evan Cheng0c0f83f2008-04-05 00:30:36 +00003011 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V1, Mask);
3012 NumElems >>= 1;
3013 }
Mon P Wang62c75ea2008-12-23 04:03:27 +00003014 SDValue Cst = DAG.getConstant(EltNo, MVT::i32);
3015 Mask = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, Cst, Cst, Cst, Cst);
Evan Chengc575ca22006-04-17 20:43:08 +00003016 }
Evan Chengc575ca22006-04-17 20:43:08 +00003017
Evan Cheng0c0f83f2008-04-05 00:30:36 +00003018 V1 = DAG.getNode(ISD::BIT_CONVERT, PVT, V1);
Dan Gohman475871a2008-07-27 21:46:04 +00003019 SDValue Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, PVT, V1,
Evan Cheng0c0f83f2008-04-05 00:30:36 +00003020 DAG.getNode(ISD::UNDEF, PVT), Mask);
Evan Chengc575ca22006-04-17 20:43:08 +00003021 return DAG.getNode(ISD::BIT_CONVERT, VT, Shuffle);
3022}
3023
Evan Cheng0b457f02008-09-25 20:50:48 +00003024/// isVectorLoad - Returns true if the node is a vector load, a scalar
3025/// load that's promoted to vector, or a load bitcasted.
3026static bool isVectorLoad(SDValue Op) {
3027 assert(Op.getValueType().isVector() && "Expected a vector type");
3028 if (Op.getOpcode() == ISD::SCALAR_TO_VECTOR ||
3029 Op.getOpcode() == ISD::BIT_CONVERT) {
3030 return isa<LoadSDNode>(Op.getOperand(0));
3031 }
3032 return isa<LoadSDNode>(Op);
3033}
3034
3035
3036/// CanonicalizeMovddup - Cannonicalize movddup shuffle to v2f64.
3037///
3038static SDValue CanonicalizeMovddup(SDValue Op, SDValue V1, SDValue Mask,
3039 SelectionDAG &DAG, bool HasSSE3) {
3040 // If we have sse3 and shuffle has more than one use or input is a load, then
3041 // use movddup. Otherwise, use movlhps.
3042 bool UseMovddup = HasSSE3 && (!Op.hasOneUse() || isVectorLoad(V1));
3043 MVT PVT = UseMovddup ? MVT::v2f64 : MVT::v4f32;
3044 MVT VT = Op.getValueType();
3045 if (VT == PVT)
3046 return Op;
3047 unsigned NumElems = PVT.getVectorNumElements();
3048 if (NumElems == 2) {
3049 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3050 Mask = DAG.getNode(ISD::BUILD_VECTOR, MVT::v2i32, Cst, Cst);
3051 } else {
3052 assert(NumElems == 4);
3053 SDValue Cst0 = DAG.getTargetConstant(0, MVT::i32);
3054 SDValue Cst1 = DAG.getTargetConstant(1, MVT::i32);
3055 Mask = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, Cst0, Cst1, Cst0, Cst1);
3056 }
3057
3058 V1 = DAG.getNode(ISD::BIT_CONVERT, PVT, V1);
3059 SDValue Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, PVT, V1,
3060 DAG.getNode(ISD::UNDEF, PVT), Mask);
3061 return DAG.getNode(ISD::BIT_CONVERT, VT, Shuffle);
3062}
3063
Evan Chengba05f722006-04-21 23:03:30 +00003064/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00003065/// vector of zero or undef vector. This produces a shuffle where the low
3066/// element of V2 is swizzled into the zero/undef vector, landing at element
3067/// 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 +00003068static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00003069 bool isZero, bool HasSSE2,
3070 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003071 MVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003072 SDValue V1 = isZero
Evan Chengf0df0312008-05-15 08:39:06 +00003073 ? getZeroVector(VT, HasSSE2, DAG) : DAG.getNode(ISD::UNDEF, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003074 unsigned NumElems = V2.getValueType().getVectorNumElements();
3075 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3076 MVT EVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00003077 SmallVector<SDValue, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00003078 for (unsigned i = 0; i != NumElems; ++i)
3079 if (i == Idx) // If this is the insertion idx, put the low elt of V2 here.
3080 MaskVec.push_back(DAG.getConstant(NumElems, EVT));
3081 else
3082 MaskVec.push_back(DAG.getConstant(i, EVT));
Dan Gohman475871a2008-07-27 21:46:04 +00003083 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003084 &MaskVec[0], MaskVec.size());
Evan Chengba05f722006-04-21 23:03:30 +00003085 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, Mask);
Evan Cheng017dcc62006-04-21 01:05:10 +00003086}
3087
Evan Chengf26ffe92008-05-29 08:22:04 +00003088/// getNumOfConsecutiveZeros - Return the number of elements in a result of
3089/// a shuffle that is zero.
3090static
Dan Gohman475871a2008-07-27 21:46:04 +00003091unsigned getNumOfConsecutiveZeros(SDValue Op, SDValue Mask,
Evan Chengf26ffe92008-05-29 08:22:04 +00003092 unsigned NumElems, bool Low,
3093 SelectionDAG &DAG) {
3094 unsigned NumZeros = 0;
3095 for (unsigned i = 0; i < NumElems; ++i) {
Evan Chengab262272008-06-25 20:52:59 +00003096 unsigned Index = Low ? i : NumElems-i-1;
Dan Gohman475871a2008-07-27 21:46:04 +00003097 SDValue Idx = Mask.getOperand(Index);
Evan Chengf26ffe92008-05-29 08:22:04 +00003098 if (Idx.getOpcode() == ISD::UNDEF) {
3099 ++NumZeros;
3100 continue;
3101 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003102 SDValue Elt = DAG.getShuffleScalarElt(Op.getNode(), Index);
3103 if (Elt.getNode() && isZeroNode(Elt))
Evan Chengf26ffe92008-05-29 08:22:04 +00003104 ++NumZeros;
3105 else
3106 break;
3107 }
3108 return NumZeros;
3109}
3110
3111/// isVectorShift - Returns true if the shuffle can be implemented as a
3112/// logical left or right shift of a vector.
Dan Gohman475871a2008-07-27 21:46:04 +00003113static bool isVectorShift(SDValue Op, SDValue Mask, SelectionDAG &DAG,
3114 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Evan Chengf26ffe92008-05-29 08:22:04 +00003115 unsigned NumElems = Mask.getNumOperands();
3116
3117 isLeft = true;
3118 unsigned NumZeros= getNumOfConsecutiveZeros(Op, Mask, NumElems, true, DAG);
3119 if (!NumZeros) {
3120 isLeft = false;
3121 NumZeros = getNumOfConsecutiveZeros(Op, Mask, NumElems, false, DAG);
3122 if (!NumZeros)
3123 return false;
3124 }
3125
3126 bool SeenV1 = false;
3127 bool SeenV2 = false;
3128 for (unsigned i = NumZeros; i < NumElems; ++i) {
3129 unsigned Val = isLeft ? (i - NumZeros) : i;
Dan Gohman475871a2008-07-27 21:46:04 +00003130 SDValue Idx = Mask.getOperand(isLeft ? i : (i - NumZeros));
Evan Chengf26ffe92008-05-29 08:22:04 +00003131 if (Idx.getOpcode() == ISD::UNDEF)
3132 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003133 unsigned Index = cast<ConstantSDNode>(Idx)->getZExtValue();
Evan Chengf26ffe92008-05-29 08:22:04 +00003134 if (Index < NumElems)
3135 SeenV1 = true;
3136 else {
3137 Index -= NumElems;
3138 SeenV2 = true;
3139 }
3140 if (Index != Val)
3141 return false;
3142 }
3143 if (SeenV1 && SeenV2)
3144 return false;
3145
3146 ShVal = SeenV1 ? Op.getOperand(0) : Op.getOperand(1);
3147 ShAmt = NumZeros;
3148 return true;
3149}
3150
3151
Evan Chengc78d3b42006-04-24 18:01:45 +00003152/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3153///
Dan Gohman475871a2008-07-27 21:46:04 +00003154static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00003155 unsigned NumNonZero, unsigned NumZero,
Evan Cheng25ab6902006-09-08 06:48:29 +00003156 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003157 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00003158 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003159
Dan Gohman475871a2008-07-27 21:46:04 +00003160 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003161 bool First = true;
3162 for (unsigned i = 0; i < 16; ++i) {
3163 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3164 if (ThisIsNonZero && First) {
3165 if (NumZero)
Evan Chengf0df0312008-05-15 08:39:06 +00003166 V = getZeroVector(MVT::v8i16, true, DAG);
Evan Chengc78d3b42006-04-24 18:01:45 +00003167 else
3168 V = DAG.getNode(ISD::UNDEF, MVT::v8i16);
3169 First = false;
3170 }
3171
3172 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00003173 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003174 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3175 if (LastIsNonZero) {
3176 LastElt = DAG.getNode(ISD::ZERO_EXTEND, MVT::i16, Op.getOperand(i-1));
3177 }
3178 if (ThisIsNonZero) {
3179 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, MVT::i16, Op.getOperand(i));
3180 ThisElt = DAG.getNode(ISD::SHL, MVT::i16,
3181 ThisElt, DAG.getConstant(8, MVT::i8));
3182 if (LastIsNonZero)
3183 ThisElt = DAG.getNode(ISD::OR, MVT::i16, ThisElt, LastElt);
3184 } else
3185 ThisElt = LastElt;
3186
Gabor Greifba36cb52008-08-28 21:40:38 +00003187 if (ThisElt.getNode())
Evan Chengc78d3b42006-04-24 18:01:45 +00003188 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00003189 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00003190 }
3191 }
3192
3193 return DAG.getNode(ISD::BIT_CONVERT, MVT::v16i8, V);
3194}
3195
Bill Wendlinga348c562007-03-22 18:42:45 +00003196/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00003197///
Dan Gohman475871a2008-07-27 21:46:04 +00003198static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00003199 unsigned NumNonZero, unsigned NumZero,
Evan Cheng25ab6902006-09-08 06:48:29 +00003200 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003201 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00003202 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003203
Dan Gohman475871a2008-07-27 21:46:04 +00003204 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003205 bool First = true;
3206 for (unsigned i = 0; i < 8; ++i) {
3207 bool isNonZero = (NonZeros & (1 << i)) != 0;
3208 if (isNonZero) {
3209 if (First) {
3210 if (NumZero)
Evan Chengf0df0312008-05-15 08:39:06 +00003211 V = getZeroVector(MVT::v8i16, true, DAG);
Evan Chengc78d3b42006-04-24 18:01:45 +00003212 else
3213 V = DAG.getNode(ISD::UNDEF, MVT::v8i16);
3214 First = false;
3215 }
3216 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00003217 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00003218 }
3219 }
3220
3221 return V;
3222}
3223
Evan Chengf26ffe92008-05-29 08:22:04 +00003224/// getVShift - Return a vector logical shift node.
3225///
Dan Gohman475871a2008-07-27 21:46:04 +00003226static SDValue getVShift(bool isLeft, MVT VT, SDValue SrcOp,
Evan Chengf26ffe92008-05-29 08:22:04 +00003227 unsigned NumBits, SelectionDAG &DAG,
3228 const TargetLowering &TLI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003229 bool isMMX = VT.getSizeInBits() == 64;
3230 MVT ShVT = isMMX ? MVT::v1i64 : MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00003231 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
3232 SrcOp = DAG.getNode(ISD::BIT_CONVERT, ShVT, SrcOp);
3233 return DAG.getNode(ISD::BIT_CONVERT, VT,
3234 DAG.getNode(Opc, ShVT, SrcOp,
Gabor Greif327ef032008-08-28 23:19:51 +00003235 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengf26ffe92008-05-29 08:22:04 +00003236}
3237
Dan Gohman475871a2008-07-27 21:46:04 +00003238SDValue
3239X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) {
Chris Lattner8a594482007-11-25 00:24:49 +00003240 // All zero's are handled with pxor, all one's are handled with pcmpeqd.
Gabor Greif327ef032008-08-28 23:19:51 +00003241 if (ISD::isBuildVectorAllZeros(Op.getNode())
3242 || ISD::isBuildVectorAllOnes(Op.getNode())) {
Chris Lattner8a594482007-11-25 00:24:49 +00003243 // Canonicalize this to either <4 x i32> or <2 x i32> (SSE vs MMX) to
3244 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
3245 // eliminated on x86-32 hosts.
3246 if (Op.getValueType() == MVT::v4i32 || Op.getValueType() == MVT::v2i32)
3247 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003248
Gabor Greifba36cb52008-08-28 21:40:38 +00003249 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Chris Lattner8a594482007-11-25 00:24:49 +00003250 return getOnesVector(Op.getValueType(), DAG);
Evan Chengf0df0312008-05-15 08:39:06 +00003251 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG);
Chris Lattner8a594482007-11-25 00:24:49 +00003252 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003253
Duncan Sands83ec4b62008-06-06 12:08:01 +00003254 MVT VT = Op.getValueType();
3255 MVT EVT = VT.getVectorElementType();
3256 unsigned EVTBits = EVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00003257
3258 unsigned NumElems = Op.getNumOperands();
3259 unsigned NumZero = 0;
3260 unsigned NumNonZero = 0;
3261 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003262 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00003263 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003264 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003265 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00003266 if (Elt.getOpcode() == ISD::UNDEF)
3267 continue;
3268 Values.insert(Elt);
3269 if (Elt.getOpcode() != ISD::Constant &&
3270 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003271 IsAllConstants = false;
Evan Chengdb2d5242007-12-12 06:45:40 +00003272 if (isZeroNode(Elt))
3273 NumZero++;
3274 else {
3275 NonZeros |= (1 << i);
3276 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003277 }
3278 }
3279
Dan Gohman7f321562007-06-25 16:23:39 +00003280 if (NumNonZero == 0) {
Chris Lattner8a594482007-11-25 00:24:49 +00003281 // All undef vector. Return an UNDEF. All zero vectors were handled above.
3282 return DAG.getNode(ISD::UNDEF, VT);
Dan Gohman7f321562007-06-25 16:23:39 +00003283 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003284
Chris Lattner67f453a2008-03-09 05:42:06 +00003285 // Special case for single non-zero, non-undef, element.
Evan Chengdb2d5242007-12-12 06:45:40 +00003286 if (NumNonZero == 1 && NumElems <= 4) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00003287 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00003288 SDValue Item = Op.getOperand(Idx);
Chris Lattner19f79692008-03-08 22:59:52 +00003289
Chris Lattner62098042008-03-09 01:05:04 +00003290 // If this is an insertion of an i64 value on x86-32, and if the top bits of
3291 // the value are obviously zero, truncate the value to i32 and do the
3292 // insertion that way. Only do this if the value is non-constant or if the
3293 // value is a constant being inserted into element 0. It is cheaper to do
3294 // a constant pool load than it is to do a movd + shuffle.
3295 if (EVT == MVT::i64 && !Subtarget->is64Bit() &&
3296 (!IsAllConstants || Idx == 0)) {
3297 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
3298 // Handle MMX and SSE both.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003299 MVT VecVT = VT == MVT::v2i64 ? MVT::v4i32 : MVT::v2i32;
3300 unsigned VecElts = VT == MVT::v2i64 ? 4 : 2;
Chris Lattner62098042008-03-09 01:05:04 +00003301
3302 // Truncate the value (which may itself be a constant) to i32, and
3303 // convert it to a vector with movd (S2V+shuffle to zero extend).
3304 Item = DAG.getNode(ISD::TRUNCATE, MVT::i32, Item);
3305 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00003306 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
3307 Subtarget->hasSSE2(), DAG);
Chris Lattner62098042008-03-09 01:05:04 +00003308
3309 // Now we have our 32-bit value zero extended in the low element of
3310 // a vector. If Idx != 0, swizzle it into place.
3311 if (Idx != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00003312 SDValue Ops[] = {
Chris Lattner62098042008-03-09 01:05:04 +00003313 Item, DAG.getNode(ISD::UNDEF, Item.getValueType()),
3314 getSwapEltZeroMask(VecElts, Idx, DAG)
3315 };
3316 Item = DAG.getNode(ISD::VECTOR_SHUFFLE, VecVT, Ops, 3);
3317 }
3318 return DAG.getNode(ISD::BIT_CONVERT, Op.getValueType(), Item);
3319 }
3320 }
3321
Chris Lattner19f79692008-03-08 22:59:52 +00003322 // If we have a constant or non-constant insertion into the low element of
3323 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
3324 // the rest of the elements. This will be matched as movd/movq/movss/movsd
3325 // depending on what the source datatype is. Because we can only get here
3326 // when NumElems <= 4, this only needs to handle i32/f32/i64/f64.
3327 if (Idx == 0 &&
3328 // Don't do this for i64 values on x86-32.
3329 (EVT != MVT::i64 || Subtarget->is64Bit())) {
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003330 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Item);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003331 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Evan Chengf0df0312008-05-15 08:39:06 +00003332 return getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3333 Subtarget->hasSSE2(), DAG);
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003334 }
Evan Chengf26ffe92008-05-29 08:22:04 +00003335
3336 // Is it a vector logical left shift?
3337 if (NumElems == 2 && Idx == 1 &&
3338 isZeroNode(Op.getOperand(0)) && !isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003339 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00003340 return getVShift(true, VT,
3341 DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Op.getOperand(1)),
3342 NumBits/2, DAG, *this);
3343 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003344
3345 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00003346 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00003347
Chris Lattner19f79692008-03-08 22:59:52 +00003348 // Otherwise, if this is a vector with i32 or f32 elements, and the element
3349 // is a non-constant being inserted into an element other than the low one,
3350 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
3351 // movd/movss) to move this into the low element, then shuffle it into
3352 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00003353 if (EVTBits == 32) {
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003354 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Item);
3355
Evan Cheng0db9fe62006-04-25 20:13:52 +00003356 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00003357 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3358 Subtarget->hasSSE2(), DAG);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003359 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3360 MVT MaskEVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00003361 SmallVector<SDValue, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003362 for (unsigned i = 0; i < NumElems; i++)
3363 MaskVec.push_back(DAG.getConstant((i == Idx) ? 0 : 1, MaskEVT));
Dan Gohman475871a2008-07-27 21:46:04 +00003364 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003365 &MaskVec[0], MaskVec.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00003366 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, Item,
3367 DAG.getNode(ISD::UNDEF, VT), Mask);
3368 }
3369 }
3370
Chris Lattner67f453a2008-03-09 05:42:06 +00003371 // Splat is obviously ok. Let legalizer expand it to a shuffle.
3372 if (Values.size() == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00003373 return SDValue();
Chris Lattner67f453a2008-03-09 05:42:06 +00003374
Dan Gohmana3941172007-07-24 22:55:08 +00003375 // A vector full of immediates; various special cases are already
3376 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00003377 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00003378 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00003379
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003380 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00003381 if (EVTBits == 64) {
3382 if (NumNonZero == 1) {
3383 // One half is zero or undef.
3384 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00003385 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00003386 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00003387 return getShuffleVectorZeroOrUndef(V2, Idx, true,
3388 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00003389 }
Dan Gohman475871a2008-07-27 21:46:04 +00003390 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00003391 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003392
3393 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00003394 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00003395 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00003396 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00003397 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003398 }
3399
Bill Wendling826f36f2007-03-28 00:57:11 +00003400 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00003401 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00003402 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00003403 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003404 }
3405
3406 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00003407 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00003408 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003409 if (NumElems == 4 && NumZero > 0) {
3410 for (unsigned i = 0; i < 4; ++i) {
3411 bool isZero = !(NonZeros & (1 << i));
3412 if (isZero)
Evan Chengf0df0312008-05-15 08:39:06 +00003413 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003414 else
3415 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Op.getOperand(i));
3416 }
3417
3418 for (unsigned i = 0; i < 2; ++i) {
3419 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
3420 default: break;
3421 case 0:
3422 V[i] = V[i*2]; // Must be a zero vector.
3423 break;
3424 case 1:
3425 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[i*2+1], V[i*2],
3426 getMOVLMask(NumElems, DAG));
3427 break;
3428 case 2:
3429 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[i*2], V[i*2+1],
3430 getMOVLMask(NumElems, DAG));
3431 break;
3432 case 3:
3433 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[i*2], V[i*2+1],
3434 getUnpacklMask(NumElems, DAG));
3435 break;
3436 }
3437 }
3438
Duncan Sands83ec4b62008-06-06 12:08:01 +00003439 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
3440 MVT EVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00003441 SmallVector<SDValue, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003442 bool Reverse = (NonZeros & 0x3) == 2;
3443 for (unsigned i = 0; i < 2; ++i)
3444 if (Reverse)
3445 MaskVec.push_back(DAG.getConstant(1-i, EVT));
3446 else
3447 MaskVec.push_back(DAG.getConstant(i, EVT));
3448 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
3449 for (unsigned i = 0; i < 2; ++i)
3450 if (Reverse)
3451 MaskVec.push_back(DAG.getConstant(1-i+NumElems, EVT));
3452 else
3453 MaskVec.push_back(DAG.getConstant(i+NumElems, EVT));
Dan Gohman475871a2008-07-27 21:46:04 +00003454 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnere2199452006-08-11 17:38:39 +00003455 &MaskVec[0], MaskVec.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00003456 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[0], V[1], ShufMask);
3457 }
3458
3459 if (Values.size() > 2) {
3460 // Expand into a number of unpckl*.
3461 // e.g. for v4f32
3462 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
3463 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
3464 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Dan Gohman475871a2008-07-27 21:46:04 +00003465 SDValue UnpckMask = getUnpacklMask(NumElems, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003466 for (unsigned i = 0; i < NumElems; ++i)
3467 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Op.getOperand(i));
3468 NumElems >>= 1;
3469 while (NumElems != 0) {
3470 for (unsigned i = 0; i < NumElems; ++i)
3471 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[i], V[i + NumElems],
3472 UnpckMask);
3473 NumElems >>= 1;
3474 }
3475 return V[0];
3476 }
3477
Dan Gohman475871a2008-07-27 21:46:04 +00003478 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00003479}
3480
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003481static
Dan Gohman475871a2008-07-27 21:46:04 +00003482SDValue LowerVECTOR_SHUFFLEv8i16(SDValue V1, SDValue V2,
Bill Wendlinge85dc492008-08-21 22:35:37 +00003483 SDValue PermMask, SelectionDAG &DAG,
3484 TargetLowering &TLI) {
Dan Gohman475871a2008-07-27 21:46:04 +00003485 SDValue NewV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003486 MVT MaskVT = MVT::getIntVectorWithNumElements(8);
3487 MVT MaskEVT = MaskVT.getVectorElementType();
3488 MVT PtrVT = TLI.getPointerTy();
Gabor Greifba36cb52008-08-28 21:40:38 +00003489 SmallVector<SDValue, 8> MaskElts(PermMask.getNode()->op_begin(),
3490 PermMask.getNode()->op_end());
Evan Cheng14b32e12007-12-11 01:46:18 +00003491
3492 // First record which half of which vector the low elements come from.
3493 SmallVector<unsigned, 4> LowQuad(4);
3494 for (unsigned i = 0; i < 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003495 SDValue Elt = MaskElts[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003496 if (Elt.getOpcode() == ISD::UNDEF)
3497 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003498 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003499 int QuadIdx = EltIdx / 4;
3500 ++LowQuad[QuadIdx];
3501 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00003502
Evan Cheng14b32e12007-12-11 01:46:18 +00003503 int BestLowQuad = -1;
3504 unsigned MaxQuad = 1;
3505 for (unsigned i = 0; i < 4; ++i) {
3506 if (LowQuad[i] > MaxQuad) {
3507 BestLowQuad = i;
3508 MaxQuad = LowQuad[i];
3509 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003510 }
3511
Evan Cheng14b32e12007-12-11 01:46:18 +00003512 // Record which half of which vector the high elements come from.
3513 SmallVector<unsigned, 4> HighQuad(4);
3514 for (unsigned i = 4; i < 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003515 SDValue Elt = MaskElts[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003516 if (Elt.getOpcode() == ISD::UNDEF)
3517 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003518 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003519 int QuadIdx = EltIdx / 4;
3520 ++HighQuad[QuadIdx];
3521 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00003522
Evan Cheng14b32e12007-12-11 01:46:18 +00003523 int BestHighQuad = -1;
3524 MaxQuad = 1;
3525 for (unsigned i = 0; i < 4; ++i) {
3526 if (HighQuad[i] > MaxQuad) {
3527 BestHighQuad = i;
3528 MaxQuad = HighQuad[i];
3529 }
3530 }
3531
3532 // If it's possible to sort parts of either half with PSHUF{H|L}W, then do it.
3533 if (BestLowQuad != -1 || BestHighQuad != -1) {
3534 // First sort the 4 chunks in order using shufpd.
Dan Gohman475871a2008-07-27 21:46:04 +00003535 SmallVector<SDValue, 8> MaskVec;
Bill Wendlinge85dc492008-08-21 22:35:37 +00003536
Evan Cheng14b32e12007-12-11 01:46:18 +00003537 if (BestLowQuad != -1)
3538 MaskVec.push_back(DAG.getConstant(BestLowQuad, MVT::i32));
3539 else
3540 MaskVec.push_back(DAG.getConstant(0, MVT::i32));
Bill Wendlinge85dc492008-08-21 22:35:37 +00003541
Evan Cheng14b32e12007-12-11 01:46:18 +00003542 if (BestHighQuad != -1)
3543 MaskVec.push_back(DAG.getConstant(BestHighQuad, MVT::i32));
3544 else
3545 MaskVec.push_back(DAG.getConstant(1, MVT::i32));
Bill Wendlinge85dc492008-08-21 22:35:37 +00003546
Dan Gohman475871a2008-07-27 21:46:04 +00003547 SDValue Mask= DAG.getNode(ISD::BUILD_VECTOR, MVT::v2i32, &MaskVec[0],2);
Evan Cheng14b32e12007-12-11 01:46:18 +00003548 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v2i64,
3549 DAG.getNode(ISD::BIT_CONVERT, MVT::v2i64, V1),
3550 DAG.getNode(ISD::BIT_CONVERT, MVT::v2i64, V2), Mask);
3551 NewV = DAG.getNode(ISD::BIT_CONVERT, MVT::v8i16, NewV);
3552
3553 // Now sort high and low parts separately.
3554 BitVector InOrder(8);
3555 if (BestLowQuad != -1) {
3556 // Sort lower half in order using PSHUFLW.
3557 MaskVec.clear();
3558 bool AnyOutOrder = false;
Bill Wendlinge85dc492008-08-21 22:35:37 +00003559
Evan Cheng14b32e12007-12-11 01:46:18 +00003560 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003561 SDValue Elt = MaskElts[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003562 if (Elt.getOpcode() == ISD::UNDEF) {
3563 MaskVec.push_back(Elt);
3564 InOrder.set(i);
3565 } else {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003566 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003567 if (EltIdx != i)
3568 AnyOutOrder = true;
Bill Wendlinge85dc492008-08-21 22:35:37 +00003569
Evan Cheng14b32e12007-12-11 01:46:18 +00003570 MaskVec.push_back(DAG.getConstant(EltIdx % 4, MaskEVT));
Bill Wendlinge85dc492008-08-21 22:35:37 +00003571
Evan Cheng14b32e12007-12-11 01:46:18 +00003572 // If this element is in the right place after this shuffle, then
3573 // remember it.
3574 if ((int)(EltIdx / 4) == BestLowQuad)
3575 InOrder.set(i);
3576 }
3577 }
3578 if (AnyOutOrder) {
3579 for (unsigned i = 4; i != 8; ++i)
3580 MaskVec.push_back(DAG.getConstant(i, MaskEVT));
Dan Gohman475871a2008-07-27 21:46:04 +00003581 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], 8);
Evan Cheng14b32e12007-12-11 01:46:18 +00003582 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v8i16, NewV, NewV, Mask);
3583 }
3584 }
3585
3586 if (BestHighQuad != -1) {
3587 // Sort high half in order using PSHUFHW if possible.
3588 MaskVec.clear();
Bill Wendlinge85dc492008-08-21 22:35:37 +00003589
Evan Cheng14b32e12007-12-11 01:46:18 +00003590 for (unsigned i = 0; i != 4; ++i)
3591 MaskVec.push_back(DAG.getConstant(i, MaskEVT));
Bill Wendlinge85dc492008-08-21 22:35:37 +00003592
Evan Cheng14b32e12007-12-11 01:46:18 +00003593 bool AnyOutOrder = false;
3594 for (unsigned i = 4; i != 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003595 SDValue Elt = MaskElts[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003596 if (Elt.getOpcode() == ISD::UNDEF) {
3597 MaskVec.push_back(Elt);
3598 InOrder.set(i);
3599 } else {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003600 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003601 if (EltIdx != i)
3602 AnyOutOrder = true;
Bill Wendlinge85dc492008-08-21 22:35:37 +00003603
Evan Cheng14b32e12007-12-11 01:46:18 +00003604 MaskVec.push_back(DAG.getConstant((EltIdx % 4) + 4, MaskEVT));
Bill Wendlinge85dc492008-08-21 22:35:37 +00003605
Evan Cheng14b32e12007-12-11 01:46:18 +00003606 // If this element is in the right place after this shuffle, then
3607 // remember it.
3608 if ((int)(EltIdx / 4) == BestHighQuad)
3609 InOrder.set(i);
3610 }
3611 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00003612
Evan Cheng14b32e12007-12-11 01:46:18 +00003613 if (AnyOutOrder) {
Dan Gohman475871a2008-07-27 21:46:04 +00003614 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], 8);
Evan Cheng14b32e12007-12-11 01:46:18 +00003615 NewV = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v8i16, NewV, NewV, Mask);
3616 }
3617 }
3618
3619 // The other elements are put in the right place using pextrw and pinsrw.
3620 for (unsigned i = 0; i != 8; ++i) {
3621 if (InOrder[i])
3622 continue;
Dan Gohman475871a2008-07-27 21:46:04 +00003623 SDValue Elt = MaskElts[i];
Bill Wendlingae0218c2008-08-21 22:36:36 +00003624 if (Elt.getOpcode() == ISD::UNDEF)
3625 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003626 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00003627 SDValue ExtOp = (EltIdx < 8)
Evan Cheng14b32e12007-12-11 01:46:18 +00003628 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i16, V1,
3629 DAG.getConstant(EltIdx, PtrVT))
3630 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i16, V2,
3631 DAG.getConstant(EltIdx - 8, PtrVT));
3632 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, NewV, ExtOp,
3633 DAG.getConstant(i, PtrVT));
3634 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00003635
Evan Cheng14b32e12007-12-11 01:46:18 +00003636 return NewV;
3637 }
3638
Bill Wendlinge85dc492008-08-21 22:35:37 +00003639 // PSHUF{H|L}W are not used. Lower into extracts and inserts but try to use as
3640 // few as possible. First, let's find out how many elements are already in the
3641 // right order.
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003642 unsigned V1InOrder = 0;
3643 unsigned V1FromV1 = 0;
3644 unsigned V2InOrder = 0;
3645 unsigned V2FromV2 = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00003646 SmallVector<SDValue, 8> V1Elts;
3647 SmallVector<SDValue, 8> V2Elts;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003648 for (unsigned i = 0; i < 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003649 SDValue Elt = MaskElts[i];
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003650 if (Elt.getOpcode() == ISD::UNDEF) {
Evan Cheng14b32e12007-12-11 01:46:18 +00003651 V1Elts.push_back(Elt);
3652 V2Elts.push_back(Elt);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003653 ++V1InOrder;
3654 ++V2InOrder;
Evan Cheng14b32e12007-12-11 01:46:18 +00003655 continue;
3656 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003657 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003658 if (EltIdx == i) {
3659 V1Elts.push_back(Elt);
3660 V2Elts.push_back(DAG.getConstant(i+8, MaskEVT));
3661 ++V1InOrder;
3662 } else if (EltIdx == i+8) {
3663 V1Elts.push_back(Elt);
3664 V2Elts.push_back(DAG.getConstant(i, MaskEVT));
3665 ++V2InOrder;
3666 } else if (EltIdx < 8) {
3667 V1Elts.push_back(Elt);
Mon P Wang62c75ea2008-12-23 04:03:27 +00003668 V2Elts.push_back(DAG.getConstant(i+8, MaskEVT));
Evan Cheng14b32e12007-12-11 01:46:18 +00003669 ++V1FromV1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003670 } else {
Mon P Wang62c75ea2008-12-23 04:03:27 +00003671 V1Elts.push_back(Elt);
Evan Cheng14b32e12007-12-11 01:46:18 +00003672 V2Elts.push_back(DAG.getConstant(EltIdx-8, MaskEVT));
3673 ++V2FromV2;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003674 }
3675 }
3676
3677 if (V2InOrder > V1InOrder) {
3678 PermMask = CommuteVectorShuffleMask(PermMask, DAG);
3679 std::swap(V1, V2);
3680 std::swap(V1Elts, V2Elts);
3681 std::swap(V1FromV1, V2FromV2);
3682 }
3683
Evan Cheng14b32e12007-12-11 01:46:18 +00003684 if ((V1FromV1 + V1InOrder) != 8) {
3685 // Some elements are from V2.
3686 if (V1FromV1) {
3687 // If there are elements that are from V1 but out of place,
3688 // then first sort them in place
Dan Gohman475871a2008-07-27 21:46:04 +00003689 SmallVector<SDValue, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00003690 for (unsigned i = 0; i < 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003691 SDValue Elt = V1Elts[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003692 if (Elt.getOpcode() == ISD::UNDEF) {
3693 MaskVec.push_back(DAG.getNode(ISD::UNDEF, MaskEVT));
3694 continue;
3695 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003696 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003697 if (EltIdx >= 8)
3698 MaskVec.push_back(DAG.getNode(ISD::UNDEF, MaskEVT));
3699 else
3700 MaskVec.push_back(DAG.getConstant(EltIdx, MaskEVT));
3701 }
Dan Gohman475871a2008-07-27 21:46:04 +00003702 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], 8);
Evan Cheng14b32e12007-12-11 01:46:18 +00003703 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v8i16, V1, V1, Mask);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003704 }
Evan Cheng14b32e12007-12-11 01:46:18 +00003705
3706 NewV = V1;
3707 for (unsigned i = 0; i < 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003708 SDValue Elt = V1Elts[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003709 if (Elt.getOpcode() == ISD::UNDEF)
3710 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003711 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003712 if (EltIdx < 8)
3713 continue;
Dan Gohman475871a2008-07-27 21:46:04 +00003714 SDValue ExtOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i16, V2,
Evan Cheng14b32e12007-12-11 01:46:18 +00003715 DAG.getConstant(EltIdx - 8, PtrVT));
3716 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, NewV, ExtOp,
3717 DAG.getConstant(i, PtrVT));
3718 }
3719 return NewV;
3720 } else {
3721 // All elements are from V1.
3722 NewV = V1;
3723 for (unsigned i = 0; i < 8; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003724 SDValue Elt = V1Elts[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00003725 if (Elt.getOpcode() == ISD::UNDEF)
3726 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003727 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00003728 SDValue ExtOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i16, V1,
Evan Cheng14b32e12007-12-11 01:46:18 +00003729 DAG.getConstant(EltIdx, PtrVT));
3730 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, NewV, ExtOp,
3731 DAG.getConstant(i, PtrVT));
3732 }
3733 return NewV;
3734 }
3735}
3736
Evan Cheng7a831ce2007-12-15 03:00:47 +00003737/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
3738/// ones, or rewriting v4i32 / v2f32 as 2 wide ones if possible. This can be
3739/// done when every pair / quad of shuffle mask elements point to elements in
3740/// the right sequence. e.g.
Evan Cheng14b32e12007-12-11 01:46:18 +00003741/// vector_shuffle <>, <>, < 3, 4, | 10, 11, | 0, 1, | 14, 15>
3742static
Dan Gohman475871a2008-07-27 21:46:04 +00003743SDValue RewriteAsNarrowerShuffle(SDValue V1, SDValue V2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003744 MVT VT,
Dan Gohman475871a2008-07-27 21:46:04 +00003745 SDValue PermMask, SelectionDAG &DAG,
Evan Cheng14b32e12007-12-11 01:46:18 +00003746 TargetLowering &TLI) {
3747 unsigned NumElems = PermMask.getNumOperands();
Evan Cheng7a831ce2007-12-15 03:00:47 +00003748 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003749 MVT MaskVT = MVT::getIntVectorWithNumElements(NewWidth);
Duncan Sandsd038e042008-07-21 10:20:31 +00003750 MVT MaskEltVT = MaskVT.getVectorElementType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003751 MVT NewVT = MaskVT;
3752 switch (VT.getSimpleVT()) {
3753 default: assert(false && "Unexpected!");
Evan Cheng7a831ce2007-12-15 03:00:47 +00003754 case MVT::v4f32: NewVT = MVT::v2f64; break;
3755 case MVT::v4i32: NewVT = MVT::v2i64; break;
3756 case MVT::v8i16: NewVT = MVT::v4i32; break;
3757 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00003758 }
3759
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00003760 if (NewWidth == 2) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003761 if (VT.isInteger())
Evan Cheng7a831ce2007-12-15 03:00:47 +00003762 NewVT = MVT::v2i64;
3763 else
3764 NewVT = MVT::v2f64;
Anton Korobeynikov7c1c2612008-02-20 11:22:39 +00003765 }
Evan Cheng7a831ce2007-12-15 03:00:47 +00003766 unsigned Scale = NumElems / NewWidth;
Dan Gohman475871a2008-07-27 21:46:04 +00003767 SmallVector<SDValue, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00003768 for (unsigned i = 0; i < NumElems; i += Scale) {
3769 unsigned StartIdx = ~0U;
3770 for (unsigned j = 0; j < Scale; ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +00003771 SDValue Elt = PermMask.getOperand(i+j);
Evan Cheng14b32e12007-12-11 01:46:18 +00003772 if (Elt.getOpcode() == ISD::UNDEF)
3773 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003774 unsigned EltIdx = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003775 if (StartIdx == ~0U)
3776 StartIdx = EltIdx - (EltIdx % Scale);
3777 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00003778 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00003779 }
3780 if (StartIdx == ~0U)
Duncan Sandsd038e042008-07-21 10:20:31 +00003781 MaskVec.push_back(DAG.getNode(ISD::UNDEF, MaskEltVT));
Evan Cheng14b32e12007-12-11 01:46:18 +00003782 else
Duncan Sandsd038e042008-07-21 10:20:31 +00003783 MaskVec.push_back(DAG.getConstant(StartIdx / Scale, MaskEltVT));
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003784 }
3785
Evan Cheng7a831ce2007-12-15 03:00:47 +00003786 V1 = DAG.getNode(ISD::BIT_CONVERT, NewVT, V1);
3787 V2 = DAG.getNode(ISD::BIT_CONVERT, NewVT, V2);
3788 return DAG.getNode(ISD::VECTOR_SHUFFLE, NewVT, V1, V2,
3789 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3790 &MaskVec[0], MaskVec.size()));
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003791}
3792
Evan Chengd880b972008-05-09 21:53:03 +00003793/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00003794///
Dan Gohman475871a2008-07-27 21:46:04 +00003795static SDValue getVZextMovL(MVT VT, MVT OpVT,
3796 SDValue SrcOp, SelectionDAG &DAG,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003797 const X86Subtarget *Subtarget) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00003798 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
3799 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00003800 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00003801 LD = dyn_cast<LoadSDNode>(SrcOp);
3802 if (!LD) {
3803 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
3804 // instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003805 MVT EVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Evan Cheng7e2ff772008-05-08 00:57:18 +00003806 if ((EVT != MVT::i64 || Subtarget->is64Bit()) &&
3807 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
3808 SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT &&
3809 SrcOp.getOperand(0).getOperand(0).getValueType() == EVT) {
3810 // PR2108
3811 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
3812 return DAG.getNode(ISD::BIT_CONVERT, VT,
Evan Chengd880b972008-05-09 21:53:03 +00003813 DAG.getNode(X86ISD::VZEXT_MOVL, OpVT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00003814 DAG.getNode(ISD::SCALAR_TO_VECTOR, OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00003815 SrcOp.getOperand(0)
3816 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00003817 }
3818 }
3819 }
3820
3821 return DAG.getNode(ISD::BIT_CONVERT, VT,
Evan Chengd880b972008-05-09 21:53:03 +00003822 DAG.getNode(X86ISD::VZEXT_MOVL, OpVT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00003823 DAG.getNode(ISD::BIT_CONVERT, OpVT, SrcOp)));
3824}
3825
Evan Chengace3c172008-07-22 21:13:36 +00003826/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
3827/// shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00003828static SDValue
3829LowerVECTOR_SHUFFLE_4wide(SDValue V1, SDValue V2,
3830 SDValue PermMask, MVT VT, SelectionDAG &DAG) {
Evan Chengace3c172008-07-22 21:13:36 +00003831 MVT MaskVT = PermMask.getValueType();
3832 MVT MaskEVT = MaskVT.getVectorElementType();
3833 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00003834 Locs.resize(4);
Dan Gohman475871a2008-07-27 21:46:04 +00003835 SmallVector<SDValue, 8> Mask1(4, DAG.getNode(ISD::UNDEF, MaskEVT));
Evan Chengace3c172008-07-22 21:13:36 +00003836 unsigned NumHi = 0;
3837 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00003838 for (unsigned i = 0; i != 4; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00003839 SDValue Elt = PermMask.getOperand(i);
Evan Chengace3c172008-07-22 21:13:36 +00003840 if (Elt.getOpcode() == ISD::UNDEF) {
3841 Locs[i] = std::make_pair(-1, -1);
3842 } else {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003843 unsigned Val = cast<ConstantSDNode>(Elt)->getZExtValue();
Dan Gohmand0859942008-08-04 23:09:15 +00003844 assert(Val < 8 && "Invalid VECTOR_SHUFFLE index!");
Evan Chengace3c172008-07-22 21:13:36 +00003845 if (Val < 4) {
3846 Locs[i] = std::make_pair(0, NumLo);
3847 Mask1[NumLo] = Elt;
3848 NumLo++;
3849 } else {
3850 Locs[i] = std::make_pair(1, NumHi);
3851 if (2+NumHi < 4)
3852 Mask1[2+NumHi] = Elt;
3853 NumHi++;
3854 }
3855 }
3856 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003857
Evan Chengace3c172008-07-22 21:13:36 +00003858 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003859 // If no more than two elements come from either vector. This can be
3860 // implemented with two shuffles. First shuffle gather the elements.
3861 // The second shuffle, which takes the first shuffle as both of its
3862 // vector operands, put the elements into the right order.
Evan Chengace3c172008-07-22 21:13:36 +00003863 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2,
3864 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3865 &Mask1[0], Mask1.size()));
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003866
Dan Gohman475871a2008-07-27 21:46:04 +00003867 SmallVector<SDValue, 8> Mask2(4, DAG.getNode(ISD::UNDEF, MaskEVT));
Evan Chengace3c172008-07-22 21:13:36 +00003868 for (unsigned i = 0; i != 4; ++i) {
3869 if (Locs[i].first == -1)
3870 continue;
3871 else {
3872 unsigned Idx = (i < 2) ? 0 : 4;
3873 Idx += Locs[i].first * 2 + Locs[i].second;
3874 Mask2[i] = DAG.getConstant(Idx, MaskEVT);
3875 }
3876 }
3877
3878 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V1,
3879 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3880 &Mask2[0], Mask2.size()));
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003881 } else if (NumLo == 3 || NumHi == 3) {
3882 // Otherwise, we must have three elements from one vector, call it X, and
3883 // one element from the other, call it Y. First, use a shufps to build an
3884 // intermediate vector with the one element from Y and the element from X
3885 // that will be in the same half in the final destination (the indexes don't
3886 // matter). Then, use a shufps to build the final vector, taking the half
3887 // containing the element from Y from the intermediate, and the other half
3888 // from X.
3889 if (NumHi == 3) {
3890 // Normalize it so the 3 elements come from V1.
3891 PermMask = CommuteVectorShuffleMask(PermMask, DAG);
3892 std::swap(V1, V2);
3893 }
3894
3895 // Find the element from V2.
3896 unsigned HiIndex;
3897 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Dan Gohman475871a2008-07-27 21:46:04 +00003898 SDValue Elt = PermMask.getOperand(HiIndex);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003899 if (Elt.getOpcode() == ISD::UNDEF)
3900 continue;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003901 unsigned Val = cast<ConstantSDNode>(Elt)->getZExtValue();
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003902 if (Val >= 4)
3903 break;
3904 }
3905
3906 Mask1[0] = PermMask.getOperand(HiIndex);
3907 Mask1[1] = DAG.getNode(ISD::UNDEF, MaskEVT);
3908 Mask1[2] = PermMask.getOperand(HiIndex^1);
3909 Mask1[3] = DAG.getNode(ISD::UNDEF, MaskEVT);
3910 V2 = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2,
3911 DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &Mask1[0], 4));
3912
3913 if (HiIndex >= 2) {
3914 Mask1[0] = PermMask.getOperand(0);
3915 Mask1[1] = PermMask.getOperand(1);
3916 Mask1[2] = DAG.getConstant(HiIndex & 1 ? 6 : 4, MaskEVT);
3917 Mask1[3] = DAG.getConstant(HiIndex & 1 ? 4 : 6, MaskEVT);
3918 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2,
3919 DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &Mask1[0], 4));
3920 } else {
3921 Mask1[0] = DAG.getConstant(HiIndex & 1 ? 2 : 0, MaskEVT);
3922 Mask1[1] = DAG.getConstant(HiIndex & 1 ? 0 : 2, MaskEVT);
3923 Mask1[2] = PermMask.getOperand(2);
3924 Mask1[3] = PermMask.getOperand(3);
3925 if (Mask1[2].getOpcode() != ISD::UNDEF)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003926 Mask1[2] =
3927 DAG.getConstant(cast<ConstantSDNode>(Mask1[2])->getZExtValue()+4,
3928 MaskEVT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003929 if (Mask1[3].getOpcode() != ISD::UNDEF)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003930 Mask1[3] =
3931 DAG.getConstant(cast<ConstantSDNode>(Mask1[3])->getZExtValue()+4,
3932 MaskEVT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00003933 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V2, V1,
3934 DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &Mask1[0], 4));
3935 }
Evan Chengace3c172008-07-22 21:13:36 +00003936 }
3937
3938 // Break it into (shuffle shuffle_hi, shuffle_lo).
3939 Locs.clear();
Dan Gohman475871a2008-07-27 21:46:04 +00003940 SmallVector<SDValue,8> LoMask(4, DAG.getNode(ISD::UNDEF, MaskEVT));
3941 SmallVector<SDValue,8> HiMask(4, DAG.getNode(ISD::UNDEF, MaskEVT));
3942 SmallVector<SDValue,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00003943 unsigned MaskIdx = 0;
3944 unsigned LoIdx = 0;
3945 unsigned HiIdx = 2;
3946 for (unsigned i = 0; i != 4; ++i) {
3947 if (i == 2) {
3948 MaskPtr = &HiMask;
3949 MaskIdx = 1;
3950 LoIdx = 0;
3951 HiIdx = 2;
3952 }
Dan Gohman475871a2008-07-27 21:46:04 +00003953 SDValue Elt = PermMask.getOperand(i);
Evan Chengace3c172008-07-22 21:13:36 +00003954 if (Elt.getOpcode() == ISD::UNDEF) {
3955 Locs[i] = std::make_pair(-1, -1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00003956 } else if (cast<ConstantSDNode>(Elt)->getZExtValue() < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00003957 Locs[i] = std::make_pair(MaskIdx, LoIdx);
3958 (*MaskPtr)[LoIdx] = Elt;
3959 LoIdx++;
3960 } else {
3961 Locs[i] = std::make_pair(MaskIdx, HiIdx);
3962 (*MaskPtr)[HiIdx] = Elt;
3963 HiIdx++;
3964 }
3965 }
3966
Dan Gohman475871a2008-07-27 21:46:04 +00003967 SDValue LoShuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2,
Evan Chengace3c172008-07-22 21:13:36 +00003968 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3969 &LoMask[0], LoMask.size()));
Dan Gohman475871a2008-07-27 21:46:04 +00003970 SDValue HiShuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2,
Evan Chengace3c172008-07-22 21:13:36 +00003971 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3972 &HiMask[0], HiMask.size()));
Dan Gohman475871a2008-07-27 21:46:04 +00003973 SmallVector<SDValue, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00003974 for (unsigned i = 0; i != 4; ++i) {
3975 if (Locs[i].first == -1) {
3976 MaskOps.push_back(DAG.getNode(ISD::UNDEF, MaskEVT));
3977 } else {
3978 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
3979 MaskOps.push_back(DAG.getConstant(Idx, MaskEVT));
3980 }
3981 }
3982 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, LoShuffle, HiShuffle,
3983 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
3984 &MaskOps[0], MaskOps.size()));
3985}
3986
Dan Gohman475871a2008-07-27 21:46:04 +00003987SDValue
3988X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
3989 SDValue V1 = Op.getOperand(0);
3990 SDValue V2 = Op.getOperand(1);
3991 SDValue PermMask = Op.getOperand(2);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003992 MVT VT = Op.getValueType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00003993 unsigned NumElems = PermMask.getNumOperands();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003994 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003995 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
3996 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00003997 bool V1IsSplat = false;
3998 bool V2IsSplat = false;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003999
Gabor Greifba36cb52008-08-28 21:40:38 +00004000 if (isUndefShuffle(Op.getNode()))
Evan Cheng8cf723d2006-09-08 01:50:06 +00004001 return DAG.getNode(ISD::UNDEF, VT);
4002
Gabor Greifba36cb52008-08-28 21:40:38 +00004003 if (isZeroShuffle(Op.getNode()))
Evan Chengf0df0312008-05-15 08:39:06 +00004004 return getZeroVector(VT, Subtarget->hasSSE2(), DAG);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004005
Gabor Greifba36cb52008-08-28 21:40:38 +00004006 if (isIdentityMask(PermMask.getNode()))
Evan Cheng49892af2007-06-19 00:02:56 +00004007 return V1;
Gabor Greifba36cb52008-08-28 21:40:38 +00004008 else if (isIdentityMask(PermMask.getNode(), true))
Evan Cheng49892af2007-06-19 00:02:56 +00004009 return V2;
4010
Evan Cheng4dcc8a32008-09-25 23:35:16 +00004011 // Canonicalize movddup shuffles.
4012 if (V2IsUndef && Subtarget->hasSSE2() &&
Evan Cheng882cdfd2008-10-06 21:13:08 +00004013 VT.getSizeInBits() == 128 &&
Evan Cheng4dcc8a32008-09-25 23:35:16 +00004014 X86::isMOVDDUPMask(PermMask.getNode()))
4015 return CanonicalizeMovddup(Op, V1, PermMask, DAG, Subtarget->hasSSE3());
4016
Gabor Greifba36cb52008-08-28 21:40:38 +00004017 if (isSplatMask(PermMask.getNode())) {
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004018 if (isMMX || NumElems < 4) return Op;
4019 // Promote it to a v4{if}32 splat.
4020 return PromoteSplat(Op, DAG, Subtarget->hasSSE2());
Evan Cheng0db9fe62006-04-25 20:13:52 +00004021 }
4022
Evan Cheng7a831ce2007-12-15 03:00:47 +00004023 // If the shuffle can be profitably rewritten as a narrower shuffle, then
4024 // do it!
4025 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004026 SDValue NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask, DAG, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004027 if (NewOp.getNode())
Evan Cheng7a831ce2007-12-15 03:00:47 +00004028 return DAG.getNode(ISD::BIT_CONVERT, VT, LowerVECTOR_SHUFFLE(NewOp, DAG));
4029 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
4030 // FIXME: Figure out a cleaner way to do this.
4031 // Try to make use of movq to zero out the top part.
Gabor Greifba36cb52008-08-28 21:40:38 +00004032 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004033 SDValue NewOp = RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004034 DAG, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004035 if (NewOp.getNode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00004036 SDValue NewV1 = NewOp.getOperand(0);
4037 SDValue NewV2 = NewOp.getOperand(1);
4038 SDValue NewMask = NewOp.getOperand(2);
Gabor Greifba36cb52008-08-28 21:40:38 +00004039 if (isCommutedMOVL(NewMask.getNode(), true, false)) {
Evan Cheng7a831ce2007-12-15 03:00:47 +00004040 NewOp = CommuteVectorShuffle(NewOp, NewV1, NewV2, NewMask, DAG);
Evan Chengd880b972008-05-09 21:53:03 +00004041 return getVZextMovL(VT, NewOp.getValueType(), NewV2, DAG, Subtarget);
Evan Cheng7a831ce2007-12-15 03:00:47 +00004042 }
4043 }
Gabor Greifba36cb52008-08-28 21:40:38 +00004044 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Dan Gohman475871a2008-07-27 21:46:04 +00004045 SDValue NewOp= RewriteAsNarrowerShuffle(V1, V2, VT, PermMask,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004046 DAG, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004047 if (NewOp.getNode() && X86::isMOVLMask(NewOp.getOperand(2).getNode()))
Evan Chengd880b972008-05-09 21:53:03 +00004048 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
Evan Cheng7e2ff772008-05-08 00:57:18 +00004049 DAG, Subtarget);
Evan Cheng7a831ce2007-12-15 03:00:47 +00004050 }
4051 }
4052
Evan Chengf26ffe92008-05-29 08:22:04 +00004053 // Check if this can be converted into a logical shift.
4054 bool isLeft = false;
4055 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00004056 SDValue ShVal;
Evan Chengf26ffe92008-05-29 08:22:04 +00004057 bool isShift = isVectorShift(Op, PermMask, DAG, isLeft, ShVal, ShAmt);
4058 if (isShift && ShVal.hasOneUse()) {
4059 // If the shifted value has multiple uses, it may be cheaper to use
4060 // v_set0 + movlhps or movhlps, etc.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004061 MVT EVT = VT.getVectorElementType();
4062 ShAmt *= EVT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004063 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this);
4064 }
4065
Gabor Greifba36cb52008-08-28 21:40:38 +00004066 if (X86::isMOVLMask(PermMask.getNode())) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004067 if (V1IsUndef)
4068 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00004069 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Evan Chengd880b972008-05-09 21:53:03 +00004070 return getVZextMovL(VT, VT, V2, DAG, Subtarget);
Nate Begemanfb8ead02008-07-25 19:05:58 +00004071 if (!isMMX)
4072 return Op;
Evan Cheng7e2ff772008-05-08 00:57:18 +00004073 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004074
Gabor Greifba36cb52008-08-28 21:40:38 +00004075 if (!isMMX && (X86::isMOVSHDUPMask(PermMask.getNode()) ||
4076 X86::isMOVSLDUPMask(PermMask.getNode()) ||
4077 X86::isMOVHLPSMask(PermMask.getNode()) ||
4078 X86::isMOVHPMask(PermMask.getNode()) ||
4079 X86::isMOVLPMask(PermMask.getNode())))
Evan Cheng9bbbb982006-10-25 20:48:19 +00004080 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004081
Gabor Greifba36cb52008-08-28 21:40:38 +00004082 if (ShouldXformToMOVHLPS(PermMask.getNode()) ||
4083 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), PermMask.getNode()))
Evan Cheng9eca5e82006-10-25 21:49:50 +00004084 return CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004085
Evan Chengf26ffe92008-05-29 08:22:04 +00004086 if (isShift) {
4087 // No better options. Use a vshl / vsrl.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004088 MVT EVT = VT.getVectorElementType();
4089 ShAmt *= EVT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004090 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this);
4091 }
4092
Evan Cheng9eca5e82006-10-25 21:49:50 +00004093 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00004094 // FIXME: This should also accept a bitcast of a splat? Be careful, not
4095 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00004096 V1IsSplat = isSplatVector(V1.getNode());
4097 V2IsSplat = isSplatVector(V2.getNode());
Chris Lattner8a594482007-11-25 00:24:49 +00004098
4099 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00004100 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Evan Cheng9eca5e82006-10-25 21:49:50 +00004101 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Evan Cheng9bbbb982006-10-25 20:48:19 +00004102 std::swap(V1IsSplat, V2IsSplat);
4103 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00004104 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00004105 }
4106
Evan Cheng7a831ce2007-12-15 03:00:47 +00004107 // FIXME: Figure out a cleaner way to do this.
Gabor Greifba36cb52008-08-28 21:40:38 +00004108 if (isCommutedMOVL(PermMask.getNode(), V2IsSplat, V2IsUndef)) {
Evan Cheng9bbbb982006-10-25 20:48:19 +00004109 if (V2IsUndef) return V1;
Evan Cheng9eca5e82006-10-25 21:49:50 +00004110 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Evan Cheng9bbbb982006-10-25 20:48:19 +00004111 if (V2IsSplat) {
4112 // V2 is a splat, so the mask may be malformed. That is, it may point
4113 // to any V2 element. The instruction selectior won't like this. Get
4114 // a corrected mask and commute to form a proper MOVS{S|D}.
Dan Gohman475871a2008-07-27 21:46:04 +00004115 SDValue NewMask = getMOVLMask(NumElems, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004116 if (NewMask.getNode() != PermMask.getNode())
Evan Cheng9bbbb982006-10-25 20:48:19 +00004117 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, NewMask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004118 }
Evan Cheng9bbbb982006-10-25 20:48:19 +00004119 return Op;
Evan Chengd9b8e402006-10-16 06:36:00 +00004120 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004121
Gabor Greifba36cb52008-08-28 21:40:38 +00004122 if (X86::isUNPCKL_v_undef_Mask(PermMask.getNode()) ||
4123 X86::isUNPCKH_v_undef_Mask(PermMask.getNode()) ||
4124 X86::isUNPCKLMask(PermMask.getNode()) ||
4125 X86::isUNPCKHMask(PermMask.getNode()))
Evan Chengd9b8e402006-10-16 06:36:00 +00004126 return Op;
Evan Chenge1113032006-10-04 18:33:38 +00004127
Evan Cheng9bbbb982006-10-25 20:48:19 +00004128 if (V2IsSplat) {
4129 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004130 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00004131 // new vector_shuffle with the corrected mask.
Dan Gohman475871a2008-07-27 21:46:04 +00004132 SDValue NewMask = NormalizeMask(PermMask, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004133 if (NewMask.getNode() != PermMask.getNode()) {
4134 if (X86::isUNPCKLMask(PermMask.getNode(), true)) {
Dan Gohman475871a2008-07-27 21:46:04 +00004135 SDValue NewMask = getUnpacklMask(NumElems, DAG);
Evan Cheng9bbbb982006-10-25 20:48:19 +00004136 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, NewMask);
Gabor Greifba36cb52008-08-28 21:40:38 +00004137 } else if (X86::isUNPCKHMask(PermMask.getNode(), true)) {
Dan Gohman475871a2008-07-27 21:46:04 +00004138 SDValue NewMask = getUnpackhMask(NumElems, DAG);
Evan Cheng9bbbb982006-10-25 20:48:19 +00004139 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, NewMask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004140 }
4141 }
4142 }
4143
4144 // Normalize the node to match x86 shuffle ops if needed
Gabor Greifba36cb52008-08-28 21:40:38 +00004145 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(PermMask.getNode()))
Evan Cheng9eca5e82006-10-25 21:49:50 +00004146 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
4147
4148 if (Commuted) {
4149 // Commute is back and try unpck* again.
4150 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004151 if (X86::isUNPCKL_v_undef_Mask(PermMask.getNode()) ||
4152 X86::isUNPCKH_v_undef_Mask(PermMask.getNode()) ||
4153 X86::isUNPCKLMask(PermMask.getNode()) ||
4154 X86::isUNPCKHMask(PermMask.getNode()))
Evan Cheng9eca5e82006-10-25 21:49:50 +00004155 return Op;
4156 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004157
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004158 // Try PSHUF* first, then SHUFP*.
4159 // MMX doesn't have PSHUFD but it does have PSHUFW. While it's theoretically
4160 // possible to shuffle a v2i32 using PSHUFW, that's not yet implemented.
Gabor Greifba36cb52008-08-28 21:40:38 +00004161 if (isMMX && NumElems == 4 && X86::isPSHUFDMask(PermMask.getNode())) {
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004162 if (V2.getOpcode() != ISD::UNDEF)
4163 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1,
4164 DAG.getNode(ISD::UNDEF, VT), PermMask);
4165 return Op;
4166 }
4167
4168 if (!isMMX) {
4169 if (Subtarget->hasSSE2() &&
Gabor Greifba36cb52008-08-28 21:40:38 +00004170 (X86::isPSHUFDMask(PermMask.getNode()) ||
4171 X86::isPSHUFHWMask(PermMask.getNode()) ||
4172 X86::isPSHUFLWMask(PermMask.getNode()))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004173 MVT RVT = VT;
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004174 if (VT == MVT::v4f32) {
4175 RVT = MVT::v4i32;
4176 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, RVT,
4177 DAG.getNode(ISD::BIT_CONVERT, RVT, V1),
4178 DAG.getNode(ISD::UNDEF, RVT), PermMask);
4179 } else if (V2.getOpcode() != ISD::UNDEF)
4180 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, RVT, V1,
4181 DAG.getNode(ISD::UNDEF, RVT), PermMask);
4182 if (RVT != VT)
4183 Op = DAG.getNode(ISD::BIT_CONVERT, VT, Op);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004184 return Op;
4185 }
4186
Evan Cheng0c0f83f2008-04-05 00:30:36 +00004187 // Binary or unary shufps.
Gabor Greifba36cb52008-08-28 21:40:38 +00004188 if (X86::isSHUFPMask(PermMask.getNode()) ||
4189 (V2.getOpcode() == ISD::UNDEF && X86::isPSHUFDMask(PermMask.getNode())))
Evan Cheng0db9fe62006-04-25 20:13:52 +00004190 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004191 }
4192
Evan Cheng14b32e12007-12-11 01:46:18 +00004193 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
4194 if (VT == MVT::v8i16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004195 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(V1, V2, PermMask, DAG, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004196 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00004197 return NewOp;
4198 }
4199
Evan Chengace3c172008-07-22 21:13:36 +00004200 // Handle all 4 wide cases with a number of shuffles except for MMX.
4201 if (NumElems == 4 && !isMMX)
4202 return LowerVECTOR_SHUFFLE_4wide(V1, V2, PermMask, VT, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004203
Dan Gohman475871a2008-07-27 21:46:04 +00004204 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004205}
4206
Dan Gohman475871a2008-07-27 21:46:04 +00004207SDValue
4208X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004209 SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004210 MVT VT = Op.getValueType();
4211 if (VT.getSizeInBits() == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004212 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004213 Op.getOperand(0), Op.getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004214 SDValue Assert = DAG.getNode(ISD::AssertZext, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004215 DAG.getValueType(VT));
4216 return DAG.getNode(ISD::TRUNCATE, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004217 } else if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004218 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004219 Op.getOperand(0), Op.getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004220 SDValue Assert = DAG.getNode(ISD::AssertZext, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00004221 DAG.getValueType(VT));
4222 return DAG.getNode(ISD::TRUNCATE, VT, Assert);
Evan Cheng62a3f152008-03-24 21:52:23 +00004223 } else if (VT == MVT::f32) {
4224 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
4225 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00004226 // result has a single use which is a store or a bitcast to i32. And in
4227 // the case of a store, it's not worth it if the index is a constant 0,
4228 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00004229 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00004230 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00004231 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00004232 if ((User->getOpcode() != ISD::STORE ||
4233 (isa<ConstantSDNode>(Op.getOperand(1)) &&
4234 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Dan Gohman171c11e2008-04-16 02:32:24 +00004235 (User->getOpcode() != ISD::BIT_CONVERT ||
4236 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00004237 return SDValue();
4238 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i32,
Evan Cheng62a3f152008-03-24 21:52:23 +00004239 DAG.getNode(ISD::BIT_CONVERT, MVT::v4i32, Op.getOperand(0)),
4240 Op.getOperand(1));
4241 return DAG.getNode(ISD::BIT_CONVERT, MVT::f32, Extract);
Nate Begeman14d12ca2008-02-11 04:19:36 +00004242 }
Dan Gohman475871a2008-07-27 21:46:04 +00004243 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00004244}
4245
4246
Dan Gohman475871a2008-07-27 21:46:04 +00004247SDValue
4248X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004249 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00004250 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004251
Evan Cheng62a3f152008-03-24 21:52:23 +00004252 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00004253 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004254 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00004255 return Res;
4256 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00004257
Duncan Sands83ec4b62008-06-06 12:08:01 +00004258 MVT VT = Op.getValueType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004259 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004260 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004261 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004262 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00004263 if (Idx == 0)
4264 return DAG.getNode(ISD::TRUNCATE, MVT::i16,
4265 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i32,
4266 DAG.getNode(ISD::BIT_CONVERT, MVT::v4i32, Vec),
4267 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004268 // Transform it so it match pextrw which produces a 32-bit result.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004269 MVT EVT = (MVT::SimpleValueType)(VT.getSimpleVT()+1);
Dan Gohman475871a2008-07-27 21:46:04 +00004270 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, EVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00004271 Op.getOperand(0), Op.getOperand(1));
Dan Gohman475871a2008-07-27 21:46:04 +00004272 SDValue Assert = DAG.getNode(ISD::AssertZext, EVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00004273 DAG.getValueType(VT));
4274 return DAG.getNode(ISD::TRUNCATE, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004275 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004276 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004277 if (Idx == 0)
4278 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004279 // SHUFPS the element to the lowest double word, then movss.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004280 MVT MaskVT = MVT::getIntVectorWithNumElements(4);
Dan Gohman475871a2008-07-27 21:46:04 +00004281 SmallVector<SDValue, 8> IdxVec;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004282 IdxVec.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004283 push_back(DAG.getConstant(Idx, MaskVT.getVectorElementType()));
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004284 IdxVec.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004285 push_back(DAG.getNode(ISD::UNDEF, MaskVT.getVectorElementType()));
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004286 IdxVec.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004287 push_back(DAG.getNode(ISD::UNDEF, MaskVT.getVectorElementType()));
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004288 IdxVec.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004289 push_back(DAG.getNode(ISD::UNDEF, MaskVT.getVectorElementType()));
Dan Gohman475871a2008-07-27 21:46:04 +00004290 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnere2199452006-08-11 17:38:39 +00004291 &IdxVec[0], IdxVec.size());
Dan Gohman475871a2008-07-27 21:46:04 +00004292 SDValue Vec = Op.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004293 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, Vec.getValueType(),
Evan Cheng6e56e2c2006-11-07 22:14:24 +00004294 Vec, DAG.getNode(ISD::UNDEF, Vec.getValueType()), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004295 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00004296 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004297 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00004298 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
4299 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
4300 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004301 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004302 if (Idx == 0)
4303 return Op;
4304
4305 // UNPCKHPD the element to the lowest double word, then movsd.
4306 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
4307 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Duncan Sandsd038e042008-07-21 10:20:31 +00004308 MVT MaskVT = MVT::getIntVectorWithNumElements(2);
Dan Gohman475871a2008-07-27 21:46:04 +00004309 SmallVector<SDValue, 8> IdxVec;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004310 IdxVec.push_back(DAG.getConstant(1, MaskVT.getVectorElementType()));
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00004311 IdxVec.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004312 push_back(DAG.getNode(ISD::UNDEF, MaskVT.getVectorElementType()));
Dan Gohman475871a2008-07-27 21:46:04 +00004313 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnere2199452006-08-11 17:38:39 +00004314 &IdxVec[0], IdxVec.size());
Dan Gohman475871a2008-07-27 21:46:04 +00004315 SDValue Vec = Op.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004316 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, Vec.getValueType(),
4317 Vec, DAG.getNode(ISD::UNDEF, Vec.getValueType()), Mask);
4318 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00004319 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004320 }
4321
Dan Gohman475871a2008-07-27 21:46:04 +00004322 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004323}
4324
Dan Gohman475871a2008-07-27 21:46:04 +00004325SDValue
4326X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG){
Duncan Sands83ec4b62008-06-06 12:08:01 +00004327 MVT VT = Op.getValueType();
4328 MVT EVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00004329
Dan Gohman475871a2008-07-27 21:46:04 +00004330 SDValue N0 = Op.getOperand(0);
4331 SDValue N1 = Op.getOperand(1);
4332 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00004333
Dan Gohmanef521f12008-08-14 22:53:18 +00004334 if ((EVT.getSizeInBits() == 8 || EVT.getSizeInBits() == 16) &&
4335 isa<ConstantSDNode>(N2)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004336 unsigned Opc = (EVT.getSizeInBits() == 8) ? X86ISD::PINSRB
Nate Begeman14d12ca2008-02-11 04:19:36 +00004337 : X86ISD::PINSRW;
4338 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
4339 // argument.
4340 if (N1.getValueType() != MVT::i32)
4341 N1 = DAG.getNode(ISD::ANY_EXTEND, MVT::i32, N1);
4342 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004343 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Nate Begeman14d12ca2008-02-11 04:19:36 +00004344 return DAG.getNode(Opc, VT, N0, N1, N2);
Dan Gohmanc0573b12008-08-14 22:43:26 +00004345 } else if (EVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00004346 // Bits [7:6] of the constant are the source select. This will always be
4347 // zero here. The DAG Combiner may combine an extract_elt index into these
4348 // bits. For example (insert (extract, 3), 2) could be matched by putting
4349 // the '3' into bits [7:6] of X86ISD::INSERTPS.
4350 // Bits [5:4] of the constant are the destination select. This is the
4351 // value of the incoming immediate.
4352 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
4353 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004354 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Nate Begeman14d12ca2008-02-11 04:19:36 +00004355 return DAG.getNode(X86ISD::INSERTPS, VT, N0, N1, N2);
4356 }
Dan Gohman475871a2008-07-27 21:46:04 +00004357 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00004358}
4359
Dan Gohman475871a2008-07-27 21:46:04 +00004360SDValue
4361X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004362 MVT VT = Op.getValueType();
4363 MVT EVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00004364
4365 if (Subtarget->hasSSE41())
4366 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
4367
Evan Cheng794405e2007-12-12 07:55:34 +00004368 if (EVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00004369 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00004370
Dan Gohman475871a2008-07-27 21:46:04 +00004371 SDValue N0 = Op.getOperand(0);
4372 SDValue N1 = Op.getOperand(1);
4373 SDValue N2 = Op.getOperand(2);
Evan Cheng794405e2007-12-12 07:55:34 +00004374
Duncan Sands83ec4b62008-06-06 12:08:01 +00004375 if (EVT.getSizeInBits() == 16) {
Evan Cheng794405e2007-12-12 07:55:34 +00004376 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
4377 // as its second argument.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004378 if (N1.getValueType() != MVT::i32)
4379 N1 = DAG.getNode(ISD::ANY_EXTEND, MVT::i32, N1);
4380 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004381 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Evan Cheng0db9fe62006-04-25 20:13:52 +00004382 return DAG.getNode(X86ISD::PINSRW, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004383 }
Dan Gohman475871a2008-07-27 21:46:04 +00004384 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004385}
4386
Dan Gohman475871a2008-07-27 21:46:04 +00004387SDValue
4388X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Evan Cheng52672b82008-07-22 18:39:19 +00004389 if (Op.getValueType() == MVT::v2f32)
4390 return DAG.getNode(ISD::BIT_CONVERT, MVT::v2f32,
4391 DAG.getNode(ISD::SCALAR_TO_VECTOR, MVT::v2i32,
4392 DAG.getNode(ISD::BIT_CONVERT, MVT::i32,
4393 Op.getOperand(0))));
4394
Dan Gohman475871a2008-07-27 21:46:04 +00004395 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, MVT::i32, Op.getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004396 MVT VT = MVT::v2i32;
4397 switch (Op.getValueType().getSimpleVT()) {
Evan Chengefec7512008-02-18 23:04:32 +00004398 default: break;
4399 case MVT::v16i8:
4400 case MVT::v8i16:
4401 VT = MVT::v4i32;
4402 break;
4403 }
4404 return DAG.getNode(ISD::BIT_CONVERT, Op.getValueType(),
4405 DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004406}
4407
Bill Wendling056292f2008-09-16 21:48:12 +00004408// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
4409// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
4410// one of the above mentioned nodes. It has to be wrapped because otherwise
4411// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
4412// be used to form addressing mode. These wrapped nodes will be selected
4413// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00004414SDValue
4415X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004416 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00004417 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(),
Evan Chengd0ff02c2006-11-29 23:19:46 +00004418 getPointerTy(),
4419 CP->getAlignment());
Evan Cheng19f2ffc2006-12-05 04:01:03 +00004420 Result = DAG.getNode(X86ISD::Wrapper, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004421 // With PIC, the address is actually $g + Offset.
4422 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4423 !Subtarget->isPICStyleRIPRel()) {
4424 Result = DAG.getNode(ISD::ADD, getPointerTy(),
4425 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
4426 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004427 }
4428
4429 return Result;
4430}
4431
Dan Gohman475871a2008-07-27 21:46:04 +00004432SDValue
Evan Chengda43bcf2008-09-24 00:05:32 +00004433X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV,
Dan Gohman6520e202008-10-18 02:06:02 +00004434 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00004435 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00004436 bool IsPic = getTargetMachine().getRelocationModel() == Reloc::PIC_;
4437 bool ExtraLoadRequired =
4438 Subtarget->GVRequiresExtraLoad(GV, getTargetMachine(), false);
4439
4440 // Create the TargetGlobalAddress node, folding in the constant
4441 // offset if it is legal.
4442 SDValue Result;
Dan Gohman44013612008-10-21 03:38:42 +00004443 if (!IsPic && !ExtraLoadRequired && isInt32(Offset)) {
Dan Gohman6520e202008-10-18 02:06:02 +00004444 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), Offset);
4445 Offset = 0;
4446 } else
4447 Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), 0);
Evan Cheng19f2ffc2006-12-05 04:01:03 +00004448 Result = DAG.getNode(X86ISD::Wrapper, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00004449
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004450 // With PIC, the address is actually $g + Offset.
Dan Gohman6520e202008-10-18 02:06:02 +00004451 if (IsPic && !Subtarget->isPICStyleRIPRel()) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004452 Result = DAG.getNode(ISD::ADD, getPointerTy(),
4453 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
4454 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004455 }
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00004456
4457 // For Darwin & Mingw32, external and weak symbols are indirect, so we want to
4458 // load the value at address GV, not the value of GV itself. This means that
4459 // the GlobalAddress must be in the base or index register of the address, not
4460 // the GV offset field. Platform check is inside GVRequiresExtraLoad() call
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004461 // The same applies for external symbols during PIC codegen
Dan Gohman6520e202008-10-18 02:06:02 +00004462 if (ExtraLoadRequired)
Dan Gohman69de1932008-02-06 22:27:42 +00004463 Result = DAG.getLoad(getPointerTy(), DAG.getEntryNode(), Result,
Dan Gohman3069b872008-02-07 18:41:25 +00004464 PseudoSourceValue::getGOT(), 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004465
Dan Gohman6520e202008-10-18 02:06:02 +00004466 // If there was a non-zero offset that we didn't fold, create an explicit
4467 // addition for it.
4468 if (Offset != 0)
4469 Result = DAG.getNode(ISD::ADD, getPointerTy(), Result,
4470 DAG.getConstant(Offset, getPointerTy()));
4471
Evan Cheng0db9fe62006-04-25 20:13:52 +00004472 return Result;
4473}
4474
Evan Chengda43bcf2008-09-24 00:05:32 +00004475SDValue
4476X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) {
4477 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00004478 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
4479 return LowerGlobalAddress(GV, Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00004480}
4481
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004482// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00004483static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004484LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004485 const MVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00004486 SDValue InFlag;
4487 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004488 DAG.getNode(X86ISD::GlobalBaseReg,
4489 PtrVT), InFlag);
4490 InFlag = Chain.getValue(1);
4491
4492 // emit leal symbol@TLSGD(,%ebx,1), %eax
4493 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00004494 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004495 GA->getValueType(0),
4496 GA->getOffset());
Dan Gohman475871a2008-07-27 21:46:04 +00004497 SDValue Ops[] = { Chain, TGA, InFlag };
4498 SDValue Result = DAG.getNode(X86ISD::TLSADDR, NodeTys, Ops, 3);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004499 InFlag = Result.getValue(2);
4500 Chain = Result.getValue(1);
4501
4502 // call ___tls_get_addr. This function receives its argument in
4503 // the register EAX.
4504 Chain = DAG.getCopyToReg(Chain, X86::EAX, Result, InFlag);
4505 InFlag = Chain.getValue(1);
4506
4507 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00004508 SDValue Ops1[] = { Chain,
Bill Wendling056292f2008-09-16 21:48:12 +00004509 DAG.getTargetExternalSymbol("___tls_get_addr",
4510 PtrVT),
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004511 DAG.getRegister(X86::EAX, PtrVT),
4512 DAG.getRegister(X86::EBX, PtrVT),
4513 InFlag };
4514 Chain = DAG.getNode(X86ISD::CALL, NodeTys, Ops1, 5);
4515 InFlag = Chain.getValue(1);
4516
4517 return DAG.getCopyFromReg(Chain, X86::EAX, PtrVT, InFlag);
4518}
4519
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004520// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00004521static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004522LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004523 const MVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00004524 SDValue InFlag, Chain;
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004525
4526 // emit leaq symbol@TLSGD(%rip), %rdi
4527 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00004528 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004529 GA->getValueType(0),
4530 GA->getOffset());
Dan Gohman475871a2008-07-27 21:46:04 +00004531 SDValue Ops[] = { DAG.getEntryNode(), TGA};
4532 SDValue Result = DAG.getNode(X86ISD::TLSADDR, NodeTys, Ops, 2);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004533 Chain = Result.getValue(1);
4534 InFlag = Result.getValue(2);
4535
Anton Korobeynikovd97f2952008-08-16 12:58:29 +00004536 // call __tls_get_addr. This function receives its argument in
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004537 // the register RDI.
4538 Chain = DAG.getCopyToReg(Chain, X86::RDI, Result, InFlag);
4539 InFlag = Chain.getValue(1);
4540
4541 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00004542 SDValue Ops1[] = { Chain,
Bill Wendling056292f2008-09-16 21:48:12 +00004543 DAG.getTargetExternalSymbol("__tls_get_addr",
4544 PtrVT),
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004545 DAG.getRegister(X86::RDI, PtrVT),
4546 InFlag };
4547 Chain = DAG.getNode(X86ISD::CALL, NodeTys, Ops1, 4);
4548 InFlag = Chain.getValue(1);
4549
4550 return DAG.getCopyFromReg(Chain, X86::RAX, PtrVT, InFlag);
4551}
4552
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004553// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
4554// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00004555static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004556 const MVT PtrVT) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004557 // Get the Thread Pointer
Dan Gohman475871a2008-07-27 21:46:04 +00004558 SDValue ThreadPointer = DAG.getNode(X86ISD::THREAD_POINTER, PtrVT);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004559 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
4560 // exec)
Dan Gohman475871a2008-07-27 21:46:04 +00004561 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004562 GA->getValueType(0),
4563 GA->getOffset());
Dan Gohman475871a2008-07-27 21:46:04 +00004564 SDValue Offset = DAG.getNode(X86ISD::Wrapper, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00004565
4566 if (GA->getGlobal()->isDeclaration()) // initial exec TLS model
Dan Gohman69de1932008-02-06 22:27:42 +00004567 Offset = DAG.getLoad(PtrVT, DAG.getEntryNode(), Offset,
Dan Gohman3069b872008-02-07 18:41:25 +00004568 PseudoSourceValue::getGOT(), 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00004569
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004570 // The address of the thread local variable is the add of the thread
4571 // pointer with the offset of the variable.
4572 return DAG.getNode(ISD::ADD, PtrVT, ThreadPointer, Offset);
4573}
4574
Dan Gohman475871a2008-07-27 21:46:04 +00004575SDValue
4576X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) {
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004577 // TODO: implement the "local dynamic" model
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00004578 // TODO: implement the "initial exec"model for pic executables
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004579 assert(Subtarget->isTargetELF() &&
4580 "TLS not implemented for non-ELF targets");
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004581 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
4582 // If the relocation model is PIC, use the "General Dynamic" TLS Model,
4583 // otherwise use the "Local Exec"TLS Model
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00004584 if (Subtarget->is64Bit()) {
4585 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
4586 } else {
4587 if (getTargetMachine().getRelocationModel() == Reloc::PIC_)
4588 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
4589 else
4590 return LowerToTLSExecModel(GA, DAG, getPointerTy());
4591 }
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004592}
4593
Dan Gohman475871a2008-07-27 21:46:04 +00004594SDValue
4595X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) {
Bill Wendling056292f2008-09-16 21:48:12 +00004596 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
4597 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
Evan Cheng19f2ffc2006-12-05 04:01:03 +00004598 Result = DAG.getNode(X86ISD::Wrapper, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004599 // With PIC, the address is actually $g + Offset.
4600 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4601 !Subtarget->isPICStyleRIPRel()) {
4602 Result = DAG.getNode(ISD::ADD, getPointerTy(),
4603 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
4604 Result);
4605 }
4606
4607 return Result;
4608}
4609
Dan Gohman475871a2008-07-27 21:46:04 +00004610SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004611 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00004612 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy());
Anton Korobeynikov7f705592007-01-12 19:20:47 +00004613 Result = DAG.getNode(X86ISD::Wrapper, getPointerTy(), Result);
4614 // With PIC, the address is actually $g + Offset.
4615 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4616 !Subtarget->isPICStyleRIPRel()) {
4617 Result = DAG.getNode(ISD::ADD, getPointerTy(),
4618 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
4619 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004620 }
4621
4622 return Result;
4623}
4624
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004625/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
4626/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohman475871a2008-07-27 21:46:04 +00004627SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) {
Dan Gohman4c1fa612008-03-03 22:22:09 +00004628 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00004629 MVT VT = Op.getValueType();
4630 unsigned VTBits = VT.getSizeInBits();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004631 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00004632 SDValue ShOpLo = Op.getOperand(0);
4633 SDValue ShOpHi = Op.getOperand(1);
4634 SDValue ShAmt = Op.getOperand(2);
4635 SDValue Tmp1 = isSRA ?
Dan Gohman4c1fa612008-03-03 22:22:09 +00004636 DAG.getNode(ISD::SRA, VT, ShOpHi, DAG.getConstant(VTBits - 1, MVT::i8)) :
4637 DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00004638
Dan Gohman475871a2008-07-27 21:46:04 +00004639 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004640 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dan Gohman4c1fa612008-03-03 22:22:09 +00004641 Tmp2 = DAG.getNode(X86ISD::SHLD, VT, ShOpHi, ShOpLo, ShAmt);
4642 Tmp3 = DAG.getNode(ISD::SHL, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004643 } else {
Dan Gohman4c1fa612008-03-03 22:22:09 +00004644 Tmp2 = DAG.getNode(X86ISD::SHRD, VT, ShOpLo, ShOpHi, ShAmt);
4645 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004646 }
Evan Chenge3413162006-01-09 18:33:28 +00004647
Dan Gohman475871a2008-07-27 21:46:04 +00004648 SDValue AndNode = DAG.getNode(ISD::AND, MVT::i8, ShAmt,
Dan Gohman4c1fa612008-03-03 22:22:09 +00004649 DAG.getConstant(VTBits, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00004650 SDValue Cond = DAG.getNode(X86ISD::CMP, VT,
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004651 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00004652
Dan Gohman475871a2008-07-27 21:46:04 +00004653 SDValue Hi, Lo;
4654 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
4655 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
4656 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00004657
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004658 if (Op.getOpcode() == ISD::SHL_PARTS) {
Duncan Sandsf9516202008-06-30 10:19:09 +00004659 Hi = DAG.getNode(X86ISD::CMOV, VT, Ops0, 4);
4660 Lo = DAG.getNode(X86ISD::CMOV, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004661 } else {
Duncan Sandsf9516202008-06-30 10:19:09 +00004662 Lo = DAG.getNode(X86ISD::CMOV, VT, Ops0, 4);
4663 Hi = DAG.getNode(X86ISD::CMOV, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00004664 }
4665
Dan Gohman475871a2008-07-27 21:46:04 +00004666 SDValue Ops[2] = { Lo, Hi };
Duncan Sands4bdcb612008-07-02 17:40:58 +00004667 return DAG.getMergeValues(Ops, 2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004668}
Evan Chenga3195e82006-01-12 22:54:21 +00004669
Dan Gohman475871a2008-07-27 21:46:04 +00004670SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004671 MVT SrcVT = Op.getOperand(0).getValueType();
Duncan Sands8e4eb092008-06-08 20:54:56 +00004672 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00004673 "Unknown SINT_TO_FP to lower!");
4674
4675 // These are really Legal; caller falls through into that case.
4676 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00004677 return SDValue();
Chris Lattnerb09916b2008-02-27 05:57:41 +00004678 if (SrcVT == MVT::i64 && Op.getValueType() != MVT::f80 &&
4679 Subtarget->is64Bit())
Dan Gohman475871a2008-07-27 21:46:04 +00004680 return SDValue();
Chris Lattnerb09916b2008-02-27 05:57:41 +00004681
Duncan Sands83ec4b62008-06-06 12:08:01 +00004682 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004683 MachineFunction &MF = DAG.getMachineFunction();
4684 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size);
Dan Gohman475871a2008-07-27 21:46:04 +00004685 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
4686 SDValue Chain = DAG.getStore(DAG.getEntryNode(), Op.getOperand(0),
Dan Gohman69de1932008-02-06 22:27:42 +00004687 StackSlot,
Dan Gohmana54cf172008-07-11 22:44:52 +00004688 PseudoSourceValue::getFixedStack(SSFI), 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004689
4690 // Build the FILD
Chris Lattner5a88b832007-02-25 07:10:00 +00004691 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00004692 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00004693 if (useSSE)
Chris Lattner5a88b832007-02-25 07:10:00 +00004694 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
4695 else
Dale Johannesen849f2142007-07-03 00:53:03 +00004696 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00004697 SmallVector<SDValue, 8> Ops;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004698 Ops.push_back(Chain);
4699 Ops.push_back(StackSlot);
4700 Ops.push_back(DAG.getValueType(SrcVT));
Dan Gohman475871a2008-07-27 21:46:04 +00004701 SDValue Result = DAG.getNode(useSSE ? X86ISD::FILD_FLAG : X86ISD::FILD,
Chris Lattnerb09916b2008-02-27 05:57:41 +00004702 Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00004703
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00004704 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004705 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00004706 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004707
4708 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
4709 // shouldn't be necessary except that RFP cannot be live across
4710 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004711 MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004712 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
Dan Gohman475871a2008-07-27 21:46:04 +00004713 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Chris Lattner5a88b832007-02-25 07:10:00 +00004714 Tys = DAG.getVTList(MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00004715 SmallVector<SDValue, 8> Ops;
Evan Chenga3195e82006-01-12 22:54:21 +00004716 Ops.push_back(Chain);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004717 Ops.push_back(Result);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004718 Ops.push_back(StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004719 Ops.push_back(DAG.getValueType(Op.getValueType()));
4720 Ops.push_back(InFlag);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004721 Chain = DAG.getNode(X86ISD::FST, Tys, &Ops[0], Ops.size());
Dan Gohman69de1932008-02-06 22:27:42 +00004722 Result = DAG.getLoad(Op.getValueType(), Chain, StackSlot,
Dan Gohmana54cf172008-07-11 22:44:52 +00004723 PseudoSourceValue::getFixedStack(SSFI), 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004724 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004725
Evan Cheng0db9fe62006-04-25 20:13:52 +00004726 return Result;
4727}
4728
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004729SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
4730 MVT SrcVT = Op.getOperand(0).getValueType();
4731 assert(SrcVT.getSimpleVT() == MVT::i64 && "Unknown UINT_TO_FP to lower!");
4732
4733 // We only handle SSE2 f64 target here; caller can handle the rest.
4734 if (Op.getValueType() != MVT::f64 || !X86ScalarSSEf64)
4735 return SDValue();
4736
Dale Johannesen040225f2008-10-21 23:07:49 +00004737 // This algorithm is not obvious. Here it is in C code, more or less:
4738/*
4739 double uint64_to_double( uint32_t hi, uint32_t lo )
4740 {
4741 static const __m128i exp = { 0x4330000045300000ULL, 0 };
4742 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
4743
Dale Johannesen9ae0d6d2008-10-22 00:02:32 +00004744 // copy ints to xmm registers
Dale Johannesen040225f2008-10-21 23:07:49 +00004745 __m128i xh = _mm_cvtsi32_si128( hi );
4746 __m128i xl = _mm_cvtsi32_si128( lo );
4747
Dale Johannesen9ae0d6d2008-10-22 00:02:32 +00004748 // combine into low half of a single xmm register
Dale Johannesen040225f2008-10-21 23:07:49 +00004749 __m128i x = _mm_unpacklo_epi32( xh, xl );
4750 __m128d d;
4751 double sd;
4752
Dale Johannesen9ae0d6d2008-10-22 00:02:32 +00004753 // merge in appropriate exponents to give the integer bits the
Dale Johannesen040225f2008-10-21 23:07:49 +00004754 // right magnitude
4755 x = _mm_unpacklo_epi32( x, exp );
4756
Dale Johannesen9ae0d6d2008-10-22 00:02:32 +00004757 // subtract away the biases to deal with the IEEE-754 double precision
4758 // implicit 1
Dale Johannesen040225f2008-10-21 23:07:49 +00004759 d = _mm_sub_pd( (__m128d) x, bias );
4760
Dale Johannesen9ae0d6d2008-10-22 00:02:32 +00004761 // All conversions up to here are exact. The correctly rounded result is
Dale Johannesen040225f2008-10-21 23:07:49 +00004762 // calculated using the
Dale Johannesen9ae0d6d2008-10-22 00:02:32 +00004763 // current rounding mode using the following horizontal add.
Dale Johannesen040225f2008-10-21 23:07:49 +00004764 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
4765 _mm_store_sd( &sd, d ); //since we are returning doubles in XMM, this
Dale Johannesen9ae0d6d2008-10-22 00:02:32 +00004766 // store doesn't really need to be here (except maybe to zero the other
4767 // double)
Dale Johannesen040225f2008-10-21 23:07:49 +00004768 return sd;
4769 }
4770*/
4771
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004772 // Build some magic constants.
4773 std::vector<Constant*>CV0;
4774 CV0.push_back(ConstantInt::get(APInt(32, 0x45300000)));
4775 CV0.push_back(ConstantInt::get(APInt(32, 0x43300000)));
4776 CV0.push_back(ConstantInt::get(APInt(32, 0)));
4777 CV0.push_back(ConstantInt::get(APInt(32, 0)));
4778 Constant *C0 = ConstantVector::get(CV0);
4779 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 4);
4780
4781 std::vector<Constant*>CV1;
4782 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4530000000000000ULL))));
4783 CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4330000000000000ULL))));
4784 Constant *C1 = ConstantVector::get(CV1);
4785 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 4);
4786
4787 SmallVector<SDValue, 4> MaskVec;
4788 MaskVec.push_back(DAG.getConstant(0, MVT::i32));
4789 MaskVec.push_back(DAG.getConstant(4, MVT::i32));
4790 MaskVec.push_back(DAG.getConstant(1, MVT::i32));
4791 MaskVec.push_back(DAG.getConstant(5, MVT::i32));
4792 SDValue UnpcklMask = DAG.getNode(ISD::BUILD_VECTOR, MVT::v4i32, &MaskVec[0],
4793 MaskVec.size());
4794 SmallVector<SDValue, 4> MaskVec2;
Duncan Sands6b6aeb32008-10-22 11:24:12 +00004795 MaskVec2.push_back(DAG.getConstant(1, MVT::i32));
4796 MaskVec2.push_back(DAG.getConstant(0, MVT::i32));
4797 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, MVT::v2i32, &MaskVec2[0],
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004798 MaskVec2.size());
4799
4800 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, MVT::v4i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00004801 DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32,
4802 Op.getOperand(0),
4803 DAG.getIntPtrConstant(1)));
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004804 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, MVT::v4i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00004805 DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32,
4806 Op.getOperand(0),
4807 DAG.getIntPtrConstant(0)));
Dale Johannesen1c15bf52008-10-21 20:50:01 +00004808 SDValue Unpck1 = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v4i32,
4809 XR1, XR2, UnpcklMask);
4810 SDValue CLod0 = DAG.getLoad(MVT::v4i32, DAG.getEntryNode(), CPIdx0,
4811 PseudoSourceValue::getConstantPool(), 0, false, 16);
4812 SDValue Unpck2 = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v4i32,
4813 Unpck1, CLod0, UnpcklMask);
4814 SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, MVT::v2f64, Unpck2);
4815 SDValue CLod1 = DAG.getLoad(MVT::v2f64, CLod0.getValue(1), CPIdx1,
4816 PseudoSourceValue::getConstantPool(), 0, false, 16);
4817 SDValue Sub = DAG.getNode(ISD::FSUB, MVT::v2f64, XR2F, CLod1);
4818 // Add the halves; easiest way is to swap them into another reg first.
4819 SDValue Shuf = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v2f64,
4820 Sub, Sub, ShufMask);
4821 SDValue Add = DAG.getNode(ISD::FADD, MVT::v2f64, Shuf, Sub);
4822 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::f64, Add,
4823 DAG.getIntPtrConstant(0));
4824}
4825
Dan Gohman475871a2008-07-27 21:46:04 +00004826std::pair<SDValue,SDValue> X86TargetLowering::
4827FP_TO_SINTHelper(SDValue Op, SelectionDAG &DAG) {
Duncan Sands8e4eb092008-06-08 20:54:56 +00004828 assert(Op.getValueType().getSimpleVT() <= MVT::i64 &&
4829 Op.getValueType().getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00004830 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00004831
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00004832 // These are really Legal.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +00004833 if (Op.getValueType() == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00004834 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00004835 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00004836 if (Subtarget->is64Bit() &&
4837 Op.getValueType() == MVT::i64 &&
4838 Op.getOperand(0).getValueType() != MVT::f80)
Dan Gohman475871a2008-07-27 21:46:04 +00004839 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00004840
Evan Cheng87c89352007-10-15 20:11:21 +00004841 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
4842 // stack slot.
4843 MachineFunction &MF = DAG.getMachineFunction();
Duncan Sands83ec4b62008-06-06 12:08:01 +00004844 unsigned MemSize = Op.getValueType().getSizeInBits()/8;
Evan Cheng87c89352007-10-15 20:11:21 +00004845 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
Dan Gohman475871a2008-07-27 21:46:04 +00004846 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Evan Cheng0db9fe62006-04-25 20:13:52 +00004847 unsigned Opc;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004848 switch (Op.getValueType().getSimpleVT()) {
Chris Lattner27a6c732007-11-24 07:07:01 +00004849 default: assert(0 && "Invalid FP_TO_SINT to lower!");
4850 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
4851 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
4852 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004853 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004854
Dan Gohman475871a2008-07-27 21:46:04 +00004855 SDValue Chain = DAG.getEntryNode();
4856 SDValue Value = Op.getOperand(0);
Chris Lattner78631162008-01-16 06:24:21 +00004857 if (isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType())) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004858 assert(Op.getValueType() == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Dan Gohman69de1932008-02-06 22:27:42 +00004859 Chain = DAG.getStore(Chain, Value, StackSlot,
Dan Gohmana54cf172008-07-11 22:44:52 +00004860 PseudoSourceValue::getFixedStack(SSFI), 0);
Dale Johannesen849f2142007-07-03 00:53:03 +00004861 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00004862 SDValue Ops[] = {
Chris Lattner5a88b832007-02-25 07:10:00 +00004863 Chain, StackSlot, DAG.getValueType(Op.getOperand(0).getValueType())
4864 };
4865 Value = DAG.getNode(X86ISD::FLD, Tys, Ops, 3);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004866 Chain = Value.getValue(1);
4867 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
4868 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
4869 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004870
Evan Cheng0db9fe62006-04-25 20:13:52 +00004871 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00004872 SDValue Ops[] = { Chain, Value, StackSlot };
4873 SDValue FIST = DAG.getNode(Opc, MVT::Other, Ops, 3);
Evan Chengd9558e02006-01-06 00:43:03 +00004874
Chris Lattner27a6c732007-11-24 07:07:01 +00004875 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004876}
4877
Dan Gohman475871a2008-07-27 21:46:04 +00004878SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) {
4879 std::pair<SDValue,SDValue> Vals = FP_TO_SINTHelper(Op, DAG);
4880 SDValue FIST = Vals.first, StackSlot = Vals.second;
Gabor Greifba36cb52008-08-28 21:40:38 +00004881 if (FIST.getNode() == 0) return SDValue();
Chris Lattner27a6c732007-11-24 07:07:01 +00004882
4883 // Load the result.
4884 return DAG.getLoad(Op.getValueType(), FIST, StackSlot, NULL, 0);
4885}
4886
Dan Gohman475871a2008-07-27 21:46:04 +00004887SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004888 MVT VT = Op.getValueType();
4889 MVT EltVT = VT;
4890 if (VT.isVector())
4891 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004892 std::vector<Constant*> CV;
Dan Gohman20382522007-07-10 00:05:58 +00004893 if (EltVT == MVT::f64) {
Chris Lattner02a260a2008-04-20 00:41:09 +00004894 Constant *C = ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00004895 CV.push_back(C);
4896 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004897 } else {
Chris Lattner02a260a2008-04-20 00:41:09 +00004898 Constant *C = ConstantFP::get(APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00004899 CV.push_back(C);
4900 CV.push_back(C);
4901 CV.push_back(C);
4902 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004903 }
Dan Gohmand3006222007-07-27 17:16:43 +00004904 Constant *C = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00004905 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
4906 SDValue Mask = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00004907 PseudoSourceValue::getConstantPool(), 0,
Dan Gohmand3006222007-07-27 17:16:43 +00004908 false, 16);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004909 return DAG.getNode(X86ISD::FAND, VT, Op.getOperand(0), Mask);
4910}
4911
Dan Gohman475871a2008-07-27 21:46:04 +00004912SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004913 MVT VT = Op.getValueType();
4914 MVT EltVT = VT;
Evan Chengd4d01b72007-07-19 23:36:01 +00004915 unsigned EltNum = 1;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004916 if (VT.isVector()) {
4917 EltVT = VT.getVectorElementType();
4918 EltNum = VT.getVectorNumElements();
Evan Chengd4d01b72007-07-19 23:36:01 +00004919 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004920 std::vector<Constant*> CV;
Dan Gohman20382522007-07-10 00:05:58 +00004921 if (EltVT == MVT::f64) {
Chris Lattner02a260a2008-04-20 00:41:09 +00004922 Constant *C = ConstantFP::get(APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00004923 CV.push_back(C);
4924 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004925 } else {
Chris Lattner02a260a2008-04-20 00:41:09 +00004926 Constant *C = ConstantFP::get(APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00004927 CV.push_back(C);
4928 CV.push_back(C);
4929 CV.push_back(C);
4930 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004931 }
Dan Gohmand3006222007-07-27 17:16:43 +00004932 Constant *C = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00004933 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
4934 SDValue Mask = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00004935 PseudoSourceValue::getConstantPool(), 0,
Dan Gohmand3006222007-07-27 17:16:43 +00004936 false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004937 if (VT.isVector()) {
Evan Chengd4d01b72007-07-19 23:36:01 +00004938 return DAG.getNode(ISD::BIT_CONVERT, VT,
4939 DAG.getNode(ISD::XOR, MVT::v2i64,
4940 DAG.getNode(ISD::BIT_CONVERT, MVT::v2i64, Op.getOperand(0)),
4941 DAG.getNode(ISD::BIT_CONVERT, MVT::v2i64, Mask)));
4942 } else {
Evan Chengd4d01b72007-07-19 23:36:01 +00004943 return DAG.getNode(X86ISD::FXOR, VT, Op.getOperand(0), Mask);
4944 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004945}
4946
Dan Gohman475871a2008-07-27 21:46:04 +00004947SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
4948 SDValue Op0 = Op.getOperand(0);
4949 SDValue Op1 = Op.getOperand(1);
Duncan Sands83ec4b62008-06-06 12:08:01 +00004950 MVT VT = Op.getValueType();
4951 MVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00004952
4953 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004954 if (SrcVT.bitsLT(VT)) {
Evan Cheng73d6cf12007-01-05 21:37:56 +00004955 Op1 = DAG.getNode(ISD::FP_EXTEND, VT, Op1);
4956 SrcVT = VT;
4957 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00004958 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004959 if (SrcVT.bitsGT(VT)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004960 Op1 = DAG.getNode(ISD::FP_ROUND, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00004961 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00004962 }
4963
4964 // At this point the operands and the result should have the same
4965 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00004966
Evan Cheng68c47cb2007-01-05 07:55:56 +00004967 // First get the sign bit of second operand.
4968 std::vector<Constant*> CV;
4969 if (SrcVT == MVT::f64) {
Chris Lattner02a260a2008-04-20 00:41:09 +00004970 CV.push_back(ConstantFP::get(APFloat(APInt(64, 1ULL << 63))));
4971 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00004972 } else {
Chris Lattner02a260a2008-04-20 00:41:09 +00004973 CV.push_back(ConstantFP::get(APFloat(APInt(32, 1U << 31))));
4974 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
4975 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
4976 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00004977 }
Dan Gohmand3006222007-07-27 17:16:43 +00004978 Constant *C = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00004979 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
4980 SDValue Mask1 = DAG.getLoad(SrcVT, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00004981 PseudoSourceValue::getConstantPool(), 0,
Dan Gohmand3006222007-07-27 17:16:43 +00004982 false, 16);
Dan Gohman475871a2008-07-27 21:46:04 +00004983 SDValue SignBit = DAG.getNode(X86ISD::FAND, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00004984
4985 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00004986 if (SrcVT.bitsGT(VT)) {
Evan Cheng68c47cb2007-01-05 07:55:56 +00004987 // Op0 is MVT::f32, Op1 is MVT::f64.
4988 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, MVT::v2f64, SignBit);
4989 SignBit = DAG.getNode(X86ISD::FSRL, MVT::v2f64, SignBit,
4990 DAG.getConstant(32, MVT::i32));
4991 SignBit = DAG.getNode(ISD::BIT_CONVERT, MVT::v4f32, SignBit);
4992 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00004993 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00004994 }
4995
Evan Cheng73d6cf12007-01-05 21:37:56 +00004996 // Clear first operand sign bit.
4997 CV.clear();
4998 if (VT == MVT::f64) {
Chris Lattner02a260a2008-04-20 00:41:09 +00004999 CV.push_back(ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63)))));
5000 CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00005001 } else {
Chris Lattner02a260a2008-04-20 00:41:09 +00005002 CV.push_back(ConstantFP::get(APFloat(APInt(32, ~(1U << 31)))));
5003 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5004 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5005 CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00005006 }
Dan Gohmand3006222007-07-27 17:16:43 +00005007 C = ConstantVector::get(CV);
5008 CPIdx = DAG.getConstantPool(C, getPointerTy(), 4);
Dan Gohman475871a2008-07-27 21:46:04 +00005009 SDValue Mask2 = DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005010 PseudoSourceValue::getConstantPool(), 0,
Dan Gohmand3006222007-07-27 17:16:43 +00005011 false, 16);
Dan Gohman475871a2008-07-27 21:46:04 +00005012 SDValue Val = DAG.getNode(X86ISD::FAND, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00005013
5014 // Or the value with the sign bit.
5015 return DAG.getNode(X86ISD::FOR, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00005016}
5017
Dan Gohman475871a2008-07-27 21:46:04 +00005018SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) {
Evan Cheng0488db92007-09-25 01:57:46 +00005019 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
Dan Gohman475871a2008-07-27 21:46:04 +00005020 SDValue Op0 = Op.getOperand(0);
5021 SDValue Op1 = Op.getOperand(1);
Chris Lattnere55484e2008-12-25 05:34:37 +00005022 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
5023
5024 // Lower (X & (1 << N)) == 0 to BT.
5025 // Lower ((X >>u N) & 1) != 0 to BT.
5026 // Lower ((X >>s N) & 1) != 0 to BT.
5027 // FIXME: Is i386 or later or available only on some chips?
5028 if (Op0.getOpcode() == ISD::AND && Op1.getOpcode() == ISD::Constant &&
5029 Op0.getOperand(1).getOpcode() == ISD::Constant &&
5030 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
5031 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op0.getOperand(1));
5032 ConstantSDNode *CmpRHS = cast<ConstantSDNode>(Op1);
5033 SDValue AndLHS = Op0.getOperand(0);
5034 if (CmpRHS->getZExtValue() == 0 && AndRHS->getZExtValue() == 1 &&
5035 AndLHS.getOpcode() == ISD::SRL) {
5036 SDValue LHS = AndLHS.getOperand(0);
5037 SDValue RHS = AndLHS.getOperand(1);
Evan Cheng0488db92007-09-25 01:57:46 +00005038
Chris Lattnere55484e2008-12-25 05:34:37 +00005039 // If LHS is i8, promote it to i16 with any_extend. There is no i8 BT
5040 // instruction. Since the shift amount is in-range-or-undefined, we know
5041 // that doing a bittest on the i16 value is ok. We extend to i32 because
5042 // the encoding for the i16 version is larger than the i32 version.
5043 if (LHS.getValueType() == MVT::i8)
5044 LHS = DAG.getNode(ISD::ANY_EXTEND, MVT::i32, LHS);
5045
5046 // If the operand types disagree, extend the shift amount to match. Since
5047 // BT ignores high bits (like shifts) we can use anyextend.
5048 if (LHS.getValueType() != RHS.getValueType())
5049 RHS = DAG.getNode(ISD::ANY_EXTEND, LHS.getValueType(), RHS);
5050
5051 SDValue BT = DAG.getNode(X86ISD::BT, MVT::i32, LHS, RHS);
5052 unsigned Cond = CC == ISD::SETEQ ? X86::COND_NC : X86::COND_C;
5053 return DAG.getNode(X86ISD::SETCC, MVT::i8,
5054 DAG.getConstant(Cond, MVT::i8), BT);
5055 }
5056 }
5057
5058 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
5059 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Chris Lattner43287082008-12-24 00:11:37 +00005060
Chris Lattnere55484e2008-12-25 05:34:37 +00005061 SDValue Cond = DAG.getNode(X86ISD::CMP, MVT::i32, Op0, Op1);
Chris Lattner43287082008-12-24 00:11:37 +00005062 return DAG.getNode(X86ISD::SETCC, MVT::i8,
5063 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00005064}
5065
Dan Gohman475871a2008-07-27 21:46:04 +00005066SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
5067 SDValue Cond;
5068 SDValue Op0 = Op.getOperand(0);
5069 SDValue Op1 = Op.getOperand(1);
5070 SDValue CC = Op.getOperand(2);
Nate Begeman30a0de92008-07-17 16:51:19 +00005071 MVT VT = Op.getValueType();
5072 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
5073 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
5074
5075 if (isFP) {
5076 unsigned SSECC = 8;
Evan Chenge9d50352008-08-05 22:19:15 +00005077 MVT VT0 = Op0.getValueType();
5078 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
5079 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00005080 bool Swap = false;
5081
5082 switch (SetCCOpcode) {
5083 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00005084 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00005085 case ISD::SETEQ: SSECC = 0; break;
5086 case ISD::SETOGT:
5087 case ISD::SETGT: Swap = true; // Fallthrough
5088 case ISD::SETLT:
5089 case ISD::SETOLT: SSECC = 1; break;
5090 case ISD::SETOGE:
5091 case ISD::SETGE: Swap = true; // Fallthrough
5092 case ISD::SETLE:
5093 case ISD::SETOLE: SSECC = 2; break;
5094 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00005095 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00005096 case ISD::SETNE: SSECC = 4; break;
5097 case ISD::SETULE: Swap = true;
5098 case ISD::SETUGE: SSECC = 5; break;
5099 case ISD::SETULT: Swap = true;
5100 case ISD::SETUGT: SSECC = 6; break;
5101 case ISD::SETO: SSECC = 7; break;
5102 }
5103 if (Swap)
5104 std::swap(Op0, Op1);
5105
Nate Begemanfb8ead02008-07-25 19:05:58 +00005106 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00005107 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00005108 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00005109 SDValue UNORD, EQ;
Nate Begemanfb8ead02008-07-25 19:05:58 +00005110 UNORD = DAG.getNode(Opc, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
5111 EQ = DAG.getNode(Opc, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
5112 return DAG.getNode(ISD::OR, VT, UNORD, EQ);
5113 }
5114 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00005115 SDValue ORD, NEQ;
Nate Begemanfb8ead02008-07-25 19:05:58 +00005116 ORD = DAG.getNode(Opc, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
5117 NEQ = DAG.getNode(Opc, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
5118 return DAG.getNode(ISD::AND, VT, ORD, NEQ);
5119 }
5120 assert(0 && "Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00005121 }
5122 // Handle all other FP comparisons here.
5123 return DAG.getNode(Opc, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
5124 }
5125
5126 // We are handling one of the integer comparisons here. Since SSE only has
5127 // GT and EQ comparisons for integer, swapping operands and multiple
5128 // operations may be required for some comparisons.
5129 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
5130 bool Swap = false, Invert = false, FlipSigns = false;
5131
5132 switch (VT.getSimpleVT()) {
5133 default: break;
5134 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
5135 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
5136 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
5137 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
5138 }
5139
5140 switch (SetCCOpcode) {
5141 default: break;
5142 case ISD::SETNE: Invert = true;
5143 case ISD::SETEQ: Opc = EQOpc; break;
5144 case ISD::SETLT: Swap = true;
5145 case ISD::SETGT: Opc = GTOpc; break;
5146 case ISD::SETGE: Swap = true;
5147 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
5148 case ISD::SETULT: Swap = true;
5149 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
5150 case ISD::SETUGE: Swap = true;
5151 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
5152 }
5153 if (Swap)
5154 std::swap(Op0, Op1);
5155
5156 // Since SSE has no unsigned integer comparisons, we need to flip the sign
5157 // bits of the inputs before performing those operations.
5158 if (FlipSigns) {
5159 MVT EltVT = VT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00005160 SDValue SignBit = DAG.getConstant(EltVT.getIntegerVTSignBit(), EltVT);
5161 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
5162 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, VT, &SignBits[0],
Nate Begeman30a0de92008-07-17 16:51:19 +00005163 SignBits.size());
5164 Op0 = DAG.getNode(ISD::XOR, VT, Op0, SignVec);
5165 Op1 = DAG.getNode(ISD::XOR, VT, Op1, SignVec);
5166 }
5167
Dan Gohman475871a2008-07-27 21:46:04 +00005168 SDValue Result = DAG.getNode(Opc, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00005169
5170 // If the logical-not of the result is required, perform that now.
5171 if (Invert) {
5172 MVT EltVT = VT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00005173 SDValue NegOne = DAG.getConstant(EltVT.getIntegerVTBitMask(), EltVT);
5174 std::vector<SDValue> NegOnes(VT.getVectorNumElements(), NegOne);
5175 SDValue NegOneV = DAG.getNode(ISD::BUILD_VECTOR, VT, &NegOnes[0],
Nate Begeman30a0de92008-07-17 16:51:19 +00005176 NegOnes.size());
5177 Result = DAG.getNode(ISD::XOR, VT, Result, NegOneV);
5178 }
5179 return Result;
5180}
Evan Cheng0488db92007-09-25 01:57:46 +00005181
Evan Cheng370e5342008-12-03 08:38:43 +00005182// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
5183static bool isX86LogicalCmp(unsigned Opc) {
5184 return Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI;
5185}
5186
Dan Gohman475871a2008-07-27 21:46:04 +00005187SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) {
Evan Cheng734503b2006-09-11 02:19:56 +00005188 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005189 SDValue Cond = Op.getOperand(0);
5190 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00005191
Evan Cheng734503b2006-09-11 02:19:56 +00005192 if (Cond.getOpcode() == ISD::SETCC)
Evan Chenge5f62042007-09-29 00:00:36 +00005193 Cond = LowerSETCC(Cond, DAG);
Evan Cheng734503b2006-09-11 02:19:56 +00005194
Evan Cheng3f41d662007-10-08 22:16:29 +00005195 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5196 // setting operand in place of the X86ISD::SETCC.
Evan Cheng734503b2006-09-11 02:19:56 +00005197 if (Cond.getOpcode() == X86ISD::SETCC) {
5198 CC = Cond.getOperand(0);
5199
Dan Gohman475871a2008-07-27 21:46:04 +00005200 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00005201 unsigned Opc = Cmp.getOpcode();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005202 MVT VT = Op.getValueType();
Chris Lattner1956d152008-01-16 06:19:45 +00005203
Evan Cheng3f41d662007-10-08 22:16:29 +00005204 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005205 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00005206 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00005207 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Chris Lattner1956d152008-01-16 06:19:45 +00005208
Evan Cheng370e5342008-12-03 08:38:43 +00005209 if (isX86LogicalCmp(Opc) && !IllegalFPCMov) {
Evan Cheng3f41d662007-10-08 22:16:29 +00005210 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00005211 addTest = false;
5212 }
5213 }
5214
5215 if (addTest) {
5216 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng3f41d662007-10-08 22:16:29 +00005217 Cond= DAG.getNode(X86ISD::CMP, MVT::i32, Cond, DAG.getConstant(0, MVT::i8));
Evan Cheng0488db92007-09-25 01:57:46 +00005218 }
5219
Duncan Sands83ec4b62008-06-06 12:08:01 +00005220 const MVT *VTs = DAG.getNodeValueTypes(Op.getValueType(),
Evan Cheng0488db92007-09-25 01:57:46 +00005221 MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00005222 SmallVector<SDValue, 4> Ops;
Evan Cheng0488db92007-09-25 01:57:46 +00005223 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
5224 // condition is true.
5225 Ops.push_back(Op.getOperand(2));
5226 Ops.push_back(Op.getOperand(1));
5227 Ops.push_back(CC);
5228 Ops.push_back(Cond);
Evan Chenge5f62042007-09-29 00:00:36 +00005229 return DAG.getNode(X86ISD::CMOV, VTs, 2, &Ops[0], Ops.size());
Evan Cheng0488db92007-09-25 01:57:46 +00005230}
5231
Evan Cheng370e5342008-12-03 08:38:43 +00005232// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
5233// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
5234// from the AND / OR.
5235static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
5236 Opc = Op.getOpcode();
5237 if (Opc != ISD::OR && Opc != ISD::AND)
5238 return false;
5239 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5240 Op.getOperand(0).hasOneUse() &&
5241 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
5242 Op.getOperand(1).hasOneUse());
5243}
5244
Dan Gohman475871a2008-07-27 21:46:04 +00005245SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) {
Evan Cheng734503b2006-09-11 02:19:56 +00005246 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005247 SDValue Chain = Op.getOperand(0);
5248 SDValue Cond = Op.getOperand(1);
5249 SDValue Dest = Op.getOperand(2);
5250 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00005251
Evan Cheng0db9fe62006-04-25 20:13:52 +00005252 if (Cond.getOpcode() == ISD::SETCC)
Evan Chenge5f62042007-09-29 00:00:36 +00005253 Cond = LowerSETCC(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00005254#if 0
5255 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00005256 else if (Cond.getOpcode() == X86ISD::ADD ||
5257 Cond.getOpcode() == X86ISD::SUB ||
5258 Cond.getOpcode() == X86ISD::SMUL ||
5259 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00005260 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00005261#endif
5262
Evan Cheng3f41d662007-10-08 22:16:29 +00005263 // If condition flag is set by a X86ISD::CMP, then use it as the condition
5264 // setting operand in place of the X86ISD::SETCC.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005265 if (Cond.getOpcode() == X86ISD::SETCC) {
Evan Cheng734503b2006-09-11 02:19:56 +00005266 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005267
Dan Gohman475871a2008-07-27 21:46:04 +00005268 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00005269 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00005270 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
5271 if (isX86LogicalCmp(Opc) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00005272 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00005273 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00005274 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00005275 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00005276 default: break;
5277 case X86::COND_O:
5278 case X86::COND_C:
Chris Lattnere55484e2008-12-25 05:34:37 +00005279 // These can only come from an arithmetic instruction with overflow,
5280 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00005281 Cond = Cond.getNode()->getOperand(1);
5282 addTest = false;
5283 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00005284 }
Evan Cheng0488db92007-09-25 01:57:46 +00005285 }
Evan Cheng370e5342008-12-03 08:38:43 +00005286 } else {
5287 unsigned CondOpc;
5288 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
5289 SDValue Cmp = Cond.getOperand(0).getOperand(1);
5290 unsigned Opc = Cmp.getOpcode();
5291 if (CondOpc == ISD::OR) {
5292 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
5293 // two branches instead of an explicit OR instruction with a
5294 // separate test.
5295 if (Cmp == Cond.getOperand(1).getOperand(1) &&
5296 isX86LogicalCmp(Opc)) {
5297 CC = Cond.getOperand(0).getOperand(0);
5298 Chain = DAG.getNode(X86ISD::BRCOND, Op.getValueType(),
5299 Chain, Dest, CC, Cmp);
5300 CC = Cond.getOperand(1).getOperand(0);
5301 Cond = Cmp;
5302 addTest = false;
5303 }
5304 } else { // ISD::AND
5305 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
5306 // two branches instead of an explicit AND instruction with a
5307 // separate test. However, we only do this if this block doesn't
5308 // have a fall-through edge, because this requires an explicit
5309 // jmp when the condition is false.
5310 if (Cmp == Cond.getOperand(1).getOperand(1) &&
5311 isX86LogicalCmp(Opc) &&
5312 Op.getNode()->hasOneUse()) {
5313 X86::CondCode CCode =
5314 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5315 CCode = X86::GetOppositeBranchCondition(CCode);
5316 CC = DAG.getConstant(CCode, MVT::i8);
5317 SDValue User = SDValue(*Op.getNode()->use_begin(), 0);
5318 // Look for an unconditional branch following this conditional branch.
5319 // We need this because we need to reverse the successors in order
5320 // to implement FCMP_OEQ.
5321 if (User.getOpcode() == ISD::BR) {
5322 SDValue FalseBB = User.getOperand(1);
5323 SDValue NewBR =
5324 DAG.UpdateNodeOperands(User, User.getOperand(0), Dest);
5325 assert(NewBR == User);
5326 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00005327
Evan Cheng370e5342008-12-03 08:38:43 +00005328 Chain = DAG.getNode(X86ISD::BRCOND, Op.getValueType(),
5329 Chain, Dest, CC, Cmp);
5330 X86::CondCode CCode =
5331 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
5332 CCode = X86::GetOppositeBranchCondition(CCode);
5333 CC = DAG.getConstant(CCode, MVT::i8);
5334 Cond = Cmp;
5335 addTest = false;
5336 }
5337 }
Dan Gohman279c22e2008-10-21 03:29:32 +00005338 }
5339 }
Evan Cheng0488db92007-09-25 01:57:46 +00005340 }
5341
5342 if (addTest) {
5343 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Chenge5f62042007-09-29 00:00:36 +00005344 Cond= DAG.getNode(X86ISD::CMP, MVT::i32, Cond, DAG.getConstant(0, MVT::i8));
Evan Cheng0488db92007-09-25 01:57:46 +00005345 }
Evan Chenge5f62042007-09-29 00:00:36 +00005346 return DAG.getNode(X86ISD::BRCOND, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00005347 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00005348}
5349
Anton Korobeynikove060b532007-04-17 19:34:00 +00005350
5351// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
5352// Calls to _alloca is needed to probe the stack when allocating more than 4k
5353// bytes in one go. Touching the stack at 4K increments is necessary to ensure
5354// that the guard pages used by the OS virtual memory manager are allocated in
5355// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00005356SDValue
5357X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005358 SelectionDAG &DAG) {
Anton Korobeynikove060b532007-04-17 19:34:00 +00005359 assert(Subtarget->isTargetCygMing() &&
5360 "This should be used only on Cygwin/Mingw targets");
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005361
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00005362 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00005363 SDValue Chain = Op.getOperand(0);
5364 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00005365 // FIXME: Ensure alignment here
5366
Dan Gohman475871a2008-07-27 21:46:04 +00005367 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005368
Duncan Sands83ec4b62008-06-06 12:08:01 +00005369 MVT IntPtr = getPointerTy();
5370 MVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00005371
Chris Lattnere563bbc2008-10-11 22:08:30 +00005372 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005373
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005374 Chain = DAG.getCopyToReg(Chain, X86::EAX, Size, Flag);
5375 Flag = Chain.getValue(1);
5376
5377 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00005378 SDValue Ops[] = { Chain,
Bill Wendling056292f2008-09-16 21:48:12 +00005379 DAG.getTargetExternalSymbol("_alloca", IntPtr),
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005380 DAG.getRegister(X86::EAX, IntPtr),
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005381 DAG.getRegister(X86StackPtr, SPTy),
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005382 Flag };
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005383 Chain = DAG.getNode(X86ISD::CALL, NodeTys, Ops, 5);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005384 Flag = Chain.getValue(1);
5385
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005386 Chain = DAG.getCALLSEQ_END(Chain,
Chris Lattnere563bbc2008-10-11 22:08:30 +00005387 DAG.getIntPtrConstant(0, true),
5388 DAG.getIntPtrConstant(0, true),
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005389 Flag);
5390
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00005391 Chain = DAG.getCopyFromReg(Chain, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00005392
Dan Gohman475871a2008-07-27 21:46:04 +00005393 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Duncan Sands4bdcb612008-07-02 17:40:58 +00005394 return DAG.getMergeValues(Ops1, 2);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00005395}
5396
Dan Gohman475871a2008-07-27 21:46:04 +00005397SDValue
Dan Gohman707e0182008-04-12 04:36:06 +00005398X86TargetLowering::EmitTargetCodeForMemset(SelectionDAG &DAG,
Bill Wendling6f287b22008-09-30 21:22:07 +00005399 SDValue Chain,
5400 SDValue Dst, SDValue Src,
5401 SDValue Size, unsigned Align,
5402 const Value *DstSV,
Bill Wendling6158d842008-10-01 00:59:58 +00005403 uint64_t DstSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00005404 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005405
Bill Wendling6f287b22008-09-30 21:22:07 +00005406 // If not DWORD aligned or size is more than the threshold, call the library.
5407 // The libc version is likely to be faster for these cases. It can use the
5408 // address value and run time information about the CPU.
Evan Cheng1887c1c2008-08-21 21:00:15 +00005409 if ((Align & 3) != 0 ||
Dan Gohman707e0182008-04-12 04:36:06 +00005410 !ConstantSize ||
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005411 ConstantSize->getZExtValue() >
5412 getSubtarget()->getMaxInlineSizeThreshold()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005413 SDValue InFlag(0, 0);
Dan Gohman68d599d2008-04-01 20:38:36 +00005414
5415 // Check to see if there is a specialized entry-point for memory zeroing.
Dan Gohman707e0182008-04-12 04:36:06 +00005416 ConstantSDNode *V = dyn_cast<ConstantSDNode>(Src);
Bill Wendling6f287b22008-09-30 21:22:07 +00005417
Bill Wendling6158d842008-10-01 00:59:58 +00005418 if (const char *bzeroEntry = V &&
5419 V->isNullValue() ? Subtarget->getBZeroEntry() : 0) {
5420 MVT IntPtr = getPointerTy();
5421 const Type *IntPtrTy = TD->getIntPtrType();
5422 TargetLowering::ArgListTy Args;
5423 TargetLowering::ArgListEntry Entry;
5424 Entry.Node = Dst;
5425 Entry.Ty = IntPtrTy;
5426 Args.push_back(Entry);
5427 Entry.Node = Size;
5428 Args.push_back(Entry);
5429 std::pair<SDValue,SDValue> CallResult =
5430 LowerCallTo(Chain, Type::VoidTy, false, false, false, false,
5431 CallingConv::C, false,
5432 DAG.getExternalSymbol(bzeroEntry, IntPtr), Args, DAG);
5433 return CallResult.second;
Dan Gohman68d599d2008-04-01 20:38:36 +00005434 }
5435
Dan Gohman707e0182008-04-12 04:36:06 +00005436 // Otherwise have the target-independent code call memset.
Dan Gohman475871a2008-07-27 21:46:04 +00005437 return SDValue();
Evan Cheng48090aa2006-03-21 23:01:21 +00005438 }
Evan Chengb9df0ca2006-03-22 02:53:00 +00005439
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005440 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00005441 SDValue InFlag(0, 0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005442 MVT AVT;
Dan Gohman475871a2008-07-27 21:46:04 +00005443 SDValue Count;
Dan Gohman707e0182008-04-12 04:36:06 +00005444 ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Src);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005445 unsigned BytesLeft = 0;
5446 bool TwoRepStos = false;
5447 if (ValC) {
5448 unsigned ValReg;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005449 uint64_t Val = ValC->getZExtValue() & 255;
Evan Cheng5ced1d82006-04-06 23:23:56 +00005450
Evan Cheng0db9fe62006-04-25 20:13:52 +00005451 // If the value is a constant, then we can potentially use larger sets.
5452 switch (Align & 3) {
Evan Cheng1887c1c2008-08-21 21:00:15 +00005453 case 2: // WORD aligned
5454 AVT = MVT::i16;
5455 ValReg = X86::AX;
5456 Val = (Val << 8) | Val;
5457 break;
5458 case 0: // DWORD aligned
5459 AVT = MVT::i32;
5460 ValReg = X86::EAX;
5461 Val = (Val << 8) | Val;
5462 Val = (Val << 16) | Val;
5463 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) { // QWORD aligned
5464 AVT = MVT::i64;
5465 ValReg = X86::RAX;
5466 Val = (Val << 32) | Val;
5467 }
5468 break;
5469 default: // Byte aligned
5470 AVT = MVT::i8;
5471 ValReg = X86::AL;
5472 Count = DAG.getIntPtrConstant(SizeVal);
5473 break;
Evan Cheng80d428c2006-04-19 22:48:17 +00005474 }
5475
Duncan Sands8e4eb092008-06-08 20:54:56 +00005476 if (AVT.bitsGT(MVT::i8)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005477 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00005478 Count = DAG.getIntPtrConstant(SizeVal / UBytes);
5479 BytesLeft = SizeVal % UBytes;
Evan Cheng25ab6902006-09-08 06:48:29 +00005480 }
5481
Evan Cheng0db9fe62006-04-25 20:13:52 +00005482 Chain = DAG.getCopyToReg(Chain, ValReg, DAG.getConstant(Val, AVT),
5483 InFlag);
5484 InFlag = Chain.getValue(1);
5485 } else {
5486 AVT = MVT::i8;
Dan Gohmanbcda2852008-04-16 01:32:32 +00005487 Count = DAG.getIntPtrConstant(SizeVal);
Dan Gohman707e0182008-04-12 04:36:06 +00005488 Chain = DAG.getCopyToReg(Chain, X86::AL, Src, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005489 InFlag = Chain.getValue(1);
Evan Chengb9df0ca2006-03-22 02:53:00 +00005490 }
Evan Chengc78d3b42006-04-24 18:01:45 +00005491
Evan Cheng25ab6902006-09-08 06:48:29 +00005492 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RCX : X86::ECX,
5493 Count, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005494 InFlag = Chain.getValue(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00005495 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RDI : X86::EDI,
Dan Gohman707e0182008-04-12 04:36:06 +00005496 Dst, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005497 InFlag = Chain.getValue(1);
Evan Chenga0b3afb2006-03-27 07:00:16 +00005498
Chris Lattnerd96d0722007-02-25 06:40:16 +00005499 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00005500 SmallVector<SDValue, 8> Ops;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005501 Ops.push_back(Chain);
5502 Ops.push_back(DAG.getValueType(AVT));
5503 Ops.push_back(InFlag);
Evan Cheng311ace02006-08-11 07:35:45 +00005504 Chain = DAG.getNode(X86ISD::REP_STOS, Tys, &Ops[0], Ops.size());
Evan Chengc78d3b42006-04-24 18:01:45 +00005505
Evan Cheng0db9fe62006-04-25 20:13:52 +00005506 if (TwoRepStos) {
5507 InFlag = Chain.getValue(1);
Dan Gohman707e0182008-04-12 04:36:06 +00005508 Count = Size;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005509 MVT CVT = Count.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00005510 SDValue Left = DAG.getNode(ISD::AND, CVT, Count,
Evan Cheng25ab6902006-09-08 06:48:29 +00005511 DAG.getConstant((AVT == MVT::i64) ? 7 : 3, CVT));
5512 Chain = DAG.getCopyToReg(Chain, (CVT == MVT::i64) ? X86::RCX : X86::ECX,
5513 Left, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005514 InFlag = Chain.getValue(1);
Chris Lattnerd96d0722007-02-25 06:40:16 +00005515 Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005516 Ops.clear();
5517 Ops.push_back(Chain);
5518 Ops.push_back(DAG.getValueType(MVT::i8));
5519 Ops.push_back(InFlag);
Evan Cheng311ace02006-08-11 07:35:45 +00005520 Chain = DAG.getNode(X86ISD::REP_STOS, Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00005521 } else if (BytesLeft) {
Dan Gohman707e0182008-04-12 04:36:06 +00005522 // Handle the last 1 - 7 bytes.
5523 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005524 MVT AddrVT = Dst.getValueType();
5525 MVT SizeVT = Size.getValueType();
Dan Gohman707e0182008-04-12 04:36:06 +00005526
5527 Chain = DAG.getMemset(Chain,
5528 DAG.getNode(ISD::ADD, AddrVT, Dst,
5529 DAG.getConstant(Offset, AddrVT)),
5530 Src,
5531 DAG.getConstant(BytesLeft, SizeVT),
Dan Gohman1f13c682008-04-28 17:15:20 +00005532 Align, DstSV, DstSVOff + Offset);
Evan Cheng386031a2006-03-24 07:29:27 +00005533 }
Evan Cheng11e15b32006-04-03 20:53:28 +00005534
Dan Gohman707e0182008-04-12 04:36:06 +00005535 // TODO: Use a Tokenfactor, as in memcpy, instead of a single chain.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005536 return Chain;
5537}
Evan Cheng11e15b32006-04-03 20:53:28 +00005538
Dan Gohman475871a2008-07-27 21:46:04 +00005539SDValue
Dan Gohman707e0182008-04-12 04:36:06 +00005540X86TargetLowering::EmitTargetCodeForMemcpy(SelectionDAG &DAG,
Evan Cheng1887c1c2008-08-21 21:00:15 +00005541 SDValue Chain, SDValue Dst, SDValue Src,
5542 SDValue Size, unsigned Align,
5543 bool AlwaysInline,
5544 const Value *DstSV, uint64_t DstSVOff,
5545 const Value *SrcSV, uint64_t SrcSVOff) {
Dan Gohman707e0182008-04-12 04:36:06 +00005546 // This requires the copy size to be a constant, preferrably
5547 // within a subtarget-specific limit.
5548 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
5549 if (!ConstantSize)
Dan Gohman475871a2008-07-27 21:46:04 +00005550 return SDValue();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005551 uint64_t SizeVal = ConstantSize->getZExtValue();
Dan Gohman707e0182008-04-12 04:36:06 +00005552 if (!AlwaysInline && SizeVal > getSubtarget()->getMaxInlineSizeThreshold())
Dan Gohman475871a2008-07-27 21:46:04 +00005553 return SDValue();
Dan Gohman707e0182008-04-12 04:36:06 +00005554
Evan Cheng1887c1c2008-08-21 21:00:15 +00005555 /// If not DWORD aligned, call the library.
5556 if ((Align & 3) != 0)
5557 return SDValue();
5558
5559 // DWORD aligned
5560 MVT AVT = MVT::i32;
5561 if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) // QWORD aligned
Dan Gohman707e0182008-04-12 04:36:06 +00005562 AVT = MVT::i64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005563
Duncan Sands83ec4b62008-06-06 12:08:01 +00005564 unsigned UBytes = AVT.getSizeInBits() / 8;
Dan Gohman707e0182008-04-12 04:36:06 +00005565 unsigned CountVal = SizeVal / UBytes;
Dan Gohman475871a2008-07-27 21:46:04 +00005566 SDValue Count = DAG.getIntPtrConstant(CountVal);
Evan Cheng1887c1c2008-08-21 21:00:15 +00005567 unsigned BytesLeft = SizeVal % UBytes;
Evan Cheng25ab6902006-09-08 06:48:29 +00005568
Dan Gohman475871a2008-07-27 21:46:04 +00005569 SDValue InFlag(0, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00005570 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RCX : X86::ECX,
5571 Count, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005572 InFlag = Chain.getValue(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00005573 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RDI : X86::EDI,
Dan Gohman707e0182008-04-12 04:36:06 +00005574 Dst, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005575 InFlag = Chain.getValue(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00005576 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RSI : X86::ESI,
Dan Gohman707e0182008-04-12 04:36:06 +00005577 Src, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005578 InFlag = Chain.getValue(1);
5579
Chris Lattnerd96d0722007-02-25 06:40:16 +00005580 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00005581 SmallVector<SDValue, 8> Ops;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005582 Ops.push_back(Chain);
5583 Ops.push_back(DAG.getValueType(AVT));
5584 Ops.push_back(InFlag);
Dan Gohman475871a2008-07-27 21:46:04 +00005585 SDValue RepMovs = DAG.getNode(X86ISD::REP_MOVS, Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00005586
Dan Gohman475871a2008-07-27 21:46:04 +00005587 SmallVector<SDValue, 4> Results;
Evan Cheng2749c722008-04-25 00:26:43 +00005588 Results.push_back(RepMovs);
Rafael Espindola068317b2007-09-28 12:53:01 +00005589 if (BytesLeft) {
Dan Gohman707e0182008-04-12 04:36:06 +00005590 // Handle the last 1 - 7 bytes.
5591 unsigned Offset = SizeVal - BytesLeft;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005592 MVT DstVT = Dst.getValueType();
5593 MVT SrcVT = Src.getValueType();
5594 MVT SizeVT = Size.getValueType();
Evan Cheng2749c722008-04-25 00:26:43 +00005595 Results.push_back(DAG.getMemcpy(Chain,
Dan Gohman707e0182008-04-12 04:36:06 +00005596 DAG.getNode(ISD::ADD, DstVT, Dst,
Evan Cheng2749c722008-04-25 00:26:43 +00005597 DAG.getConstant(Offset, DstVT)),
Dan Gohman707e0182008-04-12 04:36:06 +00005598 DAG.getNode(ISD::ADD, SrcVT, Src,
Evan Cheng2749c722008-04-25 00:26:43 +00005599 DAG.getConstant(Offset, SrcVT)),
Dan Gohman707e0182008-04-12 04:36:06 +00005600 DAG.getConstant(BytesLeft, SizeVT),
5601 Align, AlwaysInline,
Dan Gohman1f13c682008-04-28 17:15:20 +00005602 DstSV, DstSVOff + Offset,
5603 SrcSV, SrcSVOff + Offset));
Evan Chengb067a1e2006-03-31 19:22:53 +00005604 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005605
Dan Gohman707e0182008-04-12 04:36:06 +00005606 return DAG.getNode(ISD::TokenFactor, MVT::Other, &Results[0], Results.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00005607}
5608
Dan Gohman475871a2008-07-27 21:46:04 +00005609SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) {
Dan Gohman69de1932008-02-06 22:27:42 +00005610 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Evan Cheng8b2794a2006-10-13 21:14:26 +00005611
Evan Cheng25ab6902006-09-08 06:48:29 +00005612 if (!Subtarget->is64Bit()) {
5613 // vastart just stores the address of the VarArgsFrameIndex slot into the
5614 // memory location argument.
Dan Gohman475871a2008-07-27 21:46:04 +00005615 SDValue FR = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dan Gohman69de1932008-02-06 22:27:42 +00005616 return DAG.getStore(Op.getOperand(0), FR,Op.getOperand(1), SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00005617 }
5618
5619 // __va_list_tag:
5620 // gp_offset (0 - 6 * 8)
5621 // fp_offset (48 - 48 + 8 * 16)
5622 // overflow_arg_area (point to parameters coming in memory).
5623 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00005624 SmallVector<SDValue, 8> MemOps;
5625 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00005626 // Store gp_offset
Dan Gohman475871a2008-07-27 21:46:04 +00005627 SDValue Store = DAG.getStore(Op.getOperand(0),
Evan Cheng786225a2006-10-05 23:01:46 +00005628 DAG.getConstant(VarArgsGPOffset, MVT::i32),
Dan Gohman69de1932008-02-06 22:27:42 +00005629 FIN, SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00005630 MemOps.push_back(Store);
5631
5632 // Store fp_offset
Chris Lattner0bd48932008-01-17 07:00:52 +00005633 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN, DAG.getIntPtrConstant(4));
Evan Cheng786225a2006-10-05 23:01:46 +00005634 Store = DAG.getStore(Op.getOperand(0),
5635 DAG.getConstant(VarArgsFPOffset, MVT::i32),
Dan Gohman69de1932008-02-06 22:27:42 +00005636 FIN, SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00005637 MemOps.push_back(Store);
5638
5639 // Store ptr to overflow_arg_area
Chris Lattner0bd48932008-01-17 07:00:52 +00005640 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN, DAG.getIntPtrConstant(4));
Dan Gohman475871a2008-07-27 21:46:04 +00005641 SDValue OVFIN = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Dan Gohman69de1932008-02-06 22:27:42 +00005642 Store = DAG.getStore(Op.getOperand(0), OVFIN, FIN, SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00005643 MemOps.push_back(Store);
5644
5645 // Store ptr to reg_save_area.
Chris Lattner0bd48932008-01-17 07:00:52 +00005646 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN, DAG.getIntPtrConstant(8));
Dan Gohman475871a2008-07-27 21:46:04 +00005647 SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Dan Gohman69de1932008-02-06 22:27:42 +00005648 Store = DAG.getStore(Op.getOperand(0), RSFIN, FIN, SV, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00005649 MemOps.push_back(Store);
5650 return DAG.getNode(ISD::TokenFactor, MVT::Other, &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00005651}
5652
Dan Gohman475871a2008-07-27 21:46:04 +00005653SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) {
Dan Gohman9018e832008-05-10 01:26:14 +00005654 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
5655 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_arg!");
Dan Gohman475871a2008-07-27 21:46:04 +00005656 SDValue Chain = Op.getOperand(0);
5657 SDValue SrcPtr = Op.getOperand(1);
5658 SDValue SrcSV = Op.getOperand(2);
Dan Gohman9018e832008-05-10 01:26:14 +00005659
5660 assert(0 && "VAArgInst is not yet implemented for x86-64!");
5661 abort();
Dan Gohman475871a2008-07-27 21:46:04 +00005662 return SDValue();
Dan Gohman9018e832008-05-10 01:26:14 +00005663}
5664
Dan Gohman475871a2008-07-27 21:46:04 +00005665SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) {
Evan Chengae642192007-03-02 23:16:35 +00005666 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00005667 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00005668 SDValue Chain = Op.getOperand(0);
5669 SDValue DstPtr = Op.getOperand(1);
5670 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00005671 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
5672 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Evan Chengae642192007-03-02 23:16:35 +00005673
Dan Gohman28269132008-04-18 20:55:41 +00005674 return DAG.getMemcpy(Chain, DstPtr, SrcPtr,
5675 DAG.getIntPtrConstant(24), 8, false,
5676 DstSV, 0, SrcSV, 0);
Evan Chengae642192007-03-02 23:16:35 +00005677}
5678
Dan Gohman475871a2008-07-27 21:46:04 +00005679SDValue
5680X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005681 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005682 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00005683 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00005684 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005685 case Intrinsic::x86_sse_comieq_ss:
5686 case Intrinsic::x86_sse_comilt_ss:
5687 case Intrinsic::x86_sse_comile_ss:
5688 case Intrinsic::x86_sse_comigt_ss:
5689 case Intrinsic::x86_sse_comige_ss:
5690 case Intrinsic::x86_sse_comineq_ss:
5691 case Intrinsic::x86_sse_ucomieq_ss:
5692 case Intrinsic::x86_sse_ucomilt_ss:
5693 case Intrinsic::x86_sse_ucomile_ss:
5694 case Intrinsic::x86_sse_ucomigt_ss:
5695 case Intrinsic::x86_sse_ucomige_ss:
5696 case Intrinsic::x86_sse_ucomineq_ss:
5697 case Intrinsic::x86_sse2_comieq_sd:
5698 case Intrinsic::x86_sse2_comilt_sd:
5699 case Intrinsic::x86_sse2_comile_sd:
5700 case Intrinsic::x86_sse2_comigt_sd:
5701 case Intrinsic::x86_sse2_comige_sd:
5702 case Intrinsic::x86_sse2_comineq_sd:
5703 case Intrinsic::x86_sse2_ucomieq_sd:
5704 case Intrinsic::x86_sse2_ucomilt_sd:
5705 case Intrinsic::x86_sse2_ucomile_sd:
5706 case Intrinsic::x86_sse2_ucomigt_sd:
5707 case Intrinsic::x86_sse2_ucomige_sd:
5708 case Intrinsic::x86_sse2_ucomineq_sd: {
5709 unsigned Opc = 0;
5710 ISD::CondCode CC = ISD::SETCC_INVALID;
5711 switch (IntNo) {
5712 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005713 case Intrinsic::x86_sse_comieq_ss:
5714 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005715 Opc = X86ISD::COMI;
5716 CC = ISD::SETEQ;
5717 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00005718 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005719 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005720 Opc = X86ISD::COMI;
5721 CC = ISD::SETLT;
5722 break;
5723 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005724 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005725 Opc = X86ISD::COMI;
5726 CC = ISD::SETLE;
5727 break;
5728 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005729 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005730 Opc = X86ISD::COMI;
5731 CC = ISD::SETGT;
5732 break;
5733 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005734 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005735 Opc = X86ISD::COMI;
5736 CC = ISD::SETGE;
5737 break;
5738 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005739 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005740 Opc = X86ISD::COMI;
5741 CC = ISD::SETNE;
5742 break;
5743 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005744 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005745 Opc = X86ISD::UCOMI;
5746 CC = ISD::SETEQ;
5747 break;
5748 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005749 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005750 Opc = X86ISD::UCOMI;
5751 CC = ISD::SETLT;
5752 break;
5753 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005754 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005755 Opc = X86ISD::UCOMI;
5756 CC = ISD::SETLE;
5757 break;
5758 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005759 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005760 Opc = X86ISD::UCOMI;
5761 CC = ISD::SETGT;
5762 break;
5763 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00005764 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005765 Opc = X86ISD::UCOMI;
5766 CC = ISD::SETGE;
5767 break;
5768 case Intrinsic::x86_sse_ucomineq_ss:
5769 case Intrinsic::x86_sse2_ucomineq_sd:
5770 Opc = X86ISD::UCOMI;
5771 CC = ISD::SETNE;
5772 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00005773 }
Evan Cheng734503b2006-09-11 02:19:56 +00005774
Dan Gohman475871a2008-07-27 21:46:04 +00005775 SDValue LHS = Op.getOperand(1);
5776 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00005777 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman475871a2008-07-27 21:46:04 +00005778 SDValue Cond = DAG.getNode(Opc, MVT::i32, LHS, RHS);
5779 SDValue SetCC = DAG.getNode(X86ISD::SETCC, MVT::i8,
Evan Cheng0ac3fc22008-08-17 19:22:34 +00005780 DAG.getConstant(X86CC, MVT::i8), Cond);
5781 return DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00005782 }
Evan Cheng5759f972008-05-04 09:15:50 +00005783
5784 // Fix vector shift instructions where the last operand is a non-immediate
5785 // i32 value.
5786 case Intrinsic::x86_sse2_pslli_w:
5787 case Intrinsic::x86_sse2_pslli_d:
5788 case Intrinsic::x86_sse2_pslli_q:
5789 case Intrinsic::x86_sse2_psrli_w:
5790 case Intrinsic::x86_sse2_psrli_d:
5791 case Intrinsic::x86_sse2_psrli_q:
5792 case Intrinsic::x86_sse2_psrai_w:
5793 case Intrinsic::x86_sse2_psrai_d:
5794 case Intrinsic::x86_mmx_pslli_w:
5795 case Intrinsic::x86_mmx_pslli_d:
5796 case Intrinsic::x86_mmx_pslli_q:
5797 case Intrinsic::x86_mmx_psrli_w:
5798 case Intrinsic::x86_mmx_psrli_d:
5799 case Intrinsic::x86_mmx_psrli_q:
5800 case Intrinsic::x86_mmx_psrai_w:
5801 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00005802 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00005803 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00005804 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00005805
5806 unsigned NewIntNo = 0;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005807 MVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00005808 switch (IntNo) {
5809 case Intrinsic::x86_sse2_pslli_w:
5810 NewIntNo = Intrinsic::x86_sse2_psll_w;
5811 break;
5812 case Intrinsic::x86_sse2_pslli_d:
5813 NewIntNo = Intrinsic::x86_sse2_psll_d;
5814 break;
5815 case Intrinsic::x86_sse2_pslli_q:
5816 NewIntNo = Intrinsic::x86_sse2_psll_q;
5817 break;
5818 case Intrinsic::x86_sse2_psrli_w:
5819 NewIntNo = Intrinsic::x86_sse2_psrl_w;
5820 break;
5821 case Intrinsic::x86_sse2_psrli_d:
5822 NewIntNo = Intrinsic::x86_sse2_psrl_d;
5823 break;
5824 case Intrinsic::x86_sse2_psrli_q:
5825 NewIntNo = Intrinsic::x86_sse2_psrl_q;
5826 break;
5827 case Intrinsic::x86_sse2_psrai_w:
5828 NewIntNo = Intrinsic::x86_sse2_psra_w;
5829 break;
5830 case Intrinsic::x86_sse2_psrai_d:
5831 NewIntNo = Intrinsic::x86_sse2_psra_d;
5832 break;
5833 default: {
5834 ShAmtVT = MVT::v2i32;
5835 switch (IntNo) {
5836 case Intrinsic::x86_mmx_pslli_w:
5837 NewIntNo = Intrinsic::x86_mmx_psll_w;
5838 break;
5839 case Intrinsic::x86_mmx_pslli_d:
5840 NewIntNo = Intrinsic::x86_mmx_psll_d;
5841 break;
5842 case Intrinsic::x86_mmx_pslli_q:
5843 NewIntNo = Intrinsic::x86_mmx_psll_q;
5844 break;
5845 case Intrinsic::x86_mmx_psrli_w:
5846 NewIntNo = Intrinsic::x86_mmx_psrl_w;
5847 break;
5848 case Intrinsic::x86_mmx_psrli_d:
5849 NewIntNo = Intrinsic::x86_mmx_psrl_d;
5850 break;
5851 case Intrinsic::x86_mmx_psrli_q:
5852 NewIntNo = Intrinsic::x86_mmx_psrl_q;
5853 break;
5854 case Intrinsic::x86_mmx_psrai_w:
5855 NewIntNo = Intrinsic::x86_mmx_psra_w;
5856 break;
5857 case Intrinsic::x86_mmx_psrai_d:
5858 NewIntNo = Intrinsic::x86_mmx_psra_d;
5859 break;
5860 default: abort(); // Can't reach here.
5861 }
5862 break;
5863 }
5864 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00005865 MVT VT = Op.getValueType();
Evan Cheng5759f972008-05-04 09:15:50 +00005866 ShAmt = DAG.getNode(ISD::BIT_CONVERT, VT,
5867 DAG.getNode(ISD::SCALAR_TO_VECTOR, ShAmtVT, ShAmt));
5868 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
5869 DAG.getConstant(NewIntNo, MVT::i32),
5870 Op.getOperand(1), ShAmt);
5871 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00005872 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00005873}
Evan Cheng72261582005-12-20 06:22:03 +00005874
Dan Gohman475871a2008-07-27 21:46:04 +00005875SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) {
Nate Begemanbcc5f362007-01-29 22:58:52 +00005876 // Depths > 0 not supported yet!
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005877 if (cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue() > 0)
Dan Gohman475871a2008-07-27 21:46:04 +00005878 return SDValue();
Nate Begemanbcc5f362007-01-29 22:58:52 +00005879
5880 // Just load the return address
Dan Gohman475871a2008-07-27 21:46:04 +00005881 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00005882 return DAG.getLoad(getPointerTy(), DAG.getEntryNode(), RetAddrFI, NULL, 0);
5883}
5884
Dan Gohman475871a2008-07-27 21:46:04 +00005885SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) {
Evan Cheng184793f2008-09-27 01:56:22 +00005886 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5887 MFI->setFrameAddressIsTaken(true);
5888 MVT VT = Op.getValueType();
5889 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
5890 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
5891 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), FrameReg, VT);
5892 while (Depth--)
5893 FrameAddr = DAG.getLoad(VT, DAG.getEntryNode(), FrameAddr, NULL, 0);
5894 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00005895}
5896
Dan Gohman475871a2008-07-27 21:46:04 +00005897SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Anton Korobeynikov260a6b82008-09-08 21:12:11 +00005898 SelectionDAG &DAG) {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00005899 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00005900}
5901
Dan Gohman475871a2008-07-27 21:46:04 +00005902SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG)
Anton Korobeynikov2365f512007-07-14 14:06:15 +00005903{
Anton Korobeynikov2365f512007-07-14 14:06:15 +00005904 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00005905 SDValue Chain = Op.getOperand(0);
5906 SDValue Offset = Op.getOperand(1);
5907 SDValue Handler = Op.getOperand(2);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00005908
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00005909 SDValue Frame = DAG.getRegister(Subtarget->is64Bit() ? X86::RBP : X86::EBP,
5910 getPointerTy());
5911 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00005912
Dan Gohman475871a2008-07-27 21:46:04 +00005913 SDValue StoreAddr = DAG.getNode(ISD::SUB, getPointerTy(), Frame,
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00005914 DAG.getIntPtrConstant(-TD->getPointerSize()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00005915 StoreAddr = DAG.getNode(ISD::ADD, getPointerTy(), StoreAddr, Offset);
5916 Chain = DAG.getStore(Chain, Handler, StoreAddr, NULL, 0);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00005917 Chain = DAG.getCopyToReg(Chain, StoreAddrReg, StoreAddr);
5918 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00005919
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00005920 return DAG.getNode(X86ISD::EH_RETURN,
5921 MVT::Other,
5922 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00005923}
5924
Dan Gohman475871a2008-07-27 21:46:04 +00005925SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Duncan Sandsb116fac2007-07-27 20:02:49 +00005926 SelectionDAG &DAG) {
Dan Gohman475871a2008-07-27 21:46:04 +00005927 SDValue Root = Op.getOperand(0);
5928 SDValue Trmp = Op.getOperand(1); // trampoline
5929 SDValue FPtr = Op.getOperand(2); // nested function
5930 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Duncan Sandsb116fac2007-07-27 20:02:49 +00005931
Dan Gohman69de1932008-02-06 22:27:42 +00005932 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00005933
Duncan Sands339e14f2008-01-16 22:55:25 +00005934 const X86InstrInfo *TII =
5935 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
5936
Duncan Sandsb116fac2007-07-27 20:02:49 +00005937 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005938 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00005939
5940 // Large code-model.
5941
5942 const unsigned char JMP64r = TII->getBaseOpcodeFor(X86::JMP64r);
5943 const unsigned char MOV64ri = TII->getBaseOpcodeFor(X86::MOV64ri);
5944
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00005945 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
5946 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00005947
5948 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
5949
5950 // Load the pointer to the nested function into R11.
5951 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00005952 SDValue Addr = Trmp;
Duncan Sands339e14f2008-01-16 22:55:25 +00005953 OutChains[0] = DAG.getStore(Root, DAG.getConstant(OpCode, MVT::i16), Addr,
Dan Gohman69de1932008-02-06 22:27:42 +00005954 TrmpAddr, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00005955
5956 Addr = DAG.getNode(ISD::ADD, MVT::i64, Trmp, DAG.getConstant(2, MVT::i64));
Dan Gohman69de1932008-02-06 22:27:42 +00005957 OutChains[1] = DAG.getStore(Root, FPtr, Addr, TrmpAddr, 2, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00005958
5959 // Load the 'nest' parameter value into R10.
5960 // R10 is specified in X86CallingConv.td
5961 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
5962 Addr = DAG.getNode(ISD::ADD, MVT::i64, Trmp, DAG.getConstant(10, MVT::i64));
5963 OutChains[2] = DAG.getStore(Root, DAG.getConstant(OpCode, MVT::i16), Addr,
Dan Gohman69de1932008-02-06 22:27:42 +00005964 TrmpAddr, 10);
Duncan Sands339e14f2008-01-16 22:55:25 +00005965
5966 Addr = DAG.getNode(ISD::ADD, MVT::i64, Trmp, DAG.getConstant(12, MVT::i64));
Dan Gohman69de1932008-02-06 22:27:42 +00005967 OutChains[3] = DAG.getStore(Root, Nest, Addr, TrmpAddr, 12, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00005968
5969 // Jump to the nested function.
5970 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
5971 Addr = DAG.getNode(ISD::ADD, MVT::i64, Trmp, DAG.getConstant(20, MVT::i64));
5972 OutChains[4] = DAG.getStore(Root, DAG.getConstant(OpCode, MVT::i16), Addr,
Dan Gohman69de1932008-02-06 22:27:42 +00005973 TrmpAddr, 20);
Duncan Sands339e14f2008-01-16 22:55:25 +00005974
5975 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
5976 Addr = DAG.getNode(ISD::ADD, MVT::i64, Trmp, DAG.getConstant(22, MVT::i64));
5977 OutChains[5] = DAG.getStore(Root, DAG.getConstant(ModRM, MVT::i8), Addr,
Dan Gohman69de1932008-02-06 22:27:42 +00005978 TrmpAddr, 22);
Duncan Sands339e14f2008-01-16 22:55:25 +00005979
Dan Gohman475871a2008-07-27 21:46:04 +00005980 SDValue Ops[] =
Duncan Sands339e14f2008-01-16 22:55:25 +00005981 { Trmp, DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains, 6) };
Duncan Sands4bdcb612008-07-02 17:40:58 +00005982 return DAG.getMergeValues(Ops, 2);
Duncan Sandsb116fac2007-07-27 20:02:49 +00005983 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00005984 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00005985 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
5986 unsigned CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00005987 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00005988
5989 switch (CC) {
5990 default:
5991 assert(0 && "Unsupported calling convention");
5992 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00005993 case CallingConv::X86_StdCall: {
5994 // Pass 'nest' parameter in ECX.
5995 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00005996 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00005997
5998 // Check that ECX wasn't needed by an 'inreg' parameter.
5999 const FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00006000 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00006001
Chris Lattner58d74912008-03-12 17:45:29 +00006002 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00006003 unsigned InRegCount = 0;
6004 unsigned Idx = 1;
6005
6006 for (FunctionType::param_iterator I = FTy->param_begin(),
6007 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00006008 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00006009 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00006010 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006011
6012 if (InRegCount > 2) {
6013 cerr << "Nest register in use - reduce number of inreg parameters!\n";
6014 abort();
6015 }
6016 }
6017 break;
6018 }
6019 case CallingConv::X86_FastCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00006020 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00006021 // Pass 'nest' parameter in EAX.
6022 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00006023 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006024 break;
6025 }
6026
Dan Gohman475871a2008-07-27 21:46:04 +00006027 SDValue OutChains[4];
6028 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00006029
6030 Addr = DAG.getNode(ISD::ADD, MVT::i32, Trmp, DAG.getConstant(10, MVT::i32));
6031 Disp = DAG.getNode(ISD::SUB, MVT::i32, FPtr, Addr);
6032
Duncan Sands339e14f2008-01-16 22:55:25 +00006033 const unsigned char MOV32ri = TII->getBaseOpcodeFor(X86::MOV32ri);
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00006034 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Duncan Sandsee465742007-08-29 19:01:20 +00006035 OutChains[0] = DAG.getStore(Root, DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Dan Gohman69de1932008-02-06 22:27:42 +00006036 Trmp, TrmpAddr, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006037
6038 Addr = DAG.getNode(ISD::ADD, MVT::i32, Trmp, DAG.getConstant(1, MVT::i32));
Dan Gohman69de1932008-02-06 22:27:42 +00006039 OutChains[1] = DAG.getStore(Root, Nest, Addr, TrmpAddr, 1, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006040
Duncan Sands339e14f2008-01-16 22:55:25 +00006041 const unsigned char JMP = TII->getBaseOpcodeFor(X86::JMP);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006042 Addr = DAG.getNode(ISD::ADD, MVT::i32, Trmp, DAG.getConstant(5, MVT::i32));
6043 OutChains[2] = DAG.getStore(Root, DAG.getConstant(JMP, MVT::i8), Addr,
Dan Gohman69de1932008-02-06 22:27:42 +00006044 TrmpAddr, 5, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006045
6046 Addr = DAG.getNode(ISD::ADD, MVT::i32, Trmp, DAG.getConstant(6, MVT::i32));
Dan Gohman69de1932008-02-06 22:27:42 +00006047 OutChains[3] = DAG.getStore(Root, Disp, Addr, TrmpAddr, 6, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006048
Dan Gohman475871a2008-07-27 21:46:04 +00006049 SDValue Ops[] =
Duncan Sandsf7331b32007-09-11 14:10:23 +00006050 { Trmp, DAG.getNode(ISD::TokenFactor, MVT::Other, OutChains, 4) };
Duncan Sands4bdcb612008-07-02 17:40:58 +00006051 return DAG.getMergeValues(Ops, 2);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006052 }
6053}
6054
Dan Gohman475871a2008-07-27 21:46:04 +00006055SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op, SelectionDAG &DAG) {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006056 /*
6057 The rounding mode is in bits 11:10 of FPSR, and has the following
6058 settings:
6059 00 Round to nearest
6060 01 Round to -inf
6061 10 Round to +inf
6062 11 Round to 0
6063
6064 FLT_ROUNDS, on the other hand, expects the following:
6065 -1 Undefined
6066 0 Round to 0
6067 1 Round to nearest
6068 2 Round to +inf
6069 3 Round to -inf
6070
6071 To perform the conversion, we do:
6072 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
6073 */
6074
6075 MachineFunction &MF = DAG.getMachineFunction();
6076 const TargetMachine &TM = MF.getTarget();
6077 const TargetFrameInfo &TFI = *TM.getFrameInfo();
6078 unsigned StackAlignment = TFI.getStackAlignment();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006079 MVT VT = Op.getValueType();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006080
6081 // Save FP Control Word to stack slot
6082 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment);
Dan Gohman475871a2008-07-27 21:46:04 +00006083 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006084
Dan Gohman475871a2008-07-27 21:46:04 +00006085 SDValue Chain = DAG.getNode(X86ISD::FNSTCW16m, MVT::Other,
Evan Cheng8a186ae2008-09-24 23:26:36 +00006086 DAG.getEntryNode(), StackSlot);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006087
6088 // Load FP Control Word from stack slot
Dan Gohman475871a2008-07-27 21:46:04 +00006089 SDValue CWD = DAG.getLoad(MVT::i16, Chain, StackSlot, NULL, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006090
6091 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00006092 SDValue CWD1 =
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006093 DAG.getNode(ISD::SRL, MVT::i16,
6094 DAG.getNode(ISD::AND, MVT::i16,
6095 CWD, DAG.getConstant(0x800, MVT::i16)),
6096 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00006097 SDValue CWD2 =
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006098 DAG.getNode(ISD::SRL, MVT::i16,
6099 DAG.getNode(ISD::AND, MVT::i16,
6100 CWD, DAG.getConstant(0x400, MVT::i16)),
6101 DAG.getConstant(9, MVT::i8));
6102
Dan Gohman475871a2008-07-27 21:46:04 +00006103 SDValue RetVal =
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006104 DAG.getNode(ISD::AND, MVT::i16,
6105 DAG.getNode(ISD::ADD, MVT::i16,
6106 DAG.getNode(ISD::OR, MVT::i16, CWD1, CWD2),
6107 DAG.getConstant(1, MVT::i16)),
6108 DAG.getConstant(3, MVT::i16));
6109
6110
Duncan Sands83ec4b62008-06-06 12:08:01 +00006111 return DAG.getNode((VT.getSizeInBits() < 16 ?
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006112 ISD::TRUNCATE : ISD::ZERO_EXTEND), VT, RetVal);
6113}
6114
Dan Gohman475871a2008-07-27 21:46:04 +00006115SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006116 MVT VT = Op.getValueType();
6117 MVT OpVT = VT;
6118 unsigned NumBits = VT.getSizeInBits();
Evan Cheng18efe262007-12-14 02:13:44 +00006119
6120 Op = Op.getOperand(0);
6121 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00006122 // Zero extend to i32 since there is not an i8 bsr.
Evan Cheng18efe262007-12-14 02:13:44 +00006123 OpVT = MVT::i32;
6124 Op = DAG.getNode(ISD::ZERO_EXTEND, OpVT, Op);
6125 }
Evan Cheng18efe262007-12-14 02:13:44 +00006126
Evan Cheng152804e2007-12-14 08:30:15 +00006127 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
6128 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
6129 Op = DAG.getNode(X86ISD::BSR, VTs, Op);
6130
6131 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Dan Gohman475871a2008-07-27 21:46:04 +00006132 SmallVector<SDValue, 4> Ops;
Evan Cheng152804e2007-12-14 08:30:15 +00006133 Ops.push_back(Op);
6134 Ops.push_back(DAG.getConstant(NumBits+NumBits-1, OpVT));
6135 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6136 Ops.push_back(Op.getValue(1));
6137 Op = DAG.getNode(X86ISD::CMOV, OpVT, &Ops[0], 4);
6138
6139 // Finally xor with NumBits-1.
6140 Op = DAG.getNode(ISD::XOR, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
6141
Evan Cheng18efe262007-12-14 02:13:44 +00006142 if (VT == MVT::i8)
6143 Op = DAG.getNode(ISD::TRUNCATE, MVT::i8, Op);
6144 return Op;
6145}
6146
Dan Gohman475871a2008-07-27 21:46:04 +00006147SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006148 MVT VT = Op.getValueType();
6149 MVT OpVT = VT;
6150 unsigned NumBits = VT.getSizeInBits();
Evan Cheng18efe262007-12-14 02:13:44 +00006151
6152 Op = Op.getOperand(0);
6153 if (VT == MVT::i8) {
6154 OpVT = MVT::i32;
6155 Op = DAG.getNode(ISD::ZERO_EXTEND, OpVT, Op);
6156 }
Evan Cheng152804e2007-12-14 08:30:15 +00006157
6158 // Issue a bsf (scan bits forward) which also sets EFLAGS.
6159 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
6160 Op = DAG.getNode(X86ISD::BSF, VTs, Op);
6161
6162 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Dan Gohman475871a2008-07-27 21:46:04 +00006163 SmallVector<SDValue, 4> Ops;
Evan Cheng152804e2007-12-14 08:30:15 +00006164 Ops.push_back(Op);
6165 Ops.push_back(DAG.getConstant(NumBits, OpVT));
6166 Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6167 Ops.push_back(Op.getValue(1));
6168 Op = DAG.getNode(X86ISD::CMOV, OpVT, &Ops[0], 4);
6169
Evan Cheng18efe262007-12-14 02:13:44 +00006170 if (VT == MVT::i8)
6171 Op = DAG.getNode(ISD::TRUNCATE, MVT::i8, Op);
6172 return Op;
6173}
6174
Mon P Wangaf9b9522008-12-18 21:42:19 +00006175SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) {
6176 MVT VT = Op.getValueType();
6177 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
6178
6179 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
6180 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
6181 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
6182 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
6183 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
6184 //
6185 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
6186 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
6187 // return AloBlo + AloBhi + AhiBlo;
6188
6189 SDValue A = Op.getOperand(0);
6190 SDValue B = Op.getOperand(1);
6191
6192 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
6193 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6194 A, DAG.getConstant(32, MVT::i32));
6195 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
6196 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6197 B, DAG.getConstant(32, MVT::i32));
6198 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
6199 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6200 A, B);
6201 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
6202 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6203 A, Bhi);
6204 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
6205 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6206 Ahi, B);
6207 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
6208 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6209 AloBhi, DAG.getConstant(32, MVT::i32));
6210 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, VT,
6211 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6212 AhiBlo, DAG.getConstant(32, MVT::i32));
6213 SDValue Res = DAG.getNode(ISD::ADD, VT, AloBlo, AloBhi);
6214 Res = DAG.getNode(ISD::ADD, VT, Res, AhiBlo);
6215 return Res;
6216}
6217
6218
Bill Wendling74c37652008-12-09 22:08:41 +00006219SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) {
6220 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
6221 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00006222 // looks for this combo and may remove the "setcc" instruction if the "setcc"
6223 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00006224 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00006225 SDValue LHS = N->getOperand(0);
6226 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00006227 unsigned BaseOp = 0;
6228 unsigned Cond = 0;
6229
6230 switch (Op.getOpcode()) {
6231 default: assert(0 && "Unknown ovf instruction!");
6232 case ISD::SADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006233 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00006234 Cond = X86::COND_O;
6235 break;
6236 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006237 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00006238 Cond = X86::COND_C;
6239 break;
6240 case ISD::SSUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006241 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00006242 Cond = X86::COND_O;
6243 break;
6244 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006245 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00006246 Cond = X86::COND_C;
6247 break;
6248 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00006249 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00006250 Cond = X86::COND_O;
6251 break;
6252 case ISD::UMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00006253 BaseOp = X86ISD::UMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00006254 Cond = X86::COND_C;
6255 break;
6256 }
Bill Wendling3fafd932008-11-26 22:37:40 +00006257
Bill Wendling61edeb52008-12-02 01:06:39 +00006258 // Also sets EFLAGS.
6259 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Bill Wendling74c37652008-12-09 22:08:41 +00006260 SDValue Sum = DAG.getNode(BaseOp, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00006261
Bill Wendling61edeb52008-12-02 01:06:39 +00006262 SDValue SetCC =
6263 DAG.getNode(X86ISD::SETCC, N->getValueType(1),
Bill Wendlingbc5e15e2008-12-10 02:01:32 +00006264 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00006265
Bill Wendling61edeb52008-12-02 01:06:39 +00006266 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
6267 return Sum;
Bill Wendling41ea7e72008-11-24 19:21:46 +00006268}
6269
Dan Gohman475871a2008-07-27 21:46:04 +00006270SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) {
Dan Gohmanfd4418f2008-06-25 16:07:49 +00006271 MVT T = Op.getValueType();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00006272 unsigned Reg = 0;
6273 unsigned size = 0;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006274 switch(T.getSimpleVT()) {
6275 default:
6276 assert(false && "Invalid value type!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00006277 case MVT::i8: Reg = X86::AL; size = 1; break;
6278 case MVT::i16: Reg = X86::AX; size = 2; break;
6279 case MVT::i32: Reg = X86::EAX; size = 4; break;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006280 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00006281 assert(Subtarget->is64Bit() && "Node not type legal!");
6282 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006283 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00006284 }
Dan Gohman475871a2008-07-27 21:46:04 +00006285 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00006286 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00006287 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00006288 Op.getOperand(1),
6289 Op.getOperand(3),
6290 DAG.getTargetConstant(size, MVT::i8),
6291 cpIn.getValue(1) };
Andrew Lenharth26ed8692008-03-01 21:52:34 +00006292 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006293 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG_DAG, Tys, Ops, 5);
6294 SDValue cpOut =
Andrew Lenharth26ed8692008-03-01 21:52:34 +00006295 DAG.getCopyFromReg(Result.getValue(0), Reg, T, Result.getValue(1));
6296 return cpOut;
6297}
6298
Duncan Sands1607f052008-12-01 11:39:25 +00006299SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Gabor Greif327ef032008-08-28 23:19:51 +00006300 SelectionDAG &DAG) {
Duncan Sands1607f052008-12-01 11:39:25 +00006301 assert(Subtarget->is64Bit() && "Result not type legalized?");
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006302 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00006303 SDValue TheChain = Op.getOperand(0);
6304 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, Tys, &TheChain, 1);
6305 SDValue rax = DAG.getCopyFromReg(rd, X86::RAX, MVT::i64, rd.getValue(1));
6306 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), X86::RDX, MVT::i64,
6307 rax.getValue(2));
6308 SDValue Tmp = DAG.getNode(ISD::SHL, MVT::i64, rdx,
6309 DAG.getConstant(32, MVT::i8));
6310 SDValue Ops[] = {
6311 DAG.getNode(ISD::OR, MVT::i64, rax, Tmp),
6312 rdx.getValue(1)
6313 };
6314 return DAG.getMergeValues(Ops, 2);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006315}
6316
Dale Johannesen71d1bf52008-09-29 22:25:26 +00006317SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
6318 SDNode *Node = Op.getNode();
6319 MVT T = Node->getValueType(0);
Dan Gohman475871a2008-07-27 21:46:04 +00006320 SDValue negOp = DAG.getNode(ISD::SUB, T,
Dale Johannesen71d1bf52008-09-29 22:25:26 +00006321 DAG.getConstant(0, T), Node->getOperand(2));
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006322 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD,
6323 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00006324 Node->getOperand(0),
6325 Node->getOperand(1), negOp,
6326 cast<AtomicSDNode>(Node)->getSrcValue(),
6327 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00006328}
6329
Evan Cheng0db9fe62006-04-25 20:13:52 +00006330/// LowerOperation - Provide custom lowering hooks for some operations.
6331///
Dan Gohman475871a2008-07-27 21:46:04 +00006332SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006333 switch (Op.getOpcode()) {
6334 default: assert(0 && "Should not custom lower this!");
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006335 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
6336 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006337 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
6338 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
6339 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
6340 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
6341 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
6342 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
6343 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006344 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00006345 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006346 case ISD::SHL_PARTS:
6347 case ISD::SRA_PARTS:
6348 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
6349 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006350 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006351 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
6352 case ISD::FABS: return LowerFABS(Op, DAG);
6353 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006354 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00006355 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00006356 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00006357 case ISD::SELECT: return LowerSELECT(Op, DAG);
6358 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006359 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng32fe1032006-05-25 00:59:30 +00006360 case ISD::CALL: return LowerCALL(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006361 case ISD::RET: return LowerRET(Op, DAG);
Evan Cheng1bc78042006-04-26 01:20:17 +00006362 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006363 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00006364 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00006365 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006366 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00006367 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
6368 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006369 case ISD::FRAME_TO_ARGS_OFFSET:
6370 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00006371 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006372 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00006373 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00006374 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00006375 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
6376 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00006377 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00006378 case ISD::SADDO:
6379 case ISD::UADDO:
6380 case ISD::SSUBO:
6381 case ISD::USUBO:
6382 case ISD::SMULO:
6383 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00006384 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006385 }
Chris Lattner27a6c732007-11-24 07:07:01 +00006386}
6387
Duncan Sands1607f052008-12-01 11:39:25 +00006388void X86TargetLowering::
6389ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
6390 SelectionDAG &DAG, unsigned NewOp) {
6391 MVT T = Node->getValueType(0);
6392 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
6393
6394 SDValue Chain = Node->getOperand(0);
6395 SDValue In1 = Node->getOperand(1);
6396 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32,
6397 Node->getOperand(2), DAG.getIntPtrConstant(0));
6398 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32,
6399 Node->getOperand(2), DAG.getIntPtrConstant(1));
6400 // This is a generalized SDNode, not an AtomicSDNode, so it doesn't
6401 // have a MemOperand. Pass the info through as a normal operand.
6402 SDValue LSI = DAG.getMemOperand(cast<MemSDNode>(Node)->getMemOperand());
6403 SDValue Ops[] = { Chain, In1, In2L, In2H, LSI };
6404 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
6405 SDValue Result = DAG.getNode(NewOp, Tys, Ops, 5);
6406 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
6407 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, MVT::i64, OpsF, 2));
6408 Results.push_back(Result.getValue(2));
6409}
6410
Duncan Sands126d9072008-07-04 11:47:58 +00006411/// ReplaceNodeResults - Replace a node with an illegal result type
6412/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00006413void X86TargetLowering::ReplaceNodeResults(SDNode *N,
6414 SmallVectorImpl<SDValue>&Results,
6415 SelectionDAG &DAG) {
Chris Lattner27a6c732007-11-24 07:07:01 +00006416 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00006417 default:
Duncan Sands1607f052008-12-01 11:39:25 +00006418 assert(false && "Do not know how to custom type legalize this operation!");
6419 return;
6420 case ISD::FP_TO_SINT: {
6421 std::pair<SDValue,SDValue> Vals = FP_TO_SINTHelper(SDValue(N, 0), DAG);
6422 SDValue FIST = Vals.first, StackSlot = Vals.second;
6423 if (FIST.getNode() != 0) {
6424 MVT VT = N->getValueType(0);
6425 // Return a load from the stack slot.
6426 Results.push_back(DAG.getLoad(VT, FIST, StackSlot, NULL, 0));
6427 }
6428 return;
6429 }
6430 case ISD::READCYCLECOUNTER: {
6431 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
6432 SDValue TheChain = N->getOperand(0);
6433 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, Tys, &TheChain, 1);
6434 SDValue eax = DAG.getCopyFromReg(rd, X86::EAX, MVT::i32, rd.getValue(1));
6435 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), X86::EDX, MVT::i32,
6436 eax.getValue(2));
6437 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
6438 SDValue Ops[] = { eax, edx };
6439 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, MVT::i64, Ops, 2));
6440 Results.push_back(edx.getValue(1));
6441 return;
6442 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006443 case ISD::ATOMIC_CMP_SWAP: {
Duncan Sands1607f052008-12-01 11:39:25 +00006444 MVT T = N->getValueType(0);
6445 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
6446 SDValue cpInL, cpInH;
6447 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, N->getOperand(2),
6448 DAG.getConstant(0, MVT::i32));
6449 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, N->getOperand(2),
6450 DAG.getConstant(1, MVT::i32));
6451 cpInL = DAG.getCopyToReg(N->getOperand(0), X86::EAX, cpInL, SDValue());
6452 cpInH = DAG.getCopyToReg(cpInL.getValue(0), X86::EDX, cpInH,
6453 cpInL.getValue(1));
6454 SDValue swapInL, swapInH;
6455 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, N->getOperand(3),
6456 DAG.getConstant(0, MVT::i32));
6457 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, MVT::i32, N->getOperand(3),
6458 DAG.getConstant(1, MVT::i32));
6459 swapInL = DAG.getCopyToReg(cpInH.getValue(0), X86::EBX, swapInL,
6460 cpInH.getValue(1));
6461 swapInH = DAG.getCopyToReg(swapInL.getValue(0), X86::ECX, swapInH,
6462 swapInL.getValue(1));
6463 SDValue Ops[] = { swapInH.getValue(0),
6464 N->getOperand(1),
6465 swapInH.getValue(1) };
6466 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
6467 SDValue Result = DAG.getNode(X86ISD::LCMPXCHG8_DAG, Tys, Ops, 3);
6468 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), X86::EAX, MVT::i32,
6469 Result.getValue(1));
6470 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), X86::EDX, MVT::i32,
6471 cpOutL.getValue(2));
6472 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
6473 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, MVT::i64, OpsF, 2));
6474 Results.push_back(cpOutH.getValue(1));
6475 return;
6476 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006477 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00006478 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
6479 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006480 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00006481 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
6482 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006483 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00006484 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
6485 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006486 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00006487 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
6488 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006489 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00006490 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
6491 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006492 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00006493 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
6494 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006495 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00006496 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
6497 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00006498 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006499}
6500
Evan Cheng72261582005-12-20 06:22:03 +00006501const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
6502 switch (Opcode) {
6503 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00006504 case X86ISD::BSF: return "X86ISD::BSF";
6505 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00006506 case X86ISD::SHLD: return "X86ISD::SHLD";
6507 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00006508 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00006509 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00006510 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00006511 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00006512 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00006513 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00006514 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
6515 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
6516 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00006517 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00006518 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00006519 case X86ISD::CALL: return "X86ISD::CALL";
6520 case X86ISD::TAILCALL: return "X86ISD::TAILCALL";
6521 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00006522 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00006523 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00006524 case X86ISD::COMI: return "X86ISD::COMI";
6525 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00006526 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Cheng72261582005-12-20 06:22:03 +00006527 case X86ISD::CMOV: return "X86ISD::CMOV";
6528 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00006529 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00006530 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
6531 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00006532 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00006533 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Nate Begeman14d12ca2008-02-11 04:19:36 +00006534 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00006535 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00006536 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
6537 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00006538 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Evan Cheng8ca29322006-11-10 21:43:37 +00006539 case X86ISD::FMAX: return "X86ISD::FMAX";
6540 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00006541 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
6542 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006543 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
6544 case X86ISD::THREAD_POINTER: return "X86ISD::THREAD_POINTER";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00006545 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00006546 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00006547 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00006548 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
6549 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006550 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
6551 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
6552 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
6553 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
6554 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
6555 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00006556 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
6557 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00006558 case X86ISD::VSHL: return "X86ISD::VSHL";
6559 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00006560 case X86ISD::CMPPD: return "X86ISD::CMPPD";
6561 case X86ISD::CMPPS: return "X86ISD::CMPPS";
6562 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
6563 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
6564 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
6565 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
6566 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
6567 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
6568 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
6569 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00006570 case X86ISD::ADD: return "X86ISD::ADD";
6571 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingd350e022008-12-12 21:15:41 +00006572 case X86ISD::SMUL: return "X86ISD::SMUL";
6573 case X86ISD::UMUL: return "X86ISD::UMUL";
Evan Cheng72261582005-12-20 06:22:03 +00006574 }
6575}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00006576
Chris Lattnerc9addb72007-03-30 23:15:24 +00006577// isLegalAddressingMode - Return true if the addressing mode represented
6578// by AM is legal for this target, for a load/store of the specified type.
6579bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
6580 const Type *Ty) const {
6581 // X86 supports extremely general addressing modes.
6582
6583 // X86 allows a sign-extended 32-bit immediate field as a displacement.
6584 if (AM.BaseOffs <= -(1LL << 32) || AM.BaseOffs >= (1LL << 32)-1)
6585 return false;
6586
6587 if (AM.BaseGV) {
Evan Cheng52787842007-08-01 23:46:47 +00006588 // We can only fold this if we don't need an extra load.
Chris Lattnerc9addb72007-03-30 23:15:24 +00006589 if (Subtarget->GVRequiresExtraLoad(AM.BaseGV, getTargetMachine(), false))
6590 return false;
Dale Johannesen203af582008-12-05 21:47:27 +00006591 // If BaseGV requires a register, we cannot also have a BaseReg.
6592 if (Subtarget->GVRequiresRegister(AM.BaseGV, getTargetMachine(), false) &&
6593 AM.HasBaseReg)
6594 return false;
Evan Cheng52787842007-08-01 23:46:47 +00006595
6596 // X86-64 only supports addr of globals in small code model.
6597 if (Subtarget->is64Bit()) {
6598 if (getTargetMachine().getCodeModel() != CodeModel::Small)
6599 return false;
6600 // If lower 4G is not available, then we must use rip-relative addressing.
6601 if (AM.BaseOffs || AM.Scale > 1)
6602 return false;
6603 }
Chris Lattnerc9addb72007-03-30 23:15:24 +00006604 }
6605
6606 switch (AM.Scale) {
6607 case 0:
6608 case 1:
6609 case 2:
6610 case 4:
6611 case 8:
6612 // These scales always work.
6613 break;
6614 case 3:
6615 case 5:
6616 case 9:
6617 // These scales are formed with basereg+scalereg. Only accept if there is
6618 // no basereg yet.
6619 if (AM.HasBaseReg)
6620 return false;
6621 break;
6622 default: // Other stuff never works.
6623 return false;
6624 }
6625
6626 return true;
6627}
6628
6629
Evan Cheng2bd122c2007-10-26 01:56:11 +00006630bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
6631 if (!Ty1->isInteger() || !Ty2->isInteger())
6632 return false;
Evan Chenge127a732007-10-29 07:57:50 +00006633 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
6634 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00006635 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00006636 return false;
6637 return Subtarget->is64Bit() || NumBits1 < 64;
Evan Cheng2bd122c2007-10-26 01:56:11 +00006638}
6639
Duncan Sands83ec4b62008-06-06 12:08:01 +00006640bool X86TargetLowering::isTruncateFree(MVT VT1, MVT VT2) const {
6641 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00006642 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006643 unsigned NumBits1 = VT1.getSizeInBits();
6644 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00006645 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00006646 return false;
6647 return Subtarget->is64Bit() || NumBits1 < 64;
6648}
Evan Cheng2bd122c2007-10-26 01:56:11 +00006649
Evan Cheng60c07e12006-07-05 22:17:51 +00006650/// isShuffleMaskLegal - Targets can use this to indicate that they only
6651/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
6652/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
6653/// are assumed to be legal.
6654bool
Dan Gohman475871a2008-07-27 21:46:04 +00006655X86TargetLowering::isShuffleMaskLegal(SDValue Mask, MVT VT) const {
Evan Cheng60c07e12006-07-05 22:17:51 +00006656 // Only do shuffles on 128-bit vector types for now.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006657 if (VT.getSizeInBits() == 64) return false;
Gabor Greifba36cb52008-08-28 21:40:38 +00006658 return (Mask.getNode()->getNumOperands() <= 4 ||
6659 isIdentityMask(Mask.getNode()) ||
6660 isIdentityMask(Mask.getNode(), true) ||
6661 isSplatMask(Mask.getNode()) ||
6662 isPSHUFHW_PSHUFLWMask(Mask.getNode()) ||
6663 X86::isUNPCKLMask(Mask.getNode()) ||
6664 X86::isUNPCKHMask(Mask.getNode()) ||
6665 X86::isUNPCKL_v_undef_Mask(Mask.getNode()) ||
6666 X86::isUNPCKH_v_undef_Mask(Mask.getNode()));
Evan Cheng60c07e12006-07-05 22:17:51 +00006667}
6668
Dan Gohman7d8143f2008-04-09 20:09:42 +00006669bool
Dan Gohman475871a2008-07-27 21:46:04 +00006670X86TargetLowering::isVectorClearMaskLegal(const std::vector<SDValue> &BVOps,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006671 MVT EVT, SelectionDAG &DAG) const {
Evan Cheng60c07e12006-07-05 22:17:51 +00006672 unsigned NumElts = BVOps.size();
6673 // Only do shuffles on 128-bit vector types for now.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006674 if (EVT.getSizeInBits() * NumElts == 64) return false;
Evan Cheng60c07e12006-07-05 22:17:51 +00006675 if (NumElts == 2) return true;
6676 if (NumElts == 4) {
Chris Lattner5a88b832007-02-25 07:10:00 +00006677 return (isMOVLMask(&BVOps[0], 4) ||
6678 isCommutedMOVL(&BVOps[0], 4, true) ||
6679 isSHUFPMask(&BVOps[0], 4) ||
6680 isCommutedSHUFP(&BVOps[0], 4));
Evan Cheng60c07e12006-07-05 22:17:51 +00006681 }
6682 return false;
6683}
6684
6685//===----------------------------------------------------------------------===//
6686// X86 Scheduler Hooks
6687//===----------------------------------------------------------------------===//
6688
Mon P Wang63307c32008-05-05 19:05:59 +00006689// private utility function
6690MachineBasicBlock *
6691X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
6692 MachineBasicBlock *MBB,
6693 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00006694 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00006695 unsigned LoadOpc,
6696 unsigned CXchgOpc,
6697 unsigned copyOpc,
6698 unsigned notOpc,
6699 unsigned EAXreg,
6700 TargetRegisterClass *RC,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00006701 bool invSrc) {
Mon P Wang63307c32008-05-05 19:05:59 +00006702 // For the atomic bitwise operator, we generate
6703 // thisMBB:
6704 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00006705 // ld t1 = [bitinstr.addr]
6706 // op t2 = t1, [bitinstr.val]
6707 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00006708 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
6709 // bz newMBB
6710 // fallthrough -->nextMBB
6711 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6712 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00006713 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00006714 ++MBBIter;
6715
6716 /// First build the CFG
6717 MachineFunction *F = MBB->getParent();
6718 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00006719 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
6720 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
6721 F->insert(MBBIter, newMBB);
6722 F->insert(MBBIter, nextMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00006723
6724 // Move all successors to thisMBB to nextMBB
6725 nextMBB->transferSuccessors(thisMBB);
6726
6727 // Update thisMBB to fall through to newMBB
6728 thisMBB->addSuccessor(newMBB);
6729
6730 // newMBB jumps to itself and fall through to nextMBB
6731 newMBB->addSuccessor(nextMBB);
6732 newMBB->addSuccessor(newMBB);
6733
6734 // Insert instructions into newMBB based on incoming instruction
6735 assert(bInstr->getNumOperands() < 8 && "unexpected number of operands");
6736 MachineOperand& destOper = bInstr->getOperand(0);
6737 MachineOperand* argOpers[6];
6738 int numArgs = bInstr->getNumOperands() - 1;
6739 for (int i=0; i < numArgs; ++i)
6740 argOpers[i] = &bInstr->getOperand(i+1);
6741
6742 // x86 address has 4 operands: base, index, scale, and displacement
6743 int lastAddrIndx = 3; // [0,3]
6744 int valArgIndx = 4;
6745
Dale Johannesen140be2d2008-08-19 18:47:28 +00006746 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
6747 MachineInstrBuilder MIB = BuildMI(newMBB, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00006748 for (int i=0; i <= lastAddrIndx; ++i)
6749 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00006750
Dale Johannesen140be2d2008-08-19 18:47:28 +00006751 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00006752 if (invSrc) {
Dale Johannesen140be2d2008-08-19 18:47:28 +00006753 MIB = BuildMI(newMBB, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00006754 }
6755 else
6756 tt = t1;
6757
Dale Johannesen140be2d2008-08-19 18:47:28 +00006758 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00006759 assert((argOpers[valArgIndx]->isReg() ||
6760 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00006761 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00006762 if (argOpers[valArgIndx]->isReg())
Mon P Wang63307c32008-05-05 19:05:59 +00006763 MIB = BuildMI(newMBB, TII->get(regOpc), t2);
6764 else
6765 MIB = BuildMI(newMBB, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00006766 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00006767 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00006768
Dale Johannesen140be2d2008-08-19 18:47:28 +00006769 MIB = BuildMI(newMBB, TII->get(copyOpc), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00006770 MIB.addReg(t1);
6771
Dale Johannesen140be2d2008-08-19 18:47:28 +00006772 MIB = BuildMI(newMBB, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00006773 for (int i=0; i <= lastAddrIndx; ++i)
6774 (*MIB).addOperand(*argOpers[i]);
6775 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00006776 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
6777 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
6778
Dale Johannesen140be2d2008-08-19 18:47:28 +00006779 MIB = BuildMI(newMBB, TII->get(copyOpc), destOper.getReg());
6780 MIB.addReg(EAXreg);
Mon P Wang63307c32008-05-05 19:05:59 +00006781
6782 // insert branch
6783 BuildMI(newMBB, TII->get(X86::JNE)).addMBB(newMBB);
6784
Dan Gohman8e5f2c62008-07-07 23:14:23 +00006785 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00006786 return nextMBB;
6787}
6788
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006789// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00006790MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006791X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
6792 MachineBasicBlock *MBB,
6793 unsigned regOpcL,
6794 unsigned regOpcH,
6795 unsigned immOpcL,
6796 unsigned immOpcH,
6797 bool invSrc) {
6798 // For the atomic bitwise operator, we generate
6799 // thisMBB (instructions are in pairs, except cmpxchg8b)
6800 // ld t1,t2 = [bitinstr.addr]
6801 // newMBB:
6802 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
6803 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00006804 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006805 // mov ECX, EBX <- t5, t6
6806 // mov EAX, EDX <- t1, t2
6807 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
6808 // mov t3, t4 <- EAX, EDX
6809 // bz newMBB
6810 // result in out1, out2
6811 // fallthrough -->nextMBB
6812
6813 const TargetRegisterClass *RC = X86::GR32RegisterClass;
6814 const unsigned LoadOpc = X86::MOV32rm;
6815 const unsigned copyOpc = X86::MOV32rr;
6816 const unsigned NotOpc = X86::NOT32r;
6817 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6818 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
6819 MachineFunction::iterator MBBIter = MBB;
6820 ++MBBIter;
6821
6822 /// First build the CFG
6823 MachineFunction *F = MBB->getParent();
6824 MachineBasicBlock *thisMBB = MBB;
6825 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
6826 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
6827 F->insert(MBBIter, newMBB);
6828 F->insert(MBBIter, nextMBB);
6829
6830 // Move all successors to thisMBB to nextMBB
6831 nextMBB->transferSuccessors(thisMBB);
6832
6833 // Update thisMBB to fall through to newMBB
6834 thisMBB->addSuccessor(newMBB);
6835
6836 // newMBB jumps to itself and fall through to nextMBB
6837 newMBB->addSuccessor(nextMBB);
6838 newMBB->addSuccessor(newMBB);
6839
6840 // Insert instructions into newMBB based on incoming instruction
6841 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
6842 assert(bInstr->getNumOperands() < 18 && "unexpected number of operands");
6843 MachineOperand& dest1Oper = bInstr->getOperand(0);
6844 MachineOperand& dest2Oper = bInstr->getOperand(1);
6845 MachineOperand* argOpers[6];
6846 for (int i=0; i < 6; ++i)
6847 argOpers[i] = &bInstr->getOperand(i+2);
6848
6849 // x86 address has 4 operands: base, index, scale, and displacement
6850 int lastAddrIndx = 3; // [0,3]
6851
6852 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
6853 MachineInstrBuilder MIB = BuildMI(thisMBB, TII->get(LoadOpc), t1);
6854 for (int i=0; i <= lastAddrIndx; ++i)
6855 (*MIB).addOperand(*argOpers[i]);
6856 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
6857 MIB = BuildMI(thisMBB, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00006858 // add 4 to displacement.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006859 for (int i=0; i <= lastAddrIndx-1; ++i)
6860 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +00006861 MachineOperand newOp3 = *(argOpers[3]);
6862 if (newOp3.isImm())
6863 newOp3.setImm(newOp3.getImm()+4);
6864 else
6865 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006866 (*MIB).addOperand(newOp3);
6867
6868 // t3/4 are defined later, at the bottom of the loop
6869 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
6870 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
6871 BuildMI(newMBB, TII->get(X86::PHI), dest1Oper.getReg())
6872 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
6873 BuildMI(newMBB, TII->get(X86::PHI), dest2Oper.getReg())
6874 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
6875
6876 unsigned tt1 = F->getRegInfo().createVirtualRegister(RC);
6877 unsigned tt2 = F->getRegInfo().createVirtualRegister(RC);
6878 if (invSrc) {
6879 MIB = BuildMI(newMBB, TII->get(NotOpc), tt1).addReg(t1);
6880 MIB = BuildMI(newMBB, TII->get(NotOpc), tt2).addReg(t2);
6881 } else {
6882 tt1 = t1;
6883 tt2 = t2;
6884 }
6885
Dan Gohmand735b802008-10-03 15:45:36 +00006886 assert((argOpers[4]->isReg() || argOpers[4]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006887 "invalid operand");
6888 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
6889 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00006890 if (argOpers[4]->isReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006891 MIB = BuildMI(newMBB, TII->get(regOpcL), t5);
6892 else
6893 MIB = BuildMI(newMBB, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +00006894 if (regOpcL != X86::MOV32rr)
6895 MIB.addReg(tt1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006896 (*MIB).addOperand(*argOpers[4]);
Dan Gohmand735b802008-10-03 15:45:36 +00006897 assert(argOpers[5]->isReg() == argOpers[4]->isReg());
6898 assert(argOpers[5]->isImm() == argOpers[4]->isImm());
6899 if (argOpers[5]->isReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006900 MIB = BuildMI(newMBB, TII->get(regOpcH), t6);
6901 else
6902 MIB = BuildMI(newMBB, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +00006903 if (regOpcH != X86::MOV32rr)
6904 MIB.addReg(tt2);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006905 (*MIB).addOperand(*argOpers[5]);
6906
6907 MIB = BuildMI(newMBB, TII->get(copyOpc), X86::EAX);
6908 MIB.addReg(t1);
6909 MIB = BuildMI(newMBB, TII->get(copyOpc), X86::EDX);
6910 MIB.addReg(t2);
6911
6912 MIB = BuildMI(newMBB, TII->get(copyOpc), X86::EBX);
6913 MIB.addReg(t5);
6914 MIB = BuildMI(newMBB, TII->get(copyOpc), X86::ECX);
6915 MIB.addReg(t6);
6916
6917 MIB = BuildMI(newMBB, TII->get(X86::LCMPXCHG8B));
6918 for (int i=0; i <= lastAddrIndx; ++i)
6919 (*MIB).addOperand(*argOpers[i]);
6920
6921 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
6922 (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
6923
6924 MIB = BuildMI(newMBB, TII->get(copyOpc), t3);
6925 MIB.addReg(X86::EAX);
6926 MIB = BuildMI(newMBB, TII->get(copyOpc), t4);
6927 MIB.addReg(X86::EDX);
6928
6929 // insert branch
6930 BuildMI(newMBB, TII->get(X86::JNE)).addMBB(newMBB);
6931
6932 F->DeleteMachineInstr(bInstr); // The pseudo instruction is gone now.
6933 return nextMBB;
6934}
6935
6936// private utility function
6937MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +00006938X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
6939 MachineBasicBlock *MBB,
6940 unsigned cmovOpc) {
6941 // For the atomic min/max operator, we generate
6942 // thisMBB:
6943 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00006944 // ld t1 = [min/max.addr]
Mon P Wang63307c32008-05-05 19:05:59 +00006945 // mov t2 = [min/max.val]
6946 // cmp t1, t2
6947 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +00006948 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00006949 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
6950 // bz newMBB
6951 // fallthrough -->nextMBB
6952 //
6953 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
6954 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00006955 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00006956 ++MBBIter;
6957
6958 /// First build the CFG
6959 MachineFunction *F = MBB->getParent();
6960 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00006961 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
6962 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
6963 F->insert(MBBIter, newMBB);
6964 F->insert(MBBIter, nextMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00006965
6966 // Move all successors to thisMBB to nextMBB
6967 nextMBB->transferSuccessors(thisMBB);
6968
6969 // Update thisMBB to fall through to newMBB
6970 thisMBB->addSuccessor(newMBB);
6971
6972 // newMBB jumps to newMBB and fall through to nextMBB
6973 newMBB->addSuccessor(nextMBB);
6974 newMBB->addSuccessor(newMBB);
6975
6976 // Insert instructions into newMBB based on incoming instruction
6977 assert(mInstr->getNumOperands() < 8 && "unexpected number of operands");
6978 MachineOperand& destOper = mInstr->getOperand(0);
6979 MachineOperand* argOpers[6];
6980 int numArgs = mInstr->getNumOperands() - 1;
6981 for (int i=0; i < numArgs; ++i)
6982 argOpers[i] = &mInstr->getOperand(i+1);
6983
6984 // x86 address has 4 operands: base, index, scale, and displacement
6985 int lastAddrIndx = 3; // [0,3]
6986 int valArgIndx = 4;
6987
Mon P Wangab3e7472008-05-05 22:56:23 +00006988 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
6989 MachineInstrBuilder MIB = BuildMI(newMBB, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00006990 for (int i=0; i <= lastAddrIndx; ++i)
6991 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +00006992
Mon P Wang63307c32008-05-05 19:05:59 +00006993 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +00006994 assert((argOpers[valArgIndx]->isReg() ||
6995 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00006996 "invalid operand");
Mon P Wang63307c32008-05-05 19:05:59 +00006997
6998 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +00006999 if (argOpers[valArgIndx]->isReg())
Mon P Wang63307c32008-05-05 19:05:59 +00007000 MIB = BuildMI(newMBB, TII->get(X86::MOV32rr), t2);
7001 else
7002 MIB = BuildMI(newMBB, TII->get(X86::MOV32rr), t2);
7003 (*MIB).addOperand(*argOpers[valArgIndx]);
7004
Mon P Wangab3e7472008-05-05 22:56:23 +00007005 MIB = BuildMI(newMBB, TII->get(X86::MOV32rr), X86::EAX);
7006 MIB.addReg(t1);
7007
Mon P Wang63307c32008-05-05 19:05:59 +00007008 MIB = BuildMI(newMBB, TII->get(X86::CMP32rr));
7009 MIB.addReg(t1);
7010 MIB.addReg(t2);
7011
7012 // Generate movc
7013 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
7014 MIB = BuildMI(newMBB, TII->get(cmovOpc),t3);
7015 MIB.addReg(t2);
7016 MIB.addReg(t1);
7017
7018 // Cmp and exchange if none has modified the memory location
7019 MIB = BuildMI(newMBB, TII->get(X86::LCMPXCHG32));
7020 for (int i=0; i <= lastAddrIndx; ++i)
7021 (*MIB).addOperand(*argOpers[i]);
7022 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +00007023 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7024 (*MIB).addMemOperand(*F, *mInstr->memoperands_begin());
Mon P Wang63307c32008-05-05 19:05:59 +00007025
7026 MIB = BuildMI(newMBB, TII->get(X86::MOV32rr), destOper.getReg());
7027 MIB.addReg(X86::EAX);
7028
7029 // insert branch
7030 BuildMI(newMBB, TII->get(X86::JNE)).addMBB(newMBB);
7031
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007032 F->DeleteMachineInstr(mInstr); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00007033 return nextMBB;
7034}
7035
7036
Evan Cheng60c07e12006-07-05 22:17:51 +00007037MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00007038X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
7039 MachineBasicBlock *BB) {
Evan Chengc0f64ff2006-11-27 23:37:22 +00007040 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Evan Cheng60c07e12006-07-05 22:17:51 +00007041 switch (MI->getOpcode()) {
7042 default: assert(false && "Unexpected instr type to insert");
Mon P Wang9e5ecb82008-12-12 01:25:51 +00007043 case X86::CMOV_V1I64:
Evan Cheng60c07e12006-07-05 22:17:51 +00007044 case X86::CMOV_FR32:
7045 case X86::CMOV_FR64:
7046 case X86::CMOV_V4F32:
7047 case X86::CMOV_V2F64:
Evan Chenge5f62042007-09-29 00:00:36 +00007048 case X86::CMOV_V2I64: {
Evan Cheng60c07e12006-07-05 22:17:51 +00007049 // To "insert" a SELECT_CC instruction, we actually have to insert the
7050 // diamond control-flow pattern. The incoming instruction knows the
7051 // destination vreg to set, the condition code register to branch on, the
7052 // true/false values to select between, and a branch opcode to use.
7053 const BasicBlock *LLVM_BB = BB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007054 MachineFunction::iterator It = BB;
Evan Cheng60c07e12006-07-05 22:17:51 +00007055 ++It;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007056
Evan Cheng60c07e12006-07-05 22:17:51 +00007057 // thisMBB:
7058 // ...
7059 // TrueVal = ...
7060 // cmpTY ccX, r1, r2
7061 // bCC copy1MBB
7062 // fallthrough --> copy0MBB
7063 MachineBasicBlock *thisMBB = BB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007064 MachineFunction *F = BB->getParent();
7065 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7066 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007067 unsigned Opc =
Chris Lattner7fbe9722006-10-20 17:42:20 +00007068 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
Evan Chengc0f64ff2006-11-27 23:37:22 +00007069 BuildMI(BB, TII->get(Opc)).addMBB(sinkMBB);
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007070 F->insert(It, copy0MBB);
7071 F->insert(It, sinkMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00007072 // Update machine-CFG edges by transferring all successors of the current
Evan Cheng60c07e12006-07-05 22:17:51 +00007073 // block to the new block which will contain the Phi node for the select.
Mon P Wang63307c32008-05-05 19:05:59 +00007074 sinkMBB->transferSuccessors(BB);
7075
7076 // Add the true and fallthrough blocks as its successors.
Evan Cheng60c07e12006-07-05 22:17:51 +00007077 BB->addSuccessor(copy0MBB);
7078 BB->addSuccessor(sinkMBB);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007079
Evan Cheng60c07e12006-07-05 22:17:51 +00007080 // copy0MBB:
7081 // %FalseValue = ...
7082 // # fallthrough to sinkMBB
7083 BB = copy0MBB;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007084
Evan Cheng60c07e12006-07-05 22:17:51 +00007085 // Update machine-CFG edges
7086 BB->addSuccessor(sinkMBB);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007087
Evan Cheng60c07e12006-07-05 22:17:51 +00007088 // sinkMBB:
7089 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7090 // ...
7091 BB = sinkMBB;
Evan Chengc0f64ff2006-11-27 23:37:22 +00007092 BuildMI(BB, TII->get(X86::PHI), MI->getOperand(0).getReg())
Evan Cheng60c07e12006-07-05 22:17:51 +00007093 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
7094 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7095
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007096 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +00007097 return BB;
7098 }
7099
Dale Johannesen849f2142007-07-03 00:53:03 +00007100 case X86::FP32_TO_INT16_IN_MEM:
7101 case X86::FP32_TO_INT32_IN_MEM:
7102 case X86::FP32_TO_INT64_IN_MEM:
7103 case X86::FP64_TO_INT16_IN_MEM:
7104 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +00007105 case X86::FP64_TO_INT64_IN_MEM:
7106 case X86::FP80_TO_INT16_IN_MEM:
7107 case X86::FP80_TO_INT32_IN_MEM:
7108 case X86::FP80_TO_INT64_IN_MEM: {
Evan Cheng60c07e12006-07-05 22:17:51 +00007109 // Change the floating point control register to use "round towards zero"
7110 // mode when truncating to an integer value.
7111 MachineFunction *F = BB->getParent();
7112 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
Evan Chengc0f64ff2006-11-27 23:37:22 +00007113 addFrameReference(BuildMI(BB, TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00007114
7115 // Load the old value of the high byte of the control word...
7116 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +00007117 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Evan Chengc0f64ff2006-11-27 23:37:22 +00007118 addFrameReference(BuildMI(BB, TII->get(X86::MOV16rm), OldCW), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00007119
7120 // Set the high part to be round to zero...
Evan Chengc0f64ff2006-11-27 23:37:22 +00007121 addFrameReference(BuildMI(BB, TII->get(X86::MOV16mi)), CWFrameIdx)
7122 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +00007123
7124 // Reload the modified control word now...
Evan Chengc0f64ff2006-11-27 23:37:22 +00007125 addFrameReference(BuildMI(BB, TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00007126
7127 // Restore the memory image of control word to original value
Evan Chengc0f64ff2006-11-27 23:37:22 +00007128 addFrameReference(BuildMI(BB, TII->get(X86::MOV16mr)), CWFrameIdx)
7129 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +00007130
7131 // Get the X86 opcode to use.
7132 unsigned Opc;
7133 switch (MI->getOpcode()) {
7134 default: assert(0 && "illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +00007135 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
7136 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
7137 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
7138 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
7139 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
7140 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +00007141 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
7142 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
7143 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +00007144 }
7145
7146 X86AddressMode AM;
7147 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +00007148 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +00007149 AM.BaseType = X86AddressMode::RegBase;
7150 AM.Base.Reg = Op.getReg();
7151 } else {
7152 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +00007153 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +00007154 }
7155 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +00007156 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +00007157 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00007158 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +00007159 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +00007160 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00007161 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +00007162 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +00007163 AM.GV = Op.getGlobal();
7164 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +00007165 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00007166 }
Evan Chengc0f64ff2006-11-27 23:37:22 +00007167 addFullAddress(BuildMI(BB, TII->get(Opc)), AM)
7168 .addReg(MI->getOperand(4).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +00007169
7170 // Reload the original control word now.
Evan Chengc0f64ff2006-11-27 23:37:22 +00007171 addFrameReference(BuildMI(BB, TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00007172
Dan Gohman8e5f2c62008-07-07 23:14:23 +00007173 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +00007174 return BB;
7175 }
Mon P Wang63307c32008-05-05 19:05:59 +00007176 case X86::ATOMAND32:
7177 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007178 X86::AND32ri, X86::MOV32rm,
7179 X86::LCMPXCHG32, X86::MOV32rr,
7180 X86::NOT32r, X86::EAX,
7181 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +00007182 case X86::ATOMOR32:
7183 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007184 X86::OR32ri, X86::MOV32rm,
7185 X86::LCMPXCHG32, X86::MOV32rr,
7186 X86::NOT32r, X86::EAX,
7187 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +00007188 case X86::ATOMXOR32:
7189 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007190 X86::XOR32ri, X86::MOV32rm,
7191 X86::LCMPXCHG32, X86::MOV32rr,
7192 X86::NOT32r, X86::EAX,
7193 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00007194 case X86::ATOMNAND32:
7195 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +00007196 X86::AND32ri, X86::MOV32rm,
7197 X86::LCMPXCHG32, X86::MOV32rr,
7198 X86::NOT32r, X86::EAX,
7199 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +00007200 case X86::ATOMMIN32:
7201 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
7202 case X86::ATOMMAX32:
7203 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
7204 case X86::ATOMUMIN32:
7205 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
7206 case X86::ATOMUMAX32:
7207 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +00007208
7209 case X86::ATOMAND16:
7210 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7211 X86::AND16ri, X86::MOV16rm,
7212 X86::LCMPXCHG16, X86::MOV16rr,
7213 X86::NOT16r, X86::AX,
7214 X86::GR16RegisterClass);
7215 case X86::ATOMOR16:
7216 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
7217 X86::OR16ri, X86::MOV16rm,
7218 X86::LCMPXCHG16, X86::MOV16rr,
7219 X86::NOT16r, X86::AX,
7220 X86::GR16RegisterClass);
7221 case X86::ATOMXOR16:
7222 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
7223 X86::XOR16ri, X86::MOV16rm,
7224 X86::LCMPXCHG16, X86::MOV16rr,
7225 X86::NOT16r, X86::AX,
7226 X86::GR16RegisterClass);
7227 case X86::ATOMNAND16:
7228 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7229 X86::AND16ri, X86::MOV16rm,
7230 X86::LCMPXCHG16, X86::MOV16rr,
7231 X86::NOT16r, X86::AX,
7232 X86::GR16RegisterClass, true);
7233 case X86::ATOMMIN16:
7234 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
7235 case X86::ATOMMAX16:
7236 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
7237 case X86::ATOMUMIN16:
7238 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
7239 case X86::ATOMUMAX16:
7240 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
7241
7242 case X86::ATOMAND8:
7243 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7244 X86::AND8ri, X86::MOV8rm,
7245 X86::LCMPXCHG8, X86::MOV8rr,
7246 X86::NOT8r, X86::AL,
7247 X86::GR8RegisterClass);
7248 case X86::ATOMOR8:
7249 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
7250 X86::OR8ri, X86::MOV8rm,
7251 X86::LCMPXCHG8, X86::MOV8rr,
7252 X86::NOT8r, X86::AL,
7253 X86::GR8RegisterClass);
7254 case X86::ATOMXOR8:
7255 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
7256 X86::XOR8ri, X86::MOV8rm,
7257 X86::LCMPXCHG8, X86::MOV8rr,
7258 X86::NOT8r, X86::AL,
7259 X86::GR8RegisterClass);
7260 case X86::ATOMNAND8:
7261 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7262 X86::AND8ri, X86::MOV8rm,
7263 X86::LCMPXCHG8, X86::MOV8rr,
7264 X86::NOT8r, X86::AL,
7265 X86::GR8RegisterClass, true);
7266 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007267 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +00007268 case X86::ATOMAND64:
7269 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
7270 X86::AND64ri32, X86::MOV64rm,
7271 X86::LCMPXCHG64, X86::MOV64rr,
7272 X86::NOT64r, X86::RAX,
7273 X86::GR64RegisterClass);
7274 case X86::ATOMOR64:
7275 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
7276 X86::OR64ri32, X86::MOV64rm,
7277 X86::LCMPXCHG64, X86::MOV64rr,
7278 X86::NOT64r, X86::RAX,
7279 X86::GR64RegisterClass);
7280 case X86::ATOMXOR64:
7281 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
7282 X86::XOR64ri32, X86::MOV64rm,
7283 X86::LCMPXCHG64, X86::MOV64rr,
7284 X86::NOT64r, X86::RAX,
7285 X86::GR64RegisterClass);
7286 case X86::ATOMNAND64:
7287 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
7288 X86::AND64ri32, X86::MOV64rm,
7289 X86::LCMPXCHG64, X86::MOV64rr,
7290 X86::NOT64r, X86::RAX,
7291 X86::GR64RegisterClass, true);
7292 case X86::ATOMMIN64:
7293 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
7294 case X86::ATOMMAX64:
7295 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
7296 case X86::ATOMUMIN64:
7297 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
7298 case X86::ATOMUMAX64:
7299 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007300
7301 // This group does 64-bit operations on a 32-bit host.
7302 case X86::ATOMAND6432:
7303 return EmitAtomicBit6432WithCustomInserter(MI, BB,
7304 X86::AND32rr, X86::AND32rr,
7305 X86::AND32ri, X86::AND32ri,
7306 false);
7307 case X86::ATOMOR6432:
7308 return EmitAtomicBit6432WithCustomInserter(MI, BB,
7309 X86::OR32rr, X86::OR32rr,
7310 X86::OR32ri, X86::OR32ri,
7311 false);
7312 case X86::ATOMXOR6432:
7313 return EmitAtomicBit6432WithCustomInserter(MI, BB,
7314 X86::XOR32rr, X86::XOR32rr,
7315 X86::XOR32ri, X86::XOR32ri,
7316 false);
7317 case X86::ATOMNAND6432:
7318 return EmitAtomicBit6432WithCustomInserter(MI, BB,
7319 X86::AND32rr, X86::AND32rr,
7320 X86::AND32ri, X86::AND32ri,
7321 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007322 case X86::ATOMADD6432:
7323 return EmitAtomicBit6432WithCustomInserter(MI, BB,
7324 X86::ADD32rr, X86::ADC32rr,
7325 X86::ADD32ri, X86::ADC32ri,
7326 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00007327 case X86::ATOMSUB6432:
7328 return EmitAtomicBit6432WithCustomInserter(MI, BB,
7329 X86::SUB32rr, X86::SBB32rr,
7330 X86::SUB32ri, X86::SBB32ri,
7331 false);
Dale Johannesen880ae362008-10-03 22:25:52 +00007332 case X86::ATOMSWAP6432:
7333 return EmitAtomicBit6432WithCustomInserter(MI, BB,
7334 X86::MOV32rr, X86::MOV32rr,
7335 X86::MOV32ri, X86::MOV32ri,
7336 false);
Evan Cheng60c07e12006-07-05 22:17:51 +00007337 }
7338}
7339
7340//===----------------------------------------------------------------------===//
7341// X86 Optimization Hooks
7342//===----------------------------------------------------------------------===//
7343
Dan Gohman475871a2008-07-27 21:46:04 +00007344void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +00007345 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00007346 APInt &KnownZero,
7347 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00007348 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +00007349 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007350 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +00007351 assert((Opc >= ISD::BUILTIN_OP_END ||
7352 Opc == ISD::INTRINSIC_WO_CHAIN ||
7353 Opc == ISD::INTRINSIC_W_CHAIN ||
7354 Opc == ISD::INTRINSIC_VOID) &&
7355 "Should use MaskedValueIsZero if you don't know whether Op"
7356 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007357
Dan Gohmanf4f92f52008-02-13 23:07:24 +00007358 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007359 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +00007360 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007361 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +00007362 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
7363 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +00007364 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007365 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +00007366}
Chris Lattner259e97c2006-01-31 19:43:35 +00007367
Evan Cheng206ee9d2006-07-07 08:33:52 +00007368/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +00007369/// node is a GlobalAddress + offset.
7370bool X86TargetLowering::isGAPlusOffset(SDNode *N,
7371 GlobalValue* &GA, int64_t &Offset) const{
7372 if (N->getOpcode() == X86ISD::Wrapper) {
7373 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +00007374 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00007375 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +00007376 return true;
7377 }
Evan Cheng206ee9d2006-07-07 08:33:52 +00007378 }
Evan Chengad4196b2008-05-12 19:56:52 +00007379 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +00007380}
7381
Evan Chengad4196b2008-05-12 19:56:52 +00007382static bool isBaseAlignmentOfN(unsigned N, SDNode *Base,
7383 const TargetLowering &TLI) {
Evan Cheng206ee9d2006-07-07 08:33:52 +00007384 GlobalValue *GV;
Nick Lewycky916a9f02008-02-02 08:29:58 +00007385 int64_t Offset = 0;
Evan Chengad4196b2008-05-12 19:56:52 +00007386 if (TLI.isGAPlusOffset(Base, GV, Offset))
Evan Cheng7e2ff772008-05-08 00:57:18 +00007387 return (GV->getAlignment() >= N && (Offset % N) == 0);
Chris Lattnerba96fbc2008-01-26 20:07:42 +00007388 // DAG combine handles the stack object case.
Evan Cheng206ee9d2006-07-07 08:33:52 +00007389 return false;
7390}
7391
Dan Gohman475871a2008-07-27 21:46:04 +00007392static bool EltsFromConsecutiveLoads(SDNode *N, SDValue PermMask,
Duncan Sands83ec4b62008-06-06 12:08:01 +00007393 unsigned NumElems, MVT EVT,
Evan Chengad4196b2008-05-12 19:56:52 +00007394 SDNode *&Base,
7395 SelectionDAG &DAG, MachineFrameInfo *MFI,
7396 const TargetLowering &TLI) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00007397 Base = NULL;
7398 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007399 SDValue Idx = PermMask.getOperand(i);
Evan Cheng7e2ff772008-05-08 00:57:18 +00007400 if (Idx.getOpcode() == ISD::UNDEF) {
7401 if (!Base)
7402 return false;
7403 continue;
7404 }
7405
Dan Gohman475871a2008-07-27 21:46:04 +00007406 SDValue Elt = DAG.getShuffleScalarElt(N, i);
Gabor Greifba36cb52008-08-28 21:40:38 +00007407 if (!Elt.getNode() ||
7408 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
Evan Cheng7e2ff772008-05-08 00:57:18 +00007409 return false;
7410 if (!Base) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007411 Base = Elt.getNode();
Evan Cheng50d9e722008-05-10 06:46:49 +00007412 if (Base->getOpcode() == ISD::UNDEF)
7413 return false;
Evan Cheng7e2ff772008-05-08 00:57:18 +00007414 continue;
7415 }
7416 if (Elt.getOpcode() == ISD::UNDEF)
7417 continue;
7418
Gabor Greifba36cb52008-08-28 21:40:38 +00007419 if (!TLI.isConsecutiveLoad(Elt.getNode(), Base,
Duncan Sands83ec4b62008-06-06 12:08:01 +00007420 EVT.getSizeInBits()/8, i, MFI))
Evan Cheng7e2ff772008-05-08 00:57:18 +00007421 return false;
7422 }
7423 return true;
7424}
Evan Cheng206ee9d2006-07-07 08:33:52 +00007425
7426/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
7427/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
7428/// if the load addresses are consecutive, non-overlapping, and in the right
7429/// order.
Dan Gohman475871a2008-07-27 21:46:04 +00007430static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Evan Chengad4196b2008-05-12 19:56:52 +00007431 const TargetLowering &TLI) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00007432 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007433 MVT VT = N->getValueType(0);
7434 MVT EVT = VT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00007435 SDValue PermMask = N->getOperand(2);
Evan Cheng71f489d2008-05-05 22:12:23 +00007436 unsigned NumElems = PermMask.getNumOperands();
Evan Cheng206ee9d2006-07-07 08:33:52 +00007437 SDNode *Base = NULL;
Evan Chengad4196b2008-05-12 19:56:52 +00007438 if (!EltsFromConsecutiveLoads(N, PermMask, NumElems, EVT, Base,
7439 DAG, MFI, TLI))
Dan Gohman475871a2008-07-27 21:46:04 +00007440 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +00007441
Dan Gohmand3006222007-07-27 17:16:43 +00007442 LoadSDNode *LD = cast<LoadSDNode>(Base);
Gabor Greifba36cb52008-08-28 21:40:38 +00007443 if (isBaseAlignmentOfN(16, Base->getOperand(1).getNode(), TLI))
Evan Cheng466685d2006-10-09 20:57:25 +00007444 return DAG.getLoad(VT, LD->getChain(), LD->getBasePtr(), LD->getSrcValue(),
Dan Gohmand3006222007-07-27 17:16:43 +00007445 LD->getSrcValueOffset(), LD->isVolatile());
Evan Cheng71f489d2008-05-05 22:12:23 +00007446 return DAG.getLoad(VT, LD->getChain(), LD->getBasePtr(), LD->getSrcValue(),
7447 LD->getSrcValueOffset(), LD->isVolatile(),
7448 LD->getAlignment());
Evan Cheng206ee9d2006-07-07 08:33:52 +00007449}
7450
Evan Cheng9bfa03c2008-05-12 23:04:07 +00007451/// PerformBuildVectorCombine - build_vector 0,(load i64 / f64) -> movq / movsd.
Dan Gohman475871a2008-07-27 21:46:04 +00007452static SDValue PerformBuildVectorCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8a186ae2008-09-24 23:26:36 +00007453 const X86Subtarget *Subtarget,
7454 const TargetLowering &TLI) {
Evan Chengf26ffe92008-05-29 08:22:04 +00007455 unsigned NumOps = N->getNumOperands();
7456
Evan Chengd880b972008-05-09 21:53:03 +00007457 // Ignore single operand BUILD_VECTOR.
Evan Chengf26ffe92008-05-29 08:22:04 +00007458 if (NumOps == 1)
Dan Gohman475871a2008-07-27 21:46:04 +00007459 return SDValue();
Evan Chengd880b972008-05-09 21:53:03 +00007460
Duncan Sands83ec4b62008-06-06 12:08:01 +00007461 MVT VT = N->getValueType(0);
7462 MVT EVT = VT.getVectorElementType();
Evan Chengd880b972008-05-09 21:53:03 +00007463 if ((EVT != MVT::i64 && EVT != MVT::f64) || Subtarget->is64Bit())
7464 // We are looking for load i64 and zero extend. We want to transform
7465 // it before legalizer has a chance to expand it. Also look for i64
7466 // BUILD_PAIR bit casted to f64.
Dan Gohman475871a2008-07-27 21:46:04 +00007467 return SDValue();
Evan Chengd880b972008-05-09 21:53:03 +00007468 // This must be an insertion into a zero vector.
Dan Gohman475871a2008-07-27 21:46:04 +00007469 SDValue HighElt = N->getOperand(1);
Evan Cheng25210da2008-05-10 00:58:41 +00007470 if (!isZeroNode(HighElt))
Dan Gohman475871a2008-07-27 21:46:04 +00007471 return SDValue();
Evan Chengd880b972008-05-09 21:53:03 +00007472
7473 // Value must be a load.
Gabor Greifba36cb52008-08-28 21:40:38 +00007474 SDNode *Base = N->getOperand(0).getNode();
Evan Chengd880b972008-05-09 21:53:03 +00007475 if (!isa<LoadSDNode>(Base)) {
Evan Cheng9bfa03c2008-05-12 23:04:07 +00007476 if (Base->getOpcode() != ISD::BIT_CONVERT)
Dan Gohman475871a2008-07-27 21:46:04 +00007477 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00007478 Base = Base->getOperand(0).getNode();
Evan Cheng9bfa03c2008-05-12 23:04:07 +00007479 if (!isa<LoadSDNode>(Base))
Dan Gohman475871a2008-07-27 21:46:04 +00007480 return SDValue();
Evan Chengd880b972008-05-09 21:53:03 +00007481 }
Evan Chengd880b972008-05-09 21:53:03 +00007482
7483 // Transform it into VZEXT_LOAD addr.
Evan Cheng9bfa03c2008-05-12 23:04:07 +00007484 LoadSDNode *LD = cast<LoadSDNode>(Base);
Nate Begemanf7333bf2008-05-28 00:24:25 +00007485
7486 // Load must not be an extload.
7487 if (LD->getExtensionType() != ISD::NON_EXTLOAD)
Dan Gohman475871a2008-07-27 21:46:04 +00007488 return SDValue();
Nate Begemanf7333bf2008-05-28 00:24:25 +00007489
Evan Cheng8a186ae2008-09-24 23:26:36 +00007490 SDVTList Tys = DAG.getVTList(VT, MVT::Other);
7491 SDValue Ops[] = { LD->getChain(), LD->getBasePtr() };
7492 SDValue ResNode = DAG.getNode(X86ISD::VZEXT_LOAD, Tys, Ops, 2);
7493 DAG.ReplaceAllUsesOfValueWith(SDValue(Base, 1), ResNode.getValue(1));
7494 return ResNode;
Evan Chengd880b972008-05-09 21:53:03 +00007495}
7496
Chris Lattner83e6c992006-10-04 06:57:07 +00007497/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007498static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner83e6c992006-10-04 06:57:07 +00007499 const X86Subtarget *Subtarget) {
Dan Gohman475871a2008-07-27 21:46:04 +00007500 SDValue Cond = N->getOperand(0);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007501
Chris Lattner83e6c992006-10-04 06:57:07 +00007502 // If we have SSE[12] support, try to form min/max nodes.
7503 if (Subtarget->hasSSE2() &&
7504 (N->getValueType(0) == MVT::f32 || N->getValueType(0) == MVT::f64)) {
7505 if (Cond.getOpcode() == ISD::SETCC) {
7506 // Get the LHS/RHS of the select.
Dan Gohman475871a2008-07-27 21:46:04 +00007507 SDValue LHS = N->getOperand(1);
7508 SDValue RHS = N->getOperand(2);
Chris Lattner83e6c992006-10-04 06:57:07 +00007509 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007510
Evan Cheng8ca29322006-11-10 21:43:37 +00007511 unsigned Opcode = 0;
Chris Lattner83e6c992006-10-04 06:57:07 +00007512 if (LHS == Cond.getOperand(0) && RHS == Cond.getOperand(1)) {
Chris Lattner1907a7b2006-10-05 04:11:26 +00007513 switch (CC) {
7514 default: break;
7515 case ISD::SETOLE: // (X <= Y) ? X : Y -> min
7516 case ISD::SETULE:
7517 case ISD::SETLE:
7518 if (!UnsafeFPMath) break;
7519 // FALL THROUGH.
7520 case ISD::SETOLT: // (X olt/lt Y) ? X : Y -> min
7521 case ISD::SETLT:
Evan Cheng8ca29322006-11-10 21:43:37 +00007522 Opcode = X86ISD::FMIN;
Chris Lattner1907a7b2006-10-05 04:11:26 +00007523 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007524
Chris Lattner1907a7b2006-10-05 04:11:26 +00007525 case ISD::SETOGT: // (X > Y) ? X : Y -> max
7526 case ISD::SETUGT:
7527 case ISD::SETGT:
7528 if (!UnsafeFPMath) break;
7529 // FALL THROUGH.
7530 case ISD::SETUGE: // (X uge/ge Y) ? X : Y -> max
7531 case ISD::SETGE:
Evan Cheng8ca29322006-11-10 21:43:37 +00007532 Opcode = X86ISD::FMAX;
Chris Lattner1907a7b2006-10-05 04:11:26 +00007533 break;
7534 }
Chris Lattner83e6c992006-10-04 06:57:07 +00007535 } else if (LHS == Cond.getOperand(1) && RHS == Cond.getOperand(0)) {
Chris Lattner1907a7b2006-10-05 04:11:26 +00007536 switch (CC) {
7537 default: break;
7538 case ISD::SETOGT: // (X > Y) ? Y : X -> min
7539 case ISD::SETUGT:
7540 case ISD::SETGT:
7541 if (!UnsafeFPMath) break;
7542 // FALL THROUGH.
7543 case ISD::SETUGE: // (X uge/ge Y) ? Y : X -> min
7544 case ISD::SETGE:
Evan Cheng8ca29322006-11-10 21:43:37 +00007545 Opcode = X86ISD::FMIN;
Chris Lattner1907a7b2006-10-05 04:11:26 +00007546 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007547
Chris Lattner1907a7b2006-10-05 04:11:26 +00007548 case ISD::SETOLE: // (X <= Y) ? Y : X -> max
7549 case ISD::SETULE:
7550 case ISD::SETLE:
7551 if (!UnsafeFPMath) break;
7552 // FALL THROUGH.
7553 case ISD::SETOLT: // (X olt/lt Y) ? Y : X -> max
7554 case ISD::SETLT:
Evan Cheng8ca29322006-11-10 21:43:37 +00007555 Opcode = X86ISD::FMAX;
Chris Lattner1907a7b2006-10-05 04:11:26 +00007556 break;
7557 }
Chris Lattner83e6c992006-10-04 06:57:07 +00007558 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007559
Evan Cheng8ca29322006-11-10 21:43:37 +00007560 if (Opcode)
7561 return DAG.getNode(Opcode, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +00007562 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007563
Chris Lattner83e6c992006-10-04 06:57:07 +00007564 }
7565
Dan Gohman475871a2008-07-27 21:46:04 +00007566 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +00007567}
7568
Chris Lattner149a4e52008-02-22 02:09:43 +00007569/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007570static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner149a4e52008-02-22 02:09:43 +00007571 const X86Subtarget *Subtarget) {
7572 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
7573 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +00007574 // A preferable solution to the general problem is to figure out the right
7575 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng7e2ff772008-05-08 00:57:18 +00007576 StoreSDNode *St = cast<StoreSDNode>(N);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007577 if (St->getValue().getValueType().isVector() &&
7578 St->getValue().getValueType().getSizeInBits() == 64 &&
Dale Johannesen079f2a62008-02-25 19:20:14 +00007579 isa<LoadSDNode>(St->getValue()) &&
7580 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
7581 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007582 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +00007583 LoadSDNode *Ld = 0;
7584 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +00007585 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +00007586 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +00007587 // Must be a store of a load. We currently handle two cases: the load
7588 // is a direct child, and it's under an intervening TokenFactor. It is
7589 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +00007590 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +00007591 Ld = cast<LoadSDNode>(St->getChain());
7592 else if (St->getValue().hasOneUse() &&
7593 ChainVal->getOpcode() == ISD::TokenFactor) {
7594 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007595 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +00007596 TokenFactorIndex = i;
7597 Ld = cast<LoadSDNode>(St->getValue());
7598 } else
7599 Ops.push_back(ChainVal->getOperand(i));
7600 }
7601 }
7602 if (Ld) {
7603 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
7604 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00007605 SDValue NewLd = DAG.getLoad(MVT::i64, Ld->getChain(),
Dale Johannesen079f2a62008-02-25 19:20:14 +00007606 Ld->getBasePtr(), Ld->getSrcValue(),
7607 Ld->getSrcValueOffset(), Ld->isVolatile(),
7608 Ld->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00007609 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +00007610 if (TokenFactorIndex != -1) {
Dan Gohmand4a2ad32008-03-28 23:45:16 +00007611 Ops.push_back(NewChain);
Dale Johannesen079f2a62008-02-25 19:20:14 +00007612 NewChain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Ops[0],
7613 Ops.size());
7614 }
7615 return DAG.getStore(NewChain, NewLd, St->getBasePtr(),
7616 St->getSrcValue(), St->getSrcValueOffset(),
7617 St->isVolatile(), St->getAlignment());
7618 }
7619
7620 // Otherwise, lower to two 32-bit copies.
Dan Gohman475871a2008-07-27 21:46:04 +00007621 SDValue LoAddr = Ld->getBasePtr();
7622 SDValue HiAddr = DAG.getNode(ISD::ADD, MVT::i32, LoAddr,
Duncan Sands83ec4b62008-06-06 12:08:01 +00007623 DAG.getConstant(4, MVT::i32));
Dale Johannesen079f2a62008-02-25 19:20:14 +00007624
Dan Gohman475871a2008-07-27 21:46:04 +00007625 SDValue LoLd = DAG.getLoad(MVT::i32, Ld->getChain(), LoAddr,
Dale Johannesen079f2a62008-02-25 19:20:14 +00007626 Ld->getSrcValue(), Ld->getSrcValueOffset(),
7627 Ld->isVolatile(), Ld->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00007628 SDValue HiLd = DAG.getLoad(MVT::i32, Ld->getChain(), HiAddr,
Dale Johannesen079f2a62008-02-25 19:20:14 +00007629 Ld->getSrcValue(), Ld->getSrcValueOffset()+4,
7630 Ld->isVolatile(),
7631 MinAlign(Ld->getAlignment(), 4));
7632
Dan Gohman475871a2008-07-27 21:46:04 +00007633 SDValue NewChain = LoLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +00007634 if (TokenFactorIndex != -1) {
7635 Ops.push_back(LoLd);
7636 Ops.push_back(HiLd);
7637 NewChain = DAG.getNode(ISD::TokenFactor, MVT::Other, &Ops[0],
7638 Ops.size());
7639 }
7640
7641 LoAddr = St->getBasePtr();
7642 HiAddr = DAG.getNode(ISD::ADD, MVT::i32, LoAddr,
Duncan Sands83ec4b62008-06-06 12:08:01 +00007643 DAG.getConstant(4, MVT::i32));
Dale Johannesen079f2a62008-02-25 19:20:14 +00007644
Dan Gohman475871a2008-07-27 21:46:04 +00007645 SDValue LoSt = DAG.getStore(NewChain, LoLd, LoAddr,
Chris Lattner149a4e52008-02-22 02:09:43 +00007646 St->getSrcValue(), St->getSrcValueOffset(),
7647 St->isVolatile(), St->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00007648 SDValue HiSt = DAG.getStore(NewChain, HiLd, HiAddr,
Gabor Greif327ef032008-08-28 23:19:51 +00007649 St->getSrcValue(),
7650 St->getSrcValueOffset() + 4,
Dale Johannesen079f2a62008-02-25 19:20:14 +00007651 St->isVolatile(),
7652 MinAlign(St->getAlignment(), 4));
7653 return DAG.getNode(ISD::TokenFactor, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +00007654 }
Chris Lattner149a4e52008-02-22 02:09:43 +00007655 }
Dan Gohman475871a2008-07-27 21:46:04 +00007656 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +00007657}
7658
Chris Lattner6cf73262008-01-25 06:14:17 +00007659/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
7660/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007661static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +00007662 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
7663 // F[X]OR(0.0, x) -> x
7664 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +00007665 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
7666 if (C->getValueAPF().isPosZero())
7667 return N->getOperand(1);
7668 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
7669 if (C->getValueAPF().isPosZero())
7670 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00007671 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +00007672}
7673
7674/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00007675static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +00007676 // FAND(0.0, x) -> 0.0
7677 // FAND(x, 0.0) -> 0.0
7678 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
7679 if (C->getValueAPF().isPosZero())
7680 return N->getOperand(0);
7681 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
7682 if (C->getValueAPF().isPosZero())
7683 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +00007684 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +00007685}
7686
Chris Lattner83e6c992006-10-04 06:57:07 +00007687
Dan Gohman475871a2008-07-27 21:46:04 +00007688SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +00007689 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +00007690 SelectionDAG &DAG = DCI.DAG;
7691 switch (N->getOpcode()) {
7692 default: break;
Evan Chengad4196b2008-05-12 19:56:52 +00007693 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
7694 case ISD::BUILD_VECTOR:
7695 return PerformBuildVectorCombine(N, DAG, Subtarget, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +00007696 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +00007697 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +00007698 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +00007699 case X86ISD::FOR: return PerformFORCombine(N, DAG);
7700 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Evan Cheng206ee9d2006-07-07 08:33:52 +00007701 }
7702
Dan Gohman475871a2008-07-27 21:46:04 +00007703 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +00007704}
7705
Evan Cheng60c07e12006-07-05 22:17:51 +00007706//===----------------------------------------------------------------------===//
7707// X86 Inline Assembly Support
7708//===----------------------------------------------------------------------===//
7709
Chris Lattnerf4dff842006-07-11 02:54:03 +00007710/// getConstraintType - Given a constraint letter, return the type of
7711/// constraint it is for this target.
7712X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +00007713X86TargetLowering::getConstraintType(const std::string &Constraint) const {
7714 if (Constraint.size() == 1) {
7715 switch (Constraint[0]) {
7716 case 'A':
Dale Johannesen330169f2008-11-13 21:52:36 +00007717 return C_Register;
Chris Lattnerfce84ac2008-03-11 19:06:29 +00007718 case 'f':
Chris Lattner4234f572007-03-25 02:14:49 +00007719 case 'r':
7720 case 'R':
7721 case 'l':
7722 case 'q':
7723 case 'Q':
7724 case 'x':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +00007725 case 'y':
Chris Lattner4234f572007-03-25 02:14:49 +00007726 case 'Y':
7727 return C_RegisterClass;
7728 default:
7729 break;
7730 }
Chris Lattnerf4dff842006-07-11 02:54:03 +00007731 }
Chris Lattner4234f572007-03-25 02:14:49 +00007732 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +00007733}
7734
Dale Johannesenba2a0b92008-01-29 02:21:21 +00007735/// LowerXConstraint - try to replace an X constraint, which matches anything,
7736/// with another that has more specific requirements based on the type of the
7737/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +00007738const char *X86TargetLowering::
Duncan Sands83ec4b62008-06-06 12:08:01 +00007739LowerXConstraint(MVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +00007740 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
7741 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +00007742 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesenba2a0b92008-01-29 02:21:21 +00007743 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +00007744 return "Y";
7745 if (Subtarget->hasSSE1())
7746 return "x";
7747 }
7748
7749 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +00007750}
7751
Chris Lattner48884cd2007-08-25 00:47:38 +00007752/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
7753/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +00007754void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattner48884cd2007-08-25 00:47:38 +00007755 char Constraint,
Evan Chengda43bcf2008-09-24 00:05:32 +00007756 bool hasMemory,
Dan Gohman475871a2008-07-27 21:46:04 +00007757 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +00007758 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007759 SDValue Result(0, 0);
Chris Lattner48884cd2007-08-25 00:47:38 +00007760
Chris Lattner22aaf1d2006-10-31 20:13:11 +00007761 switch (Constraint) {
7762 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +00007763 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +00007764 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007765 if (C->getZExtValue() <= 31) {
7766 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +00007767 break;
7768 }
Devang Patel84f7fd22007-03-17 00:13:28 +00007769 }
Chris Lattner48884cd2007-08-25 00:47:38 +00007770 return;
Evan Cheng364091e2008-09-22 23:57:37 +00007771 case 'J':
7772 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
7773 if (C->getZExtValue() <= 63) {
7774 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
7775 break;
7776 }
7777 }
7778 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +00007779 case 'N':
7780 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007781 if (C->getZExtValue() <= 255) {
7782 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +00007783 break;
7784 }
Chris Lattner188b9fe2007-03-25 01:57:35 +00007785 }
Chris Lattner48884cd2007-08-25 00:47:38 +00007786 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +00007787 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +00007788 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +00007789 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007790 Result = DAG.getTargetConstant(CST->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +00007791 break;
7792 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007793
Chris Lattnerdc43a882007-05-03 16:52:29 +00007794 // If we are in non-pic codegen mode, we allow the address of a global (with
7795 // an optional displacement) to be used with 'i'.
7796 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
7797 int64_t Offset = 0;
7798
7799 // Match either (GA) or (GA+C)
7800 if (GA) {
7801 Offset = GA->getOffset();
7802 } else if (Op.getOpcode() == ISD::ADD) {
7803 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7804 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
7805 if (C && GA) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007806 Offset = GA->getOffset()+C->getZExtValue();
Chris Lattnerdc43a882007-05-03 16:52:29 +00007807 } else {
7808 C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7809 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
7810 if (C && GA)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007811 Offset = GA->getOffset()+C->getZExtValue();
Chris Lattnerdc43a882007-05-03 16:52:29 +00007812 else
7813 C = 0, GA = 0;
7814 }
7815 }
7816
7817 if (GA) {
Evan Chengda43bcf2008-09-24 00:05:32 +00007818 if (hasMemory)
Dan Gohman6520e202008-10-18 02:06:02 +00007819 Op = LowerGlobalAddress(GA->getGlobal(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00007820 else
7821 Op = DAG.getTargetGlobalAddress(GA->getGlobal(), GA->getValueType(0),
7822 Offset);
Chris Lattner48884cd2007-08-25 00:47:38 +00007823 Result = Op;
7824 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +00007825 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007826
Chris Lattner22aaf1d2006-10-31 20:13:11 +00007827 // Otherwise, not valid for this mode.
Chris Lattner48884cd2007-08-25 00:47:38 +00007828 return;
Chris Lattner22aaf1d2006-10-31 20:13:11 +00007829 }
Chris Lattnerdc43a882007-05-03 16:52:29 +00007830 }
Chris Lattner48884cd2007-08-25 00:47:38 +00007831
Gabor Greifba36cb52008-08-28 21:40:38 +00007832 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +00007833 Ops.push_back(Result);
7834 return;
7835 }
Evan Chengda43bcf2008-09-24 00:05:32 +00007836 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, hasMemory,
7837 Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +00007838}
7839
Chris Lattner259e97c2006-01-31 19:43:35 +00007840std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +00007841getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands83ec4b62008-06-06 12:08:01 +00007842 MVT VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +00007843 if (Constraint.size() == 1) {
7844 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +00007845 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +00007846 default: break; // Unknown constraint letter
Chris Lattner259e97c2006-01-31 19:43:35 +00007847 case 'q': // Q_REGS (GENERAL_REGS in 64-bit mode)
7848 case 'Q': // Q_REGS
Chris Lattner80a7ecc2006-05-06 00:29:37 +00007849 if (VT == MVT::i32)
7850 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
7851 else if (VT == MVT::i16)
7852 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
7853 else if (VT == MVT::i8)
Evan Cheng12914382007-08-13 23:27:11 +00007854 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Chris Lattner03e6c702007-11-04 06:51:12 +00007855 else if (VT == MVT::i64)
7856 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
7857 break;
Chris Lattner259e97c2006-01-31 19:43:35 +00007858 }
7859 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007860
Chris Lattner1efa40f2006-02-22 00:56:39 +00007861 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +00007862}
Chris Lattnerf76d1802006-07-31 23:26:50 +00007863
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007864std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +00007865X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands83ec4b62008-06-06 12:08:01 +00007866 MVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +00007867 // First, see if this is a constraint that directly corresponds to an LLVM
7868 // register class.
7869 if (Constraint.size() == 1) {
7870 // GCC Constraint Letters
7871 switch (Constraint[0]) {
7872 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +00007873 case 'r': // GENERAL_REGS
7874 case 'R': // LEGACY_REGS
7875 case 'l': // INDEX_REGS
Chris Lattner1fa71982008-10-17 18:15:05 +00007876 if (VT == MVT::i8)
Chris Lattner0f65cad2007-04-09 05:49:22 +00007877 return std::make_pair(0U, X86::GR8RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +00007878 if (VT == MVT::i16)
7879 return std::make_pair(0U, X86::GR16RegisterClass);
7880 if (VT == MVT::i32 || !Subtarget->is64Bit())
7881 return std::make_pair(0U, X86::GR32RegisterClass);
7882 return std::make_pair(0U, X86::GR64RegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +00007883 case 'f': // FP Stack registers.
7884 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
7885 // value to the correct fpstack register class.
7886 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
7887 return std::make_pair(0U, X86::RFP32RegisterClass);
7888 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
7889 return std::make_pair(0U, X86::RFP64RegisterClass);
7890 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +00007891 case 'y': // MMX_REGS if MMX allowed.
7892 if (!Subtarget->hasMMX()) break;
7893 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +00007894 case 'Y': // SSE_REGS if SSE2 allowed
7895 if (!Subtarget->hasSSE2()) break;
7896 // FALL THROUGH.
7897 case 'x': // SSE_REGS if SSE1 allowed
7898 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007899
7900 switch (VT.getSimpleVT()) {
Chris Lattner0f65cad2007-04-09 05:49:22 +00007901 default: break;
7902 // Scalar SSE types.
7903 case MVT::f32:
7904 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +00007905 return std::make_pair(0U, X86::FR32RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +00007906 case MVT::f64:
7907 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +00007908 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +00007909 // Vector types.
Chris Lattner0f65cad2007-04-09 05:49:22 +00007910 case MVT::v16i8:
7911 case MVT::v8i16:
7912 case MVT::v4i32:
7913 case MVT::v2i64:
7914 case MVT::v4f32:
7915 case MVT::v2f64:
7916 return std::make_pair(0U, X86::VR128RegisterClass);
7917 }
Chris Lattnerad043e82007-04-09 05:11:28 +00007918 break;
7919 }
7920 }
7921
Chris Lattnerf76d1802006-07-31 23:26:50 +00007922 // Use the default implementation in TargetLowering to convert the register
7923 // constraint into a member of a register class.
7924 std::pair<unsigned, const TargetRegisterClass*> Res;
7925 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +00007926
7927 // Not found as a standard register?
7928 if (Res.second == 0) {
7929 // GCC calls "st(0)" just plain "st".
7930 if (StringsEqualNoCase("{st}", Constraint)) {
7931 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +00007932 Res.second = X86::RFP80RegisterClass;
Chris Lattner1a60aa72006-10-31 19:42:44 +00007933 }
Dale Johannesen330169f2008-11-13 21:52:36 +00007934 // 'A' means EAX + EDX.
7935 if (Constraint == "A") {
7936 Res.first = X86::EAX;
7937 Res.second = X86::GRADRegisterClass;
7938 }
Chris Lattner1a60aa72006-10-31 19:42:44 +00007939 return Res;
7940 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007941
Chris Lattnerf76d1802006-07-31 23:26:50 +00007942 // Otherwise, check to see if this is a register class of the wrong value
7943 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
7944 // turn into {ax},{dx}.
7945 if (Res.second->hasType(VT))
7946 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007947
Chris Lattnerf76d1802006-07-31 23:26:50 +00007948 // All of the single-register GCC register classes map their values onto
7949 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
7950 // really want an 8-bit or 32-bit register, map to the appropriate register
7951 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +00007952 if (Res.second == X86::GR16RegisterClass) {
7953 if (VT == MVT::i8) {
7954 unsigned DestReg = 0;
7955 switch (Res.first) {
7956 default: break;
7957 case X86::AX: DestReg = X86::AL; break;
7958 case X86::DX: DestReg = X86::DL; break;
7959 case X86::CX: DestReg = X86::CL; break;
7960 case X86::BX: DestReg = X86::BL; break;
7961 }
7962 if (DestReg) {
7963 Res.first = DestReg;
7964 Res.second = Res.second = X86::GR8RegisterClass;
7965 }
7966 } else if (VT == MVT::i32) {
7967 unsigned DestReg = 0;
7968 switch (Res.first) {
7969 default: break;
7970 case X86::AX: DestReg = X86::EAX; break;
7971 case X86::DX: DestReg = X86::EDX; break;
7972 case X86::CX: DestReg = X86::ECX; break;
7973 case X86::BX: DestReg = X86::EBX; break;
7974 case X86::SI: DestReg = X86::ESI; break;
7975 case X86::DI: DestReg = X86::EDI; break;
7976 case X86::BP: DestReg = X86::EBP; break;
7977 case X86::SP: DestReg = X86::ESP; break;
7978 }
7979 if (DestReg) {
7980 Res.first = DestReg;
7981 Res.second = Res.second = X86::GR32RegisterClass;
7982 }
7983 } else if (VT == MVT::i64) {
7984 unsigned DestReg = 0;
7985 switch (Res.first) {
7986 default: break;
7987 case X86::AX: DestReg = X86::RAX; break;
7988 case X86::DX: DestReg = X86::RDX; break;
7989 case X86::CX: DestReg = X86::RCX; break;
7990 case X86::BX: DestReg = X86::RBX; break;
7991 case X86::SI: DestReg = X86::RSI; break;
7992 case X86::DI: DestReg = X86::RDI; break;
7993 case X86::BP: DestReg = X86::RBP; break;
7994 case X86::SP: DestReg = X86::RSP; break;
7995 }
7996 if (DestReg) {
7997 Res.first = DestReg;
7998 Res.second = Res.second = X86::GR64RegisterClass;
7999 }
Chris Lattnerf76d1802006-07-31 23:26:50 +00008000 }
Chris Lattner6ba50a92008-08-26 06:19:02 +00008001 } else if (Res.second == X86::FR32RegisterClass ||
8002 Res.second == X86::FR64RegisterClass ||
8003 Res.second == X86::VR128RegisterClass) {
8004 // Handle references to XMM physical registers that got mapped into the
8005 // wrong class. This can happen with constraints like {xmm0} where the
8006 // target independent register mapper will just pick the first match it can
8007 // find, ignoring the required type.
8008 if (VT == MVT::f32)
8009 Res.second = X86::FR32RegisterClass;
8010 else if (VT == MVT::f64)
8011 Res.second = X86::FR64RegisterClass;
8012 else if (X86::VR128RegisterClass->hasType(VT))
8013 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +00008014 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008015
Chris Lattnerf76d1802006-07-31 23:26:50 +00008016 return Res;
8017}
Mon P Wang0c397192008-10-30 08:01:45 +00008018
8019//===----------------------------------------------------------------------===//
8020// X86 Widen vector type
8021//===----------------------------------------------------------------------===//
8022
8023/// getWidenVectorType: given a vector type, returns the type to widen
8024/// to (e.g., v7i8 to v8i8). If the vector type is legal, it returns itself.
8025/// If there is no vector type that we want to widen to, returns MVT::Other
Mon P Wangf007a8b2008-11-06 05:31:54 +00008026/// When and where to widen is target dependent based on the cost of
Mon P Wang0c397192008-10-30 08:01:45 +00008027/// scalarizing vs using the wider vector type.
8028
8029MVT X86TargetLowering::getWidenVectorType(MVT VT) {
8030 assert(VT.isVector());
8031 if (isTypeLegal(VT))
8032 return VT;
8033
8034 // TODO: In computeRegisterProperty, we can compute the list of legal vector
8035 // type based on element type. This would speed up our search (though
8036 // it may not be worth it since the size of the list is relatively
8037 // small).
8038 MVT EltVT = VT.getVectorElementType();
8039 unsigned NElts = VT.getVectorNumElements();
8040
8041 // On X86, it make sense to widen any vector wider than 1
8042 if (NElts <= 1)
8043 return MVT::Other;
8044
8045 for (unsigned nVT = MVT::FIRST_VECTOR_VALUETYPE;
8046 nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
8047 MVT SVT = (MVT::SimpleValueType)nVT;
8048
8049 if (isTypeLegal(SVT) &&
8050 SVT.getVectorElementType() == EltVT &&
8051 SVT.getVectorNumElements() > NElts)
8052 return SVT;
8053 }
8054 return MVT::Other;
8055}