blob: 6a2f91fc66937859505409d4c50dc7732b8671f4 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- TargetLowering.cpp - Implement the TargetLowering class -----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This implements the TargetLowering class.
11//
12//===----------------------------------------------------------------------===//
13
Evan Chengbcd66442008-02-26 02:33:44 +000014#include "llvm/Target/TargetAsmInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000015#include "llvm/Target/TargetLowering.h"
Rafael Espindoladd867c72007-11-05 23:12:20 +000016#include "llvm/Target/TargetSubtarget.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000017#include "llvm/Target/TargetData.h"
18#include "llvm/Target/TargetMachine.h"
Dan Gohman1e57df32008-02-10 18:45:23 +000019#include "llvm/Target/TargetRegisterInfo.h"
Dan Gohmane8b391e2008-04-12 04:36:06 +000020#include "llvm/GlobalVariable.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021#include "llvm/DerivedTypes.h"
Evan Chengef7be082008-05-12 19:56:52 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023#include "llvm/CodeGen/SelectionDAG.h"
24#include "llvm/ADT/StringExtras.h"
Owen Anderson1636de92007-09-07 04:06:50 +000025#include "llvm/ADT/STLExtras.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000026#include "llvm/Support/MathExtras.h"
27using namespace llvm;
28
29/// InitLibcallNames - Set default libcall names.
30///
31static void InitLibcallNames(const char **Names) {
32 Names[RTLIB::SHL_I32] = "__ashlsi3";
33 Names[RTLIB::SHL_I64] = "__ashldi3";
Duncan Sands87833982008-07-11 16:52:29 +000034 Names[RTLIB::SHL_I128] = "__ashlti3";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000035 Names[RTLIB::SRL_I32] = "__lshrsi3";
36 Names[RTLIB::SRL_I64] = "__lshrdi3";
Duncan Sands87833982008-07-11 16:52:29 +000037 Names[RTLIB::SRL_I128] = "__lshrti3";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000038 Names[RTLIB::SRA_I32] = "__ashrsi3";
39 Names[RTLIB::SRA_I64] = "__ashrdi3";
Duncan Sands87833982008-07-11 16:52:29 +000040 Names[RTLIB::SRA_I128] = "__ashrti3";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041 Names[RTLIB::MUL_I32] = "__mulsi3";
42 Names[RTLIB::MUL_I64] = "__muldi3";
Duncan Sands05de150b2008-07-10 15:35:05 +000043 Names[RTLIB::MUL_I128] = "__multi3";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000044 Names[RTLIB::SDIV_I32] = "__divsi3";
45 Names[RTLIB::SDIV_I64] = "__divdi3";
Duncan Sands05de150b2008-07-10 15:35:05 +000046 Names[RTLIB::SDIV_I128] = "__divti3";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000047 Names[RTLIB::UDIV_I32] = "__udivsi3";
48 Names[RTLIB::UDIV_I64] = "__udivdi3";
Duncan Sands05de150b2008-07-10 15:35:05 +000049 Names[RTLIB::UDIV_I128] = "__udivti3";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050 Names[RTLIB::SREM_I32] = "__modsi3";
51 Names[RTLIB::SREM_I64] = "__moddi3";
Duncan Sands05de150b2008-07-10 15:35:05 +000052 Names[RTLIB::SREM_I128] = "__modti3";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053 Names[RTLIB::UREM_I32] = "__umodsi3";
54 Names[RTLIB::UREM_I64] = "__umoddi3";
Duncan Sands05de150b2008-07-10 15:35:05 +000055 Names[RTLIB::UREM_I128] = "__umodti3";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000056 Names[RTLIB::NEG_I32] = "__negsi2";
57 Names[RTLIB::NEG_I64] = "__negdi2";
58 Names[RTLIB::ADD_F32] = "__addsf3";
59 Names[RTLIB::ADD_F64] = "__adddf3";
Duncan Sands37a3f472008-01-10 10:28:30 +000060 Names[RTLIB::ADD_F80] = "__addxf3";
Dale Johannesenac77b272007-10-05 20:04:43 +000061 Names[RTLIB::ADD_PPCF128] = "__gcc_qadd";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062 Names[RTLIB::SUB_F32] = "__subsf3";
63 Names[RTLIB::SUB_F64] = "__subdf3";
Duncan Sands37a3f472008-01-10 10:28:30 +000064 Names[RTLIB::SUB_F80] = "__subxf3";
Dale Johannesenac77b272007-10-05 20:04:43 +000065 Names[RTLIB::SUB_PPCF128] = "__gcc_qsub";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000066 Names[RTLIB::MUL_F32] = "__mulsf3";
67 Names[RTLIB::MUL_F64] = "__muldf3";
Duncan Sands37a3f472008-01-10 10:28:30 +000068 Names[RTLIB::MUL_F80] = "__mulxf3";
Dale Johannesenac77b272007-10-05 20:04:43 +000069 Names[RTLIB::MUL_PPCF128] = "__gcc_qmul";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000070 Names[RTLIB::DIV_F32] = "__divsf3";
71 Names[RTLIB::DIV_F64] = "__divdf3";
Duncan Sands37a3f472008-01-10 10:28:30 +000072 Names[RTLIB::DIV_F80] = "__divxf3";
Dale Johannesenac77b272007-10-05 20:04:43 +000073 Names[RTLIB::DIV_PPCF128] = "__gcc_qdiv";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074 Names[RTLIB::REM_F32] = "fmodf";
75 Names[RTLIB::REM_F64] = "fmod";
Duncan Sands37a3f472008-01-10 10:28:30 +000076 Names[RTLIB::REM_F80] = "fmodl";
Dale Johannesenac77b272007-10-05 20:04:43 +000077 Names[RTLIB::REM_PPCF128] = "fmodl";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078 Names[RTLIB::POWI_F32] = "__powisf2";
79 Names[RTLIB::POWI_F64] = "__powidf2";
Dale Johannesenac77b272007-10-05 20:04:43 +000080 Names[RTLIB::POWI_F80] = "__powixf2";
81 Names[RTLIB::POWI_PPCF128] = "__powitf2";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000082 Names[RTLIB::SQRT_F32] = "sqrtf";
83 Names[RTLIB::SQRT_F64] = "sqrt";
Dale Johannesenac77b272007-10-05 20:04:43 +000084 Names[RTLIB::SQRT_F80] = "sqrtl";
85 Names[RTLIB::SQRT_PPCF128] = "sqrtl";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000086 Names[RTLIB::SIN_F32] = "sinf";
87 Names[RTLIB::SIN_F64] = "sin";
Duncan Sands37a3f472008-01-10 10:28:30 +000088 Names[RTLIB::SIN_F80] = "sinl";
89 Names[RTLIB::SIN_PPCF128] = "sinl";
Dan Gohmanf17a25c2007-07-18 16:29:46 +000090 Names[RTLIB::COS_F32] = "cosf";
91 Names[RTLIB::COS_F64] = "cos";
Duncan Sands37a3f472008-01-10 10:28:30 +000092 Names[RTLIB::COS_F80] = "cosl";
93 Names[RTLIB::COS_PPCF128] = "cosl";
Dan Gohmanfe678632007-10-11 23:09:10 +000094 Names[RTLIB::POW_F32] = "powf";
95 Names[RTLIB::POW_F64] = "pow";
96 Names[RTLIB::POW_F80] = "powl";
97 Names[RTLIB::POW_PPCF128] = "powl";
Dan Gohmanb2158232008-08-21 18:38:14 +000098 Names[RTLIB::CEIL_F32] = "ceilf";
99 Names[RTLIB::CEIL_F64] = "ceil";
100 Names[RTLIB::CEIL_F80] = "ceill";
101 Names[RTLIB::CEIL_PPCF128] = "ceill";
102 Names[RTLIB::TRUNC_F32] = "truncf";
103 Names[RTLIB::TRUNC_F64] = "trunc";
104 Names[RTLIB::TRUNC_F80] = "truncl";
105 Names[RTLIB::TRUNC_PPCF128] = "truncl";
106 Names[RTLIB::RINT_F32] = "rintf";
107 Names[RTLIB::RINT_F64] = "rint";
108 Names[RTLIB::RINT_F80] = "rintl";
109 Names[RTLIB::RINT_PPCF128] = "rintl";
110 Names[RTLIB::NEARBYINT_F32] = "nearbyintf";
111 Names[RTLIB::NEARBYINT_F64] = "nearbyint";
112 Names[RTLIB::NEARBYINT_F80] = "nearbyintl";
113 Names[RTLIB::NEARBYINT_PPCF128] = "nearbyintl";
114 Names[RTLIB::FLOOR_F32] = "floorf";
115 Names[RTLIB::FLOOR_F64] = "floor";
116 Names[RTLIB::FLOOR_F80] = "floorl";
117 Names[RTLIB::FLOOR_PPCF128] = "floorl";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000118 Names[RTLIB::FPEXT_F32_F64] = "__extendsfdf2";
119 Names[RTLIB::FPROUND_F64_F32] = "__truncdfsf2";
Bruno Cardoso Lopesb1f11b52008-08-07 19:01:24 +0000120 Names[RTLIB::FPROUND_F80_F32] = "__truncxfsf2";
121 Names[RTLIB::FPROUND_PPCF128_F32] = "__trunctfsf2";
122 Names[RTLIB::FPROUND_F80_F64] = "__truncxfdf2";
123 Names[RTLIB::FPROUND_PPCF128_F64] = "__trunctfdf2";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000124 Names[RTLIB::FPTOSINT_F32_I32] = "__fixsfsi";
125 Names[RTLIB::FPTOSINT_F32_I64] = "__fixsfdi";
Dan Gohmanec51f642008-03-10 23:03:31 +0000126 Names[RTLIB::FPTOSINT_F32_I128] = "__fixsfti";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127 Names[RTLIB::FPTOSINT_F64_I32] = "__fixdfsi";
128 Names[RTLIB::FPTOSINT_F64_I64] = "__fixdfdi";
Dan Gohmanec51f642008-03-10 23:03:31 +0000129 Names[RTLIB::FPTOSINT_F64_I128] = "__fixdfti";
Duncan Sandsd27dafe2008-07-10 15:33:02 +0000130 Names[RTLIB::FPTOSINT_F80_I32] = "__fixxfsi";
Dale Johannesenac77b272007-10-05 20:04:43 +0000131 Names[RTLIB::FPTOSINT_F80_I64] = "__fixxfdi";
Dan Gohmanec51f642008-03-10 23:03:31 +0000132 Names[RTLIB::FPTOSINT_F80_I128] = "__fixxfti";
Duncan Sands1568af82008-06-25 20:24:48 +0000133 Names[RTLIB::FPTOSINT_PPCF128_I32] = "__fixtfsi";
Dale Johannesenac77b272007-10-05 20:04:43 +0000134 Names[RTLIB::FPTOSINT_PPCF128_I64] = "__fixtfdi";
Dan Gohmanec51f642008-03-10 23:03:31 +0000135 Names[RTLIB::FPTOSINT_PPCF128_I128] = "__fixtfti";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000136 Names[RTLIB::FPTOUINT_F32_I32] = "__fixunssfsi";
137 Names[RTLIB::FPTOUINT_F32_I64] = "__fixunssfdi";
Dan Gohmanec51f642008-03-10 23:03:31 +0000138 Names[RTLIB::FPTOUINT_F32_I128] = "__fixunssfti";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000139 Names[RTLIB::FPTOUINT_F64_I32] = "__fixunsdfsi";
140 Names[RTLIB::FPTOUINT_F64_I64] = "__fixunsdfdi";
Dan Gohmanec51f642008-03-10 23:03:31 +0000141 Names[RTLIB::FPTOUINT_F64_I128] = "__fixunsdfti";
Dale Johannesenac77b272007-10-05 20:04:43 +0000142 Names[RTLIB::FPTOUINT_F80_I32] = "__fixunsxfsi";
143 Names[RTLIB::FPTOUINT_F80_I64] = "__fixunsxfdi";
Dan Gohmanec51f642008-03-10 23:03:31 +0000144 Names[RTLIB::FPTOUINT_F80_I128] = "__fixunsxfti";
Duncan Sands1568af82008-06-25 20:24:48 +0000145 Names[RTLIB::FPTOUINT_PPCF128_I32] = "__fixunstfsi";
Dale Johannesenac77b272007-10-05 20:04:43 +0000146 Names[RTLIB::FPTOUINT_PPCF128_I64] = "__fixunstfdi";
Dan Gohmanec51f642008-03-10 23:03:31 +0000147 Names[RTLIB::FPTOUINT_PPCF128_I128] = "__fixunstfti";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148 Names[RTLIB::SINTTOFP_I32_F32] = "__floatsisf";
149 Names[RTLIB::SINTTOFP_I32_F64] = "__floatsidf";
Duncan Sands3f714972008-07-11 16:57:02 +0000150 Names[RTLIB::SINTTOFP_I32_F80] = "__floatsixf";
151 Names[RTLIB::SINTTOFP_I32_PPCF128] = "__floatsitf";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000152 Names[RTLIB::SINTTOFP_I64_F32] = "__floatdisf";
153 Names[RTLIB::SINTTOFP_I64_F64] = "__floatdidf";
Dale Johannesenac77b272007-10-05 20:04:43 +0000154 Names[RTLIB::SINTTOFP_I64_F80] = "__floatdixf";
155 Names[RTLIB::SINTTOFP_I64_PPCF128] = "__floatditf";
Dan Gohmanc98645c2008-03-05 01:08:17 +0000156 Names[RTLIB::SINTTOFP_I128_F32] = "__floattisf";
157 Names[RTLIB::SINTTOFP_I128_F64] = "__floattidf";
158 Names[RTLIB::SINTTOFP_I128_F80] = "__floattixf";
159 Names[RTLIB::SINTTOFP_I128_PPCF128] = "__floattitf";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000160 Names[RTLIB::UINTTOFP_I32_F32] = "__floatunsisf";
161 Names[RTLIB::UINTTOFP_I32_F64] = "__floatunsidf";
Duncan Sands25df46a2008-07-11 17:00:14 +0000162 Names[RTLIB::UINTTOFP_I32_F80] = "__floatunsixf";
163 Names[RTLIB::UINTTOFP_I32_PPCF128] = "__floatunsitf";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000164 Names[RTLIB::UINTTOFP_I64_F32] = "__floatundisf";
165 Names[RTLIB::UINTTOFP_I64_F64] = "__floatundidf";
Duncan Sands25df46a2008-07-11 17:00:14 +0000166 Names[RTLIB::UINTTOFP_I64_F80] = "__floatundixf";
167 Names[RTLIB::UINTTOFP_I64_PPCF128] = "__floatunditf";
168 Names[RTLIB::UINTTOFP_I128_F32] = "__floatuntisf";
169 Names[RTLIB::UINTTOFP_I128_F64] = "__floatuntidf";
170 Names[RTLIB::UINTTOFP_I128_F80] = "__floatuntixf";
171 Names[RTLIB::UINTTOFP_I128_PPCF128] = "__floatuntitf";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000172 Names[RTLIB::OEQ_F32] = "__eqsf2";
173 Names[RTLIB::OEQ_F64] = "__eqdf2";
174 Names[RTLIB::UNE_F32] = "__nesf2";
175 Names[RTLIB::UNE_F64] = "__nedf2";
176 Names[RTLIB::OGE_F32] = "__gesf2";
177 Names[RTLIB::OGE_F64] = "__gedf2";
178 Names[RTLIB::OLT_F32] = "__ltsf2";
179 Names[RTLIB::OLT_F64] = "__ltdf2";
180 Names[RTLIB::OLE_F32] = "__lesf2";
181 Names[RTLIB::OLE_F64] = "__ledf2";
182 Names[RTLIB::OGT_F32] = "__gtsf2";
183 Names[RTLIB::OGT_F64] = "__gtdf2";
184 Names[RTLIB::UO_F32] = "__unordsf2";
185 Names[RTLIB::UO_F64] = "__unorddf2";
186 Names[RTLIB::O_F32] = "__unordsf2";
187 Names[RTLIB::O_F64] = "__unorddf2";
188}
189
Duncan Sandsf68dffb2008-07-17 02:36:29 +0000190/// getFPEXT - Return the FPEXT_*_* value for the given types, or
191/// UNKNOWN_LIBCALL if there is none.
192RTLIB::Libcall RTLIB::getFPEXT(MVT OpVT, MVT RetVT) {
193 if (OpVT == MVT::f32) {
194 if (RetVT == MVT::f64)
195 return FPEXT_F32_F64;
196 }
197 return UNKNOWN_LIBCALL;
198}
199
200/// getFPROUND - Return the FPROUND_*_* value for the given types, or
201/// UNKNOWN_LIBCALL if there is none.
202RTLIB::Libcall RTLIB::getFPROUND(MVT OpVT, MVT RetVT) {
Bruno Cardoso Lopesb1f11b52008-08-07 19:01:24 +0000203 if (RetVT == MVT::f32) {
204 if (OpVT == MVT::f64)
Duncan Sandsf68dffb2008-07-17 02:36:29 +0000205 return FPROUND_F64_F32;
Bruno Cardoso Lopesb1f11b52008-08-07 19:01:24 +0000206 if (OpVT == MVT::f80)
207 return FPROUND_F80_F32;
208 if (OpVT == MVT::ppcf128)
209 return FPROUND_PPCF128_F32;
210 } else if (RetVT == MVT::f64) {
211 if (OpVT == MVT::f80)
212 return FPROUND_F80_F64;
213 if (OpVT == MVT::ppcf128)
214 return FPROUND_PPCF128_F64;
Duncan Sandsf68dffb2008-07-17 02:36:29 +0000215 }
216 return UNKNOWN_LIBCALL;
217}
218
219/// getFPTOSINT - Return the FPTOSINT_*_* value for the given types, or
220/// UNKNOWN_LIBCALL if there is none.
221RTLIB::Libcall RTLIB::getFPTOSINT(MVT OpVT, MVT RetVT) {
222 if (OpVT == MVT::f32) {
223 if (RetVT == MVT::i32)
224 return FPTOSINT_F32_I32;
225 if (RetVT == MVT::i64)
226 return FPTOSINT_F32_I64;
227 if (RetVT == MVT::i128)
228 return FPTOSINT_F32_I128;
229 } else if (OpVT == MVT::f64) {
230 if (RetVT == MVT::i32)
231 return FPTOSINT_F64_I32;
232 if (RetVT == MVT::i64)
233 return FPTOSINT_F64_I64;
234 if (RetVT == MVT::i128)
235 return FPTOSINT_F64_I128;
236 } else if (OpVT == MVT::f80) {
237 if (RetVT == MVT::i32)
238 return FPTOSINT_F80_I32;
239 if (RetVT == MVT::i64)
240 return FPTOSINT_F80_I64;
241 if (RetVT == MVT::i128)
242 return FPTOSINT_F80_I128;
243 } else if (OpVT == MVT::ppcf128) {
244 if (RetVT == MVT::i32)
245 return FPTOSINT_PPCF128_I32;
246 if (RetVT == MVT::i64)
247 return FPTOSINT_PPCF128_I64;
248 if (RetVT == MVT::i128)
249 return FPTOSINT_PPCF128_I128;
250 }
251 return UNKNOWN_LIBCALL;
252}
253
254/// getFPTOUINT - Return the FPTOUINT_*_* value for the given types, or
255/// UNKNOWN_LIBCALL if there is none.
256RTLIB::Libcall RTLIB::getFPTOUINT(MVT OpVT, MVT RetVT) {
257 if (OpVT == MVT::f32) {
258 if (RetVT == MVT::i32)
259 return FPTOUINT_F32_I32;
260 if (RetVT == MVT::i64)
261 return FPTOUINT_F32_I64;
262 if (RetVT == MVT::i128)
263 return FPTOUINT_F32_I128;
264 } else if (OpVT == MVT::f64) {
265 if (RetVT == MVT::i32)
266 return FPTOUINT_F64_I32;
267 if (RetVT == MVT::i64)
268 return FPTOUINT_F64_I64;
269 if (RetVT == MVT::i128)
270 return FPTOUINT_F64_I128;
271 } else if (OpVT == MVT::f80) {
272 if (RetVT == MVT::i32)
273 return FPTOUINT_F80_I32;
274 if (RetVT == MVT::i64)
275 return FPTOUINT_F80_I64;
276 if (RetVT == MVT::i128)
277 return FPTOUINT_F80_I128;
278 } else if (OpVT == MVT::ppcf128) {
279 if (RetVT == MVT::i32)
280 return FPTOUINT_PPCF128_I32;
281 if (RetVT == MVT::i64)
282 return FPTOUINT_PPCF128_I64;
283 if (RetVT == MVT::i128)
284 return FPTOUINT_PPCF128_I128;
285 }
286 return UNKNOWN_LIBCALL;
287}
288
289/// getSINTTOFP - Return the SINTTOFP_*_* value for the given types, or
290/// UNKNOWN_LIBCALL if there is none.
291RTLIB::Libcall RTLIB::getSINTTOFP(MVT OpVT, MVT RetVT) {
292 if (OpVT == MVT::i32) {
293 if (RetVT == MVT::f32)
294 return SINTTOFP_I32_F32;
295 else if (RetVT == MVT::f64)
296 return SINTTOFP_I32_F64;
297 else if (RetVT == MVT::f80)
298 return SINTTOFP_I32_F80;
299 else if (RetVT == MVT::ppcf128)
300 return SINTTOFP_I32_PPCF128;
301 } else if (OpVT == MVT::i64) {
302 if (RetVT == MVT::f32)
303 return SINTTOFP_I64_F32;
304 else if (RetVT == MVT::f64)
305 return SINTTOFP_I64_F64;
306 else if (RetVT == MVT::f80)
307 return SINTTOFP_I64_F80;
308 else if (RetVT == MVT::ppcf128)
309 return SINTTOFP_I64_PPCF128;
310 } else if (OpVT == MVT::i128) {
311 if (RetVT == MVT::f32)
312 return SINTTOFP_I128_F32;
313 else if (RetVT == MVT::f64)
314 return SINTTOFP_I128_F64;
315 else if (RetVT == MVT::f80)
316 return SINTTOFP_I128_F80;
317 else if (RetVT == MVT::ppcf128)
318 return SINTTOFP_I128_PPCF128;
319 }
320 return UNKNOWN_LIBCALL;
321}
322
323/// getUINTTOFP - Return the UINTTOFP_*_* value for the given types, or
324/// UNKNOWN_LIBCALL if there is none.
325RTLIB::Libcall RTLIB::getUINTTOFP(MVT OpVT, MVT RetVT) {
326 if (OpVT == MVT::i32) {
327 if (RetVT == MVT::f32)
328 return UINTTOFP_I32_F32;
329 else if (RetVT == MVT::f64)
330 return UINTTOFP_I32_F64;
331 else if (RetVT == MVT::f80)
332 return UINTTOFP_I32_F80;
333 else if (RetVT == MVT::ppcf128)
334 return UINTTOFP_I32_PPCF128;
335 } else if (OpVT == MVT::i64) {
336 if (RetVT == MVT::f32)
337 return UINTTOFP_I64_F32;
338 else if (RetVT == MVT::f64)
339 return UINTTOFP_I64_F64;
340 else if (RetVT == MVT::f80)
341 return UINTTOFP_I64_F80;
342 else if (RetVT == MVT::ppcf128)
343 return UINTTOFP_I64_PPCF128;
344 } else if (OpVT == MVT::i128) {
345 if (RetVT == MVT::f32)
346 return UINTTOFP_I128_F32;
347 else if (RetVT == MVT::f64)
348 return UINTTOFP_I128_F64;
349 else if (RetVT == MVT::f80)
350 return UINTTOFP_I128_F80;
351 else if (RetVT == MVT::ppcf128)
352 return UINTTOFP_I128_PPCF128;
353 }
354 return UNKNOWN_LIBCALL;
355}
356
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000357/// InitCmpLibcallCCs - Set default comparison libcall CC.
358///
359static void InitCmpLibcallCCs(ISD::CondCode *CCs) {
360 memset(CCs, ISD::SETCC_INVALID, sizeof(ISD::CondCode)*RTLIB::UNKNOWN_LIBCALL);
361 CCs[RTLIB::OEQ_F32] = ISD::SETEQ;
362 CCs[RTLIB::OEQ_F64] = ISD::SETEQ;
363 CCs[RTLIB::UNE_F32] = ISD::SETNE;
364 CCs[RTLIB::UNE_F64] = ISD::SETNE;
365 CCs[RTLIB::OGE_F32] = ISD::SETGE;
366 CCs[RTLIB::OGE_F64] = ISD::SETGE;
367 CCs[RTLIB::OLT_F32] = ISD::SETLT;
368 CCs[RTLIB::OLT_F64] = ISD::SETLT;
369 CCs[RTLIB::OLE_F32] = ISD::SETLE;
370 CCs[RTLIB::OLE_F64] = ISD::SETLE;
371 CCs[RTLIB::OGT_F32] = ISD::SETGT;
372 CCs[RTLIB::OGT_F64] = ISD::SETGT;
373 CCs[RTLIB::UO_F32] = ISD::SETNE;
374 CCs[RTLIB::UO_F64] = ISD::SETNE;
375 CCs[RTLIB::O_F32] = ISD::SETEQ;
376 CCs[RTLIB::O_F64] = ISD::SETEQ;
377}
378
379TargetLowering::TargetLowering(TargetMachine &tm)
380 : TM(tm), TD(TM.getTargetData()) {
Mon P Wang078a62d2008-05-05 19:05:59 +0000381 assert(ISD::BUILTIN_OP_END <= OpActionsCapacity &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000382 "Fixed size array in TargetLowering is not large enough!");
383 // All operations default to being supported.
384 memset(OpActions, 0, sizeof(OpActions));
385 memset(LoadXActions, 0, sizeof(LoadXActions));
Chris Lattner3bc08502008-01-17 19:59:44 +0000386 memset(TruncStoreActions, 0, sizeof(TruncStoreActions));
Chris Lattner0d551f32008-01-18 19:36:20 +0000387 memset(IndexedModeActions, 0, sizeof(IndexedModeActions));
388 memset(ConvertActions, 0, sizeof(ConvertActions));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000389
Chris Lattnerdb5f7ff2007-12-22 20:47:56 +0000390 // Set default actions for various operations.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000391 for (unsigned VT = 0; VT != (unsigned)MVT::LAST_VALUETYPE; ++VT) {
Chris Lattnerdb5f7ff2007-12-22 20:47:56 +0000392 // Default all indexed load / store to expand.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000393 for (unsigned IM = (unsigned)ISD::PRE_INC;
394 IM != (unsigned)ISD::LAST_INDEXED_MODE; ++IM) {
Duncan Sands92c43912008-06-06 12:08:01 +0000395 setIndexedLoadAction(IM, (MVT::SimpleValueType)VT, Expand);
396 setIndexedStoreAction(IM, (MVT::SimpleValueType)VT, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000397 }
Chris Lattnerdb5f7ff2007-12-22 20:47:56 +0000398
399 // These operations default to expand.
Duncan Sands92c43912008-06-06 12:08:01 +0000400 setOperationAction(ISD::FGETSIGN, (MVT::SimpleValueType)VT, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000401 }
Evan Cheng8d51ab32008-03-10 19:38:10 +0000402
403 // Most targets ignore the @llvm.prefetch intrinsic.
404 setOperationAction(ISD::PREFETCH, MVT::Other, Expand);
Nate Begemane2ba64f2008-02-14 08:57:00 +0000405
406 // ConstantFP nodes default to expand. Targets can either change this to
407 // Legal, in which case all fp constants are legal, or use addLegalFPImmediate
408 // to optimize expansions for certain constants.
409 setOperationAction(ISD::ConstantFP, MVT::f32, Expand);
410 setOperationAction(ISD::ConstantFP, MVT::f64, Expand);
411 setOperationAction(ISD::ConstantFP, MVT::f80, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000412
Chris Lattnere99bbb72008-01-15 21:58:08 +0000413 // Default ISD::TRAP to expand (which turns it into abort).
414 setOperationAction(ISD::TRAP, MVT::Other, Expand);
415
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000416 IsLittleEndian = TD->isLittleEndian();
417 UsesGlobalOffsetTable = false;
Scott Michel502151f2008-03-10 15:42:14 +0000418 ShiftAmountTy = PointerTy = getValueType(TD->getIntPtrType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000419 ShiftAmtHandling = Undefined;
420 memset(RegClassForVT, 0,MVT::LAST_VALUETYPE*sizeof(TargetRegisterClass*));
Owen Anderson1636de92007-09-07 04:06:50 +0000421 memset(TargetDAGCombineArray, 0, array_lengthof(TargetDAGCombineArray));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000422 maxStoresPerMemset = maxStoresPerMemcpy = maxStoresPerMemmove = 8;
423 allowUnalignedMemoryAccesses = false;
424 UseUnderscoreSetJmp = false;
425 UseUnderscoreLongJmp = false;
426 SelectIsExpensive = false;
427 IntDivIsCheap = false;
428 Pow2DivIsCheap = false;
429 StackPointerRegisterToSaveRestore = 0;
430 ExceptionPointerRegister = 0;
431 ExceptionSelectorRegister = 0;
Chris Lattnere3f5e822007-09-21 17:06:39 +0000432 SetCCResultContents = UndefinedSetCCResult;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000433 SchedPreferenceInfo = SchedulingForLatency;
434 JumpBufSize = 0;
435 JumpBufAlignment = 0;
436 IfCvtBlockSizeLimit = 2;
Evan Cheng45c1edb2008-02-28 00:43:03 +0000437 IfCvtDupBlockSizeLimit = 0;
438 PrefLoopAlignment = 0;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000439
440 InitLibcallNames(LibcallRoutineNames);
441 InitCmpLibcallCCs(CmpLibcallCCs);
Dan Gohman21442852007-09-25 15:10:49 +0000442
443 // Tell Legalize whether the assembler supports DEBUG_LOC.
444 if (!TM.getTargetAsmInfo()->hasDotLocAndDotFile())
445 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000446}
447
448TargetLowering::~TargetLowering() {}
449
450/// computeRegisterProperties - Once all of the register classes are added,
451/// this allows us to compute derived properties we expose.
452void TargetLowering::computeRegisterProperties() {
453 assert(MVT::LAST_VALUETYPE <= 32 &&
454 "Too many value types for ValueTypeActions to hold!");
455
456 // Everything defaults to needing one register.
457 for (unsigned i = 0; i != MVT::LAST_VALUETYPE; ++i) {
458 NumRegistersForVT[i] = 1;
Duncan Sands92c43912008-06-06 12:08:01 +0000459 RegisterTypeForVT[i] = TransformToType[i] = (MVT::SimpleValueType)i;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000460 }
461 // ...except isVoid, which doesn't need any registers.
462 NumRegistersForVT[MVT::isVoid] = 0;
463
464 // Find the largest integer register class.
Duncan Sandseedb3bf2008-06-09 15:48:25 +0000465 unsigned LargestIntReg = MVT::LAST_INTEGER_VALUETYPE;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000466 for (; RegClassForVT[LargestIntReg] == 0; --LargestIntReg)
467 assert(LargestIntReg != MVT::i1 && "No integer registers defined!");
468
469 // Every integer value type larger than this largest register takes twice as
470 // many registers to represent as the previous ValueType.
Duncan Sands92c43912008-06-06 12:08:01 +0000471 for (unsigned ExpandedReg = LargestIntReg + 1; ; ++ExpandedReg) {
472 MVT EVT = (MVT::SimpleValueType)ExpandedReg;
473 if (!EVT.isInteger())
474 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000475 NumRegistersForVT[ExpandedReg] = 2*NumRegistersForVT[ExpandedReg-1];
Duncan Sands92c43912008-06-06 12:08:01 +0000476 RegisterTypeForVT[ExpandedReg] = (MVT::SimpleValueType)LargestIntReg;
477 TransformToType[ExpandedReg] = (MVT::SimpleValueType)(ExpandedReg - 1);
478 ValueTypeActions.setTypeAction(EVT, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000479 }
480
481 // Inspect all of the ValueType's smaller than the largest integer
482 // register to see which ones need promotion.
Duncan Sands92c43912008-06-06 12:08:01 +0000483 unsigned LegalIntReg = LargestIntReg;
484 for (unsigned IntReg = LargestIntReg - 1;
485 IntReg >= (unsigned)MVT::i1; --IntReg) {
486 MVT IVT = (MVT::SimpleValueType)IntReg;
487 if (isTypeLegal(IVT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000488 LegalIntReg = IntReg;
489 } else {
Duncan Sands92c43912008-06-06 12:08:01 +0000490 RegisterTypeForVT[IntReg] = TransformToType[IntReg] =
491 (MVT::SimpleValueType)LegalIntReg;
492 ValueTypeActions.setTypeAction(IVT, Promote);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000493 }
494 }
495
Dale Johannesenac77b272007-10-05 20:04:43 +0000496 // ppcf128 type is really two f64's.
497 if (!isTypeLegal(MVT::ppcf128)) {
498 NumRegistersForVT[MVT::ppcf128] = 2*NumRegistersForVT[MVT::f64];
499 RegisterTypeForVT[MVT::ppcf128] = MVT::f64;
500 TransformToType[MVT::ppcf128] = MVT::f64;
501 ValueTypeActions.setTypeAction(MVT::ppcf128, Expand);
502 }
503
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000504 // Decide how to handle f64. If the target does not have native f64 support,
505 // expand it to i64 and we will be generating soft float library calls.
506 if (!isTypeLegal(MVT::f64)) {
507 NumRegistersForVT[MVT::f64] = NumRegistersForVT[MVT::i64];
508 RegisterTypeForVT[MVT::f64] = RegisterTypeForVT[MVT::i64];
509 TransformToType[MVT::f64] = MVT::i64;
510 ValueTypeActions.setTypeAction(MVT::f64, Expand);
511 }
512
513 // Decide how to handle f32. If the target does not have native support for
514 // f32, promote it to f64 if it is legal. Otherwise, expand it to i32.
515 if (!isTypeLegal(MVT::f32)) {
516 if (isTypeLegal(MVT::f64)) {
517 NumRegistersForVT[MVT::f32] = NumRegistersForVT[MVT::f64];
518 RegisterTypeForVT[MVT::f32] = RegisterTypeForVT[MVT::f64];
519 TransformToType[MVT::f32] = MVT::f64;
520 ValueTypeActions.setTypeAction(MVT::f32, Promote);
521 } else {
522 NumRegistersForVT[MVT::f32] = NumRegistersForVT[MVT::i32];
523 RegisterTypeForVT[MVT::f32] = RegisterTypeForVT[MVT::i32];
524 TransformToType[MVT::f32] = MVT::i32;
525 ValueTypeActions.setTypeAction(MVT::f32, Expand);
526 }
527 }
528
529 // Loop over all of the vector value types to see which need transformations.
Duncan Sands92c43912008-06-06 12:08:01 +0000530 for (unsigned i = MVT::FIRST_VECTOR_VALUETYPE;
531 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
532 MVT VT = (MVT::SimpleValueType)i;
533 if (!isTypeLegal(VT)) {
534 MVT IntermediateVT, RegisterVT;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000535 unsigned NumIntermediates;
536 NumRegistersForVT[i] =
Duncan Sands92c43912008-06-06 12:08:01 +0000537 getVectorTypeBreakdown(VT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000538 IntermediateVT, NumIntermediates,
539 RegisterVT);
540 RegisterTypeForVT[i] = RegisterVT;
541 TransformToType[i] = MVT::Other; // this isn't actually used
Duncan Sands92c43912008-06-06 12:08:01 +0000542 ValueTypeActions.setTypeAction(VT, Expand);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000543 }
544 }
545}
546
547const char *TargetLowering::getTargetNodeName(unsigned Opcode) const {
548 return NULL;
549}
550
Scott Michel502151f2008-03-10 15:42:14 +0000551
Dan Gohman8181bd12008-07-27 21:46:04 +0000552MVT TargetLowering::getSetCCResultType(const SDValue &) const {
Scott Michel502151f2008-03-10 15:42:14 +0000553 return getValueType(TD->getIntPtrType());
554}
555
556
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000557/// getVectorTypeBreakdown - Vector types are broken down into some number of
558/// legal first class types. For example, MVT::v8f32 maps to 2 MVT::v4f32
559/// with Altivec or SSE1, or 8 promoted MVT::f64 values with the X86 FP stack.
560/// Similarly, MVT::v2i64 turns into 4 MVT::i32 values with both PPC and X86.
561///
562/// This method returns the number of registers needed, and the VT for each
563/// register. It also returns the VT and quantity of the intermediate values
564/// before they are promoted/expanded.
565///
Duncan Sands92c43912008-06-06 12:08:01 +0000566unsigned TargetLowering::getVectorTypeBreakdown(MVT VT,
567 MVT &IntermediateVT,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000568 unsigned &NumIntermediates,
Duncan Sands92c43912008-06-06 12:08:01 +0000569 MVT &RegisterVT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000570 // Figure out the right, legal destination reg to copy into.
Duncan Sands92c43912008-06-06 12:08:01 +0000571 unsigned NumElts = VT.getVectorNumElements();
572 MVT EltTy = VT.getVectorElementType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000573
574 unsigned NumVectorRegs = 1;
575
Nate Begeman3d83c3f2007-11-27 19:28:48 +0000576 // FIXME: We don't support non-power-of-2-sized vectors for now. Ideally we
577 // could break down into LHS/RHS like LegalizeDAG does.
578 if (!isPowerOf2_32(NumElts)) {
579 NumVectorRegs = NumElts;
580 NumElts = 1;
581 }
582
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000583 // Divide the input until we get to a supported size. This will always
584 // end with a scalar if the target doesn't support vectors.
Duncan Sands92c43912008-06-06 12:08:01 +0000585 while (NumElts > 1 && !isTypeLegal(MVT::getVectorVT(EltTy, NumElts))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000586 NumElts >>= 1;
587 NumVectorRegs <<= 1;
588 }
589
590 NumIntermediates = NumVectorRegs;
591
Duncan Sands92c43912008-06-06 12:08:01 +0000592 MVT NewVT = MVT::getVectorVT(EltTy, NumElts);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000593 if (!isTypeLegal(NewVT))
594 NewVT = EltTy;
595 IntermediateVT = NewVT;
596
Duncan Sands92c43912008-06-06 12:08:01 +0000597 MVT DestVT = getTypeToTransformTo(NewVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000598 RegisterVT = DestVT;
Duncan Sandsec142ee2008-06-08 20:54:56 +0000599 if (DestVT.bitsLT(NewVT)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000600 // Value is expanded, e.g. i64 -> i16.
Duncan Sands92c43912008-06-06 12:08:01 +0000601 return NumVectorRegs*(NewVT.getSizeInBits()/DestVT.getSizeInBits());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000602 } else {
603 // Otherwise, promotion or legal types use the same number of registers as
604 // the vector decimated to the appropriate level.
605 return NumVectorRegs;
606 }
607
608 return 1;
609}
610
Evan Cheng9b5992a2008-01-24 00:22:01 +0000611/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
Dale Johannesen88945f82008-02-28 22:31:51 +0000612/// function arguments in the caller parameter area. This is the actual
613/// alignment, not its logarithm.
Evan Cheng9b5992a2008-01-24 00:22:01 +0000614unsigned TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Dale Johannesen88945f82008-02-28 22:31:51 +0000615 return TD->getCallFrameTypeAlignment(Ty);
Evan Cheng9b5992a2008-01-24 00:22:01 +0000616}
617
Dan Gohman8181bd12008-07-27 21:46:04 +0000618SDValue TargetLowering::getPICJumpTableRelocBase(SDValue Table,
619 SelectionDAG &DAG) const {
Evan Cheng6fb06762007-11-09 01:32:10 +0000620 if (usesGlobalOffsetTable())
621 return DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, getPointerTy());
622 return Table;
623}
624
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000625//===----------------------------------------------------------------------===//
626// Optimization Methods
627//===----------------------------------------------------------------------===//
628
629/// ShrinkDemandedConstant - Check to see if the specified operand of the
630/// specified instruction is a constant integer. If so, check to see if there
631/// are any bits set in the constant that are not demanded. If so, shrink the
632/// constant and return true.
Dan Gohman8181bd12008-07-27 21:46:04 +0000633bool TargetLowering::TargetLoweringOpt::ShrinkDemandedConstant(SDValue Op,
Dan Gohman11607792008-02-27 00:25:32 +0000634 const APInt &Demanded) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000635 // FIXME: ISD::SELECT, ISD::SELECT_CC
636 switch(Op.getOpcode()) {
637 default: break;
638 case ISD::AND:
639 case ISD::OR:
640 case ISD::XOR:
641 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman11607792008-02-27 00:25:32 +0000642 if (C->getAPIntValue().intersects(~Demanded)) {
Duncan Sands92c43912008-06-06 12:08:01 +0000643 MVT VT = Op.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +0000644 SDValue New = DAG.getNode(Op.getOpcode(), VT, Op.getOperand(0),
Dan Gohman11607792008-02-27 00:25:32 +0000645 DAG.getConstant(Demanded &
646 C->getAPIntValue(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000647 VT));
648 return CombineTo(Op, New);
649 }
650 break;
651 }
652 return false;
653}
654
655/// SimplifyDemandedBits - Look at Op. At this point, we know that only the
656/// DemandedMask bits of the result of Op are ever used downstream. If we can
657/// use this information to simplify Op, create a new simplified DAG node and
658/// return true, returning the original and new nodes in Old and New. Otherwise,
659/// analyze the expression and return a mask of KnownOne and KnownZero bits for
660/// the expression (used to simplify the caller). The KnownZero/One bits may
661/// only be accurate for those bits in the DemandedMask.
Dan Gohman8181bd12008-07-27 21:46:04 +0000662bool TargetLowering::SimplifyDemandedBits(SDValue Op,
Dan Gohman11607792008-02-27 00:25:32 +0000663 const APInt &DemandedMask,
664 APInt &KnownZero,
665 APInt &KnownOne,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000666 TargetLoweringOpt &TLO,
667 unsigned Depth) const {
Dan Gohman11607792008-02-27 00:25:32 +0000668 unsigned BitWidth = DemandedMask.getBitWidth();
669 assert(Op.getValueSizeInBits() == BitWidth &&
670 "Mask size mismatches value type size!");
671 APInt NewMask = DemandedMask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000672
Dan Gohman11607792008-02-27 00:25:32 +0000673 // Don't know anything.
674 KnownZero = KnownOne = APInt(BitWidth, 0);
675
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000676 // Other users may use these bits.
Gabor Greif1c80d112008-08-28 21:40:38 +0000677 if (!Op.getNode()->hasOneUse()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000678 if (Depth != 0) {
679 // If not at the root, Just compute the KnownZero/KnownOne bits to
680 // simplify things downstream.
681 TLO.DAG.ComputeMaskedBits(Op, DemandedMask, KnownZero, KnownOne, Depth);
682 return false;
683 }
684 // If this is the root being simplified, allow it to have multiple uses,
Dan Gohman11607792008-02-27 00:25:32 +0000685 // just set the NewMask to all bits.
686 NewMask = APInt::getAllOnesValue(BitWidth);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000687 } else if (DemandedMask == 0) {
688 // Not demanding any bits from Op.
689 if (Op.getOpcode() != ISD::UNDEF)
690 return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::UNDEF, Op.getValueType()));
691 return false;
692 } else if (Depth == 6) { // Limit search depth.
693 return false;
694 }
695
Dan Gohman11607792008-02-27 00:25:32 +0000696 APInt KnownZero2, KnownOne2, KnownZeroOut, KnownOneOut;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000697 switch (Op.getOpcode()) {
698 case ISD::Constant:
699 // We know all of the bits for a constant!
Dan Gohman11607792008-02-27 00:25:32 +0000700 KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue() & NewMask;
701 KnownZero = ~KnownOne & NewMask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702 return false; // Don't fall through, will infinitely loop.
703 case ISD::AND:
704 // If the RHS is a constant, check to see if the LHS would be zero without
705 // using the bits from the RHS. Below, we use knowledge about the RHS to
706 // simplify the LHS, here we're using information from the LHS to simplify
707 // the RHS.
708 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Dan Gohman11607792008-02-27 00:25:32 +0000709 APInt LHSZero, LHSOne;
710 TLO.DAG.ComputeMaskedBits(Op.getOperand(0), NewMask,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000711 LHSZero, LHSOne, Depth+1);
712 // If the LHS already has zeros where RHSC does, this and is dead.
Dan Gohman11607792008-02-27 00:25:32 +0000713 if ((LHSZero & NewMask) == (~RHSC->getAPIntValue() & NewMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000714 return TLO.CombineTo(Op, Op.getOperand(0));
715 // If any of the set bits in the RHS are known zero on the LHS, shrink
716 // the constant.
Dan Gohman11607792008-02-27 00:25:32 +0000717 if (TLO.ShrinkDemandedConstant(Op, ~LHSZero & NewMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000718 return true;
719 }
720
Dan Gohman11607792008-02-27 00:25:32 +0000721 if (SimplifyDemandedBits(Op.getOperand(1), NewMask, KnownZero,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000722 KnownOne, TLO, Depth+1))
723 return true;
724 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohman11607792008-02-27 00:25:32 +0000725 if (SimplifyDemandedBits(Op.getOperand(0), ~KnownZero & NewMask,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000726 KnownZero2, KnownOne2, TLO, Depth+1))
727 return true;
728 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
729
730 // If all of the demanded bits are known one on one side, return the other.
731 // These bits cannot contribute to the result of the 'and'.
Dan Gohman11607792008-02-27 00:25:32 +0000732 if ((NewMask & ~KnownZero2 & KnownOne) == (~KnownZero2 & NewMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000733 return TLO.CombineTo(Op, Op.getOperand(0));
Dan Gohman11607792008-02-27 00:25:32 +0000734 if ((NewMask & ~KnownZero & KnownOne2) == (~KnownZero & NewMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000735 return TLO.CombineTo(Op, Op.getOperand(1));
736 // If all of the demanded bits in the inputs are known zeros, return zero.
Dan Gohman11607792008-02-27 00:25:32 +0000737 if ((NewMask & (KnownZero|KnownZero2)) == NewMask)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000738 return TLO.CombineTo(Op, TLO.DAG.getConstant(0, Op.getValueType()));
739 // If the RHS is a constant, see if we can simplify it.
Dan Gohman11607792008-02-27 00:25:32 +0000740 if (TLO.ShrinkDemandedConstant(Op, ~KnownZero2 & NewMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000741 return true;
742
743 // Output known-1 bits are only known if set in both the LHS & RHS.
744 KnownOne &= KnownOne2;
745 // Output known-0 are known to be clear if zero in either the LHS | RHS.
746 KnownZero |= KnownZero2;
747 break;
748 case ISD::OR:
Dan Gohman11607792008-02-27 00:25:32 +0000749 if (SimplifyDemandedBits(Op.getOperand(1), NewMask, KnownZero,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000750 KnownOne, TLO, Depth+1))
751 return true;
752 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohman11607792008-02-27 00:25:32 +0000753 if (SimplifyDemandedBits(Op.getOperand(0), ~KnownOne & NewMask,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000754 KnownZero2, KnownOne2, TLO, Depth+1))
755 return true;
756 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
757
758 // If all of the demanded bits are known zero on one side, return the other.
759 // These bits cannot contribute to the result of the 'or'.
Dan Gohman11607792008-02-27 00:25:32 +0000760 if ((NewMask & ~KnownOne2 & KnownZero) == (~KnownOne2 & NewMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000761 return TLO.CombineTo(Op, Op.getOperand(0));
Dan Gohman11607792008-02-27 00:25:32 +0000762 if ((NewMask & ~KnownOne & KnownZero2) == (~KnownOne & NewMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000763 return TLO.CombineTo(Op, Op.getOperand(1));
764 // If all of the potentially set bits on one side are known to be set on
765 // the other side, just use the 'other' side.
Dan Gohman11607792008-02-27 00:25:32 +0000766 if ((NewMask & ~KnownZero & KnownOne2) == (~KnownZero & NewMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000767 return TLO.CombineTo(Op, Op.getOperand(0));
Dan Gohman11607792008-02-27 00:25:32 +0000768 if ((NewMask & ~KnownZero2 & KnownOne) == (~KnownZero2 & NewMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000769 return TLO.CombineTo(Op, Op.getOperand(1));
770 // If the RHS is a constant, see if we can simplify it.
Dan Gohman11607792008-02-27 00:25:32 +0000771 if (TLO.ShrinkDemandedConstant(Op, NewMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000772 return true;
773
774 // Output known-0 bits are only known if clear in both the LHS & RHS.
775 KnownZero &= KnownZero2;
776 // Output known-1 are known to be set if set in either the LHS | RHS.
777 KnownOne |= KnownOne2;
778 break;
779 case ISD::XOR:
Dan Gohman11607792008-02-27 00:25:32 +0000780 if (SimplifyDemandedBits(Op.getOperand(1), NewMask, KnownZero,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000781 KnownOne, TLO, Depth+1))
782 return true;
783 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohman11607792008-02-27 00:25:32 +0000784 if (SimplifyDemandedBits(Op.getOperand(0), NewMask, KnownZero2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000785 KnownOne2, TLO, Depth+1))
786 return true;
787 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
788
789 // If all of the demanded bits are known zero on one side, return the other.
790 // These bits cannot contribute to the result of the 'xor'.
Dan Gohman11607792008-02-27 00:25:32 +0000791 if ((KnownZero & NewMask) == NewMask)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000792 return TLO.CombineTo(Op, Op.getOperand(0));
Dan Gohman11607792008-02-27 00:25:32 +0000793 if ((KnownZero2 & NewMask) == NewMask)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000794 return TLO.CombineTo(Op, Op.getOperand(1));
795
796 // If all of the unknown bits are known to be zero on one side or the other
797 // (but not both) turn this into an *inclusive* or.
798 // e.g. (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0
Dan Gohman11607792008-02-27 00:25:32 +0000799 if ((NewMask & ~KnownZero & ~KnownZero2) == 0)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000800 return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::OR, Op.getValueType(),
801 Op.getOperand(0),
802 Op.getOperand(1)));
803
804 // Output known-0 bits are known if clear or set in both the LHS & RHS.
805 KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2);
806 // Output known-1 are known to be set if set in only one of the LHS, RHS.
807 KnownOneOut = (KnownZero & KnownOne2) | (KnownOne & KnownZero2);
808
809 // If all of the demanded bits on one side are known, and all of the set
810 // bits on that side are also known to be set on the other side, turn this
811 // into an AND, as we know the bits will be cleared.
812 // e.g. (X | C1) ^ C2 --> (X | C1) & ~C2 iff (C1&C2) == C2
Dan Gohman11607792008-02-27 00:25:32 +0000813 if ((NewMask & (KnownZero|KnownOne)) == NewMask) { // all known
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000814 if ((KnownOne & KnownOne2) == KnownOne) {
Duncan Sands92c43912008-06-06 12:08:01 +0000815 MVT VT = Op.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +0000816 SDValue ANDC = TLO.DAG.getConstant(~KnownOne & NewMask, VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000817 return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::AND, VT, Op.getOperand(0),
818 ANDC));
819 }
820 }
821
822 // If the RHS is a constant, see if we can simplify it.
Edwin Török405b2432008-04-06 21:23:02 +0000823 // for XOR, we prefer to force bits to 1 if they will make a -1.
824 // if we can't force bits, try to shrink constant
825 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
826 APInt Expanded = C->getAPIntValue() | (~NewMask);
827 // if we can expand it to have all bits set, do it
828 if (Expanded.isAllOnesValue()) {
829 if (Expanded != C->getAPIntValue()) {
Duncan Sands92c43912008-06-06 12:08:01 +0000830 MVT VT = Op.getValueType();
Dan Gohman8181bd12008-07-27 21:46:04 +0000831 SDValue New = TLO.DAG.getNode(Op.getOpcode(), VT, Op.getOperand(0),
Edwin Török405b2432008-04-06 21:23:02 +0000832 TLO.DAG.getConstant(Expanded, VT));
833 return TLO.CombineTo(Op, New);
834 }
835 // if it already has all the bits set, nothing to change
836 // but don't shrink either!
837 } else if (TLO.ShrinkDemandedConstant(Op, NewMask)) {
838 return true;
839 }
840 }
841
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000842 KnownZero = KnownZeroOut;
843 KnownOne = KnownOneOut;
844 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000845 case ISD::SELECT:
Dan Gohman11607792008-02-27 00:25:32 +0000846 if (SimplifyDemandedBits(Op.getOperand(2), NewMask, KnownZero,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000847 KnownOne, TLO, Depth+1))
848 return true;
Dan Gohman11607792008-02-27 00:25:32 +0000849 if (SimplifyDemandedBits(Op.getOperand(1), NewMask, KnownZero2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000850 KnownOne2, TLO, Depth+1))
851 return true;
852 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
853 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
854
855 // If the operands are constants, see if we can simplify them.
Dan Gohman11607792008-02-27 00:25:32 +0000856 if (TLO.ShrinkDemandedConstant(Op, NewMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000857 return true;
858
859 // Only known if known in both the LHS and RHS.
860 KnownOne &= KnownOne2;
861 KnownZero &= KnownZero2;
862 break;
863 case ISD::SELECT_CC:
Dan Gohman11607792008-02-27 00:25:32 +0000864 if (SimplifyDemandedBits(Op.getOperand(3), NewMask, KnownZero,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000865 KnownOne, TLO, Depth+1))
866 return true;
Dan Gohman11607792008-02-27 00:25:32 +0000867 if (SimplifyDemandedBits(Op.getOperand(2), NewMask, KnownZero2,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000868 KnownOne2, TLO, Depth+1))
869 return true;
870 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
871 assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?");
872
873 // If the operands are constants, see if we can simplify them.
Dan Gohman11607792008-02-27 00:25:32 +0000874 if (TLO.ShrinkDemandedConstant(Op, NewMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000875 return true;
876
877 // Only known if known in both the LHS and RHS.
878 KnownOne &= KnownOne2;
879 KnownZero &= KnownZero2;
880 break;
881 case ISD::SHL:
882 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
883 unsigned ShAmt = SA->getValue();
Dan Gohman8181bd12008-07-27 21:46:04 +0000884 SDValue InOp = Op.getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000885
Dan Gohman11607792008-02-27 00:25:32 +0000886 // If the shift count is an invalid immediate, don't do anything.
887 if (ShAmt >= BitWidth)
888 break;
889
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000890 // If this is ((X >>u C1) << ShAmt), see if we can simplify this into a
891 // single shift. We can do this if the bottom bits (which are shifted
892 // out) are never demanded.
893 if (InOp.getOpcode() == ISD::SRL &&
894 isa<ConstantSDNode>(InOp.getOperand(1))) {
Dan Gohman11607792008-02-27 00:25:32 +0000895 if (ShAmt && (NewMask & APInt::getLowBitsSet(BitWidth, ShAmt)) == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000896 unsigned C1 = cast<ConstantSDNode>(InOp.getOperand(1))->getValue();
897 unsigned Opc = ISD::SHL;
898 int Diff = ShAmt-C1;
899 if (Diff < 0) {
900 Diff = -Diff;
901 Opc = ISD::SRL;
902 }
903
Dan Gohman8181bd12008-07-27 21:46:04 +0000904 SDValue NewSA =
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000905 TLO.DAG.getConstant(Diff, Op.getOperand(1).getValueType());
Duncan Sands92c43912008-06-06 12:08:01 +0000906 MVT VT = Op.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000907 return TLO.CombineTo(Op, TLO.DAG.getNode(Opc, VT,
908 InOp.getOperand(0), NewSA));
909 }
910 }
911
Dan Gohman11607792008-02-27 00:25:32 +0000912 if (SimplifyDemandedBits(Op.getOperand(0), NewMask.lshr(ShAmt),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000913 KnownZero, KnownOne, TLO, Depth+1))
914 return true;
915 KnownZero <<= SA->getValue();
916 KnownOne <<= SA->getValue();
Dan Gohman11607792008-02-27 00:25:32 +0000917 // low bits known zero.
918 KnownZero |= APInt::getLowBitsSet(BitWidth, SA->getValue());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000919 }
920 break;
921 case ISD::SRL:
922 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Duncan Sands92c43912008-06-06 12:08:01 +0000923 MVT VT = Op.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000924 unsigned ShAmt = SA->getValue();
Duncan Sands92c43912008-06-06 12:08:01 +0000925 unsigned VTSize = VT.getSizeInBits();
Dan Gohman8181bd12008-07-27 21:46:04 +0000926 SDValue InOp = Op.getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000927
Dan Gohman11607792008-02-27 00:25:32 +0000928 // If the shift count is an invalid immediate, don't do anything.
929 if (ShAmt >= BitWidth)
930 break;
931
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000932 // If this is ((X << C1) >>u ShAmt), see if we can simplify this into a
933 // single shift. We can do this if the top bits (which are shifted out)
934 // are never demanded.
935 if (InOp.getOpcode() == ISD::SHL &&
936 isa<ConstantSDNode>(InOp.getOperand(1))) {
Dan Gohman11607792008-02-27 00:25:32 +0000937 if (ShAmt && (NewMask & APInt::getHighBitsSet(VTSize, ShAmt)) == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000938 unsigned C1 = cast<ConstantSDNode>(InOp.getOperand(1))->getValue();
939 unsigned Opc = ISD::SRL;
940 int Diff = ShAmt-C1;
941 if (Diff < 0) {
942 Diff = -Diff;
943 Opc = ISD::SHL;
944 }
945
Dan Gohman8181bd12008-07-27 21:46:04 +0000946 SDValue NewSA =
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000947 TLO.DAG.getConstant(Diff, Op.getOperand(1).getValueType());
948 return TLO.CombineTo(Op, TLO.DAG.getNode(Opc, VT,
949 InOp.getOperand(0), NewSA));
950 }
951 }
952
953 // Compute the new bits that are at the top now.
Dan Gohman11607792008-02-27 00:25:32 +0000954 if (SimplifyDemandedBits(InOp, (NewMask << ShAmt),
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000955 KnownZero, KnownOne, TLO, Depth+1))
956 return true;
957 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohman11607792008-02-27 00:25:32 +0000958 KnownZero = KnownZero.lshr(ShAmt);
959 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000960
Dan Gohman11607792008-02-27 00:25:32 +0000961 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000962 KnownZero |= HighBits; // High bits known zero.
963 }
964 break;
965 case ISD::SRA:
966 if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
Duncan Sands92c43912008-06-06 12:08:01 +0000967 MVT VT = Op.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000968 unsigned ShAmt = SA->getValue();
969
Dan Gohman11607792008-02-27 00:25:32 +0000970 // If the shift count is an invalid immediate, don't do anything.
971 if (ShAmt >= BitWidth)
972 break;
973
974 APInt InDemandedMask = (NewMask << ShAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000975
976 // If any of the demanded bits are produced by the sign extension, we also
977 // demand the input sign bit.
Dan Gohman11607792008-02-27 00:25:32 +0000978 APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt);
979 if (HighBits.intersects(NewMask))
Duncan Sands92c43912008-06-06 12:08:01 +0000980 InDemandedMask |= APInt::getSignBit(VT.getSizeInBits());
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000981
982 if (SimplifyDemandedBits(Op.getOperand(0), InDemandedMask,
983 KnownZero, KnownOne, TLO, Depth+1))
984 return true;
985 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohman11607792008-02-27 00:25:32 +0000986 KnownZero = KnownZero.lshr(ShAmt);
987 KnownOne = KnownOne.lshr(ShAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000988
Dan Gohman11607792008-02-27 00:25:32 +0000989 // Handle the sign bit, adjusted to where it is now in the mask.
990 APInt SignBit = APInt::getSignBit(BitWidth).lshr(ShAmt);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000991
992 // If the input sign bit is known to be zero, or if none of the top bits
993 // are demanded, turn this into an unsigned shift right.
Dan Gohman11607792008-02-27 00:25:32 +0000994 if (KnownZero.intersects(SignBit) || (HighBits & ~NewMask) == HighBits) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000995 return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::SRL, VT, Op.getOperand(0),
996 Op.getOperand(1)));
Dan Gohman11607792008-02-27 00:25:32 +0000997 } else if (KnownOne.intersects(SignBit)) { // New bits are known one.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000998 KnownOne |= HighBits;
999 }
1000 }
1001 break;
1002 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands92c43912008-06-06 12:08:01 +00001003 MVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001004
1005 // Sign extension. Compute the demanded bits in the result that are not
1006 // present in the input.
Dan Gohman11607792008-02-27 00:25:32 +00001007 APInt NewBits = APInt::getHighBitsSet(BitWidth,
Duncan Sands92c43912008-06-06 12:08:01 +00001008 BitWidth - EVT.getSizeInBits()) &
Dan Gohman11607792008-02-27 00:25:32 +00001009 NewMask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001010
1011 // If none of the extended bits are demanded, eliminate the sextinreg.
1012 if (NewBits == 0)
1013 return TLO.CombineTo(Op, Op.getOperand(0));
1014
Duncan Sands92c43912008-06-06 12:08:01 +00001015 APInt InSignBit = APInt::getSignBit(EVT.getSizeInBits());
Dan Gohman11607792008-02-27 00:25:32 +00001016 InSignBit.zext(BitWidth);
1017 APInt InputDemandedBits = APInt::getLowBitsSet(BitWidth,
Duncan Sands92c43912008-06-06 12:08:01 +00001018 EVT.getSizeInBits()) &
Dan Gohman11607792008-02-27 00:25:32 +00001019 NewMask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001020
1021 // Since the sign extended bits are demanded, we know that the sign
1022 // bit is demanded.
1023 InputDemandedBits |= InSignBit;
1024
1025 if (SimplifyDemandedBits(Op.getOperand(0), InputDemandedBits,
1026 KnownZero, KnownOne, TLO, Depth+1))
1027 return true;
1028 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
1029
1030 // If the sign bit of the input is known set or clear, then we know the
1031 // top bits of the result.
1032
1033 // If the input sign bit is known zero, convert this into a zero extension.
Dan Gohman11607792008-02-27 00:25:32 +00001034 if (KnownZero.intersects(InSignBit))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001035 return TLO.CombineTo(Op,
1036 TLO.DAG.getZeroExtendInReg(Op.getOperand(0), EVT));
1037
Dan Gohman11607792008-02-27 00:25:32 +00001038 if (KnownOne.intersects(InSignBit)) { // Input sign bit known set
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001039 KnownOne |= NewBits;
1040 KnownZero &= ~NewBits;
1041 } else { // Input sign bit unknown
1042 KnownZero &= ~NewBits;
1043 KnownOne &= ~NewBits;
1044 }
1045 break;
1046 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001047 case ISD::ZERO_EXTEND: {
Dan Gohman11607792008-02-27 00:25:32 +00001048 unsigned OperandBitWidth = Op.getOperand(0).getValueSizeInBits();
1049 APInt InMask = NewMask;
1050 InMask.trunc(OperandBitWidth);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001051
1052 // If none of the top bits are demanded, convert this into an any_extend.
Dan Gohman11607792008-02-27 00:25:32 +00001053 APInt NewBits =
1054 APInt::getHighBitsSet(BitWidth, BitWidth - OperandBitWidth) & NewMask;
1055 if (!NewBits.intersects(NewMask))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001056 return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::ANY_EXTEND,
1057 Op.getValueType(),
1058 Op.getOperand(0)));
1059
Dan Gohman11607792008-02-27 00:25:32 +00001060 if (SimplifyDemandedBits(Op.getOperand(0), InMask,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001061 KnownZero, KnownOne, TLO, Depth+1))
1062 return true;
1063 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohman11607792008-02-27 00:25:32 +00001064 KnownZero.zext(BitWidth);
1065 KnownOne.zext(BitWidth);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001066 KnownZero |= NewBits;
1067 break;
1068 }
1069 case ISD::SIGN_EXTEND: {
Duncan Sands92c43912008-06-06 12:08:01 +00001070 MVT InVT = Op.getOperand(0).getValueType();
1071 unsigned InBits = InVT.getSizeInBits();
Dan Gohman11607792008-02-27 00:25:32 +00001072 APInt InMask = APInt::getLowBitsSet(BitWidth, InBits);
Dan Gohman343b4d92008-03-11 21:29:43 +00001073 APInt InSignBit = APInt::getBitsSet(BitWidth, InBits - 1, InBits);
Dan Gohman11607792008-02-27 00:25:32 +00001074 APInt NewBits = ~InMask & NewMask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001075
1076 // If none of the top bits are demanded, convert this into an any_extend.
1077 if (NewBits == 0)
1078 return TLO.CombineTo(Op,TLO.DAG.getNode(ISD::ANY_EXTEND,Op.getValueType(),
1079 Op.getOperand(0)));
1080
1081 // Since some of the sign extended bits are demanded, we know that the sign
1082 // bit is demanded.
Dan Gohman11607792008-02-27 00:25:32 +00001083 APInt InDemandedBits = InMask & NewMask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001084 InDemandedBits |= InSignBit;
Dan Gohman11607792008-02-27 00:25:32 +00001085 InDemandedBits.trunc(InBits);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001086
1087 if (SimplifyDemandedBits(Op.getOperand(0), InDemandedBits, KnownZero,
1088 KnownOne, TLO, Depth+1))
1089 return true;
Dan Gohman11607792008-02-27 00:25:32 +00001090 KnownZero.zext(BitWidth);
1091 KnownOne.zext(BitWidth);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001092
1093 // If the sign bit is known zero, convert this to a zero extend.
Dan Gohman11607792008-02-27 00:25:32 +00001094 if (KnownZero.intersects(InSignBit))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001095 return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::ZERO_EXTEND,
1096 Op.getValueType(),
1097 Op.getOperand(0)));
1098
1099 // If the sign bit is known one, the top bits match.
Dan Gohman11607792008-02-27 00:25:32 +00001100 if (KnownOne.intersects(InSignBit)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001101 KnownOne |= NewBits;
1102 KnownZero &= ~NewBits;
1103 } else { // Otherwise, top bits aren't known.
1104 KnownOne &= ~NewBits;
1105 KnownZero &= ~NewBits;
1106 }
1107 break;
1108 }
1109 case ISD::ANY_EXTEND: {
Dan Gohman11607792008-02-27 00:25:32 +00001110 unsigned OperandBitWidth = Op.getOperand(0).getValueSizeInBits();
1111 APInt InMask = NewMask;
1112 InMask.trunc(OperandBitWidth);
1113 if (SimplifyDemandedBits(Op.getOperand(0), InMask,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001114 KnownZero, KnownOne, TLO, Depth+1))
1115 return true;
1116 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohman11607792008-02-27 00:25:32 +00001117 KnownZero.zext(BitWidth);
1118 KnownOne.zext(BitWidth);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001119 break;
1120 }
1121 case ISD::TRUNCATE: {
1122 // Simplify the input, using demanded bit information, and compute the known
1123 // zero/one bits live out.
Dan Gohman11607792008-02-27 00:25:32 +00001124 APInt TruncMask = NewMask;
1125 TruncMask.zext(Op.getOperand(0).getValueSizeInBits());
1126 if (SimplifyDemandedBits(Op.getOperand(0), TruncMask,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001127 KnownZero, KnownOne, TLO, Depth+1))
1128 return true;
Dan Gohman11607792008-02-27 00:25:32 +00001129 KnownZero.trunc(BitWidth);
1130 KnownOne.trunc(BitWidth);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001131
1132 // If the input is only used by this truncate, see if we can shrink it based
1133 // on the known demanded bits.
Gabor Greif1c80d112008-08-28 21:40:38 +00001134 if (Op.getOperand(0).getNode()->hasOneUse()) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001135 SDValue In = Op.getOperand(0);
Dan Gohman11607792008-02-27 00:25:32 +00001136 unsigned InBitWidth = In.getValueSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001137 switch (In.getOpcode()) {
1138 default: break;
1139 case ISD::SRL:
1140 // Shrink SRL by a constant if none of the high bits shifted in are
1141 // demanded.
1142 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(In.getOperand(1))){
Dan Gohman11607792008-02-27 00:25:32 +00001143 APInt HighBits = APInt::getHighBitsSet(InBitWidth,
1144 InBitWidth - BitWidth);
1145 HighBits = HighBits.lshr(ShAmt->getValue());
1146 HighBits.trunc(BitWidth);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001147
Dan Gohman11607792008-02-27 00:25:32 +00001148 if (ShAmt->getValue() < BitWidth && !(HighBits & NewMask)) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001149 // None of the shifted in bits are needed. Add a truncate of the
1150 // shift input, then shift it.
Dan Gohman8181bd12008-07-27 21:46:04 +00001151 SDValue NewTrunc = TLO.DAG.getNode(ISD::TRUNCATE,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001152 Op.getValueType(),
1153 In.getOperand(0));
1154 return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::SRL,Op.getValueType(),
1155 NewTrunc, In.getOperand(1)));
1156 }
1157 }
1158 break;
1159 }
1160 }
1161
1162 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001163 break;
1164 }
1165 case ISD::AssertZext: {
Duncan Sands92c43912008-06-06 12:08:01 +00001166 MVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT();
Dan Gohman11607792008-02-27 00:25:32 +00001167 APInt InMask = APInt::getLowBitsSet(BitWidth,
Duncan Sands92c43912008-06-06 12:08:01 +00001168 VT.getSizeInBits());
Dan Gohman11607792008-02-27 00:25:32 +00001169 if (SimplifyDemandedBits(Op.getOperand(0), InMask & NewMask,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001170 KnownZero, KnownOne, TLO, Depth+1))
1171 return true;
1172 assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?");
Dan Gohman11607792008-02-27 00:25:32 +00001173 KnownZero |= ~InMask & NewMask;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001174 break;
1175 }
Chris Lattner516731f2007-12-22 21:35:38 +00001176 case ISD::BIT_CONVERT:
1177#if 0
1178 // If this is an FP->Int bitcast and if the sign bit is the only thing that
1179 // is demanded, turn this into a FGETSIGN.
Duncan Sands92c43912008-06-06 12:08:01 +00001180 if (NewMask == MVT::getIntegerVTSignBit(Op.getValueType()) &&
Chris Lattner516731f2007-12-22 21:35:38 +00001181 MVT::isFloatingPoint(Op.getOperand(0).getValueType()) &&
1182 !MVT::isVector(Op.getOperand(0).getValueType())) {
1183 // Only do this xform if FGETSIGN is valid or if before legalize.
1184 if (!TLO.AfterLegalize ||
1185 isOperationLegal(ISD::FGETSIGN, Op.getValueType())) {
1186 // Make a FGETSIGN + SHL to move the sign bit into the appropriate
1187 // place. We expect the SHL to be eliminated by other optimizations.
Dan Gohman8181bd12008-07-27 21:46:04 +00001188 SDValue Sign = TLO.DAG.getNode(ISD::FGETSIGN, Op.getValueType(),
Chris Lattner516731f2007-12-22 21:35:38 +00001189 Op.getOperand(0));
Duncan Sands92c43912008-06-06 12:08:01 +00001190 unsigned ShVal = Op.getValueType().getSizeInBits()-1;
Dan Gohman8181bd12008-07-27 21:46:04 +00001191 SDValue ShAmt = TLO.DAG.getConstant(ShVal, getShiftAmountTy());
Chris Lattner516731f2007-12-22 21:35:38 +00001192 return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::SHL, Op.getValueType(),
1193 Sign, ShAmt));
1194 }
1195 }
1196#endif
1197 break;
Dan Gohman9a77bb62008-05-06 00:53:29 +00001198 default:
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001199 // Just use ComputeMaskedBits to compute output bits.
Dan Gohman11607792008-02-27 00:25:32 +00001200 TLO.DAG.ComputeMaskedBits(Op, NewMask, KnownZero, KnownOne, Depth);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001201 break;
1202 }
1203
1204 // If we know the value of all of the demanded bits, return this as a
1205 // constant.
Dan Gohman11607792008-02-27 00:25:32 +00001206 if ((NewMask & (KnownZero|KnownOne)) == NewMask)
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001207 return TLO.CombineTo(Op, TLO.DAG.getConstant(KnownOne, Op.getValueType()));
1208
1209 return false;
1210}
1211
1212/// computeMaskedBitsForTargetNode - Determine which of the bits specified
1213/// in Mask are known to be either zero or one and return them in the
1214/// KnownZero/KnownOne bitsets.
Dan Gohman8181bd12008-07-27 21:46:04 +00001215void TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmand0dfc772008-02-13 22:28:48 +00001216 const APInt &Mask,
Dan Gohman229fa052008-02-13 00:35:47 +00001217 APInt &KnownZero,
1218 APInt &KnownOne,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001219 const SelectionDAG &DAG,
1220 unsigned Depth) const {
1221 assert((Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1222 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
1223 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1224 Op.getOpcode() == ISD::INTRINSIC_VOID) &&
1225 "Should use MaskedValueIsZero if you don't know whether Op"
1226 " is a target node!");
Dan Gohmand0dfc772008-02-13 22:28:48 +00001227 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001228}
1229
1230/// ComputeNumSignBitsForTargetNode - This method can be implemented by
1231/// targets that want to expose additional information about sign bits to the
1232/// DAG Combiner.
Dan Gohman8181bd12008-07-27 21:46:04 +00001233unsigned TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001234 unsigned Depth) const {
1235 assert((Op.getOpcode() >= ISD::BUILTIN_OP_END ||
1236 Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN ||
1237 Op.getOpcode() == ISD::INTRINSIC_W_CHAIN ||
1238 Op.getOpcode() == ISD::INTRINSIC_VOID) &&
1239 "Should use ComputeNumSignBits if you don't know whether Op"
1240 " is a target node!");
1241 return 1;
1242}
1243
1244
1245/// SimplifySetCC - Try to simplify a setcc built with the specified operands
Dan Gohman8181bd12008-07-27 21:46:04 +00001246/// and cc. If it is unable to simplify it, return a null SDValue.
1247SDValue
1248TargetLowering::SimplifySetCC(MVT VT, SDValue N0, SDValue N1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001249 ISD::CondCode Cond, bool foldBooleans,
1250 DAGCombinerInfo &DCI) const {
1251 SelectionDAG &DAG = DCI.DAG;
1252
1253 // These setcc operations always fold.
1254 switch (Cond) {
1255 default: break;
1256 case ISD::SETFALSE:
1257 case ISD::SETFALSE2: return DAG.getConstant(0, VT);
1258 case ISD::SETTRUE:
1259 case ISD::SETTRUE2: return DAG.getConstant(1, VT);
1260 }
1261
Gabor Greif1c80d112008-08-28 21:40:38 +00001262 if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) {
Dan Gohmand00055a2008-03-03 22:22:56 +00001263 const APInt &C1 = N1C->getAPIntValue();
Gabor Greif1c80d112008-08-28 21:40:38 +00001264 if (isa<ConstantSDNode>(N0.getNode())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001265 return DAG.FoldSetCC(VT, N0, N1, Cond);
1266 } else {
1267 // If the LHS is '(srl (ctlz x), 5)', the RHS is 0/1, and this is an
1268 // equality comparison, then we're just comparing whether X itself is
1269 // zero.
1270 if (N0.getOpcode() == ISD::SRL && (C1 == 0 || C1 == 1) &&
1271 N0.getOperand(0).getOpcode() == ISD::CTLZ &&
1272 N0.getOperand(1).getOpcode() == ISD::Constant) {
1273 unsigned ShAmt = cast<ConstantSDNode>(N0.getOperand(1))->getValue();
1274 if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) &&
Duncan Sands92c43912008-06-06 12:08:01 +00001275 ShAmt == Log2_32(N0.getValueType().getSizeInBits())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001276 if ((C1 == 0) == (Cond == ISD::SETEQ)) {
1277 // (srl (ctlz x), 5) == 0 -> X != 0
1278 // (srl (ctlz x), 5) != 1 -> X != 0
1279 Cond = ISD::SETNE;
1280 } else {
1281 // (srl (ctlz x), 5) != 0 -> X == 0
1282 // (srl (ctlz x), 5) == 1 -> X == 0
1283 Cond = ISD::SETEQ;
1284 }
Dan Gohman8181bd12008-07-27 21:46:04 +00001285 SDValue Zero = DAG.getConstant(0, N0.getValueType());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001286 return DAG.getSetCC(VT, N0.getOperand(0).getOperand(0),
1287 Zero, Cond);
1288 }
1289 }
1290
1291 // If the LHS is a ZERO_EXTEND, perform the comparison on the input.
1292 if (N0.getOpcode() == ISD::ZERO_EXTEND) {
Duncan Sands92c43912008-06-06 12:08:01 +00001293 unsigned InSize = N0.getOperand(0).getValueType().getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001294
1295 // If the comparison constant has bits in the upper part, the
1296 // zero-extended value could never match.
Dan Gohmand00055a2008-03-03 22:22:56 +00001297 if (C1.intersects(APInt::getHighBitsSet(C1.getBitWidth(),
1298 C1.getBitWidth() - InSize))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001299 switch (Cond) {
1300 case ISD::SETUGT:
1301 case ISD::SETUGE:
1302 case ISD::SETEQ: return DAG.getConstant(0, VT);
1303 case ISD::SETULT:
1304 case ISD::SETULE:
1305 case ISD::SETNE: return DAG.getConstant(1, VT);
1306 case ISD::SETGT:
1307 case ISD::SETGE:
1308 // True if the sign bit of C1 is set.
Dan Gohmand00055a2008-03-03 22:22:56 +00001309 return DAG.getConstant(C1.isNegative(), VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001310 case ISD::SETLT:
1311 case ISD::SETLE:
1312 // True if the sign bit of C1 isn't set.
Dan Gohmand00055a2008-03-03 22:22:56 +00001313 return DAG.getConstant(C1.isNonNegative(), VT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001314 default:
1315 break;
1316 }
1317 }
1318
1319 // Otherwise, we can perform the comparison with the low bits.
1320 switch (Cond) {
1321 case ISD::SETEQ:
1322 case ISD::SETNE:
1323 case ISD::SETUGT:
1324 case ISD::SETUGE:
1325 case ISD::SETULT:
1326 case ISD::SETULE:
1327 return DAG.getSetCC(VT, N0.getOperand(0),
Dan Gohmand00055a2008-03-03 22:22:56 +00001328 DAG.getConstant(APInt(C1).trunc(InSize),
1329 N0.getOperand(0).getValueType()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001330 Cond);
1331 default:
1332 break; // todo, be more careful with signed comparisons
1333 }
1334 } else if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG &&
1335 (Cond == ISD::SETEQ || Cond == ISD::SETNE)) {
Duncan Sands92c43912008-06-06 12:08:01 +00001336 MVT ExtSrcTy = cast<VTSDNode>(N0.getOperand(1))->getVT();
1337 unsigned ExtSrcTyBits = ExtSrcTy.getSizeInBits();
1338 MVT ExtDstTy = N0.getValueType();
1339 unsigned ExtDstTyBits = ExtDstTy.getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001340
1341 // If the extended part has any inconsistent bits, it cannot ever
1342 // compare equal. In other words, they have to be all ones or all
1343 // zeros.
Dan Gohmand00055a2008-03-03 22:22:56 +00001344 APInt ExtBits =
1345 APInt::getHighBitsSet(ExtDstTyBits, ExtDstTyBits - ExtSrcTyBits);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001346 if ((C1 & ExtBits) != 0 && (C1 & ExtBits) != ExtBits)
1347 return DAG.getConstant(Cond == ISD::SETNE, VT);
1348
Dan Gohman8181bd12008-07-27 21:46:04 +00001349 SDValue ZextOp;
Duncan Sands92c43912008-06-06 12:08:01 +00001350 MVT Op0Ty = N0.getOperand(0).getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001351 if (Op0Ty == ExtSrcTy) {
1352 ZextOp = N0.getOperand(0);
1353 } else {
Dan Gohman04ec2f02008-03-03 22:37:52 +00001354 APInt Imm = APInt::getLowBitsSet(ExtDstTyBits, ExtSrcTyBits);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001355 ZextOp = DAG.getNode(ISD::AND, Op0Ty, N0.getOperand(0),
1356 DAG.getConstant(Imm, Op0Ty));
1357 }
1358 if (!DCI.isCalledByLegalizer())
Gabor Greif1c80d112008-08-28 21:40:38 +00001359 DCI.AddToWorklist(ZextOp.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001360 // Otherwise, make this a use of a zext.
1361 return DAG.getSetCC(VT, ZextOp,
Dan Gohmand00055a2008-03-03 22:22:56 +00001362 DAG.getConstant(C1 & APInt::getLowBitsSet(
1363 ExtDstTyBits,
1364 ExtSrcTyBits),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001365 ExtDstTy),
1366 Cond);
Dan Gohmand00055a2008-03-03 22:22:56 +00001367 } else if ((N1C->isNullValue() || N1C->getAPIntValue() == 1) &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001368 (Cond == ISD::SETEQ || Cond == ISD::SETNE)) {
1369
1370 // SETCC (SETCC), [0|1], [EQ|NE] -> SETCC
1371 if (N0.getOpcode() == ISD::SETCC) {
1372 bool TrueWhenTrue = (Cond == ISD::SETEQ) ^ (N1C->getValue() != 1);
1373 if (TrueWhenTrue)
1374 return N0;
1375
1376 // Invert the condition.
1377 ISD::CondCode CC = cast<CondCodeSDNode>(N0.getOperand(2))->get();
1378 CC = ISD::getSetCCInverse(CC,
Duncan Sands92c43912008-06-06 12:08:01 +00001379 N0.getOperand(0).getValueType().isInteger());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001380 return DAG.getSetCC(VT, N0.getOperand(0), N0.getOperand(1), CC);
1381 }
1382
1383 if ((N0.getOpcode() == ISD::XOR ||
1384 (N0.getOpcode() == ISD::AND &&
1385 N0.getOperand(0).getOpcode() == ISD::XOR &&
1386 N0.getOperand(1) == N0.getOperand(0).getOperand(1))) &&
1387 isa<ConstantSDNode>(N0.getOperand(1)) &&
Dan Gohman9d24dc72008-03-13 22:13:53 +00001388 cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue() == 1) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001389 // If this is (X^1) == 0/1, swap the RHS and eliminate the xor. We
1390 // can only do this if the top bits are known zero.
Dan Gohman07961cd2008-02-25 21:11:39 +00001391 unsigned BitWidth = N0.getValueSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001392 if (DAG.MaskedValueIsZero(N0,
Dan Gohman07961cd2008-02-25 21:11:39 +00001393 APInt::getHighBitsSet(BitWidth,
1394 BitWidth-1))) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001395 // Okay, get the un-inverted input value.
Dan Gohman8181bd12008-07-27 21:46:04 +00001396 SDValue Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001397 if (N0.getOpcode() == ISD::XOR)
1398 Val = N0.getOperand(0);
1399 else {
1400 assert(N0.getOpcode() == ISD::AND &&
1401 N0.getOperand(0).getOpcode() == ISD::XOR);
1402 // ((X^1)&1)^1 -> X & 1
1403 Val = DAG.getNode(ISD::AND, N0.getValueType(),
1404 N0.getOperand(0).getOperand(0),
1405 N0.getOperand(1));
1406 }
1407 return DAG.getSetCC(VT, Val, N1,
1408 Cond == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ);
1409 }
1410 }
1411 }
1412
Dan Gohman04ec2f02008-03-03 22:37:52 +00001413 APInt MinVal, MaxVal;
Duncan Sands92c43912008-06-06 12:08:01 +00001414 unsigned OperandBitSize = N1C->getValueType(0).getSizeInBits();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001415 if (ISD::isSignedIntSetCC(Cond)) {
Dan Gohman04ec2f02008-03-03 22:37:52 +00001416 MinVal = APInt::getSignedMinValue(OperandBitSize);
1417 MaxVal = APInt::getSignedMaxValue(OperandBitSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001418 } else {
Dan Gohman04ec2f02008-03-03 22:37:52 +00001419 MinVal = APInt::getMinValue(OperandBitSize);
1420 MaxVal = APInt::getMaxValue(OperandBitSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001421 }
1422
1423 // Canonicalize GE/LE comparisons to use GT/LT comparisons.
1424 if (Cond == ISD::SETGE || Cond == ISD::SETUGE) {
1425 if (C1 == MinVal) return DAG.getConstant(1, VT); // X >= MIN --> true
Dan Gohmand00055a2008-03-03 22:22:56 +00001426 // X >= C0 --> X > (C0-1)
1427 return DAG.getSetCC(VT, N0, DAG.getConstant(C1-1, N1.getValueType()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001428 (Cond == ISD::SETGE) ? ISD::SETGT : ISD::SETUGT);
1429 }
1430
1431 if (Cond == ISD::SETLE || Cond == ISD::SETULE) {
1432 if (C1 == MaxVal) return DAG.getConstant(1, VT); // X <= MAX --> true
Dan Gohmand00055a2008-03-03 22:22:56 +00001433 // X <= C0 --> X < (C0+1)
1434 return DAG.getSetCC(VT, N0, DAG.getConstant(C1+1, N1.getValueType()),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001435 (Cond == ISD::SETLE) ? ISD::SETLT : ISD::SETULT);
1436 }
1437
1438 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal)
1439 return DAG.getConstant(0, VT); // X < MIN --> false
1440 if ((Cond == ISD::SETGE || Cond == ISD::SETUGE) && C1 == MinVal)
1441 return DAG.getConstant(1, VT); // X >= MIN --> true
1442 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal)
1443 return DAG.getConstant(0, VT); // X > MAX --> false
1444 if ((Cond == ISD::SETLE || Cond == ISD::SETULE) && C1 == MaxVal)
1445 return DAG.getConstant(1, VT); // X <= MAX --> true
1446
1447 // Canonicalize setgt X, Min --> setne X, Min
1448 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MinVal)
1449 return DAG.getSetCC(VT, N0, N1, ISD::SETNE);
1450 // Canonicalize setlt X, Max --> setne X, Max
1451 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MaxVal)
1452 return DAG.getSetCC(VT, N0, N1, ISD::SETNE);
1453
1454 // If we have setult X, 1, turn it into seteq X, 0
1455 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal+1)
1456 return DAG.getSetCC(VT, N0, DAG.getConstant(MinVal, N0.getValueType()),
1457 ISD::SETEQ);
1458 // If we have setugt X, Max-1, turn it into seteq X, Max
1459 else if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal-1)
1460 return DAG.getSetCC(VT, N0, DAG.getConstant(MaxVal, N0.getValueType()),
1461 ISD::SETEQ);
1462
1463 // If we have "setcc X, C0", check to see if we can shrink the immediate
1464 // by changing cc.
1465
1466 // SETUGT X, SINTMAX -> SETLT X, 0
1467 if (Cond == ISD::SETUGT && OperandBitSize != 1 &&
1468 C1 == (~0ULL >> (65-OperandBitSize)))
1469 return DAG.getSetCC(VT, N0, DAG.getConstant(0, N1.getValueType()),
1470 ISD::SETLT);
1471
1472 // FIXME: Implement the rest of these.
1473
1474 // Fold bit comparisons when we can.
1475 if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) &&
1476 VT == N0.getValueType() && N0.getOpcode() == ISD::AND)
1477 if (ConstantSDNode *AndRHS =
1478 dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
1479 if (Cond == ISD::SETNE && C1 == 0) {// (X & 8) != 0 --> (X & 8) >> 3
1480 // Perform the xform if the AND RHS is a single bit.
1481 if (isPowerOf2_64(AndRHS->getValue())) {
1482 return DAG.getNode(ISD::SRL, VT, N0,
1483 DAG.getConstant(Log2_64(AndRHS->getValue()),
1484 getShiftAmountTy()));
1485 }
1486 } else if (Cond == ISD::SETEQ && C1 == AndRHS->getValue()) {
1487 // (X & 8) == 8 --> (X & 8) >> 3
1488 // Perform the xform if C1 is a single bit.
Dan Gohmand00055a2008-03-03 22:22:56 +00001489 if (C1.isPowerOf2()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001490 return DAG.getNode(ISD::SRL, VT, N0,
Dan Gohmand00055a2008-03-03 22:22:56 +00001491 DAG.getConstant(C1.logBase2(), getShiftAmountTy()));
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001492 }
1493 }
1494 }
1495 }
Gabor Greif1c80d112008-08-28 21:40:38 +00001496 } else if (isa<ConstantSDNode>(N0.getNode())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001497 // Ensure that the constant occurs on the RHS.
1498 return DAG.getSetCC(VT, N1, N0, ISD::getSetCCSwappedOperands(Cond));
1499 }
1500
Gabor Greif1c80d112008-08-28 21:40:38 +00001501 if (isa<ConstantFPSDNode>(N0.getNode())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001502 // Constant fold or commute setcc.
Dan Gohman8181bd12008-07-27 21:46:04 +00001503 SDValue O = DAG.FoldSetCC(VT, N0, N1, Cond);
Gabor Greif1c80d112008-08-28 21:40:38 +00001504 if (O.getNode()) return O;
1505 } else if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1.getNode())) {
Chris Lattner42184432007-12-29 08:37:08 +00001506 // If the RHS of an FP comparison is a constant, simplify it away in
1507 // some cases.
1508 if (CFP->getValueAPF().isNaN()) {
1509 // If an operand is known to be a nan, we can fold it.
1510 switch (ISD::getUnorderedFlavor(Cond)) {
1511 default: assert(0 && "Unknown flavor!");
1512 case 0: // Known false.
1513 return DAG.getConstant(0, VT);
1514 case 1: // Known true.
1515 return DAG.getConstant(1, VT);
Chris Lattner0bcfea02007-12-30 21:21:10 +00001516 case 2: // Undefined.
Chris Lattner42184432007-12-29 08:37:08 +00001517 return DAG.getNode(ISD::UNDEF, VT);
1518 }
1519 }
1520
1521 // Otherwise, we know the RHS is not a NaN. Simplify the node to drop the
1522 // constant if knowing that the operand is non-nan is enough. We prefer to
1523 // have SETO(x,x) instead of SETO(x, 0.0) because this avoids having to
1524 // materialize 0.0.
1525 if (Cond == ISD::SETO || Cond == ISD::SETUO)
1526 return DAG.getSetCC(VT, N0, N0, Cond);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001527 }
1528
1529 if (N0 == N1) {
1530 // We can always fold X == X for integer setcc's.
Duncan Sands92c43912008-06-06 12:08:01 +00001531 if (N0.getValueType().isInteger())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001532 return DAG.getConstant(ISD::isTrueWhenEqual(Cond), VT);
1533 unsigned UOF = ISD::getUnorderedFlavor(Cond);
1534 if (UOF == 2) // FP operators that are undefined on NaNs.
1535 return DAG.getConstant(ISD::isTrueWhenEqual(Cond), VT);
1536 if (UOF == unsigned(ISD::isTrueWhenEqual(Cond)))
1537 return DAG.getConstant(UOF, VT);
1538 // Otherwise, we can't fold it. However, we can simplify it to SETUO/SETO
1539 // if it is not already.
1540 ISD::CondCode NewCond = UOF == 0 ? ISD::SETO : ISD::SETUO;
1541 if (NewCond != Cond)
1542 return DAG.getSetCC(VT, N0, N1, NewCond);
1543 }
1544
1545 if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) &&
Duncan Sands92c43912008-06-06 12:08:01 +00001546 N0.getValueType().isInteger()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001547 if (N0.getOpcode() == ISD::ADD || N0.getOpcode() == ISD::SUB ||
1548 N0.getOpcode() == ISD::XOR) {
1549 // Simplify (X+Y) == (X+Z) --> Y == Z
1550 if (N0.getOpcode() == N1.getOpcode()) {
1551 if (N0.getOperand(0) == N1.getOperand(0))
1552 return DAG.getSetCC(VT, N0.getOperand(1), N1.getOperand(1), Cond);
1553 if (N0.getOperand(1) == N1.getOperand(1))
1554 return DAG.getSetCC(VT, N0.getOperand(0), N1.getOperand(0), Cond);
1555 if (DAG.isCommutativeBinOp(N0.getOpcode())) {
1556 // If X op Y == Y op X, try other combinations.
1557 if (N0.getOperand(0) == N1.getOperand(1))
1558 return DAG.getSetCC(VT, N0.getOperand(1), N1.getOperand(0), Cond);
1559 if (N0.getOperand(1) == N1.getOperand(0))
1560 return DAG.getSetCC(VT, N0.getOperand(0), N1.getOperand(1), Cond);
1561 }
1562 }
1563
1564 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(N1)) {
1565 if (ConstantSDNode *LHSR = dyn_cast<ConstantSDNode>(N0.getOperand(1))) {
1566 // Turn (X+C1) == C2 --> X == C2-C1
Gabor Greif1c80d112008-08-28 21:40:38 +00001567 if (N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001568 return DAG.getSetCC(VT, N0.getOperand(0),
1569 DAG.getConstant(RHSC->getValue()-LHSR->getValue(),
1570 N0.getValueType()), Cond);
1571 }
1572
1573 // Turn (X^C1) == C2 into X == C1^C2 iff X&~C1 = 0.
1574 if (N0.getOpcode() == ISD::XOR)
1575 // If we know that all of the inverted bits are zero, don't bother
1576 // performing the inversion.
Dan Gohman07961cd2008-02-25 21:11:39 +00001577 if (DAG.MaskedValueIsZero(N0.getOperand(0), ~LHSR->getAPIntValue()))
1578 return
1579 DAG.getSetCC(VT, N0.getOperand(0),
1580 DAG.getConstant(LHSR->getAPIntValue() ^
1581 RHSC->getAPIntValue(),
1582 N0.getValueType()),
1583 Cond);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001584 }
1585
1586 // Turn (C1-X) == C2 --> X == C1-C2
1587 if (ConstantSDNode *SUBC = dyn_cast<ConstantSDNode>(N0.getOperand(0))) {
Gabor Greif1c80d112008-08-28 21:40:38 +00001588 if (N0.getOpcode() == ISD::SUB && N0.getNode()->hasOneUse()) {
Dan Gohman07961cd2008-02-25 21:11:39 +00001589 return
1590 DAG.getSetCC(VT, N0.getOperand(1),
1591 DAG.getConstant(SUBC->getAPIntValue() -
1592 RHSC->getAPIntValue(),
1593 N0.getValueType()),
1594 Cond);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001595 }
1596 }
1597 }
1598
1599 // Simplify (X+Z) == X --> Z == 0
1600 if (N0.getOperand(0) == N1)
1601 return DAG.getSetCC(VT, N0.getOperand(1),
1602 DAG.getConstant(0, N0.getValueType()), Cond);
1603 if (N0.getOperand(1) == N1) {
1604 if (DAG.isCommutativeBinOp(N0.getOpcode()))
1605 return DAG.getSetCC(VT, N0.getOperand(0),
1606 DAG.getConstant(0, N0.getValueType()), Cond);
Gabor Greif1c80d112008-08-28 21:40:38 +00001607 else if (N0.getNode()->hasOneUse()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001608 assert(N0.getOpcode() == ISD::SUB && "Unexpected operation!");
1609 // (Z-X) == X --> Z == X<<1
Dan Gohman8181bd12008-07-27 21:46:04 +00001610 SDValue SH = DAG.getNode(ISD::SHL, N1.getValueType(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001611 N1,
1612 DAG.getConstant(1, getShiftAmountTy()));
1613 if (!DCI.isCalledByLegalizer())
Gabor Greif1c80d112008-08-28 21:40:38 +00001614 DCI.AddToWorklist(SH.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001615 return DAG.getSetCC(VT, N0.getOperand(0), SH, Cond);
1616 }
1617 }
1618 }
1619
1620 if (N1.getOpcode() == ISD::ADD || N1.getOpcode() == ISD::SUB ||
1621 N1.getOpcode() == ISD::XOR) {
1622 // Simplify X == (X+Z) --> Z == 0
1623 if (N1.getOperand(0) == N0) {
1624 return DAG.getSetCC(VT, N1.getOperand(1),
1625 DAG.getConstant(0, N1.getValueType()), Cond);
1626 } else if (N1.getOperand(1) == N0) {
1627 if (DAG.isCommutativeBinOp(N1.getOpcode())) {
1628 return DAG.getSetCC(VT, N1.getOperand(0),
1629 DAG.getConstant(0, N1.getValueType()), Cond);
Gabor Greif1c80d112008-08-28 21:40:38 +00001630 } else if (N1.getNode()->hasOneUse()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001631 assert(N1.getOpcode() == ISD::SUB && "Unexpected operation!");
1632 // X == (Z-X) --> X<<1 == Z
Dan Gohman8181bd12008-07-27 21:46:04 +00001633 SDValue SH = DAG.getNode(ISD::SHL, N1.getValueType(), N0,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001634 DAG.getConstant(1, getShiftAmountTy()));
1635 if (!DCI.isCalledByLegalizer())
Gabor Greif1c80d112008-08-28 21:40:38 +00001636 DCI.AddToWorklist(SH.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001637 return DAG.getSetCC(VT, SH, N1.getOperand(0), Cond);
1638 }
1639 }
1640 }
1641 }
1642
1643 // Fold away ALL boolean setcc's.
Dan Gohman8181bd12008-07-27 21:46:04 +00001644 SDValue Temp;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001645 if (N0.getValueType() == MVT::i1 && foldBooleans) {
1646 switch (Cond) {
1647 default: assert(0 && "Unknown integer setcc!");
1648 case ISD::SETEQ: // X == Y -> (X^Y)^1
1649 Temp = DAG.getNode(ISD::XOR, MVT::i1, N0, N1);
1650 N0 = DAG.getNode(ISD::XOR, MVT::i1, Temp, DAG.getConstant(1, MVT::i1));
1651 if (!DCI.isCalledByLegalizer())
Gabor Greif1c80d112008-08-28 21:40:38 +00001652 DCI.AddToWorklist(Temp.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001653 break;
1654 case ISD::SETNE: // X != Y --> (X^Y)
1655 N0 = DAG.getNode(ISD::XOR, MVT::i1, N0, N1);
1656 break;
1657 case ISD::SETGT: // X >s Y --> X == 0 & Y == 1 --> X^1 & Y
1658 case ISD::SETULT: // X <u Y --> X == 0 & Y == 1 --> X^1 & Y
1659 Temp = DAG.getNode(ISD::XOR, MVT::i1, N0, DAG.getConstant(1, MVT::i1));
1660 N0 = DAG.getNode(ISD::AND, MVT::i1, N1, Temp);
1661 if (!DCI.isCalledByLegalizer())
Gabor Greif1c80d112008-08-28 21:40:38 +00001662 DCI.AddToWorklist(Temp.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001663 break;
1664 case ISD::SETLT: // X <s Y --> X == 1 & Y == 0 --> Y^1 & X
1665 case ISD::SETUGT: // X >u Y --> X == 1 & Y == 0 --> Y^1 & X
1666 Temp = DAG.getNode(ISD::XOR, MVT::i1, N1, DAG.getConstant(1, MVT::i1));
1667 N0 = DAG.getNode(ISD::AND, MVT::i1, N0, Temp);
1668 if (!DCI.isCalledByLegalizer())
Gabor Greif1c80d112008-08-28 21:40:38 +00001669 DCI.AddToWorklist(Temp.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001670 break;
1671 case ISD::SETULE: // X <=u Y --> X == 0 | Y == 1 --> X^1 | Y
1672 case ISD::SETGE: // X >=s Y --> X == 0 | Y == 1 --> X^1 | Y
1673 Temp = DAG.getNode(ISD::XOR, MVT::i1, N0, DAG.getConstant(1, MVT::i1));
1674 N0 = DAG.getNode(ISD::OR, MVT::i1, N1, Temp);
1675 if (!DCI.isCalledByLegalizer())
Gabor Greif1c80d112008-08-28 21:40:38 +00001676 DCI.AddToWorklist(Temp.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001677 break;
1678 case ISD::SETUGE: // X >=u Y --> X == 1 | Y == 0 --> Y^1 | X
1679 case ISD::SETLE: // X <=s Y --> X == 1 | Y == 0 --> Y^1 | X
1680 Temp = DAG.getNode(ISD::XOR, MVT::i1, N1, DAG.getConstant(1, MVT::i1));
1681 N0 = DAG.getNode(ISD::OR, MVT::i1, N0, Temp);
1682 break;
1683 }
1684 if (VT != MVT::i1) {
1685 if (!DCI.isCalledByLegalizer())
Gabor Greif1c80d112008-08-28 21:40:38 +00001686 DCI.AddToWorklist(N0.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001687 // FIXME: If running after legalize, we probably can't do this.
1688 N0 = DAG.getNode(ISD::ZERO_EXTEND, VT, N0);
1689 }
1690 return N0;
1691 }
1692
1693 // Could not fold it.
Dan Gohman8181bd12008-07-27 21:46:04 +00001694 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001695}
1696
Evan Chengef7be082008-05-12 19:56:52 +00001697/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
1698/// node is a GlobalAddress + offset.
1699bool TargetLowering::isGAPlusOffset(SDNode *N, GlobalValue* &GA,
1700 int64_t &Offset) const {
1701 if (isa<GlobalAddressSDNode>(N)) {
Dan Gohman00403842008-06-09 22:05:52 +00001702 GlobalAddressSDNode *GASD = cast<GlobalAddressSDNode>(N);
1703 GA = GASD->getGlobal();
1704 Offset += GASD->getOffset();
Evan Chengef7be082008-05-12 19:56:52 +00001705 return true;
1706 }
1707
1708 if (N->getOpcode() == ISD::ADD) {
Dan Gohman8181bd12008-07-27 21:46:04 +00001709 SDValue N1 = N->getOperand(0);
1710 SDValue N2 = N->getOperand(1);
Gabor Greif1c80d112008-08-28 21:40:38 +00001711 if (isGAPlusOffset(N1.getNode(), GA, Offset)) {
Evan Chengef7be082008-05-12 19:56:52 +00001712 ConstantSDNode *V = dyn_cast<ConstantSDNode>(N2);
1713 if (V) {
1714 Offset += V->getSignExtended();
1715 return true;
1716 }
Gabor Greif1c80d112008-08-28 21:40:38 +00001717 } else if (isGAPlusOffset(N2.getNode(), GA, Offset)) {
Evan Chengef7be082008-05-12 19:56:52 +00001718 ConstantSDNode *V = dyn_cast<ConstantSDNode>(N1);
1719 if (V) {
1720 Offset += V->getSignExtended();
1721 return true;
1722 }
1723 }
1724 }
1725 return false;
1726}
1727
1728
1729/// isConsecutiveLoad - Return true if LD (which must be a LoadSDNode) is
1730/// loading 'Bytes' bytes from a location that is 'Dist' units away from the
1731/// location that the 'Base' load is loading from.
1732bool TargetLowering::isConsecutiveLoad(SDNode *LD, SDNode *Base,
1733 unsigned Bytes, int Dist,
Evan Chengb6290462008-05-12 23:04:07 +00001734 const MachineFrameInfo *MFI) const {
Gabor Greif1c80d112008-08-28 21:40:38 +00001735 if (LD->getOperand(0).getNode() != Base->getOperand(0).getNode())
Evan Chengef7be082008-05-12 19:56:52 +00001736 return false;
Duncan Sands92c43912008-06-06 12:08:01 +00001737 MVT VT = LD->getValueType(0);
1738 if (VT.getSizeInBits() / 8 != Bytes)
Evan Chengef7be082008-05-12 19:56:52 +00001739 return false;
1740
Dan Gohman8181bd12008-07-27 21:46:04 +00001741 SDValue Loc = LD->getOperand(1);
1742 SDValue BaseLoc = Base->getOperand(1);
Evan Chengef7be082008-05-12 19:56:52 +00001743 if (Loc.getOpcode() == ISD::FrameIndex) {
1744 if (BaseLoc.getOpcode() != ISD::FrameIndex)
1745 return false;
1746 int FI = cast<FrameIndexSDNode>(Loc)->getIndex();
1747 int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex();
1748 int FS = MFI->getObjectSize(FI);
1749 int BFS = MFI->getObjectSize(BFI);
1750 if (FS != BFS || FS != (int)Bytes) return false;
1751 return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes);
1752 }
1753
1754 GlobalValue *GV1 = NULL;
1755 GlobalValue *GV2 = NULL;
1756 int64_t Offset1 = 0;
1757 int64_t Offset2 = 0;
Gabor Greif1c80d112008-08-28 21:40:38 +00001758 bool isGA1 = isGAPlusOffset(Loc.getNode(), GV1, Offset1);
1759 bool isGA2 = isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2);
Evan Chengef7be082008-05-12 19:56:52 +00001760 if (isGA1 && isGA2 && GV1 == GV2)
1761 return Offset1 == (Offset2 + Dist*Bytes);
1762 return false;
1763}
1764
1765
Dan Gohman8181bd12008-07-27 21:46:04 +00001766SDValue TargetLowering::
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001767PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const {
1768 // Default implementation: no optimization.
Dan Gohman8181bd12008-07-27 21:46:04 +00001769 return SDValue();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001770}
1771
1772//===----------------------------------------------------------------------===//
1773// Inline Assembler Implementation Methods
1774//===----------------------------------------------------------------------===//
1775
Chris Lattner4cf8c702008-04-27 00:09:47 +00001776
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001777TargetLowering::ConstraintType
1778TargetLowering::getConstraintType(const std::string &Constraint) const {
1779 // FIXME: lots more standard ones to handle.
1780 if (Constraint.size() == 1) {
1781 switch (Constraint[0]) {
1782 default: break;
1783 case 'r': return C_RegisterClass;
1784 case 'm': // memory
1785 case 'o': // offsetable
1786 case 'V': // not offsetable
1787 return C_Memory;
1788 case 'i': // Simple Integer or Relocatable Constant
1789 case 'n': // Simple Integer
1790 case 's': // Relocatable Constant
1791 case 'X': // Allow ANY value.
1792 case 'I': // Target registers.
1793 case 'J':
1794 case 'K':
1795 case 'L':
1796 case 'M':
1797 case 'N':
1798 case 'O':
1799 case 'P':
1800 return C_Other;
1801 }
1802 }
1803
1804 if (Constraint.size() > 1 && Constraint[0] == '{' &&
1805 Constraint[Constraint.size()-1] == '}')
1806 return C_Register;
1807 return C_Unknown;
1808}
1809
Dale Johannesene99fc902008-01-29 02:21:21 +00001810/// LowerXConstraint - try to replace an X constraint, which matches anything,
1811/// with another that has more specific requirements based on the type of the
1812/// corresponding operand.
Duncan Sands92c43912008-06-06 12:08:01 +00001813const char *TargetLowering::LowerXConstraint(MVT ConstraintVT) const{
1814 if (ConstraintVT.isInteger())
Chris Lattnereca405c2008-04-26 23:02:14 +00001815 return "r";
Duncan Sands92c43912008-06-06 12:08:01 +00001816 if (ConstraintVT.isFloatingPoint())
Chris Lattnereca405c2008-04-26 23:02:14 +00001817 return "f"; // works for many targets
1818 return 0;
Dale Johannesene99fc902008-01-29 02:21:21 +00001819}
1820
Chris Lattnera531abc2007-08-25 00:47:38 +00001821/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
1822/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman8181bd12008-07-27 21:46:04 +00001823void TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattnera531abc2007-08-25 00:47:38 +00001824 char ConstraintLetter,
Dan Gohman8181bd12008-07-27 21:46:04 +00001825 std::vector<SDValue> &Ops,
Chris Lattnereca405c2008-04-26 23:02:14 +00001826 SelectionDAG &DAG) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001827 switch (ConstraintLetter) {
1828 default: break;
Dale Johannesencfb19e62007-11-05 21:20:28 +00001829 case 'X': // Allows any operand; labels (basic block) use this.
1830 if (Op.getOpcode() == ISD::BasicBlock) {
1831 Ops.push_back(Op);
1832 return;
1833 }
1834 // fall through
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001835 case 'i': // Simple Integer or Relocatable Constant
1836 case 'n': // Simple Integer
Dale Johannesencfb19e62007-11-05 21:20:28 +00001837 case 's': { // Relocatable Constant
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001838 // These operands are interested in values of the form (GV+C), where C may
1839 // be folded in as an offset of GV, or it may be explicitly added. Also, it
1840 // is possible and fine if either GV or C are missing.
1841 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op);
1842 GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op);
1843
1844 // If we have "(add GV, C)", pull out GV/C
1845 if (Op.getOpcode() == ISD::ADD) {
1846 C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
1847 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0));
1848 if (C == 0 || GA == 0) {
1849 C = dyn_cast<ConstantSDNode>(Op.getOperand(0));
1850 GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(1));
1851 }
1852 if (C == 0 || GA == 0)
1853 C = 0, GA = 0;
1854 }
1855
1856 // If we find a valid operand, map to the TargetXXX version so that the
1857 // value itself doesn't get selected.
1858 if (GA) { // Either &GV or &GV+C
1859 if (ConstraintLetter != 'n') {
1860 int64_t Offs = GA->getOffset();
1861 if (C) Offs += C->getValue();
Chris Lattnera531abc2007-08-25 00:47:38 +00001862 Ops.push_back(DAG.getTargetGlobalAddress(GA->getGlobal(),
1863 Op.getValueType(), Offs));
1864 return;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001865 }
1866 }
1867 if (C) { // just C, no GV.
1868 // Simple constants are not allowed for 's'.
Chris Lattnera531abc2007-08-25 00:47:38 +00001869 if (ConstraintLetter != 's') {
1870 Ops.push_back(DAG.getTargetConstant(C->getValue(), Op.getValueType()));
1871 return;
1872 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001873 }
1874 break;
1875 }
1876 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001877}
1878
1879std::vector<unsigned> TargetLowering::
1880getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands92c43912008-06-06 12:08:01 +00001881 MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001882 return std::vector<unsigned>();
1883}
1884
1885
1886std::pair<unsigned, const TargetRegisterClass*> TargetLowering::
1887getRegForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands92c43912008-06-06 12:08:01 +00001888 MVT VT) const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001889 if (Constraint[0] != '{')
1890 return std::pair<unsigned, const TargetRegisterClass*>(0, 0);
1891 assert(*(Constraint.end()-1) == '}' && "Not a brace enclosed constraint?");
1892
1893 // Remove the braces from around the name.
1894 std::string RegName(Constraint.begin()+1, Constraint.end()-1);
1895
1896 // Figure out which register class contains this reg.
Dan Gohman1e57df32008-02-10 18:45:23 +00001897 const TargetRegisterInfo *RI = TM.getRegisterInfo();
1898 for (TargetRegisterInfo::regclass_iterator RCI = RI->regclass_begin(),
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001899 E = RI->regclass_end(); RCI != E; ++RCI) {
1900 const TargetRegisterClass *RC = *RCI;
1901
1902 // If none of the the value types for this register class are valid, we
1903 // can't use it. For example, 64-bit reg classes on 32-bit targets.
1904 bool isLegal = false;
1905 for (TargetRegisterClass::vt_iterator I = RC->vt_begin(), E = RC->vt_end();
1906 I != E; ++I) {
1907 if (isTypeLegal(*I)) {
1908 isLegal = true;
1909 break;
1910 }
1911 }
1912
1913 if (!isLegal) continue;
1914
1915 for (TargetRegisterClass::iterator I = RC->begin(), E = RC->end();
1916 I != E; ++I) {
Bill Wendling8eeb9792008-02-26 21:11:01 +00001917 if (StringsEqualNoCase(RegName, RI->get(*I).AsmName))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001918 return std::make_pair(*I, RC);
1919 }
1920 }
1921
1922 return std::pair<unsigned, const TargetRegisterClass*>(0, 0);
1923}
1924
1925//===----------------------------------------------------------------------===//
Chris Lattner4cf8c702008-04-27 00:09:47 +00001926// Constraint Selection.
1927
1928/// getConstraintGenerality - Return an integer indicating how general CT
1929/// is.
1930static unsigned getConstraintGenerality(TargetLowering::ConstraintType CT) {
1931 switch (CT) {
1932 default: assert(0 && "Unknown constraint type!");
1933 case TargetLowering::C_Other:
1934 case TargetLowering::C_Unknown:
1935 return 0;
1936 case TargetLowering::C_Register:
1937 return 1;
1938 case TargetLowering::C_RegisterClass:
1939 return 2;
1940 case TargetLowering::C_Memory:
1941 return 3;
1942 }
1943}
1944
1945/// ChooseConstraint - If there are multiple different constraints that we
1946/// could pick for this operand (e.g. "imr") try to pick the 'best' one.
Chris Lattnerf9fde542008-04-27 01:49:46 +00001947/// This is somewhat tricky: constraints fall into four classes:
Chris Lattner4cf8c702008-04-27 00:09:47 +00001948/// Other -> immediates and magic values
1949/// Register -> one specific register
1950/// RegisterClass -> a group of regs
1951/// Memory -> memory
1952/// Ideally, we would pick the most specific constraint possible: if we have
1953/// something that fits into a register, we would pick it. The problem here
1954/// is that if we have something that could either be in a register or in
1955/// memory that use of the register could cause selection of *other*
1956/// operands to fail: they might only succeed if we pick memory. Because of
1957/// this the heuristic we use is:
1958///
1959/// 1) If there is an 'other' constraint, and if the operand is valid for
1960/// that constraint, use it. This makes us take advantage of 'i'
1961/// constraints when available.
1962/// 2) Otherwise, pick the most general constraint present. This prefers
1963/// 'm' over 'r', for example.
1964///
1965static void ChooseConstraint(TargetLowering::AsmOperandInfo &OpInfo,
Chris Lattner4486c2e2008-04-27 00:37:18 +00001966 const TargetLowering &TLI,
Dan Gohman8181bd12008-07-27 21:46:04 +00001967 SDValue Op, SelectionDAG *DAG) {
Chris Lattner4cf8c702008-04-27 00:09:47 +00001968 assert(OpInfo.Codes.size() > 1 && "Doesn't have multiple constraint options");
1969 unsigned BestIdx = 0;
1970 TargetLowering::ConstraintType BestType = TargetLowering::C_Unknown;
1971 int BestGenerality = -1;
1972
1973 // Loop over the options, keeping track of the most general one.
1974 for (unsigned i = 0, e = OpInfo.Codes.size(); i != e; ++i) {
1975 TargetLowering::ConstraintType CType =
1976 TLI.getConstraintType(OpInfo.Codes[i]);
1977
Chris Lattner4486c2e2008-04-27 00:37:18 +00001978 // If this is an 'other' constraint, see if the operand is valid for it.
1979 // For example, on X86 we might have an 'rI' constraint. If the operand
1980 // is an integer in the range [0..31] we want to use I (saving a load
1981 // of a register), otherwise we must use 'r'.
Gabor Greif1c80d112008-08-28 21:40:38 +00001982 if (CType == TargetLowering::C_Other && Op.getNode()) {
Chris Lattner4486c2e2008-04-27 00:37:18 +00001983 assert(OpInfo.Codes[i].size() == 1 &&
1984 "Unhandled multi-letter 'other' constraint");
Dan Gohman8181bd12008-07-27 21:46:04 +00001985 std::vector<SDValue> ResultOps;
Chris Lattner4486c2e2008-04-27 00:37:18 +00001986 TLI.LowerAsmOperandForConstraint(Op, OpInfo.Codes[i][0],
1987 ResultOps, *DAG);
1988 if (!ResultOps.empty()) {
1989 BestType = CType;
1990 BestIdx = i;
1991 break;
1992 }
1993 }
1994
Chris Lattner4cf8c702008-04-27 00:09:47 +00001995 // This constraint letter is more general than the previous one, use it.
1996 int Generality = getConstraintGenerality(CType);
1997 if (Generality > BestGenerality) {
1998 BestType = CType;
1999 BestIdx = i;
2000 BestGenerality = Generality;
2001 }
2002 }
2003
2004 OpInfo.ConstraintCode = OpInfo.Codes[BestIdx];
2005 OpInfo.ConstraintType = BestType;
2006}
2007
2008/// ComputeConstraintToUse - Determines the constraint code and constraint
2009/// type to use for the specific AsmOperandInfo, setting
2010/// OpInfo.ConstraintCode and OpInfo.ConstraintType.
Chris Lattner4486c2e2008-04-27 00:37:18 +00002011void TargetLowering::ComputeConstraintToUse(AsmOperandInfo &OpInfo,
Dan Gohman8181bd12008-07-27 21:46:04 +00002012 SDValue Op,
Chris Lattner4486c2e2008-04-27 00:37:18 +00002013 SelectionDAG *DAG) const {
Chris Lattner4cf8c702008-04-27 00:09:47 +00002014 assert(!OpInfo.Codes.empty() && "Must have at least one constraint");
2015
2016 // Single-letter constraints ('r') are very common.
2017 if (OpInfo.Codes.size() == 1) {
2018 OpInfo.ConstraintCode = OpInfo.Codes[0];
2019 OpInfo.ConstraintType = getConstraintType(OpInfo.ConstraintCode);
2020 } else {
Chris Lattner4486c2e2008-04-27 00:37:18 +00002021 ChooseConstraint(OpInfo, *this, Op, DAG);
Chris Lattner4cf8c702008-04-27 00:09:47 +00002022 }
2023
2024 // 'X' matches anything.
2025 if (OpInfo.ConstraintCode == "X" && OpInfo.CallOperandVal) {
2026 // Labels and constants are handled elsewhere ('X' is the only thing
2027 // that matches labels).
2028 if (isa<BasicBlock>(OpInfo.CallOperandVal) ||
2029 isa<ConstantInt>(OpInfo.CallOperandVal))
2030 return;
2031
2032 // Otherwise, try to resolve it to something we know about by looking at
2033 // the actual operand type.
2034 if (const char *Repl = LowerXConstraint(OpInfo.ConstraintVT)) {
2035 OpInfo.ConstraintCode = Repl;
2036 OpInfo.ConstraintType = getConstraintType(OpInfo.ConstraintCode);
2037 }
2038 }
2039}
2040
2041//===----------------------------------------------------------------------===//
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002042// Loop Strength Reduction hooks
2043//===----------------------------------------------------------------------===//
2044
2045/// isLegalAddressingMode - Return true if the addressing mode represented
2046/// by AM is legal for this target, for a load/store of the specified type.
2047bool TargetLowering::isLegalAddressingMode(const AddrMode &AM,
2048 const Type *Ty) const {
2049 // The default implementation of this implements a conservative RISCy, r+r and
2050 // r+i addr mode.
2051
2052 // Allows a sign-extended 16-bit immediate field.
2053 if (AM.BaseOffs <= -(1LL << 16) || AM.BaseOffs >= (1LL << 16)-1)
2054 return false;
2055
2056 // No global is ever allowed as a base.
2057 if (AM.BaseGV)
2058 return false;
2059
2060 // Only support r+r,
2061 switch (AM.Scale) {
2062 case 0: // "r+i" or just "i", depending on HasBaseReg.
2063 break;
2064 case 1:
2065 if (AM.HasBaseReg && AM.BaseOffs) // "r+r+i" is not allowed.
2066 return false;
2067 // Otherwise we have r+r or r+i.
2068 break;
2069 case 2:
2070 if (AM.HasBaseReg || AM.BaseOffs) // 2*r+r or 2*r+i is not allowed.
2071 return false;
2072 // Allow 2*r as r+r.
2073 break;
2074 }
2075
2076 return true;
2077}
2078
2079// Magic for divide replacement
2080
2081struct ms {
2082 int64_t m; // magic number
2083 int64_t s; // shift amount
2084};
2085
2086struct mu {
2087 uint64_t m; // magic number
2088 int64_t a; // add indicator
2089 int64_t s; // shift amount
2090};
2091
2092/// magic - calculate the magic numbers required to codegen an integer sdiv as
2093/// a sequence of multiply and shifts. Requires that the divisor not be 0, 1,
2094/// or -1.
2095static ms magic32(int32_t d) {
2096 int32_t p;
2097 uint32_t ad, anc, delta, q1, r1, q2, r2, t;
2098 const uint32_t two31 = 0x80000000U;
2099 struct ms mag;
2100
2101 ad = abs(d);
2102 t = two31 + ((uint32_t)d >> 31);
2103 anc = t - 1 - t%ad; // absolute value of nc
2104 p = 31; // initialize p
2105 q1 = two31/anc; // initialize q1 = 2p/abs(nc)
2106 r1 = two31 - q1*anc; // initialize r1 = rem(2p,abs(nc))
2107 q2 = two31/ad; // initialize q2 = 2p/abs(d)
2108 r2 = two31 - q2*ad; // initialize r2 = rem(2p,abs(d))
2109 do {
2110 p = p + 1;
2111 q1 = 2*q1; // update q1 = 2p/abs(nc)
2112 r1 = 2*r1; // update r1 = rem(2p/abs(nc))
2113 if (r1 >= anc) { // must be unsigned comparison
2114 q1 = q1 + 1;
2115 r1 = r1 - anc;
2116 }
2117 q2 = 2*q2; // update q2 = 2p/abs(d)
2118 r2 = 2*r2; // update r2 = rem(2p/abs(d))
2119 if (r2 >= ad) { // must be unsigned comparison
2120 q2 = q2 + 1;
2121 r2 = r2 - ad;
2122 }
2123 delta = ad - r2;
2124 } while (q1 < delta || (q1 == delta && r1 == 0));
2125
2126 mag.m = (int32_t)(q2 + 1); // make sure to sign extend
2127 if (d < 0) mag.m = -mag.m; // resulting magic number
2128 mag.s = p - 32; // resulting shift
2129 return mag;
2130}
2131
2132/// magicu - calculate the magic numbers required to codegen an integer udiv as
2133/// a sequence of multiply, add and shifts. Requires that the divisor not be 0.
2134static mu magicu32(uint32_t d) {
2135 int32_t p;
2136 uint32_t nc, delta, q1, r1, q2, r2;
2137 struct mu magu;
2138 magu.a = 0; // initialize "add" indicator
2139 nc = - 1 - (-d)%d;
2140 p = 31; // initialize p
2141 q1 = 0x80000000/nc; // initialize q1 = 2p/nc
2142 r1 = 0x80000000 - q1*nc; // initialize r1 = rem(2p,nc)
2143 q2 = 0x7FFFFFFF/d; // initialize q2 = (2p-1)/d
2144 r2 = 0x7FFFFFFF - q2*d; // initialize r2 = rem((2p-1),d)
2145 do {
2146 p = p + 1;
2147 if (r1 >= nc - r1 ) {
2148 q1 = 2*q1 + 1; // update q1
2149 r1 = 2*r1 - nc; // update r1
2150 }
2151 else {
2152 q1 = 2*q1; // update q1
2153 r1 = 2*r1; // update r1
2154 }
2155 if (r2 + 1 >= d - r2) {
2156 if (q2 >= 0x7FFFFFFF) magu.a = 1;
2157 q2 = 2*q2 + 1; // update q2
2158 r2 = 2*r2 + 1 - d; // update r2
2159 }
2160 else {
2161 if (q2 >= 0x80000000) magu.a = 1;
2162 q2 = 2*q2; // update q2
2163 r2 = 2*r2 + 1; // update r2
2164 }
2165 delta = d - 1 - r2;
2166 } while (p < 64 && (q1 < delta || (q1 == delta && r1 == 0)));
2167 magu.m = q2 + 1; // resulting magic number
2168 magu.s = p - 32; // resulting shift
2169 return magu;
2170}
2171
2172/// magic - calculate the magic numbers required to codegen an integer sdiv as
2173/// a sequence of multiply and shifts. Requires that the divisor not be 0, 1,
2174/// or -1.
2175static ms magic64(int64_t d) {
2176 int64_t p;
2177 uint64_t ad, anc, delta, q1, r1, q2, r2, t;
2178 const uint64_t two63 = 9223372036854775808ULL; // 2^63
2179 struct ms mag;
2180
2181 ad = d >= 0 ? d : -d;
2182 t = two63 + ((uint64_t)d >> 63);
2183 anc = t - 1 - t%ad; // absolute value of nc
2184 p = 63; // initialize p
2185 q1 = two63/anc; // initialize q1 = 2p/abs(nc)
2186 r1 = two63 - q1*anc; // initialize r1 = rem(2p,abs(nc))
2187 q2 = two63/ad; // initialize q2 = 2p/abs(d)
2188 r2 = two63 - q2*ad; // initialize r2 = rem(2p,abs(d))
2189 do {
2190 p = p + 1;
2191 q1 = 2*q1; // update q1 = 2p/abs(nc)
2192 r1 = 2*r1; // update r1 = rem(2p/abs(nc))
2193 if (r1 >= anc) { // must be unsigned comparison
2194 q1 = q1 + 1;
2195 r1 = r1 - anc;
2196 }
2197 q2 = 2*q2; // update q2 = 2p/abs(d)
2198 r2 = 2*r2; // update r2 = rem(2p/abs(d))
2199 if (r2 >= ad) { // must be unsigned comparison
2200 q2 = q2 + 1;
2201 r2 = r2 - ad;
2202 }
2203 delta = ad - r2;
2204 } while (q1 < delta || (q1 == delta && r1 == 0));
2205
2206 mag.m = q2 + 1;
2207 if (d < 0) mag.m = -mag.m; // resulting magic number
2208 mag.s = p - 64; // resulting shift
2209 return mag;
2210}
2211
2212/// magicu - calculate the magic numbers required to codegen an integer udiv as
2213/// a sequence of multiply, add and shifts. Requires that the divisor not be 0.
2214static mu magicu64(uint64_t d)
2215{
2216 int64_t p;
2217 uint64_t nc, delta, q1, r1, q2, r2;
2218 struct mu magu;
2219 magu.a = 0; // initialize "add" indicator
2220 nc = - 1 - (-d)%d;
2221 p = 63; // initialize p
2222 q1 = 0x8000000000000000ull/nc; // initialize q1 = 2p/nc
2223 r1 = 0x8000000000000000ull - q1*nc; // initialize r1 = rem(2p,nc)
2224 q2 = 0x7FFFFFFFFFFFFFFFull/d; // initialize q2 = (2p-1)/d
2225 r2 = 0x7FFFFFFFFFFFFFFFull - q2*d; // initialize r2 = rem((2p-1),d)
2226 do {
2227 p = p + 1;
2228 if (r1 >= nc - r1 ) {
2229 q1 = 2*q1 + 1; // update q1
2230 r1 = 2*r1 - nc; // update r1
2231 }
2232 else {
2233 q1 = 2*q1; // update q1
2234 r1 = 2*r1; // update r1
2235 }
2236 if (r2 + 1 >= d - r2) {
2237 if (q2 >= 0x7FFFFFFFFFFFFFFFull) magu.a = 1;
2238 q2 = 2*q2 + 1; // update q2
2239 r2 = 2*r2 + 1 - d; // update r2
2240 }
2241 else {
2242 if (q2 >= 0x8000000000000000ull) magu.a = 1;
2243 q2 = 2*q2; // update q2
2244 r2 = 2*r2 + 1; // update r2
2245 }
2246 delta = d - 1 - r2;
2247 } while (p < 128 && (q1 < delta || (q1 == delta && r1 == 0)));
2248 magu.m = q2 + 1; // resulting magic number
2249 magu.s = p - 64; // resulting shift
2250 return magu;
2251}
2252
2253/// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,
2254/// return a DAG expression to select that will generate the same value by
2255/// multiplying by a magic number. See:
2256/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman8181bd12008-07-27 21:46:04 +00002257SDValue TargetLowering::BuildSDIV(SDNode *N, SelectionDAG &DAG,
2258 std::vector<SDNode*>* Created) const {
Duncan Sands92c43912008-06-06 12:08:01 +00002259 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002260
2261 // Check to see if we can do this.
2262 if (!isTypeLegal(VT) || (VT != MVT::i32 && VT != MVT::i64))
Dan Gohman8181bd12008-07-27 21:46:04 +00002263 return SDValue(); // BuildSDIV only operates on i32 or i64
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002264
2265 int64_t d = cast<ConstantSDNode>(N->getOperand(1))->getSignExtended();
2266 ms magics = (VT == MVT::i32) ? magic32(d) : magic64(d);
2267
2268 // Multiply the numerator (operand 0) by the magic value
Dan Gohman8181bd12008-07-27 21:46:04 +00002269 SDValue Q;
Dan Gohman5a199552007-10-08 18:33:35 +00002270 if (isOperationLegal(ISD::MULHS, VT))
2271 Q = DAG.getNode(ISD::MULHS, VT, N->getOperand(0),
2272 DAG.getConstant(magics.m, VT));
2273 else if (isOperationLegal(ISD::SMUL_LOHI, VT))
Dan Gohman8181bd12008-07-27 21:46:04 +00002274 Q = SDValue(DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(VT, VT),
Dan Gohman5a199552007-10-08 18:33:35 +00002275 N->getOperand(0),
Gabor Greif1c80d112008-08-28 21:40:38 +00002276 DAG.getConstant(magics.m, VT)).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00002277 else
Dan Gohman8181bd12008-07-27 21:46:04 +00002278 return SDValue(); // No mulhs or equvialent
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002279 // If d > 0 and m < 0, add the numerator
2280 if (d > 0 && magics.m < 0) {
2281 Q = DAG.getNode(ISD::ADD, VT, Q, N->getOperand(0));
2282 if (Created)
Gabor Greif1c80d112008-08-28 21:40:38 +00002283 Created->push_back(Q.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002284 }
2285 // If d < 0 and m > 0, subtract the numerator.
2286 if (d < 0 && magics.m > 0) {
2287 Q = DAG.getNode(ISD::SUB, VT, Q, N->getOperand(0));
2288 if (Created)
Gabor Greif1c80d112008-08-28 21:40:38 +00002289 Created->push_back(Q.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002290 }
2291 // Shift right algebraic if shift value is nonzero
2292 if (magics.s > 0) {
2293 Q = DAG.getNode(ISD::SRA, VT, Q,
2294 DAG.getConstant(magics.s, getShiftAmountTy()));
2295 if (Created)
Gabor Greif1c80d112008-08-28 21:40:38 +00002296 Created->push_back(Q.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002297 }
2298 // Extract the sign bit and add it to the quotient
Dan Gohman8181bd12008-07-27 21:46:04 +00002299 SDValue T =
Duncan Sands92c43912008-06-06 12:08:01 +00002300 DAG.getNode(ISD::SRL, VT, Q, DAG.getConstant(VT.getSizeInBits()-1,
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002301 getShiftAmountTy()));
2302 if (Created)
Gabor Greif1c80d112008-08-28 21:40:38 +00002303 Created->push_back(T.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002304 return DAG.getNode(ISD::ADD, VT, Q, T);
2305}
2306
2307/// BuildUDIVSequence - Given an ISD::UDIV node expressing a divide by constant,
2308/// return a DAG expression to select that will generate the same value by
2309/// multiplying by a magic number. See:
2310/// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html>
Dan Gohman8181bd12008-07-27 21:46:04 +00002311SDValue TargetLowering::BuildUDIV(SDNode *N, SelectionDAG &DAG,
2312 std::vector<SDNode*>* Created) const {
Duncan Sands92c43912008-06-06 12:08:01 +00002313 MVT VT = N->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002314
2315 // Check to see if we can do this.
2316 if (!isTypeLegal(VT) || (VT != MVT::i32 && VT != MVT::i64))
Dan Gohman8181bd12008-07-27 21:46:04 +00002317 return SDValue(); // BuildUDIV only operates on i32 or i64
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002318
2319 uint64_t d = cast<ConstantSDNode>(N->getOperand(1))->getValue();
2320 mu magics = (VT == MVT::i32) ? magicu32(d) : magicu64(d);
2321
2322 // Multiply the numerator (operand 0) by the magic value
Dan Gohman8181bd12008-07-27 21:46:04 +00002323 SDValue Q;
Dan Gohman5a199552007-10-08 18:33:35 +00002324 if (isOperationLegal(ISD::MULHU, VT))
2325 Q = DAG.getNode(ISD::MULHU, VT, N->getOperand(0),
2326 DAG.getConstant(magics.m, VT));
2327 else if (isOperationLegal(ISD::UMUL_LOHI, VT))
Dan Gohman8181bd12008-07-27 21:46:04 +00002328 Q = SDValue(DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(VT, VT),
Dan Gohman5a199552007-10-08 18:33:35 +00002329 N->getOperand(0),
Gabor Greif1c80d112008-08-28 21:40:38 +00002330 DAG.getConstant(magics.m, VT)).getNode(), 1);
Dan Gohman5a199552007-10-08 18:33:35 +00002331 else
Dan Gohman8181bd12008-07-27 21:46:04 +00002332 return SDValue(); // No mulhu or equvialent
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002333 if (Created)
Gabor Greif1c80d112008-08-28 21:40:38 +00002334 Created->push_back(Q.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002335
2336 if (magics.a == 0) {
2337 return DAG.getNode(ISD::SRL, VT, Q,
2338 DAG.getConstant(magics.s, getShiftAmountTy()));
2339 } else {
Dan Gohman8181bd12008-07-27 21:46:04 +00002340 SDValue NPQ = DAG.getNode(ISD::SUB, VT, N->getOperand(0), Q);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002341 if (Created)
Gabor Greif1c80d112008-08-28 21:40:38 +00002342 Created->push_back(NPQ.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002343 NPQ = DAG.getNode(ISD::SRL, VT, NPQ,
2344 DAG.getConstant(1, getShiftAmountTy()));
2345 if (Created)
Gabor Greif1c80d112008-08-28 21:40:38 +00002346 Created->push_back(NPQ.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002347 NPQ = DAG.getNode(ISD::ADD, VT, NPQ, Q);
2348 if (Created)
Gabor Greif1c80d112008-08-28 21:40:38 +00002349 Created->push_back(NPQ.getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002350 return DAG.getNode(ISD::SRL, VT, NPQ,
2351 DAG.getConstant(magics.s-1, getShiftAmountTy()));
2352 }
2353}