blob: 641ccb03dec96d5b2d93a1d6e537c85a65de3f6b [file] [log] [blame]
Chris Lattnerc6d05672006-05-23 23:20:42 +00001//===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
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 Cheng30b37b52006-03-13 23:18:16 +000026#include "llvm/ADT/VectorExtras.h"
27#include "llvm/Analysis/ScalarEvolutionExpressions.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"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000032#include "llvm/CodeGen/SelectionDAG.h"
33#include "llvm/CodeGen/SSARegMap.h"
Evan Chengef6ffb12006-01-31 03:14:29 +000034#include "llvm/Support/MathExtras.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000035#include "llvm/Target/TargetOptions.h"
Chris Lattner1a60aa72006-10-31 19:42:44 +000036#include "llvm/ADT/StringExtras.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000037using namespace llvm;
38
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000039X86TargetLowering::X86TargetLowering(TargetMachine &TM)
40 : TargetLowering(TM) {
Evan Cheng559806f2006-01-27 08:10:46 +000041 Subtarget = &TM.getSubtarget<X86Subtarget>();
42 X86ScalarSSE = Subtarget->hasSSE2();
Evan Cheng25ab6902006-09-08 06:48:29 +000043 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Evan Cheng559806f2006-01-27 08:10:46 +000044
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000045 // Set up the TargetLowering object.
46
47 // X86 is weird, it always uses i8 for shift amounts and setcc results.
48 setShiftAmountType(MVT::i8);
49 setSetCCResultType(MVT::i8);
50 setSetCCResultContents(ZeroOrOneSetCCResult);
Evan Cheng0b2afbd2006-01-25 09:15:17 +000051 setSchedulingPreference(SchedulingForRegPressure);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000052 setShiftAmountFlavor(Mask); // shl X, 32 == shl X, 0
Evan Cheng25ab6902006-09-08 06:48:29 +000053 setStackPointerRegisterToSaveRestore(X86StackPtr);
Evan Cheng714554d2006-03-16 21:47:42 +000054
Anton Korobeynikovd27a2582006-12-10 23:12:42 +000055 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +000056 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +000057 setUseUnderscoreSetJmp(false);
58 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +000059 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +000060 // MS runtime is weird: it exports _setjmp, but longjmp!
61 setUseUnderscoreSetJmp(true);
62 setUseUnderscoreLongJmp(false);
63 } else {
64 setUseUnderscoreSetJmp(true);
65 setUseUnderscoreLongJmp(true);
66 }
67
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000068 // Set up the register classes.
Evan Cheng069287d2006-05-16 07:21:53 +000069 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
70 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
71 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
Evan Cheng25ab6902006-09-08 06:48:29 +000072 if (Subtarget->is64Bit())
73 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000074
Evan Chengc5484282006-10-04 00:56:09 +000075 setLoadXAction(ISD::SEXTLOAD, MVT::i1, Expand);
76
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000077 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
78 // operation.
79 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
80 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
81 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +000082
Evan Cheng25ab6902006-09-08 06:48:29 +000083 if (Subtarget->is64Bit()) {
84 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Evan Cheng6892f282006-01-17 02:32:49 +000085 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
Evan Cheng25ab6902006-09-08 06:48:29 +000086 } else {
87 if (X86ScalarSSE)
88 // If SSE i64 SINT_TO_FP is not available, expand i32 UINT_TO_FP.
89 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Expand);
90 else
91 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
92 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000093
94 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
95 // this operation.
96 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
97 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +000098 // SSE has no i16 to fp conversion, only i32
Evan Cheng02568ff2006-01-30 22:13:22 +000099 if (X86ScalarSSE)
Evan Cheng02568ff2006-01-30 22:13:22 +0000100 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000101 else {
102 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
103 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
104 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000105
Evan Cheng25ab6902006-09-08 06:48:29 +0000106 if (!Subtarget->is64Bit()) {
107 // Custom lower SINT_TO_FP and FP_TO_SINT from/to i64 in 32-bit mode.
108 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
109 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
110 }
Evan Cheng6dab0532006-01-30 08:02:57 +0000111
Evan Cheng02568ff2006-01-30 22:13:22 +0000112 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
113 // this operation.
114 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
115 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
116
117 if (X86ScalarSSE) {
118 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
119 } else {
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000120 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000121 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000122 }
123
124 // Handle FP_TO_UINT by promoting the destination to a larger signed
125 // conversion.
126 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
127 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
128 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
129
Evan Cheng25ab6902006-09-08 06:48:29 +0000130 if (Subtarget->is64Bit()) {
131 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000132 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Evan Cheng25ab6902006-09-08 06:48:29 +0000133 } else {
134 if (X86ScalarSSE && !Subtarget->hasSSE3())
135 // Expand FP_TO_UINT into a select.
136 // FIXME: We would like to use a Custom expander here eventually to do
137 // the optimal thing for SSE vs. the default expansion in the legalizer.
138 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
139 else
140 // With SSE3 we can use fisttpll to convert to a signed i64.
141 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
142 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000143
Chris Lattner399610a2006-12-05 18:22:22 +0000144 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Chris Lattnerf3597a12006-12-05 18:45:06 +0000145 if (!X86ScalarSSE) {
146 setOperationAction(ISD::BIT_CONVERT , MVT::f32 , Expand);
147 setOperationAction(ISD::BIT_CONVERT , MVT::i32 , Expand);
148 }
Chris Lattner21f66852005-12-23 05:15:23 +0000149
Evan Chengc35497f2006-10-30 08:02:39 +0000150 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000151 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
Nate Begeman750ac1b2006-02-01 07:19:44 +0000152 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
153 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000154 setOperationAction(ISD::MEMMOVE , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000155 if (Subtarget->is64Bit())
156 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000157 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Expand);
Chris Lattnere80242a2005-12-07 17:59:14 +0000158 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000159 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
160 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000161 setOperationAction(ISD::FREM , MVT::f64 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000162
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000163 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
164 setOperationAction(ISD::CTTZ , MVT::i8 , Expand);
165 setOperationAction(ISD::CTLZ , MVT::i8 , Expand);
166 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
167 setOperationAction(ISD::CTTZ , MVT::i16 , Expand);
168 setOperationAction(ISD::CTLZ , MVT::i16 , Expand);
169 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
170 setOperationAction(ISD::CTTZ , MVT::i32 , Expand);
171 setOperationAction(ISD::CTLZ , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000172 if (Subtarget->is64Bit()) {
173 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
174 setOperationAction(ISD::CTTZ , MVT::i64 , Expand);
175 setOperationAction(ISD::CTLZ , MVT::i64 , Expand);
176 }
177
Andrew Lenharthb873ff32005-11-20 21:41:10 +0000178 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
Nate Begemand88fc032006-01-14 03:14:10 +0000179 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000180
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000181 // These should be promoted to a larger select which is supported.
182 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
183 setOperationAction(ISD::SELECT , MVT::i8 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000184 // X86 wants to expand cmov itself.
Evan Cheng5298bcc2006-02-17 07:01:52 +0000185 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
186 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
187 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
188 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
189 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
190 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
191 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
192 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
193 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000194 if (Subtarget->is64Bit()) {
195 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
196 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
197 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000198 // X86 ret instruction may pop stack.
Evan Cheng5298bcc2006-02-17 07:01:52 +0000199 setOperationAction(ISD::RET , MVT::Other, Custom);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000200 // Darwin ABI issue.
Evan Cheng7ccced62006-02-18 00:15:05 +0000201 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
Nate Begeman37efe672006-04-22 18:53:45 +0000202 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000203 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000204 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Evan Cheng020d2e82006-02-23 20:41:18 +0000205 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000206 if (Subtarget->is64Bit()) {
207 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
208 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
209 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
210 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
211 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000212 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Evan Cheng5298bcc2006-02-17 07:01:52 +0000213 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
214 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
215 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000216 // X86 wants to expand memset / memcpy itself.
Evan Cheng5298bcc2006-02-17 07:01:52 +0000217 setOperationAction(ISD::MEMSET , MVT::Other, Custom);
218 setOperationAction(ISD::MEMCPY , MVT::Other, Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000219
Chris Lattnerf73bae12005-11-29 06:16:21 +0000220 // We don't have line number support yet.
221 setOperationAction(ISD::LOCATION, MVT::Other, Expand);
Jim Laskeye0bce712006-01-05 01:47:43 +0000222 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
Evan Cheng3c992d22006-03-07 02:02:57 +0000223 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000224 if (!Subtarget->isTargetDarwin() &&
225 !Subtarget->isTargetELF() &&
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000226 !Subtarget->isTargetCygMing())
Jim Laskey1ee29252007-01-26 14:34:52 +0000227 setOperationAction(ISD::LABEL, MVT::Other, Expand);
Chris Lattnerf73bae12005-11-29 06:16:21 +0000228
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000229 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
230 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
231 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
232 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
233 if (Subtarget->is64Bit()) {
234 // FIXME: Verify
235 setExceptionPointerRegister(X86::RAX);
236 setExceptionSelectorRegister(X86::RDX);
237 } else {
238 setExceptionPointerRegister(X86::EAX);
239 setExceptionSelectorRegister(X86::EDX);
240 }
241
Nate Begemanacc398c2006-01-25 18:21:52 +0000242 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
243 setOperationAction(ISD::VASTART , MVT::Other, Custom);
Nate Begemanacc398c2006-01-25 18:21:52 +0000244 setOperationAction(ISD::VAARG , MVT::Other, Expand);
Nate Begemanacc398c2006-01-25 18:21:52 +0000245 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Evan Chengae642192007-03-02 23:16:35 +0000246 if (Subtarget->is64Bit())
247 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
248 else
249 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
250
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000251 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
Chris Lattnere1125522006-01-15 09:00:21 +0000252 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000253 if (Subtarget->is64Bit())
254 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000255 if (Subtarget->isTargetCygMing())
256 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
257 else
258 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000259
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000260 if (X86ScalarSSE) {
261 // Set up the FP register classes.
Evan Cheng5ee4ccc2006-01-12 08:27:59 +0000262 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
263 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000264
Evan Cheng223547a2006-01-31 22:28:30 +0000265 // Use ANDPD to simulate FABS.
266 setOperationAction(ISD::FABS , MVT::f64, Custom);
267 setOperationAction(ISD::FABS , MVT::f32, Custom);
268
269 // Use XORP to simulate FNEG.
270 setOperationAction(ISD::FNEG , MVT::f64, Custom);
271 setOperationAction(ISD::FNEG , MVT::f32, Custom);
272
Evan Cheng68c47cb2007-01-05 07:55:56 +0000273 // Use ANDPD and ORPD to simulate FCOPYSIGN.
274 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
275 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
276
Evan Chengd25e9e82006-02-02 00:28:23 +0000277 // We don't support sin/cos/fmod
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000278 setOperationAction(ISD::FSIN , MVT::f64, Expand);
279 setOperationAction(ISD::FCOS , MVT::f64, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000280 setOperationAction(ISD::FREM , MVT::f64, Expand);
281 setOperationAction(ISD::FSIN , MVT::f32, Expand);
282 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000283 setOperationAction(ISD::FREM , MVT::f32, Expand);
284
Chris Lattnera54aa942006-01-29 06:26:08 +0000285 // Expand FP immediates into loads from the stack, except for the special
286 // cases we handle.
287 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
288 setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000289 addLegalFPImmediate(+0.0); // xorps / xorpd
290 } else {
291 // Set up the FP register classes.
Dale Johannesen849f2142007-07-03 00:53:03 +0000292 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
293 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000294
Evan Cheng68c47cb2007-01-05 07:55:56 +0000295 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesen849f2142007-07-03 00:53:03 +0000296 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000297 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
298 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen849f2142007-07-03 00:53:03 +0000299 setOperationAction(ISD::FP_ROUND, MVT::f32, Expand);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000300
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000301 if (!UnsafeFPMath) {
302 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
303 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
304 }
305
Chris Lattnera54aa942006-01-29 06:26:08 +0000306 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
Dale Johannesen849f2142007-07-03 00:53:03 +0000307 setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000308 addLegalFPImmediate(+0.0); // FLD0
309 addLegalFPImmediate(+1.0); // FLD1
310 addLegalFPImmediate(-0.0); // FLD0/FCHS
311 addLegalFPImmediate(-1.0); // FLD1/FCHS
312 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000313
Evan Chengd30bf012006-03-01 01:11:20 +0000314 // First set operation action for all vector types to expand. Then we
315 // will selectively turn on ones that can be effectively codegen'd.
Dan Gohmanfa0f77d2007-05-18 18:44:07 +0000316 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
317 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
Evan Chengd30bf012006-03-01 01:11:20 +0000318 setOperationAction(ISD::ADD , (MVT::ValueType)VT, Expand);
319 setOperationAction(ISD::SUB , (MVT::ValueType)VT, Expand);
Evan Cheng6bdb3f62006-10-27 18:49:08 +0000320 setOperationAction(ISD::FADD, (MVT::ValueType)VT, Expand);
Evan Chenga72cb0e2007-06-29 00:18:15 +0000321 setOperationAction(ISD::FNEG, (MVT::ValueType)VT, Expand);
Evan Cheng6bdb3f62006-10-27 18:49:08 +0000322 setOperationAction(ISD::FSUB, (MVT::ValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000323 setOperationAction(ISD::MUL , (MVT::ValueType)VT, Expand);
Evan Cheng6bdb3f62006-10-27 18:49:08 +0000324 setOperationAction(ISD::FMUL, (MVT::ValueType)VT, Expand);
325 setOperationAction(ISD::SDIV, (MVT::ValueType)VT, Expand);
326 setOperationAction(ISD::UDIV, (MVT::ValueType)VT, Expand);
327 setOperationAction(ISD::FDIV, (MVT::ValueType)VT, Expand);
328 setOperationAction(ISD::SREM, (MVT::ValueType)VT, Expand);
329 setOperationAction(ISD::UREM, (MVT::ValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000330 setOperationAction(ISD::LOAD, (MVT::ValueType)VT, Expand);
Evan Chengb067a1e2006-03-31 19:22:53 +0000331 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::ValueType)VT, Expand);
Chris Lattner9b3bd462006-03-21 20:51:05 +0000332 setOperationAction(ISD::EXTRACT_VECTOR_ELT, (MVT::ValueType)VT, Expand);
Evan Chengb067a1e2006-03-31 19:22:53 +0000333 setOperationAction(ISD::INSERT_VECTOR_ELT, (MVT::ValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000334 }
335
Evan Chenga88973f2006-03-22 19:22:18 +0000336 if (Subtarget->hasMMX()) {
Evan Cheng470a6ad2006-02-22 02:26:30 +0000337 addRegisterClass(MVT::v8i8, X86::VR64RegisterClass);
338 addRegisterClass(MVT::v4i16, X86::VR64RegisterClass);
339 addRegisterClass(MVT::v2i32, X86::VR64RegisterClass);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000340 addRegisterClass(MVT::v1i64, X86::VR64RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000341
Evan Chengd30bf012006-03-01 01:11:20 +0000342 // FIXME: add MMX packed arithmetics
Bill Wendlingbc9bffa2007-03-07 05:43:18 +0000343
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000344 setOperationAction(ISD::ADD, MVT::v8i8, Legal);
345 setOperationAction(ISD::ADD, MVT::v4i16, Legal);
346 setOperationAction(ISD::ADD, MVT::v2i32, Legal);
Chris Lattner6c284d72007-04-12 04:14:49 +0000347 setOperationAction(ISD::ADD, MVT::v1i64, Legal);
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000348
Bill Wendlingc1fb0472007-03-10 09:57:05 +0000349 setOperationAction(ISD::SUB, MVT::v8i8, Legal);
350 setOperationAction(ISD::SUB, MVT::v4i16, Legal);
351 setOperationAction(ISD::SUB, MVT::v2i32, Legal);
352
Bill Wendling74027e92007-03-15 21:24:36 +0000353 setOperationAction(ISD::MULHS, MVT::v4i16, Legal);
354 setOperationAction(ISD::MUL, MVT::v4i16, Legal);
355
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000356 setOperationAction(ISD::AND, MVT::v8i8, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000357 AddPromotedToType (ISD::AND, MVT::v8i8, MVT::v1i64);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000358 setOperationAction(ISD::AND, MVT::v4i16, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000359 AddPromotedToType (ISD::AND, MVT::v4i16, MVT::v1i64);
360 setOperationAction(ISD::AND, MVT::v2i32, Promote);
361 AddPromotedToType (ISD::AND, MVT::v2i32, MVT::v1i64);
362 setOperationAction(ISD::AND, MVT::v1i64, Legal);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000363
364 setOperationAction(ISD::OR, MVT::v8i8, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000365 AddPromotedToType (ISD::OR, MVT::v8i8, MVT::v1i64);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000366 setOperationAction(ISD::OR, MVT::v4i16, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000367 AddPromotedToType (ISD::OR, MVT::v4i16, MVT::v1i64);
368 setOperationAction(ISD::OR, MVT::v2i32, Promote);
369 AddPromotedToType (ISD::OR, MVT::v2i32, MVT::v1i64);
370 setOperationAction(ISD::OR, MVT::v1i64, Legal);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000371
372 setOperationAction(ISD::XOR, MVT::v8i8, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000373 AddPromotedToType (ISD::XOR, MVT::v8i8, MVT::v1i64);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000374 setOperationAction(ISD::XOR, MVT::v4i16, Promote);
Bill Wendlingab5b49d2007-03-26 08:03:33 +0000375 AddPromotedToType (ISD::XOR, MVT::v4i16, MVT::v1i64);
376 setOperationAction(ISD::XOR, MVT::v2i32, Promote);
377 AddPromotedToType (ISD::XOR, MVT::v2i32, MVT::v1i64);
378 setOperationAction(ISD::XOR, MVT::v1i64, Legal);
Bill Wendling1b7a81d2007-03-16 09:44:46 +0000379
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000380 setOperationAction(ISD::LOAD, MVT::v8i8, Promote);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000381 AddPromotedToType (ISD::LOAD, MVT::v8i8, MVT::v1i64);
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000382 setOperationAction(ISD::LOAD, MVT::v4i16, Promote);
Bill Wendlingeebc8a12007-03-26 07:53:08 +0000383 AddPromotedToType (ISD::LOAD, MVT::v4i16, MVT::v1i64);
384 setOperationAction(ISD::LOAD, MVT::v2i32, Promote);
385 AddPromotedToType (ISD::LOAD, MVT::v2i32, MVT::v1i64);
386 setOperationAction(ISD::LOAD, MVT::v1i64, Legal);
Bill Wendling2f88dcd2007-03-08 22:09:11 +0000387
Bill Wendlingccc44ad2007-03-27 20:22:40 +0000388 setOperationAction(ISD::BUILD_VECTOR, MVT::v8i8, Custom);
389 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i16, Custom);
390 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i32, Custom);
391 setOperationAction(ISD::BUILD_VECTOR, MVT::v1i64, Custom);
Bill Wendlinga348c562007-03-22 18:42:45 +0000392
393 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8i8, Custom);
394 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i16, Custom);
395 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i32, Custom);
Bill Wendlingccc44ad2007-03-27 20:22:40 +0000396 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v1i64, Custom);
Bill Wendling826f36f2007-03-28 00:57:11 +0000397
398 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Custom);
399 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Custom);
Bill Wendling2f9bb1a2007-04-24 21:16:55 +0000400 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Custom);
401 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000402 }
403
Evan Chenga88973f2006-03-22 19:22:18 +0000404 if (Subtarget->hasSSE1()) {
Evan Cheng470a6ad2006-02-22 02:26:30 +0000405 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
406
Evan Cheng6bdb3f62006-10-27 18:49:08 +0000407 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
408 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
409 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
410 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
Evan Chengf7c378e2006-04-10 07:23:14 +0000411 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
412 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
413 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
Evan Cheng11e15b32006-04-03 20:53:28 +0000414 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000415 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000416 }
417
Evan Chenga88973f2006-03-22 19:22:18 +0000418 if (Subtarget->hasSSE2()) {
Evan Cheng470a6ad2006-02-22 02:26:30 +0000419 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
420 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
421 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
422 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
423 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
424
Evan Chengf7c378e2006-04-10 07:23:14 +0000425 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
426 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
427 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
Evan Cheng37e88562007-03-12 22:58:52 +0000428 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
Evan Chengf7c378e2006-04-10 07:23:14 +0000429 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
430 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
431 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
Evan Cheng37e88562007-03-12 22:58:52 +0000432 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
Evan Chengf9989842006-04-13 05:10:25 +0000433 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
Evan Cheng6bdb3f62006-10-27 18:49:08 +0000434 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
435 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
436 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
437 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000438
Evan Chengf7c378e2006-04-10 07:23:14 +0000439 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
440 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
Evan Chengb067a1e2006-03-31 19:22:53 +0000441 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
Evan Cheng5edb8d22006-04-17 22:04:06 +0000442 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
443 // Implement v4f32 insert_vector_elt in terms of SSE2 v8i16 ones.
444 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000445
Evan Cheng2c3ae372006-04-12 21:21:57 +0000446 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
447 for (unsigned VT = (unsigned)MVT::v16i8; VT != (unsigned)MVT::v2i64; VT++) {
448 setOperationAction(ISD::BUILD_VECTOR, (MVT::ValueType)VT, Custom);
449 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::ValueType)VT, Custom);
450 setOperationAction(ISD::EXTRACT_VECTOR_ELT, (MVT::ValueType)VT, Custom);
451 }
452 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
453 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
454 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
455 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
456 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
457 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
458
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000459 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Evan Cheng2c3ae372006-04-12 21:21:57 +0000460 for (unsigned VT = (unsigned)MVT::v16i8; VT != (unsigned)MVT::v2i64; VT++) {
461 setOperationAction(ISD::AND, (MVT::ValueType)VT, Promote);
462 AddPromotedToType (ISD::AND, (MVT::ValueType)VT, MVT::v2i64);
463 setOperationAction(ISD::OR, (MVT::ValueType)VT, Promote);
464 AddPromotedToType (ISD::OR, (MVT::ValueType)VT, MVT::v2i64);
465 setOperationAction(ISD::XOR, (MVT::ValueType)VT, Promote);
466 AddPromotedToType (ISD::XOR, (MVT::ValueType)VT, MVT::v2i64);
Evan Cheng91b740d2006-04-12 17:12:36 +0000467 setOperationAction(ISD::LOAD, (MVT::ValueType)VT, Promote);
468 AddPromotedToType (ISD::LOAD, (MVT::ValueType)VT, MVT::v2i64);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000469 setOperationAction(ISD::SELECT, (MVT::ValueType)VT, Promote);
470 AddPromotedToType (ISD::SELECT, (MVT::ValueType)VT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000471 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000472
473 // Custom lower v2i64 and v2f64 selects.
474 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
Evan Cheng91b740d2006-04-12 17:12:36 +0000475 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
Evan Chengf7c378e2006-04-10 07:23:14 +0000476 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000477 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000478 }
479
Evan Cheng6be2c582006-04-05 23:38:46 +0000480 // We want to custom lower some of our intrinsics.
481 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
482
Evan Cheng206ee9d2006-07-07 08:33:52 +0000483 // We have target-specific dag combine patterns for the following nodes:
484 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Chris Lattner83e6c992006-10-04 06:57:07 +0000485 setTargetDAGCombine(ISD::SELECT);
Evan Cheng206ee9d2006-07-07 08:33:52 +0000486
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000487 computeRegisterProperties();
488
Evan Cheng87ed7162006-02-14 08:25:08 +0000489 // FIXME: These should be based on subtarget info. Plus, the values should
490 // be smaller when we are in optimizing for size mode.
Evan Chenga03a5dc2006-02-14 08:38:30 +0000491 maxStoresPerMemset = 16; // For %llvm.memset -> sequence of stores
492 maxStoresPerMemcpy = 16; // For %llvm.memcpy -> sequence of stores
493 maxStoresPerMemmove = 16; // For %llvm.memmove -> sequence of stores
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000494 allowUnalignedMemoryAccesses = true; // x86 supports it!
495}
496
Chris Lattner2b02a442007-02-25 08:29:00 +0000497
498//===----------------------------------------------------------------------===//
499// Return Value Calling Convention Implementation
500//===----------------------------------------------------------------------===//
501
Chris Lattner59ed56b2007-02-28 04:55:35 +0000502#include "X86GenCallingConv.inc"
Chris Lattner9774c912007-02-27 05:28:59 +0000503
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000504/// LowerRET - Lower an ISD::RET node.
505SDOperand X86TargetLowering::LowerRET(SDOperand Op, SelectionDAG &DAG) {
506 assert((Op.getNumOperands() & 1) == 1 && "ISD::RET should have odd # args");
507
Chris Lattner9774c912007-02-27 05:28:59 +0000508 SmallVector<CCValAssign, 16> RVLocs;
509 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
Chris Lattner52387be2007-06-19 00:13:10 +0000510 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
511 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
Chris Lattnere32bbf62007-02-28 07:09:55 +0000512 CCInfo.AnalyzeReturn(Op.Val, RetCC_X86);
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000513
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000514
515 // If this is the first return lowered for this function, add the regs to the
516 // liveout set for the function.
517 if (DAG.getMachineFunction().liveout_empty()) {
Chris Lattner9774c912007-02-27 05:28:59 +0000518 for (unsigned i = 0; i != RVLocs.size(); ++i)
519 if (RVLocs[i].isRegLoc())
520 DAG.getMachineFunction().addLiveOut(RVLocs[i].getLocReg());
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000521 }
522
523 SDOperand Chain = Op.getOperand(0);
524 SDOperand Flag;
525
526 // Copy the result values into the output registers.
Chris Lattner9774c912007-02-27 05:28:59 +0000527 if (RVLocs.size() != 1 || !RVLocs[0].isRegLoc() ||
528 RVLocs[0].getLocReg() != X86::ST0) {
529 for (unsigned i = 0; i != RVLocs.size(); ++i) {
530 CCValAssign &VA = RVLocs[i];
531 assert(VA.isRegLoc() && "Can only return in registers!");
532 Chain = DAG.getCopyToReg(Chain, VA.getLocReg(), Op.getOperand(i*2+1),
533 Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000534 Flag = Chain.getValue(1);
535 }
536 } else {
537 // We need to handle a destination of ST0 specially, because it isn't really
538 // a register.
539 SDOperand Value = Op.getOperand(1);
540
541 // If this is an FP return with ScalarSSE, we need to move the value from
542 // an XMM register onto the fp-stack.
543 if (X86ScalarSSE) {
544 SDOperand MemLoc;
545
546 // If this is a load into a scalarsse value, don't store the loaded value
547 // back to the stack, only to reload it: just replace the scalar-sse load.
548 if (ISD::isNON_EXTLoad(Value.Val) &&
549 (Chain == Value.getValue(1) || Chain == Value.getOperand(0))) {
550 Chain = Value.getOperand(0);
551 MemLoc = Value.getOperand(1);
552 } else {
553 // Spill the value to memory and reload it into top of stack.
Chris Lattner9774c912007-02-27 05:28:59 +0000554 unsigned Size = MVT::getSizeInBits(RVLocs[0].getValVT())/8;
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000555 MachineFunction &MF = DAG.getMachineFunction();
556 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size);
557 MemLoc = DAG.getFrameIndex(SSFI, getPointerTy());
558 Chain = DAG.getStore(Op.getOperand(0), Value, MemLoc, NULL, 0);
559 }
Dale Johannesen849f2142007-07-03 00:53:03 +0000560 SDVTList Tys = DAG.getVTList(RVLocs[0].getValVT(), MVT::Other);
Chris Lattner9774c912007-02-27 05:28:59 +0000561 SDOperand Ops[] = {Chain, MemLoc, DAG.getValueType(RVLocs[0].getValVT())};
Chris Lattner2a9bdd72007-02-25 09:12:39 +0000562 Value = DAG.getNode(X86ISD::FLD, Tys, Ops, 3);
563 Chain = Value.getValue(1);
564 }
565
566 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
567 SDOperand Ops[] = { Chain, Value };
568 Chain = DAG.getNode(X86ISD::FP_SET_RESULT, Tys, Ops, 2);
569 Flag = Chain.getValue(1);
570 }
571
572 SDOperand BytesToPop = DAG.getConstant(getBytesToPopOnReturn(), MVT::i16);
573 if (Flag.Val)
574 return DAG.getNode(X86ISD::RET_FLAG, MVT::Other, Chain, BytesToPop, Flag);
575 else
576 return DAG.getNode(X86ISD::RET_FLAG, MVT::Other, Chain, BytesToPop);
577}
578
579
Chris Lattner3085e152007-02-25 08:59:22 +0000580/// LowerCallResult - Lower the result values of an ISD::CALL into the
581/// appropriate copies out of appropriate physical registers. This assumes that
582/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
583/// being lowered. The returns a SDNode with the same number of values as the
584/// ISD::CALL.
585SDNode *X86TargetLowering::
586LowerCallResult(SDOperand Chain, SDOperand InFlag, SDNode *TheCall,
587 unsigned CallingConv, SelectionDAG &DAG) {
Chris Lattnere32bbf62007-02-28 07:09:55 +0000588
589 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +0000590 SmallVector<CCValAssign, 16> RVLocs;
Chris Lattner52387be2007-06-19 00:13:10 +0000591 bool isVarArg = cast<ConstantSDNode>(TheCall->getOperand(2))->getValue() != 0;
592 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
Chris Lattnere32bbf62007-02-28 07:09:55 +0000593 CCInfo.AnalyzeCallResult(TheCall, RetCC_X86);
594
Chris Lattner3085e152007-02-25 08:59:22 +0000595
Chris Lattnere32bbf62007-02-28 07:09:55 +0000596 SmallVector<SDOperand, 8> ResultVals;
Chris Lattner3085e152007-02-25 08:59:22 +0000597
598 // Copy all of the result registers out of their specified physreg.
Chris Lattner9774c912007-02-27 05:28:59 +0000599 if (RVLocs.size() != 1 || RVLocs[0].getLocReg() != X86::ST0) {
600 for (unsigned i = 0; i != RVLocs.size(); ++i) {
601 Chain = DAG.getCopyFromReg(Chain, RVLocs[i].getLocReg(),
602 RVLocs[i].getValVT(), InFlag).getValue(1);
Chris Lattner3085e152007-02-25 08:59:22 +0000603 InFlag = Chain.getValue(2);
604 ResultVals.push_back(Chain.getValue(0));
605 }
606 } else {
607 // Copies from the FP stack are special, as ST0 isn't a valid register
608 // before the fp stackifier runs.
609
610 // Copy ST0 into an RFP register with FP_GET_RESULT.
Dale Johannesen849f2142007-07-03 00:53:03 +0000611 SDVTList Tys = DAG.getVTList(RVLocs[0].getValVT(), MVT::Other, MVT::Flag);
Chris Lattner3085e152007-02-25 08:59:22 +0000612 SDOperand GROps[] = { Chain, InFlag };
613 SDOperand RetVal = DAG.getNode(X86ISD::FP_GET_RESULT, Tys, GROps, 2);
614 Chain = RetVal.getValue(1);
615 InFlag = RetVal.getValue(2);
616
617 // If we are using ScalarSSE, store ST(0) to the stack and reload it into
618 // an XMM register.
619 if (X86ScalarSSE) {
620 // FIXME: Currently the FST is flagged to the FP_GET_RESULT. This
621 // shouldn't be necessary except that RFP cannot be live across
622 // multiple blocks. When stackifier is fixed, they can be uncoupled.
623 MachineFunction &MF = DAG.getMachineFunction();
624 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
625 SDOperand StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
626 SDOperand Ops[] = {
Chris Lattner9774c912007-02-27 05:28:59 +0000627 Chain, RetVal, StackSlot, DAG.getValueType(RVLocs[0].getValVT()), InFlag
Chris Lattner3085e152007-02-25 08:59:22 +0000628 };
629 Chain = DAG.getNode(X86ISD::FST, MVT::Other, Ops, 5);
Chris Lattner9774c912007-02-27 05:28:59 +0000630 RetVal = DAG.getLoad(RVLocs[0].getValVT(), Chain, StackSlot, NULL, 0);
Chris Lattner3085e152007-02-25 08:59:22 +0000631 Chain = RetVal.getValue(1);
632 }
Chris Lattner3085e152007-02-25 08:59:22 +0000633 ResultVals.push_back(RetVal);
634 }
635
636 // Merge everything together with a MERGE_VALUES node.
637 ResultVals.push_back(Chain);
638 return DAG.getNode(ISD::MERGE_VALUES, TheCall->getVTList(),
639 &ResultVals[0], ResultVals.size()).Val;
Chris Lattner2b02a442007-02-25 08:29:00 +0000640}
641
642
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000643//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000644// C & StdCall Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000645//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000646// StdCall calling convention seems to be standard for many Windows' API
647// routines and around. It differs from C calling convention just a little:
648// callee should clean up the stack, not caller. Symbols should be also
649// decorated in some fancy way :) It doesn't support any vector arguments.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000650
Evan Cheng85e38002006-04-27 05:35:28 +0000651/// AddLiveIn - This helper function adds the specified physical register to the
652/// MachineFunction as a live in value. It also creates a corresponding virtual
653/// register for it.
654static unsigned AddLiveIn(MachineFunction &MF, unsigned PReg,
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000655 const TargetRegisterClass *RC) {
Evan Cheng85e38002006-04-27 05:35:28 +0000656 assert(RC->contains(PReg) && "Not the correct regclass!");
657 unsigned VReg = MF.getSSARegMap()->createVirtualRegister(RC);
658 MF.addLiveIn(PReg, VReg);
659 return VReg;
660}
661
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000662SDOperand X86TargetLowering::LowerCCCArguments(SDOperand Op, SelectionDAG &DAG,
663 bool isStdCall) {
Evan Cheng25caf632006-05-23 21:06:34 +0000664 unsigned NumArgs = Op.Val->getNumValues() - 1;
Evan Cheng1bc78042006-04-26 01:20:17 +0000665 MachineFunction &MF = DAG.getMachineFunction();
666 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng25caf632006-05-23 21:06:34 +0000667 SDOperand Root = Op.getOperand(0);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000668 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000669
Chris Lattner638402b2007-02-28 07:00:42 +0000670 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +0000671 SmallVector<CCValAssign, 16> ArgLocs;
Chris Lattner52387be2007-06-19 00:13:10 +0000672 CCState CCInfo(MF.getFunction()->getCallingConv(), isVarArg,
673 getTargetMachine(), ArgLocs);
Chris Lattner638402b2007-02-28 07:00:42 +0000674 CCInfo.AnalyzeFormalArguments(Op.Val, CC_X86_32_C);
675
Chris Lattnerf39f7712007-02-28 05:46:49 +0000676 SmallVector<SDOperand, 8> ArgValues;
677 unsigned LastVal = ~0U;
678 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
679 CCValAssign &VA = ArgLocs[i];
680 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
681 // places.
682 assert(VA.getValNo() != LastVal &&
683 "Don't support value assigned to multiple locs yet");
684 LastVal = VA.getValNo();
685
686 if (VA.isRegLoc()) {
687 MVT::ValueType RegVT = VA.getLocVT();
688 TargetRegisterClass *RC;
689 if (RegVT == MVT::i32)
690 RC = X86::GR32RegisterClass;
691 else {
692 assert(MVT::isVector(RegVT));
693 RC = X86::VR128RegisterClass;
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000694 }
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000695
Chris Lattner82932a52007-03-02 05:12:29 +0000696 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
697 SDOperand ArgValue = DAG.getCopyFromReg(Root, Reg, RegVT);
Chris Lattnerf39f7712007-02-28 05:46:49 +0000698
699 // If this is an 8 or 16-bit value, it is really passed promoted to 32
700 // bits. Insert an assert[sz]ext to capture this, then truncate to the
701 // right size.
702 if (VA.getLocInfo() == CCValAssign::SExt)
703 ArgValue = DAG.getNode(ISD::AssertSext, RegVT, ArgValue,
704 DAG.getValueType(VA.getValVT()));
705 else if (VA.getLocInfo() == CCValAssign::ZExt)
706 ArgValue = DAG.getNode(ISD::AssertZext, RegVT, ArgValue,
707 DAG.getValueType(VA.getValVT()));
708
709 if (VA.getLocInfo() != CCValAssign::Full)
710 ArgValue = DAG.getNode(ISD::TRUNCATE, VA.getValVT(), ArgValue);
711
712 ArgValues.push_back(ArgValue);
713 } else {
714 assert(VA.isMemLoc());
715
716 // Create the nodes corresponding to a load from this parameter slot.
717 int FI = MFI->CreateFixedObject(MVT::getSizeInBits(VA.getValVT())/8,
718 VA.getLocMemOffset());
719 SDOperand FIN = DAG.getFrameIndex(FI, getPointerTy());
720 ArgValues.push_back(DAG.getLoad(VA.getValVT(), Root, FIN, NULL, 0));
Evan Cheng1bc78042006-04-26 01:20:17 +0000721 }
Evan Cheng1bc78042006-04-26 01:20:17 +0000722 }
Chris Lattnerf39f7712007-02-28 05:46:49 +0000723
724 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng1bc78042006-04-26 01:20:17 +0000725
Evan Cheng25caf632006-05-23 21:06:34 +0000726 ArgValues.push_back(Root);
727
Evan Cheng1bc78042006-04-26 01:20:17 +0000728 // If the function takes variable number of arguments, make a frame index for
729 // the start of the first vararg value... for expansion of llvm.va_start.
Evan Cheng4db3af32006-05-23 21:08:24 +0000730 if (isVarArg)
Chris Lattnerf39f7712007-02-28 05:46:49 +0000731 VarArgsFrameIndex = MFI->CreateFixedObject(1, StackSize);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000732
733 if (isStdCall && !isVarArg) {
Chris Lattnerf39f7712007-02-28 05:46:49 +0000734 BytesToPopOnReturn = StackSize; // Callee pops everything..
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000735 BytesCallerReserves = 0;
736 } else {
Anton Korobeynikov1d9bacc2007-03-06 08:12:33 +0000737 BytesToPopOnReturn = 0; // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +0000738
739 // If this is an sret function, the return should pop the hidden pointer.
Anton Korobeynikov1d9bacc2007-03-06 08:12:33 +0000740 if (NumArgs &&
741 (cast<ConstantSDNode>(Op.getOperand(3))->getValue() &
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +0000742 ISD::ParamFlags::StructReturn))
Chris Lattnerf39f7712007-02-28 05:46:49 +0000743 BytesToPopOnReturn = 4;
744
745 BytesCallerReserves = StackSize;
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000746 }
747
Evan Cheng25ab6902006-09-08 06:48:29 +0000748 RegSaveFrameIndex = 0xAAAAAAA; // X86-64 only.
749 ReturnAddrIndex = 0; // No return address slot generated yet.
Evan Cheng25caf632006-05-23 21:06:34 +0000750
Chris Lattnerd15dff22007-04-17 17:21:52 +0000751 MF.getInfo<X86MachineFunctionInfo>()
752 ->setBytesToPopOnReturn(BytesToPopOnReturn);
Evan Cheng1bc78042006-04-26 01:20:17 +0000753
Evan Cheng25caf632006-05-23 21:06:34 +0000754 // Return the new list of results.
Chris Lattner5a88b832007-02-25 07:10:00 +0000755 return DAG.getNode(ISD::MERGE_VALUES, Op.Val->getVTList(),
Chris Lattner14dd4c92007-02-26 07:50:02 +0000756 &ArgValues[0], ArgValues.size()).getValue(Op.ResNo);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000757}
758
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000759SDOperand X86TargetLowering::LowerCCCCallTo(SDOperand Op, SelectionDAG &DAG,
Chris Lattner09c75a42007-02-25 09:06:15 +0000760 unsigned CC) {
Evan Cheng32fe1032006-05-25 00:59:30 +0000761 SDOperand Chain = Op.getOperand(0);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000762 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
Evan Cheng32fe1032006-05-25 00:59:30 +0000763 bool isTailCall = cast<ConstantSDNode>(Op.getOperand(3))->getValue() != 0;
764 SDOperand Callee = Op.getOperand(4);
Evan Cheng32fe1032006-05-25 00:59:30 +0000765 unsigned NumOps = (Op.getNumOperands() - 5) / 2;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000766
Chris Lattner638402b2007-02-28 07:00:42 +0000767 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +0000768 SmallVector<CCValAssign, 16> ArgLocs;
Chris Lattner52387be2007-06-19 00:13:10 +0000769 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Chris Lattner638402b2007-02-28 07:00:42 +0000770 CCInfo.AnalyzeCallOperands(Op.Val, CC_X86_32_C);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000771
Chris Lattner423c5f42007-02-28 05:31:48 +0000772 // Get a count of how many bytes are to be pushed on the stack.
773 unsigned NumBytes = CCInfo.getNextStackOffset();
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000774
Evan Cheng32fe1032006-05-25 00:59:30 +0000775 Chain = DAG.getCALLSEQ_START(Chain,DAG.getConstant(NumBytes, getPointerTy()));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000776
Chris Lattner5a88b832007-02-25 07:10:00 +0000777 SmallVector<std::pair<unsigned, SDOperand>, 8> RegsToPass;
778 SmallVector<SDOperand, 8> MemOpChains;
Evan Cheng32fe1032006-05-25 00:59:30 +0000779
Chris Lattner423c5f42007-02-28 05:31:48 +0000780 SDOperand StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +0000781
782 // Walk the register/memloc assignments, inserting copies/loads.
783 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
784 CCValAssign &VA = ArgLocs[i];
785 SDOperand Arg = Op.getOperand(5+2*VA.getValNo());
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000786
Chris Lattner423c5f42007-02-28 05:31:48 +0000787 // Promote the value if needed.
788 switch (VA.getLocInfo()) {
789 default: assert(0 && "Unknown loc info!");
790 case CCValAssign::Full: break;
791 case CCValAssign::SExt:
792 Arg = DAG.getNode(ISD::SIGN_EXTEND, VA.getLocVT(), Arg);
793 break;
794 case CCValAssign::ZExt:
795 Arg = DAG.getNode(ISD::ZERO_EXTEND, VA.getLocVT(), Arg);
796 break;
797 case CCValAssign::AExt:
798 Arg = DAG.getNode(ISD::ANY_EXTEND, VA.getLocVT(), Arg);
799 break;
Evan Cheng6b5783d2006-05-25 18:56:34 +0000800 }
Chris Lattner423c5f42007-02-28 05:31:48 +0000801
802 if (VA.isRegLoc()) {
803 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
804 } else {
805 assert(VA.isMemLoc());
806 if (StackPtr.Val == 0)
807 StackPtr = DAG.getRegister(getStackPtrReg(), getPointerTy());
808 SDOperand PtrOff = DAG.getConstant(VA.getLocMemOffset(), getPointerTy());
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000809 PtrOff = DAG.getNode(ISD::ADD, getPointerTy(), StackPtr, PtrOff);
810 MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, NULL, 0));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000811 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000812 }
813
Chris Lattnerc0bdf342007-02-28 05:39:26 +0000814 // If the first argument is an sret pointer, remember it.
Anton Korobeynikov1d9bacc2007-03-06 08:12:33 +0000815 bool isSRet = NumOps &&
816 (cast<ConstantSDNode>(Op.getOperand(6))->getValue() &
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +0000817 ISD::ParamFlags::StructReturn);
Chris Lattnerc0bdf342007-02-28 05:39:26 +0000818
Evan Cheng32fe1032006-05-25 00:59:30 +0000819 if (!MemOpChains.empty())
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000820 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
821 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000822
Evan Cheng347d5f72006-04-28 21:29:37 +0000823 // Build a sequence of copy-to-reg nodes chained together with token chain
824 // and flag operands which copy the outgoing args into registers.
825 SDOperand InFlag;
Evan Cheng32fe1032006-05-25 00:59:30 +0000826 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
827 Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first, RegsToPass[i].second,
828 InFlag);
Evan Cheng347d5f72006-04-28 21:29:37 +0000829 InFlag = Chain.getValue(1);
830 }
831
Evan Chengf4684712007-02-21 21:18:14 +0000832 // ELF / PIC requires GOT in the EBX register before function calls via PLT
833 // GOT pointer.
Evan Cheng706535d2007-01-22 21:34:25 +0000834 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
835 Subtarget->isPICStyleGOT()) {
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000836 Chain = DAG.getCopyToReg(Chain, X86::EBX,
837 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
838 InFlag);
839 InFlag = Chain.getValue(1);
840 }
841
Evan Cheng32fe1032006-05-25 00:59:30 +0000842 // If the callee is a GlobalAddress node (quite common, every direct call is)
843 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
Anton Korobeynikova5986852006-11-20 10:46:14 +0000844 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +0000845 // We should use extra load for direct calls to dllimported functions in
846 // non-JIT mode.
847 if (!Subtarget->GVRequiresExtraLoad(G->getGlobal(),
848 getTargetMachine(), true))
Anton Korobeynikova5986852006-11-20 10:46:14 +0000849 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy());
850 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
Evan Cheng32fe1032006-05-25 00:59:30 +0000851 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
852
Chris Lattnerd96d0722007-02-25 06:40:16 +0000853 // Returns a chain & a flag for retval copy to use.
854 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Chris Lattner5a88b832007-02-25 07:10:00 +0000855 SmallVector<SDOperand, 8> Ops;
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000856 Ops.push_back(Chain);
857 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +0000858
859 // Add argument registers to the end of the list so that they are known live
860 // into the call.
861 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000862 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
Evan Chengb69d1132006-06-14 18:17:40 +0000863 RegsToPass[i].second.getValueType()));
Evan Chengf4684712007-02-21 21:18:14 +0000864
865 // Add an implicit use GOT pointer in EBX.
866 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
867 Subtarget->isPICStyleGOT())
868 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
Anton Korobeynikov7f705592007-01-12 19:20:47 +0000869
Evan Cheng347d5f72006-04-28 21:29:37 +0000870 if (InFlag.Val)
871 Ops.push_back(InFlag);
Evan Chengd90eb7f2006-01-05 00:27:02 +0000872
Evan Cheng32fe1032006-05-25 00:59:30 +0000873 Chain = DAG.getNode(isTailCall ? X86ISD::TAILCALL : X86ISD::CALL,
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000874 NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +0000875 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +0000876
Chris Lattner2d297092006-05-23 18:50:38 +0000877 // Create the CALLSEQ_END node.
878 unsigned NumBytesForCalleeToPush = 0;
879
Chris Lattner09c75a42007-02-25 09:06:15 +0000880 if (CC == CallingConv::X86_StdCall) {
881 if (isVarArg)
Chris Lattnerc0bdf342007-02-28 05:39:26 +0000882 NumBytesForCalleeToPush = isSRet ? 4 : 0;
Chris Lattner09c75a42007-02-25 09:06:15 +0000883 else
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000884 NumBytesForCalleeToPush = NumBytes;
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000885 } else {
886 // If this is is a call to a struct-return function, the callee
887 // pops the hidden struct pointer, so we have to push it back.
888 // This is common for Darwin/X86, Linux & Mingw32 targets.
Chris Lattnerc0bdf342007-02-28 05:39:26 +0000889 NumBytesForCalleeToPush = isSRet ? 4 : 0;
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000890 }
891
Chris Lattner7d53a1c2007-02-25 07:18:38 +0000892 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000893 Ops.clear();
894 Ops.push_back(Chain);
895 Ops.push_back(DAG.getConstant(NumBytes, getPointerTy()));
Chris Lattner2d297092006-05-23 18:50:38 +0000896 Ops.push_back(DAG.getConstant(NumBytesForCalleeToPush, getPointerTy()));
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000897 Ops.push_back(InFlag);
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000898 Chain = DAG.getNode(ISD::CALLSEQ_END, NodeTys, &Ops[0], Ops.size());
Chris Lattner3085e152007-02-25 08:59:22 +0000899 InFlag = Chain.getValue(1);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000900
Chris Lattner3085e152007-02-25 08:59:22 +0000901 // Handle result values, copying them out of physregs into vregs that we
902 // return.
Chris Lattner09c75a42007-02-25 09:06:15 +0000903 return SDOperand(LowerCallResult(Chain, InFlag, Op.Val, CC, DAG), Op.ResNo);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000904}
905
Evan Cheng25ab6902006-09-08 06:48:29 +0000906
907//===----------------------------------------------------------------------===//
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +0000908// FastCall Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000909//===----------------------------------------------------------------------===//
910//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000911// The X86 'fastcall' calling convention passes up to two integer arguments in
912// registers (an appropriate portion of ECX/EDX), passes arguments in C order,
913// and requires that the callee pop its arguments off the stack (allowing proper
914// tail calls), and has the same return value conventions as C calling convs.
915//
916// This calling convention always arranges for the callee pop value to be 8n+4
917// bytes, which is needed for tail recursion elimination and stack alignment
918// reasons.
Evan Cheng25caf632006-05-23 21:06:34 +0000919SDOperand
Chris Lattner2db39b82007-02-28 06:05:16 +0000920X86TargetLowering::LowerFastCCArguments(SDOperand Op, SelectionDAG &DAG) {
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000921 MachineFunction &MF = DAG.getMachineFunction();
922 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng25caf632006-05-23 21:06:34 +0000923 SDOperand Root = Op.getOperand(0);
Chris Lattner52387be2007-06-19 00:13:10 +0000924 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000925
Chris Lattner638402b2007-02-28 07:00:42 +0000926 // Assign locations to all of the incoming arguments.
Chris Lattnerfc664c12007-02-28 06:21:19 +0000927 SmallVector<CCValAssign, 16> ArgLocs;
Chris Lattner52387be2007-06-19 00:13:10 +0000928 CCState CCInfo(MF.getFunction()->getCallingConv(), isVarArg,
929 getTargetMachine(), ArgLocs);
Chris Lattner638402b2007-02-28 07:00:42 +0000930 CCInfo.AnalyzeFormalArguments(Op.Val, CC_X86_32_FastCall);
Chris Lattnerfc664c12007-02-28 06:21:19 +0000931
932 SmallVector<SDOperand, 8> ArgValues;
933 unsigned LastVal = ~0U;
934 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
935 CCValAssign &VA = ArgLocs[i];
936 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
937 // places.
938 assert(VA.getValNo() != LastVal &&
939 "Don't support value assigned to multiple locs yet");
940 LastVal = VA.getValNo();
941
942 if (VA.isRegLoc()) {
943 MVT::ValueType RegVT = VA.getLocVT();
944 TargetRegisterClass *RC;
945 if (RegVT == MVT::i32)
946 RC = X86::GR32RegisterClass;
947 else {
948 assert(MVT::isVector(RegVT));
949 RC = X86::VR128RegisterClass;
950 }
951
Chris Lattner82932a52007-03-02 05:12:29 +0000952 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
953 SDOperand ArgValue = DAG.getCopyFromReg(Root, Reg, RegVT);
Chris Lattnerfc664c12007-02-28 06:21:19 +0000954
955 // If this is an 8 or 16-bit value, it is really passed promoted to 32
956 // bits. Insert an assert[sz]ext to capture this, then truncate to the
957 // right size.
958 if (VA.getLocInfo() == CCValAssign::SExt)
959 ArgValue = DAG.getNode(ISD::AssertSext, RegVT, ArgValue,
960 DAG.getValueType(VA.getValVT()));
961 else if (VA.getLocInfo() == CCValAssign::ZExt)
962 ArgValue = DAG.getNode(ISD::AssertZext, RegVT, ArgValue,
963 DAG.getValueType(VA.getValVT()));
964
965 if (VA.getLocInfo() != CCValAssign::Full)
966 ArgValue = DAG.getNode(ISD::TRUNCATE, VA.getValVT(), ArgValue);
967
968 ArgValues.push_back(ArgValue);
969 } else {
970 assert(VA.isMemLoc());
971
972 // Create the nodes corresponding to a load from this parameter slot.
973 int FI = MFI->CreateFixedObject(MVT::getSizeInBits(VA.getValVT())/8,
974 VA.getLocMemOffset());
975 SDOperand FIN = DAG.getFrameIndex(FI, getPointerTy());
976 ArgValues.push_back(DAG.getLoad(VA.getValVT(), Root, FIN, NULL, 0));
977 }
978 }
979
Evan Cheng25caf632006-05-23 21:06:34 +0000980 ArgValues.push_back(Root);
981
Chris Lattnerfc664c12007-02-28 06:21:19 +0000982 unsigned StackSize = CCInfo.getNextStackOffset();
Anton Korobeynikov9dd9abd2007-03-01 16:29:22 +0000983
Anton Korobeynikovf7dcfa82007-03-02 21:50:27 +0000984 if (!Subtarget->isTargetCygMing() && !Subtarget->isTargetWindows()) {
Anton Korobeynikov9dd9abd2007-03-01 16:29:22 +0000985 // Make sure the instruction takes 8n+4 bytes to make sure the start of the
986 // arguments and the arguments after the retaddr has been pushed are aligned.
987 if ((StackSize & 7) == 0)
988 StackSize += 4;
989 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000990
991 VarArgsFrameIndex = 0xAAAAAAA; // fastcc functions can't have varargs.
Evan Cheng25ab6902006-09-08 06:48:29 +0000992 RegSaveFrameIndex = 0xAAAAAAA; // X86-64 only.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000993 ReturnAddrIndex = 0; // No return address slot generated yet.
Chris Lattnerfc664c12007-02-28 06:21:19 +0000994 BytesToPopOnReturn = StackSize; // Callee pops all stack arguments.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000995 BytesCallerReserves = 0;
996
Chris Lattnerd15dff22007-04-17 17:21:52 +0000997 MF.getInfo<X86MachineFunctionInfo>()
998 ->setBytesToPopOnReturn(BytesToPopOnReturn);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +0000999
Evan Cheng25caf632006-05-23 21:06:34 +00001000 // Return the new list of results.
Chris Lattner5a88b832007-02-25 07:10:00 +00001001 return DAG.getNode(ISD::MERGE_VALUES, Op.Val->getVTList(),
Chris Lattner14dd4c92007-02-26 07:50:02 +00001002 &ArgValues[0], ArgValues.size()).getValue(Op.ResNo);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001003}
1004
Chris Lattnere87e1152006-09-26 03:57:53 +00001005SDOperand X86TargetLowering::LowerFastCCCallTo(SDOperand Op, SelectionDAG &DAG,
Chris Lattner09c75a42007-02-25 09:06:15 +00001006 unsigned CC) {
Evan Cheng32fe1032006-05-25 00:59:30 +00001007 SDOperand Chain = Op.getOperand(0);
Evan Cheng32fe1032006-05-25 00:59:30 +00001008 bool isTailCall = cast<ConstantSDNode>(Op.getOperand(3))->getValue() != 0;
Chris Lattner52387be2007-06-19 00:13:10 +00001009 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
Evan Cheng32fe1032006-05-25 00:59:30 +00001010 SDOperand Callee = Op.getOperand(4);
Evan Cheng32fe1032006-05-25 00:59:30 +00001011
Chris Lattner638402b2007-02-28 07:00:42 +00001012 // Analyze operands of the call, assigning locations to each operand.
Chris Lattnerf5d280a2007-02-28 06:26:33 +00001013 SmallVector<CCValAssign, 16> ArgLocs;
Chris Lattner52387be2007-06-19 00:13:10 +00001014 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Chris Lattner638402b2007-02-28 07:00:42 +00001015 CCInfo.AnalyzeCallOperands(Op.Val, CC_X86_32_FastCall);
Chris Lattnerf5d280a2007-02-28 06:26:33 +00001016
1017 // Get a count of how many bytes are to be pushed on the stack.
1018 unsigned NumBytes = CCInfo.getNextStackOffset();
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001019
Anton Korobeynikovf7dcfa82007-03-02 21:50:27 +00001020 if (!Subtarget->isTargetCygMing() && !Subtarget->isTargetWindows()) {
Anton Korobeynikov9dd9abd2007-03-01 16:29:22 +00001021 // Make sure the instruction takes 8n+4 bytes to make sure the start of the
1022 // arguments and the arguments after the retaddr has been pushed are aligned.
1023 if ((NumBytes & 7) == 0)
1024 NumBytes += 4;
1025 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001026
Chris Lattner94dd2922006-02-13 09:00:43 +00001027 Chain = DAG.getCALLSEQ_START(Chain,DAG.getConstant(NumBytes, getPointerTy()));
Chris Lattnerf5d280a2007-02-28 06:26:33 +00001028
Chris Lattner5a88b832007-02-25 07:10:00 +00001029 SmallVector<std::pair<unsigned, SDOperand>, 8> RegsToPass;
1030 SmallVector<SDOperand, 8> MemOpChains;
Chris Lattnerf5d280a2007-02-28 06:26:33 +00001031
1032 SDOperand StackPtr;
1033
1034 // Walk the register/memloc assignments, inserting copies/loads.
1035 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1036 CCValAssign &VA = ArgLocs[i];
1037 SDOperand Arg = Op.getOperand(5+2*VA.getValNo());
1038
1039 // Promote the value if needed.
1040 switch (VA.getLocInfo()) {
1041 default: assert(0 && "Unknown loc info!");
1042 case CCValAssign::Full: break;
1043 case CCValAssign::SExt:
1044 Arg = DAG.getNode(ISD::SIGN_EXTEND, VA.getLocVT(), Arg);
Chris Lattner2db39b82007-02-28 06:05:16 +00001045 break;
Chris Lattnerf5d280a2007-02-28 06:26:33 +00001046 case CCValAssign::ZExt:
1047 Arg = DAG.getNode(ISD::ZERO_EXTEND, VA.getLocVT(), Arg);
1048 break;
1049 case CCValAssign::AExt:
1050 Arg = DAG.getNode(ISD::ANY_EXTEND, VA.getLocVT(), Arg);
1051 break;
1052 }
1053
1054 if (VA.isRegLoc()) {
1055 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1056 } else {
1057 assert(VA.isMemLoc());
1058 if (StackPtr.Val == 0)
1059 StackPtr = DAG.getRegister(getStackPtrReg(), getPointerTy());
1060 SDOperand PtrOff = DAG.getConstant(VA.getLocMemOffset(), getPointerTy());
Evan Cheng32fe1032006-05-25 00:59:30 +00001061 PtrOff = DAG.getNode(ISD::ADD, getPointerTy(), StackPtr, PtrOff);
Evan Cheng8b2794a2006-10-13 21:14:26 +00001062 MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, NULL, 0));
Evan Cheng32fe1032006-05-25 00:59:30 +00001063 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001064 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001065
Evan Cheng32fe1032006-05-25 00:59:30 +00001066 if (!MemOpChains.empty())
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001067 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
1068 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001069
Nate Begeman4c5dcf52006-02-17 00:03:04 +00001070 // Build a sequence of copy-to-reg nodes chained together with token chain
1071 // and flag operands which copy the outgoing args into registers.
1072 SDOperand InFlag;
Evan Cheng32fe1032006-05-25 00:59:30 +00001073 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1074 Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first, RegsToPass[i].second,
1075 InFlag);
Nate Begeman4c5dcf52006-02-17 00:03:04 +00001076 InFlag = Chain.getValue(1);
1077 }
1078
Evan Cheng32fe1032006-05-25 00:59:30 +00001079 // If the callee is a GlobalAddress node (quite common, every direct call is)
1080 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
Anton Korobeynikova5986852006-11-20 10:46:14 +00001081 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00001082 // We should use extra load for direct calls to dllimported functions in
1083 // non-JIT mode.
1084 if (!Subtarget->GVRequiresExtraLoad(G->getGlobal(),
1085 getTargetMachine(), true))
Anton Korobeynikova5986852006-11-20 10:46:14 +00001086 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy());
1087 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
Evan Cheng32fe1032006-05-25 00:59:30 +00001088 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
1089
Evan Chengf4684712007-02-21 21:18:14 +00001090 // ELF / PIC requires GOT in the EBX register before function calls via PLT
1091 // GOT pointer.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001092 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1093 Subtarget->isPICStyleGOT()) {
1094 Chain = DAG.getCopyToReg(Chain, X86::EBX,
1095 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
1096 InFlag);
1097 InFlag = Chain.getValue(1);
1098 }
1099
Chris Lattnerd96d0722007-02-25 06:40:16 +00001100 // Returns a chain & a flag for retval copy to use.
1101 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Chris Lattner5a88b832007-02-25 07:10:00 +00001102 SmallVector<SDOperand, 8> Ops;
Nate Begeman4c5dcf52006-02-17 00:03:04 +00001103 Ops.push_back(Chain);
1104 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00001105
1106 // Add argument registers to the end of the list so that they are known live
1107 // into the call.
1108 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00001109 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
Evan Chengb69d1132006-06-14 18:17:40 +00001110 RegsToPass[i].second.getValueType()));
1111
Evan Chengf4684712007-02-21 21:18:14 +00001112 // Add an implicit use GOT pointer in EBX.
1113 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1114 Subtarget->isPICStyleGOT())
1115 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
1116
Nate Begeman4c5dcf52006-02-17 00:03:04 +00001117 if (InFlag.Val)
1118 Ops.push_back(InFlag);
1119
1120 // FIXME: Do not generate X86ISD::TAILCALL for now.
Chris Lattner8c0c10c2006-05-16 06:45:34 +00001121 Chain = DAG.getNode(isTailCall ? X86ISD::TAILCALL : X86ISD::CALL,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001122 NodeTys, &Ops[0], Ops.size());
Nate Begeman4c5dcf52006-02-17 00:03:04 +00001123 InFlag = Chain.getValue(1);
1124
Chris Lattner7d53a1c2007-02-25 07:18:38 +00001125 // Returns a flag for retval copy to use.
1126 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Nate Begeman4c5dcf52006-02-17 00:03:04 +00001127 Ops.clear();
1128 Ops.push_back(Chain);
Evan Cheng32fe1032006-05-25 00:59:30 +00001129 Ops.push_back(DAG.getConstant(NumBytes, getPointerTy()));
1130 Ops.push_back(DAG.getConstant(NumBytes, getPointerTy()));
Nate Begeman4c5dcf52006-02-17 00:03:04 +00001131 Ops.push_back(InFlag);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001132 Chain = DAG.getNode(ISD::CALLSEQ_END, NodeTys, &Ops[0], Ops.size());
Chris Lattner339b4392007-02-25 09:10:05 +00001133 InFlag = Chain.getValue(1);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00001134
Chris Lattner339b4392007-02-25 09:10:05 +00001135 // Handle result values, copying them out of physregs into vregs that we
1136 // return.
1137 return SDOperand(LowerCallResult(Chain, InFlag, Op.Val, CC, DAG), Op.ResNo);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001138}
1139
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00001140
1141//===----------------------------------------------------------------------===//
1142// X86-64 C Calling Convention implementation
1143//===----------------------------------------------------------------------===//
1144
1145SDOperand
1146X86TargetLowering::LowerX86_64CCCArguments(SDOperand Op, SelectionDAG &DAG) {
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00001147 MachineFunction &MF = DAG.getMachineFunction();
1148 MachineFrameInfo *MFI = MF.getFrameInfo();
1149 SDOperand Root = Op.getOperand(0);
1150 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
1151
1152 static const unsigned GPR64ArgRegs[] = {
1153 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1154 };
1155 static const unsigned XMMArgRegs[] = {
1156 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1157 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1158 };
1159
Chris Lattner638402b2007-02-28 07:00:42 +00001160
1161 // Assign locations to all of the incoming arguments.
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00001162 SmallVector<CCValAssign, 16> ArgLocs;
Chris Lattner52387be2007-06-19 00:13:10 +00001163 CCState CCInfo(MF.getFunction()->getCallingConv(), isVarArg,
1164 getTargetMachine(), ArgLocs);
Chris Lattner638402b2007-02-28 07:00:42 +00001165 CCInfo.AnalyzeFormalArguments(Op.Val, CC_X86_64_C);
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00001166
1167 SmallVector<SDOperand, 8> ArgValues;
1168 unsigned LastVal = ~0U;
1169 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1170 CCValAssign &VA = ArgLocs[i];
1171 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1172 // places.
1173 assert(VA.getValNo() != LastVal &&
1174 "Don't support value assigned to multiple locs yet");
1175 LastVal = VA.getValNo();
1176
1177 if (VA.isRegLoc()) {
1178 MVT::ValueType RegVT = VA.getLocVT();
1179 TargetRegisterClass *RC;
1180 if (RegVT == MVT::i32)
1181 RC = X86::GR32RegisterClass;
1182 else if (RegVT == MVT::i64)
1183 RC = X86::GR64RegisterClass;
1184 else if (RegVT == MVT::f32)
1185 RC = X86::FR32RegisterClass;
1186 else if (RegVT == MVT::f64)
1187 RC = X86::FR64RegisterClass;
1188 else {
1189 assert(MVT::isVector(RegVT));
Chris Lattnerfdbe7202007-06-09 05:08:10 +00001190 if (MVT::getSizeInBits(RegVT) == 64) {
1191 RC = X86::GR64RegisterClass; // MMX values are passed in GPRs.
1192 RegVT = MVT::i64;
1193 } else
Chris Lattner6b7c21c2007-06-09 05:01:50 +00001194 RC = X86::VR128RegisterClass;
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00001195 }
Chris Lattner82932a52007-03-02 05:12:29 +00001196
1197 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
1198 SDOperand ArgValue = DAG.getCopyFromReg(Root, Reg, RegVT);
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00001199
1200 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1201 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1202 // right size.
1203 if (VA.getLocInfo() == CCValAssign::SExt)
1204 ArgValue = DAG.getNode(ISD::AssertSext, RegVT, ArgValue,
1205 DAG.getValueType(VA.getValVT()));
1206 else if (VA.getLocInfo() == CCValAssign::ZExt)
1207 ArgValue = DAG.getNode(ISD::AssertZext, RegVT, ArgValue,
1208 DAG.getValueType(VA.getValVT()));
1209
1210 if (VA.getLocInfo() != CCValAssign::Full)
1211 ArgValue = DAG.getNode(ISD::TRUNCATE, VA.getValVT(), ArgValue);
1212
Chris Lattnerfdbe7202007-06-09 05:08:10 +00001213 // Handle MMX values passed in GPRs.
1214 if (RegVT != VA.getLocVT() && RC == X86::GR64RegisterClass &&
1215 MVT::getSizeInBits(RegVT) == 64)
1216 ArgValue = DAG.getNode(ISD::BIT_CONVERT, VA.getLocVT(), ArgValue);
1217
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00001218 ArgValues.push_back(ArgValue);
1219 } else {
1220 assert(VA.isMemLoc());
1221
1222 // Create the nodes corresponding to a load from this parameter slot.
1223 int FI = MFI->CreateFixedObject(MVT::getSizeInBits(VA.getValVT())/8,
1224 VA.getLocMemOffset());
1225 SDOperand FIN = DAG.getFrameIndex(FI, getPointerTy());
1226 ArgValues.push_back(DAG.getLoad(VA.getValVT(), Root, FIN, NULL, 0));
1227 }
1228 }
1229
1230 unsigned StackSize = CCInfo.getNextStackOffset();
1231
1232 // If the function takes variable number of arguments, make a frame index for
1233 // the start of the first vararg value... for expansion of llvm.va_start.
1234 if (isVarArg) {
1235 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs, 6);
1236 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
1237
1238 // For X86-64, if there are vararg parameters that are passed via
1239 // registers, then we must store them to their spots on the stack so they
1240 // may be loaded by deferencing the result of va_next.
1241 VarArgsGPOffset = NumIntRegs * 8;
1242 VarArgsFPOffset = 6 * 8 + NumXMMRegs * 16;
1243 VarArgsFrameIndex = MFI->CreateFixedObject(1, StackSize);
1244 RegSaveFrameIndex = MFI->CreateStackObject(6 * 8 + 8 * 16, 16);
1245
1246 // Store the integer parameter registers.
1247 SmallVector<SDOperand, 8> MemOps;
1248 SDOperand RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
1249 SDOperand FIN = DAG.getNode(ISD::ADD, getPointerTy(), RSFIN,
1250 DAG.getConstant(VarArgsGPOffset, getPointerTy()));
1251 for (; NumIntRegs != 6; ++NumIntRegs) {
1252 unsigned VReg = AddLiveIn(MF, GPR64ArgRegs[NumIntRegs],
1253 X86::GR64RegisterClass);
1254 SDOperand Val = DAG.getCopyFromReg(Root, VReg, MVT::i64);
1255 SDOperand Store = DAG.getStore(Val.getValue(1), Val, FIN, NULL, 0);
1256 MemOps.push_back(Store);
1257 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN,
1258 DAG.getConstant(8, getPointerTy()));
1259 }
1260
1261 // Now store the XMM (fp + vector) parameter registers.
1262 FIN = DAG.getNode(ISD::ADD, getPointerTy(), RSFIN,
1263 DAG.getConstant(VarArgsFPOffset, getPointerTy()));
1264 for (; NumXMMRegs != 8; ++NumXMMRegs) {
1265 unsigned VReg = AddLiveIn(MF, XMMArgRegs[NumXMMRegs],
1266 X86::VR128RegisterClass);
1267 SDOperand Val = DAG.getCopyFromReg(Root, VReg, MVT::v4f32);
1268 SDOperand Store = DAG.getStore(Val.getValue(1), Val, FIN, NULL, 0);
1269 MemOps.push_back(Store);
1270 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN,
1271 DAG.getConstant(16, getPointerTy()));
1272 }
1273 if (!MemOps.empty())
1274 Root = DAG.getNode(ISD::TokenFactor, MVT::Other,
1275 &MemOps[0], MemOps.size());
1276 }
1277
1278 ArgValues.push_back(Root);
1279
1280 ReturnAddrIndex = 0; // No return address slot generated yet.
1281 BytesToPopOnReturn = 0; // Callee pops nothing.
1282 BytesCallerReserves = StackSize;
1283
1284 // Return the new list of results.
1285 return DAG.getNode(ISD::MERGE_VALUES, Op.Val->getVTList(),
1286 &ArgValues[0], ArgValues.size()).getValue(Op.ResNo);
1287}
1288
1289SDOperand
1290X86TargetLowering::LowerX86_64CCCCallTo(SDOperand Op, SelectionDAG &DAG,
1291 unsigned CC) {
1292 SDOperand Chain = Op.getOperand(0);
1293 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
1294 bool isTailCall = cast<ConstantSDNode>(Op.getOperand(3))->getValue() != 0;
1295 SDOperand Callee = Op.getOperand(4);
Chris Lattner638402b2007-02-28 07:00:42 +00001296
1297 // Analyze operands of the call, assigning locations to each operand.
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00001298 SmallVector<CCValAssign, 16> ArgLocs;
Chris Lattner52387be2007-06-19 00:13:10 +00001299 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
Chris Lattner638402b2007-02-28 07:00:42 +00001300 CCInfo.AnalyzeCallOperands(Op.Val, CC_X86_64_C);
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00001301
1302 // Get a count of how many bytes are to be pushed on the stack.
1303 unsigned NumBytes = CCInfo.getNextStackOffset();
1304 Chain = DAG.getCALLSEQ_START(Chain,DAG.getConstant(NumBytes, getPointerTy()));
1305
1306 SmallVector<std::pair<unsigned, SDOperand>, 8> RegsToPass;
1307 SmallVector<SDOperand, 8> MemOpChains;
1308
1309 SDOperand StackPtr;
1310
1311 // Walk the register/memloc assignments, inserting copies/loads.
1312 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1313 CCValAssign &VA = ArgLocs[i];
1314 SDOperand Arg = Op.getOperand(5+2*VA.getValNo());
1315
1316 // Promote the value if needed.
1317 switch (VA.getLocInfo()) {
1318 default: assert(0 && "Unknown loc info!");
1319 case CCValAssign::Full: break;
1320 case CCValAssign::SExt:
1321 Arg = DAG.getNode(ISD::SIGN_EXTEND, VA.getLocVT(), Arg);
1322 break;
1323 case CCValAssign::ZExt:
1324 Arg = DAG.getNode(ISD::ZERO_EXTEND, VA.getLocVT(), Arg);
1325 break;
1326 case CCValAssign::AExt:
1327 Arg = DAG.getNode(ISD::ANY_EXTEND, VA.getLocVT(), Arg);
1328 break;
1329 }
1330
1331 if (VA.isRegLoc()) {
1332 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1333 } else {
1334 assert(VA.isMemLoc());
1335 if (StackPtr.Val == 0)
1336 StackPtr = DAG.getRegister(getStackPtrReg(), getPointerTy());
1337 SDOperand PtrOff = DAG.getConstant(VA.getLocMemOffset(), getPointerTy());
1338 PtrOff = DAG.getNode(ISD::ADD, getPointerTy(), StackPtr, PtrOff);
1339 MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, NULL, 0));
1340 }
1341 }
1342
1343 if (!MemOpChains.empty())
1344 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
1345 &MemOpChains[0], MemOpChains.size());
1346
1347 // Build a sequence of copy-to-reg nodes chained together with token chain
1348 // and flag operands which copy the outgoing args into registers.
1349 SDOperand InFlag;
1350 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1351 Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first, RegsToPass[i].second,
1352 InFlag);
1353 InFlag = Chain.getValue(1);
1354 }
1355
1356 if (isVarArg) {
1357 // From AMD64 ABI document:
1358 // For calls that may call functions that use varargs or stdargs
1359 // (prototype-less calls or calls to functions containing ellipsis (...) in
1360 // the declaration) %al is used as hidden argument to specify the number
1361 // of SSE registers used. The contents of %al do not need to match exactly
1362 // the number of registers, but must be an ubound on the number of SSE
1363 // registers used and is in the range 0 - 8 inclusive.
1364
1365 // Count the number of XMM registers allocated.
1366 static const unsigned XMMArgRegs[] = {
1367 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1368 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1369 };
1370 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
1371
1372 Chain = DAG.getCopyToReg(Chain, X86::AL,
1373 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
1374 InFlag = Chain.getValue(1);
1375 }
1376
1377 // If the callee is a GlobalAddress node (quite common, every direct call is)
1378 // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
1379 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1380 // We should use extra load for direct calls to dllimported functions in
1381 // non-JIT mode.
Evan Chengba693002007-03-14 22:11:11 +00001382 if (getTargetMachine().getCodeModel() != CodeModel::Large
Anton Korobeynikovbed29462007-04-16 18:10:23 +00001383 && !Subtarget->GVRequiresExtraLoad(G->getGlobal(),
1384 getTargetMachine(), true))
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00001385 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy());
1386 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
Evan Chengba693002007-03-14 22:11:11 +00001387 if (getTargetMachine().getCodeModel() != CodeModel::Large)
1388 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00001389
1390 // Returns a chain & a flag for retval copy to use.
1391 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
1392 SmallVector<SDOperand, 8> Ops;
1393 Ops.push_back(Chain);
1394 Ops.push_back(Callee);
1395
1396 // Add argument registers to the end of the list so that they are known live
1397 // into the call.
1398 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1399 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1400 RegsToPass[i].second.getValueType()));
1401
1402 if (InFlag.Val)
1403 Ops.push_back(InFlag);
1404
1405 // FIXME: Do not generate X86ISD::TAILCALL for now.
1406 Chain = DAG.getNode(isTailCall ? X86ISD::TAILCALL : X86ISD::CALL,
1407 NodeTys, &Ops[0], Ops.size());
1408 InFlag = Chain.getValue(1);
1409
1410 // Returns a flag for retval copy to use.
1411 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
1412 Ops.clear();
1413 Ops.push_back(Chain);
1414 Ops.push_back(DAG.getConstant(NumBytes, getPointerTy()));
1415 Ops.push_back(DAG.getConstant(0, getPointerTy()));
1416 Ops.push_back(InFlag);
1417 Chain = DAG.getNode(ISD::CALLSEQ_END, NodeTys, &Ops[0], Ops.size());
1418 InFlag = Chain.getValue(1);
1419
1420 // Handle result values, copying them out of physregs into vregs that we
1421 // return.
1422 return SDOperand(LowerCallResult(Chain, InFlag, Op.Val, CC, DAG), Op.ResNo);
1423}
1424
1425
1426//===----------------------------------------------------------------------===//
1427// Other Lowering Hooks
1428//===----------------------------------------------------------------------===//
1429
1430
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001431SDOperand X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) {
1432 if (ReturnAddrIndex == 0) {
1433 // Set up a frame object for the return address.
1434 MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng25ab6902006-09-08 06:48:29 +00001435 if (Subtarget->is64Bit())
1436 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(8, -8);
1437 else
1438 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(4, -4);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001439 }
1440
Evan Cheng25ab6902006-09-08 06:48:29 +00001441 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001442}
1443
1444
1445
Evan Cheng6dfa9992006-01-30 23:41:35 +00001446/// translateX86CC - do a one to one translation of a ISD::CondCode to the X86
1447/// specific condition code. It returns a false if it cannot do a direct
Chris Lattnerf9570512006-09-13 03:22:10 +00001448/// translation. X86CC is the translated CondCode. LHS/RHS are modified as
1449/// needed.
Evan Cheng6be2c582006-04-05 23:38:46 +00001450static bool translateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
Chris Lattnerf9570512006-09-13 03:22:10 +00001451 unsigned &X86CC, SDOperand &LHS, SDOperand &RHS,
1452 SelectionDAG &DAG) {
Chris Lattner7fbe9722006-10-20 17:42:20 +00001453 X86CC = X86::COND_INVALID;
Evan Chengd9558e02006-01-06 00:43:03 +00001454 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00001455 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
1456 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
1457 // X > -1 -> X == 0, jump !sign.
1458 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner7fbe9722006-10-20 17:42:20 +00001459 X86CC = X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00001460 return true;
1461 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
1462 // X < 0 -> X == 0, jump on sign.
Chris Lattner7fbe9722006-10-20 17:42:20 +00001463 X86CC = X86::COND_S;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00001464 return true;
1465 }
Chris Lattnerf9570512006-09-13 03:22:10 +00001466 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00001467
Evan Chengd9558e02006-01-06 00:43:03 +00001468 switch (SetCCOpcode) {
1469 default: break;
Chris Lattner7fbe9722006-10-20 17:42:20 +00001470 case ISD::SETEQ: X86CC = X86::COND_E; break;
1471 case ISD::SETGT: X86CC = X86::COND_G; break;
1472 case ISD::SETGE: X86CC = X86::COND_GE; break;
1473 case ISD::SETLT: X86CC = X86::COND_L; break;
1474 case ISD::SETLE: X86CC = X86::COND_LE; break;
1475 case ISD::SETNE: X86CC = X86::COND_NE; break;
1476 case ISD::SETULT: X86CC = X86::COND_B; break;
1477 case ISD::SETUGT: X86CC = X86::COND_A; break;
1478 case ISD::SETULE: X86CC = X86::COND_BE; break;
1479 case ISD::SETUGE: X86CC = X86::COND_AE; break;
Evan Chengd9558e02006-01-06 00:43:03 +00001480 }
1481 } else {
1482 // On a floating point condition, the flags are set as follows:
1483 // ZF PF CF op
1484 // 0 | 0 | 0 | X > Y
1485 // 0 | 0 | 1 | X < Y
1486 // 1 | 0 | 0 | X == Y
1487 // 1 | 1 | 1 | unordered
Chris Lattnerf9570512006-09-13 03:22:10 +00001488 bool Flip = false;
Evan Chengd9558e02006-01-06 00:43:03 +00001489 switch (SetCCOpcode) {
1490 default: break;
1491 case ISD::SETUEQ:
Chris Lattner7fbe9722006-10-20 17:42:20 +00001492 case ISD::SETEQ: X86CC = X86::COND_E; break;
Evan Cheng5001ea12006-04-17 07:24:10 +00001493 case ISD::SETOLT: Flip = true; // Fallthrough
Evan Chengd9558e02006-01-06 00:43:03 +00001494 case ISD::SETOGT:
Chris Lattner7fbe9722006-10-20 17:42:20 +00001495 case ISD::SETGT: X86CC = X86::COND_A; break;
Evan Cheng5001ea12006-04-17 07:24:10 +00001496 case ISD::SETOLE: Flip = true; // Fallthrough
Evan Chengd9558e02006-01-06 00:43:03 +00001497 case ISD::SETOGE:
Chris Lattner7fbe9722006-10-20 17:42:20 +00001498 case ISD::SETGE: X86CC = X86::COND_AE; break;
Evan Cheng5001ea12006-04-17 07:24:10 +00001499 case ISD::SETUGT: Flip = true; // Fallthrough
Evan Chengd9558e02006-01-06 00:43:03 +00001500 case ISD::SETULT:
Chris Lattner7fbe9722006-10-20 17:42:20 +00001501 case ISD::SETLT: X86CC = X86::COND_B; break;
Evan Cheng5001ea12006-04-17 07:24:10 +00001502 case ISD::SETUGE: Flip = true; // Fallthrough
Evan Chengd9558e02006-01-06 00:43:03 +00001503 case ISD::SETULE:
Chris Lattner7fbe9722006-10-20 17:42:20 +00001504 case ISD::SETLE: X86CC = X86::COND_BE; break;
Evan Chengd9558e02006-01-06 00:43:03 +00001505 case ISD::SETONE:
Chris Lattner7fbe9722006-10-20 17:42:20 +00001506 case ISD::SETNE: X86CC = X86::COND_NE; break;
1507 case ISD::SETUO: X86CC = X86::COND_P; break;
1508 case ISD::SETO: X86CC = X86::COND_NP; break;
Evan Chengd9558e02006-01-06 00:43:03 +00001509 }
Chris Lattnerf9570512006-09-13 03:22:10 +00001510 if (Flip)
1511 std::swap(LHS, RHS);
Evan Chengd9558e02006-01-06 00:43:03 +00001512 }
Evan Cheng6dfa9992006-01-30 23:41:35 +00001513
Chris Lattner7fbe9722006-10-20 17:42:20 +00001514 return X86CC != X86::COND_INVALID;
Evan Chengd9558e02006-01-06 00:43:03 +00001515}
1516
Evan Cheng4a460802006-01-11 00:33:36 +00001517/// hasFPCMov - is there a floating point cmov for the specific X86 condition
1518/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00001519/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00001520static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00001521 switch (X86CC) {
1522 default:
1523 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00001524 case X86::COND_B:
1525 case X86::COND_BE:
1526 case X86::COND_E:
1527 case X86::COND_P:
1528 case X86::COND_A:
1529 case X86::COND_AE:
1530 case X86::COND_NE:
1531 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00001532 return true;
1533 }
1534}
1535
Evan Cheng5ced1d82006-04-06 23:23:56 +00001536/// isUndefOrInRange - Op is either an undef node or a ConstantSDNode. Return
Evan Chengc5cdff22006-04-07 21:53:05 +00001537/// true if Op is undef or if its value falls within the specified range (L, H].
Evan Cheng5ced1d82006-04-06 23:23:56 +00001538static bool isUndefOrInRange(SDOperand Op, unsigned Low, unsigned Hi) {
1539 if (Op.getOpcode() == ISD::UNDEF)
1540 return true;
1541
1542 unsigned Val = cast<ConstantSDNode>(Op)->getValue();
Evan Chengc5cdff22006-04-07 21:53:05 +00001543 return (Val >= Low && Val < Hi);
1544}
1545
1546/// isUndefOrEqual - Op is either an undef node or a ConstantSDNode. Return
1547/// true if Op is undef or if its value equal to the specified value.
1548static bool isUndefOrEqual(SDOperand Op, unsigned Val) {
1549 if (Op.getOpcode() == ISD::UNDEF)
1550 return true;
1551 return cast<ConstantSDNode>(Op)->getValue() == Val;
Evan Cheng5ced1d82006-04-06 23:23:56 +00001552}
1553
Evan Cheng0188ecb2006-03-22 18:59:22 +00001554/// isPSHUFDMask - Return true if the specified VECTOR_SHUFFLE operand
1555/// specifies a shuffle of elements that is suitable for input to PSHUFD.
1556bool X86::isPSHUFDMask(SDNode *N) {
1557 assert(N->getOpcode() == ISD::BUILD_VECTOR);
1558
1559 if (N->getNumOperands() != 4)
1560 return false;
1561
1562 // Check if the value doesn't reference the second vector.
Evan Cheng506d3df2006-03-29 23:07:14 +00001563 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) {
Evan Chengef698ca2006-03-31 00:30:29 +00001564 SDOperand Arg = N->getOperand(i);
1565 if (Arg.getOpcode() == ISD::UNDEF) continue;
1566 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1567 if (cast<ConstantSDNode>(Arg)->getValue() >= 4)
Evan Cheng506d3df2006-03-29 23:07:14 +00001568 return false;
1569 }
1570
1571 return true;
1572}
1573
1574/// isPSHUFHWMask - Return true if the specified VECTOR_SHUFFLE operand
Evan Chengc21a0532006-04-05 01:47:37 +00001575/// specifies a shuffle of elements that is suitable for input to PSHUFHW.
Evan Cheng506d3df2006-03-29 23:07:14 +00001576bool X86::isPSHUFHWMask(SDNode *N) {
1577 assert(N->getOpcode() == ISD::BUILD_VECTOR);
1578
1579 if (N->getNumOperands() != 8)
1580 return false;
1581
1582 // Lower quadword copied in order.
1583 for (unsigned i = 0; i != 4; ++i) {
Evan Chengef698ca2006-03-31 00:30:29 +00001584 SDOperand Arg = N->getOperand(i);
1585 if (Arg.getOpcode() == ISD::UNDEF) continue;
1586 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1587 if (cast<ConstantSDNode>(Arg)->getValue() != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00001588 return false;
1589 }
1590
1591 // Upper quadword shuffled.
1592 for (unsigned i = 4; i != 8; ++i) {
Evan Chengef698ca2006-03-31 00:30:29 +00001593 SDOperand Arg = N->getOperand(i);
1594 if (Arg.getOpcode() == ISD::UNDEF) continue;
1595 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1596 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
Evan Cheng506d3df2006-03-29 23:07:14 +00001597 if (Val < 4 || Val > 7)
1598 return false;
1599 }
1600
1601 return true;
1602}
1603
1604/// isPSHUFLWMask - Return true if the specified VECTOR_SHUFFLE operand
Evan Chengc21a0532006-04-05 01:47:37 +00001605/// specifies a shuffle of elements that is suitable for input to PSHUFLW.
Evan Cheng506d3df2006-03-29 23:07:14 +00001606bool X86::isPSHUFLWMask(SDNode *N) {
1607 assert(N->getOpcode() == ISD::BUILD_VECTOR);
1608
1609 if (N->getNumOperands() != 8)
1610 return false;
1611
1612 // Upper quadword copied in order.
Evan Chengc5cdff22006-04-07 21:53:05 +00001613 for (unsigned i = 4; i != 8; ++i)
1614 if (!isUndefOrEqual(N->getOperand(i), i))
Evan Cheng506d3df2006-03-29 23:07:14 +00001615 return false;
Evan Cheng506d3df2006-03-29 23:07:14 +00001616
1617 // Lower quadword shuffled.
Evan Chengc5cdff22006-04-07 21:53:05 +00001618 for (unsigned i = 0; i != 4; ++i)
1619 if (!isUndefOrInRange(N->getOperand(i), 0, 4))
Evan Cheng506d3df2006-03-29 23:07:14 +00001620 return false;
Evan Cheng0188ecb2006-03-22 18:59:22 +00001621
1622 return true;
1623}
1624
Evan Cheng14aed5e2006-03-24 01:18:28 +00001625/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
1626/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Chris Lattner5a88b832007-02-25 07:10:00 +00001627static bool isSHUFPMask(const SDOperand *Elems, unsigned NumElems) {
Evan Cheng39623da2006-04-20 08:58:49 +00001628 if (NumElems != 2 && NumElems != 4) return false;
Evan Cheng14aed5e2006-03-24 01:18:28 +00001629
Evan Cheng39623da2006-04-20 08:58:49 +00001630 unsigned Half = NumElems / 2;
1631 for (unsigned i = 0; i < Half; ++i)
Chris Lattner5a88b832007-02-25 07:10:00 +00001632 if (!isUndefOrInRange(Elems[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00001633 return false;
1634 for (unsigned i = Half; i < NumElems; ++i)
Chris Lattner5a88b832007-02-25 07:10:00 +00001635 if (!isUndefOrInRange(Elems[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00001636 return false;
Evan Cheng14aed5e2006-03-24 01:18:28 +00001637
1638 return true;
1639}
1640
Evan Cheng39623da2006-04-20 08:58:49 +00001641bool X86::isSHUFPMask(SDNode *N) {
1642 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00001643 return ::isSHUFPMask(N->op_begin(), N->getNumOperands());
Evan Cheng39623da2006-04-20 08:58:49 +00001644}
1645
Evan Cheng213d2cf2007-05-17 18:45:50 +00001646/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00001647/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
1648/// half elements to come from vector 1 (which would equal the dest.) and
1649/// the upper half to come from vector 2.
Chris Lattner5a88b832007-02-25 07:10:00 +00001650static bool isCommutedSHUFP(const SDOperand *Ops, unsigned NumOps) {
1651 if (NumOps != 2 && NumOps != 4) return false;
Evan Cheng39623da2006-04-20 08:58:49 +00001652
Chris Lattner5a88b832007-02-25 07:10:00 +00001653 unsigned Half = NumOps / 2;
Evan Cheng39623da2006-04-20 08:58:49 +00001654 for (unsigned i = 0; i < Half; ++i)
Chris Lattner5a88b832007-02-25 07:10:00 +00001655 if (!isUndefOrInRange(Ops[i], NumOps, NumOps*2))
Evan Cheng39623da2006-04-20 08:58:49 +00001656 return false;
Chris Lattner5a88b832007-02-25 07:10:00 +00001657 for (unsigned i = Half; i < NumOps; ++i)
1658 if (!isUndefOrInRange(Ops[i], 0, NumOps))
Evan Cheng39623da2006-04-20 08:58:49 +00001659 return false;
1660 return true;
1661}
1662
1663static bool isCommutedSHUFP(SDNode *N) {
1664 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00001665 return isCommutedSHUFP(N->op_begin(), N->getNumOperands());
Evan Cheng39623da2006-04-20 08:58:49 +00001666}
1667
Evan Cheng2c0dbd02006-03-24 02:58:06 +00001668/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
1669/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
1670bool X86::isMOVHLPSMask(SDNode *N) {
1671 assert(N->getOpcode() == ISD::BUILD_VECTOR);
1672
Evan Cheng2064a2b2006-03-28 06:50:32 +00001673 if (N->getNumOperands() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00001674 return false;
1675
Evan Cheng2064a2b2006-03-28 06:50:32 +00001676 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Evan Chengc5cdff22006-04-07 21:53:05 +00001677 return isUndefOrEqual(N->getOperand(0), 6) &&
1678 isUndefOrEqual(N->getOperand(1), 7) &&
1679 isUndefOrEqual(N->getOperand(2), 2) &&
1680 isUndefOrEqual(N->getOperand(3), 3);
Evan Cheng2064a2b2006-03-28 06:50:32 +00001681}
1682
Evan Cheng6e56e2c2006-11-07 22:14:24 +00001683/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
1684/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
1685/// <2, 3, 2, 3>
1686bool X86::isMOVHLPS_v_undef_Mask(SDNode *N) {
1687 assert(N->getOpcode() == ISD::BUILD_VECTOR);
1688
1689 if (N->getNumOperands() != 4)
1690 return false;
1691
1692 // Expect bit0 == 2, bit1 == 3, bit2 == 2, bit3 == 3
1693 return isUndefOrEqual(N->getOperand(0), 2) &&
1694 isUndefOrEqual(N->getOperand(1), 3) &&
1695 isUndefOrEqual(N->getOperand(2), 2) &&
1696 isUndefOrEqual(N->getOperand(3), 3);
1697}
1698
Evan Cheng5ced1d82006-04-06 23:23:56 +00001699/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
1700/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
1701bool X86::isMOVLPMask(SDNode *N) {
1702 assert(N->getOpcode() == ISD::BUILD_VECTOR);
1703
1704 unsigned NumElems = N->getNumOperands();
1705 if (NumElems != 2 && NumElems != 4)
1706 return false;
1707
Evan Chengc5cdff22006-04-07 21:53:05 +00001708 for (unsigned i = 0; i < NumElems/2; ++i)
1709 if (!isUndefOrEqual(N->getOperand(i), i + NumElems))
1710 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00001711
Evan Chengc5cdff22006-04-07 21:53:05 +00001712 for (unsigned i = NumElems/2; i < NumElems; ++i)
1713 if (!isUndefOrEqual(N->getOperand(i), i))
1714 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00001715
1716 return true;
1717}
1718
1719/// isMOVHPMask - Return true if the specified VECTOR_SHUFFLE operand
Evan Cheng533a0aa2006-04-19 20:35:22 +00001720/// specifies a shuffle of elements that is suitable for input to MOVHP{S|D}
1721/// and MOVLHPS.
Evan Cheng5ced1d82006-04-06 23:23:56 +00001722bool X86::isMOVHPMask(SDNode *N) {
1723 assert(N->getOpcode() == ISD::BUILD_VECTOR);
1724
1725 unsigned NumElems = N->getNumOperands();
1726 if (NumElems != 2 && NumElems != 4)
1727 return false;
1728
Evan Chengc5cdff22006-04-07 21:53:05 +00001729 for (unsigned i = 0; i < NumElems/2; ++i)
1730 if (!isUndefOrEqual(N->getOperand(i), i))
1731 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00001732
1733 for (unsigned i = 0; i < NumElems/2; ++i) {
1734 SDOperand Arg = N->getOperand(i + NumElems/2);
Evan Chengc5cdff22006-04-07 21:53:05 +00001735 if (!isUndefOrEqual(Arg, i + NumElems))
1736 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00001737 }
1738
1739 return true;
1740}
1741
Evan Cheng0038e592006-03-28 00:39:58 +00001742/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
1743/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Chris Lattner5a88b832007-02-25 07:10:00 +00001744bool static isUNPCKLMask(const SDOperand *Elts, unsigned NumElts,
1745 bool V2IsSplat = false) {
1746 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00001747 return false;
1748
Chris Lattner5a88b832007-02-25 07:10:00 +00001749 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
1750 SDOperand BitI = Elts[i];
1751 SDOperand BitI1 = Elts[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00001752 if (!isUndefOrEqual(BitI, j))
1753 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00001754 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00001755 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00001756 return false;
1757 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00001758 if (!isUndefOrEqual(BitI1, j + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00001759 return false;
1760 }
Evan Cheng0038e592006-03-28 00:39:58 +00001761 }
1762
1763 return true;
1764}
1765
Evan Cheng39623da2006-04-20 08:58:49 +00001766bool X86::isUNPCKLMask(SDNode *N, bool V2IsSplat) {
1767 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00001768 return ::isUNPCKLMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00001769}
1770
Evan Cheng4fcb9222006-03-28 02:43:26 +00001771/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
1772/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Chris Lattner5a88b832007-02-25 07:10:00 +00001773bool static isUNPCKHMask(const SDOperand *Elts, unsigned NumElts,
1774 bool V2IsSplat = false) {
1775 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00001776 return false;
1777
Chris Lattner5a88b832007-02-25 07:10:00 +00001778 for (unsigned i = 0, j = 0; i != NumElts; i += 2, ++j) {
1779 SDOperand BitI = Elts[i];
1780 SDOperand BitI1 = Elts[i+1];
1781 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00001782 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00001783 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00001784 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00001785 return false;
1786 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00001787 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00001788 return false;
1789 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00001790 }
1791
1792 return true;
1793}
1794
Evan Cheng39623da2006-04-20 08:58:49 +00001795bool X86::isUNPCKHMask(SDNode *N, bool V2IsSplat) {
1796 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00001797 return ::isUNPCKHMask(N->op_begin(), N->getNumOperands(), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00001798}
1799
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00001800/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
1801/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
1802/// <0, 0, 1, 1>
1803bool X86::isUNPCKL_v_undef_Mask(SDNode *N) {
1804 assert(N->getOpcode() == ISD::BUILD_VECTOR);
1805
1806 unsigned NumElems = N->getNumOperands();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00001807 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00001808 return false;
1809
1810 for (unsigned i = 0, j = 0; i != NumElems; i += 2, ++j) {
1811 SDOperand BitI = N->getOperand(i);
1812 SDOperand BitI1 = N->getOperand(i+1);
1813
Evan Chengc5cdff22006-04-07 21:53:05 +00001814 if (!isUndefOrEqual(BitI, j))
1815 return false;
1816 if (!isUndefOrEqual(BitI1, j))
1817 return false;
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00001818 }
1819
1820 return true;
1821}
1822
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00001823/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
1824/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
1825/// <2, 2, 3, 3>
1826bool X86::isUNPCKH_v_undef_Mask(SDNode *N) {
1827 assert(N->getOpcode() == ISD::BUILD_VECTOR);
1828
1829 unsigned NumElems = N->getNumOperands();
1830 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
1831 return false;
1832
1833 for (unsigned i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
1834 SDOperand BitI = N->getOperand(i);
1835 SDOperand BitI1 = N->getOperand(i + 1);
1836
1837 if (!isUndefOrEqual(BitI, j))
1838 return false;
1839 if (!isUndefOrEqual(BitI1, j))
1840 return false;
1841 }
1842
1843 return true;
1844}
1845
Evan Cheng017dcc62006-04-21 01:05:10 +00001846/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
1847/// specifies a shuffle of elements that is suitable for input to MOVSS,
1848/// MOVSD, and MOVD, i.e. setting the lowest element.
Chris Lattner5a88b832007-02-25 07:10:00 +00001849static bool isMOVLMask(const SDOperand *Elts, unsigned NumElts) {
1850 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00001851 return false;
1852
Chris Lattner5a88b832007-02-25 07:10:00 +00001853 if (!isUndefOrEqual(Elts[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00001854 return false;
1855
Chris Lattner5a88b832007-02-25 07:10:00 +00001856 for (unsigned i = 1; i < NumElts; ++i) {
1857 if (!isUndefOrEqual(Elts[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00001858 return false;
1859 }
1860
1861 return true;
1862}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00001863
Evan Cheng017dcc62006-04-21 01:05:10 +00001864bool X86::isMOVLMask(SDNode *N) {
Evan Cheng39623da2006-04-20 08:58:49 +00001865 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00001866 return ::isMOVLMask(N->op_begin(), N->getNumOperands());
Evan Cheng39623da2006-04-20 08:58:49 +00001867}
1868
Evan Cheng017dcc62006-04-21 01:05:10 +00001869/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
1870/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00001871/// element of vector 2 and the other elements to come from vector 1 in order.
Chris Lattner5a88b832007-02-25 07:10:00 +00001872static bool isCommutedMOVL(const SDOperand *Ops, unsigned NumOps,
1873 bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00001874 bool V2IsUndef = false) {
Chris Lattner5a88b832007-02-25 07:10:00 +00001875 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00001876 return false;
1877
1878 if (!isUndefOrEqual(Ops[0], 0))
1879 return false;
1880
Chris Lattner5a88b832007-02-25 07:10:00 +00001881 for (unsigned i = 1; i < NumOps; ++i) {
Evan Cheng39623da2006-04-20 08:58:49 +00001882 SDOperand Arg = Ops[i];
Chris Lattner5a88b832007-02-25 07:10:00 +00001883 if (!(isUndefOrEqual(Arg, i+NumOps) ||
1884 (V2IsUndef && isUndefOrInRange(Arg, NumOps, NumOps*2)) ||
1885 (V2IsSplat && isUndefOrEqual(Arg, NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00001886 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00001887 }
1888
1889 return true;
1890}
1891
Evan Cheng8cf723d2006-09-08 01:50:06 +00001892static bool isCommutedMOVL(SDNode *N, bool V2IsSplat = false,
1893 bool V2IsUndef = false) {
Evan Cheng39623da2006-04-20 08:58:49 +00001894 assert(N->getOpcode() == ISD::BUILD_VECTOR);
Chris Lattner5a88b832007-02-25 07:10:00 +00001895 return isCommutedMOVL(N->op_begin(), N->getNumOperands(),
1896 V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00001897}
1898
Evan Chengd9539472006-04-14 21:59:03 +00001899/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
1900/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
1901bool X86::isMOVSHDUPMask(SDNode *N) {
1902 assert(N->getOpcode() == ISD::BUILD_VECTOR);
1903
1904 if (N->getNumOperands() != 4)
1905 return false;
1906
1907 // Expect 1, 1, 3, 3
1908 for (unsigned i = 0; i < 2; ++i) {
1909 SDOperand Arg = N->getOperand(i);
1910 if (Arg.getOpcode() == ISD::UNDEF) continue;
1911 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1912 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
1913 if (Val != 1) return false;
1914 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00001915
1916 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00001917 for (unsigned i = 2; i < 4; ++i) {
1918 SDOperand Arg = N->getOperand(i);
1919 if (Arg.getOpcode() == ISD::UNDEF) continue;
1920 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1921 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
1922 if (Val != 3) return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00001923 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00001924 }
Evan Cheng39fc1452006-04-15 03:13:24 +00001925
Evan Cheng57ebe9f2006-04-15 05:37:34 +00001926 // Don't use movshdup if it can be done with a shufps.
1927 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00001928}
1929
1930/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
1931/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
1932bool X86::isMOVSLDUPMask(SDNode *N) {
1933 assert(N->getOpcode() == ISD::BUILD_VECTOR);
1934
1935 if (N->getNumOperands() != 4)
1936 return false;
1937
1938 // Expect 0, 0, 2, 2
1939 for (unsigned i = 0; i < 2; ++i) {
1940 SDOperand Arg = N->getOperand(i);
1941 if (Arg.getOpcode() == ISD::UNDEF) continue;
1942 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1943 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
1944 if (Val != 0) return false;
1945 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00001946
1947 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00001948 for (unsigned i = 2; i < 4; ++i) {
1949 SDOperand Arg = N->getOperand(i);
1950 if (Arg.getOpcode() == ISD::UNDEF) continue;
1951 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1952 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
1953 if (Val != 2) return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00001954 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00001955 }
Evan Cheng39fc1452006-04-15 03:13:24 +00001956
Evan Cheng57ebe9f2006-04-15 05:37:34 +00001957 // Don't use movshdup if it can be done with a shufps.
1958 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00001959}
1960
Evan Cheng49892af2007-06-19 00:02:56 +00001961/// isIdentityMask - Return true if the specified VECTOR_SHUFFLE operand
1962/// specifies a identity operation on the LHS or RHS.
1963static bool isIdentityMask(SDNode *N, bool RHS = false) {
1964 unsigned NumElems = N->getNumOperands();
1965 for (unsigned i = 0; i < NumElems; ++i)
1966 if (!isUndefOrEqual(N->getOperand(i), i + (RHS ? NumElems : 0)))
1967 return false;
1968 return true;
1969}
1970
Evan Chengb9df0ca2006-03-22 02:53:00 +00001971/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
1972/// a splat of a single element.
Evan Chengc575ca22006-04-17 20:43:08 +00001973static bool isSplatMask(SDNode *N) {
Evan Chengb9df0ca2006-03-22 02:53:00 +00001974 assert(N->getOpcode() == ISD::BUILD_VECTOR);
1975
Evan Chengb9df0ca2006-03-22 02:53:00 +00001976 // This is a splat operation if each element of the permute is the same, and
1977 // if the value doesn't reference the second vector.
Evan Cheng94fe5eb2006-04-19 23:28:59 +00001978 unsigned NumElems = N->getNumOperands();
1979 SDOperand ElementBase;
1980 unsigned i = 0;
1981 for (; i != NumElems; ++i) {
1982 SDOperand Elt = N->getOperand(i);
Reid Spencer3ed469c2006-11-02 20:25:50 +00001983 if (isa<ConstantSDNode>(Elt)) {
Evan Cheng94fe5eb2006-04-19 23:28:59 +00001984 ElementBase = Elt;
1985 break;
1986 }
1987 }
1988
1989 if (!ElementBase.Val)
1990 return false;
1991
1992 for (; i != NumElems; ++i) {
Evan Chengef698ca2006-03-31 00:30:29 +00001993 SDOperand Arg = N->getOperand(i);
1994 if (Arg.getOpcode() == ISD::UNDEF) continue;
1995 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Evan Cheng94fe5eb2006-04-19 23:28:59 +00001996 if (Arg != ElementBase) return false;
Evan Chengb9df0ca2006-03-22 02:53:00 +00001997 }
1998
1999 // Make sure it is a splat of the first vector operand.
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002000 return cast<ConstantSDNode>(ElementBase)->getValue() < NumElems;
Evan Chengb9df0ca2006-03-22 02:53:00 +00002001}
2002
Evan Chengc575ca22006-04-17 20:43:08 +00002003/// isSplatMask - Return true if the specified VECTOR_SHUFFLE operand specifies
2004/// a splat of a single element and it's a 2 or 4 element mask.
2005bool X86::isSplatMask(SDNode *N) {
2006 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2007
Evan Cheng94fe5eb2006-04-19 23:28:59 +00002008 // We can only splat 64-bit, and 32-bit quantities with a single instruction.
Evan Chengc575ca22006-04-17 20:43:08 +00002009 if (N->getNumOperands() != 4 && N->getNumOperands() != 2)
2010 return false;
2011 return ::isSplatMask(N);
2012}
2013
Evan Chengf686d9b2006-10-27 21:08:32 +00002014/// isSplatLoMask - Return true if the specified VECTOR_SHUFFLE operand
2015/// specifies a splat of zero element.
2016bool X86::isSplatLoMask(SDNode *N) {
2017 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2018
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002019 for (unsigned i = 0, e = N->getNumOperands(); i < e; ++i)
Evan Chengf686d9b2006-10-27 21:08:32 +00002020 if (!isUndefOrEqual(N->getOperand(i), 0))
2021 return false;
2022 return true;
2023}
2024
Evan Cheng63d33002006-03-22 08:01:21 +00002025/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
2026/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUF* and SHUFP*
2027/// instructions.
2028unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Evan Chengb9df0ca2006-03-22 02:53:00 +00002029 unsigned NumOperands = N->getNumOperands();
2030 unsigned Shift = (NumOperands == 4) ? 2 : 1;
2031 unsigned Mask = 0;
Evan Cheng36b27f32006-03-28 23:41:33 +00002032 for (unsigned i = 0; i < NumOperands; ++i) {
Evan Chengef698ca2006-03-31 00:30:29 +00002033 unsigned Val = 0;
2034 SDOperand Arg = N->getOperand(NumOperands-i-1);
2035 if (Arg.getOpcode() != ISD::UNDEF)
2036 Val = cast<ConstantSDNode>(Arg)->getValue();
Evan Cheng14aed5e2006-03-24 01:18:28 +00002037 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00002038 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00002039 if (i != NumOperands - 1)
2040 Mask <<= Shift;
2041 }
Evan Cheng63d33002006-03-22 08:01:21 +00002042
2043 return Mask;
2044}
2045
Evan Cheng506d3df2006-03-29 23:07:14 +00002046/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
2047/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFHW
2048/// instructions.
2049unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
2050 unsigned Mask = 0;
2051 // 8 nodes, but we only care about the last 4.
2052 for (unsigned i = 7; i >= 4; --i) {
Evan Chengef698ca2006-03-31 00:30:29 +00002053 unsigned Val = 0;
2054 SDOperand Arg = N->getOperand(i);
2055 if (Arg.getOpcode() != ISD::UNDEF)
2056 Val = cast<ConstantSDNode>(Arg)->getValue();
Evan Cheng506d3df2006-03-29 23:07:14 +00002057 Mask |= (Val - 4);
2058 if (i != 4)
2059 Mask <<= 2;
2060 }
2061
2062 return Mask;
2063}
2064
2065/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
2066/// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFLW
2067/// instructions.
2068unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
2069 unsigned Mask = 0;
2070 // 8 nodes, but we only care about the first 4.
2071 for (int i = 3; i >= 0; --i) {
Evan Chengef698ca2006-03-31 00:30:29 +00002072 unsigned Val = 0;
2073 SDOperand Arg = N->getOperand(i);
2074 if (Arg.getOpcode() != ISD::UNDEF)
2075 Val = cast<ConstantSDNode>(Arg)->getValue();
Evan Cheng506d3df2006-03-29 23:07:14 +00002076 Mask |= Val;
2077 if (i != 0)
2078 Mask <<= 2;
2079 }
2080
2081 return Mask;
2082}
2083
Evan Chengc21a0532006-04-05 01:47:37 +00002084/// isPSHUFHW_PSHUFLWMask - true if the specified VECTOR_SHUFFLE operand
2085/// specifies a 8 element shuffle that can be broken into a pair of
2086/// PSHUFHW and PSHUFLW.
2087static bool isPSHUFHW_PSHUFLWMask(SDNode *N) {
2088 assert(N->getOpcode() == ISD::BUILD_VECTOR);
2089
2090 if (N->getNumOperands() != 8)
2091 return false;
2092
2093 // Lower quadword shuffled.
2094 for (unsigned i = 0; i != 4; ++i) {
2095 SDOperand Arg = N->getOperand(i);
2096 if (Arg.getOpcode() == ISD::UNDEF) continue;
2097 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2098 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
2099 if (Val > 4)
2100 return false;
2101 }
2102
2103 // Upper quadword shuffled.
2104 for (unsigned i = 4; i != 8; ++i) {
2105 SDOperand Arg = N->getOperand(i);
2106 if (Arg.getOpcode() == ISD::UNDEF) continue;
2107 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2108 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
2109 if (Val < 4 || Val > 7)
2110 return false;
2111 }
2112
2113 return true;
2114}
2115
Evan Cheng5ced1d82006-04-06 23:23:56 +00002116/// CommuteVectorShuffle - Swap vector_shuffle operandsas well as
2117/// values in ther permute mask.
Evan Cheng9eca5e82006-10-25 21:49:50 +00002118static SDOperand CommuteVectorShuffle(SDOperand Op, SDOperand &V1,
2119 SDOperand &V2, SDOperand &Mask,
2120 SelectionDAG &DAG) {
Evan Cheng5ced1d82006-04-06 23:23:56 +00002121 MVT::ValueType VT = Op.getValueType();
2122 MVT::ValueType MaskVT = Mask.getValueType();
Dan Gohman51eaa862007-06-14 22:58:02 +00002123 MVT::ValueType EltVT = MVT::getVectorElementType(MaskVT);
Evan Cheng5ced1d82006-04-06 23:23:56 +00002124 unsigned NumElems = Mask.getNumOperands();
Chris Lattner5a88b832007-02-25 07:10:00 +00002125 SmallVector<SDOperand, 8> MaskVec;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002126
2127 for (unsigned i = 0; i != NumElems; ++i) {
2128 SDOperand Arg = Mask.getOperand(i);
Evan Cheng80d428c2006-04-19 22:48:17 +00002129 if (Arg.getOpcode() == ISD::UNDEF) {
2130 MaskVec.push_back(DAG.getNode(ISD::UNDEF, EltVT));
2131 continue;
2132 }
Evan Cheng5ced1d82006-04-06 23:23:56 +00002133 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
2134 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
2135 if (Val < NumElems)
2136 MaskVec.push_back(DAG.getConstant(Val + NumElems, EltVT));
2137 else
2138 MaskVec.push_back(DAG.getConstant(Val - NumElems, EltVT));
2139 }
2140
Evan Cheng9eca5e82006-10-25 21:49:50 +00002141 std::swap(V1, V2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002142 Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], MaskVec.size());
Evan Cheng9eca5e82006-10-25 21:49:50 +00002143 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, Mask);
Evan Cheng5ced1d82006-04-06 23:23:56 +00002144}
2145
Evan Cheng533a0aa2006-04-19 20:35:22 +00002146/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
2147/// match movhlps. The lower half elements should come from upper half of
2148/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002149/// half of V2 (and in order).
Evan Cheng533a0aa2006-04-19 20:35:22 +00002150static bool ShouldXformToMOVHLPS(SDNode *Mask) {
2151 unsigned NumElems = Mask->getNumOperands();
2152 if (NumElems != 4)
2153 return false;
2154 for (unsigned i = 0, e = 2; i != e; ++i)
2155 if (!isUndefOrEqual(Mask->getOperand(i), i+2))
2156 return false;
2157 for (unsigned i = 2; i != 4; ++i)
2158 if (!isUndefOrEqual(Mask->getOperand(i), i+4))
2159 return false;
2160 return true;
2161}
2162
Evan Cheng5ced1d82006-04-06 23:23:56 +00002163/// isScalarLoadToVector - Returns true if the node is a scalar load that
2164/// is promoted to a vector.
Evan Cheng533a0aa2006-04-19 20:35:22 +00002165static inline bool isScalarLoadToVector(SDNode *N) {
2166 if (N->getOpcode() == ISD::SCALAR_TO_VECTOR) {
2167 N = N->getOperand(0).Val;
Evan Cheng466685d2006-10-09 20:57:25 +00002168 return ISD::isNON_EXTLoad(N);
Evan Cheng5ced1d82006-04-06 23:23:56 +00002169 }
2170 return false;
2171}
2172
Evan Cheng533a0aa2006-04-19 20:35:22 +00002173/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
2174/// match movlp{s|d}. The lower half elements should come from lower half of
2175/// V1 (and in order), and the upper half elements should come from the upper
2176/// half of V2 (and in order). And since V1 will become the source of the
2177/// MOVLP, it must be either a vector load or a scalar load to vector.
Evan Cheng23425f52006-10-09 21:39:25 +00002178static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2, SDNode *Mask) {
Evan Cheng466685d2006-10-09 20:57:25 +00002179 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00002180 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00002181 // Is V2 is a vector load, don't do this transformation. We will try to use
2182 // load folding shufps op.
2183 if (ISD::isNON_EXTLoad(V2))
2184 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002185
Evan Cheng533a0aa2006-04-19 20:35:22 +00002186 unsigned NumElems = Mask->getNumOperands();
2187 if (NumElems != 2 && NumElems != 4)
2188 return false;
2189 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
2190 if (!isUndefOrEqual(Mask->getOperand(i), i))
2191 return false;
2192 for (unsigned i = NumElems/2; i != NumElems; ++i)
2193 if (!isUndefOrEqual(Mask->getOperand(i), i+NumElems))
2194 return false;
2195 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002196}
2197
Evan Cheng39623da2006-04-20 08:58:49 +00002198/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
2199/// all the same.
2200static bool isSplatVector(SDNode *N) {
2201 if (N->getOpcode() != ISD::BUILD_VECTOR)
2202 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002203
Evan Cheng39623da2006-04-20 08:58:49 +00002204 SDOperand SplatValue = N->getOperand(0);
2205 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
2206 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002207 return false;
2208 return true;
2209}
2210
Evan Cheng8cf723d2006-09-08 01:50:06 +00002211/// isUndefShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2212/// to an undef.
2213static bool isUndefShuffle(SDNode *N) {
Evan Cheng213d2cf2007-05-17 18:45:50 +00002214 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
Evan Cheng8cf723d2006-09-08 01:50:06 +00002215 return false;
2216
2217 SDOperand V1 = N->getOperand(0);
2218 SDOperand V2 = N->getOperand(1);
2219 SDOperand Mask = N->getOperand(2);
2220 unsigned NumElems = Mask.getNumOperands();
2221 for (unsigned i = 0; i != NumElems; ++i) {
2222 SDOperand Arg = Mask.getOperand(i);
2223 if (Arg.getOpcode() != ISD::UNDEF) {
2224 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
2225 if (Val < NumElems && V1.getOpcode() != ISD::UNDEF)
2226 return false;
2227 else if (Val >= NumElems && V2.getOpcode() != ISD::UNDEF)
2228 return false;
2229 }
2230 }
2231 return true;
2232}
2233
Evan Cheng213d2cf2007-05-17 18:45:50 +00002234/// isZeroNode - Returns true if Elt is a constant zero or a floating point
2235/// constant +0.0.
2236static inline bool isZeroNode(SDOperand Elt) {
2237 return ((isa<ConstantSDNode>(Elt) &&
2238 cast<ConstantSDNode>(Elt)->getValue() == 0) ||
2239 (isa<ConstantFPSDNode>(Elt) &&
2240 cast<ConstantFPSDNode>(Elt)->isExactlyValue(0.0)));
2241}
2242
2243/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2244/// to an zero vector.
2245static bool isZeroShuffle(SDNode *N) {
2246 if (N->getOpcode() != ISD::VECTOR_SHUFFLE)
2247 return false;
2248
2249 SDOperand V1 = N->getOperand(0);
2250 SDOperand V2 = N->getOperand(1);
2251 SDOperand Mask = N->getOperand(2);
2252 unsigned NumElems = Mask.getNumOperands();
2253 for (unsigned i = 0; i != NumElems; ++i) {
2254 SDOperand Arg = Mask.getOperand(i);
2255 if (Arg.getOpcode() != ISD::UNDEF) {
2256 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
2257 if (Idx < NumElems) {
2258 unsigned Opc = V1.Val->getOpcode();
2259 if (Opc == ISD::UNDEF)
2260 continue;
2261 if (Opc != ISD::BUILD_VECTOR ||
2262 !isZeroNode(V1.Val->getOperand(Idx)))
2263 return false;
2264 } else if (Idx >= NumElems) {
2265 unsigned Opc = V2.Val->getOpcode();
2266 if (Opc == ISD::UNDEF)
2267 continue;
2268 if (Opc != ISD::BUILD_VECTOR ||
2269 !isZeroNode(V2.Val->getOperand(Idx - NumElems)))
2270 return false;
2271 }
2272 }
2273 }
2274 return true;
2275}
2276
2277/// getZeroVector - Returns a vector of specified type with all zero elements.
2278///
2279static SDOperand getZeroVector(MVT::ValueType VT, SelectionDAG &DAG) {
2280 assert(MVT::isVector(VT) && "Expected a vector type");
Dan Gohman237898a2007-05-24 14:33:05 +00002281 unsigned NumElems = MVT::getVectorNumElements(VT);
Dan Gohman51eaa862007-06-14 22:58:02 +00002282 MVT::ValueType EVT = MVT::getVectorElementType(VT);
Evan Cheng213d2cf2007-05-17 18:45:50 +00002283 bool isFP = MVT::isFloatingPoint(EVT);
2284 SDOperand Zero = isFP ? DAG.getConstantFP(0.0, EVT) : DAG.getConstant(0, EVT);
2285 SmallVector<SDOperand, 8> ZeroVec(NumElems, Zero);
2286 return DAG.getNode(ISD::BUILD_VECTOR, VT, &ZeroVec[0], ZeroVec.size());
2287}
2288
Evan Cheng39623da2006-04-20 08:58:49 +00002289/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
2290/// that point to V2 points to its first element.
2291static SDOperand NormalizeMask(SDOperand Mask, SelectionDAG &DAG) {
2292 assert(Mask.getOpcode() == ISD::BUILD_VECTOR);
2293
2294 bool Changed = false;
Chris Lattner5a88b832007-02-25 07:10:00 +00002295 SmallVector<SDOperand, 8> MaskVec;
Evan Cheng39623da2006-04-20 08:58:49 +00002296 unsigned NumElems = Mask.getNumOperands();
2297 for (unsigned i = 0; i != NumElems; ++i) {
2298 SDOperand Arg = Mask.getOperand(i);
2299 if (Arg.getOpcode() != ISD::UNDEF) {
2300 unsigned Val = cast<ConstantSDNode>(Arg)->getValue();
2301 if (Val > NumElems) {
2302 Arg = DAG.getConstant(NumElems, Arg.getValueType());
2303 Changed = true;
2304 }
2305 }
2306 MaskVec.push_back(Arg);
2307 }
2308
2309 if (Changed)
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002310 Mask = DAG.getNode(ISD::BUILD_VECTOR, Mask.getValueType(),
2311 &MaskVec[0], MaskVec.size());
Evan Cheng39623da2006-04-20 08:58:49 +00002312 return Mask;
2313}
2314
Evan Cheng017dcc62006-04-21 01:05:10 +00002315/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
2316/// operation of specified width.
2317static SDOperand getMOVLMask(unsigned NumElems, SelectionDAG &DAG) {
Evan Cheng39623da2006-04-20 08:58:49 +00002318 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman51eaa862007-06-14 22:58:02 +00002319 MVT::ValueType BaseVT = MVT::getVectorElementType(MaskVT);
Evan Cheng39623da2006-04-20 08:58:49 +00002320
Chris Lattner5a88b832007-02-25 07:10:00 +00002321 SmallVector<SDOperand, 8> MaskVec;
Evan Cheng39623da2006-04-20 08:58:49 +00002322 MaskVec.push_back(DAG.getConstant(NumElems, BaseVT));
2323 for (unsigned i = 1; i != NumElems; ++i)
2324 MaskVec.push_back(DAG.getConstant(i, BaseVT));
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002325 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], MaskVec.size());
Evan Cheng39623da2006-04-20 08:58:49 +00002326}
2327
Evan Chengc575ca22006-04-17 20:43:08 +00002328/// getUnpacklMask - Returns a vector_shuffle mask for an unpackl operation
2329/// of specified width.
2330static SDOperand getUnpacklMask(unsigned NumElems, SelectionDAG &DAG) {
2331 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman51eaa862007-06-14 22:58:02 +00002332 MVT::ValueType BaseVT = MVT::getVectorElementType(MaskVT);
Chris Lattner5a88b832007-02-25 07:10:00 +00002333 SmallVector<SDOperand, 8> MaskVec;
Evan Chengc575ca22006-04-17 20:43:08 +00002334 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
2335 MaskVec.push_back(DAG.getConstant(i, BaseVT));
2336 MaskVec.push_back(DAG.getConstant(i + NumElems, BaseVT));
2337 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002338 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], MaskVec.size());
Evan Chengc575ca22006-04-17 20:43:08 +00002339}
2340
Evan Cheng39623da2006-04-20 08:58:49 +00002341/// getUnpackhMask - Returns a vector_shuffle mask for an unpackh operation
2342/// of specified width.
2343static SDOperand getUnpackhMask(unsigned NumElems, SelectionDAG &DAG) {
2344 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman51eaa862007-06-14 22:58:02 +00002345 MVT::ValueType BaseVT = MVT::getVectorElementType(MaskVT);
Evan Cheng39623da2006-04-20 08:58:49 +00002346 unsigned Half = NumElems/2;
Chris Lattner5a88b832007-02-25 07:10:00 +00002347 SmallVector<SDOperand, 8> MaskVec;
Evan Cheng39623da2006-04-20 08:58:49 +00002348 for (unsigned i = 0; i != Half; ++i) {
2349 MaskVec.push_back(DAG.getConstant(i + Half, BaseVT));
2350 MaskVec.push_back(DAG.getConstant(i + NumElems + Half, BaseVT));
2351 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002352 return DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0], MaskVec.size());
Evan Cheng39623da2006-04-20 08:58:49 +00002353}
2354
Evan Chengc575ca22006-04-17 20:43:08 +00002355/// PromoteSplat - Promote a splat of v8i16 or v16i8 to v4i32.
2356///
2357static SDOperand PromoteSplat(SDOperand Op, SelectionDAG &DAG) {
2358 SDOperand V1 = Op.getOperand(0);
Evan Cheng017dcc62006-04-21 01:05:10 +00002359 SDOperand Mask = Op.getOperand(2);
Evan Chengc575ca22006-04-17 20:43:08 +00002360 MVT::ValueType VT = Op.getValueType();
Evan Cheng017dcc62006-04-21 01:05:10 +00002361 unsigned NumElems = Mask.getNumOperands();
2362 Mask = getUnpacklMask(NumElems, DAG);
Evan Chengc575ca22006-04-17 20:43:08 +00002363 while (NumElems != 4) {
Evan Cheng017dcc62006-04-21 01:05:10 +00002364 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V1, Mask);
Evan Chengc575ca22006-04-17 20:43:08 +00002365 NumElems >>= 1;
2366 }
2367 V1 = DAG.getNode(ISD::BIT_CONVERT, MVT::v4i32, V1);
2368
2369 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(4);
Evan Cheng017dcc62006-04-21 01:05:10 +00002370 Mask = getZeroVector(MaskVT, DAG);
Evan Chengc575ca22006-04-17 20:43:08 +00002371 SDOperand Shuffle = DAG.getNode(ISD::VECTOR_SHUFFLE, MVT::v4i32, V1,
Evan Cheng017dcc62006-04-21 01:05:10 +00002372 DAG.getNode(ISD::UNDEF, MVT::v4i32), Mask);
Evan Chengc575ca22006-04-17 20:43:08 +00002373 return DAG.getNode(ISD::BIT_CONVERT, VT, Shuffle);
2374}
2375
Evan Chengba05f722006-04-21 23:03:30 +00002376/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Evan Cheng213d2cf2007-05-17 18:45:50 +00002377/// vector of zero or undef vector.
Evan Chengba05f722006-04-21 23:03:30 +00002378static SDOperand getShuffleVectorZeroOrUndef(SDOperand V2, MVT::ValueType VT,
Evan Cheng017dcc62006-04-21 01:05:10 +00002379 unsigned NumElems, unsigned Idx,
Evan Chengba05f722006-04-21 23:03:30 +00002380 bool isZero, SelectionDAG &DAG) {
2381 SDOperand V1 = isZero ? getZeroVector(VT, DAG) : DAG.getNode(ISD::UNDEF, VT);
Evan Cheng017dcc62006-04-21 01:05:10 +00002382 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman51eaa862007-06-14 22:58:02 +00002383 MVT::ValueType EVT = MVT::getVectorElementType(MaskVT);
Evan Cheng017dcc62006-04-21 01:05:10 +00002384 SDOperand Zero = DAG.getConstant(0, EVT);
Chris Lattner5a88b832007-02-25 07:10:00 +00002385 SmallVector<SDOperand, 8> MaskVec(NumElems, Zero);
Evan Cheng017dcc62006-04-21 01:05:10 +00002386 MaskVec[Idx] = DAG.getConstant(NumElems, EVT);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002387 SDOperand Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
2388 &MaskVec[0], MaskVec.size());
Evan Chengba05f722006-04-21 23:03:30 +00002389 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, Mask);
Evan Cheng017dcc62006-04-21 01:05:10 +00002390}
2391
Evan Chengc78d3b42006-04-24 18:01:45 +00002392/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
2393///
2394static SDOperand LowerBuildVectorv16i8(SDOperand Op, unsigned NonZeros,
2395 unsigned NumNonZero, unsigned NumZero,
Evan Cheng25ab6902006-09-08 06:48:29 +00002396 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00002397 if (NumNonZero > 8)
2398 return SDOperand();
2399
2400 SDOperand V(0, 0);
2401 bool First = true;
2402 for (unsigned i = 0; i < 16; ++i) {
2403 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
2404 if (ThisIsNonZero && First) {
2405 if (NumZero)
2406 V = getZeroVector(MVT::v8i16, DAG);
2407 else
2408 V = DAG.getNode(ISD::UNDEF, MVT::v8i16);
2409 First = false;
2410 }
2411
2412 if ((i & 1) != 0) {
2413 SDOperand ThisElt(0, 0), LastElt(0, 0);
2414 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
2415 if (LastIsNonZero) {
2416 LastElt = DAG.getNode(ISD::ZERO_EXTEND, MVT::i16, Op.getOperand(i-1));
2417 }
2418 if (ThisIsNonZero) {
2419 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, MVT::i16, Op.getOperand(i));
2420 ThisElt = DAG.getNode(ISD::SHL, MVT::i16,
2421 ThisElt, DAG.getConstant(8, MVT::i8));
2422 if (LastIsNonZero)
2423 ThisElt = DAG.getNode(ISD::OR, MVT::i16, ThisElt, LastElt);
2424 } else
2425 ThisElt = LastElt;
2426
2427 if (ThisElt.Val)
2428 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, V, ThisElt,
Evan Cheng25ab6902006-09-08 06:48:29 +00002429 DAG.getConstant(i/2, TLI.getPointerTy()));
Evan Chengc78d3b42006-04-24 18:01:45 +00002430 }
2431 }
2432
2433 return DAG.getNode(ISD::BIT_CONVERT, MVT::v16i8, V);
2434}
2435
Bill Wendlinga348c562007-03-22 18:42:45 +00002436/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00002437///
2438static SDOperand LowerBuildVectorv8i16(SDOperand Op, unsigned NonZeros,
2439 unsigned NumNonZero, unsigned NumZero,
Evan Cheng25ab6902006-09-08 06:48:29 +00002440 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00002441 if (NumNonZero > 4)
2442 return SDOperand();
2443
2444 SDOperand V(0, 0);
2445 bool First = true;
2446 for (unsigned i = 0; i < 8; ++i) {
2447 bool isNonZero = (NonZeros & (1 << i)) != 0;
2448 if (isNonZero) {
2449 if (First) {
2450 if (NumZero)
2451 V = getZeroVector(MVT::v8i16, DAG);
2452 else
2453 V = DAG.getNode(ISD::UNDEF, MVT::v8i16);
2454 First = false;
2455 }
2456 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, MVT::v8i16, V, Op.getOperand(i),
Evan Cheng25ab6902006-09-08 06:48:29 +00002457 DAG.getConstant(i, TLI.getPointerTy()));
Evan Chengc78d3b42006-04-24 18:01:45 +00002458 }
2459 }
2460
2461 return V;
2462}
2463
Evan Cheng0db9fe62006-04-25 20:13:52 +00002464SDOperand
2465X86TargetLowering::LowerBUILD_VECTOR(SDOperand Op, SelectionDAG &DAG) {
2466 // All zero's are handled with pxor.
2467 if (ISD::isBuildVectorAllZeros(Op.Val))
2468 return Op;
2469
2470 // All one's are handled with pcmpeqd.
2471 if (ISD::isBuildVectorAllOnes(Op.Val))
2472 return Op;
2473
2474 MVT::ValueType VT = Op.getValueType();
Dan Gohman51eaa862007-06-14 22:58:02 +00002475 MVT::ValueType EVT = MVT::getVectorElementType(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00002476 unsigned EVTBits = MVT::getSizeInBits(EVT);
2477
2478 unsigned NumElems = Op.getNumOperands();
2479 unsigned NumZero = 0;
2480 unsigned NumNonZero = 0;
2481 unsigned NonZeros = 0;
2482 std::set<SDOperand> Values;
2483 for (unsigned i = 0; i < NumElems; ++i) {
2484 SDOperand Elt = Op.getOperand(i);
2485 if (Elt.getOpcode() != ISD::UNDEF) {
2486 Values.insert(Elt);
2487 if (isZeroNode(Elt))
2488 NumZero++;
2489 else {
2490 NonZeros |= (1 << i);
2491 NumNonZero++;
2492 }
2493 }
2494 }
2495
Dan Gohman7f321562007-06-25 16:23:39 +00002496 if (NumNonZero == 0) {
2497 if (NumZero == 0)
2498 // All undef vector. Return an UNDEF.
2499 return DAG.getNode(ISD::UNDEF, VT);
2500 else
2501 // A mix of zero and undef. Return a zero vector.
2502 return getZeroVector(VT, DAG);
2503 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00002504
2505 // Splat is obviously ok. Let legalizer expand it to a shuffle.
2506 if (Values.size() == 1)
2507 return SDOperand();
2508
2509 // Special case for single non-zero element.
Evan Cheng9bbbb982006-10-25 20:48:19 +00002510 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00002511 unsigned Idx = CountTrailingZeros_32(NonZeros);
2512 SDOperand Item = Op.getOperand(Idx);
2513 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Item);
2514 if (Idx == 0)
2515 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
2516 return getShuffleVectorZeroOrUndef(Item, VT, NumElems, Idx,
2517 NumZero > 0, DAG);
2518
2519 if (EVTBits == 32) {
2520 // Turn it into a shuffle of zero and zero-extended scalar to vector.
2521 Item = getShuffleVectorZeroOrUndef(Item, VT, NumElems, 0, NumZero > 0,
2522 DAG);
2523 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman51eaa862007-06-14 22:58:02 +00002524 MVT::ValueType MaskEVT = MVT::getVectorElementType(MaskVT);
Chris Lattner5a88b832007-02-25 07:10:00 +00002525 SmallVector<SDOperand, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00002526 for (unsigned i = 0; i < NumElems; i++)
2527 MaskVec.push_back(DAG.getConstant((i == Idx) ? 0 : 1, MaskEVT));
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002528 SDOperand Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
2529 &MaskVec[0], MaskVec.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00002530 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, Item,
2531 DAG.getNode(ISD::UNDEF, VT), Mask);
2532 }
2533 }
2534
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00002535 // Let legalizer expand 2-wide build_vectors.
Evan Cheng0db9fe62006-04-25 20:13:52 +00002536 if (EVTBits == 64)
2537 return SDOperand();
2538
2539 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00002540 if (EVTBits == 8 && NumElems == 16) {
Evan Cheng25ab6902006-09-08 06:48:29 +00002541 SDOperand V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
2542 *this);
Evan Cheng0db9fe62006-04-25 20:13:52 +00002543 if (V.Val) return V;
2544 }
2545
Bill Wendling826f36f2007-03-28 00:57:11 +00002546 if (EVTBits == 16 && NumElems == 8) {
Evan Cheng25ab6902006-09-08 06:48:29 +00002547 SDOperand V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
2548 *this);
Evan Cheng0db9fe62006-04-25 20:13:52 +00002549 if (V.Val) return V;
2550 }
2551
2552 // If element VT is == 32 bits, turn it into a number of shuffles.
Chris Lattner5a88b832007-02-25 07:10:00 +00002553 SmallVector<SDOperand, 8> V;
2554 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00002555 if (NumElems == 4 && NumZero > 0) {
2556 for (unsigned i = 0; i < 4; ++i) {
2557 bool isZero = !(NonZeros & (1 << i));
2558 if (isZero)
2559 V[i] = getZeroVector(VT, DAG);
2560 else
2561 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Op.getOperand(i));
2562 }
2563
2564 for (unsigned i = 0; i < 2; ++i) {
2565 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
2566 default: break;
2567 case 0:
2568 V[i] = V[i*2]; // Must be a zero vector.
2569 break;
2570 case 1:
2571 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[i*2+1], V[i*2],
2572 getMOVLMask(NumElems, DAG));
2573 break;
2574 case 2:
2575 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[i*2], V[i*2+1],
2576 getMOVLMask(NumElems, DAG));
2577 break;
2578 case 3:
2579 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[i*2], V[i*2+1],
2580 getUnpacklMask(NumElems, DAG));
2581 break;
2582 }
2583 }
2584
Evan Cheng069287d2006-05-16 07:21:53 +00002585 // Take advantage of the fact GR32 to VR128 scalar_to_vector (i.e. movd)
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002586 // clears the upper bits.
Evan Cheng0db9fe62006-04-25 20:13:52 +00002587 // FIXME: we can do the same for v4f32 case when we know both parts of
2588 // the lower half come from scalar_to_vector (loadf32). We should do
2589 // that in post legalizer dag combiner with target specific hooks.
Evan Cheng9bbbb982006-10-25 20:48:19 +00002590 if (MVT::isInteger(EVT) && (NonZeros & (0x3 << 2)) == 0)
Evan Cheng0db9fe62006-04-25 20:13:52 +00002591 return V[0];
2592 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman51eaa862007-06-14 22:58:02 +00002593 MVT::ValueType EVT = MVT::getVectorElementType(MaskVT);
Chris Lattner5a88b832007-02-25 07:10:00 +00002594 SmallVector<SDOperand, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00002595 bool Reverse = (NonZeros & 0x3) == 2;
2596 for (unsigned i = 0; i < 2; ++i)
2597 if (Reverse)
2598 MaskVec.push_back(DAG.getConstant(1-i, EVT));
2599 else
2600 MaskVec.push_back(DAG.getConstant(i, EVT));
2601 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
2602 for (unsigned i = 0; i < 2; ++i)
2603 if (Reverse)
2604 MaskVec.push_back(DAG.getConstant(1-i+NumElems, EVT));
2605 else
2606 MaskVec.push_back(DAG.getConstant(i+NumElems, EVT));
Chris Lattnere2199452006-08-11 17:38:39 +00002607 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
2608 &MaskVec[0], MaskVec.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00002609 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[0], V[1], ShufMask);
2610 }
2611
2612 if (Values.size() > 2) {
2613 // Expand into a number of unpckl*.
2614 // e.g. for v4f32
2615 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
2616 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
2617 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
2618 SDOperand UnpckMask = getUnpacklMask(NumElems, DAG);
2619 for (unsigned i = 0; i < NumElems; ++i)
2620 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, Op.getOperand(i));
2621 NumElems >>= 1;
2622 while (NumElems != 0) {
2623 for (unsigned i = 0; i < NumElems; ++i)
2624 V[i] = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V[i], V[i + NumElems],
2625 UnpckMask);
2626 NumElems >>= 1;
2627 }
2628 return V[0];
2629 }
2630
2631 return SDOperand();
2632}
2633
2634SDOperand
2635X86TargetLowering::LowerVECTOR_SHUFFLE(SDOperand Op, SelectionDAG &DAG) {
2636 SDOperand V1 = Op.getOperand(0);
2637 SDOperand V2 = Op.getOperand(1);
2638 SDOperand PermMask = Op.getOperand(2);
2639 MVT::ValueType VT = Op.getValueType();
2640 unsigned NumElems = PermMask.getNumOperands();
2641 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
2642 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00002643 bool V1IsSplat = false;
2644 bool V2IsSplat = false;
Evan Cheng0db9fe62006-04-25 20:13:52 +00002645
Evan Cheng8cf723d2006-09-08 01:50:06 +00002646 if (isUndefShuffle(Op.Val))
2647 return DAG.getNode(ISD::UNDEF, VT);
2648
Evan Cheng213d2cf2007-05-17 18:45:50 +00002649 if (isZeroShuffle(Op.Val))
2650 return getZeroVector(VT, DAG);
2651
Evan Cheng49892af2007-06-19 00:02:56 +00002652 if (isIdentityMask(PermMask.Val))
2653 return V1;
2654 else if (isIdentityMask(PermMask.Val, true))
2655 return V2;
2656
Evan Cheng0db9fe62006-04-25 20:13:52 +00002657 if (isSplatMask(PermMask.Val)) {
2658 if (NumElems <= 4) return Op;
2659 // Promote it to a v4i32 splat.
Evan Cheng9bbbb982006-10-25 20:48:19 +00002660 return PromoteSplat(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00002661 }
2662
Evan Cheng9bbbb982006-10-25 20:48:19 +00002663 if (X86::isMOVLMask(PermMask.Val))
2664 return (V1IsUndef) ? V2 : Op;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002665
Evan Cheng9bbbb982006-10-25 20:48:19 +00002666 if (X86::isMOVSHDUPMask(PermMask.Val) ||
2667 X86::isMOVSLDUPMask(PermMask.Val) ||
2668 X86::isMOVHLPSMask(PermMask.Val) ||
2669 X86::isMOVHPMask(PermMask.Val) ||
2670 X86::isMOVLPMask(PermMask.Val))
2671 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00002672
Evan Cheng9bbbb982006-10-25 20:48:19 +00002673 if (ShouldXformToMOVHLPS(PermMask.Val) ||
2674 ShouldXformToMOVLP(V1.Val, V2.Val, PermMask.Val))
Evan Cheng9eca5e82006-10-25 21:49:50 +00002675 return CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00002676
Evan Cheng9eca5e82006-10-25 21:49:50 +00002677 bool Commuted = false;
Evan Cheng9bbbb982006-10-25 20:48:19 +00002678 V1IsSplat = isSplatVector(V1.Val);
2679 V2IsSplat = isSplatVector(V2.Val);
2680 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Evan Cheng9eca5e82006-10-25 21:49:50 +00002681 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Evan Cheng9bbbb982006-10-25 20:48:19 +00002682 std::swap(V1IsSplat, V2IsSplat);
2683 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00002684 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00002685 }
2686
2687 if (isCommutedMOVL(PermMask.Val, V2IsSplat, V2IsUndef)) {
2688 if (V2IsUndef) return V1;
Evan Cheng9eca5e82006-10-25 21:49:50 +00002689 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
Evan Cheng9bbbb982006-10-25 20:48:19 +00002690 if (V2IsSplat) {
2691 // V2 is a splat, so the mask may be malformed. That is, it may point
2692 // to any V2 element. The instruction selectior won't like this. Get
2693 // a corrected mask and commute to form a proper MOVS{S|D}.
2694 SDOperand NewMask = getMOVLMask(NumElems, DAG);
2695 if (NewMask.Val != PermMask.Val)
2696 Op = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, NewMask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00002697 }
Evan Cheng9bbbb982006-10-25 20:48:19 +00002698 return Op;
Evan Chengd9b8e402006-10-16 06:36:00 +00002699 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00002700
Evan Chengd9b8e402006-10-16 06:36:00 +00002701 if (X86::isUNPCKL_v_undef_Mask(PermMask.Val) ||
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00002702 X86::isUNPCKH_v_undef_Mask(PermMask.Val) ||
Evan Chengd9b8e402006-10-16 06:36:00 +00002703 X86::isUNPCKLMask(PermMask.Val) ||
2704 X86::isUNPCKHMask(PermMask.Val))
2705 return Op;
Evan Chenge1113032006-10-04 18:33:38 +00002706
Evan Cheng9bbbb982006-10-25 20:48:19 +00002707 if (V2IsSplat) {
2708 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002709 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00002710 // new vector_shuffle with the corrected mask.
2711 SDOperand NewMask = NormalizeMask(PermMask, DAG);
2712 if (NewMask.Val != PermMask.Val) {
2713 if (X86::isUNPCKLMask(PermMask.Val, true)) {
2714 SDOperand NewMask = getUnpacklMask(NumElems, DAG);
2715 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, NewMask);
2716 } else if (X86::isUNPCKHMask(PermMask.Val, true)) {
2717 SDOperand NewMask = getUnpackhMask(NumElems, DAG);
2718 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, NewMask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00002719 }
2720 }
2721 }
2722
2723 // Normalize the node to match x86 shuffle ops if needed
Evan Cheng9eca5e82006-10-25 21:49:50 +00002724 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(PermMask.Val))
2725 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
2726
2727 if (Commuted) {
2728 // Commute is back and try unpck* again.
2729 Op = CommuteVectorShuffle(Op, V1, V2, PermMask, DAG);
2730 if (X86::isUNPCKL_v_undef_Mask(PermMask.Val) ||
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00002731 X86::isUNPCKH_v_undef_Mask(PermMask.Val) ||
Evan Cheng9eca5e82006-10-25 21:49:50 +00002732 X86::isUNPCKLMask(PermMask.Val) ||
2733 X86::isUNPCKHMask(PermMask.Val))
2734 return Op;
2735 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00002736
2737 // If VT is integer, try PSHUF* first, then SHUFP*.
2738 if (MVT::isInteger(VT)) {
2739 if (X86::isPSHUFDMask(PermMask.Val) ||
2740 X86::isPSHUFHWMask(PermMask.Val) ||
2741 X86::isPSHUFLWMask(PermMask.Val)) {
2742 if (V2.getOpcode() != ISD::UNDEF)
2743 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1,
2744 DAG.getNode(ISD::UNDEF, V1.getValueType()),PermMask);
2745 return Op;
2746 }
2747
Chris Lattner07c70cd2007-05-17 17:13:13 +00002748 if (X86::isSHUFPMask(PermMask.Val) &&
2749 MVT::getSizeInBits(VT) != 64) // Don't do this for MMX.
Evan Cheng0db9fe62006-04-25 20:13:52 +00002750 return Op;
2751
2752 // Handle v8i16 shuffle high / low shuffle node pair.
2753 if (VT == MVT::v8i16 && isPSHUFHW_PSHUFLWMask(PermMask.Val)) {
2754 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman51eaa862007-06-14 22:58:02 +00002755 MVT::ValueType BaseVT = MVT::getVectorElementType(MaskVT);
Chris Lattner5a88b832007-02-25 07:10:00 +00002756 SmallVector<SDOperand, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00002757 for (unsigned i = 0; i != 4; ++i)
2758 MaskVec.push_back(PermMask.getOperand(i));
2759 for (unsigned i = 4; i != 8; ++i)
2760 MaskVec.push_back(DAG.getConstant(i, BaseVT));
Chris Lattnere2199452006-08-11 17:38:39 +00002761 SDOperand Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
2762 &MaskVec[0], MaskVec.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00002763 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, Mask);
2764 MaskVec.clear();
2765 for (unsigned i = 0; i != 4; ++i)
2766 MaskVec.push_back(DAG.getConstant(i, BaseVT));
2767 for (unsigned i = 4; i != 8; ++i)
2768 MaskVec.push_back(PermMask.getOperand(i));
Chris Lattnere2199452006-08-11 17:38:39 +00002769 Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT, &MaskVec[0],MaskVec.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00002770 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2, Mask);
2771 }
2772 } else {
2773 // Floating point cases in the other order.
2774 if (X86::isSHUFPMask(PermMask.Val))
2775 return Op;
2776 if (X86::isPSHUFDMask(PermMask.Val) ||
2777 X86::isPSHUFHWMask(PermMask.Val) ||
2778 X86::isPSHUFLWMask(PermMask.Val)) {
2779 if (V2.getOpcode() != ISD::UNDEF)
2780 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1,
2781 DAG.getNode(ISD::UNDEF, V1.getValueType()),PermMask);
2782 return Op;
2783 }
2784 }
2785
Chris Lattner07c70cd2007-05-17 17:13:13 +00002786 if (NumElems == 4 &&
2787 // Don't do this for MMX.
2788 MVT::getSizeInBits(VT) != 64) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00002789 MVT::ValueType MaskVT = PermMask.getValueType();
Dan Gohman51eaa862007-06-14 22:58:02 +00002790 MVT::ValueType MaskEVT = MVT::getVectorElementType(MaskVT);
Chris Lattner5a88b832007-02-25 07:10:00 +00002791 SmallVector<std::pair<int, int>, 8> Locs;
Evan Cheng43f3bd32006-04-28 07:03:38 +00002792 Locs.reserve(NumElems);
Chris Lattner5a88b832007-02-25 07:10:00 +00002793 SmallVector<SDOperand, 8> Mask1(NumElems, DAG.getNode(ISD::UNDEF, MaskEVT));
2794 SmallVector<SDOperand, 8> Mask2(NumElems, DAG.getNode(ISD::UNDEF, MaskEVT));
Evan Cheng43f3bd32006-04-28 07:03:38 +00002795 unsigned NumHi = 0;
2796 unsigned NumLo = 0;
2797 // If no more than two elements come from either vector. This can be
2798 // implemented with two shuffles. First shuffle gather the elements.
2799 // The second shuffle, which takes the first shuffle as both of its
2800 // vector operands, put the elements into the right order.
2801 for (unsigned i = 0; i != NumElems; ++i) {
2802 SDOperand Elt = PermMask.getOperand(i);
2803 if (Elt.getOpcode() == ISD::UNDEF) {
2804 Locs[i] = std::make_pair(-1, -1);
2805 } else {
2806 unsigned Val = cast<ConstantSDNode>(Elt)->getValue();
2807 if (Val < NumElems) {
2808 Locs[i] = std::make_pair(0, NumLo);
2809 Mask1[NumLo] = Elt;
2810 NumLo++;
2811 } else {
2812 Locs[i] = std::make_pair(1, NumHi);
2813 if (2+NumHi < NumElems)
2814 Mask1[2+NumHi] = Elt;
2815 NumHi++;
2816 }
2817 }
2818 }
2819 if (NumLo <= 2 && NumHi <= 2) {
2820 V1 = DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2,
Chris Lattnere2199452006-08-11 17:38:39 +00002821 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
2822 &Mask1[0], Mask1.size()));
Evan Cheng43f3bd32006-04-28 07:03:38 +00002823 for (unsigned i = 0; i != NumElems; ++i) {
2824 if (Locs[i].first == -1)
2825 continue;
2826 else {
2827 unsigned Idx = (i < NumElems/2) ? 0 : NumElems;
2828 Idx += Locs[i].first * (NumElems/2) + Locs[i].second;
2829 Mask2[i] = DAG.getConstant(Idx, MaskEVT);
2830 }
2831 }
2832
2833 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V1,
Chris Lattnere2199452006-08-11 17:38:39 +00002834 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
2835 &Mask2[0], Mask2.size()));
Evan Cheng43f3bd32006-04-28 07:03:38 +00002836 }
2837
2838 // Break it into (shuffle shuffle_hi, shuffle_lo).
2839 Locs.clear();
Chris Lattner5a88b832007-02-25 07:10:00 +00002840 SmallVector<SDOperand,8> LoMask(NumElems, DAG.getNode(ISD::UNDEF, MaskEVT));
2841 SmallVector<SDOperand,8> HiMask(NumElems, DAG.getNode(ISD::UNDEF, MaskEVT));
2842 SmallVector<SDOperand,8> *MaskPtr = &LoMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00002843 unsigned MaskIdx = 0;
2844 unsigned LoIdx = 0;
2845 unsigned HiIdx = NumElems/2;
2846 for (unsigned i = 0; i != NumElems; ++i) {
2847 if (i == NumElems/2) {
2848 MaskPtr = &HiMask;
2849 MaskIdx = 1;
2850 LoIdx = 0;
2851 HiIdx = NumElems/2;
2852 }
2853 SDOperand Elt = PermMask.getOperand(i);
2854 if (Elt.getOpcode() == ISD::UNDEF) {
2855 Locs[i] = std::make_pair(-1, -1);
2856 } else if (cast<ConstantSDNode>(Elt)->getValue() < NumElems) {
2857 Locs[i] = std::make_pair(MaskIdx, LoIdx);
2858 (*MaskPtr)[LoIdx] = Elt;
2859 LoIdx++;
2860 } else {
2861 Locs[i] = std::make_pair(MaskIdx, HiIdx);
2862 (*MaskPtr)[HiIdx] = Elt;
2863 HiIdx++;
2864 }
2865 }
2866
Chris Lattner8c0c10c2006-05-16 06:45:34 +00002867 SDOperand LoShuffle =
2868 DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2,
Chris Lattnere2199452006-08-11 17:38:39 +00002869 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
2870 &LoMask[0], LoMask.size()));
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002871 SDOperand HiShuffle =
Chris Lattner8c0c10c2006-05-16 06:45:34 +00002872 DAG.getNode(ISD::VECTOR_SHUFFLE, VT, V1, V2,
Chris Lattnere2199452006-08-11 17:38:39 +00002873 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
2874 &HiMask[0], HiMask.size()));
Chris Lattner5a88b832007-02-25 07:10:00 +00002875 SmallVector<SDOperand, 8> MaskOps;
Evan Cheng0db9fe62006-04-25 20:13:52 +00002876 for (unsigned i = 0; i != NumElems; ++i) {
2877 if (Locs[i].first == -1) {
2878 MaskOps.push_back(DAG.getNode(ISD::UNDEF, MaskEVT));
2879 } else {
2880 unsigned Idx = Locs[i].first * NumElems + Locs[i].second;
2881 MaskOps.push_back(DAG.getConstant(Idx, MaskEVT));
2882 }
2883 }
2884 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, LoShuffle, HiShuffle,
Chris Lattnere2199452006-08-11 17:38:39 +00002885 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
2886 &MaskOps[0], MaskOps.size()));
Evan Cheng0db9fe62006-04-25 20:13:52 +00002887 }
2888
2889 return SDOperand();
2890}
2891
2892SDOperand
2893X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDOperand Op, SelectionDAG &DAG) {
2894 if (!isa<ConstantSDNode>(Op.getOperand(1)))
2895 return SDOperand();
2896
2897 MVT::ValueType VT = Op.getValueType();
2898 // TODO: handle v16i8.
2899 if (MVT::getSizeInBits(VT) == 16) {
2900 // Transform it so it match pextrw which produces a 32-bit result.
2901 MVT::ValueType EVT = (MVT::ValueType)(VT+1);
2902 SDOperand Extract = DAG.getNode(X86ISD::PEXTRW, EVT,
2903 Op.getOperand(0), Op.getOperand(1));
2904 SDOperand Assert = DAG.getNode(ISD::AssertZext, EVT, Extract,
2905 DAG.getValueType(VT));
2906 return DAG.getNode(ISD::TRUNCATE, VT, Assert);
2907 } else if (MVT::getSizeInBits(VT) == 32) {
2908 SDOperand Vec = Op.getOperand(0);
2909 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getValue();
2910 if (Idx == 0)
2911 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00002912 // SHUFPS the element to the lowest double word, then movss.
2913 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(4);
Chris Lattner5a88b832007-02-25 07:10:00 +00002914 SmallVector<SDOperand, 8> IdxVec;
Dan Gohman51eaa862007-06-14 22:58:02 +00002915 IdxVec.push_back(DAG.getConstant(Idx, MVT::getVectorElementType(MaskVT)));
2916 IdxVec.push_back(DAG.getNode(ISD::UNDEF, MVT::getVectorElementType(MaskVT)));
2917 IdxVec.push_back(DAG.getNode(ISD::UNDEF, MVT::getVectorElementType(MaskVT)));
2918 IdxVec.push_back(DAG.getNode(ISD::UNDEF, MVT::getVectorElementType(MaskVT)));
Chris Lattnere2199452006-08-11 17:38:39 +00002919 SDOperand Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
2920 &IdxVec[0], IdxVec.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00002921 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, Vec.getValueType(),
Evan Cheng6e56e2c2006-11-07 22:14:24 +00002922 Vec, DAG.getNode(ISD::UNDEF, Vec.getValueType()), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00002923 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, VT, Vec,
Evan Cheng015188f2006-06-15 08:14:54 +00002924 DAG.getConstant(0, getPointerTy()));
Evan Cheng0db9fe62006-04-25 20:13:52 +00002925 } else if (MVT::getSizeInBits(VT) == 64) {
2926 SDOperand Vec = Op.getOperand(0);
2927 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getValue();
2928 if (Idx == 0)
2929 return Op;
2930
2931 // UNPCKHPD the element to the lowest double word, then movsd.
2932 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
2933 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
2934 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(4);
Chris Lattner5a88b832007-02-25 07:10:00 +00002935 SmallVector<SDOperand, 8> IdxVec;
Dan Gohman51eaa862007-06-14 22:58:02 +00002936 IdxVec.push_back(DAG.getConstant(1, MVT::getVectorElementType(MaskVT)));
2937 IdxVec.push_back(DAG.getNode(ISD::UNDEF, MVT::getVectorElementType(MaskVT)));
Chris Lattnere2199452006-08-11 17:38:39 +00002938 SDOperand Mask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
2939 &IdxVec[0], IdxVec.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00002940 Vec = DAG.getNode(ISD::VECTOR_SHUFFLE, Vec.getValueType(),
2941 Vec, DAG.getNode(ISD::UNDEF, Vec.getValueType()), Mask);
2942 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, VT, Vec,
Evan Cheng015188f2006-06-15 08:14:54 +00002943 DAG.getConstant(0, getPointerTy()));
Evan Cheng0db9fe62006-04-25 20:13:52 +00002944 }
2945
2946 return SDOperand();
2947}
2948
2949SDOperand
2950X86TargetLowering::LowerINSERT_VECTOR_ELT(SDOperand Op, SelectionDAG &DAG) {
Evan Cheng069287d2006-05-16 07:21:53 +00002951 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
Evan Cheng0db9fe62006-04-25 20:13:52 +00002952 // as its second argument.
2953 MVT::ValueType VT = Op.getValueType();
Dan Gohman51eaa862007-06-14 22:58:02 +00002954 MVT::ValueType BaseVT = MVT::getVectorElementType(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00002955 SDOperand N0 = Op.getOperand(0);
2956 SDOperand N1 = Op.getOperand(1);
2957 SDOperand N2 = Op.getOperand(2);
2958 if (MVT::getSizeInBits(BaseVT) == 16) {
2959 if (N1.getValueType() != MVT::i32)
2960 N1 = DAG.getNode(ISD::ANY_EXTEND, MVT::i32, N1);
2961 if (N2.getValueType() != MVT::i32)
Evan Cheng0db58622007-06-29 00:01:20 +00002962 N2 = DAG.getConstant(cast<ConstantSDNode>(N2)->getValue(),getPointerTy());
Evan Cheng0db9fe62006-04-25 20:13:52 +00002963 return DAG.getNode(X86ISD::PINSRW, VT, N0, N1, N2);
2964 } else if (MVT::getSizeInBits(BaseVT) == 32) {
2965 unsigned Idx = cast<ConstantSDNode>(N2)->getValue();
2966 if (Idx == 0) {
2967 // Use a movss.
2968 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, VT, N1);
2969 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(4);
Dan Gohman51eaa862007-06-14 22:58:02 +00002970 MVT::ValueType BaseVT = MVT::getVectorElementType(MaskVT);
Chris Lattner5a88b832007-02-25 07:10:00 +00002971 SmallVector<SDOperand, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00002972 MaskVec.push_back(DAG.getConstant(4, BaseVT));
2973 for (unsigned i = 1; i <= 3; ++i)
2974 MaskVec.push_back(DAG.getConstant(i, BaseVT));
2975 return DAG.getNode(ISD::VECTOR_SHUFFLE, VT, N0, N1,
Chris Lattnere2199452006-08-11 17:38:39 +00002976 DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
2977 &MaskVec[0], MaskVec.size()));
Evan Cheng0db9fe62006-04-25 20:13:52 +00002978 } else {
2979 // Use two pinsrw instructions to insert a 32 bit value.
2980 Idx <<= 1;
2981 if (MVT::isFloatingPoint(N1.getValueType())) {
Evan Cheng466685d2006-10-09 20:57:25 +00002982 if (ISD::isNON_EXTLoad(N1.Val)) {
Evan Cheng069287d2006-05-16 07:21:53 +00002983 // Just load directly from f32mem to GR32.
Evan Cheng466685d2006-10-09 20:57:25 +00002984 LoadSDNode *LD = cast<LoadSDNode>(N1);
2985 N1 = DAG.getLoad(MVT::i32, LD->getChain(), LD->getBasePtr(),
2986 LD->getSrcValue(), LD->getSrcValueOffset());
Evan Cheng0db9fe62006-04-25 20:13:52 +00002987 } else {
2988 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, MVT::v4f32, N1);
2989 N1 = DAG.getNode(ISD::BIT_CONVERT, MVT::v4i32, N1);
2990 N1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::i32, N1,
Evan Cheng015188f2006-06-15 08:14:54 +00002991 DAG.getConstant(0, getPointerTy()));
Evan Cheng0db9fe62006-04-25 20:13:52 +00002992 }
2993 }
2994 N0 = DAG.getNode(ISD::BIT_CONVERT, MVT::v8i16, N0);
2995 N0 = DAG.getNode(X86ISD::PINSRW, MVT::v8i16, N0, N1,
Evan Cheng015188f2006-06-15 08:14:54 +00002996 DAG.getConstant(Idx, getPointerTy()));
Evan Cheng0db9fe62006-04-25 20:13:52 +00002997 N1 = DAG.getNode(ISD::SRL, MVT::i32, N1, DAG.getConstant(16, MVT::i8));
2998 N0 = DAG.getNode(X86ISD::PINSRW, MVT::v8i16, N0, N1,
Evan Cheng015188f2006-06-15 08:14:54 +00002999 DAG.getConstant(Idx+1, getPointerTy()));
Evan Cheng0db9fe62006-04-25 20:13:52 +00003000 return DAG.getNode(ISD::BIT_CONVERT, VT, N0);
3001 }
3002 }
3003
3004 return SDOperand();
3005}
3006
3007SDOperand
3008X86TargetLowering::LowerSCALAR_TO_VECTOR(SDOperand Op, SelectionDAG &DAG) {
3009 SDOperand AnyExt = DAG.getNode(ISD::ANY_EXTEND, MVT::i32, Op.getOperand(0));
3010 return DAG.getNode(X86ISD::S2VEC, Op.getValueType(), AnyExt);
3011}
3012
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003013// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
Evan Cheng0db9fe62006-04-25 20:13:52 +00003014// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
3015// one of the above mentioned nodes. It has to be wrapped because otherwise
3016// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
3017// be used to form addressing mode. These wrapped nodes will be selected
3018// into MOV32ri.
3019SDOperand
3020X86TargetLowering::LowerConstantPool(SDOperand Op, SelectionDAG &DAG) {
3021 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Evan Chengd0ff02c2006-11-29 23:19:46 +00003022 SDOperand Result = DAG.getTargetConstantPool(CP->getConstVal(),
3023 getPointerTy(),
3024 CP->getAlignment());
Evan Cheng19f2ffc2006-12-05 04:01:03 +00003025 Result = DAG.getNode(X86ISD::Wrapper, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00003026 // With PIC, the address is actually $g + Offset.
3027 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
3028 !Subtarget->isPICStyleRIPRel()) {
3029 Result = DAG.getNode(ISD::ADD, getPointerTy(),
3030 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
3031 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003032 }
3033
3034 return Result;
3035}
3036
3037SDOperand
3038X86TargetLowering::LowerGlobalAddress(SDOperand Op, SelectionDAG &DAG) {
3039 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Evan Chengd0ff02c2006-11-29 23:19:46 +00003040 SDOperand Result = DAG.getTargetGlobalAddress(GV, getPointerTy());
Evan Cheng19f2ffc2006-12-05 04:01:03 +00003041 Result = DAG.getNode(X86ISD::Wrapper, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00003042 // With PIC, the address is actually $g + Offset.
3043 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
3044 !Subtarget->isPICStyleRIPRel()) {
3045 Result = DAG.getNode(ISD::ADD, getPointerTy(),
3046 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
3047 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003048 }
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00003049
3050 // For Darwin & Mingw32, external and weak symbols are indirect, so we want to
3051 // load the value at address GV, not the value of GV itself. This means that
3052 // the GlobalAddress must be in the base or index register of the address, not
3053 // the GV offset field. Platform check is inside GVRequiresExtraLoad() call
Anton Korobeynikov7f705592007-01-12 19:20:47 +00003054 // The same applies for external symbols during PIC codegen
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00003055 if (Subtarget->GVRequiresExtraLoad(GV, getTargetMachine(), false))
3056 Result = DAG.getLoad(getPointerTy(), DAG.getEntryNode(), Result, NULL, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003057
3058 return Result;
3059}
3060
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003061// Lower ISD::GlobalTLSAddress using the "general dynamic" model
3062static SDOperand
3063LowerToTLSGeneralDynamicModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
3064 const MVT::ValueType PtrVT) {
3065 SDOperand InFlag;
3066 SDOperand Chain = DAG.getCopyToReg(DAG.getEntryNode(), X86::EBX,
3067 DAG.getNode(X86ISD::GlobalBaseReg,
3068 PtrVT), InFlag);
3069 InFlag = Chain.getValue(1);
3070
3071 // emit leal symbol@TLSGD(,%ebx,1), %eax
3072 SDVTList NodeTys = DAG.getVTList(PtrVT, MVT::Other, MVT::Flag);
3073 SDOperand TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
3074 GA->getValueType(0),
3075 GA->getOffset());
3076 SDOperand Ops[] = { Chain, TGA, InFlag };
3077 SDOperand Result = DAG.getNode(X86ISD::TLSADDR, NodeTys, Ops, 3);
3078 InFlag = Result.getValue(2);
3079 Chain = Result.getValue(1);
3080
3081 // call ___tls_get_addr. This function receives its argument in
3082 // the register EAX.
3083 Chain = DAG.getCopyToReg(Chain, X86::EAX, Result, InFlag);
3084 InFlag = Chain.getValue(1);
3085
3086 NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
3087 SDOperand Ops1[] = { Chain,
3088 DAG.getTargetExternalSymbol("___tls_get_addr",
3089 PtrVT),
3090 DAG.getRegister(X86::EAX, PtrVT),
3091 DAG.getRegister(X86::EBX, PtrVT),
3092 InFlag };
3093 Chain = DAG.getNode(X86ISD::CALL, NodeTys, Ops1, 5);
3094 InFlag = Chain.getValue(1);
3095
3096 return DAG.getCopyFromReg(Chain, X86::EAX, PtrVT, InFlag);
3097}
3098
3099// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
3100// "local exec" model.
3101static SDOperand
3102LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
3103 const MVT::ValueType PtrVT) {
3104 // Get the Thread Pointer
3105 SDOperand ThreadPointer = DAG.getNode(X86ISD::THREAD_POINTER, PtrVT);
3106 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
3107 // exec)
3108 SDOperand TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
3109 GA->getValueType(0),
3110 GA->getOffset());
3111 SDOperand Offset = DAG.getNode(X86ISD::Wrapper, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00003112
3113 if (GA->getGlobal()->isDeclaration()) // initial exec TLS model
3114 Offset = DAG.getLoad(PtrVT, DAG.getEntryNode(), Offset, NULL, 0);
3115
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003116 // The address of the thread local variable is the add of the thread
3117 // pointer with the offset of the variable.
3118 return DAG.getNode(ISD::ADD, PtrVT, ThreadPointer, Offset);
3119}
3120
3121SDOperand
3122X86TargetLowering::LowerGlobalTLSAddress(SDOperand Op, SelectionDAG &DAG) {
3123 // TODO: implement the "local dynamic" model
Lauro Ramos Venancio2c5c1112007-04-21 20:56:26 +00003124 // TODO: implement the "initial exec"model for pic executables
3125 assert(!Subtarget->is64Bit() && Subtarget->isTargetELF() &&
3126 "TLS not implemented for non-ELF and 64-bit targets");
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00003127 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
3128 // If the relocation model is PIC, use the "General Dynamic" TLS Model,
3129 // otherwise use the "Local Exec"TLS Model
3130 if (getTargetMachine().getRelocationModel() == Reloc::PIC_)
3131 return LowerToTLSGeneralDynamicModel(GA, DAG, getPointerTy());
3132 else
3133 return LowerToTLSExecModel(GA, DAG, getPointerTy());
3134}
3135
Evan Cheng0db9fe62006-04-25 20:13:52 +00003136SDOperand
3137X86TargetLowering::LowerExternalSymbol(SDOperand Op, SelectionDAG &DAG) {
3138 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Evan Chengd0ff02c2006-11-29 23:19:46 +00003139 SDOperand Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
Evan Cheng19f2ffc2006-12-05 04:01:03 +00003140 Result = DAG.getNode(X86ISD::Wrapper, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00003141 // With PIC, the address is actually $g + Offset.
3142 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
3143 !Subtarget->isPICStyleRIPRel()) {
3144 Result = DAG.getNode(ISD::ADD, getPointerTy(),
3145 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
3146 Result);
3147 }
3148
3149 return Result;
3150}
3151
3152SDOperand X86TargetLowering::LowerJumpTable(SDOperand Op, SelectionDAG &DAG) {
3153 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
3154 SDOperand Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy());
3155 Result = DAG.getNode(X86ISD::Wrapper, getPointerTy(), Result);
3156 // With PIC, the address is actually $g + Offset.
3157 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
3158 !Subtarget->isPICStyleRIPRel()) {
3159 Result = DAG.getNode(ISD::ADD, getPointerTy(),
3160 DAG.getNode(X86ISD::GlobalBaseReg, getPointerTy()),
3161 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003162 }
3163
3164 return Result;
3165}
3166
3167SDOperand X86TargetLowering::LowerShift(SDOperand Op, SelectionDAG &DAG) {
Evan Chenge3413162006-01-09 18:33:28 +00003168 assert(Op.getNumOperands() == 3 && Op.getValueType() == MVT::i32 &&
3169 "Not an i64 shift!");
3170 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
3171 SDOperand ShOpLo = Op.getOperand(0);
3172 SDOperand ShOpHi = Op.getOperand(1);
3173 SDOperand ShAmt = Op.getOperand(2);
Evan Cheng734503b2006-09-11 02:19:56 +00003174 SDOperand Tmp1 = isSRA ?
3175 DAG.getNode(ISD::SRA, MVT::i32, ShOpHi, DAG.getConstant(31, MVT::i8)) :
3176 DAG.getConstant(0, MVT::i32);
Evan Chenge3413162006-01-09 18:33:28 +00003177
3178 SDOperand Tmp2, Tmp3;
3179 if (Op.getOpcode() == ISD::SHL_PARTS) {
3180 Tmp2 = DAG.getNode(X86ISD::SHLD, MVT::i32, ShOpHi, ShOpLo, ShAmt);
3181 Tmp3 = DAG.getNode(ISD::SHL, MVT::i32, ShOpLo, ShAmt);
3182 } else {
3183 Tmp2 = DAG.getNode(X86ISD::SHRD, MVT::i32, ShOpLo, ShOpHi, ShAmt);
Evan Chengb7b57062006-01-19 01:46:14 +00003184 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, MVT::i32, ShOpHi, ShAmt);
Evan Chenge3413162006-01-09 18:33:28 +00003185 }
3186
Evan Cheng734503b2006-09-11 02:19:56 +00003187 const MVT::ValueType *VTs = DAG.getNodeValueTypes(MVT::Other, MVT::Flag);
3188 SDOperand AndNode = DAG.getNode(ISD::AND, MVT::i8, ShAmt,
3189 DAG.getConstant(32, MVT::i8));
3190 SDOperand COps[]={DAG.getEntryNode(), AndNode, DAG.getConstant(0, MVT::i8)};
3191 SDOperand InFlag = DAG.getNode(X86ISD::CMP, VTs, 2, COps, 3).getValue(1);
Evan Chenge3413162006-01-09 18:33:28 +00003192
3193 SDOperand Hi, Lo;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003194 SDOperand CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Chenge3413162006-01-09 18:33:28 +00003195
Evan Cheng734503b2006-09-11 02:19:56 +00003196 VTs = DAG.getNodeValueTypes(MVT::i32, MVT::Flag);
3197 SmallVector<SDOperand, 4> Ops;
Evan Chenge3413162006-01-09 18:33:28 +00003198 if (Op.getOpcode() == ISD::SHL_PARTS) {
3199 Ops.push_back(Tmp2);
3200 Ops.push_back(Tmp3);
3201 Ops.push_back(CC);
3202 Ops.push_back(InFlag);
Evan Cheng734503b2006-09-11 02:19:56 +00003203 Hi = DAG.getNode(X86ISD::CMOV, VTs, 2, &Ops[0], Ops.size());
Evan Chenge3413162006-01-09 18:33:28 +00003204 InFlag = Hi.getValue(1);
3205
3206 Ops.clear();
3207 Ops.push_back(Tmp3);
3208 Ops.push_back(Tmp1);
3209 Ops.push_back(CC);
3210 Ops.push_back(InFlag);
Evan Cheng734503b2006-09-11 02:19:56 +00003211 Lo = DAG.getNode(X86ISD::CMOV, VTs, 2, &Ops[0], Ops.size());
Evan Chenge3413162006-01-09 18:33:28 +00003212 } else {
3213 Ops.push_back(Tmp2);
3214 Ops.push_back(Tmp3);
3215 Ops.push_back(CC);
Evan Cheng910cd3c2006-01-09 22:29:54 +00003216 Ops.push_back(InFlag);
Evan Cheng734503b2006-09-11 02:19:56 +00003217 Lo = DAG.getNode(X86ISD::CMOV, VTs, 2, &Ops[0], Ops.size());
Evan Chenge3413162006-01-09 18:33:28 +00003218 InFlag = Lo.getValue(1);
3219
3220 Ops.clear();
3221 Ops.push_back(Tmp3);
3222 Ops.push_back(Tmp1);
3223 Ops.push_back(CC);
3224 Ops.push_back(InFlag);
Evan Cheng734503b2006-09-11 02:19:56 +00003225 Hi = DAG.getNode(X86ISD::CMOV, VTs, 2, &Ops[0], Ops.size());
Evan Chenge3413162006-01-09 18:33:28 +00003226 }
3227
Evan Cheng734503b2006-09-11 02:19:56 +00003228 VTs = DAG.getNodeValueTypes(MVT::i32, MVT::i32);
Evan Chenge3413162006-01-09 18:33:28 +00003229 Ops.clear();
3230 Ops.push_back(Lo);
3231 Ops.push_back(Hi);
Evan Cheng734503b2006-09-11 02:19:56 +00003232 return DAG.getNode(ISD::MERGE_VALUES, VTs, 2, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00003233}
Evan Chenga3195e82006-01-12 22:54:21 +00003234
Evan Cheng0db9fe62006-04-25 20:13:52 +00003235SDOperand X86TargetLowering::LowerSINT_TO_FP(SDOperand Op, SelectionDAG &DAG) {
3236 assert(Op.getOperand(0).getValueType() <= MVT::i64 &&
3237 Op.getOperand(0).getValueType() >= MVT::i16 &&
3238 "Unknown SINT_TO_FP to lower!");
3239
3240 SDOperand Result;
3241 MVT::ValueType SrcVT = Op.getOperand(0).getValueType();
3242 unsigned Size = MVT::getSizeInBits(SrcVT)/8;
3243 MachineFunction &MF = DAG.getMachineFunction();
3244 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size);
3245 SDOperand StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Evan Cheng786225a2006-10-05 23:01:46 +00003246 SDOperand Chain = DAG.getStore(DAG.getEntryNode(), Op.getOperand(0),
Evan Cheng8b2794a2006-10-13 21:14:26 +00003247 StackSlot, NULL, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003248
3249 // Build the FILD
Chris Lattner5a88b832007-02-25 07:10:00 +00003250 SDVTList Tys;
3251 if (X86ScalarSSE)
3252 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
3253 else
Dale Johannesen849f2142007-07-03 00:53:03 +00003254 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Chris Lattner5a88b832007-02-25 07:10:00 +00003255 SmallVector<SDOperand, 8> Ops;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003256 Ops.push_back(Chain);
3257 Ops.push_back(StackSlot);
3258 Ops.push_back(DAG.getValueType(SrcVT));
3259 Result = DAG.getNode(X86ScalarSSE ? X86ISD::FILD_FLAG :X86ISD::FILD,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003260 Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00003261
3262 if (X86ScalarSSE) {
3263 Chain = Result.getValue(1);
3264 SDOperand InFlag = Result.getValue(2);
3265
3266 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
3267 // shouldn't be necessary except that RFP cannot be live across
3268 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003269 MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng0db9fe62006-04-25 20:13:52 +00003270 int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003271 SDOperand StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Chris Lattner5a88b832007-02-25 07:10:00 +00003272 Tys = DAG.getVTList(MVT::Other);
3273 SmallVector<SDOperand, 8> Ops;
Evan Chenga3195e82006-01-12 22:54:21 +00003274 Ops.push_back(Chain);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003275 Ops.push_back(Result);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003276 Ops.push_back(StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003277 Ops.push_back(DAG.getValueType(Op.getValueType()));
3278 Ops.push_back(InFlag);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00003279 Chain = DAG.getNode(X86ISD::FST, Tys, &Ops[0], Ops.size());
Evan Cheng466685d2006-10-09 20:57:25 +00003280 Result = DAG.getLoad(Op.getValueType(), Chain, StackSlot, NULL, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003281 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003282
Evan Cheng0db9fe62006-04-25 20:13:52 +00003283 return Result;
3284}
3285
3286SDOperand X86TargetLowering::LowerFP_TO_SINT(SDOperand Op, SelectionDAG &DAG) {
3287 assert(Op.getValueType() <= MVT::i64 && Op.getValueType() >= MVT::i16 &&
3288 "Unknown FP_TO_SINT to lower!");
3289 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
3290 // stack slot.
3291 MachineFunction &MF = DAG.getMachineFunction();
3292 unsigned MemSize = MVT::getSizeInBits(Op.getValueType())/8;
3293 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
3294 SDOperand StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
3295
3296 unsigned Opc;
3297 switch (Op.getValueType()) {
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003298 default: assert(0 && "Invalid FP_TO_SINT to lower!");
3299 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
3300 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
3301 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003302 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003303
Evan Cheng0db9fe62006-04-25 20:13:52 +00003304 SDOperand Chain = DAG.getEntryNode();
3305 SDOperand Value = Op.getOperand(0);
3306 if (X86ScalarSSE) {
3307 assert(Op.getValueType() == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00003308 Chain = DAG.getStore(Chain, Value, StackSlot, NULL, 0);
Dale Johannesen849f2142007-07-03 00:53:03 +00003309 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Chris Lattner5a88b832007-02-25 07:10:00 +00003310 SDOperand Ops[] = {
3311 Chain, StackSlot, DAG.getValueType(Op.getOperand(0).getValueType())
3312 };
3313 Value = DAG.getNode(X86ISD::FLD, Tys, Ops, 3);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003314 Chain = Value.getValue(1);
3315 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
3316 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
3317 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003318
Evan Cheng0db9fe62006-04-25 20:13:52 +00003319 // Build the FP_TO_INT*_IN_MEM
Chris Lattner5a88b832007-02-25 07:10:00 +00003320 SDOperand Ops[] = { Chain, Value, StackSlot };
3321 SDOperand FIST = DAG.getNode(Opc, MVT::Other, Ops, 3);
Evan Chengd9558e02006-01-06 00:43:03 +00003322
Evan Cheng0db9fe62006-04-25 20:13:52 +00003323 // Load the result.
Evan Cheng466685d2006-10-09 20:57:25 +00003324 return DAG.getLoad(Op.getValueType(), FIST, StackSlot, NULL, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003325}
3326
3327SDOperand X86TargetLowering::LowerFABS(SDOperand Op, SelectionDAG &DAG) {
3328 MVT::ValueType VT = Op.getValueType();
3329 const Type *OpNTy = MVT::getTypeForValueType(VT);
3330 std::vector<Constant*> CV;
3331 if (VT == MVT::f64) {
3332 CV.push_back(ConstantFP::get(OpNTy, BitsToDouble(~(1ULL << 63))));
3333 CV.push_back(ConstantFP::get(OpNTy, 0.0));
3334 } else {
3335 CV.push_back(ConstantFP::get(OpNTy, BitsToFloat(~(1U << 31))));
3336 CV.push_back(ConstantFP::get(OpNTy, 0.0));
3337 CV.push_back(ConstantFP::get(OpNTy, 0.0));
3338 CV.push_back(ConstantFP::get(OpNTy, 0.0));
3339 }
3340 Constant *CS = ConstantStruct::get(CV);
3341 SDOperand CPIdx = DAG.getConstantPool(CS, getPointerTy(), 4);
Chris Lattner5a88b832007-02-25 07:10:00 +00003342 SDVTList Tys = DAG.getVTList(VT, MVT::Other);
Evan Cheng64a752f2006-08-11 09:08:15 +00003343 SmallVector<SDOperand, 3> Ops;
3344 Ops.push_back(DAG.getEntryNode());
3345 Ops.push_back(CPIdx);
3346 Ops.push_back(DAG.getSrcValue(NULL));
3347 SDOperand Mask = DAG.getNode(X86ISD::LOAD_PACK, Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00003348 return DAG.getNode(X86ISD::FAND, VT, Op.getOperand(0), Mask);
3349}
3350
3351SDOperand X86TargetLowering::LowerFNEG(SDOperand Op, SelectionDAG &DAG) {
3352 MVT::ValueType VT = Op.getValueType();
3353 const Type *OpNTy = MVT::getTypeForValueType(VT);
3354 std::vector<Constant*> CV;
3355 if (VT == MVT::f64) {
3356 CV.push_back(ConstantFP::get(OpNTy, BitsToDouble(1ULL << 63)));
3357 CV.push_back(ConstantFP::get(OpNTy, 0.0));
3358 } else {
3359 CV.push_back(ConstantFP::get(OpNTy, BitsToFloat(1U << 31)));
3360 CV.push_back(ConstantFP::get(OpNTy, 0.0));
3361 CV.push_back(ConstantFP::get(OpNTy, 0.0));
3362 CV.push_back(ConstantFP::get(OpNTy, 0.0));
3363 }
3364 Constant *CS = ConstantStruct::get(CV);
3365 SDOperand CPIdx = DAG.getConstantPool(CS, getPointerTy(), 4);
Chris Lattner5a88b832007-02-25 07:10:00 +00003366 SDVTList Tys = DAG.getVTList(VT, MVT::Other);
Evan Cheng64a752f2006-08-11 09:08:15 +00003367 SmallVector<SDOperand, 3> Ops;
3368 Ops.push_back(DAG.getEntryNode());
3369 Ops.push_back(CPIdx);
3370 Ops.push_back(DAG.getSrcValue(NULL));
3371 SDOperand Mask = DAG.getNode(X86ISD::LOAD_PACK, Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00003372 return DAG.getNode(X86ISD::FXOR, VT, Op.getOperand(0), Mask);
3373}
3374
Evan Cheng68c47cb2007-01-05 07:55:56 +00003375SDOperand X86TargetLowering::LowerFCOPYSIGN(SDOperand Op, SelectionDAG &DAG) {
Evan Cheng73d6cf12007-01-05 21:37:56 +00003376 SDOperand Op0 = Op.getOperand(0);
3377 SDOperand Op1 = Op.getOperand(1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00003378 MVT::ValueType VT = Op.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00003379 MVT::ValueType SrcVT = Op1.getValueType();
Evan Cheng68c47cb2007-01-05 07:55:56 +00003380 const Type *SrcTy = MVT::getTypeForValueType(SrcVT);
Evan Cheng73d6cf12007-01-05 21:37:56 +00003381
3382 // If second operand is smaller, extend it first.
3383 if (MVT::getSizeInBits(SrcVT) < MVT::getSizeInBits(VT)) {
3384 Op1 = DAG.getNode(ISD::FP_EXTEND, VT, Op1);
3385 SrcVT = VT;
3386 }
3387
Evan Cheng68c47cb2007-01-05 07:55:56 +00003388 // First get the sign bit of second operand.
3389 std::vector<Constant*> CV;
3390 if (SrcVT == MVT::f64) {
3391 CV.push_back(ConstantFP::get(SrcTy, BitsToDouble(1ULL << 63)));
3392 CV.push_back(ConstantFP::get(SrcTy, 0.0));
3393 } else {
3394 CV.push_back(ConstantFP::get(SrcTy, BitsToFloat(1U << 31)));
3395 CV.push_back(ConstantFP::get(SrcTy, 0.0));
3396 CV.push_back(ConstantFP::get(SrcTy, 0.0));
3397 CV.push_back(ConstantFP::get(SrcTy, 0.0));
3398 }
3399 Constant *CS = ConstantStruct::get(CV);
3400 SDOperand CPIdx = DAG.getConstantPool(CS, getPointerTy(), 4);
Chris Lattnerd96d0722007-02-25 06:40:16 +00003401 SDVTList Tys = DAG.getVTList(SrcVT, MVT::Other);
Evan Cheng68c47cb2007-01-05 07:55:56 +00003402 SmallVector<SDOperand, 3> Ops;
3403 Ops.push_back(DAG.getEntryNode());
3404 Ops.push_back(CPIdx);
3405 Ops.push_back(DAG.getSrcValue(NULL));
Evan Cheng73d6cf12007-01-05 21:37:56 +00003406 SDOperand Mask1 = DAG.getNode(X86ISD::LOAD_PACK, Tys, &Ops[0], Ops.size());
3407 SDOperand SignBit = DAG.getNode(X86ISD::FAND, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00003408
3409 // Shift sign bit right or left if the two operands have different types.
3410 if (MVT::getSizeInBits(SrcVT) > MVT::getSizeInBits(VT)) {
3411 // Op0 is MVT::f32, Op1 is MVT::f64.
3412 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, MVT::v2f64, SignBit);
3413 SignBit = DAG.getNode(X86ISD::FSRL, MVT::v2f64, SignBit,
3414 DAG.getConstant(32, MVT::i32));
3415 SignBit = DAG.getNode(ISD::BIT_CONVERT, MVT::v4f32, SignBit);
3416 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, MVT::f32, SignBit,
3417 DAG.getConstant(0, getPointerTy()));
Evan Cheng68c47cb2007-01-05 07:55:56 +00003418 }
3419
Evan Cheng73d6cf12007-01-05 21:37:56 +00003420 // Clear first operand sign bit.
3421 CV.clear();
3422 if (VT == MVT::f64) {
3423 CV.push_back(ConstantFP::get(SrcTy, BitsToDouble(~(1ULL << 63))));
3424 CV.push_back(ConstantFP::get(SrcTy, 0.0));
3425 } else {
3426 CV.push_back(ConstantFP::get(SrcTy, BitsToFloat(~(1U << 31))));
3427 CV.push_back(ConstantFP::get(SrcTy, 0.0));
3428 CV.push_back(ConstantFP::get(SrcTy, 0.0));
3429 CV.push_back(ConstantFP::get(SrcTy, 0.0));
3430 }
3431 CS = ConstantStruct::get(CV);
3432 CPIdx = DAG.getConstantPool(CS, getPointerTy(), 4);
Chris Lattnerd96d0722007-02-25 06:40:16 +00003433 Tys = DAG.getVTList(VT, MVT::Other);
Evan Cheng73d6cf12007-01-05 21:37:56 +00003434 Ops.clear();
3435 Ops.push_back(DAG.getEntryNode());
3436 Ops.push_back(CPIdx);
3437 Ops.push_back(DAG.getSrcValue(NULL));
3438 SDOperand Mask2 = DAG.getNode(X86ISD::LOAD_PACK, Tys, &Ops[0], Ops.size());
3439 SDOperand Val = DAG.getNode(X86ISD::FAND, VT, Op0, Mask2);
3440
3441 // Or the value with the sign bit.
3442 return DAG.getNode(X86ISD::FOR, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00003443}
3444
Evan Cheng734503b2006-09-11 02:19:56 +00003445SDOperand X86TargetLowering::LowerSETCC(SDOperand Op, SelectionDAG &DAG,
3446 SDOperand Chain) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00003447 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
3448 SDOperand Cond;
Evan Cheng734503b2006-09-11 02:19:56 +00003449 SDOperand Op0 = Op.getOperand(0);
3450 SDOperand Op1 = Op.getOperand(1);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003451 SDOperand CC = Op.getOperand(2);
3452 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
Evan Chengcf12ec42006-10-12 19:12:56 +00003453 const MVT::ValueType *VTs1 = DAG.getNodeValueTypes(MVT::Other, MVT::Flag);
3454 const MVT::ValueType *VTs2 = DAG.getNodeValueTypes(MVT::i8, MVT::Flag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003455 bool isFP = MVT::isFloatingPoint(Op.getOperand(1).getValueType());
Evan Cheng0db9fe62006-04-25 20:13:52 +00003456 unsigned X86CC;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003457
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003458 if (translateX86CC(cast<CondCodeSDNode>(CC)->get(), isFP, X86CC,
Chris Lattnerf9570512006-09-13 03:22:10 +00003459 Op0, Op1, DAG)) {
Evan Cheng734503b2006-09-11 02:19:56 +00003460 SDOperand Ops1[] = { Chain, Op0, Op1 };
Evan Chengcf12ec42006-10-12 19:12:56 +00003461 Cond = DAG.getNode(X86ISD::CMP, VTs1, 2, Ops1, 3).getValue(1);
Evan Cheng734503b2006-09-11 02:19:56 +00003462 SDOperand Ops2[] = { DAG.getConstant(X86CC, MVT::i8), Cond };
Evan Chengcf12ec42006-10-12 19:12:56 +00003463 return DAG.getNode(X86ISD::SETCC, VTs2, 2, Ops2, 2);
Evan Cheng734503b2006-09-11 02:19:56 +00003464 }
3465
3466 assert(isFP && "Illegal integer SetCC!");
3467
3468 SDOperand COps[] = { Chain, Op0, Op1 };
Evan Chengcf12ec42006-10-12 19:12:56 +00003469 Cond = DAG.getNode(X86ISD::CMP, VTs1, 2, COps, 3).getValue(1);
Evan Cheng734503b2006-09-11 02:19:56 +00003470
3471 switch (SetCCOpcode) {
3472 default: assert(false && "Illegal floating point SetCC!");
3473 case ISD::SETOEQ: { // !PF & ZF
Chris Lattner7fbe9722006-10-20 17:42:20 +00003474 SDOperand Ops1[] = { DAG.getConstant(X86::COND_NP, MVT::i8), Cond };
Evan Chengcf12ec42006-10-12 19:12:56 +00003475 SDOperand Tmp1 = DAG.getNode(X86ISD::SETCC, VTs2, 2, Ops1, 2);
Chris Lattner7fbe9722006-10-20 17:42:20 +00003476 SDOperand Ops2[] = { DAG.getConstant(X86::COND_E, MVT::i8),
Evan Cheng734503b2006-09-11 02:19:56 +00003477 Tmp1.getValue(1) };
Evan Chengcf12ec42006-10-12 19:12:56 +00003478 SDOperand Tmp2 = DAG.getNode(X86ISD::SETCC, VTs2, 2, Ops2, 2);
Evan Cheng734503b2006-09-11 02:19:56 +00003479 return DAG.getNode(ISD::AND, MVT::i8, Tmp1, Tmp2);
3480 }
3481 case ISD::SETUNE: { // PF | !ZF
Chris Lattner7fbe9722006-10-20 17:42:20 +00003482 SDOperand Ops1[] = { DAG.getConstant(X86::COND_P, MVT::i8), Cond };
Evan Chengcf12ec42006-10-12 19:12:56 +00003483 SDOperand Tmp1 = DAG.getNode(X86ISD::SETCC, VTs2, 2, Ops1, 2);
Chris Lattner7fbe9722006-10-20 17:42:20 +00003484 SDOperand Ops2[] = { DAG.getConstant(X86::COND_NE, MVT::i8),
Evan Cheng734503b2006-09-11 02:19:56 +00003485 Tmp1.getValue(1) };
Evan Chengcf12ec42006-10-12 19:12:56 +00003486 SDOperand Tmp2 = DAG.getNode(X86ISD::SETCC, VTs2, 2, Ops2, 2);
Evan Cheng734503b2006-09-11 02:19:56 +00003487 return DAG.getNode(ISD::OR, MVT::i8, Tmp1, Tmp2);
3488 }
Evan Chengd5781fc2005-12-21 20:21:51 +00003489 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003490}
Evan Cheng6dfa9992006-01-30 23:41:35 +00003491
Evan Cheng0db9fe62006-04-25 20:13:52 +00003492SDOperand X86TargetLowering::LowerSELECT(SDOperand Op, SelectionDAG &DAG) {
Evan Cheng734503b2006-09-11 02:19:56 +00003493 bool addTest = true;
3494 SDOperand Chain = DAG.getEntryNode();
3495 SDOperand Cond = Op.getOperand(0);
3496 SDOperand CC;
3497 const MVT::ValueType *VTs = DAG.getNodeValueTypes(MVT::Other, MVT::Flag);
Evan Cheng9bba8942006-01-26 02:13:10 +00003498
Evan Cheng734503b2006-09-11 02:19:56 +00003499 if (Cond.getOpcode() == ISD::SETCC)
3500 Cond = LowerSETCC(Cond, DAG, Chain);
3501
3502 if (Cond.getOpcode() == X86ISD::SETCC) {
3503 CC = Cond.getOperand(0);
3504
Evan Cheng0db9fe62006-04-25 20:13:52 +00003505 // If condition flag is set by a X86ISD::CMP, then make a copy of it
Evan Cheng734503b2006-09-11 02:19:56 +00003506 // (since flag operand cannot be shared). Use it as the condition setting
3507 // operand in place of the X86ISD::SETCC.
3508 // If the X86ISD::SETCC has more than one use, then perhaps it's better
Evan Cheng0db9fe62006-04-25 20:13:52 +00003509 // to use a test instead of duplicating the X86ISD::CMP (for register
Evan Cheng734503b2006-09-11 02:19:56 +00003510 // pressure reason)?
3511 SDOperand Cmp = Cond.getOperand(1);
3512 unsigned Opc = Cmp.getOpcode();
3513 bool IllegalFPCMov = !X86ScalarSSE &&
3514 MVT::isFloatingPoint(Op.getValueType()) &&
3515 !hasFPCMov(cast<ConstantSDNode>(CC)->getSignExtended());
3516 if ((Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI) &&
3517 !IllegalFPCMov) {
3518 SDOperand Ops[] = { Chain, Cmp.getOperand(1), Cmp.getOperand(2) };
3519 Cond = DAG.getNode(Opc, VTs, 2, Ops, 3);
3520 addTest = false;
3521 }
3522 }
Evan Chengaaca22c2006-01-10 20:26:56 +00003523
Evan Cheng0db9fe62006-04-25 20:13:52 +00003524 if (addTest) {
Chris Lattner7fbe9722006-10-20 17:42:20 +00003525 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng734503b2006-09-11 02:19:56 +00003526 SDOperand Ops[] = { Chain, Cond, DAG.getConstant(0, MVT::i8) };
3527 Cond = DAG.getNode(X86ISD::CMP, VTs, 2, Ops, 3);
Evan Cheng7df96d62005-12-17 01:21:05 +00003528 }
Evan Cheng6dfa9992006-01-30 23:41:35 +00003529
Evan Cheng734503b2006-09-11 02:19:56 +00003530 VTs = DAG.getNodeValueTypes(Op.getValueType(), MVT::Flag);
3531 SmallVector<SDOperand, 4> Ops;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003532 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
3533 // condition is true.
3534 Ops.push_back(Op.getOperand(2));
3535 Ops.push_back(Op.getOperand(1));
3536 Ops.push_back(CC);
Evan Cheng734503b2006-09-11 02:19:56 +00003537 Ops.push_back(Cond.getValue(1));
3538 return DAG.getNode(X86ISD::CMOV, VTs, 2, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00003539}
Evan Cheng9bba8942006-01-26 02:13:10 +00003540
Evan Cheng0db9fe62006-04-25 20:13:52 +00003541SDOperand X86TargetLowering::LowerBRCOND(SDOperand Op, SelectionDAG &DAG) {
Evan Cheng734503b2006-09-11 02:19:56 +00003542 bool addTest = true;
3543 SDOperand Chain = Op.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003544 SDOperand Cond = Op.getOperand(1);
3545 SDOperand Dest = Op.getOperand(2);
3546 SDOperand CC;
Evan Cheng734503b2006-09-11 02:19:56 +00003547 const MVT::ValueType *VTs = DAG.getNodeValueTypes(MVT::Other, MVT::Flag);
3548
Evan Cheng0db9fe62006-04-25 20:13:52 +00003549 if (Cond.getOpcode() == ISD::SETCC)
Evan Cheng734503b2006-09-11 02:19:56 +00003550 Cond = LowerSETCC(Cond, DAG, Chain);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003551
3552 if (Cond.getOpcode() == X86ISD::SETCC) {
Evan Cheng734503b2006-09-11 02:19:56 +00003553 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003554
Evan Cheng734503b2006-09-11 02:19:56 +00003555 // If condition flag is set by a X86ISD::CMP, then make a copy of it
3556 // (since flag operand cannot be shared). Use it as the condition setting
3557 // operand in place of the X86ISD::SETCC.
3558 // If the X86ISD::SETCC has more than one use, then perhaps it's better
3559 // to use a test instead of duplicating the X86ISD::CMP (for register
3560 // pressure reason)?
3561 SDOperand Cmp = Cond.getOperand(1);
3562 unsigned Opc = Cmp.getOpcode();
3563 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI) {
3564 SDOperand Ops[] = { Chain, Cmp.getOperand(1), Cmp.getOperand(2) };
3565 Cond = DAG.getNode(Opc, VTs, 2, Ops, 3);
3566 addTest = false;
3567 }
3568 }
Evan Cheng1bcee362006-01-13 01:03:02 +00003569
Evan Cheng0db9fe62006-04-25 20:13:52 +00003570 if (addTest) {
Chris Lattner7fbe9722006-10-20 17:42:20 +00003571 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng734503b2006-09-11 02:19:56 +00003572 SDOperand Ops[] = { Chain, Cond, DAG.getConstant(0, MVT::i8) };
3573 Cond = DAG.getNode(X86ISD::CMP, VTs, 2, Ops, 3);
Evan Cheng898101c2005-12-19 23:12:38 +00003574 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003575 return DAG.getNode(X86ISD::BRCOND, Op.getValueType(),
Evan Cheng734503b2006-09-11 02:19:56 +00003576 Cond, Op.getOperand(2), CC, Cond.getValue(1));
Evan Cheng0db9fe62006-04-25 20:13:52 +00003577}
Evan Cheng67f92a72006-01-11 22:15:48 +00003578
Evan Cheng32fe1032006-05-25 00:59:30 +00003579SDOperand X86TargetLowering::LowerCALL(SDOperand Op, SelectionDAG &DAG) {
3580 unsigned CallingConv= cast<ConstantSDNode>(Op.getOperand(1))->getValue();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003581
Evan Cheng25ab6902006-09-08 06:48:29 +00003582 if (Subtarget->is64Bit())
Chris Lattner09c75a42007-02-25 09:06:15 +00003583 return LowerX86_64CCCCallTo(Op, DAG, CallingConv);
Evan Cheng32fe1032006-05-25 00:59:30 +00003584 else
Anton Korobeynikovf8248682006-09-20 22:03:51 +00003585 switch (CallingConv) {
Chris Lattnerf38f5432006-09-27 18:29:38 +00003586 default:
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003587 assert(0 && "Unsupported calling convention");
Chris Lattnerf38f5432006-09-27 18:29:38 +00003588 case CallingConv::Fast:
Chris Lattner2db39b82007-02-28 06:05:16 +00003589 // TODO: Implement fastcc
Anton Korobeynikovf8248682006-09-20 22:03:51 +00003590 // Falls through
Chris Lattnerf38f5432006-09-27 18:29:38 +00003591 case CallingConv::C:
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003592 case CallingConv::X86_StdCall:
Chris Lattner09c75a42007-02-25 09:06:15 +00003593 return LowerCCCCallTo(Op, DAG, CallingConv);
Chris Lattnerf38f5432006-09-27 18:29:38 +00003594 case CallingConv::X86_FastCall:
Chris Lattner09c75a42007-02-25 09:06:15 +00003595 return LowerFastCCCallTo(Op, DAG, CallingConv);
Anton Korobeynikovf8248682006-09-20 22:03:51 +00003596 }
Evan Cheng32fe1032006-05-25 00:59:30 +00003597}
3598
Anton Korobeynikove060b532007-04-17 19:34:00 +00003599
3600// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
3601// Calls to _alloca is needed to probe the stack when allocating more than 4k
3602// bytes in one go. Touching the stack at 4K increments is necessary to ensure
3603// that the guard pages used by the OS virtual memory manager are allocated in
3604// correct sequence.
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00003605SDOperand X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDOperand Op,
3606 SelectionDAG &DAG) {
Anton Korobeynikove060b532007-04-17 19:34:00 +00003607 assert(Subtarget->isTargetCygMing() &&
3608 "This should be used only on Cygwin/Mingw targets");
3609
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00003610 // Get the inputs.
3611 SDOperand Chain = Op.getOperand(0);
3612 SDOperand Size = Op.getOperand(1);
3613 // FIXME: Ensure alignment here
3614
3615 TargetLowering::ArgListTy Args;
3616 TargetLowering::ArgListEntry Entry;
3617 MVT::ValueType IntPtr = getPointerTy();
3618 MVT::ValueType SPTy = (Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
3619 const Type *IntPtrTy = getTargetData()->getIntPtrType();
3620
3621 Entry.Node = Size;
3622 Entry.Ty = IntPtrTy;
3623 Entry.isInReg = true; // Should pass in EAX
3624 Args.push_back(Entry);
3625 std::pair<SDOperand, SDOperand> CallResult =
3626 LowerCallTo(Chain, IntPtrTy, false, false, CallingConv::C, false,
3627 DAG.getExternalSymbol("_alloca", IntPtr), Args, DAG);
3628
3629 SDOperand SP = DAG.getCopyFromReg(CallResult.second, X86StackPtr, SPTy);
3630
3631 std::vector<MVT::ValueType> Tys;
3632 Tys.push_back(SPTy);
3633 Tys.push_back(MVT::Other);
3634 SDOperand Ops[2] = { SP, CallResult.second };
3635 return DAG.getNode(ISD::MERGE_VALUES, Tys, Ops, 2);
3636}
3637
Evan Cheng1bc78042006-04-26 01:20:17 +00003638SDOperand
3639X86TargetLowering::LowerFORMAL_ARGUMENTS(SDOperand Op, SelectionDAG &DAG) {
Evan Chenge8bd0a32006-06-06 23:30:24 +00003640 MachineFunction &MF = DAG.getMachineFunction();
3641 const Function* Fn = MF.getFunction();
3642 if (Fn->hasExternalLinkage() &&
Anton Korobeynikov317848f2007-01-03 11:43:14 +00003643 Subtarget->isTargetCygMing() &&
Evan Chengb12223e2006-06-09 06:24:42 +00003644 Fn->getName() == "main")
Chris Lattnerd15dff22007-04-17 17:21:52 +00003645 MF.getInfo<X86MachineFunctionInfo>()->setForceFramePointer(true);
Evan Chenge8bd0a32006-06-06 23:30:24 +00003646
Evan Cheng25caf632006-05-23 21:06:34 +00003647 unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getValue();
Evan Cheng25ab6902006-09-08 06:48:29 +00003648 if (Subtarget->is64Bit())
3649 return LowerX86_64CCCArguments(Op, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00003650 else
Anton Korobeynikovf8248682006-09-20 22:03:51 +00003651 switch(CC) {
Chris Lattnerf38f5432006-09-27 18:29:38 +00003652 default:
3653 assert(0 && "Unsupported calling convention");
3654 case CallingConv::Fast:
Chris Lattner2db39b82007-02-28 06:05:16 +00003655 // TODO: implement fastcc.
3656
Anton Korobeynikovf8248682006-09-20 22:03:51 +00003657 // Falls through
Chris Lattnerf38f5432006-09-27 18:29:38 +00003658 case CallingConv::C:
Anton Korobeynikovf8248682006-09-20 22:03:51 +00003659 return LowerCCCArguments(Op, DAG);
Chris Lattnerf38f5432006-09-27 18:29:38 +00003660 case CallingConv::X86_StdCall:
Chris Lattnerd15dff22007-04-17 17:21:52 +00003661 MF.getInfo<X86MachineFunctionInfo>()->setDecorationStyle(StdCall);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00003662 return LowerCCCArguments(Op, DAG, true);
Chris Lattnerf38f5432006-09-27 18:29:38 +00003663 case CallingConv::X86_FastCall:
Chris Lattnerd15dff22007-04-17 17:21:52 +00003664 MF.getInfo<X86MachineFunctionInfo>()->setDecorationStyle(FastCall);
Chris Lattner2db39b82007-02-28 06:05:16 +00003665 return LowerFastCCArguments(Op, DAG);
Anton Korobeynikovf8248682006-09-20 22:03:51 +00003666 }
Evan Cheng1bc78042006-04-26 01:20:17 +00003667}
3668
Evan Cheng0db9fe62006-04-25 20:13:52 +00003669SDOperand X86TargetLowering::LowerMEMSET(SDOperand Op, SelectionDAG &DAG) {
3670 SDOperand InFlag(0, 0);
3671 SDOperand Chain = Op.getOperand(0);
3672 unsigned Align =
3673 (unsigned)cast<ConstantSDNode>(Op.getOperand(4))->getValue();
3674 if (Align == 0) Align = 1;
3675
3676 ConstantSDNode *I = dyn_cast<ConstantSDNode>(Op.getOperand(3));
3677 // If not DWORD aligned, call memset if size is less than the threshold.
3678 // It knows how to align to the right boundary first.
3679 if ((Align & 3) != 0 ||
3680 (I && I->getValue() < Subtarget->getMinRepStrSizeThreshold())) {
3681 MVT::ValueType IntPtr = getPointerTy();
Owen Andersona69571c2006-05-03 01:29:57 +00003682 const Type *IntPtrTy = getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00003683 TargetLowering::ArgListTy Args;
3684 TargetLowering::ArgListEntry Entry;
3685 Entry.Node = Op.getOperand(1);
3686 Entry.Ty = IntPtrTy;
Reid Spencer47857812006-12-31 05:55:36 +00003687 Args.push_back(Entry);
Reid Spenceraff93872007-01-03 17:24:59 +00003688 // Extend the unsigned i8 argument to be an int value for the call.
Reid Spencer47857812006-12-31 05:55:36 +00003689 Entry.Node = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Op.getOperand(2));
3690 Entry.Ty = IntPtrTy;
Reid Spencer47857812006-12-31 05:55:36 +00003691 Args.push_back(Entry);
3692 Entry.Node = Op.getOperand(3);
3693 Args.push_back(Entry);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003694 std::pair<SDOperand,SDOperand> CallResult =
Reid Spencer47857812006-12-31 05:55:36 +00003695 LowerCallTo(Chain, Type::VoidTy, false, false, CallingConv::C, false,
Evan Cheng0db9fe62006-04-25 20:13:52 +00003696 DAG.getExternalSymbol("memset", IntPtr), Args, DAG);
3697 return CallResult.second;
Evan Cheng48090aa2006-03-21 23:01:21 +00003698 }
Evan Chengb9df0ca2006-03-22 02:53:00 +00003699
Evan Cheng0db9fe62006-04-25 20:13:52 +00003700 MVT::ValueType AVT;
3701 SDOperand Count;
3702 ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Op.getOperand(2));
3703 unsigned BytesLeft = 0;
3704 bool TwoRepStos = false;
3705 if (ValC) {
3706 unsigned ValReg;
Evan Cheng25ab6902006-09-08 06:48:29 +00003707 uint64_t Val = ValC->getValue() & 255;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003708
Evan Cheng0db9fe62006-04-25 20:13:52 +00003709 // If the value is a constant, then we can potentially use larger sets.
3710 switch (Align & 3) {
3711 case 2: // WORD aligned
3712 AVT = MVT::i16;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003713 ValReg = X86::AX;
Evan Cheng25ab6902006-09-08 06:48:29 +00003714 Val = (Val << 8) | Val;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003715 break;
Evan Cheng25ab6902006-09-08 06:48:29 +00003716 case 0: // DWORD aligned
Evan Cheng0db9fe62006-04-25 20:13:52 +00003717 AVT = MVT::i32;
Evan Cheng25ab6902006-09-08 06:48:29 +00003718 ValReg = X86::EAX;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003719 Val = (Val << 8) | Val;
3720 Val = (Val << 16) | Val;
Evan Cheng25ab6902006-09-08 06:48:29 +00003721 if (Subtarget->is64Bit() && ((Align & 0xF) == 0)) { // QWORD aligned
3722 AVT = MVT::i64;
3723 ValReg = X86::RAX;
3724 Val = (Val << 32) | Val;
3725 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003726 break;
3727 default: // Byte aligned
3728 AVT = MVT::i8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003729 ValReg = X86::AL;
Evan Cheng25ab6902006-09-08 06:48:29 +00003730 Count = Op.getOperand(3);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003731 break;
Evan Cheng80d428c2006-04-19 22:48:17 +00003732 }
3733
Evan Cheng25ab6902006-09-08 06:48:29 +00003734 if (AVT > MVT::i8) {
3735 if (I) {
3736 unsigned UBytes = MVT::getSizeInBits(AVT) / 8;
3737 Count = DAG.getConstant(I->getValue() / UBytes, getPointerTy());
3738 BytesLeft = I->getValue() % UBytes;
3739 } else {
3740 assert(AVT >= MVT::i32 &&
3741 "Do not use rep;stos if not at least DWORD aligned");
3742 Count = DAG.getNode(ISD::SRL, Op.getOperand(3).getValueType(),
3743 Op.getOperand(3), DAG.getConstant(2, MVT::i8));
3744 TwoRepStos = true;
3745 }
3746 }
3747
Evan Cheng0db9fe62006-04-25 20:13:52 +00003748 Chain = DAG.getCopyToReg(Chain, ValReg, DAG.getConstant(Val, AVT),
3749 InFlag);
3750 InFlag = Chain.getValue(1);
3751 } else {
3752 AVT = MVT::i8;
3753 Count = Op.getOperand(3);
3754 Chain = DAG.getCopyToReg(Chain, X86::AL, Op.getOperand(2), InFlag);
3755 InFlag = Chain.getValue(1);
Evan Chengb9df0ca2006-03-22 02:53:00 +00003756 }
Evan Chengc78d3b42006-04-24 18:01:45 +00003757
Evan Cheng25ab6902006-09-08 06:48:29 +00003758 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RCX : X86::ECX,
3759 Count, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003760 InFlag = Chain.getValue(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00003761 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RDI : X86::EDI,
3762 Op.getOperand(1), InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003763 InFlag = Chain.getValue(1);
Evan Chenga0b3afb2006-03-27 07:00:16 +00003764
Chris Lattnerd96d0722007-02-25 06:40:16 +00003765 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Chris Lattner5a88b832007-02-25 07:10:00 +00003766 SmallVector<SDOperand, 8> Ops;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003767 Ops.push_back(Chain);
3768 Ops.push_back(DAG.getValueType(AVT));
3769 Ops.push_back(InFlag);
Evan Cheng311ace02006-08-11 07:35:45 +00003770 Chain = DAG.getNode(X86ISD::REP_STOS, Tys, &Ops[0], Ops.size());
Evan Chengc78d3b42006-04-24 18:01:45 +00003771
Evan Cheng0db9fe62006-04-25 20:13:52 +00003772 if (TwoRepStos) {
3773 InFlag = Chain.getValue(1);
3774 Count = Op.getOperand(3);
3775 MVT::ValueType CVT = Count.getValueType();
3776 SDOperand Left = DAG.getNode(ISD::AND, CVT, Count,
Evan Cheng25ab6902006-09-08 06:48:29 +00003777 DAG.getConstant((AVT == MVT::i64) ? 7 : 3, CVT));
3778 Chain = DAG.getCopyToReg(Chain, (CVT == MVT::i64) ? X86::RCX : X86::ECX,
3779 Left, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003780 InFlag = Chain.getValue(1);
Chris Lattnerd96d0722007-02-25 06:40:16 +00003781 Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003782 Ops.clear();
3783 Ops.push_back(Chain);
3784 Ops.push_back(DAG.getValueType(MVT::i8));
3785 Ops.push_back(InFlag);
Evan Cheng311ace02006-08-11 07:35:45 +00003786 Chain = DAG.getNode(X86ISD::REP_STOS, Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00003787 } else if (BytesLeft) {
Evan Cheng25ab6902006-09-08 06:48:29 +00003788 // Issue stores for the last 1 - 7 bytes.
Evan Cheng0db9fe62006-04-25 20:13:52 +00003789 SDOperand Value;
3790 unsigned Val = ValC->getValue() & 255;
3791 unsigned Offset = I->getValue() - BytesLeft;
3792 SDOperand DstAddr = Op.getOperand(1);
3793 MVT::ValueType AddrVT = DstAddr.getValueType();
Evan Cheng25ab6902006-09-08 06:48:29 +00003794 if (BytesLeft >= 4) {
3795 Val = (Val << 8) | Val;
3796 Val = (Val << 16) | Val;
3797 Value = DAG.getConstant(Val, MVT::i32);
Evan Cheng786225a2006-10-05 23:01:46 +00003798 Chain = DAG.getStore(Chain, Value,
3799 DAG.getNode(ISD::ADD, AddrVT, DstAddr,
3800 DAG.getConstant(Offset, AddrVT)),
Evan Cheng8b2794a2006-10-13 21:14:26 +00003801 NULL, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00003802 BytesLeft -= 4;
3803 Offset += 4;
3804 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003805 if (BytesLeft >= 2) {
3806 Value = DAG.getConstant((Val << 8) | Val, MVT::i16);
Evan Cheng786225a2006-10-05 23:01:46 +00003807 Chain = DAG.getStore(Chain, Value,
3808 DAG.getNode(ISD::ADD, AddrVT, DstAddr,
3809 DAG.getConstant(Offset, AddrVT)),
Evan Cheng8b2794a2006-10-13 21:14:26 +00003810 NULL, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003811 BytesLeft -= 2;
3812 Offset += 2;
Evan Cheng386031a2006-03-24 07:29:27 +00003813 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003814 if (BytesLeft == 1) {
3815 Value = DAG.getConstant(Val, MVT::i8);
Evan Cheng786225a2006-10-05 23:01:46 +00003816 Chain = DAG.getStore(Chain, Value,
3817 DAG.getNode(ISD::ADD, AddrVT, DstAddr,
3818 DAG.getConstant(Offset, AddrVT)),
Evan Cheng8b2794a2006-10-13 21:14:26 +00003819 NULL, 0);
Evan Chengba05f722006-04-21 23:03:30 +00003820 }
Evan Cheng386031a2006-03-24 07:29:27 +00003821 }
Evan Cheng11e15b32006-04-03 20:53:28 +00003822
Evan Cheng0db9fe62006-04-25 20:13:52 +00003823 return Chain;
3824}
Evan Cheng11e15b32006-04-03 20:53:28 +00003825
Evan Cheng0db9fe62006-04-25 20:13:52 +00003826SDOperand X86TargetLowering::LowerMEMCPY(SDOperand Op, SelectionDAG &DAG) {
3827 SDOperand Chain = Op.getOperand(0);
3828 unsigned Align =
3829 (unsigned)cast<ConstantSDNode>(Op.getOperand(4))->getValue();
3830 if (Align == 0) Align = 1;
Evan Cheng11e15b32006-04-03 20:53:28 +00003831
Evan Cheng0db9fe62006-04-25 20:13:52 +00003832 ConstantSDNode *I = dyn_cast<ConstantSDNode>(Op.getOperand(3));
3833 // If not DWORD aligned, call memcpy if size is less than the threshold.
3834 // It knows how to align to the right boundary first.
3835 if ((Align & 3) != 0 ||
3836 (I && I->getValue() < Subtarget->getMinRepStrSizeThreshold())) {
3837 MVT::ValueType IntPtr = getPointerTy();
Reid Spencer47857812006-12-31 05:55:36 +00003838 TargetLowering::ArgListTy Args;
3839 TargetLowering::ArgListEntry Entry;
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00003840 Entry.Ty = getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00003841 Entry.Node = Op.getOperand(1); Args.push_back(Entry);
3842 Entry.Node = Op.getOperand(2); Args.push_back(Entry);
3843 Entry.Node = Op.getOperand(3); Args.push_back(Entry);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003844 std::pair<SDOperand,SDOperand> CallResult =
Reid Spencer47857812006-12-31 05:55:36 +00003845 LowerCallTo(Chain, Type::VoidTy, false, false, CallingConv::C, false,
Evan Cheng0db9fe62006-04-25 20:13:52 +00003846 DAG.getExternalSymbol("memcpy", IntPtr), Args, DAG);
3847 return CallResult.second;
Evan Chengb067a1e2006-03-31 19:22:53 +00003848 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003849
3850 MVT::ValueType AVT;
3851 SDOperand Count;
3852 unsigned BytesLeft = 0;
3853 bool TwoRepMovs = false;
3854 switch (Align & 3) {
3855 case 2: // WORD aligned
3856 AVT = MVT::i16;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003857 break;
Evan Cheng25ab6902006-09-08 06:48:29 +00003858 case 0: // DWORD aligned
Evan Cheng0db9fe62006-04-25 20:13:52 +00003859 AVT = MVT::i32;
Evan Cheng25ab6902006-09-08 06:48:29 +00003860 if (Subtarget->is64Bit() && ((Align & 0xF) == 0)) // QWORD aligned
3861 AVT = MVT::i64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003862 break;
3863 default: // Byte aligned
3864 AVT = MVT::i8;
3865 Count = Op.getOperand(3);
3866 break;
3867 }
3868
Evan Cheng25ab6902006-09-08 06:48:29 +00003869 if (AVT > MVT::i8) {
3870 if (I) {
3871 unsigned UBytes = MVT::getSizeInBits(AVT) / 8;
3872 Count = DAG.getConstant(I->getValue() / UBytes, getPointerTy());
3873 BytesLeft = I->getValue() % UBytes;
3874 } else {
3875 assert(AVT >= MVT::i32 &&
3876 "Do not use rep;movs if not at least DWORD aligned");
3877 Count = DAG.getNode(ISD::SRL, Op.getOperand(3).getValueType(),
3878 Op.getOperand(3), DAG.getConstant(2, MVT::i8));
3879 TwoRepMovs = true;
3880 }
3881 }
3882
Evan Cheng0db9fe62006-04-25 20:13:52 +00003883 SDOperand InFlag(0, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00003884 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RCX : X86::ECX,
3885 Count, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003886 InFlag = Chain.getValue(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00003887 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RDI : X86::EDI,
3888 Op.getOperand(1), InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003889 InFlag = Chain.getValue(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00003890 Chain = DAG.getCopyToReg(Chain, Subtarget->is64Bit() ? X86::RSI : X86::ESI,
3891 Op.getOperand(2), InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003892 InFlag = Chain.getValue(1);
3893
Chris Lattnerd96d0722007-02-25 06:40:16 +00003894 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Chris Lattner5a88b832007-02-25 07:10:00 +00003895 SmallVector<SDOperand, 8> Ops;
Evan Cheng0db9fe62006-04-25 20:13:52 +00003896 Ops.push_back(Chain);
3897 Ops.push_back(DAG.getValueType(AVT));
3898 Ops.push_back(InFlag);
Evan Cheng311ace02006-08-11 07:35:45 +00003899 Chain = DAG.getNode(X86ISD::REP_MOVS, Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00003900
3901 if (TwoRepMovs) {
3902 InFlag = Chain.getValue(1);
3903 Count = Op.getOperand(3);
3904 MVT::ValueType CVT = Count.getValueType();
3905 SDOperand Left = DAG.getNode(ISD::AND, CVT, Count,
Evan Cheng25ab6902006-09-08 06:48:29 +00003906 DAG.getConstant((AVT == MVT::i64) ? 7 : 3, CVT));
3907 Chain = DAG.getCopyToReg(Chain, (CVT == MVT::i64) ? X86::RCX : X86::ECX,
3908 Left, InFlag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003909 InFlag = Chain.getValue(1);
Chris Lattnerd96d0722007-02-25 06:40:16 +00003910 Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003911 Ops.clear();
3912 Ops.push_back(Chain);
3913 Ops.push_back(DAG.getValueType(MVT::i8));
3914 Ops.push_back(InFlag);
Evan Cheng311ace02006-08-11 07:35:45 +00003915 Chain = DAG.getNode(X86ISD::REP_MOVS, Tys, &Ops[0], Ops.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00003916 } else if (BytesLeft) {
Evan Cheng25ab6902006-09-08 06:48:29 +00003917 // Issue loads and stores for the last 1 - 7 bytes.
Evan Cheng0db9fe62006-04-25 20:13:52 +00003918 unsigned Offset = I->getValue() - BytesLeft;
3919 SDOperand DstAddr = Op.getOperand(1);
3920 MVT::ValueType DstVT = DstAddr.getValueType();
3921 SDOperand SrcAddr = Op.getOperand(2);
3922 MVT::ValueType SrcVT = SrcAddr.getValueType();
3923 SDOperand Value;
Evan Cheng25ab6902006-09-08 06:48:29 +00003924 if (BytesLeft >= 4) {
3925 Value = DAG.getLoad(MVT::i32, Chain,
3926 DAG.getNode(ISD::ADD, SrcVT, SrcAddr,
3927 DAG.getConstant(Offset, SrcVT)),
Evan Cheng466685d2006-10-09 20:57:25 +00003928 NULL, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00003929 Chain = Value.getValue(1);
Evan Cheng786225a2006-10-05 23:01:46 +00003930 Chain = DAG.getStore(Chain, Value,
3931 DAG.getNode(ISD::ADD, DstVT, DstAddr,
3932 DAG.getConstant(Offset, DstVT)),
Evan Cheng8b2794a2006-10-13 21:14:26 +00003933 NULL, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00003934 BytesLeft -= 4;
3935 Offset += 4;
3936 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003937 if (BytesLeft >= 2) {
3938 Value = DAG.getLoad(MVT::i16, Chain,
3939 DAG.getNode(ISD::ADD, SrcVT, SrcAddr,
3940 DAG.getConstant(Offset, SrcVT)),
Evan Cheng466685d2006-10-09 20:57:25 +00003941 NULL, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003942 Chain = Value.getValue(1);
Evan Cheng786225a2006-10-05 23:01:46 +00003943 Chain = DAG.getStore(Chain, Value,
3944 DAG.getNode(ISD::ADD, DstVT, DstAddr,
3945 DAG.getConstant(Offset, DstVT)),
Evan Cheng8b2794a2006-10-13 21:14:26 +00003946 NULL, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003947 BytesLeft -= 2;
3948 Offset += 2;
Evan Chengb067a1e2006-03-31 19:22:53 +00003949 }
3950
Evan Cheng0db9fe62006-04-25 20:13:52 +00003951 if (BytesLeft == 1) {
3952 Value = DAG.getLoad(MVT::i8, Chain,
3953 DAG.getNode(ISD::ADD, SrcVT, SrcAddr,
3954 DAG.getConstant(Offset, SrcVT)),
Evan Cheng466685d2006-10-09 20:57:25 +00003955 NULL, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003956 Chain = Value.getValue(1);
Evan Cheng786225a2006-10-05 23:01:46 +00003957 Chain = DAG.getStore(Chain, Value,
3958 DAG.getNode(ISD::ADD, DstVT, DstAddr,
3959 DAG.getConstant(Offset, DstVT)),
Evan Cheng8b2794a2006-10-13 21:14:26 +00003960 NULL, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003961 }
Evan Chengb067a1e2006-03-31 19:22:53 +00003962 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00003963
3964 return Chain;
3965}
3966
3967SDOperand
3968X86TargetLowering::LowerREADCYCLCECOUNTER(SDOperand Op, SelectionDAG &DAG) {
Chris Lattnerd96d0722007-02-25 06:40:16 +00003969 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Chris Lattner5a88b832007-02-25 07:10:00 +00003970 SDOperand TheOp = Op.getOperand(0);
3971 SDOperand rd = DAG.getNode(X86ISD::RDTSC_DAG, Tys, &TheOp, 1);
Evan Cheng3fa9dff2006-11-29 08:28:13 +00003972 if (Subtarget->is64Bit()) {
3973 SDOperand Copy1 = DAG.getCopyFromReg(rd, X86::RAX, MVT::i64, rd.getValue(1));
3974 SDOperand Copy2 = DAG.getCopyFromReg(Copy1.getValue(1), X86::RDX,
3975 MVT::i64, Copy1.getValue(2));
3976 SDOperand Tmp = DAG.getNode(ISD::SHL, MVT::i64, Copy2,
3977 DAG.getConstant(32, MVT::i8));
Chris Lattner5a88b832007-02-25 07:10:00 +00003978 SDOperand Ops[] = {
3979 DAG.getNode(ISD::OR, MVT::i64, Copy1, Tmp), Copy2.getValue(1)
3980 };
Chris Lattnerd96d0722007-02-25 06:40:16 +00003981
3982 Tys = DAG.getVTList(MVT::i64, MVT::Other);
Chris Lattner5a88b832007-02-25 07:10:00 +00003983 return DAG.getNode(ISD::MERGE_VALUES, Tys, Ops, 2);
Evan Cheng3fa9dff2006-11-29 08:28:13 +00003984 }
Chris Lattner5a88b832007-02-25 07:10:00 +00003985
3986 SDOperand Copy1 = DAG.getCopyFromReg(rd, X86::EAX, MVT::i32, rd.getValue(1));
3987 SDOperand Copy2 = DAG.getCopyFromReg(Copy1.getValue(1), X86::EDX,
3988 MVT::i32, Copy1.getValue(2));
3989 SDOperand Ops[] = { Copy1, Copy2, Copy2.getValue(1) };
3990 Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
3991 return DAG.getNode(ISD::MERGE_VALUES, Tys, Ops, 3);
Evan Cheng0db9fe62006-04-25 20:13:52 +00003992}
3993
3994SDOperand X86TargetLowering::LowerVASTART(SDOperand Op, SelectionDAG &DAG) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00003995 SrcValueSDNode *SV = cast<SrcValueSDNode>(Op.getOperand(2));
3996
Evan Cheng25ab6902006-09-08 06:48:29 +00003997 if (!Subtarget->is64Bit()) {
3998 // vastart just stores the address of the VarArgsFrameIndex slot into the
3999 // memory location argument.
4000 SDOperand FR = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Evan Cheng8b2794a2006-10-13 21:14:26 +00004001 return DAG.getStore(Op.getOperand(0), FR,Op.getOperand(1), SV->getValue(),
4002 SV->getOffset());
Evan Cheng25ab6902006-09-08 06:48:29 +00004003 }
4004
4005 // __va_list_tag:
4006 // gp_offset (0 - 6 * 8)
4007 // fp_offset (48 - 48 + 8 * 16)
4008 // overflow_arg_area (point to parameters coming in memory).
4009 // reg_save_area
Chris Lattner5a88b832007-02-25 07:10:00 +00004010 SmallVector<SDOperand, 8> MemOps;
Evan Cheng25ab6902006-09-08 06:48:29 +00004011 SDOperand FIN = Op.getOperand(1);
4012 // Store gp_offset
Evan Cheng786225a2006-10-05 23:01:46 +00004013 SDOperand Store = DAG.getStore(Op.getOperand(0),
4014 DAG.getConstant(VarArgsGPOffset, MVT::i32),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004015 FIN, SV->getValue(), SV->getOffset());
Evan Cheng25ab6902006-09-08 06:48:29 +00004016 MemOps.push_back(Store);
4017
4018 // Store fp_offset
4019 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN,
4020 DAG.getConstant(4, getPointerTy()));
Evan Cheng786225a2006-10-05 23:01:46 +00004021 Store = DAG.getStore(Op.getOperand(0),
4022 DAG.getConstant(VarArgsFPOffset, MVT::i32),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004023 FIN, SV->getValue(), SV->getOffset());
Evan Cheng25ab6902006-09-08 06:48:29 +00004024 MemOps.push_back(Store);
4025
4026 // Store ptr to overflow_arg_area
4027 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN,
4028 DAG.getConstant(4, getPointerTy()));
4029 SDOperand OVFIN = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
Evan Cheng8b2794a2006-10-13 21:14:26 +00004030 Store = DAG.getStore(Op.getOperand(0), OVFIN, FIN, SV->getValue(),
4031 SV->getOffset());
Evan Cheng25ab6902006-09-08 06:48:29 +00004032 MemOps.push_back(Store);
4033
4034 // Store ptr to reg_save_area.
4035 FIN = DAG.getNode(ISD::ADD, getPointerTy(), FIN,
4036 DAG.getConstant(8, getPointerTy()));
4037 SDOperand RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
Evan Cheng8b2794a2006-10-13 21:14:26 +00004038 Store = DAG.getStore(Op.getOperand(0), RSFIN, FIN, SV->getValue(),
4039 SV->getOffset());
Evan Cheng25ab6902006-09-08 06:48:29 +00004040 MemOps.push_back(Store);
4041 return DAG.getNode(ISD::TokenFactor, MVT::Other, &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00004042}
4043
Evan Chengae642192007-03-02 23:16:35 +00004044SDOperand X86TargetLowering::LowerVACOPY(SDOperand Op, SelectionDAG &DAG) {
4045 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
4046 SDOperand Chain = Op.getOperand(0);
4047 SDOperand DstPtr = Op.getOperand(1);
4048 SDOperand SrcPtr = Op.getOperand(2);
4049 SrcValueSDNode *DstSV = cast<SrcValueSDNode>(Op.getOperand(3));
4050 SrcValueSDNode *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4));
4051
4052 SrcPtr = DAG.getLoad(getPointerTy(), Chain, SrcPtr,
4053 SrcSV->getValue(), SrcSV->getOffset());
4054 Chain = SrcPtr.getValue(1);
4055 for (unsigned i = 0; i < 3; ++i) {
4056 SDOperand Val = DAG.getLoad(MVT::i64, Chain, SrcPtr,
4057 SrcSV->getValue(), SrcSV->getOffset());
4058 Chain = Val.getValue(1);
4059 Chain = DAG.getStore(Chain, Val, DstPtr,
4060 DstSV->getValue(), DstSV->getOffset());
4061 if (i == 2)
4062 break;
4063 SrcPtr = DAG.getNode(ISD::ADD, getPointerTy(), SrcPtr,
4064 DAG.getConstant(8, getPointerTy()));
4065 DstPtr = DAG.getNode(ISD::ADD, getPointerTy(), DstPtr,
4066 DAG.getConstant(8, getPointerTy()));
4067 }
4068 return Chain;
4069}
4070
Evan Cheng0db9fe62006-04-25 20:13:52 +00004071SDOperand
4072X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDOperand Op, SelectionDAG &DAG) {
4073 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getValue();
4074 switch (IntNo) {
4075 default: return SDOperand(); // Don't custom lower most intrinsics.
Evan Cheng6be2c582006-04-05 23:38:46 +00004076 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004077 case Intrinsic::x86_sse_comieq_ss:
4078 case Intrinsic::x86_sse_comilt_ss:
4079 case Intrinsic::x86_sse_comile_ss:
4080 case Intrinsic::x86_sse_comigt_ss:
4081 case Intrinsic::x86_sse_comige_ss:
4082 case Intrinsic::x86_sse_comineq_ss:
4083 case Intrinsic::x86_sse_ucomieq_ss:
4084 case Intrinsic::x86_sse_ucomilt_ss:
4085 case Intrinsic::x86_sse_ucomile_ss:
4086 case Intrinsic::x86_sse_ucomigt_ss:
4087 case Intrinsic::x86_sse_ucomige_ss:
4088 case Intrinsic::x86_sse_ucomineq_ss:
4089 case Intrinsic::x86_sse2_comieq_sd:
4090 case Intrinsic::x86_sse2_comilt_sd:
4091 case Intrinsic::x86_sse2_comile_sd:
4092 case Intrinsic::x86_sse2_comigt_sd:
4093 case Intrinsic::x86_sse2_comige_sd:
4094 case Intrinsic::x86_sse2_comineq_sd:
4095 case Intrinsic::x86_sse2_ucomieq_sd:
4096 case Intrinsic::x86_sse2_ucomilt_sd:
4097 case Intrinsic::x86_sse2_ucomile_sd:
4098 case Intrinsic::x86_sse2_ucomigt_sd:
4099 case Intrinsic::x86_sse2_ucomige_sd:
4100 case Intrinsic::x86_sse2_ucomineq_sd: {
4101 unsigned Opc = 0;
4102 ISD::CondCode CC = ISD::SETCC_INVALID;
4103 switch (IntNo) {
4104 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004105 case Intrinsic::x86_sse_comieq_ss:
4106 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004107 Opc = X86ISD::COMI;
4108 CC = ISD::SETEQ;
4109 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00004110 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00004111 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004112 Opc = X86ISD::COMI;
4113 CC = ISD::SETLT;
4114 break;
4115 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00004116 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004117 Opc = X86ISD::COMI;
4118 CC = ISD::SETLE;
4119 break;
4120 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00004121 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004122 Opc = X86ISD::COMI;
4123 CC = ISD::SETGT;
4124 break;
4125 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00004126 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004127 Opc = X86ISD::COMI;
4128 CC = ISD::SETGE;
4129 break;
4130 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00004131 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004132 Opc = X86ISD::COMI;
4133 CC = ISD::SETNE;
4134 break;
4135 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00004136 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004137 Opc = X86ISD::UCOMI;
4138 CC = ISD::SETEQ;
4139 break;
4140 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00004141 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004142 Opc = X86ISD::UCOMI;
4143 CC = ISD::SETLT;
4144 break;
4145 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00004146 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004147 Opc = X86ISD::UCOMI;
4148 CC = ISD::SETLE;
4149 break;
4150 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00004151 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004152 Opc = X86ISD::UCOMI;
4153 CC = ISD::SETGT;
4154 break;
4155 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00004156 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004157 Opc = X86ISD::UCOMI;
4158 CC = ISD::SETGE;
4159 break;
4160 case Intrinsic::x86_sse_ucomineq_ss:
4161 case Intrinsic::x86_sse2_ucomineq_sd:
4162 Opc = X86ISD::UCOMI;
4163 CC = ISD::SETNE;
4164 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00004165 }
Evan Cheng734503b2006-09-11 02:19:56 +00004166
Evan Cheng0db9fe62006-04-25 20:13:52 +00004167 unsigned X86CC;
Chris Lattnerf9570512006-09-13 03:22:10 +00004168 SDOperand LHS = Op.getOperand(1);
4169 SDOperand RHS = Op.getOperand(2);
4170 translateX86CC(CC, true, X86CC, LHS, RHS, DAG);
Evan Cheng734503b2006-09-11 02:19:56 +00004171
4172 const MVT::ValueType *VTs = DAG.getNodeValueTypes(MVT::Other, MVT::Flag);
Chris Lattnerf9570512006-09-13 03:22:10 +00004173 SDOperand Ops1[] = { DAG.getEntryNode(), LHS, RHS };
Evan Cheng734503b2006-09-11 02:19:56 +00004174 SDOperand Cond = DAG.getNode(Opc, VTs, 2, Ops1, 3);
4175 VTs = DAG.getNodeValueTypes(MVT::i8, MVT::Flag);
4176 SDOperand Ops2[] = { DAG.getConstant(X86CC, MVT::i8), Cond };
4177 SDOperand SetCC = DAG.getNode(X86ISD::SETCC, VTs, 2, Ops2, 2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004178 return DAG.getNode(ISD::ANY_EXTEND, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00004179 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00004180 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00004181}
Evan Cheng72261582005-12-20 06:22:03 +00004182
Nate Begemanbcc5f362007-01-29 22:58:52 +00004183SDOperand X86TargetLowering::LowerRETURNADDR(SDOperand Op, SelectionDAG &DAG) {
4184 // Depths > 0 not supported yet!
4185 if (cast<ConstantSDNode>(Op.getOperand(0))->getValue() > 0)
4186 return SDOperand();
4187
4188 // Just load the return address
4189 SDOperand RetAddrFI = getReturnAddressFrameIndex(DAG);
4190 return DAG.getLoad(getPointerTy(), DAG.getEntryNode(), RetAddrFI, NULL, 0);
4191}
4192
4193SDOperand X86TargetLowering::LowerFRAMEADDR(SDOperand Op, SelectionDAG &DAG) {
4194 // Depths > 0 not supported yet!
4195 if (cast<ConstantSDNode>(Op.getOperand(0))->getValue() > 0)
4196 return SDOperand();
4197
4198 SDOperand RetAddrFI = getReturnAddressFrameIndex(DAG);
4199 return DAG.getNode(ISD::SUB, getPointerTy(), RetAddrFI,
4200 DAG.getConstant(4, getPointerTy()));
4201}
4202
Evan Cheng0db9fe62006-04-25 20:13:52 +00004203/// LowerOperation - Provide custom lowering hooks for some operations.
4204///
4205SDOperand X86TargetLowering::LowerOperation(SDOperand Op, SelectionDAG &DAG) {
4206 switch (Op.getOpcode()) {
4207 default: assert(0 && "Should not custom lower this!");
4208 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
4209 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
4210 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
4211 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
4212 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
4213 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
4214 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004215 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004216 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
4217 case ISD::SHL_PARTS:
4218 case ISD::SRA_PARTS:
4219 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
4220 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
4221 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
4222 case ISD::FABS: return LowerFABS(Op, DAG);
4223 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00004224 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Cheng734503b2006-09-11 02:19:56 +00004225 case ISD::SETCC: return LowerSETCC(Op, DAG, DAG.getEntryNode());
Evan Cheng0db9fe62006-04-25 20:13:52 +00004226 case ISD::SELECT: return LowerSELECT(Op, DAG);
4227 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
4228 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng32fe1032006-05-25 00:59:30 +00004229 case ISD::CALL: return LowerCALL(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004230 case ISD::RET: return LowerRET(Op, DAG);
Evan Cheng1bc78042006-04-26 01:20:17 +00004231 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004232 case ISD::MEMSET: return LowerMEMSET(Op, DAG);
4233 case ISD::MEMCPY: return LowerMEMCPY(Op, DAG);
4234 case ISD::READCYCLECOUNTER: return LowerREADCYCLCECOUNTER(Op, DAG);
4235 case ISD::VASTART: return LowerVASTART(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00004236 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004237 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00004238 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
4239 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00004240 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004241 }
Jim Laskey62819f32007-02-21 22:54:50 +00004242 return SDOperand();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004243}
4244
Evan Cheng72261582005-12-20 06:22:03 +00004245const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
4246 switch (Opcode) {
4247 default: return NULL;
Evan Chenge3413162006-01-09 18:33:28 +00004248 case X86ISD::SHLD: return "X86ISD::SHLD";
4249 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00004250 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00004251 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00004252 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00004253 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00004254 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00004255 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00004256 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
4257 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
4258 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00004259 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00004260 case X86ISD::FST: return "X86ISD::FST";
4261 case X86ISD::FP_GET_RESULT: return "X86ISD::FP_GET_RESULT";
Evan Chengb077b842005-12-21 02:39:21 +00004262 case X86ISD::FP_SET_RESULT: return "X86ISD::FP_SET_RESULT";
Evan Cheng72261582005-12-20 06:22:03 +00004263 case X86ISD::CALL: return "X86ISD::CALL";
4264 case X86ISD::TAILCALL: return "X86ISD::TAILCALL";
4265 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
4266 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00004267 case X86ISD::COMI: return "X86ISD::COMI";
4268 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00004269 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Cheng72261582005-12-20 06:22:03 +00004270 case X86ISD::CMOV: return "X86ISD::CMOV";
4271 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00004272 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00004273 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
4274 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng223547a2006-01-31 22:28:30 +00004275 case X86ISD::LOAD_PACK: return "X86ISD::LOAD_PACK";
Evan Cheng206ee9d2006-07-07 08:33:52 +00004276 case X86ISD::LOAD_UA: return "X86ISD::LOAD_UA";
Evan Cheng7ccced62006-02-18 00:15:05 +00004277 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00004278 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Evan Chengbc4832b2006-03-24 23:15:12 +00004279 case X86ISD::S2VEC: return "X86ISD::S2VEC";
Evan Chengb067a1e2006-03-31 19:22:53 +00004280 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Evan Cheng653159f2006-03-31 21:55:24 +00004281 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Evan Cheng8ca29322006-11-10 21:43:37 +00004282 case X86ISD::FMAX: return "X86ISD::FMAX";
4283 case X86ISD::FMIN: return "X86ISD::FMIN";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00004284 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
4285 case X86ISD::THREAD_POINTER: return "X86ISD::THREAD_POINTER";
Evan Cheng72261582005-12-20 06:22:03 +00004286 }
4287}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00004288
Chris Lattnerc9addb72007-03-30 23:15:24 +00004289// isLegalAddressingMode - Return true if the addressing mode represented
4290// by AM is legal for this target, for a load/store of the specified type.
4291bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
4292 const Type *Ty) const {
4293 // X86 supports extremely general addressing modes.
4294
4295 // X86 allows a sign-extended 32-bit immediate field as a displacement.
4296 if (AM.BaseOffs <= -(1LL << 32) || AM.BaseOffs >= (1LL << 32)-1)
4297 return false;
4298
4299 if (AM.BaseGV) {
4300 // X86-64 only supports addr of globals in small code model.
4301 if (Subtarget->is64Bit() &&
4302 getTargetMachine().getCodeModel() != CodeModel::Small)
4303 return false;
4304
4305 // We can only fold this if we don't need a load either.
4306 if (Subtarget->GVRequiresExtraLoad(AM.BaseGV, getTargetMachine(), false))
4307 return false;
4308 }
4309
4310 switch (AM.Scale) {
4311 case 0:
4312 case 1:
4313 case 2:
4314 case 4:
4315 case 8:
4316 // These scales always work.
4317 break;
4318 case 3:
4319 case 5:
4320 case 9:
4321 // These scales are formed with basereg+scalereg. Only accept if there is
4322 // no basereg yet.
4323 if (AM.HasBaseReg)
4324 return false;
4325 break;
4326 default: // Other stuff never works.
4327 return false;
4328 }
4329
4330 return true;
4331}
4332
4333
Evan Cheng60c07e12006-07-05 22:17:51 +00004334/// isShuffleMaskLegal - Targets can use this to indicate that they only
4335/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
4336/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
4337/// are assumed to be legal.
4338bool
4339X86TargetLowering::isShuffleMaskLegal(SDOperand Mask, MVT::ValueType VT) const {
4340 // Only do shuffles on 128-bit vector types for now.
4341 if (MVT::getSizeInBits(VT) == 64) return false;
4342 return (Mask.Val->getNumOperands() <= 4 ||
Evan Cheng49892af2007-06-19 00:02:56 +00004343 isIdentityMask(Mask.Val) ||
4344 isIdentityMask(Mask.Val, true) ||
Evan Cheng60c07e12006-07-05 22:17:51 +00004345 isSplatMask(Mask.Val) ||
4346 isPSHUFHW_PSHUFLWMask(Mask.Val) ||
4347 X86::isUNPCKLMask(Mask.Val) ||
Evan Cheng49892af2007-06-19 00:02:56 +00004348 X86::isUNPCKHMask(Mask.Val) ||
Evan Cheng60c07e12006-07-05 22:17:51 +00004349 X86::isUNPCKL_v_undef_Mask(Mask.Val) ||
Evan Cheng49892af2007-06-19 00:02:56 +00004350 X86::isUNPCKH_v_undef_Mask(Mask.Val));
Evan Cheng60c07e12006-07-05 22:17:51 +00004351}
4352
4353bool X86TargetLowering::isVectorClearMaskLegal(std::vector<SDOperand> &BVOps,
4354 MVT::ValueType EVT,
4355 SelectionDAG &DAG) const {
4356 unsigned NumElts = BVOps.size();
4357 // Only do shuffles on 128-bit vector types for now.
4358 if (MVT::getSizeInBits(EVT) * NumElts == 64) return false;
4359 if (NumElts == 2) return true;
4360 if (NumElts == 4) {
Chris Lattner5a88b832007-02-25 07:10:00 +00004361 return (isMOVLMask(&BVOps[0], 4) ||
4362 isCommutedMOVL(&BVOps[0], 4, true) ||
4363 isSHUFPMask(&BVOps[0], 4) ||
4364 isCommutedSHUFP(&BVOps[0], 4));
Evan Cheng60c07e12006-07-05 22:17:51 +00004365 }
4366 return false;
4367}
4368
4369//===----------------------------------------------------------------------===//
4370// X86 Scheduler Hooks
4371//===----------------------------------------------------------------------===//
4372
4373MachineBasicBlock *
4374X86TargetLowering::InsertAtEndOfBasicBlock(MachineInstr *MI,
4375 MachineBasicBlock *BB) {
Evan Chengc0f64ff2006-11-27 23:37:22 +00004376 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Evan Cheng60c07e12006-07-05 22:17:51 +00004377 switch (MI->getOpcode()) {
4378 default: assert(false && "Unexpected instr type to insert");
4379 case X86::CMOV_FR32:
4380 case X86::CMOV_FR64:
4381 case X86::CMOV_V4F32:
4382 case X86::CMOV_V2F64:
4383 case X86::CMOV_V2I64: {
4384 // To "insert" a SELECT_CC instruction, we actually have to insert the
4385 // diamond control-flow pattern. The incoming instruction knows the
4386 // destination vreg to set, the condition code register to branch on, the
4387 // true/false values to select between, and a branch opcode to use.
4388 const BasicBlock *LLVM_BB = BB->getBasicBlock();
4389 ilist<MachineBasicBlock>::iterator It = BB;
4390 ++It;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004391
Evan Cheng60c07e12006-07-05 22:17:51 +00004392 // thisMBB:
4393 // ...
4394 // TrueVal = ...
4395 // cmpTY ccX, r1, r2
4396 // bCC copy1MBB
4397 // fallthrough --> copy0MBB
4398 MachineBasicBlock *thisMBB = BB;
4399 MachineBasicBlock *copy0MBB = new MachineBasicBlock(LLVM_BB);
4400 MachineBasicBlock *sinkMBB = new MachineBasicBlock(LLVM_BB);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004401 unsigned Opc =
Chris Lattner7fbe9722006-10-20 17:42:20 +00004402 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
Evan Chengc0f64ff2006-11-27 23:37:22 +00004403 BuildMI(BB, TII->get(Opc)).addMBB(sinkMBB);
Evan Cheng60c07e12006-07-05 22:17:51 +00004404 MachineFunction *F = BB->getParent();
4405 F->getBasicBlockList().insert(It, copy0MBB);
4406 F->getBasicBlockList().insert(It, sinkMBB);
4407 // Update machine-CFG edges by first adding all successors of the current
4408 // block to the new block which will contain the Phi node for the select.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004409 for(MachineBasicBlock::succ_iterator i = BB->succ_begin(),
Evan Cheng60c07e12006-07-05 22:17:51 +00004410 e = BB->succ_end(); i != e; ++i)
4411 sinkMBB->addSuccessor(*i);
4412 // Next, remove all successors of the current block, and add the true
4413 // and fallthrough blocks as its successors.
4414 while(!BB->succ_empty())
4415 BB->removeSuccessor(BB->succ_begin());
4416 BB->addSuccessor(copy0MBB);
4417 BB->addSuccessor(sinkMBB);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004418
Evan Cheng60c07e12006-07-05 22:17:51 +00004419 // copy0MBB:
4420 // %FalseValue = ...
4421 // # fallthrough to sinkMBB
4422 BB = copy0MBB;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004423
Evan Cheng60c07e12006-07-05 22:17:51 +00004424 // Update machine-CFG edges
4425 BB->addSuccessor(sinkMBB);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004426
Evan Cheng60c07e12006-07-05 22:17:51 +00004427 // sinkMBB:
4428 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
4429 // ...
4430 BB = sinkMBB;
Evan Chengc0f64ff2006-11-27 23:37:22 +00004431 BuildMI(BB, TII->get(X86::PHI), MI->getOperand(0).getReg())
Evan Cheng60c07e12006-07-05 22:17:51 +00004432 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
4433 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
4434
4435 delete MI; // The pseudo instruction is gone now.
4436 return BB;
4437 }
4438
Dale Johannesen849f2142007-07-03 00:53:03 +00004439 case X86::FP32_TO_INT16_IN_MEM:
4440 case X86::FP32_TO_INT32_IN_MEM:
4441 case X86::FP32_TO_INT64_IN_MEM:
4442 case X86::FP64_TO_INT16_IN_MEM:
4443 case X86::FP64_TO_INT32_IN_MEM:
4444 case X86::FP64_TO_INT64_IN_MEM: {
Evan Cheng60c07e12006-07-05 22:17:51 +00004445 // Change the floating point control register to use "round towards zero"
4446 // mode when truncating to an integer value.
4447 MachineFunction *F = BB->getParent();
4448 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
Evan Chengc0f64ff2006-11-27 23:37:22 +00004449 addFrameReference(BuildMI(BB, TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00004450
4451 // Load the old value of the high byte of the control word...
4452 unsigned OldCW =
4453 F->getSSARegMap()->createVirtualRegister(X86::GR16RegisterClass);
Evan Chengc0f64ff2006-11-27 23:37:22 +00004454 addFrameReference(BuildMI(BB, TII->get(X86::MOV16rm), OldCW), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00004455
4456 // Set the high part to be round to zero...
Evan Chengc0f64ff2006-11-27 23:37:22 +00004457 addFrameReference(BuildMI(BB, TII->get(X86::MOV16mi)), CWFrameIdx)
4458 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +00004459
4460 // Reload the modified control word now...
Evan Chengc0f64ff2006-11-27 23:37:22 +00004461 addFrameReference(BuildMI(BB, TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00004462
4463 // Restore the memory image of control word to original value
Evan Chengc0f64ff2006-11-27 23:37:22 +00004464 addFrameReference(BuildMI(BB, TII->get(X86::MOV16mr)), CWFrameIdx)
4465 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +00004466
4467 // Get the X86 opcode to use.
4468 unsigned Opc;
4469 switch (MI->getOpcode()) {
4470 default: assert(0 && "illegal opcode!");
Dale Johannesen849f2142007-07-03 00:53:03 +00004471 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::FpIST16m32; break;
4472 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::FpIST32m32; break;
4473 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::FpIST64m32; break;
4474 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::FpIST16m64; break;
4475 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::FpIST32m64; break;
4476 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::FpIST64m64; break;
Evan Cheng60c07e12006-07-05 22:17:51 +00004477 }
4478
4479 X86AddressMode AM;
4480 MachineOperand &Op = MI->getOperand(0);
4481 if (Op.isRegister()) {
4482 AM.BaseType = X86AddressMode::RegBase;
4483 AM.Base.Reg = Op.getReg();
4484 } else {
4485 AM.BaseType = X86AddressMode::FrameIndexBase;
4486 AM.Base.FrameIndex = Op.getFrameIndex();
4487 }
4488 Op = MI->getOperand(1);
4489 if (Op.isImmediate())
Chris Lattner7fbe9722006-10-20 17:42:20 +00004490 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00004491 Op = MI->getOperand(2);
4492 if (Op.isImmediate())
Chris Lattner7fbe9722006-10-20 17:42:20 +00004493 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00004494 Op = MI->getOperand(3);
4495 if (Op.isGlobalAddress()) {
4496 AM.GV = Op.getGlobal();
4497 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +00004498 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +00004499 }
Evan Chengc0f64ff2006-11-27 23:37:22 +00004500 addFullAddress(BuildMI(BB, TII->get(Opc)), AM)
4501 .addReg(MI->getOperand(4).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +00004502
4503 // Reload the original control word now.
Evan Chengc0f64ff2006-11-27 23:37:22 +00004504 addFrameReference(BuildMI(BB, TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00004505
4506 delete MI; // The pseudo instruction is gone now.
4507 return BB;
4508 }
4509 }
4510}
4511
4512//===----------------------------------------------------------------------===//
4513// X86 Optimization Hooks
4514//===----------------------------------------------------------------------===//
4515
Nate Begeman368e18d2006-02-16 21:11:51 +00004516void X86TargetLowering::computeMaskedBitsForTargetNode(const SDOperand Op,
4517 uint64_t Mask,
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004518 uint64_t &KnownZero,
Nate Begeman368e18d2006-02-16 21:11:51 +00004519 uint64_t &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +00004520 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +00004521 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +00004522 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +00004523 assert((Opc >= ISD::BUILTIN_OP_END ||
4524 Opc == ISD::INTRINSIC_WO_CHAIN ||
4525 Opc == ISD::INTRINSIC_W_CHAIN ||
4526 Opc == ISD::INTRINSIC_VOID) &&
4527 "Should use MaskedValueIsZero if you don't know whether Op"
4528 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +00004529
Evan Cheng865f0602006-04-05 06:11:20 +00004530 KnownZero = KnownOne = 0; // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +00004531 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +00004532 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004533 case X86ISD::SETCC:
Nate Begeman368e18d2006-02-16 21:11:51 +00004534 KnownZero |= (MVT::getIntVTBitMask(Op.getValueType()) ^ 1ULL);
4535 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +00004536 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +00004537}
Chris Lattner259e97c2006-01-31 19:43:35 +00004538
Evan Cheng206ee9d2006-07-07 08:33:52 +00004539/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4540/// element of the result of the vector shuffle.
4541static SDOperand getShuffleScalarElt(SDNode *N, unsigned i, SelectionDAG &DAG) {
4542 MVT::ValueType VT = N->getValueType(0);
4543 SDOperand PermMask = N->getOperand(2);
4544 unsigned NumElems = PermMask.getNumOperands();
4545 SDOperand V = (i < NumElems) ? N->getOperand(0) : N->getOperand(1);
4546 i %= NumElems;
4547 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4548 return (i == 0)
Dan Gohman51eaa862007-06-14 22:58:02 +00004549 ? V.getOperand(0) : DAG.getNode(ISD::UNDEF, MVT::getVectorElementType(VT));
Evan Cheng206ee9d2006-07-07 08:33:52 +00004550 } else if (V.getOpcode() == ISD::VECTOR_SHUFFLE) {
4551 SDOperand Idx = PermMask.getOperand(i);
4552 if (Idx.getOpcode() == ISD::UNDEF)
Dan Gohman51eaa862007-06-14 22:58:02 +00004553 return DAG.getNode(ISD::UNDEF, MVT::getVectorElementType(VT));
Evan Cheng206ee9d2006-07-07 08:33:52 +00004554 return getShuffleScalarElt(V.Val,cast<ConstantSDNode>(Idx)->getValue(),DAG);
4555 }
4556 return SDOperand();
4557}
4558
4559/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
4560/// node is a GlobalAddress + an offset.
4561static bool isGAPlusOffset(SDNode *N, GlobalValue* &GA, int64_t &Offset) {
Evan Cheng0085a282006-11-30 21:55:46 +00004562 unsigned Opc = N->getOpcode();
Evan Cheng19f2ffc2006-12-05 04:01:03 +00004563 if (Opc == X86ISD::Wrapper) {
Evan Cheng206ee9d2006-07-07 08:33:52 +00004564 if (dyn_cast<GlobalAddressSDNode>(N->getOperand(0))) {
4565 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
4566 return true;
4567 }
Evan Cheng0085a282006-11-30 21:55:46 +00004568 } else if (Opc == ISD::ADD) {
Evan Cheng206ee9d2006-07-07 08:33:52 +00004569 SDOperand N1 = N->getOperand(0);
4570 SDOperand N2 = N->getOperand(1);
4571 if (isGAPlusOffset(N1.Val, GA, Offset)) {
4572 ConstantSDNode *V = dyn_cast<ConstantSDNode>(N2);
4573 if (V) {
4574 Offset += V->getSignExtended();
4575 return true;
4576 }
4577 } else if (isGAPlusOffset(N2.Val, GA, Offset)) {
4578 ConstantSDNode *V = dyn_cast<ConstantSDNode>(N1);
4579 if (V) {
4580 Offset += V->getSignExtended();
4581 return true;
4582 }
4583 }
4584 }
4585 return false;
4586}
4587
4588/// isConsecutiveLoad - Returns true if N is loading from an address of Base
4589/// + Dist * Size.
4590static bool isConsecutiveLoad(SDNode *N, SDNode *Base, int Dist, int Size,
4591 MachineFrameInfo *MFI) {
4592 if (N->getOperand(0).Val != Base->getOperand(0).Val)
4593 return false;
4594
4595 SDOperand Loc = N->getOperand(1);
4596 SDOperand BaseLoc = Base->getOperand(1);
4597 if (Loc.getOpcode() == ISD::FrameIndex) {
4598 if (BaseLoc.getOpcode() != ISD::FrameIndex)
4599 return false;
4600 int FI = dyn_cast<FrameIndexSDNode>(Loc)->getIndex();
4601 int BFI = dyn_cast<FrameIndexSDNode>(BaseLoc)->getIndex();
4602 int FS = MFI->getObjectSize(FI);
4603 int BFS = MFI->getObjectSize(BFI);
4604 if (FS != BFS || FS != Size) return false;
4605 return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Size);
4606 } else {
4607 GlobalValue *GV1 = NULL;
4608 GlobalValue *GV2 = NULL;
4609 int64_t Offset1 = 0;
4610 int64_t Offset2 = 0;
4611 bool isGA1 = isGAPlusOffset(Loc.Val, GV1, Offset1);
4612 bool isGA2 = isGAPlusOffset(BaseLoc.Val, GV2, Offset2);
4613 if (isGA1 && isGA2 && GV1 == GV2)
4614 return Offset1 == (Offset2 + Dist*Size);
4615 }
4616
4617 return false;
4618}
4619
Evan Cheng1e60c092006-07-10 21:37:44 +00004620static bool isBaseAlignment16(SDNode *Base, MachineFrameInfo *MFI,
4621 const X86Subtarget *Subtarget) {
Evan Cheng206ee9d2006-07-07 08:33:52 +00004622 GlobalValue *GV;
4623 int64_t Offset;
4624 if (isGAPlusOffset(Base, GV, Offset))
4625 return (GV->getAlignment() >= 16 && (Offset % 16) == 0);
4626 else {
4627 assert(Base->getOpcode() == ISD::FrameIndex && "Unexpected base node!");
4628 int BFI = dyn_cast<FrameIndexSDNode>(Base)->getIndex();
Evan Cheng1e60c092006-07-10 21:37:44 +00004629 if (BFI < 0)
4630 // Fixed objects do not specify alignment, however the offsets are known.
4631 return ((Subtarget->getStackAlignment() % 16) == 0 &&
4632 (MFI->getObjectOffset(BFI) % 16) == 0);
4633 else
4634 return MFI->getObjectAlignment(BFI) >= 16;
Evan Cheng206ee9d2006-07-07 08:33:52 +00004635 }
4636 return false;
4637}
4638
4639
4640/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
4641/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
4642/// if the load addresses are consecutive, non-overlapping, and in the right
4643/// order.
Evan Cheng1e60c092006-07-10 21:37:44 +00004644static SDOperand PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
4645 const X86Subtarget *Subtarget) {
Evan Cheng206ee9d2006-07-07 08:33:52 +00004646 MachineFunction &MF = DAG.getMachineFunction();
4647 MachineFrameInfo *MFI = MF.getFrameInfo();
4648 MVT::ValueType VT = N->getValueType(0);
Dan Gohman51eaa862007-06-14 22:58:02 +00004649 MVT::ValueType EVT = MVT::getVectorElementType(VT);
Evan Cheng206ee9d2006-07-07 08:33:52 +00004650 SDOperand PermMask = N->getOperand(2);
4651 int NumElems = (int)PermMask.getNumOperands();
4652 SDNode *Base = NULL;
4653 for (int i = 0; i < NumElems; ++i) {
4654 SDOperand Idx = PermMask.getOperand(i);
4655 if (Idx.getOpcode() == ISD::UNDEF) {
4656 if (!Base) return SDOperand();
4657 } else {
4658 SDOperand Arg =
4659 getShuffleScalarElt(N, cast<ConstantSDNode>(Idx)->getValue(), DAG);
Evan Cheng466685d2006-10-09 20:57:25 +00004660 if (!Arg.Val || !ISD::isNON_EXTLoad(Arg.Val))
Evan Cheng206ee9d2006-07-07 08:33:52 +00004661 return SDOperand();
4662 if (!Base)
4663 Base = Arg.Val;
4664 else if (!isConsecutiveLoad(Arg.Val, Base,
4665 i, MVT::getSizeInBits(EVT)/8,MFI))
4666 return SDOperand();
4667 }
4668 }
4669
Evan Cheng1e60c092006-07-10 21:37:44 +00004670 bool isAlign16 = isBaseAlignment16(Base->getOperand(1).Val, MFI, Subtarget);
Evan Cheng466685d2006-10-09 20:57:25 +00004671 if (isAlign16) {
4672 LoadSDNode *LD = cast<LoadSDNode>(Base);
4673 return DAG.getLoad(VT, LD->getChain(), LD->getBasePtr(), LD->getSrcValue(),
4674 LD->getSrcValueOffset());
4675 } else {
Evan Cheng206ee9d2006-07-07 08:33:52 +00004676 // Just use movups, it's shorter.
Chris Lattnerd96d0722007-02-25 06:40:16 +00004677 SDVTList Tys = DAG.getVTList(MVT::v4f32, MVT::Other);
Evan Cheng64a752f2006-08-11 09:08:15 +00004678 SmallVector<SDOperand, 3> Ops;
4679 Ops.push_back(Base->getOperand(0));
4680 Ops.push_back(Base->getOperand(1));
4681 Ops.push_back(Base->getOperand(2));
Evan Cheng206ee9d2006-07-07 08:33:52 +00004682 return DAG.getNode(ISD::BIT_CONVERT, VT,
Evan Cheng64a752f2006-08-11 09:08:15 +00004683 DAG.getNode(X86ISD::LOAD_UA, Tys, &Ops[0], Ops.size()));
Evan Cheng311ace02006-08-11 07:35:45 +00004684 }
Evan Cheng206ee9d2006-07-07 08:33:52 +00004685}
4686
Chris Lattner83e6c992006-10-04 06:57:07 +00004687/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
4688static SDOperand PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
4689 const X86Subtarget *Subtarget) {
4690 SDOperand Cond = N->getOperand(0);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004691
Chris Lattner83e6c992006-10-04 06:57:07 +00004692 // If we have SSE[12] support, try to form min/max nodes.
4693 if (Subtarget->hasSSE2() &&
4694 (N->getValueType(0) == MVT::f32 || N->getValueType(0) == MVT::f64)) {
4695 if (Cond.getOpcode() == ISD::SETCC) {
4696 // Get the LHS/RHS of the select.
4697 SDOperand LHS = N->getOperand(1);
4698 SDOperand RHS = N->getOperand(2);
4699 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004700
Evan Cheng8ca29322006-11-10 21:43:37 +00004701 unsigned Opcode = 0;
Chris Lattner83e6c992006-10-04 06:57:07 +00004702 if (LHS == Cond.getOperand(0) && RHS == Cond.getOperand(1)) {
Chris Lattner1907a7b2006-10-05 04:11:26 +00004703 switch (CC) {
4704 default: break;
4705 case ISD::SETOLE: // (X <= Y) ? X : Y -> min
4706 case ISD::SETULE:
4707 case ISD::SETLE:
4708 if (!UnsafeFPMath) break;
4709 // FALL THROUGH.
4710 case ISD::SETOLT: // (X olt/lt Y) ? X : Y -> min
4711 case ISD::SETLT:
Evan Cheng8ca29322006-11-10 21:43:37 +00004712 Opcode = X86ISD::FMIN;
Chris Lattner1907a7b2006-10-05 04:11:26 +00004713 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004714
Chris Lattner1907a7b2006-10-05 04:11:26 +00004715 case ISD::SETOGT: // (X > Y) ? X : Y -> max
4716 case ISD::SETUGT:
4717 case ISD::SETGT:
4718 if (!UnsafeFPMath) break;
4719 // FALL THROUGH.
4720 case ISD::SETUGE: // (X uge/ge Y) ? X : Y -> max
4721 case ISD::SETGE:
Evan Cheng8ca29322006-11-10 21:43:37 +00004722 Opcode = X86ISD::FMAX;
Chris Lattner1907a7b2006-10-05 04:11:26 +00004723 break;
4724 }
Chris Lattner83e6c992006-10-04 06:57:07 +00004725 } else if (LHS == Cond.getOperand(1) && RHS == Cond.getOperand(0)) {
Chris Lattner1907a7b2006-10-05 04:11:26 +00004726 switch (CC) {
4727 default: break;
4728 case ISD::SETOGT: // (X > Y) ? Y : X -> min
4729 case ISD::SETUGT:
4730 case ISD::SETGT:
4731 if (!UnsafeFPMath) break;
4732 // FALL THROUGH.
4733 case ISD::SETUGE: // (X uge/ge Y) ? Y : X -> min
4734 case ISD::SETGE:
Evan Cheng8ca29322006-11-10 21:43:37 +00004735 Opcode = X86ISD::FMIN;
Chris Lattner1907a7b2006-10-05 04:11:26 +00004736 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004737
Chris Lattner1907a7b2006-10-05 04:11:26 +00004738 case ISD::SETOLE: // (X <= Y) ? Y : X -> max
4739 case ISD::SETULE:
4740 case ISD::SETLE:
4741 if (!UnsafeFPMath) break;
4742 // FALL THROUGH.
4743 case ISD::SETOLT: // (X olt/lt Y) ? Y : X -> max
4744 case ISD::SETLT:
Evan Cheng8ca29322006-11-10 21:43:37 +00004745 Opcode = X86ISD::FMAX;
Chris Lattner1907a7b2006-10-05 04:11:26 +00004746 break;
4747 }
Chris Lattner83e6c992006-10-04 06:57:07 +00004748 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004749
Evan Cheng8ca29322006-11-10 21:43:37 +00004750 if (Opcode)
4751 return DAG.getNode(Opcode, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +00004752 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004753
Chris Lattner83e6c992006-10-04 06:57:07 +00004754 }
4755
4756 return SDOperand();
4757}
4758
4759
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004760SDOperand X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng206ee9d2006-07-07 08:33:52 +00004761 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +00004762 SelectionDAG &DAG = DCI.DAG;
4763 switch (N->getOpcode()) {
4764 default: break;
4765 case ISD::VECTOR_SHUFFLE:
Evan Cheng1e60c092006-07-10 21:37:44 +00004766 return PerformShuffleCombine(N, DAG, Subtarget);
Chris Lattner83e6c992006-10-04 06:57:07 +00004767 case ISD::SELECT:
4768 return PerformSELECTCombine(N, DAG, Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +00004769 }
4770
4771 return SDOperand();
4772}
4773
Evan Cheng60c07e12006-07-05 22:17:51 +00004774//===----------------------------------------------------------------------===//
4775// X86 Inline Assembly Support
4776//===----------------------------------------------------------------------===//
4777
Chris Lattnerf4dff842006-07-11 02:54:03 +00004778/// getConstraintType - Given a constraint letter, return the type of
4779/// constraint it is for this target.
4780X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +00004781X86TargetLowering::getConstraintType(const std::string &Constraint) const {
4782 if (Constraint.size() == 1) {
4783 switch (Constraint[0]) {
4784 case 'A':
4785 case 'r':
4786 case 'R':
4787 case 'l':
4788 case 'q':
4789 case 'Q':
4790 case 'x':
4791 case 'Y':
4792 return C_RegisterClass;
4793 default:
4794 break;
4795 }
Chris Lattnerf4dff842006-07-11 02:54:03 +00004796 }
Chris Lattner4234f572007-03-25 02:14:49 +00004797 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +00004798}
4799
Chris Lattner22aaf1d2006-10-31 20:13:11 +00004800/// isOperandValidForConstraint - Return the specified operand (possibly
4801/// modified) if the specified SDOperand is valid for the specified target
4802/// constraint letter, otherwise return null.
4803SDOperand X86TargetLowering::
4804isOperandValidForConstraint(SDOperand Op, char Constraint, SelectionDAG &DAG) {
4805 switch (Constraint) {
4806 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +00004807 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +00004808 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
4809 if (C->getValue() <= 31)
Chris Lattner709fd412007-05-15 01:28:08 +00004810 return DAG.getTargetConstant(C->getValue(), Op.getValueType());
Devang Patel84f7fd22007-03-17 00:13:28 +00004811 }
Chris Lattner188b9fe2007-03-25 01:57:35 +00004812 return SDOperand(0,0);
4813 case 'N':
4814 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
4815 if (C->getValue() <= 255)
Chris Lattner709fd412007-05-15 01:28:08 +00004816 return DAG.getTargetConstant(C->getValue(), Op.getValueType());
Chris Lattner188b9fe2007-03-25 01:57:35 +00004817 }
4818 return SDOperand(0,0);
Chris Lattnerdc43a882007-05-03 16:52:29 +00004819 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +00004820 // Literal immediates are always ok.
Chris Lattner709fd412007-05-15 01:28:08 +00004821 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op))
4822 return DAG.getTargetConstant(CST->getValue(), Op.getValueType());
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004823
Chris Lattnerdc43a882007-05-03 16:52:29 +00004824 // If we are in non-pic codegen mode, we allow the address of a global (with
4825 // an optional displacement) to be used with 'i'.
4826 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
4827 int64_t Offset = 0;
4828
4829 // Match either (GA) or (GA+C)
4830 if (GA) {
4831 Offset = GA->getOffset();
4832 } else if (Op.getOpcode() == ISD::ADD) {
4833 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
4834 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
4835 if (C && GA) {
4836 Offset = GA->getOffset()+C->getValue();
4837 } else {
4838 C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
4839 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
4840 if (C && GA)
4841 Offset = GA->getOffset()+C->getValue();
4842 else
4843 C = 0, GA = 0;
4844 }
4845 }
4846
4847 if (GA) {
4848 // If addressing this global requires a load (e.g. in PIC mode), we can't
4849 // match.
4850 if (Subtarget->GVRequiresExtraLoad(GA->getGlobal(), getTargetMachine(),
4851 false))
Chris Lattner22aaf1d2006-10-31 20:13:11 +00004852 return SDOperand(0, 0);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004853
Chris Lattnerdc43a882007-05-03 16:52:29 +00004854 Op = DAG.getTargetGlobalAddress(GA->getGlobal(), GA->getValueType(0),
4855 Offset);
Chris Lattner22aaf1d2006-10-31 20:13:11 +00004856 return Op;
4857 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004858
Chris Lattner22aaf1d2006-10-31 20:13:11 +00004859 // Otherwise, not valid for this mode.
4860 return SDOperand(0, 0);
4861 }
Chris Lattnerdc43a882007-05-03 16:52:29 +00004862 }
Chris Lattner22aaf1d2006-10-31 20:13:11 +00004863 return TargetLowering::isOperandValidForConstraint(Op, Constraint, DAG);
4864}
4865
Chris Lattner259e97c2006-01-31 19:43:35 +00004866std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +00004867getRegClassForInlineAsmConstraint(const std::string &Constraint,
4868 MVT::ValueType VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +00004869 if (Constraint.size() == 1) {
4870 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +00004871 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +00004872 default: break; // Unknown constraint letter
4873 case 'A': // EAX/EDX
4874 if (VT == MVT::i32 || VT == MVT::i64)
4875 return make_vector<unsigned>(X86::EAX, X86::EDX, 0);
4876 break;
Chris Lattner259e97c2006-01-31 19:43:35 +00004877 case 'q': // Q_REGS (GENERAL_REGS in 64-bit mode)
4878 case 'Q': // Q_REGS
Chris Lattner80a7ecc2006-05-06 00:29:37 +00004879 if (VT == MVT::i32)
4880 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
4881 else if (VT == MVT::i16)
4882 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
4883 else if (VT == MVT::i8)
4884 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::DL, 0);
4885 break;
Chris Lattner259e97c2006-01-31 19:43:35 +00004886 }
4887 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004888
Chris Lattner1efa40f2006-02-22 00:56:39 +00004889 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +00004890}
Chris Lattnerf76d1802006-07-31 23:26:50 +00004891
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004892std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +00004893X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
4894 MVT::ValueType VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +00004895 // First, see if this is a constraint that directly corresponds to an LLVM
4896 // register class.
4897 if (Constraint.size() == 1) {
4898 // GCC Constraint Letters
4899 switch (Constraint[0]) {
4900 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +00004901 case 'r': // GENERAL_REGS
4902 case 'R': // LEGACY_REGS
4903 case 'l': // INDEX_REGS
4904 if (VT == MVT::i64 && Subtarget->is64Bit())
4905 return std::make_pair(0U, X86::GR64RegisterClass);
4906 if (VT == MVT::i32)
4907 return std::make_pair(0U, X86::GR32RegisterClass);
4908 else if (VT == MVT::i16)
4909 return std::make_pair(0U, X86::GR16RegisterClass);
4910 else if (VT == MVT::i8)
4911 return std::make_pair(0U, X86::GR8RegisterClass);
4912 break;
Chris Lattner6c284d72007-04-12 04:14:49 +00004913 case 'y': // MMX_REGS if MMX allowed.
4914 if (!Subtarget->hasMMX()) break;
4915 return std::make_pair(0U, X86::VR64RegisterClass);
4916 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +00004917 case 'Y': // SSE_REGS if SSE2 allowed
4918 if (!Subtarget->hasSSE2()) break;
4919 // FALL THROUGH.
4920 case 'x': // SSE_REGS if SSE1 allowed
4921 if (!Subtarget->hasSSE1()) break;
4922
4923 switch (VT) {
4924 default: break;
4925 // Scalar SSE types.
4926 case MVT::f32:
4927 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +00004928 return std::make_pair(0U, X86::FR32RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +00004929 case MVT::f64:
4930 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +00004931 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +00004932 // Vector types.
Chris Lattner0f65cad2007-04-09 05:49:22 +00004933 case MVT::v16i8:
4934 case MVT::v8i16:
4935 case MVT::v4i32:
4936 case MVT::v2i64:
4937 case MVT::v4f32:
4938 case MVT::v2f64:
4939 return std::make_pair(0U, X86::VR128RegisterClass);
4940 }
Chris Lattnerad043e82007-04-09 05:11:28 +00004941 break;
4942 }
4943 }
4944
Chris Lattnerf76d1802006-07-31 23:26:50 +00004945 // Use the default implementation in TargetLowering to convert the register
4946 // constraint into a member of a register class.
4947 std::pair<unsigned, const TargetRegisterClass*> Res;
4948 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +00004949
4950 // Not found as a standard register?
4951 if (Res.second == 0) {
4952 // GCC calls "st(0)" just plain "st".
4953 if (StringsEqualNoCase("{st}", Constraint)) {
4954 Res.first = X86::ST0;
4955 Res.second = X86::RSTRegisterClass;
4956 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004957
Chris Lattner1a60aa72006-10-31 19:42:44 +00004958 return Res;
4959 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004960
Chris Lattnerf76d1802006-07-31 23:26:50 +00004961 // Otherwise, check to see if this is a register class of the wrong value
4962 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
4963 // turn into {ax},{dx}.
4964 if (Res.second->hasType(VT))
4965 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004966
Chris Lattnerf76d1802006-07-31 23:26:50 +00004967 // All of the single-register GCC register classes map their values onto
4968 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
4969 // really want an 8-bit or 32-bit register, map to the appropriate register
4970 // class and return the appropriate register.
4971 if (Res.second != X86::GR16RegisterClass)
4972 return Res;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004973
Chris Lattnerf76d1802006-07-31 23:26:50 +00004974 if (VT == MVT::i8) {
4975 unsigned DestReg = 0;
4976 switch (Res.first) {
4977 default: break;
4978 case X86::AX: DestReg = X86::AL; break;
4979 case X86::DX: DestReg = X86::DL; break;
4980 case X86::CX: DestReg = X86::CL; break;
4981 case X86::BX: DestReg = X86::BL; break;
4982 }
4983 if (DestReg) {
4984 Res.first = DestReg;
4985 Res.second = Res.second = X86::GR8RegisterClass;
4986 }
4987 } else if (VT == MVT::i32) {
4988 unsigned DestReg = 0;
4989 switch (Res.first) {
4990 default: break;
4991 case X86::AX: DestReg = X86::EAX; break;
4992 case X86::DX: DestReg = X86::EDX; break;
4993 case X86::CX: DestReg = X86::ECX; break;
4994 case X86::BX: DestReg = X86::EBX; break;
4995 case X86::SI: DestReg = X86::ESI; break;
4996 case X86::DI: DestReg = X86::EDI; break;
4997 case X86::BP: DestReg = X86::EBP; break;
4998 case X86::SP: DestReg = X86::ESP; break;
4999 }
5000 if (DestReg) {
5001 Res.first = DestReg;
5002 Res.second = Res.second = X86::GR32RegisterClass;
5003 }
Evan Cheng25ab6902006-09-08 06:48:29 +00005004 } else if (VT == MVT::i64) {
5005 unsigned DestReg = 0;
5006 switch (Res.first) {
5007 default: break;
5008 case X86::AX: DestReg = X86::RAX; break;
5009 case X86::DX: DestReg = X86::RDX; break;
5010 case X86::CX: DestReg = X86::RCX; break;
5011 case X86::BX: DestReg = X86::RBX; break;
5012 case X86::SI: DestReg = X86::RSI; break;
5013 case X86::DI: DestReg = X86::RDI; break;
5014 case X86::BP: DestReg = X86::RBP; break;
5015 case X86::SP: DestReg = X86::RSP; break;
5016 }
5017 if (DestReg) {
5018 Res.first = DestReg;
5019 Res.second = Res.second = X86::GR64RegisterClass;
5020 }
Chris Lattnerf76d1802006-07-31 23:26:50 +00005021 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005022
Chris Lattnerf76d1802006-07-31 23:26:50 +00005023 return Res;
5024}