]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/config/sparc/sparc.c
sparc.c (output_return): Output the source location of the insn in the delay slot...
[thirdparty/gcc.git] / gcc / config / sparc / sparc.c
1 /* Subroutines for insn-output.c for SPARC.
2 Copyright (C) 1987-2017 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com)
4 64-bit SPARC-V9 support by Michael Tiemann, Jim Wilson, and Doug Evans,
5 at Cygnus Support.
6
7 This file is part of GCC.
8
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
13
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
22
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "backend.h"
27 #include "target.h"
28 #include "rtl.h"
29 #include "tree.h"
30 #include "memmodel.h"
31 #include "gimple.h"
32 #include "df.h"
33 #include "tm_p.h"
34 #include "stringpool.h"
35 #include "attribs.h"
36 #include "expmed.h"
37 #include "optabs.h"
38 #include "regs.h"
39 #include "emit-rtl.h"
40 #include "recog.h"
41 #include "diagnostic-core.h"
42 #include "alias.h"
43 #include "fold-const.h"
44 #include "stor-layout.h"
45 #include "calls.h"
46 #include "varasm.h"
47 #include "output.h"
48 #include "insn-attr.h"
49 #include "explow.h"
50 #include "expr.h"
51 #include "debug.h"
52 #include "common/common-target.h"
53 #include "gimplify.h"
54 #include "langhooks.h"
55 #include "reload.h"
56 #include "params.h"
57 #include "tree-pass.h"
58 #include "context.h"
59 #include "builtins.h"
60
61 /* This file should be included last. */
62 #include "target-def.h"
63
64 /* Processor costs */
65
66 struct processor_costs {
67 /* Integer load */
68 const int int_load;
69
70 /* Integer signed load */
71 const int int_sload;
72
73 /* Integer zeroed load */
74 const int int_zload;
75
76 /* Float load */
77 const int float_load;
78
79 /* fmov, fneg, fabs */
80 const int float_move;
81
82 /* fadd, fsub */
83 const int float_plusminus;
84
85 /* fcmp */
86 const int float_cmp;
87
88 /* fmov, fmovr */
89 const int float_cmove;
90
91 /* fmul */
92 const int float_mul;
93
94 /* fdivs */
95 const int float_div_sf;
96
97 /* fdivd */
98 const int float_div_df;
99
100 /* fsqrts */
101 const int float_sqrt_sf;
102
103 /* fsqrtd */
104 const int float_sqrt_df;
105
106 /* umul/smul */
107 const int int_mul;
108
109 /* mulX */
110 const int int_mulX;
111
112 /* integer multiply cost for each bit set past the most
113 significant 3, so the formula for multiply cost becomes:
114
115 if (rs1 < 0)
116 highest_bit = highest_clear_bit(rs1);
117 else
118 highest_bit = highest_set_bit(rs1);
119 if (highest_bit < 3)
120 highest_bit = 3;
121 cost = int_mul{,X} + ((highest_bit - 3) / int_mul_bit_factor);
122
123 A value of zero indicates that the multiply costs is fixed,
124 and not variable. */
125 const int int_mul_bit_factor;
126
127 /* udiv/sdiv */
128 const int int_div;
129
130 /* divX */
131 const int int_divX;
132
133 /* movcc, movr */
134 const int int_cmove;
135
136 /* penalty for shifts, due to scheduling rules etc. */
137 const int shift_penalty;
138 };
139
140 static const
141 struct processor_costs cypress_costs = {
142 COSTS_N_INSNS (2), /* int load */
143 COSTS_N_INSNS (2), /* int signed load */
144 COSTS_N_INSNS (2), /* int zeroed load */
145 COSTS_N_INSNS (2), /* float load */
146 COSTS_N_INSNS (5), /* fmov, fneg, fabs */
147 COSTS_N_INSNS (5), /* fadd, fsub */
148 COSTS_N_INSNS (1), /* fcmp */
149 COSTS_N_INSNS (1), /* fmov, fmovr */
150 COSTS_N_INSNS (7), /* fmul */
151 COSTS_N_INSNS (37), /* fdivs */
152 COSTS_N_INSNS (37), /* fdivd */
153 COSTS_N_INSNS (63), /* fsqrts */
154 COSTS_N_INSNS (63), /* fsqrtd */
155 COSTS_N_INSNS (1), /* imul */
156 COSTS_N_INSNS (1), /* imulX */
157 0, /* imul bit factor */
158 COSTS_N_INSNS (1), /* idiv */
159 COSTS_N_INSNS (1), /* idivX */
160 COSTS_N_INSNS (1), /* movcc/movr */
161 0, /* shift penalty */
162 };
163
164 static const
165 struct processor_costs supersparc_costs = {
166 COSTS_N_INSNS (1), /* int load */
167 COSTS_N_INSNS (1), /* int signed load */
168 COSTS_N_INSNS (1), /* int zeroed load */
169 COSTS_N_INSNS (0), /* float load */
170 COSTS_N_INSNS (3), /* fmov, fneg, fabs */
171 COSTS_N_INSNS (3), /* fadd, fsub */
172 COSTS_N_INSNS (3), /* fcmp */
173 COSTS_N_INSNS (1), /* fmov, fmovr */
174 COSTS_N_INSNS (3), /* fmul */
175 COSTS_N_INSNS (6), /* fdivs */
176 COSTS_N_INSNS (9), /* fdivd */
177 COSTS_N_INSNS (12), /* fsqrts */
178 COSTS_N_INSNS (12), /* fsqrtd */
179 COSTS_N_INSNS (4), /* imul */
180 COSTS_N_INSNS (4), /* imulX */
181 0, /* imul bit factor */
182 COSTS_N_INSNS (4), /* idiv */
183 COSTS_N_INSNS (4), /* idivX */
184 COSTS_N_INSNS (1), /* movcc/movr */
185 1, /* shift penalty */
186 };
187
188 static const
189 struct processor_costs hypersparc_costs = {
190 COSTS_N_INSNS (1), /* int load */
191 COSTS_N_INSNS (1), /* int signed load */
192 COSTS_N_INSNS (1), /* int zeroed load */
193 COSTS_N_INSNS (1), /* float load */
194 COSTS_N_INSNS (1), /* fmov, fneg, fabs */
195 COSTS_N_INSNS (1), /* fadd, fsub */
196 COSTS_N_INSNS (1), /* fcmp */
197 COSTS_N_INSNS (1), /* fmov, fmovr */
198 COSTS_N_INSNS (1), /* fmul */
199 COSTS_N_INSNS (8), /* fdivs */
200 COSTS_N_INSNS (12), /* fdivd */
201 COSTS_N_INSNS (17), /* fsqrts */
202 COSTS_N_INSNS (17), /* fsqrtd */
203 COSTS_N_INSNS (17), /* imul */
204 COSTS_N_INSNS (17), /* imulX */
205 0, /* imul bit factor */
206 COSTS_N_INSNS (17), /* idiv */
207 COSTS_N_INSNS (17), /* idivX */
208 COSTS_N_INSNS (1), /* movcc/movr */
209 0, /* shift penalty */
210 };
211
212 static const
213 struct processor_costs leon_costs = {
214 COSTS_N_INSNS (1), /* int load */
215 COSTS_N_INSNS (1), /* int signed load */
216 COSTS_N_INSNS (1), /* int zeroed load */
217 COSTS_N_INSNS (1), /* float load */
218 COSTS_N_INSNS (1), /* fmov, fneg, fabs */
219 COSTS_N_INSNS (1), /* fadd, fsub */
220 COSTS_N_INSNS (1), /* fcmp */
221 COSTS_N_INSNS (1), /* fmov, fmovr */
222 COSTS_N_INSNS (1), /* fmul */
223 COSTS_N_INSNS (15), /* fdivs */
224 COSTS_N_INSNS (15), /* fdivd */
225 COSTS_N_INSNS (23), /* fsqrts */
226 COSTS_N_INSNS (23), /* fsqrtd */
227 COSTS_N_INSNS (5), /* imul */
228 COSTS_N_INSNS (5), /* imulX */
229 0, /* imul bit factor */
230 COSTS_N_INSNS (5), /* idiv */
231 COSTS_N_INSNS (5), /* idivX */
232 COSTS_N_INSNS (1), /* movcc/movr */
233 0, /* shift penalty */
234 };
235
236 static const
237 struct processor_costs leon3_costs = {
238 COSTS_N_INSNS (1), /* int load */
239 COSTS_N_INSNS (1), /* int signed load */
240 COSTS_N_INSNS (1), /* int zeroed load */
241 COSTS_N_INSNS (1), /* float load */
242 COSTS_N_INSNS (1), /* fmov, fneg, fabs */
243 COSTS_N_INSNS (1), /* fadd, fsub */
244 COSTS_N_INSNS (1), /* fcmp */
245 COSTS_N_INSNS (1), /* fmov, fmovr */
246 COSTS_N_INSNS (1), /* fmul */
247 COSTS_N_INSNS (14), /* fdivs */
248 COSTS_N_INSNS (15), /* fdivd */
249 COSTS_N_INSNS (22), /* fsqrts */
250 COSTS_N_INSNS (23), /* fsqrtd */
251 COSTS_N_INSNS (5), /* imul */
252 COSTS_N_INSNS (5), /* imulX */
253 0, /* imul bit factor */
254 COSTS_N_INSNS (35), /* idiv */
255 COSTS_N_INSNS (35), /* idivX */
256 COSTS_N_INSNS (1), /* movcc/movr */
257 0, /* shift penalty */
258 };
259
260 static const
261 struct processor_costs sparclet_costs = {
262 COSTS_N_INSNS (3), /* int load */
263 COSTS_N_INSNS (3), /* int signed load */
264 COSTS_N_INSNS (1), /* int zeroed load */
265 COSTS_N_INSNS (1), /* float load */
266 COSTS_N_INSNS (1), /* fmov, fneg, fabs */
267 COSTS_N_INSNS (1), /* fadd, fsub */
268 COSTS_N_INSNS (1), /* fcmp */
269 COSTS_N_INSNS (1), /* fmov, fmovr */
270 COSTS_N_INSNS (1), /* fmul */
271 COSTS_N_INSNS (1), /* fdivs */
272 COSTS_N_INSNS (1), /* fdivd */
273 COSTS_N_INSNS (1), /* fsqrts */
274 COSTS_N_INSNS (1), /* fsqrtd */
275 COSTS_N_INSNS (5), /* imul */
276 COSTS_N_INSNS (5), /* imulX */
277 0, /* imul bit factor */
278 COSTS_N_INSNS (5), /* idiv */
279 COSTS_N_INSNS (5), /* idivX */
280 COSTS_N_INSNS (1), /* movcc/movr */
281 0, /* shift penalty */
282 };
283
284 static const
285 struct processor_costs ultrasparc_costs = {
286 COSTS_N_INSNS (2), /* int load */
287 COSTS_N_INSNS (3), /* int signed load */
288 COSTS_N_INSNS (2), /* int zeroed load */
289 COSTS_N_INSNS (2), /* float load */
290 COSTS_N_INSNS (1), /* fmov, fneg, fabs */
291 COSTS_N_INSNS (4), /* fadd, fsub */
292 COSTS_N_INSNS (1), /* fcmp */
293 COSTS_N_INSNS (2), /* fmov, fmovr */
294 COSTS_N_INSNS (4), /* fmul */
295 COSTS_N_INSNS (13), /* fdivs */
296 COSTS_N_INSNS (23), /* fdivd */
297 COSTS_N_INSNS (13), /* fsqrts */
298 COSTS_N_INSNS (23), /* fsqrtd */
299 COSTS_N_INSNS (4), /* imul */
300 COSTS_N_INSNS (4), /* imulX */
301 2, /* imul bit factor */
302 COSTS_N_INSNS (37), /* idiv */
303 COSTS_N_INSNS (68), /* idivX */
304 COSTS_N_INSNS (2), /* movcc/movr */
305 2, /* shift penalty */
306 };
307
308 static const
309 struct processor_costs ultrasparc3_costs = {
310 COSTS_N_INSNS (2), /* int load */
311 COSTS_N_INSNS (3), /* int signed load */
312 COSTS_N_INSNS (3), /* int zeroed load */
313 COSTS_N_INSNS (2), /* float load */
314 COSTS_N_INSNS (3), /* fmov, fneg, fabs */
315 COSTS_N_INSNS (4), /* fadd, fsub */
316 COSTS_N_INSNS (5), /* fcmp */
317 COSTS_N_INSNS (3), /* fmov, fmovr */
318 COSTS_N_INSNS (4), /* fmul */
319 COSTS_N_INSNS (17), /* fdivs */
320 COSTS_N_INSNS (20), /* fdivd */
321 COSTS_N_INSNS (20), /* fsqrts */
322 COSTS_N_INSNS (29), /* fsqrtd */
323 COSTS_N_INSNS (6), /* imul */
324 COSTS_N_INSNS (6), /* imulX */
325 0, /* imul bit factor */
326 COSTS_N_INSNS (40), /* idiv */
327 COSTS_N_INSNS (71), /* idivX */
328 COSTS_N_INSNS (2), /* movcc/movr */
329 0, /* shift penalty */
330 };
331
332 static const
333 struct processor_costs niagara_costs = {
334 COSTS_N_INSNS (3), /* int load */
335 COSTS_N_INSNS (3), /* int signed load */
336 COSTS_N_INSNS (3), /* int zeroed load */
337 COSTS_N_INSNS (9), /* float load */
338 COSTS_N_INSNS (8), /* fmov, fneg, fabs */
339 COSTS_N_INSNS (8), /* fadd, fsub */
340 COSTS_N_INSNS (26), /* fcmp */
341 COSTS_N_INSNS (8), /* fmov, fmovr */
342 COSTS_N_INSNS (29), /* fmul */
343 COSTS_N_INSNS (54), /* fdivs */
344 COSTS_N_INSNS (83), /* fdivd */
345 COSTS_N_INSNS (100), /* fsqrts - not implemented in hardware */
346 COSTS_N_INSNS (100), /* fsqrtd - not implemented in hardware */
347 COSTS_N_INSNS (11), /* imul */
348 COSTS_N_INSNS (11), /* imulX */
349 0, /* imul bit factor */
350 COSTS_N_INSNS (72), /* idiv */
351 COSTS_N_INSNS (72), /* idivX */
352 COSTS_N_INSNS (1), /* movcc/movr */
353 0, /* shift penalty */
354 };
355
356 static const
357 struct processor_costs niagara2_costs = {
358 COSTS_N_INSNS (3), /* int load */
359 COSTS_N_INSNS (3), /* int signed load */
360 COSTS_N_INSNS (3), /* int zeroed load */
361 COSTS_N_INSNS (3), /* float load */
362 COSTS_N_INSNS (6), /* fmov, fneg, fabs */
363 COSTS_N_INSNS (6), /* fadd, fsub */
364 COSTS_N_INSNS (6), /* fcmp */
365 COSTS_N_INSNS (6), /* fmov, fmovr */
366 COSTS_N_INSNS (6), /* fmul */
367 COSTS_N_INSNS (19), /* fdivs */
368 COSTS_N_INSNS (33), /* fdivd */
369 COSTS_N_INSNS (19), /* fsqrts */
370 COSTS_N_INSNS (33), /* fsqrtd */
371 COSTS_N_INSNS (5), /* imul */
372 COSTS_N_INSNS (5), /* imulX */
373 0, /* imul bit factor */
374 COSTS_N_INSNS (26), /* idiv, average of 12 - 41 cycle range */
375 COSTS_N_INSNS (26), /* idivX, average of 12 - 41 cycle range */
376 COSTS_N_INSNS (1), /* movcc/movr */
377 0, /* shift penalty */
378 };
379
380 static const
381 struct processor_costs niagara3_costs = {
382 COSTS_N_INSNS (3), /* int load */
383 COSTS_N_INSNS (3), /* int signed load */
384 COSTS_N_INSNS (3), /* int zeroed load */
385 COSTS_N_INSNS (3), /* float load */
386 COSTS_N_INSNS (9), /* fmov, fneg, fabs */
387 COSTS_N_INSNS (9), /* fadd, fsub */
388 COSTS_N_INSNS (9), /* fcmp */
389 COSTS_N_INSNS (9), /* fmov, fmovr */
390 COSTS_N_INSNS (9), /* fmul */
391 COSTS_N_INSNS (23), /* fdivs */
392 COSTS_N_INSNS (37), /* fdivd */
393 COSTS_N_INSNS (23), /* fsqrts */
394 COSTS_N_INSNS (37), /* fsqrtd */
395 COSTS_N_INSNS (9), /* imul */
396 COSTS_N_INSNS (9), /* imulX */
397 0, /* imul bit factor */
398 COSTS_N_INSNS (31), /* idiv, average of 17 - 45 cycle range */
399 COSTS_N_INSNS (30), /* idivX, average of 16 - 44 cycle range */
400 COSTS_N_INSNS (1), /* movcc/movr */
401 0, /* shift penalty */
402 };
403
404 static const
405 struct processor_costs niagara4_costs = {
406 COSTS_N_INSNS (5), /* int load */
407 COSTS_N_INSNS (5), /* int signed load */
408 COSTS_N_INSNS (5), /* int zeroed load */
409 COSTS_N_INSNS (5), /* float load */
410 COSTS_N_INSNS (11), /* fmov, fneg, fabs */
411 COSTS_N_INSNS (11), /* fadd, fsub */
412 COSTS_N_INSNS (11), /* fcmp */
413 COSTS_N_INSNS (11), /* fmov, fmovr */
414 COSTS_N_INSNS (11), /* fmul */
415 COSTS_N_INSNS (24), /* fdivs */
416 COSTS_N_INSNS (37), /* fdivd */
417 COSTS_N_INSNS (24), /* fsqrts */
418 COSTS_N_INSNS (37), /* fsqrtd */
419 COSTS_N_INSNS (12), /* imul */
420 COSTS_N_INSNS (12), /* imulX */
421 0, /* imul bit factor */
422 COSTS_N_INSNS (50), /* idiv, average of 41 - 60 cycle range */
423 COSTS_N_INSNS (35), /* idivX, average of 26 - 44 cycle range */
424 COSTS_N_INSNS (1), /* movcc/movr */
425 0, /* shift penalty */
426 };
427
428 static const
429 struct processor_costs niagara7_costs = {
430 COSTS_N_INSNS (5), /* int load */
431 COSTS_N_INSNS (5), /* int signed load */
432 COSTS_N_INSNS (5), /* int zeroed load */
433 COSTS_N_INSNS (5), /* float load */
434 COSTS_N_INSNS (11), /* fmov, fneg, fabs */
435 COSTS_N_INSNS (11), /* fadd, fsub */
436 COSTS_N_INSNS (11), /* fcmp */
437 COSTS_N_INSNS (11), /* fmov, fmovr */
438 COSTS_N_INSNS (11), /* fmul */
439 COSTS_N_INSNS (24), /* fdivs */
440 COSTS_N_INSNS (37), /* fdivd */
441 COSTS_N_INSNS (24), /* fsqrts */
442 COSTS_N_INSNS (37), /* fsqrtd */
443 COSTS_N_INSNS (12), /* imul */
444 COSTS_N_INSNS (12), /* imulX */
445 0, /* imul bit factor */
446 COSTS_N_INSNS (51), /* idiv, average of 42 - 61 cycle range */
447 COSTS_N_INSNS (35), /* idivX, average of 26 - 44 cycle range */
448 COSTS_N_INSNS (1), /* movcc/movr */
449 0, /* shift penalty */
450 };
451
452 static const
453 struct processor_costs m8_costs = {
454 COSTS_N_INSNS (3), /* int load */
455 COSTS_N_INSNS (3), /* int signed load */
456 COSTS_N_INSNS (3), /* int zeroed load */
457 COSTS_N_INSNS (3), /* float load */
458 COSTS_N_INSNS (9), /* fmov, fneg, fabs */
459 COSTS_N_INSNS (9), /* fadd, fsub */
460 COSTS_N_INSNS (9), /* fcmp */
461 COSTS_N_INSNS (9), /* fmov, fmovr */
462 COSTS_N_INSNS (9), /* fmul */
463 COSTS_N_INSNS (26), /* fdivs */
464 COSTS_N_INSNS (30), /* fdivd */
465 COSTS_N_INSNS (33), /* fsqrts */
466 COSTS_N_INSNS (41), /* fsqrtd */
467 COSTS_N_INSNS (12), /* imul */
468 COSTS_N_INSNS (10), /* imulX */
469 0, /* imul bit factor */
470 COSTS_N_INSNS (57), /* udiv/sdiv */
471 COSTS_N_INSNS (30), /* udivx/sdivx */
472 COSTS_N_INSNS (1), /* movcc/movr */
473 0, /* shift penalty */
474 };
475
476 static const struct processor_costs *sparc_costs = &cypress_costs;
477
478 #ifdef HAVE_AS_RELAX_OPTION
479 /* If 'as' and 'ld' are relaxing tail call insns into branch always, use
480 "or %o7,%g0,X; call Y; or X,%g0,%o7" always, so that it can be optimized.
481 With sethi/jmp, neither 'as' nor 'ld' has an easy way how to find out if
482 somebody does not branch between the sethi and jmp. */
483 #define LEAF_SIBCALL_SLOT_RESERVED_P 1
484 #else
485 #define LEAF_SIBCALL_SLOT_RESERVED_P \
486 ((TARGET_ARCH64 && !TARGET_CM_MEDLOW) || flag_pic)
487 #endif
488
489 /* Vector to say how input registers are mapped to output registers.
490 HARD_FRAME_POINTER_REGNUM cannot be remapped by this function to
491 eliminate it. You must use -fomit-frame-pointer to get that. */
492 char leaf_reg_remap[] =
493 { 0, 1, 2, 3, 4, 5, 6, 7,
494 -1, -1, -1, -1, -1, -1, 14, -1,
495 -1, -1, -1, -1, -1, -1, -1, -1,
496 8, 9, 10, 11, 12, 13, -1, 15,
497
498 32, 33, 34, 35, 36, 37, 38, 39,
499 40, 41, 42, 43, 44, 45, 46, 47,
500 48, 49, 50, 51, 52, 53, 54, 55,
501 56, 57, 58, 59, 60, 61, 62, 63,
502 64, 65, 66, 67, 68, 69, 70, 71,
503 72, 73, 74, 75, 76, 77, 78, 79,
504 80, 81, 82, 83, 84, 85, 86, 87,
505 88, 89, 90, 91, 92, 93, 94, 95,
506 96, 97, 98, 99, 100, 101, 102};
507
508 /* Vector, indexed by hard register number, which contains 1
509 for a register that is allowable in a candidate for leaf
510 function treatment. */
511 char sparc_leaf_regs[] =
512 { 1, 1, 1, 1, 1, 1, 1, 1,
513 0, 0, 0, 0, 0, 0, 1, 0,
514 0, 0, 0, 0, 0, 0, 0, 0,
515 1, 1, 1, 1, 1, 1, 0, 1,
516 1, 1, 1, 1, 1, 1, 1, 1,
517 1, 1, 1, 1, 1, 1, 1, 1,
518 1, 1, 1, 1, 1, 1, 1, 1,
519 1, 1, 1, 1, 1, 1, 1, 1,
520 1, 1, 1, 1, 1, 1, 1, 1,
521 1, 1, 1, 1, 1, 1, 1, 1,
522 1, 1, 1, 1, 1, 1, 1, 1,
523 1, 1, 1, 1, 1, 1, 1, 1,
524 1, 1, 1, 1, 1, 1, 1};
525
526 struct GTY(()) machine_function
527 {
528 /* Size of the frame of the function. */
529 HOST_WIDE_INT frame_size;
530
531 /* Size of the frame of the function minus the register window save area
532 and the outgoing argument area. */
533 HOST_WIDE_INT apparent_frame_size;
534
535 /* Register we pretend the frame pointer is allocated to. Normally, this
536 is %fp, but if we are in a leaf procedure, this is (%sp + offset). We
537 record "offset" separately as it may be too big for (reg + disp). */
538 rtx frame_base_reg;
539 HOST_WIDE_INT frame_base_offset;
540
541 /* Number of global or FP registers to be saved (as 4-byte quantities). */
542 int n_global_fp_regs;
543
544 /* True if the current function is leaf and uses only leaf regs,
545 so that the SPARC leaf function optimization can be applied.
546 Private version of crtl->uses_only_leaf_regs, see
547 sparc_expand_prologue for the rationale. */
548 int leaf_function_p;
549
550 /* True if the prologue saves local or in registers. */
551 bool save_local_in_regs_p;
552
553 /* True if the data calculated by sparc_expand_prologue are valid. */
554 bool prologue_data_valid_p;
555 };
556
557 #define sparc_frame_size cfun->machine->frame_size
558 #define sparc_apparent_frame_size cfun->machine->apparent_frame_size
559 #define sparc_frame_base_reg cfun->machine->frame_base_reg
560 #define sparc_frame_base_offset cfun->machine->frame_base_offset
561 #define sparc_n_global_fp_regs cfun->machine->n_global_fp_regs
562 #define sparc_leaf_function_p cfun->machine->leaf_function_p
563 #define sparc_save_local_in_regs_p cfun->machine->save_local_in_regs_p
564 #define sparc_prologue_data_valid_p cfun->machine->prologue_data_valid_p
565
566 /* 1 if the next opcode is to be specially indented. */
567 int sparc_indent_opcode = 0;
568
569 static void sparc_option_override (void);
570 static void sparc_init_modes (void);
571 static int function_arg_slotno (const CUMULATIVE_ARGS *, machine_mode,
572 const_tree, bool, bool, int *, int *);
573
574 static int supersparc_adjust_cost (rtx_insn *, int, rtx_insn *, int);
575 static int hypersparc_adjust_cost (rtx_insn *, int, rtx_insn *, int);
576
577 static void sparc_emit_set_const32 (rtx, rtx);
578 static void sparc_emit_set_const64 (rtx, rtx);
579 static void sparc_output_addr_vec (rtx);
580 static void sparc_output_addr_diff_vec (rtx);
581 static void sparc_output_deferred_case_vectors (void);
582 static bool sparc_legitimate_address_p (machine_mode, rtx, bool);
583 static bool sparc_legitimate_constant_p (machine_mode, rtx);
584 static rtx sparc_builtin_saveregs (void);
585 static int epilogue_renumber (rtx *, int);
586 static bool sparc_assemble_integer (rtx, unsigned int, int);
587 static int set_extends (rtx_insn *);
588 static void sparc_asm_function_prologue (FILE *);
589 static void sparc_asm_function_epilogue (FILE *);
590 #ifdef TARGET_SOLARIS
591 static void sparc_solaris_elf_asm_named_section (const char *, unsigned int,
592 tree) ATTRIBUTE_UNUSED;
593 #endif
594 static int sparc_adjust_cost (rtx_insn *, int, rtx_insn *, int, unsigned int);
595 static int sparc_issue_rate (void);
596 static void sparc_sched_init (FILE *, int, int);
597 static int sparc_use_sched_lookahead (void);
598
599 static void emit_soft_tfmode_libcall (const char *, int, rtx *);
600 static void emit_soft_tfmode_binop (enum rtx_code, rtx *);
601 static void emit_soft_tfmode_unop (enum rtx_code, rtx *);
602 static void emit_soft_tfmode_cvt (enum rtx_code, rtx *);
603 static void emit_hard_tfmode_operation (enum rtx_code, rtx *);
604
605 static bool sparc_function_ok_for_sibcall (tree, tree);
606 static void sparc_init_libfuncs (void);
607 static void sparc_init_builtins (void);
608 static void sparc_fpu_init_builtins (void);
609 static void sparc_vis_init_builtins (void);
610 static tree sparc_builtin_decl (unsigned, bool);
611 static rtx sparc_expand_builtin (tree, rtx, rtx, machine_mode, int);
612 static tree sparc_fold_builtin (tree, int, tree *, bool);
613 static void sparc_output_mi_thunk (FILE *, tree, HOST_WIDE_INT,
614 HOST_WIDE_INT, tree);
615 static bool sparc_can_output_mi_thunk (const_tree, HOST_WIDE_INT,
616 HOST_WIDE_INT, const_tree);
617 static struct machine_function * sparc_init_machine_status (void);
618 static bool sparc_cannot_force_const_mem (machine_mode, rtx);
619 static rtx sparc_tls_get_addr (void);
620 static rtx sparc_tls_got (void);
621 static int sparc_register_move_cost (machine_mode,
622 reg_class_t, reg_class_t);
623 static bool sparc_rtx_costs (rtx, machine_mode, int, int, int *, bool);
624 static rtx sparc_function_value (const_tree, const_tree, bool);
625 static rtx sparc_libcall_value (machine_mode, const_rtx);
626 static bool sparc_function_value_regno_p (const unsigned int);
627 static rtx sparc_struct_value_rtx (tree, int);
628 static machine_mode sparc_promote_function_mode (const_tree, machine_mode,
629 int *, const_tree, int);
630 static bool sparc_return_in_memory (const_tree, const_tree);
631 static bool sparc_strict_argument_naming (cumulative_args_t);
632 static void sparc_va_start (tree, rtx);
633 static tree sparc_gimplify_va_arg (tree, tree, gimple_seq *, gimple_seq *);
634 static bool sparc_vector_mode_supported_p (machine_mode);
635 static bool sparc_tls_referenced_p (rtx);
636 static rtx sparc_legitimize_tls_address (rtx);
637 static rtx sparc_legitimize_pic_address (rtx, rtx);
638 static rtx sparc_legitimize_address (rtx, rtx, machine_mode);
639 static rtx sparc_delegitimize_address (rtx);
640 static bool sparc_mode_dependent_address_p (const_rtx, addr_space_t);
641 static bool sparc_pass_by_reference (cumulative_args_t,
642 machine_mode, const_tree, bool);
643 static void sparc_function_arg_advance (cumulative_args_t,
644 machine_mode, const_tree, bool);
645 static rtx sparc_function_arg_1 (cumulative_args_t,
646 machine_mode, const_tree, bool, bool);
647 static rtx sparc_function_arg (cumulative_args_t,
648 machine_mode, const_tree, bool);
649 static rtx sparc_function_incoming_arg (cumulative_args_t,
650 machine_mode, const_tree, bool);
651 static pad_direction sparc_function_arg_padding (machine_mode, const_tree);
652 static unsigned int sparc_function_arg_boundary (machine_mode,
653 const_tree);
654 static int sparc_arg_partial_bytes (cumulative_args_t,
655 machine_mode, tree, bool);
656 static void sparc_output_dwarf_dtprel (FILE *, int, rtx) ATTRIBUTE_UNUSED;
657 static void sparc_file_end (void);
658 static bool sparc_frame_pointer_required (void);
659 static bool sparc_can_eliminate (const int, const int);
660 static rtx sparc_builtin_setjmp_frame_value (void);
661 static void sparc_conditional_register_usage (void);
662 #ifdef TARGET_ALTERNATE_LONG_DOUBLE_MANGLING
663 static const char *sparc_mangle_type (const_tree);
664 #endif
665 static void sparc_trampoline_init (rtx, tree, rtx);
666 static machine_mode sparc_preferred_simd_mode (scalar_mode);
667 static reg_class_t sparc_preferred_reload_class (rtx x, reg_class_t rclass);
668 static bool sparc_lra_p (void);
669 static bool sparc_print_operand_punct_valid_p (unsigned char);
670 static void sparc_print_operand (FILE *, rtx, int);
671 static void sparc_print_operand_address (FILE *, machine_mode, rtx);
672 static reg_class_t sparc_secondary_reload (bool, rtx, reg_class_t,
673 machine_mode,
674 secondary_reload_info *);
675 static scalar_int_mode sparc_cstore_mode (enum insn_code icode);
676 static void sparc_atomic_assign_expand_fenv (tree *, tree *, tree *);
677 static bool sparc_fixed_condition_code_regs (unsigned int *, unsigned int *);
678 static unsigned int sparc_min_arithmetic_precision (void);
679 static unsigned int sparc_hard_regno_nregs (unsigned int, machine_mode);
680 static bool sparc_hard_regno_mode_ok (unsigned int, machine_mode);
681 static bool sparc_modes_tieable_p (machine_mode, machine_mode);
682
683 \f
684 #ifdef SUBTARGET_ATTRIBUTE_TABLE
685 /* Table of valid machine attributes. */
686 static const struct attribute_spec sparc_attribute_table[] =
687 {
688 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler,
689 do_diagnostic } */
690 SUBTARGET_ATTRIBUTE_TABLE,
691 { NULL, 0, 0, false, false, false, NULL, false }
692 };
693 #endif
694 \f
695 /* Option handling. */
696
697 /* Parsed value. */
698 enum cmodel sparc_cmodel;
699
700 char sparc_hard_reg_printed[8];
701
702 /* Initialize the GCC target structure. */
703
704 /* The default is to use .half rather than .short for aligned HI objects. */
705 #undef TARGET_ASM_ALIGNED_HI_OP
706 #define TARGET_ASM_ALIGNED_HI_OP "\t.half\t"
707
708 #undef TARGET_ASM_UNALIGNED_HI_OP
709 #define TARGET_ASM_UNALIGNED_HI_OP "\t.uahalf\t"
710 #undef TARGET_ASM_UNALIGNED_SI_OP
711 #define TARGET_ASM_UNALIGNED_SI_OP "\t.uaword\t"
712 #undef TARGET_ASM_UNALIGNED_DI_OP
713 #define TARGET_ASM_UNALIGNED_DI_OP "\t.uaxword\t"
714
715 /* The target hook has to handle DI-mode values. */
716 #undef TARGET_ASM_INTEGER
717 #define TARGET_ASM_INTEGER sparc_assemble_integer
718
719 #undef TARGET_ASM_FUNCTION_PROLOGUE
720 #define TARGET_ASM_FUNCTION_PROLOGUE sparc_asm_function_prologue
721 #undef TARGET_ASM_FUNCTION_EPILOGUE
722 #define TARGET_ASM_FUNCTION_EPILOGUE sparc_asm_function_epilogue
723
724 #undef TARGET_SCHED_ADJUST_COST
725 #define TARGET_SCHED_ADJUST_COST sparc_adjust_cost
726 #undef TARGET_SCHED_ISSUE_RATE
727 #define TARGET_SCHED_ISSUE_RATE sparc_issue_rate
728 #undef TARGET_SCHED_INIT
729 #define TARGET_SCHED_INIT sparc_sched_init
730 #undef TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD
731 #define TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD sparc_use_sched_lookahead
732
733 #undef TARGET_FUNCTION_OK_FOR_SIBCALL
734 #define TARGET_FUNCTION_OK_FOR_SIBCALL sparc_function_ok_for_sibcall
735
736 #undef TARGET_INIT_LIBFUNCS
737 #define TARGET_INIT_LIBFUNCS sparc_init_libfuncs
738
739 #undef TARGET_LEGITIMIZE_ADDRESS
740 #define TARGET_LEGITIMIZE_ADDRESS sparc_legitimize_address
741 #undef TARGET_DELEGITIMIZE_ADDRESS
742 #define TARGET_DELEGITIMIZE_ADDRESS sparc_delegitimize_address
743 #undef TARGET_MODE_DEPENDENT_ADDRESS_P
744 #define TARGET_MODE_DEPENDENT_ADDRESS_P sparc_mode_dependent_address_p
745
746 #undef TARGET_INIT_BUILTINS
747 #define TARGET_INIT_BUILTINS sparc_init_builtins
748 #undef TARGET_BUILTIN_DECL
749 #define TARGET_BUILTIN_DECL sparc_builtin_decl
750 #undef TARGET_EXPAND_BUILTIN
751 #define TARGET_EXPAND_BUILTIN sparc_expand_builtin
752 #undef TARGET_FOLD_BUILTIN
753 #define TARGET_FOLD_BUILTIN sparc_fold_builtin
754
755 #if TARGET_TLS
756 #undef TARGET_HAVE_TLS
757 #define TARGET_HAVE_TLS true
758 #endif
759
760 #undef TARGET_CANNOT_FORCE_CONST_MEM
761 #define TARGET_CANNOT_FORCE_CONST_MEM sparc_cannot_force_const_mem
762
763 #undef TARGET_ASM_OUTPUT_MI_THUNK
764 #define TARGET_ASM_OUTPUT_MI_THUNK sparc_output_mi_thunk
765 #undef TARGET_ASM_CAN_OUTPUT_MI_THUNK
766 #define TARGET_ASM_CAN_OUTPUT_MI_THUNK sparc_can_output_mi_thunk
767
768 #undef TARGET_RTX_COSTS
769 #define TARGET_RTX_COSTS sparc_rtx_costs
770 #undef TARGET_ADDRESS_COST
771 #define TARGET_ADDRESS_COST hook_int_rtx_mode_as_bool_0
772 #undef TARGET_REGISTER_MOVE_COST
773 #define TARGET_REGISTER_MOVE_COST sparc_register_move_cost
774
775 #undef TARGET_PROMOTE_FUNCTION_MODE
776 #define TARGET_PROMOTE_FUNCTION_MODE sparc_promote_function_mode
777
778 #undef TARGET_FUNCTION_VALUE
779 #define TARGET_FUNCTION_VALUE sparc_function_value
780 #undef TARGET_LIBCALL_VALUE
781 #define TARGET_LIBCALL_VALUE sparc_libcall_value
782 #undef TARGET_FUNCTION_VALUE_REGNO_P
783 #define TARGET_FUNCTION_VALUE_REGNO_P sparc_function_value_regno_p
784
785 #undef TARGET_STRUCT_VALUE_RTX
786 #define TARGET_STRUCT_VALUE_RTX sparc_struct_value_rtx
787 #undef TARGET_RETURN_IN_MEMORY
788 #define TARGET_RETURN_IN_MEMORY sparc_return_in_memory
789 #undef TARGET_MUST_PASS_IN_STACK
790 #define TARGET_MUST_PASS_IN_STACK must_pass_in_stack_var_size
791 #undef TARGET_PASS_BY_REFERENCE
792 #define TARGET_PASS_BY_REFERENCE sparc_pass_by_reference
793 #undef TARGET_ARG_PARTIAL_BYTES
794 #define TARGET_ARG_PARTIAL_BYTES sparc_arg_partial_bytes
795 #undef TARGET_FUNCTION_ARG_ADVANCE
796 #define TARGET_FUNCTION_ARG_ADVANCE sparc_function_arg_advance
797 #undef TARGET_FUNCTION_ARG
798 #define TARGET_FUNCTION_ARG sparc_function_arg
799 #undef TARGET_FUNCTION_INCOMING_ARG
800 #define TARGET_FUNCTION_INCOMING_ARG sparc_function_incoming_arg
801 #undef TARGET_FUNCTION_ARG_PADDING
802 #define TARGET_FUNCTION_ARG_PADDING sparc_function_arg_padding
803 #undef TARGET_FUNCTION_ARG_BOUNDARY
804 #define TARGET_FUNCTION_ARG_BOUNDARY sparc_function_arg_boundary
805
806 #undef TARGET_EXPAND_BUILTIN_SAVEREGS
807 #define TARGET_EXPAND_BUILTIN_SAVEREGS sparc_builtin_saveregs
808 #undef TARGET_STRICT_ARGUMENT_NAMING
809 #define TARGET_STRICT_ARGUMENT_NAMING sparc_strict_argument_naming
810
811 #undef TARGET_EXPAND_BUILTIN_VA_START
812 #define TARGET_EXPAND_BUILTIN_VA_START sparc_va_start
813 #undef TARGET_GIMPLIFY_VA_ARG_EXPR
814 #define TARGET_GIMPLIFY_VA_ARG_EXPR sparc_gimplify_va_arg
815
816 #undef TARGET_VECTOR_MODE_SUPPORTED_P
817 #define TARGET_VECTOR_MODE_SUPPORTED_P sparc_vector_mode_supported_p
818
819 #undef TARGET_VECTORIZE_PREFERRED_SIMD_MODE
820 #define TARGET_VECTORIZE_PREFERRED_SIMD_MODE sparc_preferred_simd_mode
821
822 #ifdef SUBTARGET_INSERT_ATTRIBUTES
823 #undef TARGET_INSERT_ATTRIBUTES
824 #define TARGET_INSERT_ATTRIBUTES SUBTARGET_INSERT_ATTRIBUTES
825 #endif
826
827 #ifdef SUBTARGET_ATTRIBUTE_TABLE
828 #undef TARGET_ATTRIBUTE_TABLE
829 #define TARGET_ATTRIBUTE_TABLE sparc_attribute_table
830 #endif
831
832 #undef TARGET_OPTION_OVERRIDE
833 #define TARGET_OPTION_OVERRIDE sparc_option_override
834
835 #ifdef TARGET_THREAD_SSP_OFFSET
836 #undef TARGET_STACK_PROTECT_GUARD
837 #define TARGET_STACK_PROTECT_GUARD hook_tree_void_null
838 #endif
839
840 #if TARGET_GNU_TLS && defined(HAVE_AS_SPARC_UA_PCREL)
841 #undef TARGET_ASM_OUTPUT_DWARF_DTPREL
842 #define TARGET_ASM_OUTPUT_DWARF_DTPREL sparc_output_dwarf_dtprel
843 #endif
844
845 #undef TARGET_ASM_FILE_END
846 #define TARGET_ASM_FILE_END sparc_file_end
847
848 #undef TARGET_FRAME_POINTER_REQUIRED
849 #define TARGET_FRAME_POINTER_REQUIRED sparc_frame_pointer_required
850
851 #undef TARGET_BUILTIN_SETJMP_FRAME_VALUE
852 #define TARGET_BUILTIN_SETJMP_FRAME_VALUE sparc_builtin_setjmp_frame_value
853
854 #undef TARGET_CAN_ELIMINATE
855 #define TARGET_CAN_ELIMINATE sparc_can_eliminate
856
857 #undef TARGET_PREFERRED_RELOAD_CLASS
858 #define TARGET_PREFERRED_RELOAD_CLASS sparc_preferred_reload_class
859
860 #undef TARGET_SECONDARY_RELOAD
861 #define TARGET_SECONDARY_RELOAD sparc_secondary_reload
862
863 #undef TARGET_CONDITIONAL_REGISTER_USAGE
864 #define TARGET_CONDITIONAL_REGISTER_USAGE sparc_conditional_register_usage
865
866 #ifdef TARGET_ALTERNATE_LONG_DOUBLE_MANGLING
867 #undef TARGET_MANGLE_TYPE
868 #define TARGET_MANGLE_TYPE sparc_mangle_type
869 #endif
870
871 #undef TARGET_LRA_P
872 #define TARGET_LRA_P sparc_lra_p
873
874 #undef TARGET_LEGITIMATE_ADDRESS_P
875 #define TARGET_LEGITIMATE_ADDRESS_P sparc_legitimate_address_p
876
877 #undef TARGET_LEGITIMATE_CONSTANT_P
878 #define TARGET_LEGITIMATE_CONSTANT_P sparc_legitimate_constant_p
879
880 #undef TARGET_TRAMPOLINE_INIT
881 #define TARGET_TRAMPOLINE_INIT sparc_trampoline_init
882
883 #undef TARGET_PRINT_OPERAND_PUNCT_VALID_P
884 #define TARGET_PRINT_OPERAND_PUNCT_VALID_P sparc_print_operand_punct_valid_p
885 #undef TARGET_PRINT_OPERAND
886 #define TARGET_PRINT_OPERAND sparc_print_operand
887 #undef TARGET_PRINT_OPERAND_ADDRESS
888 #define TARGET_PRINT_OPERAND_ADDRESS sparc_print_operand_address
889
890 /* The value stored by LDSTUB. */
891 #undef TARGET_ATOMIC_TEST_AND_SET_TRUEVAL
892 #define TARGET_ATOMIC_TEST_AND_SET_TRUEVAL 0xff
893
894 #undef TARGET_CSTORE_MODE
895 #define TARGET_CSTORE_MODE sparc_cstore_mode
896
897 #undef TARGET_ATOMIC_ASSIGN_EXPAND_FENV
898 #define TARGET_ATOMIC_ASSIGN_EXPAND_FENV sparc_atomic_assign_expand_fenv
899
900 #undef TARGET_FIXED_CONDITION_CODE_REGS
901 #define TARGET_FIXED_CONDITION_CODE_REGS sparc_fixed_condition_code_regs
902
903 #undef TARGET_MIN_ARITHMETIC_PRECISION
904 #define TARGET_MIN_ARITHMETIC_PRECISION sparc_min_arithmetic_precision
905
906 #undef TARGET_CUSTOM_FUNCTION_DESCRIPTORS
907 #define TARGET_CUSTOM_FUNCTION_DESCRIPTORS 1
908
909 #undef TARGET_HARD_REGNO_NREGS
910 #define TARGET_HARD_REGNO_NREGS sparc_hard_regno_nregs
911 #undef TARGET_HARD_REGNO_MODE_OK
912 #define TARGET_HARD_REGNO_MODE_OK sparc_hard_regno_mode_ok
913
914 #undef TARGET_MODES_TIEABLE_P
915 #define TARGET_MODES_TIEABLE_P sparc_modes_tieable_p
916
917 struct gcc_target targetm = TARGET_INITIALIZER;
918
919 /* Return the memory reference contained in X if any, zero otherwise. */
920
921 static rtx
922 mem_ref (rtx x)
923 {
924 if (GET_CODE (x) == SIGN_EXTEND || GET_CODE (x) == ZERO_EXTEND)
925 x = XEXP (x, 0);
926
927 if (MEM_P (x))
928 return x;
929
930 return NULL_RTX;
931 }
932
933 /* We use a machine specific pass to enable workarounds for errata.
934
935 We need to have the (essentially) final form of the insn stream in order
936 to properly detect the various hazards. Therefore, this machine specific
937 pass runs as late as possible. */
938
939 /* True if INSN is a md pattern or asm statement. */
940 #define USEFUL_INSN_P(INSN) \
941 (NONDEBUG_INSN_P (INSN) \
942 && GET_CODE (PATTERN (INSN)) != USE \
943 && GET_CODE (PATTERN (INSN)) != CLOBBER)
944
945 static unsigned int
946 sparc_do_work_around_errata (void)
947 {
948 rtx_insn *insn, *next;
949
950 /* Force all instructions to be split into their final form. */
951 split_all_insns_noflow ();
952
953 /* Now look for specific patterns in the insn stream. */
954 for (insn = get_insns (); insn; insn = next)
955 {
956 bool insert_nop = false;
957 rtx set;
958
959 /* Look into the instruction in a delay slot. */
960 if (NONJUMP_INSN_P (insn))
961 if (rtx_sequence *seq = dyn_cast <rtx_sequence *> (PATTERN (insn)))
962 insn = seq->insn (1);
963
964 /* Look for either of these two sequences:
965
966 Sequence A:
967 1. store of word size or less (e.g. st / stb / sth / stf)
968 2. any single instruction that is not a load or store
969 3. any store instruction (e.g. st / stb / sth / stf / std / stdf)
970
971 Sequence B:
972 1. store of double word size (e.g. std / stdf)
973 2. any store instruction (e.g. st / stb / sth / stf / std / stdf) */
974 if (sparc_fix_b2bst
975 && NONJUMP_INSN_P (insn)
976 && (set = single_set (insn)) != NULL_RTX
977 && MEM_P (SET_DEST (set)))
978 {
979 /* Sequence B begins with a double-word store. */
980 bool seq_b = GET_MODE_SIZE (GET_MODE (SET_DEST (set))) == 8;
981 rtx_insn *after;
982 int i;
983
984 next = next_active_insn (insn);
985 if (!next)
986 break;
987
988 for (after = next, i = 0; i < 2; i++)
989 {
990 /* Skip empty assembly statements. */
991 if ((GET_CODE (PATTERN (after)) == UNSPEC_VOLATILE)
992 || (USEFUL_INSN_P (after)
993 && (asm_noperands (PATTERN (after))>=0)
994 && !strcmp (decode_asm_operands (PATTERN (after),
995 NULL, NULL, NULL,
996 NULL, NULL), "")))
997 after = next_active_insn (after);
998 if (!after)
999 break;
1000
1001 /* If the insn is a branch, then it cannot be problematic. */
1002 if (!NONJUMP_INSN_P (after)
1003 || GET_CODE (PATTERN (after)) == SEQUENCE)
1004 break;
1005
1006 /* Sequence B is only two instructions long. */
1007 if (seq_b)
1008 {
1009 /* Add NOP if followed by a store. */
1010 if ((set = single_set (after)) != NULL_RTX
1011 && MEM_P (SET_DEST (set)))
1012 insert_nop = true;
1013
1014 /* Otherwise it is ok. */
1015 break;
1016 }
1017
1018 /* If the second instruction is a load or a store,
1019 then the sequence cannot be problematic. */
1020 if (i == 0)
1021 {
1022 if (((set = single_set (after)) != NULL_RTX)
1023 && (MEM_P (SET_DEST (set)) || MEM_P (SET_SRC (set))))
1024 break;
1025
1026 after = next_active_insn (after);
1027 if (!after)
1028 break;
1029 }
1030
1031 /* Add NOP if third instruction is a store. */
1032 if (i == 1
1033 && ((set = single_set (after)) != NULL_RTX)
1034 && MEM_P (SET_DEST (set)))
1035 insert_nop = true;
1036 }
1037 }
1038 else
1039 /* Look for a single-word load into an odd-numbered FP register. */
1040 if (sparc_fix_at697f
1041 && NONJUMP_INSN_P (insn)
1042 && (set = single_set (insn)) != NULL_RTX
1043 && GET_MODE_SIZE (GET_MODE (SET_SRC (set))) == 4
1044 && MEM_P (SET_SRC (set))
1045 && REG_P (SET_DEST (set))
1046 && REGNO (SET_DEST (set)) > 31
1047 && REGNO (SET_DEST (set)) % 2 != 0)
1048 {
1049 /* The wrong dependency is on the enclosing double register. */
1050 const unsigned int x = REGNO (SET_DEST (set)) - 1;
1051 unsigned int src1, src2, dest;
1052 int code;
1053
1054 next = next_active_insn (insn);
1055 if (!next)
1056 break;
1057 /* If the insn is a branch, then it cannot be problematic. */
1058 if (!NONJUMP_INSN_P (next) || GET_CODE (PATTERN (next)) == SEQUENCE)
1059 continue;
1060
1061 extract_insn (next);
1062 code = INSN_CODE (next);
1063
1064 switch (code)
1065 {
1066 case CODE_FOR_adddf3:
1067 case CODE_FOR_subdf3:
1068 case CODE_FOR_muldf3:
1069 case CODE_FOR_divdf3:
1070 dest = REGNO (recog_data.operand[0]);
1071 src1 = REGNO (recog_data.operand[1]);
1072 src2 = REGNO (recog_data.operand[2]);
1073 if (src1 != src2)
1074 {
1075 /* Case [1-4]:
1076 ld [address], %fx+1
1077 FPOPd %f{x,y}, %f{y,x}, %f{x,y} */
1078 if ((src1 == x || src2 == x)
1079 && (dest == src1 || dest == src2))
1080 insert_nop = true;
1081 }
1082 else
1083 {
1084 /* Case 5:
1085 ld [address], %fx+1
1086 FPOPd %fx, %fx, %fx */
1087 if (src1 == x
1088 && dest == src1
1089 && (code == CODE_FOR_adddf3 || code == CODE_FOR_muldf3))
1090 insert_nop = true;
1091 }
1092 break;
1093
1094 case CODE_FOR_sqrtdf2:
1095 dest = REGNO (recog_data.operand[0]);
1096 src1 = REGNO (recog_data.operand[1]);
1097 /* Case 6:
1098 ld [address], %fx+1
1099 fsqrtd %fx, %fx */
1100 if (src1 == x && dest == src1)
1101 insert_nop = true;
1102 break;
1103
1104 default:
1105 break;
1106 }
1107 }
1108
1109 /* Look for a single-word load into an integer register. */
1110 else if (sparc_fix_ut699
1111 && NONJUMP_INSN_P (insn)
1112 && (set = single_set (insn)) != NULL_RTX
1113 && GET_MODE_SIZE (GET_MODE (SET_SRC (set))) <= 4
1114 && mem_ref (SET_SRC (set)) != NULL_RTX
1115 && REG_P (SET_DEST (set))
1116 && REGNO (SET_DEST (set)) < 32)
1117 {
1118 /* There is no problem if the second memory access has a data
1119 dependency on the first single-cycle load. */
1120 rtx x = SET_DEST (set);
1121
1122 next = next_active_insn (insn);
1123 if (!next)
1124 break;
1125 /* If the insn is a branch, then it cannot be problematic. */
1126 if (!NONJUMP_INSN_P (next) || GET_CODE (PATTERN (next)) == SEQUENCE)
1127 continue;
1128
1129 /* Look for a second memory access to/from an integer register. */
1130 if ((set = single_set (next)) != NULL_RTX)
1131 {
1132 rtx src = SET_SRC (set);
1133 rtx dest = SET_DEST (set);
1134 rtx mem;
1135
1136 /* LDD is affected. */
1137 if ((mem = mem_ref (src)) != NULL_RTX
1138 && REG_P (dest)
1139 && REGNO (dest) < 32
1140 && !reg_mentioned_p (x, XEXP (mem, 0)))
1141 insert_nop = true;
1142
1143 /* STD is *not* affected. */
1144 else if (MEM_P (dest)
1145 && GET_MODE_SIZE (GET_MODE (dest)) <= 4
1146 && (src == CONST0_RTX (GET_MODE (dest))
1147 || (REG_P (src)
1148 && REGNO (src) < 32
1149 && REGNO (src) != REGNO (x)))
1150 && !reg_mentioned_p (x, XEXP (dest, 0)))
1151 insert_nop = true;
1152 }
1153 }
1154
1155 /* Look for a single-word load/operation into an FP register. */
1156 else if (sparc_fix_ut699
1157 && NONJUMP_INSN_P (insn)
1158 && (set = single_set (insn)) != NULL_RTX
1159 && GET_MODE_SIZE (GET_MODE (SET_SRC (set))) == 4
1160 && REG_P (SET_DEST (set))
1161 && REGNO (SET_DEST (set)) > 31)
1162 {
1163 /* Number of instructions in the problematic window. */
1164 const int n_insns = 4;
1165 /* The problematic combination is with the sibling FP register. */
1166 const unsigned int x = REGNO (SET_DEST (set));
1167 const unsigned int y = x ^ 1;
1168 rtx_insn *after;
1169 int i;
1170
1171 next = next_active_insn (insn);
1172 if (!next)
1173 break;
1174 /* If the insn is a branch, then it cannot be problematic. */
1175 if (!NONJUMP_INSN_P (next) || GET_CODE (PATTERN (next)) == SEQUENCE)
1176 continue;
1177
1178 /* Look for a second load/operation into the sibling FP register. */
1179 if (!((set = single_set (next)) != NULL_RTX
1180 && GET_MODE_SIZE (GET_MODE (SET_SRC (set))) == 4
1181 && REG_P (SET_DEST (set))
1182 && REGNO (SET_DEST (set)) == y))
1183 continue;
1184
1185 /* Look for a (possible) store from the FP register in the next N
1186 instructions, but bail out if it is again modified or if there
1187 is a store from the sibling FP register before this store. */
1188 for (after = next, i = 0; i < n_insns; i++)
1189 {
1190 bool branch_p;
1191
1192 after = next_active_insn (after);
1193 if (!after)
1194 break;
1195
1196 /* This is a branch with an empty delay slot. */
1197 if (!NONJUMP_INSN_P (after))
1198 {
1199 if (++i == n_insns)
1200 break;
1201 branch_p = true;
1202 after = NULL;
1203 }
1204 /* This is a branch with a filled delay slot. */
1205 else if (rtx_sequence *seq =
1206 dyn_cast <rtx_sequence *> (PATTERN (after)))
1207 {
1208 if (++i == n_insns)
1209 break;
1210 branch_p = true;
1211 after = seq->insn (1);
1212 }
1213 /* This is a regular instruction. */
1214 else
1215 branch_p = false;
1216
1217 if (after && (set = single_set (after)) != NULL_RTX)
1218 {
1219 const rtx src = SET_SRC (set);
1220 const rtx dest = SET_DEST (set);
1221 const unsigned int size = GET_MODE_SIZE (GET_MODE (dest));
1222
1223 /* If the FP register is again modified before the store,
1224 then the store isn't affected. */
1225 if (REG_P (dest)
1226 && (REGNO (dest) == x
1227 || (REGNO (dest) == y && size == 8)))
1228 break;
1229
1230 if (MEM_P (dest) && REG_P (src))
1231 {
1232 /* If there is a store from the sibling FP register
1233 before the store, then the store is not affected. */
1234 if (REGNO (src) == y || (REGNO (src) == x && size == 8))
1235 break;
1236
1237 /* Otherwise, the store is affected. */
1238 if (REGNO (src) == x && size == 4)
1239 {
1240 insert_nop = true;
1241 break;
1242 }
1243 }
1244 }
1245
1246 /* If we have a branch in the first M instructions, then we
1247 cannot see the (M+2)th instruction so we play safe. */
1248 if (branch_p && i <= (n_insns - 2))
1249 {
1250 insert_nop = true;
1251 break;
1252 }
1253 }
1254 }
1255
1256 else
1257 next = NEXT_INSN (insn);
1258
1259 if (insert_nop)
1260 emit_insn_before (gen_nop (), next);
1261 }
1262
1263 return 0;
1264 }
1265
1266 namespace {
1267
1268 const pass_data pass_data_work_around_errata =
1269 {
1270 RTL_PASS, /* type */
1271 "errata", /* name */
1272 OPTGROUP_NONE, /* optinfo_flags */
1273 TV_MACH_DEP, /* tv_id */
1274 0, /* properties_required */
1275 0, /* properties_provided */
1276 0, /* properties_destroyed */
1277 0, /* todo_flags_start */
1278 0, /* todo_flags_finish */
1279 };
1280
1281 class pass_work_around_errata : public rtl_opt_pass
1282 {
1283 public:
1284 pass_work_around_errata(gcc::context *ctxt)
1285 : rtl_opt_pass(pass_data_work_around_errata, ctxt)
1286 {}
1287
1288 /* opt_pass methods: */
1289 virtual bool gate (function *)
1290 {
1291 return sparc_fix_at697f || sparc_fix_ut699 || sparc_fix_b2bst;
1292 }
1293
1294 virtual unsigned int execute (function *)
1295 {
1296 return sparc_do_work_around_errata ();
1297 }
1298
1299 }; // class pass_work_around_errata
1300
1301 } // anon namespace
1302
1303 rtl_opt_pass *
1304 make_pass_work_around_errata (gcc::context *ctxt)
1305 {
1306 return new pass_work_around_errata (ctxt);
1307 }
1308
1309 /* Helpers for TARGET_DEBUG_OPTIONS. */
1310 static void
1311 dump_target_flag_bits (const int flags)
1312 {
1313 if (flags & MASK_64BIT)
1314 fprintf (stderr, "64BIT ");
1315 if (flags & MASK_APP_REGS)
1316 fprintf (stderr, "APP_REGS ");
1317 if (flags & MASK_FASTER_STRUCTS)
1318 fprintf (stderr, "FASTER_STRUCTS ");
1319 if (flags & MASK_FLAT)
1320 fprintf (stderr, "FLAT ");
1321 if (flags & MASK_FMAF)
1322 fprintf (stderr, "FMAF ");
1323 if (flags & MASK_FSMULD)
1324 fprintf (stderr, "FSMULD ");
1325 if (flags & MASK_FPU)
1326 fprintf (stderr, "FPU ");
1327 if (flags & MASK_HARD_QUAD)
1328 fprintf (stderr, "HARD_QUAD ");
1329 if (flags & MASK_POPC)
1330 fprintf (stderr, "POPC ");
1331 if (flags & MASK_PTR64)
1332 fprintf (stderr, "PTR64 ");
1333 if (flags & MASK_STACK_BIAS)
1334 fprintf (stderr, "STACK_BIAS ");
1335 if (flags & MASK_UNALIGNED_DOUBLES)
1336 fprintf (stderr, "UNALIGNED_DOUBLES ");
1337 if (flags & MASK_V8PLUS)
1338 fprintf (stderr, "V8PLUS ");
1339 if (flags & MASK_VIS)
1340 fprintf (stderr, "VIS ");
1341 if (flags & MASK_VIS2)
1342 fprintf (stderr, "VIS2 ");
1343 if (flags & MASK_VIS3)
1344 fprintf (stderr, "VIS3 ");
1345 if (flags & MASK_VIS4)
1346 fprintf (stderr, "VIS4 ");
1347 if (flags & MASK_VIS4B)
1348 fprintf (stderr, "VIS4B ");
1349 if (flags & MASK_CBCOND)
1350 fprintf (stderr, "CBCOND ");
1351 if (flags & MASK_DEPRECATED_V8_INSNS)
1352 fprintf (stderr, "DEPRECATED_V8_INSNS ");
1353 if (flags & MASK_SPARCLET)
1354 fprintf (stderr, "SPARCLET ");
1355 if (flags & MASK_SPARCLITE)
1356 fprintf (stderr, "SPARCLITE ");
1357 if (flags & MASK_V8)
1358 fprintf (stderr, "V8 ");
1359 if (flags & MASK_V9)
1360 fprintf (stderr, "V9 ");
1361 }
1362
1363 static void
1364 dump_target_flags (const char *prefix, const int flags)
1365 {
1366 fprintf (stderr, "%s: (%08x) [ ", prefix, flags);
1367 dump_target_flag_bits (flags);
1368 fprintf(stderr, "]\n");
1369 }
1370
1371 /* Validate and override various options, and do some machine dependent
1372 initialization. */
1373
1374 static void
1375 sparc_option_override (void)
1376 {
1377 static struct code_model {
1378 const char *const name;
1379 const enum cmodel value;
1380 } const cmodels[] = {
1381 { "32", CM_32 },
1382 { "medlow", CM_MEDLOW },
1383 { "medmid", CM_MEDMID },
1384 { "medany", CM_MEDANY },
1385 { "embmedany", CM_EMBMEDANY },
1386 { NULL, (enum cmodel) 0 }
1387 };
1388 const struct code_model *cmodel;
1389 /* Map TARGET_CPU_DEFAULT to value for -m{cpu,tune}=. */
1390 static struct cpu_default {
1391 const int cpu;
1392 const enum processor_type processor;
1393 } const cpu_default[] = {
1394 /* There must be one entry here for each TARGET_CPU value. */
1395 { TARGET_CPU_sparc, PROCESSOR_CYPRESS },
1396 { TARGET_CPU_v8, PROCESSOR_V8 },
1397 { TARGET_CPU_supersparc, PROCESSOR_SUPERSPARC },
1398 { TARGET_CPU_hypersparc, PROCESSOR_HYPERSPARC },
1399 { TARGET_CPU_leon, PROCESSOR_LEON },
1400 { TARGET_CPU_leon3, PROCESSOR_LEON3 },
1401 { TARGET_CPU_leon3v7, PROCESSOR_LEON3V7 },
1402 { TARGET_CPU_sparclite, PROCESSOR_F930 },
1403 { TARGET_CPU_sparclite86x, PROCESSOR_SPARCLITE86X },
1404 { TARGET_CPU_sparclet, PROCESSOR_TSC701 },
1405 { TARGET_CPU_v9, PROCESSOR_V9 },
1406 { TARGET_CPU_ultrasparc, PROCESSOR_ULTRASPARC },
1407 { TARGET_CPU_ultrasparc3, PROCESSOR_ULTRASPARC3 },
1408 { TARGET_CPU_niagara, PROCESSOR_NIAGARA },
1409 { TARGET_CPU_niagara2, PROCESSOR_NIAGARA2 },
1410 { TARGET_CPU_niagara3, PROCESSOR_NIAGARA3 },
1411 { TARGET_CPU_niagara4, PROCESSOR_NIAGARA4 },
1412 { TARGET_CPU_niagara7, PROCESSOR_NIAGARA7 },
1413 { TARGET_CPU_m8, PROCESSOR_M8 },
1414 { -1, PROCESSOR_V7 }
1415 };
1416 const struct cpu_default *def;
1417 /* Table of values for -m{cpu,tune}=. This must match the order of
1418 the enum processor_type in sparc-opts.h. */
1419 static struct cpu_table {
1420 const char *const name;
1421 const int disable;
1422 const int enable;
1423 } const cpu_table[] = {
1424 { "v7", MASK_ISA|MASK_FSMULD, 0 },
1425 { "cypress", MASK_ISA|MASK_FSMULD, 0 },
1426 { "v8", MASK_ISA, MASK_V8 },
1427 /* TI TMS390Z55 supersparc */
1428 { "supersparc", MASK_ISA, MASK_V8 },
1429 { "hypersparc", MASK_ISA, MASK_V8 },
1430 { "leon", MASK_ISA|MASK_FSMULD, MASK_V8|MASK_LEON },
1431 { "leon3", MASK_ISA, MASK_V8|MASK_LEON3 },
1432 { "leon3v7", MASK_ISA|MASK_FSMULD, MASK_LEON3 },
1433 { "sparclite", MASK_ISA|MASK_FSMULD, MASK_SPARCLITE },
1434 /* The Fujitsu MB86930 is the original sparclite chip, with no FPU. */
1435 { "f930", MASK_ISA|MASK_FPU, MASK_SPARCLITE },
1436 /* The Fujitsu MB86934 is the recent sparclite chip, with an FPU. */
1437 { "f934", MASK_ISA|MASK_FSMULD, MASK_SPARCLITE },
1438 { "sparclite86x", MASK_ISA|MASK_FPU, MASK_SPARCLITE },
1439 { "sparclet", MASK_ISA|MASK_FSMULD, MASK_SPARCLET },
1440 /* TEMIC sparclet */
1441 { "tsc701", MASK_ISA|MASK_FSMULD, MASK_SPARCLET },
1442 { "v9", MASK_ISA, MASK_V9 },
1443 /* UltraSPARC I, II, IIi */
1444 { "ultrasparc", MASK_ISA,
1445 /* Although insns using %y are deprecated, it is a clear win. */
1446 MASK_V9|MASK_DEPRECATED_V8_INSNS },
1447 /* UltraSPARC III */
1448 /* ??? Check if %y issue still holds true. */
1449 { "ultrasparc3", MASK_ISA,
1450 MASK_V9|MASK_DEPRECATED_V8_INSNS|MASK_VIS2 },
1451 /* UltraSPARC T1 */
1452 { "niagara", MASK_ISA,
1453 MASK_V9|MASK_DEPRECATED_V8_INSNS },
1454 /* UltraSPARC T2 */
1455 { "niagara2", MASK_ISA,
1456 MASK_V9|MASK_POPC|MASK_VIS2 },
1457 /* UltraSPARC T3 */
1458 { "niagara3", MASK_ISA,
1459 MASK_V9|MASK_POPC|MASK_VIS3|MASK_FMAF },
1460 /* UltraSPARC T4 */
1461 { "niagara4", MASK_ISA,
1462 MASK_V9|MASK_POPC|MASK_VIS3|MASK_FMAF|MASK_CBCOND },
1463 /* UltraSPARC M7 */
1464 { "niagara7", MASK_ISA,
1465 MASK_V9|MASK_POPC|MASK_VIS4|MASK_FMAF|MASK_CBCOND|MASK_SUBXC },
1466 /* UltraSPARC M8 */
1467 { "m8", MASK_ISA,
1468 MASK_V9|MASK_POPC|MASK_VIS4|MASK_FMAF|MASK_CBCOND|MASK_SUBXC|MASK_VIS4B }
1469 };
1470 const struct cpu_table *cpu;
1471 unsigned int i;
1472
1473 if (sparc_debug_string != NULL)
1474 {
1475 const char *q;
1476 char *p;
1477
1478 p = ASTRDUP (sparc_debug_string);
1479 while ((q = strtok (p, ",")) != NULL)
1480 {
1481 bool invert;
1482 int mask;
1483
1484 p = NULL;
1485 if (*q == '!')
1486 {
1487 invert = true;
1488 q++;
1489 }
1490 else
1491 invert = false;
1492
1493 if (! strcmp (q, "all"))
1494 mask = MASK_DEBUG_ALL;
1495 else if (! strcmp (q, "options"))
1496 mask = MASK_DEBUG_OPTIONS;
1497 else
1498 error ("unknown -mdebug-%s switch", q);
1499
1500 if (invert)
1501 sparc_debug &= ~mask;
1502 else
1503 sparc_debug |= mask;
1504 }
1505 }
1506
1507 /* Enable the FsMULd instruction by default if not explicitly specified by
1508 the user. It may be later disabled by the CPU (explicitly or not). */
1509 if (TARGET_FPU && !(target_flags_explicit & MASK_FSMULD))
1510 target_flags |= MASK_FSMULD;
1511
1512 if (TARGET_DEBUG_OPTIONS)
1513 {
1514 dump_target_flags("Initial target_flags", target_flags);
1515 dump_target_flags("target_flags_explicit", target_flags_explicit);
1516 }
1517
1518 #ifdef SUBTARGET_OVERRIDE_OPTIONS
1519 SUBTARGET_OVERRIDE_OPTIONS;
1520 #endif
1521
1522 #ifndef SPARC_BI_ARCH
1523 /* Check for unsupported architecture size. */
1524 if (!TARGET_64BIT != DEFAULT_ARCH32_P)
1525 error ("%s is not supported by this configuration",
1526 DEFAULT_ARCH32_P ? "-m64" : "-m32");
1527 #endif
1528
1529 /* We force all 64bit archs to use 128 bit long double */
1530 if (TARGET_ARCH64 && !TARGET_LONG_DOUBLE_128)
1531 {
1532 error ("-mlong-double-64 not allowed with -m64");
1533 target_flags |= MASK_LONG_DOUBLE_128;
1534 }
1535
1536 /* Code model selection. */
1537 sparc_cmodel = SPARC_DEFAULT_CMODEL;
1538
1539 #ifdef SPARC_BI_ARCH
1540 if (TARGET_ARCH32)
1541 sparc_cmodel = CM_32;
1542 #endif
1543
1544 if (sparc_cmodel_string != NULL)
1545 {
1546 if (TARGET_ARCH64)
1547 {
1548 for (cmodel = &cmodels[0]; cmodel->name; cmodel++)
1549 if (strcmp (sparc_cmodel_string, cmodel->name) == 0)
1550 break;
1551 if (cmodel->name == NULL)
1552 error ("bad value (%s) for -mcmodel= switch", sparc_cmodel_string);
1553 else
1554 sparc_cmodel = cmodel->value;
1555 }
1556 else
1557 error ("-mcmodel= is not supported on 32-bit systems");
1558 }
1559
1560 /* Check that -fcall-saved-REG wasn't specified for out registers. */
1561 for (i = 8; i < 16; i++)
1562 if (!call_used_regs [i])
1563 {
1564 error ("-fcall-saved-REG is not supported for out registers");
1565 call_used_regs [i] = 1;
1566 }
1567
1568 /* Set the default CPU if no -mcpu option was specified. */
1569 if (!global_options_set.x_sparc_cpu_and_features)
1570 {
1571 for (def = &cpu_default[0]; def->cpu != -1; ++def)
1572 if (def->cpu == TARGET_CPU_DEFAULT)
1573 break;
1574 gcc_assert (def->cpu != -1);
1575 sparc_cpu_and_features = def->processor;
1576 }
1577
1578 /* Set the default CPU if no -mtune option was specified. */
1579 if (!global_options_set.x_sparc_cpu)
1580 sparc_cpu = sparc_cpu_and_features;
1581
1582 cpu = &cpu_table[(int) sparc_cpu_and_features];
1583
1584 if (TARGET_DEBUG_OPTIONS)
1585 {
1586 fprintf (stderr, "sparc_cpu_and_features: %s\n", cpu->name);
1587 dump_target_flags ("cpu->disable", cpu->disable);
1588 dump_target_flags ("cpu->enable", cpu->enable);
1589 }
1590
1591 target_flags &= ~cpu->disable;
1592 target_flags |= (cpu->enable
1593 #ifndef HAVE_AS_FMAF_HPC_VIS3
1594 & ~(MASK_FMAF | MASK_VIS3)
1595 #endif
1596 #ifndef HAVE_AS_SPARC4
1597 & ~MASK_CBCOND
1598 #endif
1599 #ifndef HAVE_AS_SPARC5_VIS4
1600 & ~(MASK_VIS4 | MASK_SUBXC)
1601 #endif
1602 #ifndef HAVE_AS_SPARC6
1603 & ~(MASK_VIS4B)
1604 #endif
1605 #ifndef HAVE_AS_LEON
1606 & ~(MASK_LEON | MASK_LEON3)
1607 #endif
1608 & ~(target_flags_explicit & MASK_FEATURES)
1609 );
1610
1611 /* -mvis2 implies -mvis. */
1612 if (TARGET_VIS2)
1613 target_flags |= MASK_VIS;
1614
1615 /* -mvis3 implies -mvis2 and -mvis. */
1616 if (TARGET_VIS3)
1617 target_flags |= MASK_VIS2 | MASK_VIS;
1618
1619 /* -mvis4 implies -mvis3, -mvis2 and -mvis. */
1620 if (TARGET_VIS4)
1621 target_flags |= MASK_VIS3 | MASK_VIS2 | MASK_VIS;
1622
1623 /* -mvis4b implies -mvis4, -mvis3, -mvis2 and -mvis */
1624 if (TARGET_VIS4B)
1625 target_flags |= MASK_VIS4 | MASK_VIS3 | MASK_VIS2 | MASK_VIS;
1626
1627 /* Don't allow -mvis, -mvis2, -mvis3, -mvis4, -mvis4b, -mfmaf and -mfsmuld if
1628 FPU is disabled. */
1629 if (!TARGET_FPU)
1630 target_flags &= ~(MASK_VIS | MASK_VIS2 | MASK_VIS3 | MASK_VIS4
1631 | MASK_VIS4B | MASK_FMAF | MASK_FSMULD);
1632
1633 /* -mvis assumes UltraSPARC+, so we are sure v9 instructions
1634 are available; -m64 also implies v9. */
1635 if (TARGET_VIS || TARGET_ARCH64)
1636 {
1637 target_flags |= MASK_V9;
1638 target_flags &= ~(MASK_V8 | MASK_SPARCLET | MASK_SPARCLITE);
1639 }
1640
1641 /* -mvis also implies -mv8plus on 32-bit. */
1642 if (TARGET_VIS && !TARGET_ARCH64)
1643 target_flags |= MASK_V8PLUS;
1644
1645 /* Use the deprecated v8 insns for sparc64 in 32-bit mode. */
1646 if (TARGET_V9 && TARGET_ARCH32)
1647 target_flags |= MASK_DEPRECATED_V8_INSNS;
1648
1649 /* V8PLUS requires V9 and makes no sense in 64-bit mode. */
1650 if (!TARGET_V9 || TARGET_ARCH64)
1651 target_flags &= ~MASK_V8PLUS;
1652
1653 /* Don't use stack biasing in 32-bit mode. */
1654 if (TARGET_ARCH32)
1655 target_flags &= ~MASK_STACK_BIAS;
1656
1657 /* Use LRA instead of reload, unless otherwise instructed. */
1658 if (!(target_flags_explicit & MASK_LRA))
1659 target_flags |= MASK_LRA;
1660
1661 /* Enable the back-to-back store errata workaround for LEON3FT. */
1662 if (sparc_fix_ut699 || sparc_fix_ut700 || sparc_fix_gr712rc)
1663 sparc_fix_b2bst = 1;
1664
1665 /* Disable FsMULd for the UT699 since it doesn't work correctly. */
1666 if (sparc_fix_ut699)
1667 target_flags &= ~MASK_FSMULD;
1668
1669 /* Supply a default value for align_functions. */
1670 if (align_functions == 0)
1671 {
1672 if (sparc_cpu == PROCESSOR_ULTRASPARC
1673 || sparc_cpu == PROCESSOR_ULTRASPARC3
1674 || sparc_cpu == PROCESSOR_NIAGARA
1675 || sparc_cpu == PROCESSOR_NIAGARA2
1676 || sparc_cpu == PROCESSOR_NIAGARA3
1677 || sparc_cpu == PROCESSOR_NIAGARA4)
1678 align_functions = 32;
1679 else if (sparc_cpu == PROCESSOR_NIAGARA7
1680 || sparc_cpu == PROCESSOR_M8)
1681 align_functions = 64;
1682 }
1683
1684 /* Validate PCC_STRUCT_RETURN. */
1685 if (flag_pcc_struct_return == DEFAULT_PCC_STRUCT_RETURN)
1686 flag_pcc_struct_return = (TARGET_ARCH64 ? 0 : 1);
1687
1688 /* Only use .uaxword when compiling for a 64-bit target. */
1689 if (!TARGET_ARCH64)
1690 targetm.asm_out.unaligned_op.di = NULL;
1691
1692 /* Do various machine dependent initializations. */
1693 sparc_init_modes ();
1694
1695 /* Set up function hooks. */
1696 init_machine_status = sparc_init_machine_status;
1697
1698 switch (sparc_cpu)
1699 {
1700 case PROCESSOR_V7:
1701 case PROCESSOR_CYPRESS:
1702 sparc_costs = &cypress_costs;
1703 break;
1704 case PROCESSOR_V8:
1705 case PROCESSOR_SPARCLITE:
1706 case PROCESSOR_SUPERSPARC:
1707 sparc_costs = &supersparc_costs;
1708 break;
1709 case PROCESSOR_F930:
1710 case PROCESSOR_F934:
1711 case PROCESSOR_HYPERSPARC:
1712 case PROCESSOR_SPARCLITE86X:
1713 sparc_costs = &hypersparc_costs;
1714 break;
1715 case PROCESSOR_LEON:
1716 sparc_costs = &leon_costs;
1717 break;
1718 case PROCESSOR_LEON3:
1719 case PROCESSOR_LEON3V7:
1720 sparc_costs = &leon3_costs;
1721 break;
1722 case PROCESSOR_SPARCLET:
1723 case PROCESSOR_TSC701:
1724 sparc_costs = &sparclet_costs;
1725 break;
1726 case PROCESSOR_V9:
1727 case PROCESSOR_ULTRASPARC:
1728 sparc_costs = &ultrasparc_costs;
1729 break;
1730 case PROCESSOR_ULTRASPARC3:
1731 sparc_costs = &ultrasparc3_costs;
1732 break;
1733 case PROCESSOR_NIAGARA:
1734 sparc_costs = &niagara_costs;
1735 break;
1736 case PROCESSOR_NIAGARA2:
1737 sparc_costs = &niagara2_costs;
1738 break;
1739 case PROCESSOR_NIAGARA3:
1740 sparc_costs = &niagara3_costs;
1741 break;
1742 case PROCESSOR_NIAGARA4:
1743 sparc_costs = &niagara4_costs;
1744 break;
1745 case PROCESSOR_NIAGARA7:
1746 sparc_costs = &niagara7_costs;
1747 break;
1748 case PROCESSOR_M8:
1749 sparc_costs = &m8_costs;
1750 break;
1751 case PROCESSOR_NATIVE:
1752 gcc_unreachable ();
1753 };
1754
1755 if (sparc_memory_model == SMM_DEFAULT)
1756 {
1757 /* Choose the memory model for the operating system. */
1758 enum sparc_memory_model_type os_default = SUBTARGET_DEFAULT_MEMORY_MODEL;
1759 if (os_default != SMM_DEFAULT)
1760 sparc_memory_model = os_default;
1761 /* Choose the most relaxed model for the processor. */
1762 else if (TARGET_V9)
1763 sparc_memory_model = SMM_RMO;
1764 else if (TARGET_LEON3)
1765 sparc_memory_model = SMM_TSO;
1766 else if (TARGET_LEON)
1767 sparc_memory_model = SMM_SC;
1768 else if (TARGET_V8)
1769 sparc_memory_model = SMM_PSO;
1770 else
1771 sparc_memory_model = SMM_SC;
1772 }
1773
1774 #ifdef TARGET_DEFAULT_LONG_DOUBLE_128
1775 if (!(target_flags_explicit & MASK_LONG_DOUBLE_128))
1776 target_flags |= MASK_LONG_DOUBLE_128;
1777 #endif
1778
1779 if (TARGET_DEBUG_OPTIONS)
1780 dump_target_flags ("Final target_flags", target_flags);
1781
1782 /* PARAM_SIMULTANEOUS_PREFETCHES is the number of prefetches that
1783 can run at the same time. More important, it is the threshold
1784 defining when additional prefetches will be dropped by the
1785 hardware.
1786
1787 The UltraSPARC-III features a documented prefetch queue with a
1788 size of 8. Additional prefetches issued in the cpu are
1789 dropped.
1790
1791 Niagara processors are different. In these processors prefetches
1792 are handled much like regular loads. The L1 miss buffer is 32
1793 entries, but prefetches start getting affected when 30 entries
1794 become occupied. That occupation could be a mix of regular loads
1795 and prefetches though. And that buffer is shared by all threads.
1796 Once the threshold is reached, if the core is running a single
1797 thread the prefetch will retry. If more than one thread is
1798 running, the prefetch will be dropped.
1799
1800 All this makes it very difficult to determine how many
1801 simultaneous prefetches can be issued simultaneously, even in a
1802 single-threaded program. Experimental results show that setting
1803 this parameter to 32 works well when the number of threads is not
1804 high. */
1805 maybe_set_param_value (PARAM_SIMULTANEOUS_PREFETCHES,
1806 ((sparc_cpu == PROCESSOR_ULTRASPARC
1807 || sparc_cpu == PROCESSOR_NIAGARA
1808 || sparc_cpu == PROCESSOR_NIAGARA2
1809 || sparc_cpu == PROCESSOR_NIAGARA3
1810 || sparc_cpu == PROCESSOR_NIAGARA4)
1811 ? 2
1812 : (sparc_cpu == PROCESSOR_ULTRASPARC3
1813 ? 8 : ((sparc_cpu == PROCESSOR_NIAGARA7
1814 || sparc_cpu == PROCESSOR_M8)
1815 ? 32 : 3))),
1816 global_options.x_param_values,
1817 global_options_set.x_param_values);
1818
1819 /* PARAM_L1_CACHE_LINE_SIZE is the size of the L1 cache line, in
1820 bytes.
1821
1822 The Oracle SPARC Architecture (previously the UltraSPARC
1823 Architecture) specification states that when a PREFETCH[A]
1824 instruction is executed an implementation-specific amount of data
1825 is prefetched, and that it is at least 64 bytes long (aligned to
1826 at least 64 bytes).
1827
1828 However, this is not correct. The M7 (and implementations prior
1829 to that) does not guarantee a 64B prefetch into a cache if the
1830 line size is smaller. A single cache line is all that is ever
1831 prefetched. So for the M7, where the L1D$ has 32B lines and the
1832 L2D$ and L3 have 64B lines, a prefetch will prefetch 64B into the
1833 L2 and L3, but only 32B are brought into the L1D$. (Assuming it
1834 is a read_n prefetch, which is the only type which allocates to
1835 the L1.) */
1836 maybe_set_param_value (PARAM_L1_CACHE_LINE_SIZE,
1837 (sparc_cpu == PROCESSOR_M8
1838 ? 64 : 32),
1839 global_options.x_param_values,
1840 global_options_set.x_param_values);
1841
1842 /* PARAM_L1_CACHE_SIZE is the size of the L1D$ (most SPARC chips use
1843 Hardvard level-1 caches) in kilobytes. Both UltraSPARC and
1844 Niagara processors feature a L1D$ of 16KB. */
1845 maybe_set_param_value (PARAM_L1_CACHE_SIZE,
1846 ((sparc_cpu == PROCESSOR_ULTRASPARC
1847 || sparc_cpu == PROCESSOR_ULTRASPARC3
1848 || sparc_cpu == PROCESSOR_NIAGARA
1849 || sparc_cpu == PROCESSOR_NIAGARA2
1850 || sparc_cpu == PROCESSOR_NIAGARA3
1851 || sparc_cpu == PROCESSOR_NIAGARA4
1852 || sparc_cpu == PROCESSOR_NIAGARA7
1853 || sparc_cpu == PROCESSOR_M8)
1854 ? 16 : 64),
1855 global_options.x_param_values,
1856 global_options_set.x_param_values);
1857
1858
1859 /* PARAM_L2_CACHE_SIZE is the size fo the L2 in kilobytes. Note
1860 that 512 is the default in params.def. */
1861 maybe_set_param_value (PARAM_L2_CACHE_SIZE,
1862 ((sparc_cpu == PROCESSOR_NIAGARA4
1863 || sparc_cpu == PROCESSOR_M8)
1864 ? 128 : (sparc_cpu == PROCESSOR_NIAGARA7
1865 ? 256 : 512)),
1866 global_options.x_param_values,
1867 global_options_set.x_param_values);
1868
1869
1870 /* Disable save slot sharing for call-clobbered registers by default.
1871 The IRA sharing algorithm works on single registers only and this
1872 pessimizes for double floating-point registers. */
1873 if (!global_options_set.x_flag_ira_share_save_slots)
1874 flag_ira_share_save_slots = 0;
1875
1876 /* Only enable REE by default in 64-bit mode where it helps to eliminate
1877 redundant 32-to-64-bit extensions. */
1878 if (!global_options_set.x_flag_ree && TARGET_ARCH32)
1879 flag_ree = 0;
1880 }
1881 \f
1882 /* Miscellaneous utilities. */
1883
1884 /* Nonzero if CODE, a comparison, is suitable for use in v9 conditional move
1885 or branch on register contents instructions. */
1886
1887 int
1888 v9_regcmp_p (enum rtx_code code)
1889 {
1890 return (code == EQ || code == NE || code == GE || code == LT
1891 || code == LE || code == GT);
1892 }
1893
1894 /* Nonzero if OP is a floating point constant which can
1895 be loaded into an integer register using a single
1896 sethi instruction. */
1897
1898 int
1899 fp_sethi_p (rtx op)
1900 {
1901 if (GET_CODE (op) == CONST_DOUBLE)
1902 {
1903 long i;
1904
1905 REAL_VALUE_TO_TARGET_SINGLE (*CONST_DOUBLE_REAL_VALUE (op), i);
1906 return !SPARC_SIMM13_P (i) && SPARC_SETHI_P (i);
1907 }
1908
1909 return 0;
1910 }
1911
1912 /* Nonzero if OP is a floating point constant which can
1913 be loaded into an integer register using a single
1914 mov instruction. */
1915
1916 int
1917 fp_mov_p (rtx op)
1918 {
1919 if (GET_CODE (op) == CONST_DOUBLE)
1920 {
1921 long i;
1922
1923 REAL_VALUE_TO_TARGET_SINGLE (*CONST_DOUBLE_REAL_VALUE (op), i);
1924 return SPARC_SIMM13_P (i);
1925 }
1926
1927 return 0;
1928 }
1929
1930 /* Nonzero if OP is a floating point constant which can
1931 be loaded into an integer register using a high/losum
1932 instruction sequence. */
1933
1934 int
1935 fp_high_losum_p (rtx op)
1936 {
1937 /* The constraints calling this should only be in
1938 SFmode move insns, so any constant which cannot
1939 be moved using a single insn will do. */
1940 if (GET_CODE (op) == CONST_DOUBLE)
1941 {
1942 long i;
1943
1944 REAL_VALUE_TO_TARGET_SINGLE (*CONST_DOUBLE_REAL_VALUE (op), i);
1945 return !SPARC_SIMM13_P (i) && !SPARC_SETHI_P (i);
1946 }
1947
1948 return 0;
1949 }
1950
1951 /* Return true if the address of LABEL can be loaded by means of the
1952 mov{si,di}_pic_label_ref patterns in PIC mode. */
1953
1954 static bool
1955 can_use_mov_pic_label_ref (rtx label)
1956 {
1957 /* VxWorks does not impose a fixed gap between segments; the run-time
1958 gap can be different from the object-file gap. We therefore can't
1959 assume X - _GLOBAL_OFFSET_TABLE_ is a link-time constant unless we
1960 are absolutely sure that X is in the same segment as the GOT.
1961 Unfortunately, the flexibility of linker scripts means that we
1962 can't be sure of that in general, so assume that GOT-relative
1963 accesses are never valid on VxWorks. */
1964 if (TARGET_VXWORKS_RTP)
1965 return false;
1966
1967 /* Similarly, if the label is non-local, it might end up being placed
1968 in a different section than the current one; now mov_pic_label_ref
1969 requires the label and the code to be in the same section. */
1970 if (LABEL_REF_NONLOCAL_P (label))
1971 return false;
1972
1973 /* Finally, if we are reordering basic blocks and partition into hot
1974 and cold sections, this might happen for any label. */
1975 if (flag_reorder_blocks_and_partition)
1976 return false;
1977
1978 return true;
1979 }
1980
1981 /* Expand a move instruction. Return true if all work is done. */
1982
1983 bool
1984 sparc_expand_move (machine_mode mode, rtx *operands)
1985 {
1986 /* Handle sets of MEM first. */
1987 if (GET_CODE (operands[0]) == MEM)
1988 {
1989 /* 0 is a register (or a pair of registers) on SPARC. */
1990 if (register_or_zero_operand (operands[1], mode))
1991 return false;
1992
1993 if (!reload_in_progress)
1994 {
1995 operands[0] = validize_mem (operands[0]);
1996 operands[1] = force_reg (mode, operands[1]);
1997 }
1998 }
1999
2000 /* Fixup TLS cases. */
2001 if (TARGET_HAVE_TLS
2002 && CONSTANT_P (operands[1])
2003 && sparc_tls_referenced_p (operands [1]))
2004 {
2005 operands[1] = sparc_legitimize_tls_address (operands[1]);
2006 return false;
2007 }
2008
2009 /* Fixup PIC cases. */
2010 if (flag_pic && CONSTANT_P (operands[1]))
2011 {
2012 if (pic_address_needs_scratch (operands[1]))
2013 operands[1] = sparc_legitimize_pic_address (operands[1], NULL_RTX);
2014
2015 /* We cannot use the mov{si,di}_pic_label_ref patterns in all cases. */
2016 if (GET_CODE (operands[1]) == LABEL_REF
2017 && can_use_mov_pic_label_ref (operands[1]))
2018 {
2019 if (mode == SImode)
2020 {
2021 emit_insn (gen_movsi_pic_label_ref (operands[0], operands[1]));
2022 return true;
2023 }
2024
2025 if (mode == DImode)
2026 {
2027 gcc_assert (TARGET_ARCH64);
2028 emit_insn (gen_movdi_pic_label_ref (operands[0], operands[1]));
2029 return true;
2030 }
2031 }
2032
2033 if (symbolic_operand (operands[1], mode))
2034 {
2035 operands[1]
2036 = sparc_legitimize_pic_address (operands[1],
2037 reload_in_progress
2038 ? operands[0] : NULL_RTX);
2039 return false;
2040 }
2041 }
2042
2043 /* If we are trying to toss an integer constant into FP registers,
2044 or loading a FP or vector constant, force it into memory. */
2045 if (CONSTANT_P (operands[1])
2046 && REG_P (operands[0])
2047 && (SPARC_FP_REG_P (REGNO (operands[0]))
2048 || SCALAR_FLOAT_MODE_P (mode)
2049 || VECTOR_MODE_P (mode)))
2050 {
2051 /* emit_group_store will send such bogosity to us when it is
2052 not storing directly into memory. So fix this up to avoid
2053 crashes in output_constant_pool. */
2054 if (operands [1] == const0_rtx)
2055 operands[1] = CONST0_RTX (mode);
2056
2057 /* We can clear or set to all-ones FP registers if TARGET_VIS, and
2058 always other regs. */
2059 if ((TARGET_VIS || REGNO (operands[0]) < SPARC_FIRST_FP_REG)
2060 && (const_zero_operand (operands[1], mode)
2061 || const_all_ones_operand (operands[1], mode)))
2062 return false;
2063
2064 if (REGNO (operands[0]) < SPARC_FIRST_FP_REG
2065 /* We are able to build any SF constant in integer registers
2066 with at most 2 instructions. */
2067 && (mode == SFmode
2068 /* And any DF constant in integer registers if needed. */
2069 || (mode == DFmode && !can_create_pseudo_p ())))
2070 return false;
2071
2072 operands[1] = force_const_mem (mode, operands[1]);
2073 if (!reload_in_progress)
2074 operands[1] = validize_mem (operands[1]);
2075 return false;
2076 }
2077
2078 /* Accept non-constants and valid constants unmodified. */
2079 if (!CONSTANT_P (operands[1])
2080 || GET_CODE (operands[1]) == HIGH
2081 || input_operand (operands[1], mode))
2082 return false;
2083
2084 switch (mode)
2085 {
2086 case E_QImode:
2087 /* All QImode constants require only one insn, so proceed. */
2088 break;
2089
2090 case E_HImode:
2091 case E_SImode:
2092 sparc_emit_set_const32 (operands[0], operands[1]);
2093 return true;
2094
2095 case E_DImode:
2096 /* input_operand should have filtered out 32-bit mode. */
2097 sparc_emit_set_const64 (operands[0], operands[1]);
2098 return true;
2099
2100 case E_TImode:
2101 {
2102 rtx high, low;
2103 /* TImode isn't available in 32-bit mode. */
2104 split_double (operands[1], &high, &low);
2105 emit_insn (gen_movdi (operand_subword (operands[0], 0, 0, TImode),
2106 high));
2107 emit_insn (gen_movdi (operand_subword (operands[0], 1, 0, TImode),
2108 low));
2109 }
2110 return true;
2111
2112 default:
2113 gcc_unreachable ();
2114 }
2115
2116 return false;
2117 }
2118
2119 /* Load OP1, a 32-bit constant, into OP0, a register.
2120 We know it can't be done in one insn when we get
2121 here, the move expander guarantees this. */
2122
2123 static void
2124 sparc_emit_set_const32 (rtx op0, rtx op1)
2125 {
2126 machine_mode mode = GET_MODE (op0);
2127 rtx temp = op0;
2128
2129 if (can_create_pseudo_p ())
2130 temp = gen_reg_rtx (mode);
2131
2132 if (GET_CODE (op1) == CONST_INT)
2133 {
2134 gcc_assert (!small_int_operand (op1, mode)
2135 && !const_high_operand (op1, mode));
2136
2137 /* Emit them as real moves instead of a HIGH/LO_SUM,
2138 this way CSE can see everything and reuse intermediate
2139 values if it wants. */
2140 emit_insn (gen_rtx_SET (temp, GEN_INT (INTVAL (op1)
2141 & ~(HOST_WIDE_INT) 0x3ff)));
2142
2143 emit_insn (gen_rtx_SET (op0,
2144 gen_rtx_IOR (mode, temp,
2145 GEN_INT (INTVAL (op1) & 0x3ff))));
2146 }
2147 else
2148 {
2149 /* A symbol, emit in the traditional way. */
2150 emit_insn (gen_rtx_SET (temp, gen_rtx_HIGH (mode, op1)));
2151 emit_insn (gen_rtx_SET (op0, gen_rtx_LO_SUM (mode, temp, op1)));
2152 }
2153 }
2154
2155 /* Load OP1, a symbolic 64-bit constant, into OP0, a DImode register.
2156 If TEMP is nonzero, we are forbidden to use any other scratch
2157 registers. Otherwise, we are allowed to generate them as needed.
2158
2159 Note that TEMP may have TImode if the code model is TARGET_CM_MEDANY
2160 or TARGET_CM_EMBMEDANY (see the reload_indi and reload_outdi patterns). */
2161
2162 void
2163 sparc_emit_set_symbolic_const64 (rtx op0, rtx op1, rtx temp)
2164 {
2165 rtx cst, temp1, temp2, temp3, temp4, temp5;
2166 rtx ti_temp = 0;
2167
2168 /* Deal with too large offsets. */
2169 if (GET_CODE (op1) == CONST
2170 && GET_CODE (XEXP (op1, 0)) == PLUS
2171 && CONST_INT_P (cst = XEXP (XEXP (op1, 0), 1))
2172 && trunc_int_for_mode (INTVAL (cst), SImode) != INTVAL (cst))
2173 {
2174 gcc_assert (!temp);
2175 temp1 = gen_reg_rtx (DImode);
2176 temp2 = gen_reg_rtx (DImode);
2177 sparc_emit_set_const64 (temp2, cst);
2178 sparc_emit_set_symbolic_const64 (temp1, XEXP (XEXP (op1, 0), 0),
2179 NULL_RTX);
2180 emit_insn (gen_rtx_SET (op0, gen_rtx_PLUS (DImode, temp1, temp2)));
2181 return;
2182 }
2183
2184 if (temp && GET_MODE (temp) == TImode)
2185 {
2186 ti_temp = temp;
2187 temp = gen_rtx_REG (DImode, REGNO (temp));
2188 }
2189
2190 /* SPARC-V9 code-model support. */
2191 switch (sparc_cmodel)
2192 {
2193 case CM_MEDLOW:
2194 /* The range spanned by all instructions in the object is less
2195 than 2^31 bytes (2GB) and the distance from any instruction
2196 to the location of the label _GLOBAL_OFFSET_TABLE_ is less
2197 than 2^31 bytes (2GB).
2198
2199 The executable must be in the low 4TB of the virtual address
2200 space.
2201
2202 sethi %hi(symbol), %temp1
2203 or %temp1, %lo(symbol), %reg */
2204 if (temp)
2205 temp1 = temp; /* op0 is allowed. */
2206 else
2207 temp1 = gen_reg_rtx (DImode);
2208
2209 emit_insn (gen_rtx_SET (temp1, gen_rtx_HIGH (DImode, op1)));
2210 emit_insn (gen_rtx_SET (op0, gen_rtx_LO_SUM (DImode, temp1, op1)));
2211 break;
2212
2213 case CM_MEDMID:
2214 /* The range spanned by all instructions in the object is less
2215 than 2^31 bytes (2GB) and the distance from any instruction
2216 to the location of the label _GLOBAL_OFFSET_TABLE_ is less
2217 than 2^31 bytes (2GB).
2218
2219 The executable must be in the low 16TB of the virtual address
2220 space.
2221
2222 sethi %h44(symbol), %temp1
2223 or %temp1, %m44(symbol), %temp2
2224 sllx %temp2, 12, %temp3
2225 or %temp3, %l44(symbol), %reg */
2226 if (temp)
2227 {
2228 temp1 = op0;
2229 temp2 = op0;
2230 temp3 = temp; /* op0 is allowed. */
2231 }
2232 else
2233 {
2234 temp1 = gen_reg_rtx (DImode);
2235 temp2 = gen_reg_rtx (DImode);
2236 temp3 = gen_reg_rtx (DImode);
2237 }
2238
2239 emit_insn (gen_seth44 (temp1, op1));
2240 emit_insn (gen_setm44 (temp2, temp1, op1));
2241 emit_insn (gen_rtx_SET (temp3,
2242 gen_rtx_ASHIFT (DImode, temp2, GEN_INT (12))));
2243 emit_insn (gen_setl44 (op0, temp3, op1));
2244 break;
2245
2246 case CM_MEDANY:
2247 /* The range spanned by all instructions in the object is less
2248 than 2^31 bytes (2GB) and the distance from any instruction
2249 to the location of the label _GLOBAL_OFFSET_TABLE_ is less
2250 than 2^31 bytes (2GB).
2251
2252 The executable can be placed anywhere in the virtual address
2253 space.
2254
2255 sethi %hh(symbol), %temp1
2256 sethi %lm(symbol), %temp2
2257 or %temp1, %hm(symbol), %temp3
2258 sllx %temp3, 32, %temp4
2259 or %temp4, %temp2, %temp5
2260 or %temp5, %lo(symbol), %reg */
2261 if (temp)
2262 {
2263 /* It is possible that one of the registers we got for operands[2]
2264 might coincide with that of operands[0] (which is why we made
2265 it TImode). Pick the other one to use as our scratch. */
2266 if (rtx_equal_p (temp, op0))
2267 {
2268 gcc_assert (ti_temp);
2269 temp = gen_rtx_REG (DImode, REGNO (temp) + 1);
2270 }
2271 temp1 = op0;
2272 temp2 = temp; /* op0 is _not_ allowed, see above. */
2273 temp3 = op0;
2274 temp4 = op0;
2275 temp5 = op0;
2276 }
2277 else
2278 {
2279 temp1 = gen_reg_rtx (DImode);
2280 temp2 = gen_reg_rtx (DImode);
2281 temp3 = gen_reg_rtx (DImode);
2282 temp4 = gen_reg_rtx (DImode);
2283 temp5 = gen_reg_rtx (DImode);
2284 }
2285
2286 emit_insn (gen_sethh (temp1, op1));
2287 emit_insn (gen_setlm (temp2, op1));
2288 emit_insn (gen_sethm (temp3, temp1, op1));
2289 emit_insn (gen_rtx_SET (temp4,
2290 gen_rtx_ASHIFT (DImode, temp3, GEN_INT (32))));
2291 emit_insn (gen_rtx_SET (temp5, gen_rtx_PLUS (DImode, temp4, temp2)));
2292 emit_insn (gen_setlo (op0, temp5, op1));
2293 break;
2294
2295 case CM_EMBMEDANY:
2296 /* Old old old backwards compatibility kruft here.
2297 Essentially it is MEDLOW with a fixed 64-bit
2298 virtual base added to all data segment addresses.
2299 Text-segment stuff is computed like MEDANY, we can't
2300 reuse the code above because the relocation knobs
2301 look different.
2302
2303 Data segment: sethi %hi(symbol), %temp1
2304 add %temp1, EMBMEDANY_BASE_REG, %temp2
2305 or %temp2, %lo(symbol), %reg */
2306 if (data_segment_operand (op1, GET_MODE (op1)))
2307 {
2308 if (temp)
2309 {
2310 temp1 = temp; /* op0 is allowed. */
2311 temp2 = op0;
2312 }
2313 else
2314 {
2315 temp1 = gen_reg_rtx (DImode);
2316 temp2 = gen_reg_rtx (DImode);
2317 }
2318
2319 emit_insn (gen_embmedany_sethi (temp1, op1));
2320 emit_insn (gen_embmedany_brsum (temp2, temp1));
2321 emit_insn (gen_embmedany_losum (op0, temp2, op1));
2322 }
2323
2324 /* Text segment: sethi %uhi(symbol), %temp1
2325 sethi %hi(symbol), %temp2
2326 or %temp1, %ulo(symbol), %temp3
2327 sllx %temp3, 32, %temp4
2328 or %temp4, %temp2, %temp5
2329 or %temp5, %lo(symbol), %reg */
2330 else
2331 {
2332 if (temp)
2333 {
2334 /* It is possible that one of the registers we got for operands[2]
2335 might coincide with that of operands[0] (which is why we made
2336 it TImode). Pick the other one to use as our scratch. */
2337 if (rtx_equal_p (temp, op0))
2338 {
2339 gcc_assert (ti_temp);
2340 temp = gen_rtx_REG (DImode, REGNO (temp) + 1);
2341 }
2342 temp1 = op0;
2343 temp2 = temp; /* op0 is _not_ allowed, see above. */
2344 temp3 = op0;
2345 temp4 = op0;
2346 temp5 = op0;
2347 }
2348 else
2349 {
2350 temp1 = gen_reg_rtx (DImode);
2351 temp2 = gen_reg_rtx (DImode);
2352 temp3 = gen_reg_rtx (DImode);
2353 temp4 = gen_reg_rtx (DImode);
2354 temp5 = gen_reg_rtx (DImode);
2355 }
2356
2357 emit_insn (gen_embmedany_textuhi (temp1, op1));
2358 emit_insn (gen_embmedany_texthi (temp2, op1));
2359 emit_insn (gen_embmedany_textulo (temp3, temp1, op1));
2360 emit_insn (gen_rtx_SET (temp4,
2361 gen_rtx_ASHIFT (DImode, temp3, GEN_INT (32))));
2362 emit_insn (gen_rtx_SET (temp5, gen_rtx_PLUS (DImode, temp4, temp2)));
2363 emit_insn (gen_embmedany_textlo (op0, temp5, op1));
2364 }
2365 break;
2366
2367 default:
2368 gcc_unreachable ();
2369 }
2370 }
2371
2372 /* These avoid problems when cross compiling. If we do not
2373 go through all this hair then the optimizer will see
2374 invalid REG_EQUAL notes or in some cases none at all. */
2375 static rtx gen_safe_HIGH64 (rtx, HOST_WIDE_INT);
2376 static rtx gen_safe_SET64 (rtx, HOST_WIDE_INT);
2377 static rtx gen_safe_OR64 (rtx, HOST_WIDE_INT);
2378 static rtx gen_safe_XOR64 (rtx, HOST_WIDE_INT);
2379
2380 /* The optimizer is not to assume anything about exactly
2381 which bits are set for a HIGH, they are unspecified.
2382 Unfortunately this leads to many missed optimizations
2383 during CSE. We mask out the non-HIGH bits, and matches
2384 a plain movdi, to alleviate this problem. */
2385 static rtx
2386 gen_safe_HIGH64 (rtx dest, HOST_WIDE_INT val)
2387 {
2388 return gen_rtx_SET (dest, GEN_INT (val & ~(HOST_WIDE_INT)0x3ff));
2389 }
2390
2391 static rtx
2392 gen_safe_SET64 (rtx dest, HOST_WIDE_INT val)
2393 {
2394 return gen_rtx_SET (dest, GEN_INT (val));
2395 }
2396
2397 static rtx
2398 gen_safe_OR64 (rtx src, HOST_WIDE_INT val)
2399 {
2400 return gen_rtx_IOR (DImode, src, GEN_INT (val));
2401 }
2402
2403 static rtx
2404 gen_safe_XOR64 (rtx src, HOST_WIDE_INT val)
2405 {
2406 return gen_rtx_XOR (DImode, src, GEN_INT (val));
2407 }
2408
2409 /* Worker routines for 64-bit constant formation on arch64.
2410 One of the key things to be doing in these emissions is
2411 to create as many temp REGs as possible. This makes it
2412 possible for half-built constants to be used later when
2413 such values are similar to something required later on.
2414 Without doing this, the optimizer cannot see such
2415 opportunities. */
2416
2417 static void sparc_emit_set_const64_quick1 (rtx, rtx,
2418 unsigned HOST_WIDE_INT, int);
2419
2420 static void
2421 sparc_emit_set_const64_quick1 (rtx op0, rtx temp,
2422 unsigned HOST_WIDE_INT low_bits, int is_neg)
2423 {
2424 unsigned HOST_WIDE_INT high_bits;
2425
2426 if (is_neg)
2427 high_bits = (~low_bits) & 0xffffffff;
2428 else
2429 high_bits = low_bits;
2430
2431 emit_insn (gen_safe_HIGH64 (temp, high_bits));
2432 if (!is_neg)
2433 {
2434 emit_insn (gen_rtx_SET (op0, gen_safe_OR64 (temp, (high_bits & 0x3ff))));
2435 }
2436 else
2437 {
2438 /* If we are XOR'ing with -1, then we should emit a one's complement
2439 instead. This way the combiner will notice logical operations
2440 such as ANDN later on and substitute. */
2441 if ((low_bits & 0x3ff) == 0x3ff)
2442 {
2443 emit_insn (gen_rtx_SET (op0, gen_rtx_NOT (DImode, temp)));
2444 }
2445 else
2446 {
2447 emit_insn (gen_rtx_SET (op0,
2448 gen_safe_XOR64 (temp,
2449 (-(HOST_WIDE_INT)0x400
2450 | (low_bits & 0x3ff)))));
2451 }
2452 }
2453 }
2454
2455 static void sparc_emit_set_const64_quick2 (rtx, rtx, unsigned HOST_WIDE_INT,
2456 unsigned HOST_WIDE_INT, int);
2457
2458 static void
2459 sparc_emit_set_const64_quick2 (rtx op0, rtx temp,
2460 unsigned HOST_WIDE_INT high_bits,
2461 unsigned HOST_WIDE_INT low_immediate,
2462 int shift_count)
2463 {
2464 rtx temp2 = op0;
2465
2466 if ((high_bits & 0xfffffc00) != 0)
2467 {
2468 emit_insn (gen_safe_HIGH64 (temp, high_bits));
2469 if ((high_bits & ~0xfffffc00) != 0)
2470 emit_insn (gen_rtx_SET (op0,
2471 gen_safe_OR64 (temp, (high_bits & 0x3ff))));
2472 else
2473 temp2 = temp;
2474 }
2475 else
2476 {
2477 emit_insn (gen_safe_SET64 (temp, high_bits));
2478 temp2 = temp;
2479 }
2480
2481 /* Now shift it up into place. */
2482 emit_insn (gen_rtx_SET (op0, gen_rtx_ASHIFT (DImode, temp2,
2483 GEN_INT (shift_count))));
2484
2485 /* If there is a low immediate part piece, finish up by
2486 putting that in as well. */
2487 if (low_immediate != 0)
2488 emit_insn (gen_rtx_SET (op0, gen_safe_OR64 (op0, low_immediate)));
2489 }
2490
2491 static void sparc_emit_set_const64_longway (rtx, rtx, unsigned HOST_WIDE_INT,
2492 unsigned HOST_WIDE_INT);
2493
2494 /* Full 64-bit constant decomposition. Even though this is the
2495 'worst' case, we still optimize a few things away. */
2496 static void
2497 sparc_emit_set_const64_longway (rtx op0, rtx temp,
2498 unsigned HOST_WIDE_INT high_bits,
2499 unsigned HOST_WIDE_INT low_bits)
2500 {
2501 rtx sub_temp = op0;
2502
2503 if (can_create_pseudo_p ())
2504 sub_temp = gen_reg_rtx (DImode);
2505
2506 if ((high_bits & 0xfffffc00) != 0)
2507 {
2508 emit_insn (gen_safe_HIGH64 (temp, high_bits));
2509 if ((high_bits & ~0xfffffc00) != 0)
2510 emit_insn (gen_rtx_SET (sub_temp,
2511 gen_safe_OR64 (temp, (high_bits & 0x3ff))));
2512 else
2513 sub_temp = temp;
2514 }
2515 else
2516 {
2517 emit_insn (gen_safe_SET64 (temp, high_bits));
2518 sub_temp = temp;
2519 }
2520
2521 if (can_create_pseudo_p ())
2522 {
2523 rtx temp2 = gen_reg_rtx (DImode);
2524 rtx temp3 = gen_reg_rtx (DImode);
2525 rtx temp4 = gen_reg_rtx (DImode);
2526
2527 emit_insn (gen_rtx_SET (temp4, gen_rtx_ASHIFT (DImode, sub_temp,
2528 GEN_INT (32))));
2529
2530 emit_insn (gen_safe_HIGH64 (temp2, low_bits));
2531 if ((low_bits & ~0xfffffc00) != 0)
2532 {
2533 emit_insn (gen_rtx_SET (temp3,
2534 gen_safe_OR64 (temp2, (low_bits & 0x3ff))));
2535 emit_insn (gen_rtx_SET (op0, gen_rtx_PLUS (DImode, temp4, temp3)));
2536 }
2537 else
2538 {
2539 emit_insn (gen_rtx_SET (op0, gen_rtx_PLUS (DImode, temp4, temp2)));
2540 }
2541 }
2542 else
2543 {
2544 rtx low1 = GEN_INT ((low_bits >> (32 - 12)) & 0xfff);
2545 rtx low2 = GEN_INT ((low_bits >> (32 - 12 - 12)) & 0xfff);
2546 rtx low3 = GEN_INT ((low_bits >> (32 - 12 - 12 - 8)) & 0x0ff);
2547 int to_shift = 12;
2548
2549 /* We are in the middle of reload, so this is really
2550 painful. However we do still make an attempt to
2551 avoid emitting truly stupid code. */
2552 if (low1 != const0_rtx)
2553 {
2554 emit_insn (gen_rtx_SET (op0, gen_rtx_ASHIFT (DImode, sub_temp,
2555 GEN_INT (to_shift))));
2556 emit_insn (gen_rtx_SET (op0, gen_rtx_IOR (DImode, op0, low1)));
2557 sub_temp = op0;
2558 to_shift = 12;
2559 }
2560 else
2561 {
2562 to_shift += 12;
2563 }
2564 if (low2 != const0_rtx)
2565 {
2566 emit_insn (gen_rtx_SET (op0, gen_rtx_ASHIFT (DImode, sub_temp,
2567 GEN_INT (to_shift))));
2568 emit_insn (gen_rtx_SET (op0, gen_rtx_IOR (DImode, op0, low2)));
2569 sub_temp = op0;
2570 to_shift = 8;
2571 }
2572 else
2573 {
2574 to_shift += 8;
2575 }
2576 emit_insn (gen_rtx_SET (op0, gen_rtx_ASHIFT (DImode, sub_temp,
2577 GEN_INT (to_shift))));
2578 if (low3 != const0_rtx)
2579 emit_insn (gen_rtx_SET (op0, gen_rtx_IOR (DImode, op0, low3)));
2580 /* phew... */
2581 }
2582 }
2583
2584 /* Analyze a 64-bit constant for certain properties. */
2585 static void analyze_64bit_constant (unsigned HOST_WIDE_INT,
2586 unsigned HOST_WIDE_INT,
2587 int *, int *, int *);
2588
2589 static void
2590 analyze_64bit_constant (unsigned HOST_WIDE_INT high_bits,
2591 unsigned HOST_WIDE_INT low_bits,
2592 int *hbsp, int *lbsp, int *abbasp)
2593 {
2594 int lowest_bit_set, highest_bit_set, all_bits_between_are_set;
2595 int i;
2596
2597 lowest_bit_set = highest_bit_set = -1;
2598 i = 0;
2599 do
2600 {
2601 if ((lowest_bit_set == -1)
2602 && ((low_bits >> i) & 1))
2603 lowest_bit_set = i;
2604 if ((highest_bit_set == -1)
2605 && ((high_bits >> (32 - i - 1)) & 1))
2606 highest_bit_set = (64 - i - 1);
2607 }
2608 while (++i < 32
2609 && ((highest_bit_set == -1)
2610 || (lowest_bit_set == -1)));
2611 if (i == 32)
2612 {
2613 i = 0;
2614 do
2615 {
2616 if ((lowest_bit_set == -1)
2617 && ((high_bits >> i) & 1))
2618 lowest_bit_set = i + 32;
2619 if ((highest_bit_set == -1)
2620 && ((low_bits >> (32 - i - 1)) & 1))
2621 highest_bit_set = 32 - i - 1;
2622 }
2623 while (++i < 32
2624 && ((highest_bit_set == -1)
2625 || (lowest_bit_set == -1)));
2626 }
2627 /* If there are no bits set this should have gone out
2628 as one instruction! */
2629 gcc_assert (lowest_bit_set != -1 && highest_bit_set != -1);
2630 all_bits_between_are_set = 1;
2631 for (i = lowest_bit_set; i <= highest_bit_set; i++)
2632 {
2633 if (i < 32)
2634 {
2635 if ((low_bits & (1 << i)) != 0)
2636 continue;
2637 }
2638 else
2639 {
2640 if ((high_bits & (1 << (i - 32))) != 0)
2641 continue;
2642 }
2643 all_bits_between_are_set = 0;
2644 break;
2645 }
2646 *hbsp = highest_bit_set;
2647 *lbsp = lowest_bit_set;
2648 *abbasp = all_bits_between_are_set;
2649 }
2650
2651 static int const64_is_2insns (unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT);
2652
2653 static int
2654 const64_is_2insns (unsigned HOST_WIDE_INT high_bits,
2655 unsigned HOST_WIDE_INT low_bits)
2656 {
2657 int highest_bit_set, lowest_bit_set, all_bits_between_are_set;
2658
2659 if (high_bits == 0
2660 || high_bits == 0xffffffff)
2661 return 1;
2662
2663 analyze_64bit_constant (high_bits, low_bits,
2664 &highest_bit_set, &lowest_bit_set,
2665 &all_bits_between_are_set);
2666
2667 if ((highest_bit_set == 63
2668 || lowest_bit_set == 0)
2669 && all_bits_between_are_set != 0)
2670 return 1;
2671
2672 if ((highest_bit_set - lowest_bit_set) < 21)
2673 return 1;
2674
2675 return 0;
2676 }
2677
2678 static unsigned HOST_WIDE_INT create_simple_focus_bits (unsigned HOST_WIDE_INT,
2679 unsigned HOST_WIDE_INT,
2680 int, int);
2681
2682 static unsigned HOST_WIDE_INT
2683 create_simple_focus_bits (unsigned HOST_WIDE_INT high_bits,
2684 unsigned HOST_WIDE_INT low_bits,
2685 int lowest_bit_set, int shift)
2686 {
2687 HOST_WIDE_INT hi, lo;
2688
2689 if (lowest_bit_set < 32)
2690 {
2691 lo = (low_bits >> lowest_bit_set) << shift;
2692 hi = ((high_bits << (32 - lowest_bit_set)) << shift);
2693 }
2694 else
2695 {
2696 lo = 0;
2697 hi = ((high_bits >> (lowest_bit_set - 32)) << shift);
2698 }
2699 gcc_assert (! (hi & lo));
2700 return (hi | lo);
2701 }
2702
2703 /* Here we are sure to be arch64 and this is an integer constant
2704 being loaded into a register. Emit the most efficient
2705 insn sequence possible. Detection of all the 1-insn cases
2706 has been done already. */
2707 static void
2708 sparc_emit_set_const64 (rtx op0, rtx op1)
2709 {
2710 unsigned HOST_WIDE_INT high_bits, low_bits;
2711 int lowest_bit_set, highest_bit_set;
2712 int all_bits_between_are_set;
2713 rtx temp = 0;
2714
2715 /* Sanity check that we know what we are working with. */
2716 gcc_assert (TARGET_ARCH64
2717 && (GET_CODE (op0) == SUBREG
2718 || (REG_P (op0) && ! SPARC_FP_REG_P (REGNO (op0)))));
2719
2720 if (! can_create_pseudo_p ())
2721 temp = op0;
2722
2723 if (GET_CODE (op1) != CONST_INT)
2724 {
2725 sparc_emit_set_symbolic_const64 (op0, op1, temp);
2726 return;
2727 }
2728
2729 if (! temp)
2730 temp = gen_reg_rtx (DImode);
2731
2732 high_bits = ((INTVAL (op1) >> 32) & 0xffffffff);
2733 low_bits = (INTVAL (op1) & 0xffffffff);
2734
2735 /* low_bits bits 0 --> 31
2736 high_bits bits 32 --> 63 */
2737
2738 analyze_64bit_constant (high_bits, low_bits,
2739 &highest_bit_set, &lowest_bit_set,
2740 &all_bits_between_are_set);
2741
2742 /* First try for a 2-insn sequence. */
2743
2744 /* These situations are preferred because the optimizer can
2745 * do more things with them:
2746 * 1) mov -1, %reg
2747 * sllx %reg, shift, %reg
2748 * 2) mov -1, %reg
2749 * srlx %reg, shift, %reg
2750 * 3) mov some_small_const, %reg
2751 * sllx %reg, shift, %reg
2752 */
2753 if (((highest_bit_set == 63
2754 || lowest_bit_set == 0)
2755 && all_bits_between_are_set != 0)
2756 || ((highest_bit_set - lowest_bit_set) < 12))
2757 {
2758 HOST_WIDE_INT the_const = -1;
2759 int shift = lowest_bit_set;
2760
2761 if ((highest_bit_set != 63
2762 && lowest_bit_set != 0)
2763 || all_bits_between_are_set == 0)
2764 {
2765 the_const =
2766 create_simple_focus_bits (high_bits, low_bits,
2767 lowest_bit_set, 0);
2768 }
2769 else if (lowest_bit_set == 0)
2770 shift = -(63 - highest_bit_set);
2771
2772 gcc_assert (SPARC_SIMM13_P (the_const));
2773 gcc_assert (shift != 0);
2774
2775 emit_insn (gen_safe_SET64 (temp, the_const));
2776 if (shift > 0)
2777 emit_insn (gen_rtx_SET (op0, gen_rtx_ASHIFT (DImode, temp,
2778 GEN_INT (shift))));
2779 else if (shift < 0)
2780 emit_insn (gen_rtx_SET (op0, gen_rtx_LSHIFTRT (DImode, temp,
2781 GEN_INT (-shift))));
2782 return;
2783 }
2784
2785 /* Now a range of 22 or less bits set somewhere.
2786 * 1) sethi %hi(focus_bits), %reg
2787 * sllx %reg, shift, %reg
2788 * 2) sethi %hi(focus_bits), %reg
2789 * srlx %reg, shift, %reg
2790 */
2791 if ((highest_bit_set - lowest_bit_set) < 21)
2792 {
2793 unsigned HOST_WIDE_INT focus_bits =
2794 create_simple_focus_bits (high_bits, low_bits,
2795 lowest_bit_set, 10);
2796
2797 gcc_assert (SPARC_SETHI_P (focus_bits));
2798 gcc_assert (lowest_bit_set != 10);
2799
2800 emit_insn (gen_safe_HIGH64 (temp, focus_bits));
2801
2802 /* If lowest_bit_set == 10 then a sethi alone could have done it. */
2803 if (lowest_bit_set < 10)
2804 emit_insn (gen_rtx_SET (op0,
2805 gen_rtx_LSHIFTRT (DImode, temp,
2806 GEN_INT (10 - lowest_bit_set))));
2807 else if (lowest_bit_set > 10)
2808 emit_insn (gen_rtx_SET (op0,
2809 gen_rtx_ASHIFT (DImode, temp,
2810 GEN_INT (lowest_bit_set - 10))));
2811 return;
2812 }
2813
2814 /* 1) sethi %hi(low_bits), %reg
2815 * or %reg, %lo(low_bits), %reg
2816 * 2) sethi %hi(~low_bits), %reg
2817 * xor %reg, %lo(-0x400 | (low_bits & 0x3ff)), %reg
2818 */
2819 if (high_bits == 0
2820 || high_bits == 0xffffffff)
2821 {
2822 sparc_emit_set_const64_quick1 (op0, temp, low_bits,
2823 (high_bits == 0xffffffff));
2824 return;
2825 }
2826
2827 /* Now, try 3-insn sequences. */
2828
2829 /* 1) sethi %hi(high_bits), %reg
2830 * or %reg, %lo(high_bits), %reg
2831 * sllx %reg, 32, %reg
2832 */
2833 if (low_bits == 0)
2834 {
2835 sparc_emit_set_const64_quick2 (op0, temp, high_bits, 0, 32);
2836 return;
2837 }
2838
2839 /* We may be able to do something quick
2840 when the constant is negated, so try that. */
2841 if (const64_is_2insns ((~high_bits) & 0xffffffff,
2842 (~low_bits) & 0xfffffc00))
2843 {
2844 /* NOTE: The trailing bits get XOR'd so we need the
2845 non-negated bits, not the negated ones. */
2846 unsigned HOST_WIDE_INT trailing_bits = low_bits & 0x3ff;
2847
2848 if ((((~high_bits) & 0xffffffff) == 0
2849 && ((~low_bits) & 0x80000000) == 0)
2850 || (((~high_bits) & 0xffffffff) == 0xffffffff
2851 && ((~low_bits) & 0x80000000) != 0))
2852 {
2853 unsigned HOST_WIDE_INT fast_int = (~low_bits & 0xffffffff);
2854
2855 if ((SPARC_SETHI_P (fast_int)
2856 && (~high_bits & 0xffffffff) == 0)
2857 || SPARC_SIMM13_P (fast_int))
2858 emit_insn (gen_safe_SET64 (temp, fast_int));
2859 else
2860 sparc_emit_set_const64 (temp, GEN_INT (fast_int));
2861 }
2862 else
2863 {
2864 rtx negated_const;
2865 negated_const = GEN_INT (((~low_bits) & 0xfffffc00) |
2866 (((HOST_WIDE_INT)((~high_bits) & 0xffffffff))<<32));
2867 sparc_emit_set_const64 (temp, negated_const);
2868 }
2869
2870 /* If we are XOR'ing with -1, then we should emit a one's complement
2871 instead. This way the combiner will notice logical operations
2872 such as ANDN later on and substitute. */
2873 if (trailing_bits == 0x3ff)
2874 {
2875 emit_insn (gen_rtx_SET (op0, gen_rtx_NOT (DImode, temp)));
2876 }
2877 else
2878 {
2879 emit_insn (gen_rtx_SET (op0,
2880 gen_safe_XOR64 (temp,
2881 (-0x400 | trailing_bits))));
2882 }
2883 return;
2884 }
2885
2886 /* 1) sethi %hi(xxx), %reg
2887 * or %reg, %lo(xxx), %reg
2888 * sllx %reg, yyy, %reg
2889 *
2890 * ??? This is just a generalized version of the low_bits==0
2891 * thing above, FIXME...
2892 */
2893 if ((highest_bit_set - lowest_bit_set) < 32)
2894 {
2895 unsigned HOST_WIDE_INT focus_bits =
2896 create_simple_focus_bits (high_bits, low_bits,
2897 lowest_bit_set, 0);
2898
2899 /* We can't get here in this state. */
2900 gcc_assert (highest_bit_set >= 32 && lowest_bit_set < 32);
2901
2902 /* So what we know is that the set bits straddle the
2903 middle of the 64-bit word. */
2904 sparc_emit_set_const64_quick2 (op0, temp,
2905 focus_bits, 0,
2906 lowest_bit_set);
2907 return;
2908 }
2909
2910 /* 1) sethi %hi(high_bits), %reg
2911 * or %reg, %lo(high_bits), %reg
2912 * sllx %reg, 32, %reg
2913 * or %reg, low_bits, %reg
2914 */
2915 if (SPARC_SIMM13_P (low_bits) && ((int)low_bits > 0))
2916 {
2917 sparc_emit_set_const64_quick2 (op0, temp, high_bits, low_bits, 32);
2918 return;
2919 }
2920
2921 /* The easiest way when all else fails, is full decomposition. */
2922 sparc_emit_set_const64_longway (op0, temp, high_bits, low_bits);
2923 }
2924
2925 /* Implement TARGET_FIXED_CONDITION_CODE_REGS. */
2926
2927 static bool
2928 sparc_fixed_condition_code_regs (unsigned int *p1, unsigned int *p2)
2929 {
2930 *p1 = SPARC_ICC_REG;
2931 *p2 = SPARC_FCC_REG;
2932 return true;
2933 }
2934
2935 /* Implement TARGET_MIN_ARITHMETIC_PRECISION. */
2936
2937 static unsigned int
2938 sparc_min_arithmetic_precision (void)
2939 {
2940 return 32;
2941 }
2942
2943 /* Given a comparison code (EQ, NE, etc.) and the first operand of a COMPARE,
2944 return the mode to be used for the comparison. For floating-point,
2945 CCFP[E]mode is used. CCNZmode should be used when the first operand
2946 is a PLUS, MINUS, NEG, or ASHIFT. CCmode should be used when no special
2947 processing is needed. */
2948
2949 machine_mode
2950 select_cc_mode (enum rtx_code op, rtx x, rtx y)
2951 {
2952 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
2953 {
2954 switch (op)
2955 {
2956 case EQ:
2957 case NE:
2958 case UNORDERED:
2959 case ORDERED:
2960 case UNLT:
2961 case UNLE:
2962 case UNGT:
2963 case UNGE:
2964 case UNEQ:
2965 case LTGT:
2966 return CCFPmode;
2967
2968 case LT:
2969 case LE:
2970 case GT:
2971 case GE:
2972 return CCFPEmode;
2973
2974 default:
2975 gcc_unreachable ();
2976 }
2977 }
2978 else if ((GET_CODE (x) == PLUS || GET_CODE (x) == MINUS
2979 || GET_CODE (x) == NEG || GET_CODE (x) == ASHIFT)
2980 && y == const0_rtx)
2981 {
2982 if (TARGET_ARCH64 && GET_MODE (x) == DImode)
2983 return CCXNZmode;
2984 else
2985 return CCNZmode;
2986 }
2987 else
2988 {
2989 /* This is for the cmp<mode>_sne pattern. */
2990 if (GET_CODE (x) == NOT && y == constm1_rtx)
2991 {
2992 if (TARGET_ARCH64 && GET_MODE (x) == DImode)
2993 return CCXCmode;
2994 else
2995 return CCCmode;
2996 }
2997
2998 /* This is for the [u]addvdi4_sp32 and [u]subvdi4_sp32 patterns. */
2999 if (!TARGET_ARCH64 && GET_MODE (x) == DImode)
3000 {
3001 if (GET_CODE (y) == UNSPEC
3002 && (XINT (y, 1) == UNSPEC_ADDV
3003 || XINT (y, 1) == UNSPEC_SUBV
3004 || XINT (y, 1) == UNSPEC_NEGV))
3005 return CCVmode;
3006 else
3007 return CCCmode;
3008 }
3009
3010 if (TARGET_ARCH64 && GET_MODE (x) == DImode)
3011 return CCXmode;
3012 else
3013 return CCmode;
3014 }
3015 }
3016
3017 /* Emit the compare insn and return the CC reg for a CODE comparison
3018 with operands X and Y. */
3019
3020 static rtx
3021 gen_compare_reg_1 (enum rtx_code code, rtx x, rtx y)
3022 {
3023 machine_mode mode;
3024 rtx cc_reg;
3025
3026 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_CC)
3027 return x;
3028
3029 mode = SELECT_CC_MODE (code, x, y);
3030
3031 /* ??? We don't have movcc patterns so we cannot generate pseudo regs for the
3032 fcc regs (cse can't tell they're really call clobbered regs and will
3033 remove a duplicate comparison even if there is an intervening function
3034 call - it will then try to reload the cc reg via an int reg which is why
3035 we need the movcc patterns). It is possible to provide the movcc
3036 patterns by using the ldxfsr/stxfsr v9 insns. I tried it: you need two
3037 registers (say %g1,%g5) and it takes about 6 insns. A better fix would be
3038 to tell cse that CCFPE mode registers (even pseudos) are call
3039 clobbered. */
3040
3041 /* ??? This is an experiment. Rather than making changes to cse which may
3042 or may not be easy/clean, we do our own cse. This is possible because
3043 we will generate hard registers. Cse knows they're call clobbered (it
3044 doesn't know the same thing about pseudos). If we guess wrong, no big
3045 deal, but if we win, great! */
3046
3047 if (TARGET_V9 && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
3048 #if 1 /* experiment */
3049 {
3050 int reg;
3051 /* We cycle through the registers to ensure they're all exercised. */
3052 static int next_fcc_reg = 0;
3053 /* Previous x,y for each fcc reg. */
3054 static rtx prev_args[4][2];
3055
3056 /* Scan prev_args for x,y. */
3057 for (reg = 0; reg < 4; reg++)
3058 if (prev_args[reg][0] == x && prev_args[reg][1] == y)
3059 break;
3060 if (reg == 4)
3061 {
3062 reg = next_fcc_reg;
3063 prev_args[reg][0] = x;
3064 prev_args[reg][1] = y;
3065 next_fcc_reg = (next_fcc_reg + 1) & 3;
3066 }
3067 cc_reg = gen_rtx_REG (mode, reg + SPARC_FIRST_V9_FCC_REG);
3068 }
3069 #else
3070 cc_reg = gen_reg_rtx (mode);
3071 #endif /* ! experiment */
3072 else if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
3073 cc_reg = gen_rtx_REG (mode, SPARC_FCC_REG);
3074 else
3075 cc_reg = gen_rtx_REG (mode, SPARC_ICC_REG);
3076
3077 /* We shouldn't get there for TFmode if !TARGET_HARD_QUAD. If we do, this
3078 will only result in an unrecognizable insn so no point in asserting. */
3079 emit_insn (gen_rtx_SET (cc_reg, gen_rtx_COMPARE (mode, x, y)));
3080
3081 return cc_reg;
3082 }
3083
3084
3085 /* Emit the compare insn and return the CC reg for the comparison in CMP. */
3086
3087 rtx
3088 gen_compare_reg (rtx cmp)
3089 {
3090 return gen_compare_reg_1 (GET_CODE (cmp), XEXP (cmp, 0), XEXP (cmp, 1));
3091 }
3092
3093 /* This function is used for v9 only.
3094 DEST is the target of the Scc insn.
3095 CODE is the code for an Scc's comparison.
3096 X and Y are the values we compare.
3097
3098 This function is needed to turn
3099
3100 (set (reg:SI 110)
3101 (gt (reg:CCX 100 %icc)
3102 (const_int 0)))
3103 into
3104 (set (reg:SI 110)
3105 (gt:DI (reg:CCX 100 %icc)
3106 (const_int 0)))
3107
3108 IE: The instruction recognizer needs to see the mode of the comparison to
3109 find the right instruction. We could use "gt:DI" right in the
3110 define_expand, but leaving it out allows us to handle DI, SI, etc. */
3111
3112 static int
3113 gen_v9_scc (rtx dest, enum rtx_code compare_code, rtx x, rtx y)
3114 {
3115 if (! TARGET_ARCH64
3116 && (GET_MODE (x) == DImode
3117 || GET_MODE (dest) == DImode))
3118 return 0;
3119
3120 /* Try to use the movrCC insns. */
3121 if (TARGET_ARCH64
3122 && GET_MODE_CLASS (GET_MODE (x)) == MODE_INT
3123 && y == const0_rtx
3124 && v9_regcmp_p (compare_code))
3125 {
3126 rtx op0 = x;
3127 rtx temp;
3128
3129 /* Special case for op0 != 0. This can be done with one instruction if
3130 dest == x. */
3131
3132 if (compare_code == NE
3133 && GET_MODE (dest) == DImode
3134 && rtx_equal_p (op0, dest))
3135 {
3136 emit_insn (gen_rtx_SET (dest,
3137 gen_rtx_IF_THEN_ELSE (DImode,
3138 gen_rtx_fmt_ee (compare_code, DImode,
3139 op0, const0_rtx),
3140 const1_rtx,
3141 dest)));
3142 return 1;
3143 }
3144
3145 if (reg_overlap_mentioned_p (dest, op0))
3146 {
3147 /* Handle the case where dest == x.
3148 We "early clobber" the result. */
3149 op0 = gen_reg_rtx (GET_MODE (x));
3150 emit_move_insn (op0, x);
3151 }
3152
3153 emit_insn (gen_rtx_SET (dest, const0_rtx));
3154 if (GET_MODE (op0) != DImode)
3155 {
3156 temp = gen_reg_rtx (DImode);
3157 convert_move (temp, op0, 0);
3158 }
3159 else
3160 temp = op0;
3161 emit_insn (gen_rtx_SET (dest,
3162 gen_rtx_IF_THEN_ELSE (GET_MODE (dest),
3163 gen_rtx_fmt_ee (compare_code, DImode,
3164 temp, const0_rtx),
3165 const1_rtx,
3166 dest)));
3167 return 1;
3168 }
3169 else
3170 {
3171 x = gen_compare_reg_1 (compare_code, x, y);
3172 y = const0_rtx;
3173
3174 emit_insn (gen_rtx_SET (dest, const0_rtx));
3175 emit_insn (gen_rtx_SET (dest,
3176 gen_rtx_IF_THEN_ELSE (GET_MODE (dest),
3177 gen_rtx_fmt_ee (compare_code,
3178 GET_MODE (x), x, y),
3179 const1_rtx, dest)));
3180 return 1;
3181 }
3182 }
3183
3184
3185 /* Emit an scc insn. For seq, sne, sgeu, and sltu, we can do this
3186 without jumps using the addx/subx instructions. */
3187
3188 bool
3189 emit_scc_insn (rtx operands[])
3190 {
3191 rtx tem, x, y;
3192 enum rtx_code code;
3193 machine_mode mode;
3194
3195 /* The quad-word fp compare library routines all return nonzero to indicate
3196 true, which is different from the equivalent libgcc routines, so we must
3197 handle them specially here. */
3198 if (GET_MODE (operands[2]) == TFmode && ! TARGET_HARD_QUAD)
3199 {
3200 operands[1] = sparc_emit_float_lib_cmp (operands[2], operands[3],
3201 GET_CODE (operands[1]));
3202 operands[2] = XEXP (operands[1], 0);
3203 operands[3] = XEXP (operands[1], 1);
3204 }
3205
3206 code = GET_CODE (operands[1]);
3207 x = operands[2];
3208 y = operands[3];
3209 mode = GET_MODE (x);
3210
3211 /* For seq/sne on v9 we use the same code as v8 (the addx/subx method has
3212 more applications). The exception to this is "reg != 0" which can
3213 be done in one instruction on v9 (so we do it). */
3214 if ((code == EQ || code == NE) && (mode == SImode || mode == DImode))
3215 {
3216 if (y != const0_rtx)
3217 x = force_reg (mode, gen_rtx_XOR (mode, x, y));
3218
3219 rtx pat = gen_rtx_SET (operands[0],
3220 gen_rtx_fmt_ee (code, GET_MODE (operands[0]),
3221 x, const0_rtx));
3222
3223 /* If we can use addx/subx or addxc, add a clobber for CC. */
3224 if (mode == SImode || (code == NE && TARGET_VIS3))
3225 {
3226 rtx clobber
3227 = gen_rtx_CLOBBER (VOIDmode,
3228 gen_rtx_REG (mode == SImode ? CCmode : CCXmode,
3229 SPARC_ICC_REG));
3230 pat = gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, pat, clobber));
3231 }
3232
3233 emit_insn (pat);
3234 return true;
3235 }
3236
3237 /* We can do LTU in DImode using the addxc instruction with VIS3. */
3238 if (TARGET_ARCH64
3239 && mode == DImode
3240 && !((code == LTU || code == GTU) && TARGET_VIS3)
3241 && gen_v9_scc (operands[0], code, x, y))
3242 return true;
3243
3244 /* We can do LTU and GEU using the addx/subx instructions too. And
3245 for GTU/LEU, if both operands are registers swap them and fall
3246 back to the easy case. */
3247 if (code == GTU || code == LEU)
3248 {
3249 if ((GET_CODE (x) == REG || GET_CODE (x) == SUBREG)
3250 && (GET_CODE (y) == REG || GET_CODE (y) == SUBREG))
3251 {
3252 tem = x;
3253 x = y;
3254 y = tem;
3255 code = swap_condition (code);
3256 }
3257 }
3258
3259 if (code == LTU || code == GEU)
3260 {
3261 emit_insn (gen_rtx_SET (operands[0],
3262 gen_rtx_fmt_ee (code, GET_MODE (operands[0]),
3263 gen_compare_reg_1 (code, x, y),
3264 const0_rtx)));
3265 return true;
3266 }
3267
3268 /* All the posibilities to use addx/subx based sequences has been
3269 exhausted, try for a 3 instruction sequence using v9 conditional
3270 moves. */
3271 if (TARGET_V9 && gen_v9_scc (operands[0], code, x, y))
3272 return true;
3273
3274 /* Nope, do branches. */
3275 return false;
3276 }
3277
3278 /* Emit a conditional jump insn for the v9 architecture using comparison code
3279 CODE and jump target LABEL.
3280 This function exists to take advantage of the v9 brxx insns. */
3281
3282 static void
3283 emit_v9_brxx_insn (enum rtx_code code, rtx op0, rtx label)
3284 {
3285 emit_jump_insn (gen_rtx_SET (pc_rtx,
3286 gen_rtx_IF_THEN_ELSE (VOIDmode,
3287 gen_rtx_fmt_ee (code, GET_MODE (op0),
3288 op0, const0_rtx),
3289 gen_rtx_LABEL_REF (VOIDmode, label),
3290 pc_rtx)));
3291 }
3292
3293 /* Emit a conditional jump insn for the UA2011 architecture using
3294 comparison code CODE and jump target LABEL. This function exists
3295 to take advantage of the UA2011 Compare and Branch insns. */
3296
3297 static void
3298 emit_cbcond_insn (enum rtx_code code, rtx op0, rtx op1, rtx label)
3299 {
3300 rtx if_then_else;
3301
3302 if_then_else = gen_rtx_IF_THEN_ELSE (VOIDmode,
3303 gen_rtx_fmt_ee(code, GET_MODE(op0),
3304 op0, op1),
3305 gen_rtx_LABEL_REF (VOIDmode, label),
3306 pc_rtx);
3307
3308 emit_jump_insn (gen_rtx_SET (pc_rtx, if_then_else));
3309 }
3310
3311 void
3312 emit_conditional_branch_insn (rtx operands[])
3313 {
3314 /* The quad-word fp compare library routines all return nonzero to indicate
3315 true, which is different from the equivalent libgcc routines, so we must
3316 handle them specially here. */
3317 if (GET_MODE (operands[1]) == TFmode && ! TARGET_HARD_QUAD)
3318 {
3319 operands[0] = sparc_emit_float_lib_cmp (operands[1], operands[2],
3320 GET_CODE (operands[0]));
3321 operands[1] = XEXP (operands[0], 0);
3322 operands[2] = XEXP (operands[0], 1);
3323 }
3324
3325 /* If we can tell early on that the comparison is against a constant
3326 that won't fit in the 5-bit signed immediate field of a cbcond,
3327 use one of the other v9 conditional branch sequences. */
3328 if (TARGET_CBCOND
3329 && GET_CODE (operands[1]) == REG
3330 && (GET_MODE (operands[1]) == SImode
3331 || (TARGET_ARCH64 && GET_MODE (operands[1]) == DImode))
3332 && (GET_CODE (operands[2]) != CONST_INT
3333 || SPARC_SIMM5_P (INTVAL (operands[2]))))
3334 {
3335 emit_cbcond_insn (GET_CODE (operands[0]), operands[1], operands[2], operands[3]);
3336 return;
3337 }
3338
3339 if (TARGET_ARCH64 && operands[2] == const0_rtx
3340 && GET_CODE (operands[1]) == REG
3341 && GET_MODE (operands[1]) == DImode)
3342 {
3343 emit_v9_brxx_insn (GET_CODE (operands[0]), operands[1], operands[3]);
3344 return;
3345 }
3346
3347 operands[1] = gen_compare_reg (operands[0]);
3348 operands[2] = const0_rtx;
3349 operands[0] = gen_rtx_fmt_ee (GET_CODE (operands[0]), VOIDmode,
3350 operands[1], operands[2]);
3351 emit_jump_insn (gen_cbranchcc4 (operands[0], operands[1], operands[2],
3352 operands[3]));
3353 }
3354
3355
3356 /* Generate a DFmode part of a hard TFmode register.
3357 REG is the TFmode hard register, LOW is 1 for the
3358 low 64bit of the register and 0 otherwise.
3359 */
3360 rtx
3361 gen_df_reg (rtx reg, int low)
3362 {
3363 int regno = REGNO (reg);
3364
3365 if ((WORDS_BIG_ENDIAN == 0) ^ (low != 0))
3366 regno += (TARGET_ARCH64 && SPARC_INT_REG_P (regno)) ? 1 : 2;
3367 return gen_rtx_REG (DFmode, regno);
3368 }
3369 \f
3370 /* Generate a call to FUNC with OPERANDS. Operand 0 is the return value.
3371 Unlike normal calls, TFmode operands are passed by reference. It is
3372 assumed that no more than 3 operands are required. */
3373
3374 static void
3375 emit_soft_tfmode_libcall (const char *func_name, int nargs, rtx *operands)
3376 {
3377 rtx ret_slot = NULL, arg[3], func_sym;
3378 int i;
3379
3380 /* We only expect to be called for conversions, unary, and binary ops. */
3381 gcc_assert (nargs == 2 || nargs == 3);
3382
3383 for (i = 0; i < nargs; ++i)
3384 {
3385 rtx this_arg = operands[i];
3386 rtx this_slot;
3387
3388 /* TFmode arguments and return values are passed by reference. */
3389 if (GET_MODE (this_arg) == TFmode)
3390 {
3391 int force_stack_temp;
3392
3393 force_stack_temp = 0;
3394 if (TARGET_BUGGY_QP_LIB && i == 0)
3395 force_stack_temp = 1;
3396
3397 if (GET_CODE (this_arg) == MEM
3398 && ! force_stack_temp)
3399 {
3400 tree expr = MEM_EXPR (this_arg);
3401 if (expr)
3402 mark_addressable (expr);
3403 this_arg = XEXP (this_arg, 0);
3404 }
3405 else if (CONSTANT_P (this_arg)
3406 && ! force_stack_temp)
3407 {
3408 this_slot = force_const_mem (TFmode, this_arg);
3409 this_arg = XEXP (this_slot, 0);
3410 }
3411 else
3412 {
3413 this_slot = assign_stack_temp (TFmode, GET_MODE_SIZE (TFmode));
3414
3415 /* Operand 0 is the return value. We'll copy it out later. */
3416 if (i > 0)
3417 emit_move_insn (this_slot, this_arg);
3418 else
3419 ret_slot = this_slot;
3420
3421 this_arg = XEXP (this_slot, 0);
3422 }
3423 }
3424
3425 arg[i] = this_arg;
3426 }
3427
3428 func_sym = gen_rtx_SYMBOL_REF (Pmode, func_name);
3429
3430 if (GET_MODE (operands[0]) == TFmode)
3431 {
3432 if (nargs == 2)
3433 emit_library_call (func_sym, LCT_NORMAL, VOIDmode,
3434 arg[0], GET_MODE (arg[0]),
3435 arg[1], GET_MODE (arg[1]));
3436 else
3437 emit_library_call (func_sym, LCT_NORMAL, VOIDmode,
3438 arg[0], GET_MODE (arg[0]),
3439 arg[1], GET_MODE (arg[1]),
3440 arg[2], GET_MODE (arg[2]));
3441
3442 if (ret_slot)
3443 emit_move_insn (operands[0], ret_slot);
3444 }
3445 else
3446 {
3447 rtx ret;
3448
3449 gcc_assert (nargs == 2);
3450
3451 ret = emit_library_call_value (func_sym, operands[0], LCT_NORMAL,
3452 GET_MODE (operands[0]),
3453 arg[1], GET_MODE (arg[1]));
3454
3455 if (ret != operands[0])
3456 emit_move_insn (operands[0], ret);
3457 }
3458 }
3459
3460 /* Expand soft-float TFmode calls to sparc abi routines. */
3461
3462 static void
3463 emit_soft_tfmode_binop (enum rtx_code code, rtx *operands)
3464 {
3465 const char *func;
3466
3467 switch (code)
3468 {
3469 case PLUS:
3470 func = "_Qp_add";
3471 break;
3472 case MINUS:
3473 func = "_Qp_sub";
3474 break;
3475 case MULT:
3476 func = "_Qp_mul";
3477 break;
3478 case DIV:
3479 func = "_Qp_div";
3480 break;
3481 default:
3482 gcc_unreachable ();
3483 }
3484
3485 emit_soft_tfmode_libcall (func, 3, operands);
3486 }
3487
3488 static void
3489 emit_soft_tfmode_unop (enum rtx_code code, rtx *operands)
3490 {
3491 const char *func;
3492
3493 gcc_assert (code == SQRT);
3494 func = "_Qp_sqrt";
3495
3496 emit_soft_tfmode_libcall (func, 2, operands);
3497 }
3498
3499 static void
3500 emit_soft_tfmode_cvt (enum rtx_code code, rtx *operands)
3501 {
3502 const char *func;
3503
3504 switch (code)
3505 {
3506 case FLOAT_EXTEND:
3507 switch (GET_MODE (operands[1]))
3508 {
3509 case E_SFmode:
3510 func = "_Qp_stoq";
3511 break;
3512 case E_DFmode:
3513 func = "_Qp_dtoq";
3514 break;
3515 default:
3516 gcc_unreachable ();
3517 }
3518 break;
3519
3520 case FLOAT_TRUNCATE:
3521 switch (GET_MODE (operands[0]))
3522 {
3523 case E_SFmode:
3524 func = "_Qp_qtos";
3525 break;
3526 case E_DFmode:
3527 func = "_Qp_qtod";
3528 break;
3529 default:
3530 gcc_unreachable ();
3531 }
3532 break;
3533
3534 case FLOAT:
3535 switch (GET_MODE (operands[1]))
3536 {
3537 case E_SImode:
3538 func = "_Qp_itoq";
3539 if (TARGET_ARCH64)
3540 operands[1] = gen_rtx_SIGN_EXTEND (DImode, operands[1]);
3541 break;
3542 case E_DImode:
3543 func = "_Qp_xtoq";
3544 break;
3545 default:
3546 gcc_unreachable ();
3547 }
3548 break;
3549
3550 case UNSIGNED_FLOAT:
3551 switch (GET_MODE (operands[1]))
3552 {
3553 case E_SImode:
3554 func = "_Qp_uitoq";
3555 if (TARGET_ARCH64)
3556 operands[1] = gen_rtx_ZERO_EXTEND (DImode, operands[1]);
3557 break;
3558 case E_DImode:
3559 func = "_Qp_uxtoq";
3560 break;
3561 default:
3562 gcc_unreachable ();
3563 }
3564 break;
3565
3566 case FIX:
3567 switch (GET_MODE (operands[0]))
3568 {
3569 case E_SImode:
3570 func = "_Qp_qtoi";
3571 break;
3572 case E_DImode:
3573 func = "_Qp_qtox";
3574 break;
3575 default:
3576 gcc_unreachable ();
3577 }
3578 break;
3579
3580 case UNSIGNED_FIX:
3581 switch (GET_MODE (operands[0]))
3582 {
3583 case E_SImode:
3584 func = "_Qp_qtoui";
3585 break;
3586 case E_DImode:
3587 func = "_Qp_qtoux";
3588 break;
3589 default:
3590 gcc_unreachable ();
3591 }
3592 break;
3593
3594 default:
3595 gcc_unreachable ();
3596 }
3597
3598 emit_soft_tfmode_libcall (func, 2, operands);
3599 }
3600
3601 /* Expand a hard-float tfmode operation. All arguments must be in
3602 registers. */
3603
3604 static void
3605 emit_hard_tfmode_operation (enum rtx_code code, rtx *operands)
3606 {
3607 rtx op, dest;
3608
3609 if (GET_RTX_CLASS (code) == RTX_UNARY)
3610 {
3611 operands[1] = force_reg (GET_MODE (operands[1]), operands[1]);
3612 op = gen_rtx_fmt_e (code, GET_MODE (operands[0]), operands[1]);
3613 }
3614 else
3615 {
3616 operands[1] = force_reg (GET_MODE (operands[1]), operands[1]);
3617 operands[2] = force_reg (GET_MODE (operands[2]), operands[2]);
3618 op = gen_rtx_fmt_ee (code, GET_MODE (operands[0]),
3619 operands[1], operands[2]);
3620 }
3621
3622 if (register_operand (operands[0], VOIDmode))
3623 dest = operands[0];
3624 else
3625 dest = gen_reg_rtx (GET_MODE (operands[0]));
3626
3627 emit_insn (gen_rtx_SET (dest, op));
3628
3629 if (dest != operands[0])
3630 emit_move_insn (operands[0], dest);
3631 }
3632
3633 void
3634 emit_tfmode_binop (enum rtx_code code, rtx *operands)
3635 {
3636 if (TARGET_HARD_QUAD)
3637 emit_hard_tfmode_operation (code, operands);
3638 else
3639 emit_soft_tfmode_binop (code, operands);
3640 }
3641
3642 void
3643 emit_tfmode_unop (enum rtx_code code, rtx *operands)
3644 {
3645 if (TARGET_HARD_QUAD)
3646 emit_hard_tfmode_operation (code, operands);
3647 else
3648 emit_soft_tfmode_unop (code, operands);
3649 }
3650
3651 void
3652 emit_tfmode_cvt (enum rtx_code code, rtx *operands)
3653 {
3654 if (TARGET_HARD_QUAD)
3655 emit_hard_tfmode_operation (code, operands);
3656 else
3657 emit_soft_tfmode_cvt (code, operands);
3658 }
3659 \f
3660 /* Return nonzero if a branch/jump/call instruction will be emitting
3661 nop into its delay slot. */
3662
3663 int
3664 empty_delay_slot (rtx_insn *insn)
3665 {
3666 rtx seq;
3667
3668 /* If no previous instruction (should not happen), return true. */
3669 if (PREV_INSN (insn) == NULL)
3670 return 1;
3671
3672 seq = NEXT_INSN (PREV_INSN (insn));
3673 if (GET_CODE (PATTERN (seq)) == SEQUENCE)
3674 return 0;
3675
3676 return 1;
3677 }
3678
3679 /* Return nonzero if we should emit a nop after a cbcond instruction.
3680 The cbcond instruction does not have a delay slot, however there is
3681 a severe performance penalty if a control transfer appears right
3682 after a cbcond. Therefore we emit a nop when we detect this
3683 situation. */
3684
3685 int
3686 emit_cbcond_nop (rtx_insn *insn)
3687 {
3688 rtx next = next_active_insn (insn);
3689
3690 if (!next)
3691 return 1;
3692
3693 if (NONJUMP_INSN_P (next)
3694 && GET_CODE (PATTERN (next)) == SEQUENCE)
3695 next = XVECEXP (PATTERN (next), 0, 0);
3696 else if (CALL_P (next)
3697 && GET_CODE (PATTERN (next)) == PARALLEL)
3698 {
3699 rtx delay = XVECEXP (PATTERN (next), 0, 1);
3700
3701 if (GET_CODE (delay) == RETURN)
3702 {
3703 /* It's a sibling call. Do not emit the nop if we're going
3704 to emit something other than the jump itself as the first
3705 instruction of the sibcall sequence. */
3706 if (sparc_leaf_function_p || TARGET_FLAT)
3707 return 0;
3708 }
3709 }
3710
3711 if (NONJUMP_INSN_P (next))
3712 return 0;
3713
3714 return 1;
3715 }
3716
3717 /* Return nonzero if TRIAL can go into the call delay slot. */
3718
3719 int
3720 eligible_for_call_delay (rtx_insn *trial)
3721 {
3722 rtx pat;
3723
3724 if (get_attr_in_branch_delay (trial) == IN_BRANCH_DELAY_FALSE)
3725 return 0;
3726
3727 /* Binutils allows
3728 call __tls_get_addr, %tgd_call (foo)
3729 add %l7, %o0, %o0, %tgd_add (foo)
3730 while Sun as/ld does not. */
3731 if (TARGET_GNU_TLS || !TARGET_TLS)
3732 return 1;
3733
3734 pat = PATTERN (trial);
3735
3736 /* We must reject tgd_add{32|64}, i.e.
3737 (set (reg) (plus (reg) (unspec [(reg) (symbol_ref)] UNSPEC_TLSGD)))
3738 and tldm_add{32|64}, i.e.
3739 (set (reg) (plus (reg) (unspec [(reg) (symbol_ref)] UNSPEC_TLSLDM)))
3740 for Sun as/ld. */
3741 if (GET_CODE (pat) == SET
3742 && GET_CODE (SET_SRC (pat)) == PLUS)
3743 {
3744 rtx unspec = XEXP (SET_SRC (pat), 1);
3745
3746 if (GET_CODE (unspec) == UNSPEC
3747 && (XINT (unspec, 1) == UNSPEC_TLSGD
3748 || XINT (unspec, 1) == UNSPEC_TLSLDM))
3749 return 0;
3750 }
3751
3752 return 1;
3753 }
3754
3755 /* Return nonzero if TRIAL, an insn, can be combined with a 'restore'
3756 instruction. RETURN_P is true if the v9 variant 'return' is to be
3757 considered in the test too.
3758
3759 TRIAL must be a SET whose destination is a REG appropriate for the
3760 'restore' instruction or, if RETURN_P is true, for the 'return'
3761 instruction. */
3762
3763 static int
3764 eligible_for_restore_insn (rtx trial, bool return_p)
3765 {
3766 rtx pat = PATTERN (trial);
3767 rtx src = SET_SRC (pat);
3768 bool src_is_freg = false;
3769 rtx src_reg;
3770
3771 /* Since we now can do moves between float and integer registers when
3772 VIS3 is enabled, we have to catch this case. We can allow such
3773 moves when doing a 'return' however. */
3774 src_reg = src;
3775 if (GET_CODE (src_reg) == SUBREG)
3776 src_reg = SUBREG_REG (src_reg);
3777 if (GET_CODE (src_reg) == REG
3778 && SPARC_FP_REG_P (REGNO (src_reg)))
3779 src_is_freg = true;
3780
3781 /* The 'restore src,%g0,dest' pattern for word mode and below. */
3782 if (GET_MODE_CLASS (GET_MODE (src)) != MODE_FLOAT
3783 && arith_operand (src, GET_MODE (src))
3784 && ! src_is_freg)
3785 {
3786 if (TARGET_ARCH64)
3787 return GET_MODE_SIZE (GET_MODE (src)) <= GET_MODE_SIZE (DImode);
3788 else
3789 return GET_MODE_SIZE (GET_MODE (src)) <= GET_MODE_SIZE (SImode);
3790 }
3791
3792 /* The 'restore src,%g0,dest' pattern for double-word mode. */
3793 else if (GET_MODE_CLASS (GET_MODE (src)) != MODE_FLOAT
3794 && arith_double_operand (src, GET_MODE (src))
3795 && ! src_is_freg)
3796 return GET_MODE_SIZE (GET_MODE (src)) <= GET_MODE_SIZE (DImode);
3797
3798 /* The 'restore src,%g0,dest' pattern for float if no FPU. */
3799 else if (! TARGET_FPU && register_operand (src, SFmode))
3800 return 1;
3801
3802 /* The 'restore src,%g0,dest' pattern for double if no FPU. */
3803 else if (! TARGET_FPU && TARGET_ARCH64 && register_operand (src, DFmode))
3804 return 1;
3805
3806 /* If we have the 'return' instruction, anything that does not use
3807 local or output registers and can go into a delay slot wins. */
3808 else if (return_p && TARGET_V9 && !epilogue_renumber (&pat, 1))
3809 return 1;
3810
3811 /* The 'restore src1,src2,dest' pattern for SImode. */
3812 else if (GET_CODE (src) == PLUS
3813 && register_operand (XEXP (src, 0), SImode)
3814 && arith_operand (XEXP (src, 1), SImode))
3815 return 1;
3816
3817 /* The 'restore src1,src2,dest' pattern for DImode. */
3818 else if (GET_CODE (src) == PLUS
3819 && register_operand (XEXP (src, 0), DImode)
3820 && arith_double_operand (XEXP (src, 1), DImode))
3821 return 1;
3822
3823 /* The 'restore src1,%lo(src2),dest' pattern. */
3824 else if (GET_CODE (src) == LO_SUM
3825 && ! TARGET_CM_MEDMID
3826 && ((register_operand (XEXP (src, 0), SImode)
3827 && immediate_operand (XEXP (src, 1), SImode))
3828 || (TARGET_ARCH64
3829 && register_operand (XEXP (src, 0), DImode)
3830 && immediate_operand (XEXP (src, 1), DImode))))
3831 return 1;
3832
3833 /* The 'restore src,src,dest' pattern. */
3834 else if (GET_CODE (src) == ASHIFT
3835 && (register_operand (XEXP (src, 0), SImode)
3836 || register_operand (XEXP (src, 0), DImode))
3837 && XEXP (src, 1) == const1_rtx)
3838 return 1;
3839
3840 return 0;
3841 }
3842
3843 /* Return nonzero if TRIAL can go into the function return's delay slot. */
3844
3845 int
3846 eligible_for_return_delay (rtx_insn *trial)
3847 {
3848 int regno;
3849 rtx pat;
3850
3851 /* If the function uses __builtin_eh_return, the eh_return machinery
3852 occupies the delay slot. */
3853 if (crtl->calls_eh_return)
3854 return 0;
3855
3856 if (get_attr_in_branch_delay (trial) == IN_BRANCH_DELAY_FALSE)
3857 return 0;
3858
3859 /* In the case of a leaf or flat function, anything can go into the slot. */
3860 if (sparc_leaf_function_p || TARGET_FLAT)
3861 return 1;
3862
3863 if (!NONJUMP_INSN_P (trial))
3864 return 0;
3865
3866 pat = PATTERN (trial);
3867 if (GET_CODE (pat) == PARALLEL)
3868 {
3869 int i;
3870
3871 if (! TARGET_V9)
3872 return 0;
3873 for (i = XVECLEN (pat, 0) - 1; i >= 0; i--)
3874 {
3875 rtx expr = XVECEXP (pat, 0, i);
3876 if (GET_CODE (expr) != SET)
3877 return 0;
3878 if (GET_CODE (SET_DEST (expr)) != REG)
3879 return 0;
3880 regno = REGNO (SET_DEST (expr));
3881 if (regno >= 8 && regno < 24)
3882 return 0;
3883 }
3884 return !epilogue_renumber (&pat, 1);
3885 }
3886
3887 if (GET_CODE (pat) != SET)
3888 return 0;
3889
3890 if (GET_CODE (SET_DEST (pat)) != REG)
3891 return 0;
3892
3893 regno = REGNO (SET_DEST (pat));
3894
3895 /* Otherwise, only operations which can be done in tandem with
3896 a `restore' or `return' insn can go into the delay slot. */
3897 if (regno >= 8 && regno < 24)
3898 return 0;
3899
3900 /* If this instruction sets up floating point register and we have a return
3901 instruction, it can probably go in. But restore will not work
3902 with FP_REGS. */
3903 if (! SPARC_INT_REG_P (regno))
3904 return TARGET_V9 && !epilogue_renumber (&pat, 1);
3905
3906 return eligible_for_restore_insn (trial, true);
3907 }
3908
3909 /* Return nonzero if TRIAL can go into the sibling call's delay slot. */
3910
3911 int
3912 eligible_for_sibcall_delay (rtx_insn *trial)
3913 {
3914 rtx pat;
3915
3916 if (get_attr_in_branch_delay (trial) == IN_BRANCH_DELAY_FALSE)
3917 return 0;
3918
3919 if (!NONJUMP_INSN_P (trial))
3920 return 0;
3921
3922 pat = PATTERN (trial);
3923
3924 if (sparc_leaf_function_p || TARGET_FLAT)
3925 {
3926 /* If the tail call is done using the call instruction,
3927 we have to restore %o7 in the delay slot. */
3928 if (LEAF_SIBCALL_SLOT_RESERVED_P)
3929 return 0;
3930
3931 /* %g1 is used to build the function address */
3932 if (reg_mentioned_p (gen_rtx_REG (Pmode, 1), pat))
3933 return 0;
3934
3935 return 1;
3936 }
3937
3938 if (GET_CODE (pat) != SET)
3939 return 0;
3940
3941 /* Otherwise, only operations which can be done in tandem with
3942 a `restore' insn can go into the delay slot. */
3943 if (GET_CODE (SET_DEST (pat)) != REG
3944 || (REGNO (SET_DEST (pat)) >= 8 && REGNO (SET_DEST (pat)) < 24)
3945 || ! SPARC_INT_REG_P (REGNO (SET_DEST (pat))))
3946 return 0;
3947
3948 /* If it mentions %o7, it can't go in, because sibcall will clobber it
3949 in most cases. */
3950 if (reg_mentioned_p (gen_rtx_REG (Pmode, 15), pat))
3951 return 0;
3952
3953 return eligible_for_restore_insn (trial, false);
3954 }
3955 \f
3956 /* Determine if it's legal to put X into the constant pool. This
3957 is not possible if X contains the address of a symbol that is
3958 not constant (TLS) or not known at final link time (PIC). */
3959
3960 static bool
3961 sparc_cannot_force_const_mem (machine_mode mode, rtx x)
3962 {
3963 switch (GET_CODE (x))
3964 {
3965 case CONST_INT:
3966 case CONST_WIDE_INT:
3967 case CONST_DOUBLE:
3968 case CONST_VECTOR:
3969 /* Accept all non-symbolic constants. */
3970 return false;
3971
3972 case LABEL_REF:
3973 /* Labels are OK iff we are non-PIC. */
3974 return flag_pic != 0;
3975
3976 case SYMBOL_REF:
3977 /* 'Naked' TLS symbol references are never OK,
3978 non-TLS symbols are OK iff we are non-PIC. */
3979 if (SYMBOL_REF_TLS_MODEL (x))
3980 return true;
3981 else
3982 return flag_pic != 0;
3983
3984 case CONST:
3985 return sparc_cannot_force_const_mem (mode, XEXP (x, 0));
3986 case PLUS:
3987 case MINUS:
3988 return sparc_cannot_force_const_mem (mode, XEXP (x, 0))
3989 || sparc_cannot_force_const_mem (mode, XEXP (x, 1));
3990 case UNSPEC:
3991 return true;
3992 default:
3993 gcc_unreachable ();
3994 }
3995 }
3996 \f
3997 /* Global Offset Table support. */
3998 static GTY(()) rtx got_helper_rtx = NULL_RTX;
3999 static GTY(()) rtx global_offset_table_rtx = NULL_RTX;
4000
4001 /* Return the SYMBOL_REF for the Global Offset Table. */
4002
4003 static GTY(()) rtx sparc_got_symbol = NULL_RTX;
4004
4005 static rtx
4006 sparc_got (void)
4007 {
4008 if (!sparc_got_symbol)
4009 sparc_got_symbol = gen_rtx_SYMBOL_REF (Pmode, "_GLOBAL_OFFSET_TABLE_");
4010
4011 return sparc_got_symbol;
4012 }
4013
4014 /* Ensure that we are not using patterns that are not OK with PIC. */
4015
4016 int
4017 check_pic (int i)
4018 {
4019 rtx op;
4020
4021 switch (flag_pic)
4022 {
4023 case 1:
4024 op = recog_data.operand[i];
4025 gcc_assert (GET_CODE (op) != SYMBOL_REF
4026 && (GET_CODE (op) != CONST
4027 || (GET_CODE (XEXP (op, 0)) == MINUS
4028 && XEXP (XEXP (op, 0), 0) == sparc_got ()
4029 && GET_CODE (XEXP (XEXP (op, 0), 1)) == CONST)));
4030 /* fallthrough */
4031 case 2:
4032 default:
4033 return 1;
4034 }
4035 }
4036
4037 /* Return true if X is an address which needs a temporary register when
4038 reloaded while generating PIC code. */
4039
4040 int
4041 pic_address_needs_scratch (rtx x)
4042 {
4043 /* An address which is a symbolic plus a non SMALL_INT needs a temp reg. */
4044 if (GET_CODE (x) == CONST && GET_CODE (XEXP (x, 0)) == PLUS
4045 && GET_CODE (XEXP (XEXP (x, 0), 0)) == SYMBOL_REF
4046 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
4047 && ! SMALL_INT (XEXP (XEXP (x, 0), 1)))
4048 return 1;
4049
4050 return 0;
4051 }
4052
4053 /* Determine if a given RTX is a valid constant. We already know this
4054 satisfies CONSTANT_P. */
4055
4056 static bool
4057 sparc_legitimate_constant_p (machine_mode mode, rtx x)
4058 {
4059 switch (GET_CODE (x))
4060 {
4061 case CONST:
4062 case SYMBOL_REF:
4063 if (sparc_tls_referenced_p (x))
4064 return false;
4065 break;
4066
4067 case CONST_DOUBLE:
4068 /* Floating point constants are generally not ok.
4069 The only exception is 0.0 and all-ones in VIS. */
4070 if (TARGET_VIS
4071 && SCALAR_FLOAT_MODE_P (mode)
4072 && (const_zero_operand (x, mode)
4073 || const_all_ones_operand (x, mode)))
4074 return true;
4075
4076 return false;
4077
4078 case CONST_VECTOR:
4079 /* Vector constants are generally not ok.
4080 The only exception is 0 or -1 in VIS. */
4081 if (TARGET_VIS
4082 && (const_zero_operand (x, mode)
4083 || const_all_ones_operand (x, mode)))
4084 return true;
4085
4086 return false;
4087
4088 default:
4089 break;
4090 }
4091
4092 return true;
4093 }
4094
4095 /* Determine if a given RTX is a valid constant address. */
4096
4097 bool
4098 constant_address_p (rtx x)
4099 {
4100 switch (GET_CODE (x))
4101 {
4102 case LABEL_REF:
4103 case CONST_INT:
4104 case HIGH:
4105 return true;
4106
4107 case CONST:
4108 if (flag_pic && pic_address_needs_scratch (x))
4109 return false;
4110 return sparc_legitimate_constant_p (Pmode, x);
4111
4112 case SYMBOL_REF:
4113 return !flag_pic && sparc_legitimate_constant_p (Pmode, x);
4114
4115 default:
4116 return false;
4117 }
4118 }
4119
4120 /* Nonzero if the constant value X is a legitimate general operand
4121 when generating PIC code. It is given that flag_pic is on and
4122 that X satisfies CONSTANT_P. */
4123
4124 bool
4125 legitimate_pic_operand_p (rtx x)
4126 {
4127 if (pic_address_needs_scratch (x))
4128 return false;
4129 if (sparc_tls_referenced_p (x))
4130 return false;
4131 return true;
4132 }
4133
4134 #define RTX_OK_FOR_OFFSET_P(X, MODE) \
4135 (CONST_INT_P (X) \
4136 && INTVAL (X) >= -0x1000 \
4137 && INTVAL (X) <= (0x1000 - GET_MODE_SIZE (MODE)))
4138
4139 #define RTX_OK_FOR_OLO10_P(X, MODE) \
4140 (CONST_INT_P (X) \
4141 && INTVAL (X) >= -0x1000 \
4142 && INTVAL (X) <= (0xc00 - GET_MODE_SIZE (MODE)))
4143
4144 /* Handle the TARGET_LEGITIMATE_ADDRESS_P target hook.
4145
4146 On SPARC, the actual legitimate addresses must be REG+REG or REG+SMALLINT
4147 ordinarily. This changes a bit when generating PIC. */
4148
4149 static bool
4150 sparc_legitimate_address_p (machine_mode mode, rtx addr, bool strict)
4151 {
4152 rtx rs1 = NULL, rs2 = NULL, imm1 = NULL;
4153
4154 if (REG_P (addr) || GET_CODE (addr) == SUBREG)
4155 rs1 = addr;
4156 else if (GET_CODE (addr) == PLUS)
4157 {
4158 rs1 = XEXP (addr, 0);
4159 rs2 = XEXP (addr, 1);
4160
4161 /* Canonicalize. REG comes first, if there are no regs,
4162 LO_SUM comes first. */
4163 if (!REG_P (rs1)
4164 && GET_CODE (rs1) != SUBREG
4165 && (REG_P (rs2)
4166 || GET_CODE (rs2) == SUBREG
4167 || (GET_CODE (rs2) == LO_SUM && GET_CODE (rs1) != LO_SUM)))
4168 {
4169 rs1 = XEXP (addr, 1);
4170 rs2 = XEXP (addr, 0);
4171 }
4172
4173 if ((flag_pic == 1
4174 && rs1 == pic_offset_table_rtx
4175 && !REG_P (rs2)
4176 && GET_CODE (rs2) != SUBREG
4177 && GET_CODE (rs2) != LO_SUM
4178 && GET_CODE (rs2) != MEM
4179 && !(GET_CODE (rs2) == SYMBOL_REF && SYMBOL_REF_TLS_MODEL (rs2))
4180 && (! symbolic_operand (rs2, VOIDmode) || mode == Pmode)
4181 && (GET_CODE (rs2) != CONST_INT || SMALL_INT (rs2)))
4182 || ((REG_P (rs1)
4183 || GET_CODE (rs1) == SUBREG)
4184 && RTX_OK_FOR_OFFSET_P (rs2, mode)))
4185 {
4186 imm1 = rs2;
4187 rs2 = NULL;
4188 }
4189 else if ((REG_P (rs1) || GET_CODE (rs1) == SUBREG)
4190 && (REG_P (rs2) || GET_CODE (rs2) == SUBREG))
4191 {
4192 /* We prohibit REG + REG for TFmode when there are no quad move insns
4193 and we consequently need to split. We do this because REG+REG
4194 is not an offsettable address. If we get the situation in reload
4195 where source and destination of a movtf pattern are both MEMs with
4196 REG+REG address, then only one of them gets converted to an
4197 offsettable address. */
4198 if (mode == TFmode
4199 && ! (TARGET_ARCH64 && TARGET_HARD_QUAD))
4200 return 0;
4201
4202 /* Likewise for TImode, but in all cases. */
4203 if (mode == TImode)
4204 return 0;
4205
4206 /* We prohibit REG + REG on ARCH32 if not optimizing for
4207 DFmode/DImode because then mem_min_alignment is likely to be zero
4208 after reload and the forced split would lack a matching splitter
4209 pattern. */
4210 if (TARGET_ARCH32 && !optimize
4211 && (mode == DFmode || mode == DImode))
4212 return 0;
4213 }
4214 else if (USE_AS_OFFSETABLE_LO10
4215 && GET_CODE (rs1) == LO_SUM
4216 && TARGET_ARCH64
4217 && ! TARGET_CM_MEDMID
4218 && RTX_OK_FOR_OLO10_P (rs2, mode))
4219 {
4220 rs2 = NULL;
4221 imm1 = XEXP (rs1, 1);
4222 rs1 = XEXP (rs1, 0);
4223 if (!CONSTANT_P (imm1)
4224 || (GET_CODE (rs1) == SYMBOL_REF && SYMBOL_REF_TLS_MODEL (rs1)))
4225 return 0;
4226 }
4227 }
4228 else if (GET_CODE (addr) == LO_SUM)
4229 {
4230 rs1 = XEXP (addr, 0);
4231 imm1 = XEXP (addr, 1);
4232
4233 if (!CONSTANT_P (imm1)
4234 || (GET_CODE (rs1) == SYMBOL_REF && SYMBOL_REF_TLS_MODEL (rs1)))
4235 return 0;
4236
4237 /* We can't allow TFmode in 32-bit mode, because an offset greater
4238 than the alignment (8) may cause the LO_SUM to overflow. */
4239 if (mode == TFmode && TARGET_ARCH32)
4240 return 0;
4241
4242 /* During reload, accept the HIGH+LO_SUM construct generated by
4243 sparc_legitimize_reload_address. */
4244 if (reload_in_progress
4245 && GET_CODE (rs1) == HIGH
4246 && XEXP (rs1, 0) == imm1)
4247 return 1;
4248 }
4249 else if (GET_CODE (addr) == CONST_INT && SMALL_INT (addr))
4250 return 1;
4251 else
4252 return 0;
4253
4254 if (GET_CODE (rs1) == SUBREG)
4255 rs1 = SUBREG_REG (rs1);
4256 if (!REG_P (rs1))
4257 return 0;
4258
4259 if (rs2)
4260 {
4261 if (GET_CODE (rs2) == SUBREG)
4262 rs2 = SUBREG_REG (rs2);
4263 if (!REG_P (rs2))
4264 return 0;
4265 }
4266
4267 if (strict)
4268 {
4269 if (!REGNO_OK_FOR_BASE_P (REGNO (rs1))
4270 || (rs2 && !REGNO_OK_FOR_BASE_P (REGNO (rs2))))
4271 return 0;
4272 }
4273 else
4274 {
4275 if ((! SPARC_INT_REG_P (REGNO (rs1))
4276 && REGNO (rs1) != FRAME_POINTER_REGNUM
4277 && REGNO (rs1) < FIRST_PSEUDO_REGISTER)
4278 || (rs2
4279 && (! SPARC_INT_REG_P (REGNO (rs2))
4280 && REGNO (rs2) != FRAME_POINTER_REGNUM
4281 && REGNO (rs2) < FIRST_PSEUDO_REGISTER)))
4282 return 0;
4283 }
4284 return 1;
4285 }
4286
4287 /* Return the SYMBOL_REF for the tls_get_addr function. */
4288
4289 static GTY(()) rtx sparc_tls_symbol = NULL_RTX;
4290
4291 static rtx
4292 sparc_tls_get_addr (void)
4293 {
4294 if (!sparc_tls_symbol)
4295 sparc_tls_symbol = gen_rtx_SYMBOL_REF (Pmode, "__tls_get_addr");
4296
4297 return sparc_tls_symbol;
4298 }
4299
4300 /* Return the Global Offset Table to be used in TLS mode. */
4301
4302 static rtx
4303 sparc_tls_got (void)
4304 {
4305 /* In PIC mode, this is just the PIC offset table. */
4306 if (flag_pic)
4307 {
4308 crtl->uses_pic_offset_table = 1;
4309 return pic_offset_table_rtx;
4310 }
4311
4312 /* In non-PIC mode, Sun as (unlike GNU as) emits PC-relative relocations for
4313 the GOT symbol with the 32-bit ABI, so we reload the GOT register. */
4314 if (TARGET_SUN_TLS && TARGET_ARCH32)
4315 {
4316 load_got_register ();
4317 return global_offset_table_rtx;
4318 }
4319
4320 /* In all other cases, we load a new pseudo with the GOT symbol. */
4321 return copy_to_reg (sparc_got ());
4322 }
4323
4324 /* Return true if X contains a thread-local symbol. */
4325
4326 static bool
4327 sparc_tls_referenced_p (rtx x)
4328 {
4329 if (!TARGET_HAVE_TLS)
4330 return false;
4331
4332 if (GET_CODE (x) == CONST && GET_CODE (XEXP (x, 0)) == PLUS)
4333 x = XEXP (XEXP (x, 0), 0);
4334
4335 if (GET_CODE (x) == SYMBOL_REF && SYMBOL_REF_TLS_MODEL (x))
4336 return true;
4337
4338 /* That's all we handle in sparc_legitimize_tls_address for now. */
4339 return false;
4340 }
4341
4342 /* ADDR contains a thread-local SYMBOL_REF. Generate code to compute
4343 this (thread-local) address. */
4344
4345 static rtx
4346 sparc_legitimize_tls_address (rtx addr)
4347 {
4348 rtx temp1, temp2, temp3, ret, o0, got;
4349 rtx_insn *insn;
4350
4351 gcc_assert (can_create_pseudo_p ());
4352
4353 if (GET_CODE (addr) == SYMBOL_REF)
4354 switch (SYMBOL_REF_TLS_MODEL (addr))
4355 {
4356 case TLS_MODEL_GLOBAL_DYNAMIC:
4357 start_sequence ();
4358 temp1 = gen_reg_rtx (SImode);
4359 temp2 = gen_reg_rtx (SImode);
4360 ret = gen_reg_rtx (Pmode);
4361 o0 = gen_rtx_REG (Pmode, 8);
4362 got = sparc_tls_got ();
4363 emit_insn (gen_tgd_hi22 (temp1, addr));
4364 emit_insn (gen_tgd_lo10 (temp2, temp1, addr));
4365 if (TARGET_ARCH32)
4366 {
4367 emit_insn (gen_tgd_add32 (o0, got, temp2, addr));
4368 insn = emit_call_insn (gen_tgd_call32 (o0, sparc_tls_get_addr (),
4369 addr, const1_rtx));
4370 }
4371 else
4372 {
4373 emit_insn (gen_tgd_add64 (o0, got, temp2, addr));
4374 insn = emit_call_insn (gen_tgd_call64 (o0, sparc_tls_get_addr (),
4375 addr, const1_rtx));
4376 }
4377 use_reg (&CALL_INSN_FUNCTION_USAGE (insn), o0);
4378 insn = get_insns ();
4379 end_sequence ();
4380 emit_libcall_block (insn, ret, o0, addr);
4381 break;
4382
4383 case TLS_MODEL_LOCAL_DYNAMIC:
4384 start_sequence ();
4385 temp1 = gen_reg_rtx (SImode);
4386 temp2 = gen_reg_rtx (SImode);
4387 temp3 = gen_reg_rtx (Pmode);
4388 ret = gen_reg_rtx (Pmode);
4389 o0 = gen_rtx_REG (Pmode, 8);
4390 got = sparc_tls_got ();
4391 emit_insn (gen_tldm_hi22 (temp1));
4392 emit_insn (gen_tldm_lo10 (temp2, temp1));
4393 if (TARGET_ARCH32)
4394 {
4395 emit_insn (gen_tldm_add32 (o0, got, temp2));
4396 insn = emit_call_insn (gen_tldm_call32 (o0, sparc_tls_get_addr (),
4397 const1_rtx));
4398 }
4399 else
4400 {
4401 emit_insn (gen_tldm_add64 (o0, got, temp2));
4402 insn = emit_call_insn (gen_tldm_call64 (o0, sparc_tls_get_addr (),
4403 const1_rtx));
4404 }
4405 use_reg (&CALL_INSN_FUNCTION_USAGE (insn), o0);
4406 insn = get_insns ();
4407 end_sequence ();
4408 emit_libcall_block (insn, temp3, o0,
4409 gen_rtx_UNSPEC (Pmode, gen_rtvec (1, const0_rtx),
4410 UNSPEC_TLSLD_BASE));
4411 temp1 = gen_reg_rtx (SImode);
4412 temp2 = gen_reg_rtx (SImode);
4413 emit_insn (gen_tldo_hix22 (temp1, addr));
4414 emit_insn (gen_tldo_lox10 (temp2, temp1, addr));
4415 if (TARGET_ARCH32)
4416 emit_insn (gen_tldo_add32 (ret, temp3, temp2, addr));
4417 else
4418 emit_insn (gen_tldo_add64 (ret, temp3, temp2, addr));
4419 break;
4420
4421 case TLS_MODEL_INITIAL_EXEC:
4422 temp1 = gen_reg_rtx (SImode);
4423 temp2 = gen_reg_rtx (SImode);
4424 temp3 = gen_reg_rtx (Pmode);
4425 got = sparc_tls_got ();
4426 emit_insn (gen_tie_hi22 (temp1, addr));
4427 emit_insn (gen_tie_lo10 (temp2, temp1, addr));
4428 if (TARGET_ARCH32)
4429 emit_insn (gen_tie_ld32 (temp3, got, temp2, addr));
4430 else
4431 emit_insn (gen_tie_ld64 (temp3, got, temp2, addr));
4432 if (TARGET_SUN_TLS)
4433 {
4434 ret = gen_reg_rtx (Pmode);
4435 if (TARGET_ARCH32)
4436 emit_insn (gen_tie_add32 (ret, gen_rtx_REG (Pmode, 7),
4437 temp3, addr));
4438 else
4439 emit_insn (gen_tie_add64 (ret, gen_rtx_REG (Pmode, 7),
4440 temp3, addr));
4441 }
4442 else
4443 ret = gen_rtx_PLUS (Pmode, gen_rtx_REG (Pmode, 7), temp3);
4444 break;
4445
4446 case TLS_MODEL_LOCAL_EXEC:
4447 temp1 = gen_reg_rtx (Pmode);
4448 temp2 = gen_reg_rtx (Pmode);
4449 if (TARGET_ARCH32)
4450 {
4451 emit_insn (gen_tle_hix22_sp32 (temp1, addr));
4452 emit_insn (gen_tle_lox10_sp32 (temp2, temp1, addr));
4453 }
4454 else
4455 {
4456 emit_insn (gen_tle_hix22_sp64 (temp1, addr));
4457 emit_insn (gen_tle_lox10_sp64 (temp2, temp1, addr));
4458 }
4459 ret = gen_rtx_PLUS (Pmode, gen_rtx_REG (Pmode, 7), temp2);
4460 break;
4461
4462 default:
4463 gcc_unreachable ();
4464 }
4465
4466 else if (GET_CODE (addr) == CONST)
4467 {
4468 rtx base, offset;
4469
4470 gcc_assert (GET_CODE (XEXP (addr, 0)) == PLUS);
4471
4472 base = sparc_legitimize_tls_address (XEXP (XEXP (addr, 0), 0));
4473 offset = XEXP (XEXP (addr, 0), 1);
4474
4475 base = force_operand (base, NULL_RTX);
4476 if (!(GET_CODE (offset) == CONST_INT && SMALL_INT (offset)))
4477 offset = force_reg (Pmode, offset);
4478 ret = gen_rtx_PLUS (Pmode, base, offset);
4479 }
4480
4481 else
4482 gcc_unreachable (); /* for now ... */
4483
4484 return ret;
4485 }
4486
4487 /* Legitimize PIC addresses. If the address is already position-independent,
4488 we return ORIG. Newly generated position-independent addresses go into a
4489 reg. This is REG if nonzero, otherwise we allocate register(s) as
4490 necessary. */
4491
4492 static rtx
4493 sparc_legitimize_pic_address (rtx orig, rtx reg)
4494 {
4495 bool gotdata_op = false;
4496
4497 if (GET_CODE (orig) == SYMBOL_REF
4498 /* See the comment in sparc_expand_move. */
4499 || (GET_CODE (orig) == LABEL_REF && !can_use_mov_pic_label_ref (orig)))
4500 {
4501 rtx pic_ref, address;
4502 rtx_insn *insn;
4503
4504 if (reg == 0)
4505 {
4506 gcc_assert (can_create_pseudo_p ());
4507 reg = gen_reg_rtx (Pmode);
4508 }
4509
4510 if (flag_pic == 2)
4511 {
4512 /* If not during reload, allocate another temp reg here for loading
4513 in the address, so that these instructions can be optimized
4514 properly. */
4515 rtx temp_reg = (! can_create_pseudo_p ()
4516 ? reg : gen_reg_rtx (Pmode));
4517
4518 /* Must put the SYMBOL_REF inside an UNSPEC here so that cse
4519 won't get confused into thinking that these two instructions
4520 are loading in the true address of the symbol. If in the
4521 future a PIC rtx exists, that should be used instead. */
4522 if (TARGET_ARCH64)
4523 {
4524 emit_insn (gen_movdi_high_pic (temp_reg, orig));
4525 emit_insn (gen_movdi_lo_sum_pic (temp_reg, temp_reg, orig));
4526 }
4527 else
4528 {
4529 emit_insn (gen_movsi_high_pic (temp_reg, orig));
4530 emit_insn (gen_movsi_lo_sum_pic (temp_reg, temp_reg, orig));
4531 }
4532 address = temp_reg;
4533 gotdata_op = true;
4534 }
4535 else
4536 address = orig;
4537
4538 crtl->uses_pic_offset_table = 1;
4539 if (gotdata_op)
4540 {
4541 if (TARGET_ARCH64)
4542 insn = emit_insn (gen_movdi_pic_gotdata_op (reg,
4543 pic_offset_table_rtx,
4544 address, orig));
4545 else
4546 insn = emit_insn (gen_movsi_pic_gotdata_op (reg,
4547 pic_offset_table_rtx,
4548 address, orig));
4549 }
4550 else
4551 {
4552 pic_ref
4553 = gen_const_mem (Pmode,
4554 gen_rtx_PLUS (Pmode,
4555 pic_offset_table_rtx, address));
4556 insn = emit_move_insn (reg, pic_ref);
4557 }
4558
4559 /* Put a REG_EQUAL note on this insn, so that it can be optimized
4560 by loop. */
4561 set_unique_reg_note (insn, REG_EQUAL, orig);
4562 return reg;
4563 }
4564 else if (GET_CODE (orig) == CONST)
4565 {
4566 rtx base, offset;
4567
4568 if (GET_CODE (XEXP (orig, 0)) == PLUS
4569 && XEXP (XEXP (orig, 0), 0) == pic_offset_table_rtx)
4570 return orig;
4571
4572 if (reg == 0)
4573 {
4574 gcc_assert (can_create_pseudo_p ());
4575 reg = gen_reg_rtx (Pmode);
4576 }
4577
4578 gcc_assert (GET_CODE (XEXP (orig, 0)) == PLUS);
4579 base = sparc_legitimize_pic_address (XEXP (XEXP (orig, 0), 0), reg);
4580 offset = sparc_legitimize_pic_address (XEXP (XEXP (orig, 0), 1),
4581 base == reg ? NULL_RTX : reg);
4582
4583 if (GET_CODE (offset) == CONST_INT)
4584 {
4585 if (SMALL_INT (offset))
4586 return plus_constant (Pmode, base, INTVAL (offset));
4587 else if (can_create_pseudo_p ())
4588 offset = force_reg (Pmode, offset);
4589 else
4590 /* If we reach here, then something is seriously wrong. */
4591 gcc_unreachable ();
4592 }
4593 return gen_rtx_PLUS (Pmode, base, offset);
4594 }
4595 else if (GET_CODE (orig) == LABEL_REF)
4596 /* ??? We ought to be checking that the register is live instead, in case
4597 it is eliminated. */
4598 crtl->uses_pic_offset_table = 1;
4599
4600 return orig;
4601 }
4602
4603 /* Try machine-dependent ways of modifying an illegitimate address X
4604 to be legitimate. If we find one, return the new, valid address.
4605
4606 OLDX is the address as it was before break_out_memory_refs was called.
4607 In some cases it is useful to look at this to decide what needs to be done.
4608
4609 MODE is the mode of the operand pointed to by X.
4610
4611 On SPARC, change REG+N into REG+REG, and REG+(X*Y) into REG+REG. */
4612
4613 static rtx
4614 sparc_legitimize_address (rtx x, rtx oldx ATTRIBUTE_UNUSED,
4615 machine_mode mode)
4616 {
4617 rtx orig_x = x;
4618
4619 if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 0)) == MULT)
4620 x = gen_rtx_PLUS (Pmode, XEXP (x, 1),
4621 force_operand (XEXP (x, 0), NULL_RTX));
4622 if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 1)) == MULT)
4623 x = gen_rtx_PLUS (Pmode, XEXP (x, 0),
4624 force_operand (XEXP (x, 1), NULL_RTX));
4625 if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 0)) == PLUS)
4626 x = gen_rtx_PLUS (Pmode, force_operand (XEXP (x, 0), NULL_RTX),
4627 XEXP (x, 1));
4628 if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 1)) == PLUS)
4629 x = gen_rtx_PLUS (Pmode, XEXP (x, 0),
4630 force_operand (XEXP (x, 1), NULL_RTX));
4631
4632 if (x != orig_x && sparc_legitimate_address_p (mode, x, FALSE))
4633 return x;
4634
4635 if (sparc_tls_referenced_p (x))
4636 x = sparc_legitimize_tls_address (x);
4637 else if (flag_pic)
4638 x = sparc_legitimize_pic_address (x, NULL_RTX);
4639 else if (GET_CODE (x) == PLUS && CONSTANT_ADDRESS_P (XEXP (x, 1)))
4640 x = gen_rtx_PLUS (Pmode, XEXP (x, 0),
4641 copy_to_mode_reg (Pmode, XEXP (x, 1)));
4642 else if (GET_CODE (x) == PLUS && CONSTANT_ADDRESS_P (XEXP (x, 0)))
4643 x = gen_rtx_PLUS (Pmode, XEXP (x, 1),
4644 copy_to_mode_reg (Pmode, XEXP (x, 0)));
4645 else if (GET_CODE (x) == SYMBOL_REF
4646 || GET_CODE (x) == CONST
4647 || GET_CODE (x) == LABEL_REF)
4648 x = copy_to_suggested_reg (x, NULL_RTX, Pmode);
4649
4650 return x;
4651 }
4652
4653 /* Delegitimize an address that was legitimized by the above function. */
4654
4655 static rtx
4656 sparc_delegitimize_address (rtx x)
4657 {
4658 x = delegitimize_mem_from_attrs (x);
4659
4660 if (GET_CODE (x) == LO_SUM && GET_CODE (XEXP (x, 1)) == UNSPEC)
4661 switch (XINT (XEXP (x, 1), 1))
4662 {
4663 case UNSPEC_MOVE_PIC:
4664 case UNSPEC_TLSLE:
4665 x = XVECEXP (XEXP (x, 1), 0, 0);
4666 gcc_assert (GET_CODE (x) == SYMBOL_REF);
4667 break;
4668 default:
4669 break;
4670 }
4671
4672 /* This is generated by mov{si,di}_pic_label_ref in PIC mode. */
4673 if (GET_CODE (x) == MINUS
4674 && REG_P (XEXP (x, 0))
4675 && REGNO (XEXP (x, 0)) == PIC_OFFSET_TABLE_REGNUM
4676 && GET_CODE (XEXP (x, 1)) == LO_SUM
4677 && GET_CODE (XEXP (XEXP (x, 1), 1)) == UNSPEC
4678 && XINT (XEXP (XEXP (x, 1), 1), 1) == UNSPEC_MOVE_PIC_LABEL)
4679 {
4680 x = XVECEXP (XEXP (XEXP (x, 1), 1), 0, 0);
4681 gcc_assert (GET_CODE (x) == LABEL_REF);
4682 }
4683
4684 return x;
4685 }
4686
4687 /* SPARC implementation of LEGITIMIZE_RELOAD_ADDRESS. Returns a value to
4688 replace the input X, or the original X if no replacement is called for.
4689 The output parameter *WIN is 1 if the calling macro should goto WIN,
4690 0 if it should not.
4691
4692 For SPARC, we wish to handle addresses by splitting them into
4693 HIGH+LO_SUM pairs, retaining the LO_SUM in the memory reference.
4694 This cuts the number of extra insns by one.
4695
4696 Do nothing when generating PIC code and the address is a symbolic
4697 operand or requires a scratch register. */
4698
4699 rtx
4700 sparc_legitimize_reload_address (rtx x, machine_mode mode,
4701 int opnum, int type,
4702 int ind_levels ATTRIBUTE_UNUSED, int *win)
4703 {
4704 /* Decompose SImode constants into HIGH+LO_SUM. */
4705 if (CONSTANT_P (x)
4706 && (mode != TFmode || TARGET_ARCH64)
4707 && GET_MODE (x) == SImode
4708 && GET_CODE (x) != LO_SUM
4709 && GET_CODE (x) != HIGH
4710 && sparc_cmodel <= CM_MEDLOW
4711 && !(flag_pic
4712 && (symbolic_operand (x, Pmode) || pic_address_needs_scratch (x))))
4713 {
4714 x = gen_rtx_LO_SUM (GET_MODE (x), gen_rtx_HIGH (GET_MODE (x), x), x);
4715 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
4716 BASE_REG_CLASS, GET_MODE (x), VOIDmode, 0, 0,
4717 opnum, (enum reload_type)type);
4718 *win = 1;
4719 return x;
4720 }
4721
4722 /* We have to recognize what we have already generated above. */
4723 if (GET_CODE (x) == LO_SUM && GET_CODE (XEXP (x, 0)) == HIGH)
4724 {
4725 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
4726 BASE_REG_CLASS, GET_MODE (x), VOIDmode, 0, 0,
4727 opnum, (enum reload_type)type);
4728 *win = 1;
4729 return x;
4730 }
4731
4732 *win = 0;
4733 return x;
4734 }
4735
4736 /* Return true if ADDR (a legitimate address expression)
4737 has an effect that depends on the machine mode it is used for.
4738
4739 In PIC mode,
4740
4741 (mem:HI [%l7+a])
4742
4743 is not equivalent to
4744
4745 (mem:QI [%l7+a]) (mem:QI [%l7+a+1])
4746
4747 because [%l7+a+1] is interpreted as the address of (a+1). */
4748
4749
4750 static bool
4751 sparc_mode_dependent_address_p (const_rtx addr,
4752 addr_space_t as ATTRIBUTE_UNUSED)
4753 {
4754 if (flag_pic && GET_CODE (addr) == PLUS)
4755 {
4756 rtx op0 = XEXP (addr, 0);
4757 rtx op1 = XEXP (addr, 1);
4758 if (op0 == pic_offset_table_rtx
4759 && symbolic_operand (op1, VOIDmode))
4760 return true;
4761 }
4762
4763 return false;
4764 }
4765
4766 #ifdef HAVE_GAS_HIDDEN
4767 # define USE_HIDDEN_LINKONCE 1
4768 #else
4769 # define USE_HIDDEN_LINKONCE 0
4770 #endif
4771
4772 static void
4773 get_pc_thunk_name (char name[32], unsigned int regno)
4774 {
4775 const char *reg_name = reg_names[regno];
4776
4777 /* Skip the leading '%' as that cannot be used in a
4778 symbol name. */
4779 reg_name += 1;
4780
4781 if (USE_HIDDEN_LINKONCE)
4782 sprintf (name, "__sparc_get_pc_thunk.%s", reg_name);
4783 else
4784 ASM_GENERATE_INTERNAL_LABEL (name, "LADDPC", regno);
4785 }
4786
4787 /* Wrapper around the load_pcrel_sym{si,di} patterns. */
4788
4789 static rtx
4790 gen_load_pcrel_sym (rtx op0, rtx op1, rtx op2, rtx op3)
4791 {
4792 int orig_flag_pic = flag_pic;
4793 rtx insn;
4794
4795 /* The load_pcrel_sym{si,di} patterns require absolute addressing. */
4796 flag_pic = 0;
4797 if (TARGET_ARCH64)
4798 insn = gen_load_pcrel_symdi (op0, op1, op2, op3);
4799 else
4800 insn = gen_load_pcrel_symsi (op0, op1, op2, op3);
4801 flag_pic = orig_flag_pic;
4802
4803 return insn;
4804 }
4805
4806 /* Emit code to load the GOT register. */
4807
4808 void
4809 load_got_register (void)
4810 {
4811 /* In PIC mode, this will retrieve pic_offset_table_rtx. */
4812 if (!global_offset_table_rtx)
4813 global_offset_table_rtx = gen_rtx_REG (Pmode, GLOBAL_OFFSET_TABLE_REGNUM);
4814
4815 if (TARGET_VXWORKS_RTP)
4816 emit_insn (gen_vxworks_load_got ());
4817 else
4818 {
4819 /* The GOT symbol is subject to a PC-relative relocation so we need a
4820 helper function to add the PC value and thus get the final value. */
4821 if (!got_helper_rtx)
4822 {
4823 char name[32];
4824 get_pc_thunk_name (name, GLOBAL_OFFSET_TABLE_REGNUM);
4825 got_helper_rtx = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (name));
4826 }
4827
4828 emit_insn (gen_load_pcrel_sym (global_offset_table_rtx, sparc_got (),
4829 got_helper_rtx,
4830 GEN_INT (GLOBAL_OFFSET_TABLE_REGNUM)));
4831 }
4832
4833 /* Need to emit this whether or not we obey regdecls,
4834 since setjmp/longjmp can cause life info to screw up.
4835 ??? In the case where we don't obey regdecls, this is not sufficient
4836 since we may not fall out the bottom. */
4837 emit_use (global_offset_table_rtx);
4838 }
4839
4840 /* Emit a call instruction with the pattern given by PAT. ADDR is the
4841 address of the call target. */
4842
4843 void
4844 sparc_emit_call_insn (rtx pat, rtx addr)
4845 {
4846 rtx_insn *insn;
4847
4848 insn = emit_call_insn (pat);
4849
4850 /* The PIC register is live on entry to VxWorks PIC PLT entries. */
4851 if (TARGET_VXWORKS_RTP
4852 && flag_pic
4853 && GET_CODE (addr) == SYMBOL_REF
4854 && (SYMBOL_REF_DECL (addr)
4855 ? !targetm.binds_local_p (SYMBOL_REF_DECL (addr))
4856 : !SYMBOL_REF_LOCAL_P (addr)))
4857 {
4858 use_reg (&CALL_INSN_FUNCTION_USAGE (insn), pic_offset_table_rtx);
4859 crtl->uses_pic_offset_table = 1;
4860 }
4861 }
4862 \f
4863 /* Return 1 if RTX is a MEM which is known to be aligned to at
4864 least a DESIRED byte boundary. */
4865
4866 int
4867 mem_min_alignment (rtx mem, int desired)
4868 {
4869 rtx addr, base, offset;
4870
4871 /* If it's not a MEM we can't accept it. */
4872 if (GET_CODE (mem) != MEM)
4873 return 0;
4874
4875 /* Obviously... */
4876 if (!TARGET_UNALIGNED_DOUBLES
4877 && MEM_ALIGN (mem) / BITS_PER_UNIT >= (unsigned)desired)
4878 return 1;
4879
4880 /* ??? The rest of the function predates MEM_ALIGN so
4881 there is probably a bit of redundancy. */
4882 addr = XEXP (mem, 0);
4883 base = offset = NULL_RTX;
4884 if (GET_CODE (addr) == PLUS)
4885 {
4886 if (GET_CODE (XEXP (addr, 0)) == REG)
4887 {
4888 base = XEXP (addr, 0);
4889
4890 /* What we are saying here is that if the base
4891 REG is aligned properly, the compiler will make
4892 sure any REG based index upon it will be so
4893 as well. */
4894 if (GET_CODE (XEXP (addr, 1)) == CONST_INT)
4895 offset = XEXP (addr, 1);
4896 else
4897 offset = const0_rtx;
4898 }
4899 }
4900 else if (GET_CODE (addr) == REG)
4901 {
4902 base = addr;
4903 offset = const0_rtx;
4904 }
4905
4906 if (base != NULL_RTX)
4907 {
4908 int regno = REGNO (base);
4909
4910 if (regno != HARD_FRAME_POINTER_REGNUM && regno != STACK_POINTER_REGNUM)
4911 {
4912 /* Check if the compiler has recorded some information
4913 about the alignment of the base REG. If reload has
4914 completed, we already matched with proper alignments.
4915 If not running global_alloc, reload might give us
4916 unaligned pointer to local stack though. */
4917 if (((cfun != 0
4918 && REGNO_POINTER_ALIGN (regno) >= desired * BITS_PER_UNIT)
4919 || (optimize && reload_completed))
4920 && (INTVAL (offset) & (desired - 1)) == 0)
4921 return 1;
4922 }
4923 else
4924 {
4925 if (((INTVAL (offset) - SPARC_STACK_BIAS) & (desired - 1)) == 0)
4926 return 1;
4927 }
4928 }
4929 else if (! TARGET_UNALIGNED_DOUBLES
4930 || CONSTANT_P (addr)
4931 || GET_CODE (addr) == LO_SUM)
4932 {
4933 /* Anything else we know is properly aligned unless TARGET_UNALIGNED_DOUBLES
4934 is true, in which case we can only assume that an access is aligned if
4935 it is to a constant address, or the address involves a LO_SUM. */
4936 return 1;
4937 }
4938
4939 /* An obviously unaligned address. */
4940 return 0;
4941 }
4942
4943 \f
4944 /* Vectors to keep interesting information about registers where it can easily
4945 be got. We used to use the actual mode value as the bit number, but there
4946 are more than 32 modes now. Instead we use two tables: one indexed by
4947 hard register number, and one indexed by mode. */
4948
4949 /* The purpose of sparc_mode_class is to shrink the range of modes so that
4950 they all fit (as bit numbers) in a 32-bit word (again). Each real mode is
4951 mapped into one sparc_mode_class mode. */
4952
4953 enum sparc_mode_class {
4954 H_MODE, S_MODE, D_MODE, T_MODE, O_MODE,
4955 SF_MODE, DF_MODE, TF_MODE, OF_MODE,
4956 CC_MODE, CCFP_MODE
4957 };
4958
4959 /* Modes for single-word and smaller quantities. */
4960 #define S_MODES \
4961 ((1 << (int) H_MODE) | (1 << (int) S_MODE) | (1 << (int) SF_MODE))
4962
4963 /* Modes for double-word and smaller quantities. */
4964 #define D_MODES (S_MODES | (1 << (int) D_MODE) | (1 << (int) DF_MODE))
4965
4966 /* Modes for quad-word and smaller quantities. */
4967 #define T_MODES (D_MODES | (1 << (int) T_MODE) | (1 << (int) TF_MODE))
4968
4969 /* Modes for 8-word and smaller quantities. */
4970 #define O_MODES (T_MODES | (1 << (int) O_MODE) | (1 << (int) OF_MODE))
4971
4972 /* Modes for single-float quantities. */
4973 #define SF_MODES ((1 << (int) S_MODE) | (1 << (int) SF_MODE))
4974
4975 /* Modes for double-float and smaller quantities. */
4976 #define DF_MODES (SF_MODES | (1 << (int) D_MODE) | (1 << (int) DF_MODE))
4977
4978 /* Modes for quad-float and smaller quantities. */
4979 #define TF_MODES (DF_MODES | (1 << (int) TF_MODE))
4980
4981 /* Modes for quad-float pairs and smaller quantities. */
4982 #define OF_MODES (TF_MODES | (1 << (int) OF_MODE))
4983
4984 /* Modes for double-float only quantities. */
4985 #define DF_MODES_NO_S ((1 << (int) D_MODE) | (1 << (int) DF_MODE))
4986
4987 /* Modes for quad-float and double-float only quantities. */
4988 #define TF_MODES_NO_S (DF_MODES_NO_S | (1 << (int) TF_MODE))
4989
4990 /* Modes for quad-float pairs and double-float only quantities. */
4991 #define OF_MODES_NO_S (TF_MODES_NO_S | (1 << (int) OF_MODE))
4992
4993 /* Modes for condition codes. */
4994 #define CC_MODES (1 << (int) CC_MODE)
4995 #define CCFP_MODES (1 << (int) CCFP_MODE)
4996
4997 /* Value is 1 if register/mode pair is acceptable on sparc.
4998
4999 The funny mixture of D and T modes is because integer operations
5000 do not specially operate on tetra quantities, so non-quad-aligned
5001 registers can hold quadword quantities (except %o4 and %i4 because
5002 they cross fixed registers).
5003
5004 ??? Note that, despite the settings, non-double-aligned parameter
5005 registers can hold double-word quantities in 32-bit mode. */
5006
5007 /* This points to either the 32-bit or the 64-bit version. */
5008 static const int *hard_regno_mode_classes;
5009
5010 static const int hard_32bit_mode_classes[] = {
5011 S_MODES, S_MODES, T_MODES, S_MODES, T_MODES, S_MODES, D_MODES, S_MODES,
5012 T_MODES, S_MODES, T_MODES, S_MODES, D_MODES, S_MODES, D_MODES, S_MODES,
5013 T_MODES, S_MODES, T_MODES, S_MODES, T_MODES, S_MODES, D_MODES, S_MODES,
5014 T_MODES, S_MODES, T_MODES, S_MODES, D_MODES, S_MODES, D_MODES, S_MODES,
5015
5016 OF_MODES, SF_MODES, DF_MODES, SF_MODES, OF_MODES, SF_MODES, DF_MODES, SF_MODES,
5017 OF_MODES, SF_MODES, DF_MODES, SF_MODES, OF_MODES, SF_MODES, DF_MODES, SF_MODES,
5018 OF_MODES, SF_MODES, DF_MODES, SF_MODES, OF_MODES, SF_MODES, DF_MODES, SF_MODES,
5019 OF_MODES, SF_MODES, DF_MODES, SF_MODES, TF_MODES, SF_MODES, DF_MODES, SF_MODES,
5020
5021 /* FP regs f32 to f63. Only the even numbered registers actually exist,
5022 and none can hold SFmode/SImode values. */
5023 OF_MODES_NO_S, 0, DF_MODES_NO_S, 0, OF_MODES_NO_S, 0, DF_MODES_NO_S, 0,
5024 OF_MODES_NO_S, 0, DF_MODES_NO_S, 0, OF_MODES_NO_S, 0, DF_MODES_NO_S, 0,
5025 OF_MODES_NO_S, 0, DF_MODES_NO_S, 0, OF_MODES_NO_S, 0, DF_MODES_NO_S, 0,
5026 OF_MODES_NO_S, 0, DF_MODES_NO_S, 0, TF_MODES_NO_S, 0, DF_MODES_NO_S, 0,
5027
5028 /* %fcc[0123] */
5029 CCFP_MODES, CCFP_MODES, CCFP_MODES, CCFP_MODES,
5030
5031 /* %icc, %sfp, %gsr */
5032 CC_MODES, 0, D_MODES
5033 };
5034
5035 static const int hard_64bit_mode_classes[] = {
5036 D_MODES, D_MODES, T_MODES, D_MODES, T_MODES, D_MODES, T_MODES, D_MODES,
5037 O_MODES, D_MODES, T_MODES, D_MODES, T_MODES, D_MODES, T_MODES, D_MODES,
5038 T_MODES, D_MODES, T_MODES, D_MODES, T_MODES, D_MODES, T_MODES, D_MODES,
5039 O_MODES, D_MODES, T_MODES, D_MODES, T_MODES, D_MODES, T_MODES, D_MODES,
5040
5041 OF_MODES, SF_MODES, DF_MODES, SF_MODES, OF_MODES, SF_MODES, DF_MODES, SF_MODES,
5042 OF_MODES, SF_MODES, DF_MODES, SF_MODES, OF_MODES, SF_MODES, DF_MODES, SF_MODES,
5043 OF_MODES, SF_MODES, DF_MODES, SF_MODES, OF_MODES, SF_MODES, DF_MODES, SF_MODES,
5044 OF_MODES, SF_MODES, DF_MODES, SF_MODES, TF_MODES, SF_MODES, DF_MODES, SF_MODES,
5045
5046 /* FP regs f32 to f63. Only the even numbered registers actually exist,
5047 and none can hold SFmode/SImode values. */
5048 OF_MODES_NO_S, 0, DF_MODES_NO_S, 0, OF_MODES_NO_S, 0, DF_MODES_NO_S, 0,
5049 OF_MODES_NO_S, 0, DF_MODES_NO_S, 0, OF_MODES_NO_S, 0, DF_MODES_NO_S, 0,
5050 OF_MODES_NO_S, 0, DF_MODES_NO_S, 0, OF_MODES_NO_S, 0, DF_MODES_NO_S, 0,
5051 OF_MODES_NO_S, 0, DF_MODES_NO_S, 0, TF_MODES_NO_S, 0, DF_MODES_NO_S, 0,
5052
5053 /* %fcc[0123] */
5054 CCFP_MODES, CCFP_MODES, CCFP_MODES, CCFP_MODES,
5055
5056 /* %icc, %sfp, %gsr */
5057 CC_MODES, 0, D_MODES
5058 };
5059
5060 static int sparc_mode_class [NUM_MACHINE_MODES];
5061
5062 enum reg_class sparc_regno_reg_class[FIRST_PSEUDO_REGISTER];
5063
5064 static void
5065 sparc_init_modes (void)
5066 {
5067 int i;
5068
5069 for (i = 0; i < NUM_MACHINE_MODES; i++)
5070 {
5071 machine_mode m = (machine_mode) i;
5072 unsigned int size = GET_MODE_SIZE (m);
5073
5074 switch (GET_MODE_CLASS (m))
5075 {
5076 case MODE_INT:
5077 case MODE_PARTIAL_INT:
5078 case MODE_COMPLEX_INT:
5079 if (size < 4)
5080 sparc_mode_class[i] = 1 << (int) H_MODE;
5081 else if (size == 4)
5082 sparc_mode_class[i] = 1 << (int) S_MODE;
5083 else if (size == 8)
5084 sparc_mode_class[i] = 1 << (int) D_MODE;
5085 else if (size == 16)
5086 sparc_mode_class[i] = 1 << (int) T_MODE;
5087 else if (size == 32)
5088 sparc_mode_class[i] = 1 << (int) O_MODE;
5089 else
5090 sparc_mode_class[i] = 0;
5091 break;
5092 case MODE_VECTOR_INT:
5093 if (size == 4)
5094 sparc_mode_class[i] = 1 << (int) SF_MODE;
5095 else if (size == 8)
5096 sparc_mode_class[i] = 1 << (int) DF_MODE;
5097 else
5098 sparc_mode_class[i] = 0;
5099 break;
5100 case MODE_FLOAT:
5101 case MODE_COMPLEX_FLOAT:
5102 if (size == 4)
5103 sparc_mode_class[i] = 1 << (int) SF_MODE;
5104 else if (size == 8)
5105 sparc_mode_class[i] = 1 << (int) DF_MODE;
5106 else if (size == 16)
5107 sparc_mode_class[i] = 1 << (int) TF_MODE;
5108 else if (size == 32)
5109 sparc_mode_class[i] = 1 << (int) OF_MODE;
5110 else
5111 sparc_mode_class[i] = 0;
5112 break;
5113 case MODE_CC:
5114 if (m == CCFPmode || m == CCFPEmode)
5115 sparc_mode_class[i] = 1 << (int) CCFP_MODE;
5116 else
5117 sparc_mode_class[i] = 1 << (int) CC_MODE;
5118 break;
5119 default:
5120 sparc_mode_class[i] = 0;
5121 break;
5122 }
5123 }
5124
5125 if (TARGET_ARCH64)
5126 hard_regno_mode_classes = hard_64bit_mode_classes;
5127 else
5128 hard_regno_mode_classes = hard_32bit_mode_classes;
5129
5130 /* Initialize the array used by REGNO_REG_CLASS. */
5131 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
5132 {
5133 if (i < 16 && TARGET_V8PLUS)
5134 sparc_regno_reg_class[i] = I64_REGS;
5135 else if (i < 32 || i == FRAME_POINTER_REGNUM)
5136 sparc_regno_reg_class[i] = GENERAL_REGS;
5137 else if (i < 64)
5138 sparc_regno_reg_class[i] = FP_REGS;
5139 else if (i < 96)
5140 sparc_regno_reg_class[i] = EXTRA_FP_REGS;
5141 else if (i < 100)
5142 sparc_regno_reg_class[i] = FPCC_REGS;
5143 else
5144 sparc_regno_reg_class[i] = NO_REGS;
5145 }
5146 }
5147 \f
5148 /* Return whether REGNO, a global or FP register, must be saved/restored. */
5149
5150 static inline bool
5151 save_global_or_fp_reg_p (unsigned int regno,
5152 int leaf_function ATTRIBUTE_UNUSED)
5153 {
5154 return !call_used_regs[regno] && df_regs_ever_live_p (regno);
5155 }
5156
5157 /* Return whether the return address register (%i7) is needed. */
5158
5159 static inline bool
5160 return_addr_reg_needed_p (int leaf_function)
5161 {
5162 /* If it is live, for example because of __builtin_return_address (0). */
5163 if (df_regs_ever_live_p (RETURN_ADDR_REGNUM))
5164 return true;
5165
5166 /* Otherwise, it is needed as save register if %o7 is clobbered. */
5167 if (!leaf_function
5168 /* Loading the GOT register clobbers %o7. */
5169 || crtl->uses_pic_offset_table
5170 || df_regs_ever_live_p (INCOMING_RETURN_ADDR_REGNUM))
5171 return true;
5172
5173 return false;
5174 }
5175
5176 /* Return whether REGNO, a local or in register, must be saved/restored. */
5177
5178 static bool
5179 save_local_or_in_reg_p (unsigned int regno, int leaf_function)
5180 {
5181 /* General case: call-saved registers live at some point. */
5182 if (!call_used_regs[regno] && df_regs_ever_live_p (regno))
5183 return true;
5184
5185 /* Frame pointer register (%fp) if needed. */
5186 if (regno == HARD_FRAME_POINTER_REGNUM && frame_pointer_needed)
5187 return true;
5188
5189 /* Return address register (%i7) if needed. */
5190 if (regno == RETURN_ADDR_REGNUM && return_addr_reg_needed_p (leaf_function))
5191 return true;
5192
5193 /* GOT register (%l7) if needed. */
5194 if (regno == PIC_OFFSET_TABLE_REGNUM && crtl->uses_pic_offset_table)
5195 return true;
5196
5197 /* If the function accesses prior frames, the frame pointer and the return
5198 address of the previous frame must be saved on the stack. */
5199 if (crtl->accesses_prior_frames
5200 && (regno == HARD_FRAME_POINTER_REGNUM || regno == RETURN_ADDR_REGNUM))
5201 return true;
5202
5203 return false;
5204 }
5205
5206 /* Compute the frame size required by the function. This function is called
5207 during the reload pass and also by sparc_expand_prologue. */
5208
5209 HOST_WIDE_INT
5210 sparc_compute_frame_size (HOST_WIDE_INT size, int leaf_function)
5211 {
5212 HOST_WIDE_INT frame_size, apparent_frame_size;
5213 int args_size, n_global_fp_regs = 0;
5214 bool save_local_in_regs_p = false;
5215 unsigned int i;
5216
5217 /* If the function allocates dynamic stack space, the dynamic offset is
5218 computed early and contains REG_PARM_STACK_SPACE, so we need to cope. */
5219 if (leaf_function && !cfun->calls_alloca)
5220 args_size = 0;
5221 else
5222 args_size = crtl->outgoing_args_size + REG_PARM_STACK_SPACE (cfun->decl);
5223
5224 /* Calculate space needed for global registers. */
5225 if (TARGET_ARCH64)
5226 {
5227 for (i = 0; i < 8; i++)
5228 if (save_global_or_fp_reg_p (i, 0))
5229 n_global_fp_regs += 2;
5230 }
5231 else
5232 {
5233 for (i = 0; i < 8; i += 2)
5234 if (save_global_or_fp_reg_p (i, 0)
5235 || save_global_or_fp_reg_p (i + 1, 0))
5236 n_global_fp_regs += 2;
5237 }
5238
5239 /* In the flat window model, find out which local and in registers need to
5240 be saved. We don't reserve space in the current frame for them as they
5241 will be spilled into the register window save area of the caller's frame.
5242 However, as soon as we use this register window save area, we must create
5243 that of the current frame to make it the live one. */
5244 if (TARGET_FLAT)
5245 for (i = 16; i < 32; i++)
5246 if (save_local_or_in_reg_p (i, leaf_function))
5247 {
5248 save_local_in_regs_p = true;
5249 break;
5250 }
5251
5252 /* Calculate space needed for FP registers. */
5253 for (i = 32; i < (TARGET_V9 ? 96 : 64); i += 2)
5254 if (save_global_or_fp_reg_p (i, 0) || save_global_or_fp_reg_p (i + 1, 0))
5255 n_global_fp_regs += 2;
5256
5257 if (size == 0
5258 && n_global_fp_regs == 0
5259 && args_size == 0
5260 && !save_local_in_regs_p)
5261 frame_size = apparent_frame_size = 0;
5262 else
5263 {
5264 /* We subtract STARTING_FRAME_OFFSET, remember it's negative. */
5265 apparent_frame_size = ROUND_UP (size - STARTING_FRAME_OFFSET, 8);
5266 apparent_frame_size += n_global_fp_regs * 4;
5267
5268 /* We need to add the size of the outgoing argument area. */
5269 frame_size = apparent_frame_size + ROUND_UP (args_size, 8);
5270
5271 /* And that of the register window save area. */
5272 frame_size += FIRST_PARM_OFFSET (cfun->decl);
5273
5274 /* Finally, bump to the appropriate alignment. */
5275 frame_size = SPARC_STACK_ALIGN (frame_size);
5276 }
5277
5278 /* Set up values for use in prologue and epilogue. */
5279 sparc_frame_size = frame_size;
5280 sparc_apparent_frame_size = apparent_frame_size;
5281 sparc_n_global_fp_regs = n_global_fp_regs;
5282 sparc_save_local_in_regs_p = save_local_in_regs_p;
5283
5284 return frame_size;
5285 }
5286
5287 /* Implement the macro INITIAL_ELIMINATION_OFFSET, return the OFFSET. */
5288
5289 int
5290 sparc_initial_elimination_offset (int to)
5291 {
5292 int offset;
5293
5294 if (to == STACK_POINTER_REGNUM)
5295 offset = sparc_compute_frame_size (get_frame_size (), crtl->is_leaf);
5296 else
5297 offset = 0;
5298
5299 offset += SPARC_STACK_BIAS;
5300 return offset;
5301 }
5302
5303 /* Output any necessary .register pseudo-ops. */
5304
5305 void
5306 sparc_output_scratch_registers (FILE *file ATTRIBUTE_UNUSED)
5307 {
5308 #ifdef HAVE_AS_REGISTER_PSEUDO_OP
5309 int i;
5310
5311 if (TARGET_ARCH32)
5312 return;
5313
5314 /* Check if %g[2367] were used without
5315 .register being printed for them already. */
5316 for (i = 2; i < 8; i++)
5317 {
5318 if (df_regs_ever_live_p (i)
5319 && ! sparc_hard_reg_printed [i])
5320 {
5321 sparc_hard_reg_printed [i] = 1;
5322 /* %g7 is used as TLS base register, use #ignore
5323 for it instead of #scratch. */
5324 fprintf (file, "\t.register\t%%g%d, #%s\n", i,
5325 i == 7 ? "ignore" : "scratch");
5326 }
5327 if (i == 3) i = 5;
5328 }
5329 #endif
5330 }
5331
5332 #define PROBE_INTERVAL (1 << STACK_CHECK_PROBE_INTERVAL_EXP)
5333
5334 #if PROBE_INTERVAL > 4096
5335 #error Cannot use indexed addressing mode for stack probing
5336 #endif
5337
5338 /* Emit code to probe a range of stack addresses from FIRST to FIRST+SIZE,
5339 inclusive. These are offsets from the current stack pointer.
5340
5341 Note that we don't use the REG+REG addressing mode for the probes because
5342 of the stack bias in 64-bit mode. And it doesn't really buy us anything
5343 so the advantages of having a single code win here. */
5344
5345 static void
5346 sparc_emit_probe_stack_range (HOST_WIDE_INT first, HOST_WIDE_INT size)
5347 {
5348 rtx g1 = gen_rtx_REG (Pmode, 1);
5349
5350 /* See if we have a constant small number of probes to generate. If so,
5351 that's the easy case. */
5352 if (size <= PROBE_INTERVAL)
5353 {
5354 emit_move_insn (g1, GEN_INT (first));
5355 emit_insn (gen_rtx_SET (g1,
5356 gen_rtx_MINUS (Pmode, stack_pointer_rtx, g1)));
5357 emit_stack_probe (plus_constant (Pmode, g1, -size));
5358 }
5359
5360 /* The run-time loop is made up of 9 insns in the generic case while the
5361 compile-time loop is made up of 4+2*(n-2) insns for n # of intervals. */
5362 else if (size <= 4 * PROBE_INTERVAL)
5363 {
5364 HOST_WIDE_INT i;
5365
5366 emit_move_insn (g1, GEN_INT (first + PROBE_INTERVAL));
5367 emit_insn (gen_rtx_SET (g1,
5368 gen_rtx_MINUS (Pmode, stack_pointer_rtx, g1)));
5369 emit_stack_probe (g1);
5370
5371 /* Probe at FIRST + N * PROBE_INTERVAL for values of N from 2 until
5372 it exceeds SIZE. If only two probes are needed, this will not
5373 generate any code. Then probe at FIRST + SIZE. */
5374 for (i = 2 * PROBE_INTERVAL; i < size; i += PROBE_INTERVAL)
5375 {
5376 emit_insn (gen_rtx_SET (g1,
5377 plus_constant (Pmode, g1, -PROBE_INTERVAL)));
5378 emit_stack_probe (g1);
5379 }
5380
5381 emit_stack_probe (plus_constant (Pmode, g1,
5382 (i - PROBE_INTERVAL) - size));
5383 }
5384
5385 /* Otherwise, do the same as above, but in a loop. Note that we must be
5386 extra careful with variables wrapping around because we might be at
5387 the very top (or the very bottom) of the address space and we have
5388 to be able to handle this case properly; in particular, we use an
5389 equality test for the loop condition. */
5390 else
5391 {
5392 HOST_WIDE_INT rounded_size;
5393 rtx g4 = gen_rtx_REG (Pmode, 4);
5394
5395 emit_move_insn (g1, GEN_INT (first));
5396
5397
5398 /* Step 1: round SIZE to the previous multiple of the interval. */
5399
5400 rounded_size = ROUND_DOWN (size, PROBE_INTERVAL);
5401 emit_move_insn (g4, GEN_INT (rounded_size));
5402
5403
5404 /* Step 2: compute initial and final value of the loop counter. */
5405
5406 /* TEST_ADDR = SP + FIRST. */
5407 emit_insn (gen_rtx_SET (g1,
5408 gen_rtx_MINUS (Pmode, stack_pointer_rtx, g1)));
5409
5410 /* LAST_ADDR = SP + FIRST + ROUNDED_SIZE. */
5411 emit_insn (gen_rtx_SET (g4, gen_rtx_MINUS (Pmode, g1, g4)));
5412
5413
5414 /* Step 3: the loop
5415
5416 while (TEST_ADDR != LAST_ADDR)
5417 {
5418 TEST_ADDR = TEST_ADDR + PROBE_INTERVAL
5419 probe at TEST_ADDR
5420 }
5421
5422 probes at FIRST + N * PROBE_INTERVAL for values of N from 1
5423 until it is equal to ROUNDED_SIZE. */
5424
5425 if (TARGET_ARCH64)
5426 emit_insn (gen_probe_stack_rangedi (g1, g1, g4));
5427 else
5428 emit_insn (gen_probe_stack_rangesi (g1, g1, g4));
5429
5430
5431 /* Step 4: probe at FIRST + SIZE if we cannot assert at compile-time
5432 that SIZE is equal to ROUNDED_SIZE. */
5433
5434 if (size != rounded_size)
5435 emit_stack_probe (plus_constant (Pmode, g4, rounded_size - size));
5436 }
5437
5438 /* Make sure nothing is scheduled before we are done. */
5439 emit_insn (gen_blockage ());
5440 }
5441
5442 /* Probe a range of stack addresses from REG1 to REG2 inclusive. These are
5443 absolute addresses. */
5444
5445 const char *
5446 output_probe_stack_range (rtx reg1, rtx reg2)
5447 {
5448 static int labelno = 0;
5449 char loop_lab[32];
5450 rtx xops[2];
5451
5452 ASM_GENERATE_INTERNAL_LABEL (loop_lab, "LPSRL", labelno++);
5453
5454 /* Loop. */
5455 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, loop_lab);
5456
5457 /* TEST_ADDR = TEST_ADDR + PROBE_INTERVAL. */
5458 xops[0] = reg1;
5459 xops[1] = GEN_INT (-PROBE_INTERVAL);
5460 output_asm_insn ("add\t%0, %1, %0", xops);
5461
5462 /* Test if TEST_ADDR == LAST_ADDR. */
5463 xops[1] = reg2;
5464 output_asm_insn ("cmp\t%0, %1", xops);
5465
5466 /* Probe at TEST_ADDR and branch. */
5467 if (TARGET_ARCH64)
5468 fputs ("\tbne,pt\t%xcc,", asm_out_file);
5469 else
5470 fputs ("\tbne\t", asm_out_file);
5471 assemble_name_raw (asm_out_file, loop_lab);
5472 fputc ('\n', asm_out_file);
5473 xops[1] = GEN_INT (SPARC_STACK_BIAS);
5474 output_asm_insn (" st\t%%g0, [%0+%1]", xops);
5475
5476 return "";
5477 }
5478
5479 /* Emit code to save/restore registers from LOW to HIGH at BASE+OFFSET as
5480 needed. LOW is supposed to be double-word aligned for 32-bit registers.
5481 SAVE_P decides whether a register must be saved/restored. ACTION_TRUE
5482 is the action to be performed if SAVE_P returns true and ACTION_FALSE
5483 the action to be performed if it returns false. Return the new offset. */
5484
5485 typedef bool (*sorr_pred_t) (unsigned int, int);
5486 typedef enum { SORR_NONE, SORR_ADVANCE, SORR_SAVE, SORR_RESTORE } sorr_act_t;
5487
5488 static int
5489 emit_save_or_restore_regs (unsigned int low, unsigned int high, rtx base,
5490 int offset, int leaf_function, sorr_pred_t save_p,
5491 sorr_act_t action_true, sorr_act_t action_false)
5492 {
5493 unsigned int i;
5494 rtx mem;
5495 rtx_insn *insn;
5496
5497 if (TARGET_ARCH64 && high <= 32)
5498 {
5499 int fp_offset = -1;
5500
5501 for (i = low; i < high; i++)
5502 {
5503 if (save_p (i, leaf_function))
5504 {
5505 mem = gen_frame_mem (DImode, plus_constant (Pmode,
5506 base, offset));
5507 if (action_true == SORR_SAVE)
5508 {
5509 insn = emit_move_insn (mem, gen_rtx_REG (DImode, i));
5510 RTX_FRAME_RELATED_P (insn) = 1;
5511 }
5512 else /* action_true == SORR_RESTORE */
5513 {
5514 /* The frame pointer must be restored last since its old
5515 value may be used as base address for the frame. This
5516 is problematic in 64-bit mode only because of the lack
5517 of double-word load instruction. */
5518 if (i == HARD_FRAME_POINTER_REGNUM)
5519 fp_offset = offset;
5520 else
5521 emit_move_insn (gen_rtx_REG (DImode, i), mem);
5522 }
5523 offset += 8;
5524 }
5525 else if (action_false == SORR_ADVANCE)
5526 offset += 8;
5527 }
5528
5529 if (fp_offset >= 0)
5530 {
5531 mem = gen_frame_mem (DImode, plus_constant (Pmode, base, fp_offset));
5532 emit_move_insn (hard_frame_pointer_rtx, mem);
5533 }
5534 }
5535 else
5536 {
5537 for (i = low; i < high; i += 2)
5538 {
5539 bool reg0 = save_p (i, leaf_function);
5540 bool reg1 = save_p (i + 1, leaf_function);
5541 machine_mode mode;
5542 int regno;
5543
5544 if (reg0 && reg1)
5545 {
5546 mode = SPARC_INT_REG_P (i) ? E_DImode : E_DFmode;
5547 regno = i;
5548 }
5549 else if (reg0)
5550 {
5551 mode = SPARC_INT_REG_P (i) ? E_SImode : E_SFmode;
5552 regno = i;
5553 }
5554 else if (reg1)
5555 {
5556 mode = SPARC_INT_REG_P (i) ? E_SImode : E_SFmode;
5557 regno = i + 1;
5558 offset += 4;
5559 }
5560 else
5561 {
5562 if (action_false == SORR_ADVANCE)
5563 offset += 8;
5564 continue;
5565 }
5566
5567 mem = gen_frame_mem (mode, plus_constant (Pmode, base, offset));
5568 if (action_true == SORR_SAVE)
5569 {
5570 insn = emit_move_insn (mem, gen_rtx_REG (mode, regno));
5571 RTX_FRAME_RELATED_P (insn) = 1;
5572 if (mode == DImode)
5573 {
5574 rtx set1, set2;
5575 mem = gen_frame_mem (SImode, plus_constant (Pmode, base,
5576 offset));
5577 set1 = gen_rtx_SET (mem, gen_rtx_REG (SImode, regno));
5578 RTX_FRAME_RELATED_P (set1) = 1;
5579 mem
5580 = gen_frame_mem (SImode, plus_constant (Pmode, base,
5581 offset + 4));
5582 set2 = gen_rtx_SET (mem, gen_rtx_REG (SImode, regno + 1));
5583 RTX_FRAME_RELATED_P (set2) = 1;
5584 add_reg_note (insn, REG_FRAME_RELATED_EXPR,
5585 gen_rtx_PARALLEL (VOIDmode,
5586 gen_rtvec (2, set1, set2)));
5587 }
5588 }
5589 else /* action_true == SORR_RESTORE */
5590 emit_move_insn (gen_rtx_REG (mode, regno), mem);
5591
5592 /* Bump and round down to double word
5593 in case we already bumped by 4. */
5594 offset = ROUND_DOWN (offset + 8, 8);
5595 }
5596 }
5597
5598 return offset;
5599 }
5600
5601 /* Emit code to adjust BASE to OFFSET. Return the new base. */
5602
5603 static rtx
5604 emit_adjust_base_to_offset (rtx base, int offset)
5605 {
5606 /* ??? This might be optimized a little as %g1 might already have a
5607 value close enough that a single add insn will do. */
5608 /* ??? Although, all of this is probably only a temporary fix because
5609 if %g1 can hold a function result, then sparc_expand_epilogue will
5610 lose (the result will be clobbered). */
5611 rtx new_base = gen_rtx_REG (Pmode, 1);
5612 emit_move_insn (new_base, GEN_INT (offset));
5613 emit_insn (gen_rtx_SET (new_base, gen_rtx_PLUS (Pmode, base, new_base)));
5614 return new_base;
5615 }
5616
5617 /* Emit code to save/restore call-saved global and FP registers. */
5618
5619 static void
5620 emit_save_or_restore_global_fp_regs (rtx base, int offset, sorr_act_t action)
5621 {
5622 if (offset < -4096 || offset + sparc_n_global_fp_regs * 4 > 4095)
5623 {
5624 base = emit_adjust_base_to_offset (base, offset);
5625 offset = 0;
5626 }
5627
5628 offset
5629 = emit_save_or_restore_regs (0, 8, base, offset, 0,
5630 save_global_or_fp_reg_p, action, SORR_NONE);
5631 emit_save_or_restore_regs (32, TARGET_V9 ? 96 : 64, base, offset, 0,
5632 save_global_or_fp_reg_p, action, SORR_NONE);
5633 }
5634
5635 /* Emit code to save/restore call-saved local and in registers. */
5636
5637 static void
5638 emit_save_or_restore_local_in_regs (rtx base, int offset, sorr_act_t action)
5639 {
5640 if (offset < -4096 || offset + 16 * UNITS_PER_WORD > 4095)
5641 {
5642 base = emit_adjust_base_to_offset (base, offset);
5643 offset = 0;
5644 }
5645
5646 emit_save_or_restore_regs (16, 32, base, offset, sparc_leaf_function_p,
5647 save_local_or_in_reg_p, action, SORR_ADVANCE);
5648 }
5649
5650 /* Emit a window_save insn. */
5651
5652 static rtx_insn *
5653 emit_window_save (rtx increment)
5654 {
5655 rtx_insn *insn = emit_insn (gen_window_save (increment));
5656 RTX_FRAME_RELATED_P (insn) = 1;
5657
5658 /* The incoming return address (%o7) is saved in %i7. */
5659 add_reg_note (insn, REG_CFA_REGISTER,
5660 gen_rtx_SET (gen_rtx_REG (Pmode, RETURN_ADDR_REGNUM),
5661 gen_rtx_REG (Pmode,
5662 INCOMING_RETURN_ADDR_REGNUM)));
5663
5664 /* The window save event. */
5665 add_reg_note (insn, REG_CFA_WINDOW_SAVE, const0_rtx);
5666
5667 /* The CFA is %fp, the hard frame pointer. */
5668 add_reg_note (insn, REG_CFA_DEF_CFA,
5669 plus_constant (Pmode, hard_frame_pointer_rtx,
5670 INCOMING_FRAME_SP_OFFSET));
5671
5672 return insn;
5673 }
5674
5675 /* Generate an increment for the stack pointer. */
5676
5677 static rtx
5678 gen_stack_pointer_inc (rtx increment)
5679 {
5680 return gen_rtx_SET (stack_pointer_rtx,
5681 gen_rtx_PLUS (Pmode,
5682 stack_pointer_rtx,
5683 increment));
5684 }
5685
5686 /* Expand the function prologue. The prologue is responsible for reserving
5687 storage for the frame, saving the call-saved registers and loading the
5688 GOT register if needed. */
5689
5690 void
5691 sparc_expand_prologue (void)
5692 {
5693 HOST_WIDE_INT size;
5694 rtx_insn *insn;
5695
5696 /* Compute a snapshot of crtl->uses_only_leaf_regs. Relying
5697 on the final value of the flag means deferring the prologue/epilogue
5698 expansion until just before the second scheduling pass, which is too
5699 late to emit multiple epilogues or return insns.
5700
5701 Of course we are making the assumption that the value of the flag
5702 will not change between now and its final value. Of the three parts
5703 of the formula, only the last one can reasonably vary. Let's take a
5704 closer look, after assuming that the first two ones are set to true
5705 (otherwise the last value is effectively silenced).
5706
5707 If only_leaf_regs_used returns false, the global predicate will also
5708 be false so the actual frame size calculated below will be positive.
5709 As a consequence, the save_register_window insn will be emitted in
5710 the instruction stream; now this insn explicitly references %fp
5711 which is not a leaf register so only_leaf_regs_used will always
5712 return false subsequently.
5713
5714 If only_leaf_regs_used returns true, we hope that the subsequent
5715 optimization passes won't cause non-leaf registers to pop up. For
5716 example, the regrename pass has special provisions to not rename to
5717 non-leaf registers in a leaf function. */
5718 sparc_leaf_function_p
5719 = optimize > 0 && crtl->is_leaf && only_leaf_regs_used ();
5720
5721 size = sparc_compute_frame_size (get_frame_size(), sparc_leaf_function_p);
5722
5723 if (flag_stack_usage_info)
5724 current_function_static_stack_size = size;
5725
5726 if (flag_stack_check == STATIC_BUILTIN_STACK_CHECK)
5727 {
5728 if (crtl->is_leaf && !cfun->calls_alloca)
5729 {
5730 if (size > PROBE_INTERVAL && size > STACK_CHECK_PROTECT)
5731 sparc_emit_probe_stack_range (STACK_CHECK_PROTECT,
5732 size - STACK_CHECK_PROTECT);
5733 }
5734 else if (size > 0)
5735 sparc_emit_probe_stack_range (STACK_CHECK_PROTECT, size);
5736 }
5737
5738 if (size == 0)
5739 ; /* do nothing. */
5740 else if (sparc_leaf_function_p)
5741 {
5742 rtx size_int_rtx = GEN_INT (-size);
5743
5744 if (size <= 4096)
5745 insn = emit_insn (gen_stack_pointer_inc (size_int_rtx));
5746 else if (size <= 8192)
5747 {
5748 insn = emit_insn (gen_stack_pointer_inc (GEN_INT (-4096)));
5749 RTX_FRAME_RELATED_P (insn) = 1;
5750
5751 /* %sp is still the CFA register. */
5752 insn = emit_insn (gen_stack_pointer_inc (GEN_INT (4096 - size)));
5753 }
5754 else
5755 {
5756 rtx size_rtx = gen_rtx_REG (Pmode, 1);
5757 emit_move_insn (size_rtx, size_int_rtx);
5758 insn = emit_insn (gen_stack_pointer_inc (size_rtx));
5759 add_reg_note (insn, REG_FRAME_RELATED_EXPR,
5760 gen_stack_pointer_inc (size_int_rtx));
5761 }
5762
5763 RTX_FRAME_RELATED_P (insn) = 1;
5764 }
5765 else
5766 {
5767 rtx size_int_rtx = GEN_INT (-size);
5768
5769 if (size <= 4096)
5770 emit_window_save (size_int_rtx);
5771 else if (size <= 8192)
5772 {
5773 emit_window_save (GEN_INT (-4096));
5774
5775 /* %sp is not the CFA register anymore. */
5776 emit_insn (gen_stack_pointer_inc (GEN_INT (4096 - size)));
5777
5778 /* Make sure no %fp-based store is issued until after the frame is
5779 established. The offset between the frame pointer and the stack
5780 pointer is calculated relative to the value of the stack pointer
5781 at the end of the function prologue, and moving instructions that
5782 access the stack via the frame pointer between the instructions
5783 that decrement the stack pointer could result in accessing the
5784 register window save area, which is volatile. */
5785 emit_insn (gen_frame_blockage ());
5786 }
5787 else
5788 {
5789 rtx size_rtx = gen_rtx_REG (Pmode, 1);
5790 emit_move_insn (size_rtx, size_int_rtx);
5791 emit_window_save (size_rtx);
5792 }
5793 }
5794
5795 if (sparc_leaf_function_p)
5796 {
5797 sparc_frame_base_reg = stack_pointer_rtx;
5798 sparc_frame_base_offset = size + SPARC_STACK_BIAS;
5799 }
5800 else
5801 {
5802 sparc_frame_base_reg = hard_frame_pointer_rtx;
5803 sparc_frame_base_offset = SPARC_STACK_BIAS;
5804 }
5805
5806 if (sparc_n_global_fp_regs > 0)
5807 emit_save_or_restore_global_fp_regs (sparc_frame_base_reg,
5808 sparc_frame_base_offset
5809 - sparc_apparent_frame_size,
5810 SORR_SAVE);
5811
5812 /* Load the GOT register if needed. */
5813 if (crtl->uses_pic_offset_table)
5814 load_got_register ();
5815
5816 /* Advertise that the data calculated just above are now valid. */
5817 sparc_prologue_data_valid_p = true;
5818 }
5819
5820 /* Expand the function prologue. The prologue is responsible for reserving
5821 storage for the frame, saving the call-saved registers and loading the
5822 GOT register if needed. */
5823
5824 void
5825 sparc_flat_expand_prologue (void)
5826 {
5827 HOST_WIDE_INT size;
5828 rtx_insn *insn;
5829
5830 sparc_leaf_function_p = optimize > 0 && crtl->is_leaf;
5831
5832 size = sparc_compute_frame_size (get_frame_size(), sparc_leaf_function_p);
5833
5834 if (flag_stack_usage_info)
5835 current_function_static_stack_size = size;
5836
5837 if (flag_stack_check == STATIC_BUILTIN_STACK_CHECK)
5838 {
5839 if (crtl->is_leaf && !cfun->calls_alloca)
5840 {
5841 if (size > PROBE_INTERVAL && size > STACK_CHECK_PROTECT)
5842 sparc_emit_probe_stack_range (STACK_CHECK_PROTECT,
5843 size - STACK_CHECK_PROTECT);
5844 }
5845 else if (size > 0)
5846 sparc_emit_probe_stack_range (STACK_CHECK_PROTECT, size);
5847 }
5848
5849 if (sparc_save_local_in_regs_p)
5850 emit_save_or_restore_local_in_regs (stack_pointer_rtx, SPARC_STACK_BIAS,
5851 SORR_SAVE);
5852
5853 if (size == 0)
5854 ; /* do nothing. */
5855 else
5856 {
5857 rtx size_int_rtx, size_rtx;
5858
5859 size_rtx = size_int_rtx = GEN_INT (-size);
5860
5861 /* We establish the frame (i.e. decrement the stack pointer) first, even
5862 if we use a frame pointer, because we cannot clobber any call-saved
5863 registers, including the frame pointer, if we haven't created a new
5864 register save area, for the sake of compatibility with the ABI. */
5865 if (size <= 4096)
5866 insn = emit_insn (gen_stack_pointer_inc (size_int_rtx));
5867 else if (size <= 8192 && !frame_pointer_needed)
5868 {
5869 insn = emit_insn (gen_stack_pointer_inc (GEN_INT (-4096)));
5870 RTX_FRAME_RELATED_P (insn) = 1;
5871 insn = emit_insn (gen_stack_pointer_inc (GEN_INT (4096 - size)));
5872 }
5873 else
5874 {
5875 size_rtx = gen_rtx_REG (Pmode, 1);
5876 emit_move_insn (size_rtx, size_int_rtx);
5877 insn = emit_insn (gen_stack_pointer_inc (size_rtx));
5878 add_reg_note (insn, REG_CFA_ADJUST_CFA,
5879 gen_stack_pointer_inc (size_int_rtx));
5880 }
5881 RTX_FRAME_RELATED_P (insn) = 1;
5882
5883 /* Ensure nothing is scheduled until after the frame is established. */
5884 emit_insn (gen_blockage ());
5885
5886 if (frame_pointer_needed)
5887 {
5888 insn = emit_insn (gen_rtx_SET (hard_frame_pointer_rtx,
5889 gen_rtx_MINUS (Pmode,
5890 stack_pointer_rtx,
5891 size_rtx)));
5892 RTX_FRAME_RELATED_P (insn) = 1;
5893
5894 add_reg_note (insn, REG_CFA_ADJUST_CFA,
5895 gen_rtx_SET (hard_frame_pointer_rtx,
5896 plus_constant (Pmode, stack_pointer_rtx,
5897 size)));
5898 }
5899
5900 if (return_addr_reg_needed_p (sparc_leaf_function_p))
5901 {
5902 rtx o7 = gen_rtx_REG (Pmode, INCOMING_RETURN_ADDR_REGNUM);
5903 rtx i7 = gen_rtx_REG (Pmode, RETURN_ADDR_REGNUM);
5904
5905 insn = emit_move_insn (i7, o7);
5906 RTX_FRAME_RELATED_P (insn) = 1;
5907
5908 add_reg_note (insn, REG_CFA_REGISTER, gen_rtx_SET (i7, o7));
5909
5910 /* Prevent this instruction from ever being considered dead,
5911 even if this function has no epilogue. */
5912 emit_use (i7);
5913 }
5914 }
5915
5916 if (frame_pointer_needed)
5917 {
5918 sparc_frame_base_reg = hard_frame_pointer_rtx;
5919 sparc_frame_base_offset = SPARC_STACK_BIAS;
5920 }
5921 else
5922 {
5923 sparc_frame_base_reg = stack_pointer_rtx;
5924 sparc_frame_base_offset = size + SPARC_STACK_BIAS;
5925 }
5926
5927 if (sparc_n_global_fp_regs > 0)
5928 emit_save_or_restore_global_fp_regs (sparc_frame_base_reg,
5929 sparc_frame_base_offset
5930 - sparc_apparent_frame_size,
5931 SORR_SAVE);
5932
5933 /* Load the GOT register if needed. */
5934 if (crtl->uses_pic_offset_table)
5935 load_got_register ();
5936
5937 /* Advertise that the data calculated just above are now valid. */
5938 sparc_prologue_data_valid_p = true;
5939 }
5940
5941 /* This function generates the assembly code for function entry, which boils
5942 down to emitting the necessary .register directives. */
5943
5944 static void
5945 sparc_asm_function_prologue (FILE *file)
5946 {
5947 /* Check that the assumption we made in sparc_expand_prologue is valid. */
5948 if (!TARGET_FLAT)
5949 gcc_assert (sparc_leaf_function_p == crtl->uses_only_leaf_regs);
5950
5951 sparc_output_scratch_registers (file);
5952 }
5953
5954 /* Expand the function epilogue, either normal or part of a sibcall.
5955 We emit all the instructions except the return or the call. */
5956
5957 void
5958 sparc_expand_epilogue (bool for_eh)
5959 {
5960 HOST_WIDE_INT size = sparc_frame_size;
5961
5962 if (cfun->calls_alloca)
5963 emit_insn (gen_frame_blockage ());
5964
5965 if (sparc_n_global_fp_regs > 0)
5966 emit_save_or_restore_global_fp_regs (sparc_frame_base_reg,
5967 sparc_frame_base_offset
5968 - sparc_apparent_frame_size,
5969 SORR_RESTORE);
5970
5971 if (size == 0 || for_eh)
5972 ; /* do nothing. */
5973 else if (sparc_leaf_function_p)
5974 {
5975 if (size <= 4096)
5976 emit_insn (gen_stack_pointer_inc (GEN_INT (size)));
5977 else if (size <= 8192)
5978 {
5979 emit_insn (gen_stack_pointer_inc (GEN_INT (4096)));
5980 emit_insn (gen_stack_pointer_inc (GEN_INT (size - 4096)));
5981 }
5982 else
5983 {
5984 rtx reg = gen_rtx_REG (Pmode, 1);
5985 emit_move_insn (reg, GEN_INT (size));
5986 emit_insn (gen_stack_pointer_inc (reg));
5987 }
5988 }
5989 }
5990
5991 /* Expand the function epilogue, either normal or part of a sibcall.
5992 We emit all the instructions except the return or the call. */
5993
5994 void
5995 sparc_flat_expand_epilogue (bool for_eh)
5996 {
5997 HOST_WIDE_INT size = sparc_frame_size;
5998
5999 if (sparc_n_global_fp_regs > 0)
6000 emit_save_or_restore_global_fp_regs (sparc_frame_base_reg,
6001 sparc_frame_base_offset
6002 - sparc_apparent_frame_size,
6003 SORR_RESTORE);
6004
6005 /* If we have a frame pointer, we'll need both to restore it before the
6006 frame is destroyed and use its current value in destroying the frame.
6007 Since we don't have an atomic way to do that in the flat window model,
6008 we save the current value into a temporary register (%g1). */
6009 if (frame_pointer_needed && !for_eh)
6010 emit_move_insn (gen_rtx_REG (Pmode, 1), hard_frame_pointer_rtx);
6011
6012 if (return_addr_reg_needed_p (sparc_leaf_function_p))
6013 emit_move_insn (gen_rtx_REG (Pmode, INCOMING_RETURN_ADDR_REGNUM),
6014 gen_rtx_REG (Pmode, RETURN_ADDR_REGNUM));
6015
6016 if (sparc_save_local_in_regs_p)
6017 emit_save_or_restore_local_in_regs (sparc_frame_base_reg,
6018 sparc_frame_base_offset,
6019 SORR_RESTORE);
6020
6021 if (size == 0 || for_eh)
6022 ; /* do nothing. */
6023 else if (frame_pointer_needed)
6024 {
6025 /* Make sure the frame is destroyed after everything else is done. */
6026 emit_insn (gen_blockage ());
6027
6028 emit_move_insn (stack_pointer_rtx, gen_rtx_REG (Pmode, 1));
6029 }
6030 else
6031 {
6032 /* Likewise. */
6033 emit_insn (gen_blockage ());
6034
6035 if (size <= 4096)
6036 emit_insn (gen_stack_pointer_inc (GEN_INT (size)));
6037 else if (size <= 8192)
6038 {
6039 emit_insn (gen_stack_pointer_inc (GEN_INT (4096)));
6040 emit_insn (gen_stack_pointer_inc (GEN_INT (size - 4096)));
6041 }
6042 else
6043 {
6044 rtx reg = gen_rtx_REG (Pmode, 1);
6045 emit_move_insn (reg, GEN_INT (size));
6046 emit_insn (gen_stack_pointer_inc (reg));
6047 }
6048 }
6049 }
6050
6051 /* Return true if it is appropriate to emit `return' instructions in the
6052 body of a function. */
6053
6054 bool
6055 sparc_can_use_return_insn_p (void)
6056 {
6057 return sparc_prologue_data_valid_p
6058 && sparc_n_global_fp_regs == 0
6059 && TARGET_FLAT
6060 ? (sparc_frame_size == 0 && !sparc_save_local_in_regs_p)
6061 : (sparc_frame_size == 0 || !sparc_leaf_function_p);
6062 }
6063
6064 /* This function generates the assembly code for function exit. */
6065
6066 static void
6067 sparc_asm_function_epilogue (FILE *file)
6068 {
6069 /* If the last two instructions of a function are "call foo; dslot;"
6070 the return address might point to the first instruction in the next
6071 function and we have to output a dummy nop for the sake of sane
6072 backtraces in such cases. This is pointless for sibling calls since
6073 the return address is explicitly adjusted. */
6074
6075 rtx_insn *insn = get_last_insn ();
6076
6077 rtx last_real_insn = prev_real_insn (insn);
6078 if (last_real_insn
6079 && NONJUMP_INSN_P (last_real_insn)
6080 && GET_CODE (PATTERN (last_real_insn)) == SEQUENCE)
6081 last_real_insn = XVECEXP (PATTERN (last_real_insn), 0, 0);
6082
6083 if (last_real_insn
6084 && CALL_P (last_real_insn)
6085 && !SIBLING_CALL_P (last_real_insn))
6086 fputs("\tnop\n", file);
6087
6088 sparc_output_deferred_case_vectors ();
6089 }
6090
6091 /* Output a 'restore' instruction. */
6092
6093 static void
6094 output_restore (rtx pat)
6095 {
6096 rtx operands[3];
6097
6098 if (! pat)
6099 {
6100 fputs ("\t restore\n", asm_out_file);
6101 return;
6102 }
6103
6104 gcc_assert (GET_CODE (pat) == SET);
6105
6106 operands[0] = SET_DEST (pat);
6107 pat = SET_SRC (pat);
6108
6109 switch (GET_CODE (pat))
6110 {
6111 case PLUS:
6112 operands[1] = XEXP (pat, 0);
6113 operands[2] = XEXP (pat, 1);
6114 output_asm_insn (" restore %r1, %2, %Y0", operands);
6115 break;
6116 case LO_SUM:
6117 operands[1] = XEXP (pat, 0);
6118 operands[2] = XEXP (pat, 1);
6119 output_asm_insn (" restore %r1, %%lo(%a2), %Y0", operands);
6120 break;
6121 case ASHIFT:
6122 operands[1] = XEXP (pat, 0);
6123 gcc_assert (XEXP (pat, 1) == const1_rtx);
6124 output_asm_insn (" restore %r1, %r1, %Y0", operands);
6125 break;
6126 default:
6127 operands[1] = pat;
6128 output_asm_insn (" restore %%g0, %1, %Y0", operands);
6129 break;
6130 }
6131 }
6132
6133 /* Output a return. */
6134
6135 const char *
6136 output_return (rtx_insn *insn)
6137 {
6138 if (crtl->calls_eh_return)
6139 {
6140 /* If the function uses __builtin_eh_return, the eh_return
6141 machinery occupies the delay slot. */
6142 gcc_assert (!final_sequence);
6143
6144 if (flag_delayed_branch)
6145 {
6146 if (!TARGET_FLAT && TARGET_V9)
6147 fputs ("\treturn\t%i7+8\n", asm_out_file);
6148 else
6149 {
6150 if (!TARGET_FLAT)
6151 fputs ("\trestore\n", asm_out_file);
6152
6153 fputs ("\tjmp\t%o7+8\n", asm_out_file);
6154 }
6155
6156 fputs ("\t add\t%sp, %g1, %sp\n", asm_out_file);
6157 }
6158 else
6159 {
6160 if (!TARGET_FLAT)
6161 fputs ("\trestore\n", asm_out_file);
6162
6163 fputs ("\tadd\t%sp, %g1, %sp\n", asm_out_file);
6164 fputs ("\tjmp\t%o7+8\n\t nop\n", asm_out_file);
6165 }
6166 }
6167 else if (sparc_leaf_function_p || TARGET_FLAT)
6168 {
6169 /* This is a leaf or flat function so we don't have to bother restoring
6170 the register window, which frees us from dealing with the convoluted
6171 semantics of restore/return. We simply output the jump to the
6172 return address and the insn in the delay slot (if any). */
6173
6174 return "jmp\t%%o7+%)%#";
6175 }
6176 else
6177 {
6178 /* This is a regular function so we have to restore the register window.
6179 We may have a pending insn for the delay slot, which will be either
6180 combined with the 'restore' instruction or put in the delay slot of
6181 the 'return' instruction. */
6182
6183 if (final_sequence)
6184 {
6185 rtx_insn *delay;
6186 rtx pat;
6187 int seen;
6188
6189 delay = NEXT_INSN (insn);
6190 gcc_assert (delay);
6191
6192 pat = PATTERN (delay);
6193
6194 if (TARGET_V9 && ! epilogue_renumber (&pat, 1))
6195 {
6196 epilogue_renumber (&pat, 0);
6197 return "return\t%%i7+%)%#";
6198 }
6199 else
6200 {
6201 output_asm_insn ("jmp\t%%i7+%)", NULL);
6202
6203 /* We're going to output the insn in the delay slot manually.
6204 Make sure to output its source location first. */
6205 PATTERN (delay) = gen_blockage ();
6206 INSN_CODE (delay) = -1;
6207 final_scan_insn (delay, asm_out_file, optimize, 0, &seen);
6208 INSN_LOCATION (delay) = UNKNOWN_LOCATION;
6209
6210 output_restore (pat);
6211 }
6212 }
6213 else
6214 {
6215 /* The delay slot is empty. */
6216 if (TARGET_V9)
6217 return "return\t%%i7+%)\n\t nop";
6218 else if (flag_delayed_branch)
6219 return "jmp\t%%i7+%)\n\t restore";
6220 else
6221 return "restore\n\tjmp\t%%o7+%)\n\t nop";
6222 }
6223 }
6224
6225 return "";
6226 }
6227
6228 /* Output a sibling call. */
6229
6230 const char *
6231 output_sibcall (rtx_insn *insn, rtx call_operand)
6232 {
6233 rtx operands[1];
6234
6235 gcc_assert (flag_delayed_branch);
6236
6237 operands[0] = call_operand;
6238
6239 if (sparc_leaf_function_p || TARGET_FLAT)
6240 {
6241 /* This is a leaf or flat function so we don't have to bother restoring
6242 the register window. We simply output the jump to the function and
6243 the insn in the delay slot (if any). */
6244
6245 gcc_assert (!(LEAF_SIBCALL_SLOT_RESERVED_P && final_sequence));
6246
6247 if (final_sequence)
6248 output_asm_insn ("sethi\t%%hi(%a0), %%g1\n\tjmp\t%%g1 + %%lo(%a0)%#",
6249 operands);
6250 else
6251 /* Use or with rs2 %%g0 instead of mov, so that as/ld can optimize
6252 it into branch if possible. */
6253 output_asm_insn ("or\t%%o7, %%g0, %%g1\n\tcall\t%a0, 0\n\t or\t%%g1, %%g0, %%o7",
6254 operands);
6255 }
6256 else
6257 {
6258 /* This is a regular function so we have to restore the register window.
6259 We may have a pending insn for the delay slot, which will be combined
6260 with the 'restore' instruction. */
6261
6262 output_asm_insn ("call\t%a0, 0", operands);
6263
6264 if (final_sequence)
6265 {
6266 rtx_insn *delay;
6267 rtx pat;
6268 int seen;
6269
6270 delay = NEXT_INSN (insn);
6271 gcc_assert (delay);
6272
6273 pat = PATTERN (delay);
6274
6275 /* We're going to output the insn in the delay slot manually.
6276 Make sure to output its source location first. */
6277 PATTERN (delay) = gen_blockage ();
6278 INSN_CODE (delay) = -1;
6279 final_scan_insn (delay, asm_out_file, optimize, 0, &seen);
6280 INSN_LOCATION (delay) = UNKNOWN_LOCATION;
6281
6282 output_restore (pat);
6283 }
6284 else
6285 output_restore (NULL_RTX);
6286 }
6287
6288 return "";
6289 }
6290 \f
6291 /* Functions for handling argument passing.
6292
6293 For 32-bit, the first 6 args are normally in registers and the rest are
6294 pushed. Any arg that starts within the first 6 words is at least
6295 partially passed in a register unless its data type forbids.
6296
6297 For 64-bit, the argument registers are laid out as an array of 16 elements
6298 and arguments are added sequentially. The first 6 int args and up to the
6299 first 16 fp args (depending on size) are passed in regs.
6300
6301 Slot Stack Integral Float Float in structure Double Long Double
6302 ---- ----- -------- ----- ------------------ ------ -----------
6303 15 [SP+248] %f31 %f30,%f31 %d30
6304 14 [SP+240] %f29 %f28,%f29 %d28 %q28
6305 13 [SP+232] %f27 %f26,%f27 %d26
6306 12 [SP+224] %f25 %f24,%f25 %d24 %q24
6307 11 [SP+216] %f23 %f22,%f23 %d22
6308 10 [SP+208] %f21 %f20,%f21 %d20 %q20
6309 9 [SP+200] %f19 %f18,%f19 %d18
6310 8 [SP+192] %f17 %f16,%f17 %d16 %q16
6311 7 [SP+184] %f15 %f14,%f15 %d14
6312 6 [SP+176] %f13 %f12,%f13 %d12 %q12
6313 5 [SP+168] %o5 %f11 %f10,%f11 %d10
6314 4 [SP+160] %o4 %f9 %f8,%f9 %d8 %q8
6315 3 [SP+152] %o3 %f7 %f6,%f7 %d6
6316 2 [SP+144] %o2 %f5 %f4,%f5 %d4 %q4
6317 1 [SP+136] %o1 %f3 %f2,%f3 %d2
6318 0 [SP+128] %o0 %f1 %f0,%f1 %d0 %q0
6319
6320 Here SP = %sp if -mno-stack-bias or %sp+stack_bias otherwise.
6321
6322 Integral arguments are always passed as 64-bit quantities appropriately
6323 extended.
6324
6325 Passing of floating point values is handled as follows.
6326 If a prototype is in scope:
6327 If the value is in a named argument (i.e. not a stdarg function or a
6328 value not part of the `...') then the value is passed in the appropriate
6329 fp reg.
6330 If the value is part of the `...' and is passed in one of the first 6
6331 slots then the value is passed in the appropriate int reg.
6332 If the value is part of the `...' and is not passed in one of the first 6
6333 slots then the value is passed in memory.
6334 If a prototype is not in scope:
6335 If the value is one of the first 6 arguments the value is passed in the
6336 appropriate integer reg and the appropriate fp reg.
6337 If the value is not one of the first 6 arguments the value is passed in
6338 the appropriate fp reg and in memory.
6339
6340
6341 Summary of the calling conventions implemented by GCC on the SPARC:
6342
6343 32-bit ABI:
6344 size argument return value
6345
6346 small integer <4 int. reg. int. reg.
6347 word 4 int. reg. int. reg.
6348 double word 8 int. reg. int. reg.
6349
6350 _Complex small integer <8 int. reg. int. reg.
6351 _Complex word 8 int. reg. int. reg.
6352 _Complex double word 16 memory int. reg.
6353
6354 vector integer <=8 int. reg. FP reg.
6355 vector integer >8 memory memory
6356
6357 float 4 int. reg. FP reg.
6358 double 8 int. reg. FP reg.
6359 long double 16 memory memory
6360
6361 _Complex float 8 memory FP reg.
6362 _Complex double 16 memory FP reg.
6363 _Complex long double 32 memory FP reg.
6364
6365 vector float any memory memory
6366
6367 aggregate any memory memory
6368
6369
6370
6371 64-bit ABI:
6372 size argument return value
6373
6374 small integer <8 int. reg. int. reg.
6375 word 8 int. reg. int. reg.
6376 double word 16 int. reg. int. reg.
6377
6378 _Complex small integer <16 int. reg. int. reg.
6379 _Complex word 16 int. reg. int. reg.
6380 _Complex double word 32 memory int. reg.
6381
6382 vector integer <=16 FP reg. FP reg.
6383 vector integer 16<s<=32 memory FP reg.
6384 vector integer >32 memory memory
6385
6386 float 4 FP reg. FP reg.
6387 double 8 FP reg. FP reg.
6388 long double 16 FP reg. FP reg.
6389
6390 _Complex float 8 FP reg. FP reg.
6391 _Complex double 16 FP reg. FP reg.
6392 _Complex long double 32 memory FP reg.
6393
6394 vector float <=16 FP reg. FP reg.
6395 vector float 16<s<=32 memory FP reg.
6396 vector float >32 memory memory
6397
6398 aggregate <=16 reg. reg.
6399 aggregate 16<s<=32 memory reg.
6400 aggregate >32 memory memory
6401
6402
6403
6404 Note #1: complex floating-point types follow the extended SPARC ABIs as
6405 implemented by the Sun compiler.
6406
6407 Note #2: integral vector types follow the scalar floating-point types
6408 conventions to match what is implemented by the Sun VIS SDK.
6409
6410 Note #3: floating-point vector types follow the aggregate types
6411 conventions. */
6412
6413
6414 /* Maximum number of int regs for args. */
6415 #define SPARC_INT_ARG_MAX 6
6416 /* Maximum number of fp regs for args. */
6417 #define SPARC_FP_ARG_MAX 16
6418 /* Number of words (partially) occupied for a given size in units. */
6419 #define CEIL_NWORDS(SIZE) CEIL((SIZE), UNITS_PER_WORD)
6420
6421 /* Handle the INIT_CUMULATIVE_ARGS macro.
6422 Initialize a variable CUM of type CUMULATIVE_ARGS
6423 for a call to a function whose data type is FNTYPE.
6424 For a library call, FNTYPE is 0. */
6425
6426 void
6427 init_cumulative_args (struct sparc_args *cum, tree fntype, rtx, tree)
6428 {
6429 cum->words = 0;
6430 cum->prototype_p = fntype && prototype_p (fntype);
6431 cum->libcall_p = !fntype;
6432 }
6433
6434 /* Handle promotion of pointer and integer arguments. */
6435
6436 static machine_mode
6437 sparc_promote_function_mode (const_tree type, machine_mode mode,
6438 int *punsignedp, const_tree, int)
6439 {
6440 if (type && POINTER_TYPE_P (type))
6441 {
6442 *punsignedp = POINTERS_EXTEND_UNSIGNED;
6443 return Pmode;
6444 }
6445
6446 /* Integral arguments are passed as full words, as per the ABI. */
6447 if (GET_MODE_CLASS (mode) == MODE_INT
6448 && GET_MODE_SIZE (mode) < UNITS_PER_WORD)
6449 return word_mode;
6450
6451 return mode;
6452 }
6453
6454 /* Handle the TARGET_STRICT_ARGUMENT_NAMING target hook. */
6455
6456 static bool
6457 sparc_strict_argument_naming (cumulative_args_t ca ATTRIBUTE_UNUSED)
6458 {
6459 return TARGET_ARCH64 ? true : false;
6460 }
6461
6462 /* Traverse the record TYPE recursively and call FUNC on its fields.
6463 NAMED is true if this is for a named parameter. DATA is passed
6464 to FUNC for each field. OFFSET is the starting position and
6465 PACKED is true if we are inside a packed record. */
6466
6467 template <typename T, void Func (const_tree, HOST_WIDE_INT, bool, T*)>
6468 static void
6469 traverse_record_type (const_tree type, bool named, T *data,
6470 HOST_WIDE_INT offset = 0, bool packed = false)
6471 {
6472 /* The ABI obviously doesn't specify how packed structures are passed.
6473 These are passed in integer regs if possible, otherwise memory. */
6474 if (!packed)
6475 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
6476 if (TREE_CODE (field) == FIELD_DECL && DECL_PACKED (field))
6477 {
6478 packed = true;
6479 break;
6480 }
6481
6482 /* Walk the real fields, but skip those with no size or a zero size.
6483 ??? Fields with variable offset are handled as having zero offset. */
6484 for (tree field = TYPE_FIELDS (type); field; field = DECL_CHAIN (field))
6485 if (TREE_CODE (field) == FIELD_DECL)
6486 {
6487 if (!DECL_SIZE (field) || integer_zerop (DECL_SIZE (field)))
6488 continue;
6489
6490 HOST_WIDE_INT bitpos = offset;
6491 if (TREE_CODE (DECL_FIELD_OFFSET (field)) == INTEGER_CST)
6492 bitpos += int_bit_position (field);
6493
6494 tree field_type = TREE_TYPE (field);
6495 if (TREE_CODE (field_type) == RECORD_TYPE)
6496 traverse_record_type<T, Func> (field_type, named, data, bitpos,
6497 packed);
6498 else
6499 {
6500 const bool fp_type
6501 = FLOAT_TYPE_P (field_type) || VECTOR_TYPE_P (field_type);
6502 Func (field, bitpos, fp_type && named && !packed && TARGET_FPU,
6503 data);
6504 }
6505 }
6506 }
6507
6508 /* Handle recursive register classifying for structure layout. */
6509
6510 typedef struct
6511 {
6512 bool fp_regs; /* true if field eligible to FP registers. */
6513 bool fp_regs_in_first_word; /* true if such field in first word. */
6514 } classify_data_t;
6515
6516 /* A subroutine of function_arg_slotno. Classify the field. */
6517
6518 inline void
6519 classify_registers (const_tree, HOST_WIDE_INT bitpos, bool fp,
6520 classify_data_t *data)
6521 {
6522 if (fp)
6523 {
6524 data->fp_regs = true;
6525 if (bitpos < BITS_PER_WORD)
6526 data->fp_regs_in_first_word = true;
6527 }
6528 }
6529
6530 /* Compute the slot number to pass an argument in.
6531 Return the slot number or -1 if passing on the stack.
6532
6533 CUM is a variable of type CUMULATIVE_ARGS which gives info about
6534 the preceding args and about the function being called.
6535 MODE is the argument's machine mode.
6536 TYPE is the data type of the argument (as a tree).
6537 This is null for libcalls where that information may
6538 not be available.
6539 NAMED is nonzero if this argument is a named parameter
6540 (otherwise it is an extra parameter matching an ellipsis).
6541 INCOMING is zero for FUNCTION_ARG, nonzero for FUNCTION_INCOMING_ARG.
6542 *PREGNO records the register number to use if scalar type.
6543 *PPADDING records the amount of padding needed in words. */
6544
6545 static int
6546 function_arg_slotno (const struct sparc_args *cum, machine_mode mode,
6547 const_tree type, bool named, bool incoming,
6548 int *pregno, int *ppadding)
6549 {
6550 int regbase = (incoming
6551 ? SPARC_INCOMING_INT_ARG_FIRST
6552 : SPARC_OUTGOING_INT_ARG_FIRST);
6553 int slotno = cum->words;
6554 enum mode_class mclass;
6555 int regno;
6556
6557 *ppadding = 0;
6558
6559 if (type && TREE_ADDRESSABLE (type))
6560 return -1;
6561
6562 if (TARGET_ARCH32
6563 && mode == BLKmode
6564 && type
6565 && TYPE_ALIGN (type) % PARM_BOUNDARY != 0)
6566 return -1;
6567
6568 /* For SPARC64, objects requiring 16-byte alignment get it. */
6569 if (TARGET_ARCH64
6570 && (type ? TYPE_ALIGN (type) : GET_MODE_ALIGNMENT (mode)) >= 128
6571 && (slotno & 1) != 0)
6572 slotno++, *ppadding = 1;
6573
6574 mclass = GET_MODE_CLASS (mode);
6575 if (type && TREE_CODE (type) == VECTOR_TYPE)
6576 {
6577 /* Vector types deserve special treatment because they are
6578 polymorphic wrt their mode, depending upon whether VIS
6579 instructions are enabled. */
6580 if (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE)
6581 {
6582 /* The SPARC port defines no floating-point vector modes. */
6583 gcc_assert (mode == BLKmode);
6584 }
6585 else
6586 {
6587 /* Integral vector types should either have a vector
6588 mode or an integral mode, because we are guaranteed
6589 by pass_by_reference that their size is not greater
6590 than 16 bytes and TImode is 16-byte wide. */
6591 gcc_assert (mode != BLKmode);
6592
6593 /* Vector integers are handled like floats according to
6594 the Sun VIS SDK. */
6595 mclass = MODE_FLOAT;
6596 }
6597 }
6598
6599 switch (mclass)
6600 {
6601 case MODE_FLOAT:
6602 case MODE_COMPLEX_FLOAT:
6603 case MODE_VECTOR_INT:
6604 if (TARGET_ARCH64 && TARGET_FPU && named)
6605 {
6606 /* If all arg slots are filled, then must pass on stack. */
6607 if (slotno >= SPARC_FP_ARG_MAX)
6608 return -1;
6609
6610 regno = SPARC_FP_ARG_FIRST + slotno * 2;
6611 /* Arguments filling only one single FP register are
6612 right-justified in the outer double FP register. */
6613 if (GET_MODE_SIZE (mode) <= 4)
6614 regno++;
6615 break;
6616 }
6617 /* fallthrough */
6618
6619 case MODE_INT:
6620 case MODE_COMPLEX_INT:
6621 /* If all arg slots are filled, then must pass on stack. */
6622 if (slotno >= SPARC_INT_ARG_MAX)
6623 return -1;
6624
6625 regno = regbase + slotno;
6626 break;
6627
6628 case MODE_RANDOM:
6629 if (mode == VOIDmode)
6630 /* MODE is VOIDmode when generating the actual call. */
6631 return -1;
6632
6633 gcc_assert (mode == BLKmode);
6634
6635 if (TARGET_ARCH32
6636 || !type
6637 || (TREE_CODE (type) != RECORD_TYPE
6638 && TREE_CODE (type) != VECTOR_TYPE))
6639 {
6640 /* If all arg slots are filled, then must pass on stack. */
6641 if (slotno >= SPARC_INT_ARG_MAX)
6642 return -1;
6643
6644 regno = regbase + slotno;
6645 }
6646 else /* TARGET_ARCH64 && type */
6647 {
6648 /* If all arg slots are filled, then must pass on stack. */
6649 if (slotno >= SPARC_FP_ARG_MAX)
6650 return -1;
6651
6652 if (TREE_CODE (type) == RECORD_TYPE)
6653 {
6654 classify_data_t data = { false, false };
6655 traverse_record_type<classify_data_t, classify_registers>
6656 (type, named, &data);
6657
6658 if (data.fp_regs)
6659 {
6660 /* If all FP slots are filled except for the last one and
6661 there is no FP field in the first word, then must pass
6662 on stack. */
6663 if (slotno >= SPARC_FP_ARG_MAX - 1
6664 && !data.fp_regs_in_first_word)
6665 return -1;
6666 }
6667 else
6668 {
6669 /* If all int slots are filled, then must pass on stack. */
6670 if (slotno >= SPARC_INT_ARG_MAX)
6671 return -1;
6672 }
6673 }
6674
6675 /* PREGNO isn't set since both int and FP regs can be used. */
6676 return slotno;
6677 }
6678 break;
6679
6680 default :
6681 gcc_unreachable ();
6682 }
6683
6684 *pregno = regno;
6685 return slotno;
6686 }
6687
6688 /* Handle recursive register counting/assigning for structure layout. */
6689
6690 typedef struct
6691 {
6692 int slotno; /* slot number of the argument. */
6693 int regbase; /* regno of the base register. */
6694 int intoffset; /* offset of the first pending integer field. */
6695 int nregs; /* number of words passed in registers. */
6696 bool stack; /* true if part of the argument is on the stack. */
6697 rtx ret; /* return expression being built. */
6698 } assign_data_t;
6699
6700 /* A subroutine of function_arg_record_value. Compute the number of integer
6701 registers to be assigned between PARMS->intoffset and BITPOS. Return
6702 true if at least one integer register is assigned or false otherwise. */
6703
6704 static bool
6705 compute_int_layout (HOST_WIDE_INT bitpos, assign_data_t *data, int *pnregs)
6706 {
6707 if (data->intoffset < 0)
6708 return false;
6709
6710 const int intoffset = data->intoffset;
6711 data->intoffset = -1;
6712
6713 const int this_slotno = data->slotno + intoffset / BITS_PER_WORD;
6714 const unsigned int startbit = ROUND_DOWN (intoffset, BITS_PER_WORD);
6715 const unsigned int endbit = ROUND_UP (bitpos, BITS_PER_WORD);
6716 int nregs = (endbit - startbit) / BITS_PER_WORD;
6717
6718 if (nregs > 0 && nregs > SPARC_INT_ARG_MAX - this_slotno)
6719 {
6720 nregs = SPARC_INT_ARG_MAX - this_slotno;
6721
6722 /* We need to pass this field (partly) on the stack. */
6723 data->stack = 1;
6724 }
6725
6726 if (nregs <= 0)
6727 return false;
6728
6729 *pnregs = nregs;
6730 return true;
6731 }
6732
6733 /* A subroutine of function_arg_record_value. Compute the number and the mode
6734 of the FP registers to be assigned for FIELD. Return true if at least one
6735 FP register is assigned or false otherwise. */
6736
6737 static bool
6738 compute_fp_layout (const_tree field, HOST_WIDE_INT bitpos,
6739 assign_data_t *data,
6740 int *pnregs, machine_mode *pmode)
6741 {
6742 const int this_slotno = data->slotno + bitpos / BITS_PER_WORD;
6743 machine_mode mode = DECL_MODE (field);
6744 int nregs, nslots;
6745
6746 /* Slots are counted as words while regs are counted as having the size of
6747 the (inner) mode. */
6748 if (TREE_CODE (TREE_TYPE (field)) == VECTOR_TYPE && mode == BLKmode)
6749 {
6750 mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (field)));
6751 nregs = TYPE_VECTOR_SUBPARTS (TREE_TYPE (field));
6752 }
6753 else if (TREE_CODE (TREE_TYPE (field)) == COMPLEX_TYPE)
6754 {
6755 mode = TYPE_MODE (TREE_TYPE (TREE_TYPE (field)));
6756 nregs = 2;
6757 }
6758 else
6759 nregs = 1;
6760
6761 nslots = CEIL_NWORDS (nregs * GET_MODE_SIZE (mode));
6762
6763 if (nslots > SPARC_FP_ARG_MAX - this_slotno)
6764 {
6765 nslots = SPARC_FP_ARG_MAX - this_slotno;
6766 nregs = (nslots * UNITS_PER_WORD) / GET_MODE_SIZE (mode);
6767
6768 /* We need to pass this field (partly) on the stack. */
6769 data->stack = 1;
6770
6771 if (nregs <= 0)
6772 return false;
6773 }
6774
6775 *pnregs = nregs;
6776 *pmode = mode;
6777 return true;
6778 }
6779
6780 /* A subroutine of function_arg_record_value. Count the number of registers
6781 to be assigned for FIELD and between PARMS->intoffset and BITPOS. */
6782
6783 inline void
6784 count_registers (const_tree field, HOST_WIDE_INT bitpos, bool fp,
6785 assign_data_t *data)
6786 {
6787 if (fp)
6788 {
6789 int nregs;
6790 machine_mode mode;
6791
6792 if (compute_int_layout (bitpos, data, &nregs))
6793 data->nregs += nregs;
6794
6795 if (compute_fp_layout (field, bitpos, data, &nregs, &mode))
6796 data->nregs += nregs;
6797 }
6798 else
6799 {
6800 if (data->intoffset < 0)
6801 data->intoffset = bitpos;
6802 }
6803 }
6804
6805 /* A subroutine of function_arg_record_value. Assign the bits of the
6806 structure between PARMS->intoffset and BITPOS to integer registers. */
6807
6808 static void
6809 assign_int_registers (HOST_WIDE_INT bitpos, assign_data_t *data)
6810 {
6811 int intoffset = data->intoffset;
6812 machine_mode mode;
6813 int nregs;
6814
6815 if (!compute_int_layout (bitpos, data, &nregs))
6816 return;
6817
6818 /* If this is the trailing part of a word, only load that much into
6819 the register. Otherwise load the whole register. Note that in
6820 the latter case we may pick up unwanted bits. It's not a problem
6821 at the moment but may wish to revisit. */
6822 if (intoffset % BITS_PER_WORD != 0)
6823 mode = smallest_int_mode_for_size (BITS_PER_WORD
6824 - intoffset % BITS_PER_WORD);
6825 else
6826 mode = word_mode;
6827
6828 const int this_slotno = data->slotno + intoffset / BITS_PER_WORD;
6829 unsigned int regno = data->regbase + this_slotno;
6830 intoffset /= BITS_PER_UNIT;
6831
6832 do
6833 {
6834 rtx reg = gen_rtx_REG (mode, regno);
6835 XVECEXP (data->ret, 0, data->stack + data->nregs)
6836 = gen_rtx_EXPR_LIST (VOIDmode, reg, GEN_INT (intoffset));
6837 data->nregs += 1;
6838 mode = word_mode;
6839 regno += 1;
6840 intoffset = (intoffset | (UNITS_PER_WORD - 1)) + 1;
6841 }
6842 while (--nregs > 0);
6843 }
6844
6845 /* A subroutine of function_arg_record_value. Assign FIELD at position
6846 BITPOS to FP registers. */
6847
6848 static void
6849 assign_fp_registers (const_tree field, HOST_WIDE_INT bitpos,
6850 assign_data_t *data)
6851 {
6852 int nregs;
6853 machine_mode mode;
6854
6855 if (!compute_fp_layout (field, bitpos, data, &nregs, &mode))
6856 return;
6857
6858 const int this_slotno = data->slotno + bitpos / BITS_PER_WORD;
6859 int regno = SPARC_FP_ARG_FIRST + this_slotno * 2;
6860 if (GET_MODE_SIZE (mode) <= 4 && (bitpos & 32) != 0)
6861 regno++;
6862 int pos = bitpos / BITS_PER_UNIT;
6863
6864 do
6865 {
6866 rtx reg = gen_rtx_REG (mode, regno);
6867 XVECEXP (data->ret, 0, data->stack + data->nregs)
6868 = gen_rtx_EXPR_LIST (VOIDmode, reg, GEN_INT (pos));
6869 data->nregs += 1;
6870 regno += GET_MODE_SIZE (mode) / 4;
6871 pos += GET_MODE_SIZE (mode);
6872 }
6873 while (--nregs > 0);
6874 }
6875
6876 /* A subroutine of function_arg_record_value. Assign FIELD and the bits of
6877 the structure between PARMS->intoffset and BITPOS to registers. */
6878
6879 inline void
6880 assign_registers (const_tree field, HOST_WIDE_INT bitpos, bool fp,
6881 assign_data_t *data)
6882 {
6883 if (fp)
6884 {
6885 assign_int_registers (bitpos, data);
6886
6887 assign_fp_registers (field, bitpos, data);
6888 }
6889 else
6890 {
6891 if (data->intoffset < 0)
6892 data->intoffset = bitpos;
6893 }
6894 }
6895
6896 /* Used by function_arg and sparc_function_value_1 to implement the complex
6897 conventions of the 64-bit ABI for passing and returning structures.
6898 Return an expression valid as a return value for the FUNCTION_ARG
6899 and TARGET_FUNCTION_VALUE.
6900
6901 TYPE is the data type of the argument (as a tree).
6902 This is null for libcalls where that information may
6903 not be available.
6904 MODE is the argument's machine mode.
6905 SLOTNO is the index number of the argument's slot in the parameter array.
6906 NAMED is true if this argument is a named parameter
6907 (otherwise it is an extra parameter matching an ellipsis).
6908 REGBASE is the regno of the base register for the parameter array. */
6909
6910 static rtx
6911 function_arg_record_value (const_tree type, machine_mode mode,
6912 int slotno, bool named, int regbase)
6913 {
6914 HOST_WIDE_INT typesize = int_size_in_bytes (type);
6915 assign_data_t data;
6916 int nregs;
6917
6918 data.slotno = slotno;
6919 data.regbase = regbase;
6920
6921 /* Count how many registers we need. */
6922 data.nregs = 0;
6923 data.intoffset = 0;
6924 data.stack = false;
6925 traverse_record_type<assign_data_t, count_registers> (type, named, &data);
6926
6927 /* Take into account pending integer fields. */
6928 if (compute_int_layout (typesize * BITS_PER_UNIT, &data, &nregs))
6929 data.nregs += nregs;
6930
6931 /* Allocate the vector and handle some annoying special cases. */
6932 nregs = data.nregs;
6933
6934 if (nregs == 0)
6935 {
6936 /* ??? Empty structure has no value? Duh? */
6937 if (typesize <= 0)
6938 {
6939 /* Though there's nothing really to store, return a word register
6940 anyway so the rest of gcc doesn't go nuts. Returning a PARALLEL
6941 leads to breakage due to the fact that there are zero bytes to
6942 load. */
6943 return gen_rtx_REG (mode, regbase);
6944 }
6945
6946 /* ??? C++ has structures with no fields, and yet a size. Give up
6947 for now and pass everything back in integer registers. */
6948 nregs = (typesize + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
6949 if (nregs + slotno > SPARC_INT_ARG_MAX)
6950 nregs = SPARC_INT_ARG_MAX - slotno;
6951 }
6952
6953 gcc_assert (nregs > 0);
6954
6955 data.ret = gen_rtx_PARALLEL (mode, rtvec_alloc (data.stack + nregs));
6956
6957 /* If at least one field must be passed on the stack, generate
6958 (parallel [(expr_list (nil) ...) ...]) so that all fields will
6959 also be passed on the stack. We can't do much better because the
6960 semantics of TARGET_ARG_PARTIAL_BYTES doesn't handle the case
6961 of structures for which the fields passed exclusively in registers
6962 are not at the beginning of the structure. */
6963 if (data.stack)
6964 XVECEXP (data.ret, 0, 0)
6965 = gen_rtx_EXPR_LIST (VOIDmode, NULL_RTX, const0_rtx);
6966
6967 /* Assign the registers. */
6968 data.nregs = 0;
6969 data.intoffset = 0;
6970 traverse_record_type<assign_data_t, assign_registers> (type, named, &data);
6971
6972 /* Assign pending integer fields. */
6973 assign_int_registers (typesize * BITS_PER_UNIT, &data);
6974
6975 gcc_assert (data.nregs == nregs);
6976
6977 return data.ret;
6978 }
6979
6980 /* Used by function_arg and sparc_function_value_1 to implement the conventions
6981 of the 64-bit ABI for passing and returning unions.
6982 Return an expression valid as a return value for the FUNCTION_ARG
6983 and TARGET_FUNCTION_VALUE.
6984
6985 SIZE is the size in bytes of the union.
6986 MODE is the argument's machine mode.
6987 REGNO is the hard register the union will be passed in. */
6988
6989 static rtx
6990 function_arg_union_value (int size, machine_mode mode, int slotno,
6991 int regno)
6992 {
6993 int nwords = CEIL_NWORDS (size), i;
6994 rtx regs;
6995
6996 /* See comment in previous function for empty structures. */
6997 if (nwords == 0)
6998 return gen_rtx_REG (mode, regno);
6999
7000 if (slotno == SPARC_INT_ARG_MAX - 1)
7001 nwords = 1;
7002
7003 regs = gen_rtx_PARALLEL (mode, rtvec_alloc (nwords));
7004
7005 for (i = 0; i < nwords; i++)
7006 {
7007 /* Unions are passed left-justified. */
7008 XVECEXP (regs, 0, i)
7009 = gen_rtx_EXPR_LIST (VOIDmode,
7010 gen_rtx_REG (word_mode, regno),
7011 GEN_INT (UNITS_PER_WORD * i));
7012 regno++;
7013 }
7014
7015 return regs;
7016 }
7017
7018 /* Used by function_arg and sparc_function_value_1 to implement the conventions
7019 for passing and returning BLKmode vectors.
7020 Return an expression valid as a return value for the FUNCTION_ARG
7021 and TARGET_FUNCTION_VALUE.
7022
7023 SIZE is the size in bytes of the vector.
7024 REGNO is the FP hard register the vector will be passed in. */
7025
7026 static rtx
7027 function_arg_vector_value (int size, int regno)
7028 {
7029 const int nregs = MAX (1, size / 8);
7030 rtx regs = gen_rtx_PARALLEL (BLKmode, rtvec_alloc (nregs));
7031
7032 if (size < 8)
7033 XVECEXP (regs, 0, 0)
7034 = gen_rtx_EXPR_LIST (VOIDmode,
7035 gen_rtx_REG (SImode, regno),
7036 const0_rtx);
7037 else
7038 for (int i = 0; i < nregs; i++)
7039 XVECEXP (regs, 0, i)
7040 = gen_rtx_EXPR_LIST (VOIDmode,
7041 gen_rtx_REG (DImode, regno + 2*i),
7042 GEN_INT (i*8));
7043
7044 return regs;
7045 }
7046
7047 /* Determine where to put an argument to a function.
7048 Value is zero to push the argument on the stack,
7049 or a hard register in which to store the argument.
7050
7051 CUM is a variable of type CUMULATIVE_ARGS which gives info about
7052 the preceding args and about the function being called.
7053 MODE is the argument's machine mode.
7054 TYPE is the data type of the argument (as a tree).
7055 This is null for libcalls where that information may
7056 not be available.
7057 NAMED is true if this argument is a named parameter
7058 (otherwise it is an extra parameter matching an ellipsis).
7059 INCOMING_P is false for TARGET_FUNCTION_ARG, true for
7060 TARGET_FUNCTION_INCOMING_ARG. */
7061
7062 static rtx
7063 sparc_function_arg_1 (cumulative_args_t cum_v, machine_mode mode,
7064 const_tree type, bool named, bool incoming)
7065 {
7066 const CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
7067
7068 int regbase = (incoming
7069 ? SPARC_INCOMING_INT_ARG_FIRST
7070 : SPARC_OUTGOING_INT_ARG_FIRST);
7071 int slotno, regno, padding;
7072 enum mode_class mclass = GET_MODE_CLASS (mode);
7073
7074 slotno = function_arg_slotno (cum, mode, type, named, incoming,
7075 &regno, &padding);
7076 if (slotno == -1)
7077 return 0;
7078
7079 /* Vector types deserve special treatment because they are polymorphic wrt
7080 their mode, depending upon whether VIS instructions are enabled. */
7081 if (type && TREE_CODE (type) == VECTOR_TYPE)
7082 {
7083 HOST_WIDE_INT size = int_size_in_bytes (type);
7084 gcc_assert ((TARGET_ARCH32 && size <= 8)
7085 || (TARGET_ARCH64 && size <= 16));
7086
7087 if (mode == BLKmode)
7088 return function_arg_vector_value (size, SPARC_FP_ARG_FIRST + 2*slotno);
7089
7090 mclass = MODE_FLOAT;
7091 }
7092
7093 if (TARGET_ARCH32)
7094 return gen_rtx_REG (mode, regno);
7095
7096 /* Structures up to 16 bytes in size are passed in arg slots on the stack
7097 and are promoted to registers if possible. */
7098 if (type && TREE_CODE (type) == RECORD_TYPE)
7099 {
7100 HOST_WIDE_INT size = int_size_in_bytes (type);
7101 gcc_assert (size <= 16);
7102
7103 return function_arg_record_value (type, mode, slotno, named, regbase);
7104 }
7105
7106 /* Unions up to 16 bytes in size are passed in integer registers. */
7107 else if (type && TREE_CODE (type) == UNION_TYPE)
7108 {
7109 HOST_WIDE_INT size = int_size_in_bytes (type);
7110 gcc_assert (size <= 16);
7111
7112 return function_arg_union_value (size, mode, slotno, regno);
7113 }
7114
7115 /* v9 fp args in reg slots beyond the int reg slots get passed in regs
7116 but also have the slot allocated for them.
7117 If no prototype is in scope fp values in register slots get passed
7118 in two places, either fp regs and int regs or fp regs and memory. */
7119 else if ((mclass == MODE_FLOAT || mclass == MODE_COMPLEX_FLOAT)
7120 && SPARC_FP_REG_P (regno))
7121 {
7122 rtx reg = gen_rtx_REG (mode, regno);
7123 if (cum->prototype_p || cum->libcall_p)
7124 return reg;
7125 else
7126 {
7127 rtx v0, v1;
7128
7129 if ((regno - SPARC_FP_ARG_FIRST) < SPARC_INT_ARG_MAX * 2)
7130 {
7131 int intreg;
7132
7133 /* On incoming, we don't need to know that the value
7134 is passed in %f0 and %i0, and it confuses other parts
7135 causing needless spillage even on the simplest cases. */
7136 if (incoming)
7137 return reg;
7138
7139 intreg = (SPARC_OUTGOING_INT_ARG_FIRST
7140 + (regno - SPARC_FP_ARG_FIRST) / 2);
7141
7142 v0 = gen_rtx_EXPR_LIST (VOIDmode, reg, const0_rtx);
7143 v1 = gen_rtx_EXPR_LIST (VOIDmode, gen_rtx_REG (mode, intreg),
7144 const0_rtx);
7145 return gen_rtx_PARALLEL (mode, gen_rtvec (2, v0, v1));
7146 }
7147 else
7148 {
7149 v0 = gen_rtx_EXPR_LIST (VOIDmode, NULL_RTX, const0_rtx);
7150 v1 = gen_rtx_EXPR_LIST (VOIDmode, reg, const0_rtx);
7151 return gen_rtx_PARALLEL (mode, gen_rtvec (2, v0, v1));
7152 }
7153 }
7154 }
7155
7156 /* All other aggregate types are passed in an integer register in a mode
7157 corresponding to the size of the type. */
7158 else if (type && AGGREGATE_TYPE_P (type))
7159 {
7160 HOST_WIDE_INT size = int_size_in_bytes (type);
7161 gcc_assert (size <= 16);
7162
7163 mode = int_mode_for_size (size * BITS_PER_UNIT, 0).else_blk ();
7164 }
7165
7166 return gen_rtx_REG (mode, regno);
7167 }
7168
7169 /* Handle the TARGET_FUNCTION_ARG target hook. */
7170
7171 static rtx
7172 sparc_function_arg (cumulative_args_t cum, machine_mode mode,
7173 const_tree type, bool named)
7174 {
7175 return sparc_function_arg_1 (cum, mode, type, named, false);
7176 }
7177
7178 /* Handle the TARGET_FUNCTION_INCOMING_ARG target hook. */
7179
7180 static rtx
7181 sparc_function_incoming_arg (cumulative_args_t cum, machine_mode mode,
7182 const_tree type, bool named)
7183 {
7184 return sparc_function_arg_1 (cum, mode, type, named, true);
7185 }
7186
7187 /* For sparc64, objects requiring 16 byte alignment are passed that way. */
7188
7189 static unsigned int
7190 sparc_function_arg_boundary (machine_mode mode, const_tree type)
7191 {
7192 return ((TARGET_ARCH64
7193 && (GET_MODE_ALIGNMENT (mode) == 128
7194 || (type && TYPE_ALIGN (type) == 128)))
7195 ? 128
7196 : PARM_BOUNDARY);
7197 }
7198
7199 /* For an arg passed partly in registers and partly in memory,
7200 this is the number of bytes of registers used.
7201 For args passed entirely in registers or entirely in memory, zero.
7202
7203 Any arg that starts in the first 6 regs but won't entirely fit in them
7204 needs partial registers on v8. On v9, structures with integer
7205 values in arg slots 5,6 will be passed in %o5 and SP+176, and complex fp
7206 values that begin in the last fp reg [where "last fp reg" varies with the
7207 mode] will be split between that reg and memory. */
7208
7209 static int
7210 sparc_arg_partial_bytes (cumulative_args_t cum, machine_mode mode,
7211 tree type, bool named)
7212 {
7213 int slotno, regno, padding;
7214
7215 /* We pass false for incoming here, it doesn't matter. */
7216 slotno = function_arg_slotno (get_cumulative_args (cum), mode, type, named,
7217 false, &regno, &padding);
7218
7219 if (slotno == -1)
7220 return 0;
7221
7222 if (TARGET_ARCH32)
7223 {
7224 if ((slotno + (mode == BLKmode
7225 ? CEIL_NWORDS (int_size_in_bytes (type))
7226 : CEIL_NWORDS (GET_MODE_SIZE (mode))))
7227 > SPARC_INT_ARG_MAX)
7228 return (SPARC_INT_ARG_MAX - slotno) * UNITS_PER_WORD;
7229 }
7230 else
7231 {
7232 /* We are guaranteed by pass_by_reference that the size of the
7233 argument is not greater than 16 bytes, so we only need to return
7234 one word if the argument is partially passed in registers. */
7235
7236 if (type && AGGREGATE_TYPE_P (type))
7237 {
7238 int size = int_size_in_bytes (type);
7239
7240 if (size > UNITS_PER_WORD
7241 && (slotno == SPARC_INT_ARG_MAX - 1
7242 || slotno == SPARC_FP_ARG_MAX - 1))
7243 return UNITS_PER_WORD;
7244 }
7245 else if (GET_MODE_CLASS (mode) == MODE_COMPLEX_INT
7246 || (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT
7247 && ! (TARGET_FPU && named)))
7248 {
7249 /* The complex types are passed as packed types. */
7250 if (GET_MODE_SIZE (mode) > UNITS_PER_WORD
7251 && slotno == SPARC_INT_ARG_MAX - 1)
7252 return UNITS_PER_WORD;
7253 }
7254 else if (GET_MODE_CLASS (mode) == MODE_COMPLEX_FLOAT)
7255 {
7256 if ((slotno + GET_MODE_SIZE (mode) / UNITS_PER_WORD)
7257 > SPARC_FP_ARG_MAX)
7258 return UNITS_PER_WORD;
7259 }
7260 }
7261
7262 return 0;
7263 }
7264
7265 /* Handle the TARGET_PASS_BY_REFERENCE target hook.
7266 Specify whether to pass the argument by reference. */
7267
7268 static bool
7269 sparc_pass_by_reference (cumulative_args_t cum ATTRIBUTE_UNUSED,
7270 machine_mode mode, const_tree type,
7271 bool named ATTRIBUTE_UNUSED)
7272 {
7273 if (TARGET_ARCH32)
7274 /* Original SPARC 32-bit ABI says that structures and unions,
7275 and quad-precision floats are passed by reference. For Pascal,
7276 also pass arrays by reference. All other base types are passed
7277 in registers.
7278
7279 Extended ABI (as implemented by the Sun compiler) says that all
7280 complex floats are passed by reference. Pass complex integers
7281 in registers up to 8 bytes. More generally, enforce the 2-word
7282 cap for passing arguments in registers.
7283
7284 Vector ABI (as implemented by the Sun VIS SDK) says that vector
7285 integers are passed like floats of the same size, that is in
7286 registers up to 8 bytes. Pass all vector floats by reference
7287 like structure and unions. */
7288 return ((type && (AGGREGATE_TYPE_P (type) || VECTOR_FLOAT_TYPE_P (type)))
7289 || mode == SCmode
7290 /* Catch CDImode, TFmode, DCmode and TCmode. */
7291 || GET_MODE_SIZE (mode) > 8
7292 || (type
7293 && TREE_CODE (type) == VECTOR_TYPE
7294 && (unsigned HOST_WIDE_INT) int_size_in_bytes (type) > 8));
7295 else
7296 /* Original SPARC 64-bit ABI says that structures and unions
7297 smaller than 16 bytes are passed in registers, as well as
7298 all other base types.
7299
7300 Extended ABI (as implemented by the Sun compiler) says that
7301 complex floats are passed in registers up to 16 bytes. Pass
7302 all complex integers in registers up to 16 bytes. More generally,
7303 enforce the 2-word cap for passing arguments in registers.
7304
7305 Vector ABI (as implemented by the Sun VIS SDK) says that vector
7306 integers are passed like floats of the same size, that is in
7307 registers (up to 16 bytes). Pass all vector floats like structure
7308 and unions. */
7309 return ((type
7310 && (AGGREGATE_TYPE_P (type) || TREE_CODE (type) == VECTOR_TYPE)
7311 && (unsigned HOST_WIDE_INT) int_size_in_bytes (type) > 16)
7312 /* Catch CTImode and TCmode. */
7313 || GET_MODE_SIZE (mode) > 16);
7314 }
7315
7316 /* Handle the TARGET_FUNCTION_ARG_ADVANCE hook.
7317 Update the data in CUM to advance over an argument
7318 of mode MODE and data type TYPE.
7319 TYPE is null for libcalls where that information may not be available. */
7320
7321 static void
7322 sparc_function_arg_advance (cumulative_args_t cum_v, machine_mode mode,
7323 const_tree type, bool named)
7324 {
7325 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
7326 int regno, padding;
7327
7328 /* We pass false for incoming here, it doesn't matter. */
7329 function_arg_slotno (cum, mode, type, named, false, &regno, &padding);
7330
7331 /* If argument requires leading padding, add it. */
7332 cum->words += padding;
7333
7334 if (TARGET_ARCH32)
7335 cum->words += (mode == BLKmode
7336 ? CEIL_NWORDS (int_size_in_bytes (type))
7337 : CEIL_NWORDS (GET_MODE_SIZE (mode)));
7338 else
7339 {
7340 if (type && AGGREGATE_TYPE_P (type))
7341 {
7342 int size = int_size_in_bytes (type);
7343
7344 if (size <= 8)
7345 ++cum->words;
7346 else if (size <= 16)
7347 cum->words += 2;
7348 else /* passed by reference */
7349 ++cum->words;
7350 }
7351 else
7352 cum->words += (mode == BLKmode
7353 ? CEIL_NWORDS (int_size_in_bytes (type))
7354 : CEIL_NWORDS (GET_MODE_SIZE (mode)));
7355 }
7356 }
7357
7358 /* Implement TARGET_FUNCTION_ARG_PADDING. For the 64-bit ABI structs
7359 are always stored left shifted in their argument slot. */
7360
7361 static pad_direction
7362 sparc_function_arg_padding (machine_mode mode, const_tree type)
7363 {
7364 if (TARGET_ARCH64 && type && AGGREGATE_TYPE_P (type))
7365 return PAD_UPWARD;
7366
7367 /* Fall back to the default. */
7368 return default_function_arg_padding (mode, type);
7369 }
7370
7371 /* Handle the TARGET_RETURN_IN_MEMORY target hook.
7372 Specify whether to return the return value in memory. */
7373
7374 static bool
7375 sparc_return_in_memory (const_tree type, const_tree fntype ATTRIBUTE_UNUSED)
7376 {
7377 if (TARGET_ARCH32)
7378 /* Original SPARC 32-bit ABI says that structures and unions,
7379 and quad-precision floats are returned in memory. All other
7380 base types are returned in registers.
7381
7382 Extended ABI (as implemented by the Sun compiler) says that
7383 all complex floats are returned in registers (8 FP registers
7384 at most for '_Complex long double'). Return all complex integers
7385 in registers (4 at most for '_Complex long long').
7386
7387 Vector ABI (as implemented by the Sun VIS SDK) says that vector
7388 integers are returned like floats of the same size, that is in
7389 registers up to 8 bytes and in memory otherwise. Return all
7390 vector floats in memory like structure and unions; note that
7391 they always have BLKmode like the latter. */
7392 return (TYPE_MODE (type) == BLKmode
7393 || TYPE_MODE (type) == TFmode
7394 || (TREE_CODE (type) == VECTOR_TYPE
7395 && (unsigned HOST_WIDE_INT) int_size_in_bytes (type) > 8));
7396 else
7397 /* Original SPARC 64-bit ABI says that structures and unions
7398 smaller than 32 bytes are returned in registers, as well as
7399 all other base types.
7400
7401 Extended ABI (as implemented by the Sun compiler) says that all
7402 complex floats are returned in registers (8 FP registers at most
7403 for '_Complex long double'). Return all complex integers in
7404 registers (4 at most for '_Complex TItype').
7405
7406 Vector ABI (as implemented by the Sun VIS SDK) says that vector
7407 integers are returned like floats of the same size, that is in
7408 registers. Return all vector floats like structure and unions;
7409 note that they always have BLKmode like the latter. */
7410 return (TYPE_MODE (type) == BLKmode
7411 && (unsigned HOST_WIDE_INT) int_size_in_bytes (type) > 32);
7412 }
7413
7414 /* Handle the TARGET_STRUCT_VALUE target hook.
7415 Return where to find the structure return value address. */
7416
7417 static rtx
7418 sparc_struct_value_rtx (tree fndecl, int incoming)
7419 {
7420 if (TARGET_ARCH64)
7421 return 0;
7422 else
7423 {
7424 rtx mem;
7425
7426 if (incoming)
7427 mem = gen_frame_mem (Pmode, plus_constant (Pmode, frame_pointer_rtx,
7428 STRUCT_VALUE_OFFSET));
7429 else
7430 mem = gen_frame_mem (Pmode, plus_constant (Pmode, stack_pointer_rtx,
7431 STRUCT_VALUE_OFFSET));
7432
7433 /* Only follow the SPARC ABI for fixed-size structure returns.
7434 Variable size structure returns are handled per the normal
7435 procedures in GCC. This is enabled by -mstd-struct-return */
7436 if (incoming == 2
7437 && sparc_std_struct_return
7438 && TYPE_SIZE_UNIT (TREE_TYPE (fndecl))
7439 && TREE_CODE (TYPE_SIZE_UNIT (TREE_TYPE (fndecl))) == INTEGER_CST)
7440 {
7441 /* We must check and adjust the return address, as it is optional
7442 as to whether the return object is really provided. */
7443 rtx ret_reg = gen_rtx_REG (Pmode, RETURN_ADDR_REGNUM);
7444 rtx scratch = gen_reg_rtx (SImode);
7445 rtx_code_label *endlab = gen_label_rtx ();
7446
7447 /* Calculate the return object size. */
7448 tree size = TYPE_SIZE_UNIT (TREE_TYPE (fndecl));
7449 rtx size_rtx = GEN_INT (TREE_INT_CST_LOW (size) & 0xfff);
7450 /* Construct a temporary return value. */
7451 rtx temp_val
7452 = assign_stack_local (Pmode, TREE_INT_CST_LOW (size), 0);
7453
7454 /* Implement SPARC 32-bit psABI callee return struct checking:
7455
7456 Fetch the instruction where we will return to and see if
7457 it's an unimp instruction (the most significant 10 bits
7458 will be zero). */
7459 emit_move_insn (scratch, gen_rtx_MEM (SImode,
7460 plus_constant (Pmode,
7461 ret_reg, 8)));
7462 /* Assume the size is valid and pre-adjust. */
7463 emit_insn (gen_add3_insn (ret_reg, ret_reg, GEN_INT (4)));
7464 emit_cmp_and_jump_insns (scratch, size_rtx, EQ, const0_rtx, SImode,
7465 0, endlab);
7466 emit_insn (gen_sub3_insn (ret_reg, ret_reg, GEN_INT (4)));
7467 /* Write the address of the memory pointed to by temp_val into
7468 the memory pointed to by mem. */
7469 emit_move_insn (mem, XEXP (temp_val, 0));
7470 emit_label (endlab);
7471 }
7472
7473 return mem;
7474 }
7475 }
7476
7477 /* Handle TARGET_FUNCTION_VALUE, and TARGET_LIBCALL_VALUE target hook.
7478 For v9, function return values are subject to the same rules as arguments,
7479 except that up to 32 bytes may be returned in registers. */
7480
7481 static rtx
7482 sparc_function_value_1 (const_tree type, machine_mode mode,
7483 bool outgoing)
7484 {
7485 /* Beware that the two values are swapped here wrt function_arg. */
7486 int regbase = (outgoing
7487 ? SPARC_INCOMING_INT_ARG_FIRST
7488 : SPARC_OUTGOING_INT_ARG_FIRST);
7489 enum mode_class mclass = GET_MODE_CLASS (mode);
7490 int regno;
7491
7492 /* Vector types deserve special treatment because they are polymorphic wrt
7493 their mode, depending upon whether VIS instructions are enabled. */
7494 if (type && TREE_CODE (type) == VECTOR_TYPE)
7495 {
7496 HOST_WIDE_INT size = int_size_in_bytes (type);
7497 gcc_assert ((TARGET_ARCH32 && size <= 8)
7498 || (TARGET_ARCH64 && size <= 32));
7499
7500 if (mode == BLKmode)
7501 return function_arg_vector_value (size, SPARC_FP_ARG_FIRST);
7502
7503 mclass = MODE_FLOAT;
7504 }
7505
7506 if (TARGET_ARCH64 && type)
7507 {
7508 /* Structures up to 32 bytes in size are returned in registers. */
7509 if (TREE_CODE (type) == RECORD_TYPE)
7510 {
7511 HOST_WIDE_INT size = int_size_in_bytes (type);
7512 gcc_assert (size <= 32);
7513
7514 return function_arg_record_value (type, mode, 0, 1, regbase);
7515 }
7516
7517 /* Unions up to 32 bytes in size are returned in integer registers. */
7518 else if (TREE_CODE (type) == UNION_TYPE)
7519 {
7520 HOST_WIDE_INT size = int_size_in_bytes (type);
7521 gcc_assert (size <= 32);
7522
7523 return function_arg_union_value (size, mode, 0, regbase);
7524 }
7525
7526 /* Objects that require it are returned in FP registers. */
7527 else if (mclass == MODE_FLOAT || mclass == MODE_COMPLEX_FLOAT)
7528 ;
7529
7530 /* All other aggregate types are returned in an integer register in a
7531 mode corresponding to the size of the type. */
7532 else if (AGGREGATE_TYPE_P (type))
7533 {
7534 /* All other aggregate types are passed in an integer register
7535 in a mode corresponding to the size of the type. */
7536 HOST_WIDE_INT size = int_size_in_bytes (type);
7537 gcc_assert (size <= 32);
7538
7539 mode = int_mode_for_size (size * BITS_PER_UNIT, 0).else_blk ();
7540
7541 /* ??? We probably should have made the same ABI change in
7542 3.4.0 as the one we made for unions. The latter was
7543 required by the SCD though, while the former is not
7544 specified, so we favored compatibility and efficiency.
7545
7546 Now we're stuck for aggregates larger than 16 bytes,
7547 because OImode vanished in the meantime. Let's not
7548 try to be unduly clever, and simply follow the ABI
7549 for unions in that case. */
7550 if (mode == BLKmode)
7551 return function_arg_union_value (size, mode, 0, regbase);
7552 else
7553 mclass = MODE_INT;
7554 }
7555
7556 /* We should only have pointer and integer types at this point. This
7557 must match sparc_promote_function_mode. */
7558 else if (mclass == MODE_INT && GET_MODE_SIZE (mode) < UNITS_PER_WORD)
7559 mode = word_mode;
7560 }
7561
7562 /* We should only have pointer and integer types at this point, except with
7563 -freg-struct-return. This must match sparc_promote_function_mode. */
7564 else if (TARGET_ARCH32
7565 && !(type && AGGREGATE_TYPE_P (type))
7566 && mclass == MODE_INT
7567 && GET_MODE_SIZE (mode) < UNITS_PER_WORD)
7568 mode = word_mode;
7569
7570 if ((mclass == MODE_FLOAT || mclass == MODE_COMPLEX_FLOAT) && TARGET_FPU)
7571 regno = SPARC_FP_ARG_FIRST;
7572 else
7573 regno = regbase;
7574
7575 return gen_rtx_REG (mode, regno);
7576 }
7577
7578 /* Handle TARGET_FUNCTION_VALUE.
7579 On the SPARC, the value is found in the first "output" register, but the
7580 called function leaves it in the first "input" register. */
7581
7582 static rtx
7583 sparc_function_value (const_tree valtype,
7584 const_tree fn_decl_or_type ATTRIBUTE_UNUSED,
7585 bool outgoing)
7586 {
7587 return sparc_function_value_1 (valtype, TYPE_MODE (valtype), outgoing);
7588 }
7589
7590 /* Handle TARGET_LIBCALL_VALUE. */
7591
7592 static rtx
7593 sparc_libcall_value (machine_mode mode,
7594 const_rtx fun ATTRIBUTE_UNUSED)
7595 {
7596 return sparc_function_value_1 (NULL_TREE, mode, false);
7597 }
7598
7599 /* Handle FUNCTION_VALUE_REGNO_P.
7600 On the SPARC, the first "output" reg is used for integer values, and the
7601 first floating point register is used for floating point values. */
7602
7603 static bool
7604 sparc_function_value_regno_p (const unsigned int regno)
7605 {
7606 return (regno == 8 || (TARGET_FPU && regno == 32));
7607 }
7608
7609 /* Do what is necessary for `va_start'. We look at the current function
7610 to determine if stdarg or varargs is used and return the address of
7611 the first unnamed parameter. */
7612
7613 static rtx
7614 sparc_builtin_saveregs (void)
7615 {
7616 int first_reg = crtl->args.info.words;
7617 rtx address;
7618 int regno;
7619
7620 for (regno = first_reg; regno < SPARC_INT_ARG_MAX; regno++)
7621 emit_move_insn (gen_rtx_MEM (word_mode,
7622 gen_rtx_PLUS (Pmode,
7623 frame_pointer_rtx,
7624 GEN_INT (FIRST_PARM_OFFSET (0)
7625 + (UNITS_PER_WORD
7626 * regno)))),
7627 gen_rtx_REG (word_mode,
7628 SPARC_INCOMING_INT_ARG_FIRST + regno));
7629
7630 address = gen_rtx_PLUS (Pmode,
7631 frame_pointer_rtx,
7632 GEN_INT (FIRST_PARM_OFFSET (0)
7633 + UNITS_PER_WORD * first_reg));
7634
7635 return address;
7636 }
7637
7638 /* Implement `va_start' for stdarg. */
7639
7640 static void
7641 sparc_va_start (tree valist, rtx nextarg)
7642 {
7643 nextarg = expand_builtin_saveregs ();
7644 std_expand_builtin_va_start (valist, nextarg);
7645 }
7646
7647 /* Implement `va_arg' for stdarg. */
7648
7649 static tree
7650 sparc_gimplify_va_arg (tree valist, tree type, gimple_seq *pre_p,
7651 gimple_seq *post_p)
7652 {
7653 HOST_WIDE_INT size, rsize, align;
7654 tree addr, incr;
7655 bool indirect;
7656 tree ptrtype = build_pointer_type (type);
7657
7658 if (pass_by_reference (NULL, TYPE_MODE (type), type, false))
7659 {
7660 indirect = true;
7661 size = rsize = UNITS_PER_WORD;
7662 align = 0;
7663 }
7664 else
7665 {
7666 indirect = false;
7667 size = int_size_in_bytes (type);
7668 rsize = ROUND_UP (size, UNITS_PER_WORD);
7669 align = 0;
7670
7671 if (TARGET_ARCH64)
7672 {
7673 /* For SPARC64, objects requiring 16-byte alignment get it. */
7674 if (TYPE_ALIGN (type) >= 2 * (unsigned) BITS_PER_WORD)
7675 align = 2 * UNITS_PER_WORD;
7676
7677 /* SPARC-V9 ABI states that structures up to 16 bytes in size
7678 are left-justified in their slots. */
7679 if (AGGREGATE_TYPE_P (type))
7680 {
7681 if (size == 0)
7682 size = rsize = UNITS_PER_WORD;
7683 else
7684 size = rsize;
7685 }
7686 }
7687 }
7688
7689 incr = valist;
7690 if (align)
7691 {
7692 incr = fold_build_pointer_plus_hwi (incr, align - 1);
7693 incr = fold_convert (sizetype, incr);
7694 incr = fold_build2 (BIT_AND_EXPR, sizetype, incr,
7695 size_int (-align));
7696 incr = fold_convert (ptr_type_node, incr);
7697 }
7698
7699 gimplify_expr (&incr, pre_p, post_p, is_gimple_val, fb_rvalue);
7700 addr = incr;
7701
7702 if (BYTES_BIG_ENDIAN && size < rsize)
7703 addr = fold_build_pointer_plus_hwi (incr, rsize - size);
7704
7705 if (indirect)
7706 {
7707 addr = fold_convert (build_pointer_type (ptrtype), addr);
7708 addr = build_va_arg_indirect_ref (addr);
7709 }
7710
7711 /* If the address isn't aligned properly for the type, we need a temporary.
7712 FIXME: This is inefficient, usually we can do this in registers. */
7713 else if (align == 0 && TYPE_ALIGN (type) > BITS_PER_WORD)
7714 {
7715 tree tmp = create_tmp_var (type, "va_arg_tmp");
7716 tree dest_addr = build_fold_addr_expr (tmp);
7717 tree copy = build_call_expr (builtin_decl_implicit (BUILT_IN_MEMCPY),
7718 3, dest_addr, addr, size_int (rsize));
7719 TREE_ADDRESSABLE (tmp) = 1;
7720 gimplify_and_add (copy, pre_p);
7721 addr = dest_addr;
7722 }
7723
7724 else
7725 addr = fold_convert (ptrtype, addr);
7726
7727 incr = fold_build_pointer_plus_hwi (incr, rsize);
7728 gimplify_assign (valist, incr, post_p);
7729
7730 return build_va_arg_indirect_ref (addr);
7731 }
7732 \f
7733 /* Implement the TARGET_VECTOR_MODE_SUPPORTED_P target hook.
7734 Specify whether the vector mode is supported by the hardware. */
7735
7736 static bool
7737 sparc_vector_mode_supported_p (machine_mode mode)
7738 {
7739 return TARGET_VIS && VECTOR_MODE_P (mode) ? true : false;
7740 }
7741 \f
7742 /* Implement the TARGET_VECTORIZE_PREFERRED_SIMD_MODE target hook. */
7743
7744 static machine_mode
7745 sparc_preferred_simd_mode (scalar_mode mode)
7746 {
7747 if (TARGET_VIS)
7748 switch (mode)
7749 {
7750 case E_SImode:
7751 return V2SImode;
7752 case E_HImode:
7753 return V4HImode;
7754 case E_QImode:
7755 return V8QImode;
7756
7757 default:;
7758 }
7759
7760 return word_mode;
7761 }
7762 \f
7763 /* Return the string to output an unconditional branch to LABEL, which is
7764 the operand number of the label.
7765
7766 DEST is the destination insn (i.e. the label), INSN is the source. */
7767
7768 const char *
7769 output_ubranch (rtx dest, rtx_insn *insn)
7770 {
7771 static char string[64];
7772 bool v9_form = false;
7773 int delta;
7774 char *p;
7775
7776 /* Even if we are trying to use cbcond for this, evaluate
7777 whether we can use V9 branches as our backup plan. */
7778
7779 delta = 5000000;
7780 if (INSN_ADDRESSES_SET_P ())
7781 delta = (INSN_ADDRESSES (INSN_UID (dest))
7782 - INSN_ADDRESSES (INSN_UID (insn)));
7783
7784 /* Leave some instructions for "slop". */
7785 if (TARGET_V9 && delta >= -260000 && delta < 260000)
7786 v9_form = true;
7787
7788 if (TARGET_CBCOND)
7789 {
7790 bool emit_nop = emit_cbcond_nop (insn);
7791 bool far = false;
7792 const char *rval;
7793
7794 if (delta < -500 || delta > 500)
7795 far = true;
7796
7797 if (far)
7798 {
7799 if (v9_form)
7800 rval = "ba,a,pt\t%%xcc, %l0";
7801 else
7802 rval = "b,a\t%l0";
7803 }
7804 else
7805 {
7806 if (emit_nop)
7807 rval = "cwbe\t%%g0, %%g0, %l0\n\tnop";
7808 else
7809 rval = "cwbe\t%%g0, %%g0, %l0";
7810 }
7811 return rval;
7812 }
7813
7814 if (v9_form)
7815 strcpy (string, "ba%*,pt\t%%xcc, ");
7816 else
7817 strcpy (string, "b%*\t");
7818
7819 p = strchr (string, '\0');
7820 *p++ = '%';
7821 *p++ = 'l';
7822 *p++ = '0';
7823 *p++ = '%';
7824 *p++ = '(';
7825 *p = '\0';
7826
7827 return string;
7828 }
7829
7830 /* Return the string to output a conditional branch to LABEL, which is
7831 the operand number of the label. OP is the conditional expression.
7832 XEXP (OP, 0) is assumed to be a condition code register (integer or
7833 floating point) and its mode specifies what kind of comparison we made.
7834
7835 DEST is the destination insn (i.e. the label), INSN is the source.
7836
7837 REVERSED is nonzero if we should reverse the sense of the comparison.
7838
7839 ANNUL is nonzero if we should generate an annulling branch. */
7840
7841 const char *
7842 output_cbranch (rtx op, rtx dest, int label, int reversed, int annul,
7843 rtx_insn *insn)
7844 {
7845 static char string[64];
7846 enum rtx_code code = GET_CODE (op);
7847 rtx cc_reg = XEXP (op, 0);
7848 machine_mode mode = GET_MODE (cc_reg);
7849 const char *labelno, *branch;
7850 int spaces = 8, far;
7851 char *p;
7852
7853 /* v9 branches are limited to +-1MB. If it is too far away,
7854 change
7855
7856 bne,pt %xcc, .LC30
7857
7858 to
7859
7860 be,pn %xcc, .+12
7861 nop
7862 ba .LC30
7863
7864 and
7865
7866 fbne,a,pn %fcc2, .LC29
7867
7868 to
7869
7870 fbe,pt %fcc2, .+16
7871 nop
7872 ba .LC29 */
7873
7874 far = TARGET_V9 && (get_attr_length (insn) >= 3);
7875 if (reversed ^ far)
7876 {
7877 /* Reversal of FP compares takes care -- an ordered compare
7878 becomes an unordered compare and vice versa. */
7879 if (mode == CCFPmode || mode == CCFPEmode)
7880 code = reverse_condition_maybe_unordered (code);
7881 else
7882 code = reverse_condition (code);
7883 }
7884
7885 /* Start by writing the branch condition. */
7886 if (mode == CCFPmode || mode == CCFPEmode)
7887 {
7888 switch (code)
7889 {
7890 case NE:
7891 branch = "fbne";
7892 break;
7893 case EQ:
7894 branch = "fbe";
7895 break;
7896 case GE:
7897 branch = "fbge";
7898 break;
7899 case GT:
7900 branch = "fbg";
7901 break;
7902 case LE:
7903 branch = "fble";
7904 break;
7905 case LT:
7906 branch = "fbl";
7907 break;
7908 case UNORDERED:
7909 branch = "fbu";
7910 break;
7911 case ORDERED:
7912 branch = "fbo";
7913 break;
7914 case UNGT:
7915 branch = "fbug";
7916 break;
7917 case UNLT:
7918 branch = "fbul";
7919 break;
7920 case UNEQ:
7921 branch = "fbue";
7922 break;
7923 case UNGE:
7924 branch = "fbuge";
7925 break;
7926 case UNLE:
7927 branch = "fbule";
7928 break;
7929 case LTGT:
7930 branch = "fblg";
7931 break;
7932 default:
7933 gcc_unreachable ();
7934 }
7935
7936 /* ??? !v9: FP branches cannot be preceded by another floating point
7937 insn. Because there is currently no concept of pre-delay slots,
7938 we can fix this only by always emitting a nop before a floating
7939 point branch. */
7940
7941 string[0] = '\0';
7942 if (! TARGET_V9)
7943 strcpy (string, "nop\n\t");
7944 strcat (string, branch);
7945 }
7946 else
7947 {
7948 switch (code)
7949 {
7950 case NE:
7951 if (mode == CCVmode || mode == CCXVmode)
7952 branch = "bvs";
7953 else
7954 branch = "bne";
7955 break;
7956 case EQ:
7957 if (mode == CCVmode || mode == CCXVmode)
7958 branch = "bvc";
7959 else
7960 branch = "be";
7961 break;
7962 case GE:
7963 if (mode == CCNZmode || mode == CCXNZmode)
7964 branch = "bpos";
7965 else
7966 branch = "bge";
7967 break;
7968 case GT:
7969 branch = "bg";
7970 break;
7971 case LE:
7972 branch = "ble";
7973 break;
7974 case LT:
7975 if (mode == CCNZmode || mode == CCXNZmode)
7976 branch = "bneg";
7977 else
7978 branch = "bl";
7979 break;
7980 case GEU:
7981 branch = "bgeu";
7982 break;
7983 case GTU:
7984 branch = "bgu";
7985 break;
7986 case LEU:
7987 branch = "bleu";
7988 break;
7989 case LTU:
7990 branch = "blu";
7991 break;
7992 default:
7993 gcc_unreachable ();
7994 }
7995 strcpy (string, branch);
7996 }
7997 spaces -= strlen (branch);
7998 p = strchr (string, '\0');
7999
8000 /* Now add the annulling, the label, and a possible noop. */
8001 if (annul && ! far)
8002 {
8003 strcpy (p, ",a");
8004 p += 2;
8005 spaces -= 2;
8006 }
8007
8008 if (TARGET_V9)
8009 {
8010 rtx note;
8011 int v8 = 0;
8012
8013 if (! far && insn && INSN_ADDRESSES_SET_P ())
8014 {
8015 int delta = (INSN_ADDRESSES (INSN_UID (dest))
8016 - INSN_ADDRESSES (INSN_UID (insn)));
8017 /* Leave some instructions for "slop". */
8018 if (delta < -260000 || delta >= 260000)
8019 v8 = 1;
8020 }
8021
8022 switch (mode)
8023 {
8024 case E_CCmode:
8025 case E_CCNZmode:
8026 case E_CCCmode:
8027 case E_CCVmode:
8028 labelno = "%%icc, ";
8029 if (v8)
8030 labelno = "";
8031 break;
8032 case E_CCXmode:
8033 case E_CCXNZmode:
8034 case E_CCXCmode:
8035 case E_CCXVmode:
8036 labelno = "%%xcc, ";
8037 gcc_assert (!v8);
8038 break;
8039 case E_CCFPmode:
8040 case E_CCFPEmode:
8041 {
8042 static char v9_fcc_labelno[] = "%%fccX, ";
8043 /* Set the char indicating the number of the fcc reg to use. */
8044 v9_fcc_labelno[5] = REGNO (cc_reg) - SPARC_FIRST_V9_FCC_REG + '0';
8045 labelno = v9_fcc_labelno;
8046 if (v8)
8047 {
8048 gcc_assert (REGNO (cc_reg) == SPARC_FCC_REG);
8049 labelno = "";
8050 }
8051 }
8052 break;
8053 default:
8054 gcc_unreachable ();
8055 }
8056
8057 if (*labelno && insn && (note = find_reg_note (insn, REG_BR_PROB, NULL_RTX)))
8058 {
8059 strcpy (p,
8060 ((profile_probability::from_reg_br_prob_note (XINT (note, 0))
8061 >= profile_probability::even ()) ^ far)
8062 ? ",pt" : ",pn");
8063 p += 3;
8064 spaces -= 3;
8065 }
8066 }
8067 else
8068 labelno = "";
8069
8070 if (spaces > 0)
8071 *p++ = '\t';
8072 else
8073 *p++ = ' ';
8074 strcpy (p, labelno);
8075 p = strchr (p, '\0');
8076 if (far)
8077 {
8078 strcpy (p, ".+12\n\t nop\n\tb\t");
8079 /* Skip the next insn if requested or
8080 if we know that it will be a nop. */
8081 if (annul || ! final_sequence)
8082 p[3] = '6';
8083 p += 14;
8084 }
8085 *p++ = '%';
8086 *p++ = 'l';
8087 *p++ = label + '0';
8088 *p++ = '%';
8089 *p++ = '#';
8090 *p = '\0';
8091
8092 return string;
8093 }
8094
8095 /* Emit a library call comparison between floating point X and Y.
8096 COMPARISON is the operator to compare with (EQ, NE, GT, etc).
8097 Return the new operator to be used in the comparison sequence.
8098
8099 TARGET_ARCH64 uses _Qp_* functions, which use pointers to TFmode
8100 values as arguments instead of the TFmode registers themselves,
8101 that's why we cannot call emit_float_lib_cmp. */
8102
8103 rtx
8104 sparc_emit_float_lib_cmp (rtx x, rtx y, enum rtx_code comparison)
8105 {
8106 const char *qpfunc;
8107 rtx slot0, slot1, result, tem, tem2, libfunc;
8108 machine_mode mode;
8109 enum rtx_code new_comparison;
8110
8111 switch (comparison)
8112 {
8113 case EQ:
8114 qpfunc = (TARGET_ARCH64 ? "_Qp_feq" : "_Q_feq");
8115 break;
8116
8117 case NE:
8118 qpfunc = (TARGET_ARCH64 ? "_Qp_fne" : "_Q_fne");
8119 break;
8120
8121 case GT:
8122 qpfunc = (TARGET_ARCH64 ? "_Qp_fgt" : "_Q_fgt");
8123 break;
8124
8125 case GE:
8126 qpfunc = (TARGET_ARCH64 ? "_Qp_fge" : "_Q_fge");
8127 break;
8128
8129 case LT:
8130 qpfunc = (TARGET_ARCH64 ? "_Qp_flt" : "_Q_flt");
8131 break;
8132
8133 case LE:
8134 qpfunc = (TARGET_ARCH64 ? "_Qp_fle" : "_Q_fle");
8135 break;
8136
8137 case ORDERED:
8138 case UNORDERED:
8139 case UNGT:
8140 case UNLT:
8141 case UNEQ:
8142 case UNGE:
8143 case UNLE:
8144 case LTGT:
8145 qpfunc = (TARGET_ARCH64 ? "_Qp_cmp" : "_Q_cmp");
8146 break;
8147
8148 default:
8149 gcc_unreachable ();
8150 }
8151
8152 if (TARGET_ARCH64)
8153 {
8154 if (MEM_P (x))
8155 {
8156 tree expr = MEM_EXPR (x);
8157 if (expr)
8158 mark_addressable (expr);
8159 slot0 = x;
8160 }
8161 else
8162 {
8163 slot0 = assign_stack_temp (TFmode, GET_MODE_SIZE(TFmode));
8164 emit_move_insn (slot0, x);
8165 }
8166
8167 if (MEM_P (y))
8168 {
8169 tree expr = MEM_EXPR (y);
8170 if (expr)
8171 mark_addressable (expr);
8172 slot1 = y;
8173 }
8174 else
8175 {
8176 slot1 = assign_stack_temp (TFmode, GET_MODE_SIZE(TFmode));
8177 emit_move_insn (slot1, y);
8178 }
8179
8180 libfunc = gen_rtx_SYMBOL_REF (Pmode, qpfunc);
8181 emit_library_call (libfunc, LCT_NORMAL,
8182 DImode,
8183 XEXP (slot0, 0), Pmode,
8184 XEXP (slot1, 0), Pmode);
8185 mode = DImode;
8186 }
8187 else
8188 {
8189 libfunc = gen_rtx_SYMBOL_REF (Pmode, qpfunc);
8190 emit_library_call (libfunc, LCT_NORMAL,
8191 SImode,
8192 x, TFmode, y, TFmode);
8193 mode = SImode;
8194 }
8195
8196
8197 /* Immediately move the result of the libcall into a pseudo
8198 register so reload doesn't clobber the value if it needs
8199 the return register for a spill reg. */
8200 result = gen_reg_rtx (mode);
8201 emit_move_insn (result, hard_libcall_value (mode, libfunc));
8202
8203 switch (comparison)
8204 {
8205 default:
8206 return gen_rtx_NE (VOIDmode, result, const0_rtx);
8207 case ORDERED:
8208 case UNORDERED:
8209 new_comparison = (comparison == UNORDERED ? EQ : NE);
8210 return gen_rtx_fmt_ee (new_comparison, VOIDmode, result, GEN_INT(3));
8211 case UNGT:
8212 case UNGE:
8213 new_comparison = (comparison == UNGT ? GT : NE);
8214 return gen_rtx_fmt_ee (new_comparison, VOIDmode, result, const1_rtx);
8215 case UNLE:
8216 return gen_rtx_NE (VOIDmode, result, const2_rtx);
8217 case UNLT:
8218 tem = gen_reg_rtx (mode);
8219 if (TARGET_ARCH32)
8220 emit_insn (gen_andsi3 (tem, result, const1_rtx));
8221 else
8222 emit_insn (gen_anddi3 (tem, result, const1_rtx));
8223 return gen_rtx_NE (VOIDmode, tem, const0_rtx);
8224 case UNEQ:
8225 case LTGT:
8226 tem = gen_reg_rtx (mode);
8227 if (TARGET_ARCH32)
8228 emit_insn (gen_addsi3 (tem, result, const1_rtx));
8229 else
8230 emit_insn (gen_adddi3 (tem, result, const1_rtx));
8231 tem2 = gen_reg_rtx (mode);
8232 if (TARGET_ARCH32)
8233 emit_insn (gen_andsi3 (tem2, tem, const2_rtx));
8234 else
8235 emit_insn (gen_anddi3 (tem2, tem, const2_rtx));
8236 new_comparison = (comparison == UNEQ ? EQ : NE);
8237 return gen_rtx_fmt_ee (new_comparison, VOIDmode, tem2, const0_rtx);
8238 }
8239
8240 gcc_unreachable ();
8241 }
8242
8243 /* Generate an unsigned DImode to FP conversion. This is the same code
8244 optabs would emit if we didn't have TFmode patterns. */
8245
8246 void
8247 sparc_emit_floatunsdi (rtx *operands, machine_mode mode)
8248 {
8249 rtx i0, i1, f0, in, out;
8250
8251 out = operands[0];
8252 in = force_reg (DImode, operands[1]);
8253 rtx_code_label *neglab = gen_label_rtx ();
8254 rtx_code_label *donelab = gen_label_rtx ();
8255 i0 = gen_reg_rtx (DImode);
8256 i1 = gen_reg_rtx (DImode);
8257 f0 = gen_reg_rtx (mode);
8258
8259 emit_cmp_and_jump_insns (in, const0_rtx, LT, const0_rtx, DImode, 0, neglab);
8260
8261 emit_insn (gen_rtx_SET (out, gen_rtx_FLOAT (mode, in)));
8262 emit_jump_insn (gen_jump (donelab));
8263 emit_barrier ();
8264
8265 emit_label (neglab);
8266
8267 emit_insn (gen_lshrdi3 (i0, in, const1_rtx));
8268 emit_insn (gen_anddi3 (i1, in, const1_rtx));
8269 emit_insn (gen_iordi3 (i0, i0, i1));
8270 emit_insn (gen_rtx_SET (f0, gen_rtx_FLOAT (mode, i0)));
8271 emit_insn (gen_rtx_SET (out, gen_rtx_PLUS (mode, f0, f0)));
8272
8273 emit_label (donelab);
8274 }
8275
8276 /* Generate an FP to unsigned DImode conversion. This is the same code
8277 optabs would emit if we didn't have TFmode patterns. */
8278
8279 void
8280 sparc_emit_fixunsdi (rtx *operands, machine_mode mode)
8281 {
8282 rtx i0, i1, f0, in, out, limit;
8283
8284 out = operands[0];
8285 in = force_reg (mode, operands[1]);
8286 rtx_code_label *neglab = gen_label_rtx ();
8287 rtx_code_label *donelab = gen_label_rtx ();
8288 i0 = gen_reg_rtx (DImode);
8289 i1 = gen_reg_rtx (DImode);
8290 limit = gen_reg_rtx (mode);
8291 f0 = gen_reg_rtx (mode);
8292
8293 emit_move_insn (limit,
8294 const_double_from_real_value (
8295 REAL_VALUE_ATOF ("9223372036854775808.0", mode), mode));
8296 emit_cmp_and_jump_insns (in, limit, GE, NULL_RTX, mode, 0, neglab);
8297
8298 emit_insn (gen_rtx_SET (out,
8299 gen_rtx_FIX (DImode, gen_rtx_FIX (mode, in))));
8300 emit_jump_insn (gen_jump (donelab));
8301 emit_barrier ();
8302
8303 emit_label (neglab);
8304
8305 emit_insn (gen_rtx_SET (f0, gen_rtx_MINUS (mode, in, limit)));
8306 emit_insn (gen_rtx_SET (i0,
8307 gen_rtx_FIX (DImode, gen_rtx_FIX (mode, f0))));
8308 emit_insn (gen_movdi (i1, const1_rtx));
8309 emit_insn (gen_ashldi3 (i1, i1, GEN_INT (63)));
8310 emit_insn (gen_xordi3 (out, i0, i1));
8311
8312 emit_label (donelab);
8313 }
8314
8315 /* Return the string to output a compare and branch instruction to DEST.
8316 DEST is the destination insn (i.e. the label), INSN is the source,
8317 and OP is the conditional expression. */
8318
8319 const char *
8320 output_cbcond (rtx op, rtx dest, rtx_insn *insn)
8321 {
8322 machine_mode mode = GET_MODE (XEXP (op, 0));
8323 enum rtx_code code = GET_CODE (op);
8324 const char *cond_str, *tmpl;
8325 int far, emit_nop, len;
8326 static char string[64];
8327 char size_char;
8328
8329 /* Compare and Branch is limited to +-2KB. If it is too far away,
8330 change
8331
8332 cxbne X, Y, .LC30
8333
8334 to
8335
8336 cxbe X, Y, .+16
8337 nop
8338 ba,pt xcc, .LC30
8339 nop */
8340
8341 len = get_attr_length (insn);
8342
8343 far = len == 4;
8344 emit_nop = len == 2;
8345
8346 if (far)
8347 code = reverse_condition (code);
8348
8349 size_char = ((mode == SImode) ? 'w' : 'x');
8350
8351 switch (code)
8352 {
8353 case NE:
8354 cond_str = "ne";
8355 break;
8356
8357 case EQ:
8358 cond_str = "e";
8359 break;
8360
8361 case GE:
8362 cond_str = "ge";
8363 break;
8364
8365 case GT:
8366 cond_str = "g";
8367 break;
8368
8369 case LE:
8370 cond_str = "le";
8371 break;
8372
8373 case LT:
8374 cond_str = "l";
8375 break;
8376
8377 case GEU:
8378 cond_str = "cc";
8379 break;
8380
8381 case GTU:
8382 cond_str = "gu";
8383 break;
8384
8385 case LEU:
8386 cond_str = "leu";
8387 break;
8388
8389 case LTU:
8390 cond_str = "cs";
8391 break;
8392
8393 default:
8394 gcc_unreachable ();
8395 }
8396
8397 if (far)
8398 {
8399 int veryfar = 1, delta;
8400
8401 if (INSN_ADDRESSES_SET_P ())
8402 {
8403 delta = (INSN_ADDRESSES (INSN_UID (dest))
8404 - INSN_ADDRESSES (INSN_UID (insn)));
8405 /* Leave some instructions for "slop". */
8406 if (delta >= -260000 && delta < 260000)
8407 veryfar = 0;
8408 }
8409
8410 if (veryfar)
8411 tmpl = "c%cb%s\t%%1, %%2, .+16\n\tnop\n\tb\t%%3\n\tnop";
8412 else
8413 tmpl = "c%cb%s\t%%1, %%2, .+16\n\tnop\n\tba,pt\t%%%%xcc, %%3\n\tnop";
8414 }
8415 else
8416 {
8417 if (emit_nop)
8418 tmpl = "c%cb%s\t%%1, %%2, %%3\n\tnop";
8419 else
8420 tmpl = "c%cb%s\t%%1, %%2, %%3";
8421 }
8422
8423 snprintf (string, sizeof(string), tmpl, size_char, cond_str);
8424
8425 return string;
8426 }
8427
8428 /* Return the string to output a conditional branch to LABEL, testing
8429 register REG. LABEL is the operand number of the label; REG is the
8430 operand number of the reg. OP is the conditional expression. The mode
8431 of REG says what kind of comparison we made.
8432
8433 DEST is the destination insn (i.e. the label), INSN is the source.
8434
8435 REVERSED is nonzero if we should reverse the sense of the comparison.
8436
8437 ANNUL is nonzero if we should generate an annulling branch. */
8438
8439 const char *
8440 output_v9branch (rtx op, rtx dest, int reg, int label, int reversed,
8441 int annul, rtx_insn *insn)
8442 {
8443 static char string[64];
8444 enum rtx_code code = GET_CODE (op);
8445 machine_mode mode = GET_MODE (XEXP (op, 0));
8446 rtx note;
8447 int far;
8448 char *p;
8449
8450 /* branch on register are limited to +-128KB. If it is too far away,
8451 change
8452
8453 brnz,pt %g1, .LC30
8454
8455 to
8456
8457 brz,pn %g1, .+12
8458 nop
8459 ba,pt %xcc, .LC30
8460
8461 and
8462
8463 brgez,a,pn %o1, .LC29
8464
8465 to
8466
8467 brlz,pt %o1, .+16
8468 nop
8469 ba,pt %xcc, .LC29 */
8470
8471 far = get_attr_length (insn) >= 3;
8472
8473 /* If not floating-point or if EQ or NE, we can just reverse the code. */
8474 if (reversed ^ far)
8475 code = reverse_condition (code);
8476
8477 /* Only 64-bit versions of these instructions exist. */
8478 gcc_assert (mode == DImode);
8479
8480 /* Start by writing the branch condition. */
8481
8482 switch (code)
8483 {
8484 case NE:
8485 strcpy (string, "brnz");
8486 break;
8487
8488 case EQ:
8489 strcpy (string, "brz");
8490 break;
8491
8492 case GE:
8493 strcpy (string, "brgez");
8494 break;
8495
8496 case LT:
8497 strcpy (string, "brlz");
8498 break;
8499
8500 case LE:
8501 strcpy (string, "brlez");
8502 break;
8503
8504 case GT:
8505 strcpy (string, "brgz");
8506 break;
8507
8508 default:
8509 gcc_unreachable ();
8510 }
8511
8512 p = strchr (string, '\0');
8513
8514 /* Now add the annulling, reg, label, and nop. */
8515 if (annul && ! far)
8516 {
8517 strcpy (p, ",a");
8518 p += 2;
8519 }
8520
8521 if (insn && (note = find_reg_note (insn, REG_BR_PROB, NULL_RTX)))
8522 {
8523 strcpy (p,
8524 ((profile_probability::from_reg_br_prob_note (XINT (note, 0))
8525 >= profile_probability::even ()) ^ far)
8526 ? ",pt" : ",pn");
8527 p += 3;
8528 }
8529
8530 *p = p < string + 8 ? '\t' : ' ';
8531 p++;
8532 *p++ = '%';
8533 *p++ = '0' + reg;
8534 *p++ = ',';
8535 *p++ = ' ';
8536 if (far)
8537 {
8538 int veryfar = 1, delta;
8539
8540 if (INSN_ADDRESSES_SET_P ())
8541 {
8542 delta = (INSN_ADDRESSES (INSN_UID (dest))
8543 - INSN_ADDRESSES (INSN_UID (insn)));
8544 /* Leave some instructions for "slop". */
8545 if (delta >= -260000 && delta < 260000)
8546 veryfar = 0;
8547 }
8548
8549 strcpy (p, ".+12\n\t nop\n\t");
8550 /* Skip the next insn if requested or
8551 if we know that it will be a nop. */
8552 if (annul || ! final_sequence)
8553 p[3] = '6';
8554 p += 12;
8555 if (veryfar)
8556 {
8557 strcpy (p, "b\t");
8558 p += 2;
8559 }
8560 else
8561 {
8562 strcpy (p, "ba,pt\t%%xcc, ");
8563 p += 13;
8564 }
8565 }
8566 *p++ = '%';
8567 *p++ = 'l';
8568 *p++ = '0' + label;
8569 *p++ = '%';
8570 *p++ = '#';
8571 *p = '\0';
8572
8573 return string;
8574 }
8575
8576 /* Return 1, if any of the registers of the instruction are %l[0-7] or %o[0-7].
8577 Such instructions cannot be used in the delay slot of return insn on v9.
8578 If TEST is 0, also rename all %i[0-7] registers to their %o[0-7] counterparts.
8579 */
8580
8581 static int
8582 epilogue_renumber (register rtx *where, int test)
8583 {
8584 register const char *fmt;
8585 register int i;
8586 register enum rtx_code code;
8587
8588 if (*where == 0)
8589 return 0;
8590
8591 code = GET_CODE (*where);
8592
8593 switch (code)
8594 {
8595 case REG:
8596 if (REGNO (*where) >= 8 && REGNO (*where) < 24) /* oX or lX */
8597 return 1;
8598 if (! test && REGNO (*where) >= 24 && REGNO (*where) < 32)
8599 *where = gen_rtx_REG (GET_MODE (*where), OUTGOING_REGNO (REGNO(*where)));
8600 /* fallthrough */
8601 case SCRATCH:
8602 case CC0:
8603 case PC:
8604 case CONST_INT:
8605 case CONST_WIDE_INT:
8606 case CONST_DOUBLE:
8607 return 0;
8608
8609 /* Do not replace the frame pointer with the stack pointer because
8610 it can cause the delayed instruction to load below the stack.
8611 This occurs when instructions like:
8612
8613 (set (reg/i:SI 24 %i0)
8614 (mem/f:SI (plus:SI (reg/f:SI 30 %fp)
8615 (const_int -20 [0xffffffec])) 0))
8616
8617 are in the return delayed slot. */
8618 case PLUS:
8619 if (GET_CODE (XEXP (*where, 0)) == REG
8620 && REGNO (XEXP (*where, 0)) == HARD_FRAME_POINTER_REGNUM
8621 && (GET_CODE (XEXP (*where, 1)) != CONST_INT
8622 || INTVAL (XEXP (*where, 1)) < SPARC_STACK_BIAS))
8623 return 1;
8624 break;
8625
8626 case MEM:
8627 if (SPARC_STACK_BIAS
8628 && GET_CODE (XEXP (*where, 0)) == REG
8629 && REGNO (XEXP (*where, 0)) == HARD_FRAME_POINTER_REGNUM)
8630 return 1;
8631 break;
8632
8633 default:
8634 break;
8635 }
8636
8637 fmt = GET_RTX_FORMAT (code);
8638
8639 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
8640 {
8641 if (fmt[i] == 'E')
8642 {
8643 register int j;
8644 for (j = XVECLEN (*where, i) - 1; j >= 0; j--)
8645 if (epilogue_renumber (&(XVECEXP (*where, i, j)), test))
8646 return 1;
8647 }
8648 else if (fmt[i] == 'e'
8649 && epilogue_renumber (&(XEXP (*where, i)), test))
8650 return 1;
8651 }
8652 return 0;
8653 }
8654 \f
8655 /* Leaf functions and non-leaf functions have different needs. */
8656
8657 static const int
8658 reg_leaf_alloc_order[] = REG_LEAF_ALLOC_ORDER;
8659
8660 static const int
8661 reg_nonleaf_alloc_order[] = REG_ALLOC_ORDER;
8662
8663 static const int *const reg_alloc_orders[] = {
8664 reg_leaf_alloc_order,
8665 reg_nonleaf_alloc_order};
8666
8667 void
8668 order_regs_for_local_alloc (void)
8669 {
8670 static int last_order_nonleaf = 1;
8671
8672 if (df_regs_ever_live_p (15) != last_order_nonleaf)
8673 {
8674 last_order_nonleaf = !last_order_nonleaf;
8675 memcpy ((char *) reg_alloc_order,
8676 (const char *) reg_alloc_orders[last_order_nonleaf],
8677 FIRST_PSEUDO_REGISTER * sizeof (int));
8678 }
8679 }
8680 \f
8681 /* Return 1 if REG and MEM are legitimate enough to allow the various
8682 MEM<-->REG splits to be run. */
8683
8684 int
8685 sparc_split_reg_mem_legitimate (rtx reg, rtx mem)
8686 {
8687 /* Punt if we are here by mistake. */
8688 gcc_assert (reload_completed);
8689
8690 /* We must have an offsettable memory reference. */
8691 if (!offsettable_memref_p (mem))
8692 return 0;
8693
8694 /* If we have legitimate args for ldd/std, we do not want
8695 the split to happen. */
8696 if ((REGNO (reg) % 2) == 0 && mem_min_alignment (mem, 8))
8697 return 0;
8698
8699 /* Success. */
8700 return 1;
8701 }
8702
8703 /* Split a REG <-- MEM move into a pair of moves in MODE. */
8704
8705 void
8706 sparc_split_reg_mem (rtx dest, rtx src, machine_mode mode)
8707 {
8708 rtx high_part = gen_highpart (mode, dest);
8709 rtx low_part = gen_lowpart (mode, dest);
8710 rtx word0 = adjust_address (src, mode, 0);
8711 rtx word1 = adjust_address (src, mode, 4);
8712
8713 if (reg_overlap_mentioned_p (high_part, word1))
8714 {
8715 emit_move_insn_1 (low_part, word1);
8716 emit_move_insn_1 (high_part, word0);
8717 }
8718 else
8719 {
8720 emit_move_insn_1 (high_part, word0);
8721 emit_move_insn_1 (low_part, word1);
8722 }
8723 }
8724
8725 /* Split a MEM <-- REG move into a pair of moves in MODE. */
8726
8727 void
8728 sparc_split_mem_reg (rtx dest, rtx src, machine_mode mode)
8729 {
8730 rtx word0 = adjust_address (dest, mode, 0);
8731 rtx word1 = adjust_address (dest, mode, 4);
8732 rtx high_part = gen_highpart (mode, src);
8733 rtx low_part = gen_lowpart (mode, src);
8734
8735 emit_move_insn_1 (word0, high_part);
8736 emit_move_insn_1 (word1, low_part);
8737 }
8738
8739 /* Like sparc_split_reg_mem_legitimate but for REG <--> REG moves. */
8740
8741 int
8742 sparc_split_reg_reg_legitimate (rtx reg1, rtx reg2)
8743 {
8744 /* Punt if we are here by mistake. */
8745 gcc_assert (reload_completed);
8746
8747 if (GET_CODE (reg1) == SUBREG)
8748 reg1 = SUBREG_REG (reg1);
8749 if (GET_CODE (reg1) != REG)
8750 return 0;
8751 const int regno1 = REGNO (reg1);
8752
8753 if (GET_CODE (reg2) == SUBREG)
8754 reg2 = SUBREG_REG (reg2);
8755 if (GET_CODE (reg2) != REG)
8756 return 0;
8757 const int regno2 = REGNO (reg2);
8758
8759 if (SPARC_INT_REG_P (regno1) && SPARC_INT_REG_P (regno2))
8760 return 1;
8761
8762 if (TARGET_VIS3)
8763 {
8764 if ((SPARC_INT_REG_P (regno1) && SPARC_FP_REG_P (regno2))
8765 || (SPARC_FP_REG_P (regno1) && SPARC_INT_REG_P (regno2)))
8766 return 1;
8767 }
8768
8769 return 0;
8770 }
8771
8772 /* Split a REG <--> REG move into a pair of moves in MODE. */
8773
8774 void
8775 sparc_split_reg_reg (rtx dest, rtx src, machine_mode mode)
8776 {
8777 rtx dest1 = gen_highpart (mode, dest);
8778 rtx dest2 = gen_lowpart (mode, dest);
8779 rtx src1 = gen_highpart (mode, src);
8780 rtx src2 = gen_lowpart (mode, src);
8781
8782 /* Now emit using the real source and destination we found, swapping
8783 the order if we detect overlap. */
8784 if (reg_overlap_mentioned_p (dest1, src2))
8785 {
8786 emit_move_insn_1 (dest2, src2);
8787 emit_move_insn_1 (dest1, src1);
8788 }
8789 else
8790 {
8791 emit_move_insn_1 (dest1, src1);
8792 emit_move_insn_1 (dest2, src2);
8793 }
8794 }
8795
8796 /* Return 1 if REGNO (reg1) is even and REGNO (reg1) == REGNO (reg2) - 1.
8797 This makes them candidates for using ldd and std insns.
8798
8799 Note reg1 and reg2 *must* be hard registers. */
8800
8801 int
8802 registers_ok_for_ldd_peep (rtx reg1, rtx reg2)
8803 {
8804 /* We might have been passed a SUBREG. */
8805 if (GET_CODE (reg1) != REG || GET_CODE (reg2) != REG)
8806 return 0;
8807
8808 if (REGNO (reg1) % 2 != 0)
8809 return 0;
8810
8811 /* Integer ldd is deprecated in SPARC V9 */
8812 if (TARGET_V9 && SPARC_INT_REG_P (REGNO (reg1)))
8813 return 0;
8814
8815 return (REGNO (reg1) == REGNO (reg2) - 1);
8816 }
8817
8818 /* Return 1 if the addresses in mem1 and mem2 are suitable for use in
8819 an ldd or std insn.
8820
8821 This can only happen when addr1 and addr2, the addresses in mem1
8822 and mem2, are consecutive memory locations (addr1 + 4 == addr2).
8823 addr1 must also be aligned on a 64-bit boundary.
8824
8825 Also iff dependent_reg_rtx is not null it should not be used to
8826 compute the address for mem1, i.e. we cannot optimize a sequence
8827 like:
8828 ld [%o0], %o0
8829 ld [%o0 + 4], %o1
8830 to
8831 ldd [%o0], %o0
8832 nor:
8833 ld [%g3 + 4], %g3
8834 ld [%g3], %g2
8835 to
8836 ldd [%g3], %g2
8837
8838 But, note that the transformation from:
8839 ld [%g2 + 4], %g3
8840 ld [%g2], %g2
8841 to
8842 ldd [%g2], %g2
8843 is perfectly fine. Thus, the peephole2 patterns always pass us
8844 the destination register of the first load, never the second one.
8845
8846 For stores we don't have a similar problem, so dependent_reg_rtx is
8847 NULL_RTX. */
8848
8849 int
8850 mems_ok_for_ldd_peep (rtx mem1, rtx mem2, rtx dependent_reg_rtx)
8851 {
8852 rtx addr1, addr2;
8853 unsigned int reg1;
8854 HOST_WIDE_INT offset1;
8855
8856 /* The mems cannot be volatile. */
8857 if (MEM_VOLATILE_P (mem1) || MEM_VOLATILE_P (mem2))
8858 return 0;
8859
8860 /* MEM1 should be aligned on a 64-bit boundary. */
8861 if (MEM_ALIGN (mem1) < 64)
8862 return 0;
8863
8864 addr1 = XEXP (mem1, 0);
8865 addr2 = XEXP (mem2, 0);
8866
8867 /* Extract a register number and offset (if used) from the first addr. */
8868 if (GET_CODE (addr1) == PLUS)
8869 {
8870 /* If not a REG, return zero. */
8871 if (GET_CODE (XEXP (addr1, 0)) != REG)
8872 return 0;
8873 else
8874 {
8875 reg1 = REGNO (XEXP (addr1, 0));
8876 /* The offset must be constant! */
8877 if (GET_CODE (XEXP (addr1, 1)) != CONST_INT)
8878 return 0;
8879 offset1 = INTVAL (XEXP (addr1, 1));
8880 }
8881 }
8882 else if (GET_CODE (addr1) != REG)
8883 return 0;
8884 else
8885 {
8886 reg1 = REGNO (addr1);
8887 /* This was a simple (mem (reg)) expression. Offset is 0. */
8888 offset1 = 0;
8889 }
8890
8891 /* Make sure the second address is a (mem (plus (reg) (const_int). */
8892 if (GET_CODE (addr2) != PLUS)
8893 return 0;
8894
8895 if (GET_CODE (XEXP (addr2, 0)) != REG
8896 || GET_CODE (XEXP (addr2, 1)) != CONST_INT)
8897 return 0;
8898
8899 if (reg1 != REGNO (XEXP (addr2, 0)))
8900 return 0;
8901
8902 if (dependent_reg_rtx != NULL_RTX && reg1 == REGNO (dependent_reg_rtx))
8903 return 0;
8904
8905 /* The first offset must be evenly divisible by 8 to ensure the
8906 address is 64-bit aligned. */
8907 if (offset1 % 8 != 0)
8908 return 0;
8909
8910 /* The offset for the second addr must be 4 more than the first addr. */
8911 if (INTVAL (XEXP (addr2, 1)) != offset1 + 4)
8912 return 0;
8913
8914 /* All the tests passed. addr1 and addr2 are valid for ldd and std
8915 instructions. */
8916 return 1;
8917 }
8918
8919 /* Return the widened memory access made of MEM1 and MEM2 in MODE. */
8920
8921 rtx
8922 widen_mem_for_ldd_peep (rtx mem1, rtx mem2, machine_mode mode)
8923 {
8924 rtx x = widen_memory_access (mem1, mode, 0);
8925 MEM_NOTRAP_P (x) = MEM_NOTRAP_P (mem1) && MEM_NOTRAP_P (mem2);
8926 return x;
8927 }
8928
8929 /* Return 1 if reg is a pseudo, or is the first register in
8930 a hard register pair. This makes it suitable for use in
8931 ldd and std insns. */
8932
8933 int
8934 register_ok_for_ldd (rtx reg)
8935 {
8936 /* We might have been passed a SUBREG. */
8937 if (!REG_P (reg))
8938 return 0;
8939
8940 if (REGNO (reg) < FIRST_PSEUDO_REGISTER)
8941 return (REGNO (reg) % 2 == 0);
8942
8943 return 1;
8944 }
8945
8946 /* Return 1 if OP, a MEM, has an address which is known to be
8947 aligned to an 8-byte boundary. */
8948
8949 int
8950 memory_ok_for_ldd (rtx op)
8951 {
8952 /* In 64-bit mode, we assume that the address is word-aligned. */
8953 if (TARGET_ARCH32 && !mem_min_alignment (op, 8))
8954 return 0;
8955
8956 if (! can_create_pseudo_p ()
8957 && !strict_memory_address_p (Pmode, XEXP (op, 0)))
8958 return 0;
8959
8960 return 1;
8961 }
8962 \f
8963 /* Implement TARGET_PRINT_OPERAND_PUNCT_VALID_P. */
8964
8965 static bool
8966 sparc_print_operand_punct_valid_p (unsigned char code)
8967 {
8968 if (code == '#'
8969 || code == '*'
8970 || code == '('
8971 || code == ')'
8972 || code == '_'
8973 || code == '&')
8974 return true;
8975
8976 return false;
8977 }
8978
8979 /* Implement TARGET_PRINT_OPERAND.
8980 Print operand X (an rtx) in assembler syntax to file FILE.
8981 CODE is a letter or dot (`z' in `%z0') or 0 if no letter was specified.
8982 For `%' followed by punctuation, CODE is the punctuation and X is null. */
8983
8984 static void
8985 sparc_print_operand (FILE *file, rtx x, int code)
8986 {
8987 const char *s;
8988
8989 switch (code)
8990 {
8991 case '#':
8992 /* Output an insn in a delay slot. */
8993 if (final_sequence)
8994 sparc_indent_opcode = 1;
8995 else
8996 fputs ("\n\t nop", file);
8997 return;
8998 case '*':
8999 /* Output an annul flag if there's nothing for the delay slot and we
9000 are optimizing. This is always used with '(' below.
9001 Sun OS 4.1.1 dbx can't handle an annulled unconditional branch;
9002 this is a dbx bug. So, we only do this when optimizing.
9003 On UltraSPARC, a branch in a delay slot causes a pipeline flush.
9004 Always emit a nop in case the next instruction is a branch. */
9005 if (! final_sequence && (optimize && (int)sparc_cpu < PROCESSOR_V9))
9006 fputs (",a", file);
9007 return;
9008 case '(':
9009 /* Output a 'nop' if there's nothing for the delay slot and we are
9010 not optimizing. This is always used with '*' above. */
9011 if (! final_sequence && ! (optimize && (int)sparc_cpu < PROCESSOR_V9))
9012 fputs ("\n\t nop", file);
9013 else if (final_sequence)
9014 sparc_indent_opcode = 1;
9015 return;
9016 case ')':
9017 /* Output the right displacement from the saved PC on function return.
9018 The caller may have placed an "unimp" insn immediately after the call
9019 so we have to account for it. This insn is used in the 32-bit ABI
9020 when calling a function that returns a non zero-sized structure. The
9021 64-bit ABI doesn't have it. Be careful to have this test be the same
9022 as that for the call. The exception is when sparc_std_struct_return
9023 is enabled, the psABI is followed exactly and the adjustment is made
9024 by the code in sparc_struct_value_rtx. The call emitted is the same
9025 when sparc_std_struct_return is enabled. */
9026 if (!TARGET_ARCH64
9027 && cfun->returns_struct
9028 && !sparc_std_struct_return
9029 && DECL_SIZE (DECL_RESULT (current_function_decl))
9030 && TREE_CODE (DECL_SIZE (DECL_RESULT (current_function_decl)))
9031 == INTEGER_CST
9032 && !integer_zerop (DECL_SIZE (DECL_RESULT (current_function_decl))))
9033 fputs ("12", file);
9034 else
9035 fputc ('8', file);
9036 return;
9037 case '_':
9038 /* Output the Embedded Medium/Anywhere code model base register. */
9039 fputs (EMBMEDANY_BASE_REG, file);
9040 return;
9041 case '&':
9042 /* Print some local dynamic TLS name. */
9043 if (const char *name = get_some_local_dynamic_name ())
9044 assemble_name (file, name);
9045 else
9046 output_operand_lossage ("'%%&' used without any "
9047 "local dynamic TLS references");
9048 return;
9049
9050 case 'Y':
9051 /* Adjust the operand to take into account a RESTORE operation. */
9052 if (GET_CODE (x) == CONST_INT)
9053 break;
9054 else if (GET_CODE (x) != REG)
9055 output_operand_lossage ("invalid %%Y operand");
9056 else if (REGNO (x) < 8)
9057 fputs (reg_names[REGNO (x)], file);
9058 else if (REGNO (x) >= 24 && REGNO (x) < 32)
9059 fputs (reg_names[REGNO (x)-16], file);
9060 else
9061 output_operand_lossage ("invalid %%Y operand");
9062 return;
9063 case 'L':
9064 /* Print out the low order register name of a register pair. */
9065 if (WORDS_BIG_ENDIAN)
9066 fputs (reg_names[REGNO (x)+1], file);
9067 else
9068 fputs (reg_names[REGNO (x)], file);
9069 return;
9070 case 'H':
9071 /* Print out the high order register name of a register pair. */
9072 if (WORDS_BIG_ENDIAN)
9073 fputs (reg_names[REGNO (x)], file);
9074 else
9075 fputs (reg_names[REGNO (x)+1], file);
9076 return;
9077 case 'R':
9078 /* Print out the second register name of a register pair or quad.
9079 I.e., R (%o0) => %o1. */
9080 fputs (reg_names[REGNO (x)+1], file);
9081 return;
9082 case 'S':
9083 /* Print out the third register name of a register quad.
9084 I.e., S (%o0) => %o2. */
9085 fputs (reg_names[REGNO (x)+2], file);
9086 return;
9087 case 'T':
9088 /* Print out the fourth register name of a register quad.
9089 I.e., T (%o0) => %o3. */
9090 fputs (reg_names[REGNO (x)+3], file);
9091 return;
9092 case 'x':
9093 /* Print a condition code register. */
9094 if (REGNO (x) == SPARC_ICC_REG)
9095 {
9096 switch (GET_MODE (x))
9097 {
9098 case E_CCmode:
9099 case E_CCNZmode:
9100 case E_CCCmode:
9101 case E_CCVmode:
9102 s = "%icc";
9103 break;
9104 case E_CCXmode:
9105 case E_CCXNZmode:
9106 case E_CCXCmode:
9107 case E_CCXVmode:
9108 s = "%xcc";
9109 break;
9110 default:
9111 gcc_unreachable ();
9112 }
9113 fputs (s, file);
9114 }
9115 else
9116 /* %fccN register */
9117 fputs (reg_names[REGNO (x)], file);
9118 return;
9119 case 'm':
9120 /* Print the operand's address only. */
9121 output_address (GET_MODE (x), XEXP (x, 0));
9122 return;
9123 case 'r':
9124 /* In this case we need a register. Use %g0 if the
9125 operand is const0_rtx. */
9126 if (x == const0_rtx
9127 || (GET_MODE (x) != VOIDmode && x == CONST0_RTX (GET_MODE (x))))
9128 {
9129 fputs ("%g0", file);
9130 return;
9131 }
9132 else
9133 break;
9134
9135 case 'A':
9136 switch (GET_CODE (x))
9137 {
9138 case IOR:
9139 s = "or";
9140 break;
9141 case AND:
9142 s = "and";
9143 break;
9144 case XOR:
9145 s = "xor";
9146 break;
9147 default:
9148 output_operand_lossage ("invalid %%A operand");
9149 s = "";
9150 break;
9151 }
9152 fputs (s, file);
9153 return;
9154
9155 case 'B':
9156 switch (GET_CODE (x))
9157 {
9158 case IOR:
9159 s = "orn";
9160 break;
9161 case AND:
9162 s = "andn";
9163 break;
9164 case XOR:
9165 s = "xnor";
9166 break;
9167 default:
9168 output_operand_lossage ("invalid %%B operand");
9169 s = "";
9170 break;
9171 }
9172 fputs (s, file);
9173 return;
9174
9175 /* This is used by the conditional move instructions. */
9176 case 'C':
9177 {
9178 machine_mode mode = GET_MODE (XEXP (x, 0));
9179 switch (GET_CODE (x))
9180 {
9181 case NE:
9182 if (mode == CCVmode || mode == CCXVmode)
9183 s = "vs";
9184 else
9185 s = "ne";
9186 break;
9187 case EQ:
9188 if (mode == CCVmode || mode == CCXVmode)
9189 s = "vc";
9190 else
9191 s = "e";
9192 break;
9193 case GE:
9194 if (mode == CCNZmode || mode == CCXNZmode)
9195 s = "pos";
9196 else
9197 s = "ge";
9198 break;
9199 case GT:
9200 s = "g";
9201 break;
9202 case LE:
9203 s = "le";
9204 break;
9205 case LT:
9206 if (mode == CCNZmode || mode == CCXNZmode)
9207 s = "neg";
9208 else
9209 s = "l";
9210 break;
9211 case GEU:
9212 s = "geu";
9213 break;
9214 case GTU:
9215 s = "gu";
9216 break;
9217 case LEU:
9218 s = "leu";
9219 break;
9220 case LTU:
9221 s = "lu";
9222 break;
9223 case LTGT:
9224 s = "lg";
9225 break;
9226 case UNORDERED:
9227 s = "u";
9228 break;
9229 case ORDERED:
9230 s = "o";
9231 break;
9232 case UNLT:
9233 s = "ul";
9234 break;
9235 case UNLE:
9236 s = "ule";
9237 break;
9238 case UNGT:
9239 s = "ug";
9240 break;
9241 case UNGE:
9242 s = "uge"
9243 ; break;
9244 case UNEQ:
9245 s = "ue";
9246 break;
9247 default:
9248 output_operand_lossage ("invalid %%C operand");
9249 s = "";
9250 break;
9251 }
9252 fputs (s, file);
9253 return;
9254 }
9255
9256 /* This are used by the movr instruction pattern. */
9257 case 'D':
9258 {
9259 switch (GET_CODE (x))
9260 {
9261 case NE:
9262 s = "ne";
9263 break;
9264 case EQ:
9265 s = "e";
9266 break;
9267 case GE:
9268 s = "gez";
9269 break;
9270 case LT:
9271 s = "lz";
9272 break;
9273 case LE:
9274 s = "lez";
9275 break;
9276 case GT:
9277 s = "gz";
9278 break;
9279 default:
9280 output_operand_lossage ("invalid %%D operand");
9281 s = "";
9282 break;
9283 }
9284 fputs (s, file);
9285 return;
9286 }
9287
9288 case 'b':
9289 {
9290 /* Print a sign-extended character. */
9291 int i = trunc_int_for_mode (INTVAL (x), QImode);
9292 fprintf (file, "%d", i);
9293 return;
9294 }
9295
9296 case 'f':
9297 /* Operand must be a MEM; write its address. */
9298 if (GET_CODE (x) != MEM)
9299 output_operand_lossage ("invalid %%f operand");
9300 output_address (GET_MODE (x), XEXP (x, 0));
9301 return;
9302
9303 case 's':
9304 {
9305 /* Print a sign-extended 32-bit value. */
9306 HOST_WIDE_INT i;
9307 if (GET_CODE(x) == CONST_INT)
9308 i = INTVAL (x);
9309 else
9310 {
9311 output_operand_lossage ("invalid %%s operand");
9312 return;
9313 }
9314 i = trunc_int_for_mode (i, SImode);
9315 fprintf (file, HOST_WIDE_INT_PRINT_DEC, i);
9316 return;
9317 }
9318
9319 case 0:
9320 /* Do nothing special. */
9321 break;
9322
9323 default:
9324 /* Undocumented flag. */
9325 output_operand_lossage ("invalid operand output code");
9326 }
9327
9328 if (GET_CODE (x) == REG)
9329 fputs (reg_names[REGNO (x)], file);
9330 else if (GET_CODE (x) == MEM)
9331 {
9332 fputc ('[', file);
9333 /* Poor Sun assembler doesn't understand absolute addressing. */
9334 if (CONSTANT_P (XEXP (x, 0)))
9335 fputs ("%g0+", file);
9336 output_address (GET_MODE (x), XEXP (x, 0));
9337 fputc (']', file);
9338 }
9339 else if (GET_CODE (x) == HIGH)
9340 {
9341 fputs ("%hi(", file);
9342 output_addr_const (file, XEXP (x, 0));
9343 fputc (')', file);
9344 }
9345 else if (GET_CODE (x) == LO_SUM)
9346 {
9347 sparc_print_operand (file, XEXP (x, 0), 0);
9348 if (TARGET_CM_MEDMID)
9349 fputs ("+%l44(", file);
9350 else
9351 fputs ("+%lo(", file);
9352 output_addr_const (file, XEXP (x, 1));
9353 fputc (')', file);
9354 }
9355 else if (GET_CODE (x) == CONST_DOUBLE)
9356 output_operand_lossage ("floating-point constant not a valid immediate operand");
9357 else
9358 output_addr_const (file, x);
9359 }
9360
9361 /* Implement TARGET_PRINT_OPERAND_ADDRESS. */
9362
9363 static void
9364 sparc_print_operand_address (FILE *file, machine_mode /*mode*/, rtx x)
9365 {
9366 register rtx base, index = 0;
9367 int offset = 0;
9368 register rtx addr = x;
9369
9370 if (REG_P (addr))
9371 fputs (reg_names[REGNO (addr)], file);
9372 else if (GET_CODE (addr) == PLUS)
9373 {
9374 if (CONST_INT_P (XEXP (addr, 0)))
9375 offset = INTVAL (XEXP (addr, 0)), base = XEXP (addr, 1);
9376 else if (CONST_INT_P (XEXP (addr, 1)))
9377 offset = INTVAL (XEXP (addr, 1)), base = XEXP (addr, 0);
9378 else
9379 base = XEXP (addr, 0), index = XEXP (addr, 1);
9380 if (GET_CODE (base) == LO_SUM)
9381 {
9382 gcc_assert (USE_AS_OFFSETABLE_LO10
9383 && TARGET_ARCH64
9384 && ! TARGET_CM_MEDMID);
9385 output_operand (XEXP (base, 0), 0);
9386 fputs ("+%lo(", file);
9387 output_address (VOIDmode, XEXP (base, 1));
9388 fprintf (file, ")+%d", offset);
9389 }
9390 else
9391 {
9392 fputs (reg_names[REGNO (base)], file);
9393 if (index == 0)
9394 fprintf (file, "%+d", offset);
9395 else if (REG_P (index))
9396 fprintf (file, "+%s", reg_names[REGNO (index)]);
9397 else if (GET_CODE (index) == SYMBOL_REF
9398 || GET_CODE (index) == LABEL_REF
9399 || GET_CODE (index) == CONST)
9400 fputc ('+', file), output_addr_const (file, index);
9401 else gcc_unreachable ();
9402 }
9403 }
9404 else if (GET_CODE (addr) == MINUS
9405 && GET_CODE (XEXP (addr, 1)) == LABEL_REF)
9406 {
9407 output_addr_const (file, XEXP (addr, 0));
9408 fputs ("-(", file);
9409 output_addr_const (file, XEXP (addr, 1));
9410 fputs ("-.)", file);
9411 }
9412 else if (GET_CODE (addr) == LO_SUM)
9413 {
9414 output_operand (XEXP (addr, 0), 0);
9415 if (TARGET_CM_MEDMID)
9416 fputs ("+%l44(", file);
9417 else
9418 fputs ("+%lo(", file);
9419 output_address (VOIDmode, XEXP (addr, 1));
9420 fputc (')', file);
9421 }
9422 else if (flag_pic
9423 && GET_CODE (addr) == CONST
9424 && GET_CODE (XEXP (addr, 0)) == MINUS
9425 && GET_CODE (XEXP (XEXP (addr, 0), 1)) == CONST
9426 && GET_CODE (XEXP (XEXP (XEXP (addr, 0), 1), 0)) == MINUS
9427 && XEXP (XEXP (XEXP (XEXP (addr, 0), 1), 0), 1) == pc_rtx)
9428 {
9429 addr = XEXP (addr, 0);
9430 output_addr_const (file, XEXP (addr, 0));
9431 /* Group the args of the second CONST in parenthesis. */
9432 fputs ("-(", file);
9433 /* Skip past the second CONST--it does nothing for us. */
9434 output_addr_const (file, XEXP (XEXP (addr, 1), 0));
9435 /* Close the parenthesis. */
9436 fputc (')', file);
9437 }
9438 else
9439 {
9440 output_addr_const (file, addr);
9441 }
9442 }
9443 \f
9444 /* Target hook for assembling integer objects. The sparc version has
9445 special handling for aligned DI-mode objects. */
9446
9447 static bool
9448 sparc_assemble_integer (rtx x, unsigned int size, int aligned_p)
9449 {
9450 /* ??? We only output .xword's for symbols and only then in environments
9451 where the assembler can handle them. */
9452 if (aligned_p && size == 8 && GET_CODE (x) != CONST_INT)
9453 {
9454 if (TARGET_V9)
9455 {
9456 assemble_integer_with_op ("\t.xword\t", x);
9457 return true;
9458 }
9459 else
9460 {
9461 assemble_aligned_integer (4, const0_rtx);
9462 assemble_aligned_integer (4, x);
9463 return true;
9464 }
9465 }
9466 return default_assemble_integer (x, size, aligned_p);
9467 }
9468 \f
9469 /* Return the value of a code used in the .proc pseudo-op that says
9470 what kind of result this function returns. For non-C types, we pick
9471 the closest C type. */
9472
9473 #ifndef SHORT_TYPE_SIZE
9474 #define SHORT_TYPE_SIZE (BITS_PER_UNIT * 2)
9475 #endif
9476
9477 #ifndef INT_TYPE_SIZE
9478 #define INT_TYPE_SIZE BITS_PER_WORD
9479 #endif
9480
9481 #ifndef LONG_TYPE_SIZE
9482 #define LONG_TYPE_SIZE BITS_PER_WORD
9483 #endif
9484
9485 #ifndef LONG_LONG_TYPE_SIZE
9486 #define LONG_LONG_TYPE_SIZE (BITS_PER_WORD * 2)
9487 #endif
9488
9489 #ifndef FLOAT_TYPE_SIZE
9490 #define FLOAT_TYPE_SIZE BITS_PER_WORD
9491 #endif
9492
9493 #ifndef DOUBLE_TYPE_SIZE
9494 #define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
9495 #endif
9496
9497 #ifndef LONG_DOUBLE_TYPE_SIZE
9498 #define LONG_DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
9499 #endif
9500
9501 unsigned long
9502 sparc_type_code (register tree type)
9503 {
9504 register unsigned long qualifiers = 0;
9505 register unsigned shift;
9506
9507 /* Only the first 30 bits of the qualifier are valid. We must refrain from
9508 setting more, since some assemblers will give an error for this. Also,
9509 we must be careful to avoid shifts of 32 bits or more to avoid getting
9510 unpredictable results. */
9511
9512 for (shift = 6; shift < 30; shift += 2, type = TREE_TYPE (type))
9513 {
9514 switch (TREE_CODE (type))
9515 {
9516 case ERROR_MARK:
9517 return qualifiers;
9518
9519 case ARRAY_TYPE:
9520 qualifiers |= (3 << shift);
9521 break;
9522
9523 case FUNCTION_TYPE:
9524 case METHOD_TYPE:
9525 qualifiers |= (2 << shift);
9526 break;
9527
9528 case POINTER_TYPE:
9529 case REFERENCE_TYPE:
9530 case OFFSET_TYPE:
9531 qualifiers |= (1 << shift);
9532 break;
9533
9534 case RECORD_TYPE:
9535 return (qualifiers | 8);
9536
9537 case UNION_TYPE:
9538 case QUAL_UNION_TYPE:
9539 return (qualifiers | 9);
9540
9541 case ENUMERAL_TYPE:
9542 return (qualifiers | 10);
9543
9544 case VOID_TYPE:
9545 return (qualifiers | 16);
9546
9547 case INTEGER_TYPE:
9548 /* If this is a range type, consider it to be the underlying
9549 type. */
9550 if (TREE_TYPE (type) != 0)
9551 break;
9552
9553 /* Carefully distinguish all the standard types of C,
9554 without messing up if the language is not C. We do this by
9555 testing TYPE_PRECISION and TYPE_UNSIGNED. The old code used to
9556 look at both the names and the above fields, but that's redundant.
9557 Any type whose size is between two C types will be considered
9558 to be the wider of the two types. Also, we do not have a
9559 special code to use for "long long", so anything wider than
9560 long is treated the same. Note that we can't distinguish
9561 between "int" and "long" in this code if they are the same
9562 size, but that's fine, since neither can the assembler. */
9563
9564 if (TYPE_PRECISION (type) <= CHAR_TYPE_SIZE)
9565 return (qualifiers | (TYPE_UNSIGNED (type) ? 12 : 2));
9566
9567 else if (TYPE_PRECISION (type) <= SHORT_TYPE_SIZE)
9568 return (qualifiers | (TYPE_UNSIGNED (type) ? 13 : 3));
9569
9570 else if (TYPE_PRECISION (type) <= INT_TYPE_SIZE)
9571 return (qualifiers | (TYPE_UNSIGNED (type) ? 14 : 4));
9572
9573 else
9574 return (qualifiers | (TYPE_UNSIGNED (type) ? 15 : 5));
9575
9576 case REAL_TYPE:
9577 /* If this is a range type, consider it to be the underlying
9578 type. */
9579 if (TREE_TYPE (type) != 0)
9580 break;
9581
9582 /* Carefully distinguish all the standard types of C,
9583 without messing up if the language is not C. */
9584
9585 if (TYPE_PRECISION (type) == FLOAT_TYPE_SIZE)
9586 return (qualifiers | 6);
9587
9588 else
9589 return (qualifiers | 7);
9590
9591 case COMPLEX_TYPE: /* GNU Fortran COMPLEX type. */
9592 /* ??? We need to distinguish between double and float complex types,
9593 but I don't know how yet because I can't reach this code from
9594 existing front-ends. */
9595 return (qualifiers | 7); /* Who knows? */
9596
9597 case VECTOR_TYPE:
9598 case BOOLEAN_TYPE: /* Boolean truth value type. */
9599 case LANG_TYPE:
9600 case NULLPTR_TYPE:
9601 return qualifiers;
9602
9603 default:
9604 gcc_unreachable (); /* Not a type! */
9605 }
9606 }
9607
9608 return qualifiers;
9609 }
9610 \f
9611 /* Nested function support. */
9612
9613 /* Emit RTL insns to initialize the variable parts of a trampoline.
9614 FNADDR is an RTX for the address of the function's pure code.
9615 CXT is an RTX for the static chain value for the function.
9616
9617 This takes 16 insns: 2 shifts & 2 ands (to split up addresses), 4 sethi
9618 (to load in opcodes), 4 iors (to merge address and opcodes), and 4 writes
9619 (to store insns). This is a bit excessive. Perhaps a different
9620 mechanism would be better here.
9621
9622 Emit enough FLUSH insns to synchronize the data and instruction caches. */
9623
9624 static void
9625 sparc32_initialize_trampoline (rtx m_tramp, rtx fnaddr, rtx cxt)
9626 {
9627 /* SPARC 32-bit trampoline:
9628
9629 sethi %hi(fn), %g1
9630 sethi %hi(static), %g2
9631 jmp %g1+%lo(fn)
9632 or %g2, %lo(static), %g2
9633
9634 SETHI i,r = 00rr rrr1 00ii iiii iiii iiii iiii iiii
9635 JMPL r+i,d = 10dd ddd1 1100 0rrr rr1i iiii iiii iiii
9636 */
9637
9638 emit_move_insn
9639 (adjust_address (m_tramp, SImode, 0),
9640 expand_binop (SImode, ior_optab,
9641 expand_shift (RSHIFT_EXPR, SImode, fnaddr, 10, 0, 1),
9642 GEN_INT (trunc_int_for_mode (0x03000000, SImode)),
9643 NULL_RTX, 1, OPTAB_DIRECT));
9644
9645 emit_move_insn
9646 (adjust_address (m_tramp, SImode, 4),
9647 expand_binop (SImode, ior_optab,
9648 expand_shift (RSHIFT_EXPR, SImode, cxt, 10, 0, 1),
9649 GEN_INT (trunc_int_for_mode (0x05000000, SImode)),
9650 NULL_RTX, 1, OPTAB_DIRECT));
9651
9652 emit_move_insn
9653 (adjust_address (m_tramp, SImode, 8),
9654 expand_binop (SImode, ior_optab,
9655 expand_and (SImode, fnaddr, GEN_INT (0x3ff), NULL_RTX),
9656 GEN_INT (trunc_int_for_mode (0x81c06000, SImode)),
9657 NULL_RTX, 1, OPTAB_DIRECT));
9658
9659 emit_move_insn
9660 (adjust_address (m_tramp, SImode, 12),
9661 expand_binop (SImode, ior_optab,
9662 expand_and (SImode, cxt, GEN_INT (0x3ff), NULL_RTX),
9663 GEN_INT (trunc_int_for_mode (0x8410a000, SImode)),
9664 NULL_RTX, 1, OPTAB_DIRECT));
9665
9666 /* On UltraSPARC a flush flushes an entire cache line. The trampoline is
9667 aligned on a 16 byte boundary so one flush clears it all. */
9668 emit_insn (gen_flushsi (validize_mem (adjust_address (m_tramp, SImode, 0))));
9669 if (sparc_cpu != PROCESSOR_ULTRASPARC
9670 && sparc_cpu != PROCESSOR_ULTRASPARC3
9671 && sparc_cpu != PROCESSOR_NIAGARA
9672 && sparc_cpu != PROCESSOR_NIAGARA2
9673 && sparc_cpu != PROCESSOR_NIAGARA3
9674 && sparc_cpu != PROCESSOR_NIAGARA4
9675 && sparc_cpu != PROCESSOR_NIAGARA7
9676 && sparc_cpu != PROCESSOR_M8)
9677 emit_insn (gen_flushsi (validize_mem (adjust_address (m_tramp, SImode, 8))));
9678
9679 /* Call __enable_execute_stack after writing onto the stack to make sure
9680 the stack address is accessible. */
9681 #ifdef HAVE_ENABLE_EXECUTE_STACK
9682 emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "__enable_execute_stack"),
9683 LCT_NORMAL, VOIDmode, XEXP (m_tramp, 0), Pmode);
9684 #endif
9685
9686 }
9687
9688 /* The 64-bit version is simpler because it makes more sense to load the
9689 values as "immediate" data out of the trampoline. It's also easier since
9690 we can read the PC without clobbering a register. */
9691
9692 static void
9693 sparc64_initialize_trampoline (rtx m_tramp, rtx fnaddr, rtx cxt)
9694 {
9695 /* SPARC 64-bit trampoline:
9696
9697 rd %pc, %g1
9698 ldx [%g1+24], %g5
9699 jmp %g5
9700 ldx [%g1+16], %g5
9701 +16 bytes data
9702 */
9703
9704 emit_move_insn (adjust_address (m_tramp, SImode, 0),
9705 GEN_INT (trunc_int_for_mode (0x83414000, SImode)));
9706 emit_move_insn (adjust_address (m_tramp, SImode, 4),
9707 GEN_INT (trunc_int_for_mode (0xca586018, SImode)));
9708 emit_move_insn (adjust_address (m_tramp, SImode, 8),
9709 GEN_INT (trunc_int_for_mode (0x81c14000, SImode)));
9710 emit_move_insn (adjust_address (m_tramp, SImode, 12),
9711 GEN_INT (trunc_int_for_mode (0xca586010, SImode)));
9712 emit_move_insn (adjust_address (m_tramp, DImode, 16), cxt);
9713 emit_move_insn (adjust_address (m_tramp, DImode, 24), fnaddr);
9714 emit_insn (gen_flushdi (validize_mem (adjust_address (m_tramp, DImode, 0))));
9715
9716 if (sparc_cpu != PROCESSOR_ULTRASPARC
9717 && sparc_cpu != PROCESSOR_ULTRASPARC3
9718 && sparc_cpu != PROCESSOR_NIAGARA
9719 && sparc_cpu != PROCESSOR_NIAGARA2
9720 && sparc_cpu != PROCESSOR_NIAGARA3
9721 && sparc_cpu != PROCESSOR_NIAGARA4
9722 && sparc_cpu != PROCESSOR_NIAGARA7
9723 && sparc_cpu != PROCESSOR_M8)
9724 emit_insn (gen_flushdi (validize_mem (adjust_address (m_tramp, DImode, 8))));
9725
9726 /* Call __enable_execute_stack after writing onto the stack to make sure
9727 the stack address is accessible. */
9728 #ifdef HAVE_ENABLE_EXECUTE_STACK
9729 emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "__enable_execute_stack"),
9730 LCT_NORMAL, VOIDmode, XEXP (m_tramp, 0), Pmode);
9731 #endif
9732 }
9733
9734 /* Worker for TARGET_TRAMPOLINE_INIT. */
9735
9736 static void
9737 sparc_trampoline_init (rtx m_tramp, tree fndecl, rtx cxt)
9738 {
9739 rtx fnaddr = force_reg (Pmode, XEXP (DECL_RTL (fndecl), 0));
9740 cxt = force_reg (Pmode, cxt);
9741 if (TARGET_ARCH64)
9742 sparc64_initialize_trampoline (m_tramp, fnaddr, cxt);
9743 else
9744 sparc32_initialize_trampoline (m_tramp, fnaddr, cxt);
9745 }
9746 \f
9747 /* Adjust the cost of a scheduling dependency. Return the new cost of
9748 a dependency LINK or INSN on DEP_INSN. COST is the current cost. */
9749
9750 static int
9751 supersparc_adjust_cost (rtx_insn *insn, int dep_type, rtx_insn *dep_insn,
9752 int cost)
9753 {
9754 enum attr_type insn_type;
9755
9756 if (recog_memoized (insn) < 0)
9757 return cost;
9758
9759 insn_type = get_attr_type (insn);
9760
9761 if (dep_type == 0)
9762 {
9763 /* Data dependency; DEP_INSN writes a register that INSN reads some
9764 cycles later. */
9765
9766 /* if a load, then the dependence must be on the memory address;
9767 add an extra "cycle". Note that the cost could be two cycles
9768 if the reg was written late in an instruction group; we ca not tell
9769 here. */
9770 if (insn_type == TYPE_LOAD || insn_type == TYPE_FPLOAD)
9771 return cost + 3;
9772
9773 /* Get the delay only if the address of the store is the dependence. */
9774 if (insn_type == TYPE_STORE || insn_type == TYPE_FPSTORE)
9775 {
9776 rtx pat = PATTERN(insn);
9777 rtx dep_pat = PATTERN (dep_insn);
9778
9779 if (GET_CODE (pat) != SET || GET_CODE (dep_pat) != SET)
9780 return cost; /* This should not happen! */
9781
9782 /* The dependency between the two instructions was on the data that
9783 is being stored. Assume that this implies that the address of the
9784 store is not dependent. */
9785 if (rtx_equal_p (SET_DEST (dep_pat), SET_SRC (pat)))
9786 return cost;
9787
9788 return cost + 3; /* An approximation. */
9789 }
9790
9791 /* A shift instruction cannot receive its data from an instruction
9792 in the same cycle; add a one cycle penalty. */
9793 if (insn_type == TYPE_SHIFT)
9794 return cost + 3; /* Split before cascade into shift. */
9795 }
9796 else
9797 {
9798 /* Anti- or output- dependency; DEP_INSN reads/writes a register that
9799 INSN writes some cycles later. */
9800
9801 /* These are only significant for the fpu unit; writing a fp reg before
9802 the fpu has finished with it stalls the processor. */
9803
9804 /* Reusing an integer register causes no problems. */
9805 if (insn_type == TYPE_IALU || insn_type == TYPE_SHIFT)
9806 return 0;
9807 }
9808
9809 return cost;
9810 }
9811
9812 static int
9813 hypersparc_adjust_cost (rtx_insn *insn, int dtype, rtx_insn *dep_insn,
9814 int cost)
9815 {
9816 enum attr_type insn_type, dep_type;
9817 rtx pat = PATTERN(insn);
9818 rtx dep_pat = PATTERN (dep_insn);
9819
9820 if (recog_memoized (insn) < 0 || recog_memoized (dep_insn) < 0)
9821 return cost;
9822
9823 insn_type = get_attr_type (insn);
9824 dep_type = get_attr_type (dep_insn);
9825
9826 switch (dtype)
9827 {
9828 case 0:
9829 /* Data dependency; DEP_INSN writes a register that INSN reads some
9830 cycles later. */
9831
9832 switch (insn_type)
9833 {
9834 case TYPE_STORE:
9835 case TYPE_FPSTORE:
9836 /* Get the delay iff the address of the store is the dependence. */
9837 if (GET_CODE (pat) != SET || GET_CODE (dep_pat) != SET)
9838 return cost;
9839
9840 if (rtx_equal_p (SET_DEST (dep_pat), SET_SRC (pat)))
9841 return cost;
9842 return cost + 3;
9843
9844 case TYPE_LOAD:
9845 case TYPE_SLOAD:
9846 case TYPE_FPLOAD:
9847 /* If a load, then the dependence must be on the memory address. If
9848 the addresses aren't equal, then it might be a false dependency */
9849 if (dep_type == TYPE_STORE || dep_type == TYPE_FPSTORE)
9850 {
9851 if (GET_CODE (pat) != SET || GET_CODE (dep_pat) != SET
9852 || GET_CODE (SET_DEST (dep_pat)) != MEM
9853 || GET_CODE (SET_SRC (pat)) != MEM
9854 || ! rtx_equal_p (XEXP (SET_DEST (dep_pat), 0),
9855 XEXP (SET_SRC (pat), 0)))
9856 return cost + 2;
9857
9858 return cost + 8;
9859 }
9860 break;
9861
9862 case TYPE_BRANCH:
9863 /* Compare to branch latency is 0. There is no benefit from
9864 separating compare and branch. */
9865 if (dep_type == TYPE_COMPARE)
9866 return 0;
9867 /* Floating point compare to branch latency is less than
9868 compare to conditional move. */
9869 if (dep_type == TYPE_FPCMP)
9870 return cost - 1;
9871 break;
9872 default:
9873 break;
9874 }
9875 break;
9876
9877 case REG_DEP_ANTI:
9878 /* Anti-dependencies only penalize the fpu unit. */
9879 if (insn_type == TYPE_IALU || insn_type == TYPE_SHIFT)
9880 return 0;
9881 break;
9882
9883 default:
9884 break;
9885 }
9886
9887 return cost;
9888 }
9889
9890 static int
9891 sparc_adjust_cost (rtx_insn *insn, int dep_type, rtx_insn *dep, int cost,
9892 unsigned int)
9893 {
9894 switch (sparc_cpu)
9895 {
9896 case PROCESSOR_SUPERSPARC:
9897 cost = supersparc_adjust_cost (insn, dep_type, dep, cost);
9898 break;
9899 case PROCESSOR_HYPERSPARC:
9900 case PROCESSOR_SPARCLITE86X:
9901 cost = hypersparc_adjust_cost (insn, dep_type, dep, cost);
9902 break;
9903 default:
9904 break;
9905 }
9906 return cost;
9907 }
9908
9909 static void
9910 sparc_sched_init (FILE *dump ATTRIBUTE_UNUSED,
9911 int sched_verbose ATTRIBUTE_UNUSED,
9912 int max_ready ATTRIBUTE_UNUSED)
9913 {}
9914
9915 static int
9916 sparc_use_sched_lookahead (void)
9917 {
9918 if (sparc_cpu == PROCESSOR_NIAGARA
9919 || sparc_cpu == PROCESSOR_NIAGARA2
9920 || sparc_cpu == PROCESSOR_NIAGARA3)
9921 return 0;
9922 if (sparc_cpu == PROCESSOR_NIAGARA4
9923 || sparc_cpu == PROCESSOR_NIAGARA7
9924 || sparc_cpu == PROCESSOR_M8)
9925 return 2;
9926 if (sparc_cpu == PROCESSOR_ULTRASPARC
9927 || sparc_cpu == PROCESSOR_ULTRASPARC3)
9928 return 4;
9929 if ((1 << sparc_cpu) &
9930 ((1 << PROCESSOR_SUPERSPARC) | (1 << PROCESSOR_HYPERSPARC) |
9931 (1 << PROCESSOR_SPARCLITE86X)))
9932 return 3;
9933 return 0;
9934 }
9935
9936 static int
9937 sparc_issue_rate (void)
9938 {
9939 switch (sparc_cpu)
9940 {
9941 case PROCESSOR_NIAGARA:
9942 case PROCESSOR_NIAGARA2:
9943 case PROCESSOR_NIAGARA3:
9944 default:
9945 return 1;
9946 case PROCESSOR_NIAGARA4:
9947 case PROCESSOR_NIAGARA7:
9948 case PROCESSOR_V9:
9949 /* Assume V9 processors are capable of at least dual-issue. */
9950 return 2;
9951 case PROCESSOR_SUPERSPARC:
9952 return 3;
9953 case PROCESSOR_HYPERSPARC:
9954 case PROCESSOR_SPARCLITE86X:
9955 return 2;
9956 case PROCESSOR_ULTRASPARC:
9957 case PROCESSOR_ULTRASPARC3:
9958 case PROCESSOR_M8:
9959 return 4;
9960 }
9961 }
9962
9963 static int
9964 set_extends (rtx_insn *insn)
9965 {
9966 register rtx pat = PATTERN (insn);
9967
9968 switch (GET_CODE (SET_SRC (pat)))
9969 {
9970 /* Load and some shift instructions zero extend. */
9971 case MEM:
9972 case ZERO_EXTEND:
9973 /* sethi clears the high bits */
9974 case HIGH:
9975 /* LO_SUM is used with sethi. sethi cleared the high
9976 bits and the values used with lo_sum are positive */
9977 case LO_SUM:
9978 /* Store flag stores 0 or 1 */
9979 case LT: case LTU:
9980 case GT: case GTU:
9981 case LE: case LEU:
9982 case GE: case GEU:
9983 case EQ:
9984 case NE:
9985 return 1;
9986 case AND:
9987 {
9988 rtx op0 = XEXP (SET_SRC (pat), 0);
9989 rtx op1 = XEXP (SET_SRC (pat), 1);
9990 if (GET_CODE (op1) == CONST_INT)
9991 return INTVAL (op1) >= 0;
9992 if (GET_CODE (op0) != REG)
9993 return 0;
9994 if (sparc_check_64 (op0, insn) == 1)
9995 return 1;
9996 return (GET_CODE (op1) == REG && sparc_check_64 (op1, insn) == 1);
9997 }
9998 case IOR:
9999 case XOR:
10000 {
10001 rtx op0 = XEXP (SET_SRC (pat), 0);
10002 rtx op1 = XEXP (SET_SRC (pat), 1);
10003 if (GET_CODE (op0) != REG || sparc_check_64 (op0, insn) <= 0)
10004 return 0;
10005 if (GET_CODE (op1) == CONST_INT)
10006 return INTVAL (op1) >= 0;
10007 return (GET_CODE (op1) == REG && sparc_check_64 (op1, insn) == 1);
10008 }
10009 case LSHIFTRT:
10010 return GET_MODE (SET_SRC (pat)) == SImode;
10011 /* Positive integers leave the high bits zero. */
10012 case CONST_INT:
10013 return !(INTVAL (SET_SRC (pat)) & 0x80000000);
10014 case ASHIFTRT:
10015 case SIGN_EXTEND:
10016 return - (GET_MODE (SET_SRC (pat)) == SImode);
10017 case REG:
10018 return sparc_check_64 (SET_SRC (pat), insn);
10019 default:
10020 return 0;
10021 }
10022 }
10023
10024 /* We _ought_ to have only one kind per function, but... */
10025 static GTY(()) rtx sparc_addr_diff_list;
10026 static GTY(()) rtx sparc_addr_list;
10027
10028 void
10029 sparc_defer_case_vector (rtx lab, rtx vec, int diff)
10030 {
10031 vec = gen_rtx_EXPR_LIST (VOIDmode, lab, vec);
10032 if (diff)
10033 sparc_addr_diff_list
10034 = gen_rtx_EXPR_LIST (VOIDmode, vec, sparc_addr_diff_list);
10035 else
10036 sparc_addr_list = gen_rtx_EXPR_LIST (VOIDmode, vec, sparc_addr_list);
10037 }
10038
10039 static void
10040 sparc_output_addr_vec (rtx vec)
10041 {
10042 rtx lab = XEXP (vec, 0), body = XEXP (vec, 1);
10043 int idx, vlen = XVECLEN (body, 0);
10044
10045 #ifdef ASM_OUTPUT_ADDR_VEC_START
10046 ASM_OUTPUT_ADDR_VEC_START (asm_out_file);
10047 #endif
10048
10049 #ifdef ASM_OUTPUT_CASE_LABEL
10050 ASM_OUTPUT_CASE_LABEL (asm_out_file, "L", CODE_LABEL_NUMBER (lab),
10051 NEXT_INSN (lab));
10052 #else
10053 (*targetm.asm_out.internal_label) (asm_out_file, "L", CODE_LABEL_NUMBER (lab));
10054 #endif
10055
10056 for (idx = 0; idx < vlen; idx++)
10057 {
10058 ASM_OUTPUT_ADDR_VEC_ELT
10059 (asm_out_file, CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 0, idx), 0)));
10060 }
10061
10062 #ifdef ASM_OUTPUT_ADDR_VEC_END
10063 ASM_OUTPUT_ADDR_VEC_END (asm_out_file);
10064 #endif
10065 }
10066
10067 static void
10068 sparc_output_addr_diff_vec (rtx vec)
10069 {
10070 rtx lab = XEXP (vec, 0), body = XEXP (vec, 1);
10071 rtx base = XEXP (XEXP (body, 0), 0);
10072 int idx, vlen = XVECLEN (body, 1);
10073
10074 #ifdef ASM_OUTPUT_ADDR_VEC_START
10075 ASM_OUTPUT_ADDR_VEC_START (asm_out_file);
10076 #endif
10077
10078 #ifdef ASM_OUTPUT_CASE_LABEL
10079 ASM_OUTPUT_CASE_LABEL (asm_out_file, "L", CODE_LABEL_NUMBER (lab),
10080 NEXT_INSN (lab));
10081 #else
10082 (*targetm.asm_out.internal_label) (asm_out_file, "L", CODE_LABEL_NUMBER (lab));
10083 #endif
10084
10085 for (idx = 0; idx < vlen; idx++)
10086 {
10087 ASM_OUTPUT_ADDR_DIFF_ELT
10088 (asm_out_file,
10089 body,
10090 CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 1, idx), 0)),
10091 CODE_LABEL_NUMBER (base));
10092 }
10093
10094 #ifdef ASM_OUTPUT_ADDR_VEC_END
10095 ASM_OUTPUT_ADDR_VEC_END (asm_out_file);
10096 #endif
10097 }
10098
10099 static void
10100 sparc_output_deferred_case_vectors (void)
10101 {
10102 rtx t;
10103 int align;
10104
10105 if (sparc_addr_list == NULL_RTX
10106 && sparc_addr_diff_list == NULL_RTX)
10107 return;
10108
10109 /* Align to cache line in the function's code section. */
10110 switch_to_section (current_function_section ());
10111
10112 align = floor_log2 (FUNCTION_BOUNDARY / BITS_PER_UNIT);
10113 if (align > 0)
10114 ASM_OUTPUT_ALIGN (asm_out_file, align);
10115
10116 for (t = sparc_addr_list; t ; t = XEXP (t, 1))
10117 sparc_output_addr_vec (XEXP (t, 0));
10118 for (t = sparc_addr_diff_list; t ; t = XEXP (t, 1))
10119 sparc_output_addr_diff_vec (XEXP (t, 0));
10120
10121 sparc_addr_list = sparc_addr_diff_list = NULL_RTX;
10122 }
10123
10124 /* Return 0 if the high 32 bits of X (the low word of X, if DImode) are
10125 unknown. Return 1 if the high bits are zero, -1 if the register is
10126 sign extended. */
10127 int
10128 sparc_check_64 (rtx x, rtx_insn *insn)
10129 {
10130 /* If a register is set only once it is safe to ignore insns this
10131 code does not know how to handle. The loop will either recognize
10132 the single set and return the correct value or fail to recognize
10133 it and return 0. */
10134 int set_once = 0;
10135 rtx y = x;
10136
10137 gcc_assert (GET_CODE (x) == REG);
10138
10139 if (GET_MODE (x) == DImode)
10140 y = gen_rtx_REG (SImode, REGNO (x) + WORDS_BIG_ENDIAN);
10141
10142 if (flag_expensive_optimizations
10143 && df && DF_REG_DEF_COUNT (REGNO (y)) == 1)
10144 set_once = 1;
10145
10146 if (insn == 0)
10147 {
10148 if (set_once)
10149 insn = get_last_insn_anywhere ();
10150 else
10151 return 0;
10152 }
10153
10154 while ((insn = PREV_INSN (insn)))
10155 {
10156 switch (GET_CODE (insn))
10157 {
10158 case JUMP_INSN:
10159 case NOTE:
10160 break;
10161 case CODE_LABEL:
10162 case CALL_INSN:
10163 default:
10164 if (! set_once)
10165 return 0;
10166 break;
10167 case INSN:
10168 {
10169 rtx pat = PATTERN (insn);
10170 if (GET_CODE (pat) != SET)
10171 return 0;
10172 if (rtx_equal_p (x, SET_DEST (pat)))
10173 return set_extends (insn);
10174 if (y && rtx_equal_p (y, SET_DEST (pat)))
10175 return set_extends (insn);
10176 if (reg_overlap_mentioned_p (SET_DEST (pat), y))
10177 return 0;
10178 }
10179 }
10180 }
10181 return 0;
10182 }
10183
10184 /* Output a wide shift instruction in V8+ mode. INSN is the instruction,
10185 OPERANDS are its operands and OPCODE is the mnemonic to be used. */
10186
10187 const char *
10188 output_v8plus_shift (rtx_insn *insn, rtx *operands, const char *opcode)
10189 {
10190 static char asm_code[60];
10191
10192 /* The scratch register is only required when the destination
10193 register is not a 64-bit global or out register. */
10194 if (which_alternative != 2)
10195 operands[3] = operands[0];
10196
10197 /* We can only shift by constants <= 63. */
10198 if (GET_CODE (operands[2]) == CONST_INT)
10199 operands[2] = GEN_INT (INTVAL (operands[2]) & 0x3f);
10200
10201 if (GET_CODE (operands[1]) == CONST_INT)
10202 {
10203 output_asm_insn ("mov\t%1, %3", operands);
10204 }
10205 else
10206 {
10207 output_asm_insn ("sllx\t%H1, 32, %3", operands);
10208 if (sparc_check_64 (operands[1], insn) <= 0)
10209 output_asm_insn ("srl\t%L1, 0, %L1", operands);
10210 output_asm_insn ("or\t%L1, %3, %3", operands);
10211 }
10212
10213 strcpy (asm_code, opcode);
10214
10215 if (which_alternative != 2)
10216 return strcat (asm_code, "\t%0, %2, %L0\n\tsrlx\t%L0, 32, %H0");
10217 else
10218 return
10219 strcat (asm_code, "\t%3, %2, %3\n\tsrlx\t%3, 32, %H0\n\tmov\t%3, %L0");
10220 }
10221 \f
10222 /* Output rtl to increment the profiler label LABELNO
10223 for profiling a function entry. */
10224
10225 void
10226 sparc_profile_hook (int labelno)
10227 {
10228 char buf[32];
10229 rtx lab, fun;
10230
10231 fun = gen_rtx_SYMBOL_REF (Pmode, MCOUNT_FUNCTION);
10232 if (NO_PROFILE_COUNTERS)
10233 {
10234 emit_library_call (fun, LCT_NORMAL, VOIDmode);
10235 }
10236 else
10237 {
10238 ASM_GENERATE_INTERNAL_LABEL (buf, "LP", labelno);
10239 lab = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (buf));
10240 emit_library_call (fun, LCT_NORMAL, VOIDmode, lab, Pmode);
10241 }
10242 }
10243 \f
10244 #ifdef TARGET_SOLARIS
10245 /* Solaris implementation of TARGET_ASM_NAMED_SECTION. */
10246
10247 static void
10248 sparc_solaris_elf_asm_named_section (const char *name, unsigned int flags,
10249 tree decl ATTRIBUTE_UNUSED)
10250 {
10251 if (HAVE_COMDAT_GROUP && flags & SECTION_LINKONCE)
10252 {
10253 solaris_elf_asm_comdat_section (name, flags, decl);
10254 return;
10255 }
10256
10257 fprintf (asm_out_file, "\t.section\t\"%s\"", name);
10258
10259 if (!(flags & SECTION_DEBUG))
10260 fputs (",#alloc", asm_out_file);
10261 if (flags & SECTION_WRITE)
10262 fputs (",#write", asm_out_file);
10263 if (flags & SECTION_TLS)
10264 fputs (",#tls", asm_out_file);
10265 if (flags & SECTION_CODE)
10266 fputs (",#execinstr", asm_out_file);
10267
10268 if (flags & SECTION_NOTYPE)
10269 ;
10270 else if (flags & SECTION_BSS)
10271 fputs (",#nobits", asm_out_file);
10272 else
10273 fputs (",#progbits", asm_out_file);
10274
10275 fputc ('\n', asm_out_file);
10276 }
10277 #endif /* TARGET_SOLARIS */
10278
10279 /* We do not allow indirect calls to be optimized into sibling calls.
10280
10281 We cannot use sibling calls when delayed branches are disabled
10282 because they will likely require the call delay slot to be filled.
10283
10284 Also, on SPARC 32-bit we cannot emit a sibling call when the
10285 current function returns a structure. This is because the "unimp
10286 after call" convention would cause the callee to return to the
10287 wrong place. The generic code already disallows cases where the
10288 function being called returns a structure.
10289
10290 It may seem strange how this last case could occur. Usually there
10291 is code after the call which jumps to epilogue code which dumps the
10292 return value into the struct return area. That ought to invalidate
10293 the sibling call right? Well, in the C++ case we can end up passing
10294 the pointer to the struct return area to a constructor (which returns
10295 void) and then nothing else happens. Such a sibling call would look
10296 valid without the added check here.
10297
10298 VxWorks PIC PLT entries require the global pointer to be initialized
10299 on entry. We therefore can't emit sibling calls to them. */
10300 static bool
10301 sparc_function_ok_for_sibcall (tree decl, tree exp ATTRIBUTE_UNUSED)
10302 {
10303 return (decl
10304 && flag_delayed_branch
10305 && (TARGET_ARCH64 || ! cfun->returns_struct)
10306 && !(TARGET_VXWORKS_RTP
10307 && flag_pic
10308 && !targetm.binds_local_p (decl)));
10309 }
10310 \f
10311 /* libfunc renaming. */
10312
10313 static void
10314 sparc_init_libfuncs (void)
10315 {
10316 if (TARGET_ARCH32)
10317 {
10318 /* Use the subroutines that Sun's library provides for integer
10319 multiply and divide. The `*' prevents an underscore from
10320 being prepended by the compiler. .umul is a little faster
10321 than .mul. */
10322 set_optab_libfunc (smul_optab, SImode, "*.umul");
10323 set_optab_libfunc (sdiv_optab, SImode, "*.div");
10324 set_optab_libfunc (udiv_optab, SImode, "*.udiv");
10325 set_optab_libfunc (smod_optab, SImode, "*.rem");
10326 set_optab_libfunc (umod_optab, SImode, "*.urem");
10327
10328 /* TFmode arithmetic. These names are part of the SPARC 32bit ABI. */
10329 set_optab_libfunc (add_optab, TFmode, "_Q_add");
10330 set_optab_libfunc (sub_optab, TFmode, "_Q_sub");
10331 set_optab_libfunc (neg_optab, TFmode, "_Q_neg");
10332 set_optab_libfunc (smul_optab, TFmode, "_Q_mul");
10333 set_optab_libfunc (sdiv_optab, TFmode, "_Q_div");
10334
10335 /* We can define the TFmode sqrt optab only if TARGET_FPU. This
10336 is because with soft-float, the SFmode and DFmode sqrt
10337 instructions will be absent, and the compiler will notice and
10338 try to use the TFmode sqrt instruction for calls to the
10339 builtin function sqrt, but this fails. */
10340 if (TARGET_FPU)
10341 set_optab_libfunc (sqrt_optab, TFmode, "_Q_sqrt");
10342
10343 set_optab_libfunc (eq_optab, TFmode, "_Q_feq");
10344 set_optab_libfunc (ne_optab, TFmode, "_Q_fne");
10345 set_optab_libfunc (gt_optab, TFmode, "_Q_fgt");
10346 set_optab_libfunc (ge_optab, TFmode, "_Q_fge");
10347 set_optab_libfunc (lt_optab, TFmode, "_Q_flt");
10348 set_optab_libfunc (le_optab, TFmode, "_Q_fle");
10349
10350 set_conv_libfunc (sext_optab, TFmode, SFmode, "_Q_stoq");
10351 set_conv_libfunc (sext_optab, TFmode, DFmode, "_Q_dtoq");
10352 set_conv_libfunc (trunc_optab, SFmode, TFmode, "_Q_qtos");
10353 set_conv_libfunc (trunc_optab, DFmode, TFmode, "_Q_qtod");
10354
10355 set_conv_libfunc (sfix_optab, SImode, TFmode, "_Q_qtoi");
10356 set_conv_libfunc (ufix_optab, SImode, TFmode, "_Q_qtou");
10357 set_conv_libfunc (sfloat_optab, TFmode, SImode, "_Q_itoq");
10358 set_conv_libfunc (ufloat_optab, TFmode, SImode, "_Q_utoq");
10359
10360 if (DITF_CONVERSION_LIBFUNCS)
10361 {
10362 set_conv_libfunc (sfix_optab, DImode, TFmode, "_Q_qtoll");
10363 set_conv_libfunc (ufix_optab, DImode, TFmode, "_Q_qtoull");
10364 set_conv_libfunc (sfloat_optab, TFmode, DImode, "_Q_lltoq");
10365 set_conv_libfunc (ufloat_optab, TFmode, DImode, "_Q_ulltoq");
10366 }
10367
10368 if (SUN_CONVERSION_LIBFUNCS)
10369 {
10370 set_conv_libfunc (sfix_optab, DImode, SFmode, "__ftoll");
10371 set_conv_libfunc (ufix_optab, DImode, SFmode, "__ftoull");
10372 set_conv_libfunc (sfix_optab, DImode, DFmode, "__dtoll");
10373 set_conv_libfunc (ufix_optab, DImode, DFmode, "__dtoull");
10374 }
10375 }
10376 if (TARGET_ARCH64)
10377 {
10378 /* In the SPARC 64bit ABI, SImode multiply and divide functions
10379 do not exist in the library. Make sure the compiler does not
10380 emit calls to them by accident. (It should always use the
10381 hardware instructions.) */
10382 set_optab_libfunc (smul_optab, SImode, 0);
10383 set_optab_libfunc (sdiv_optab, SImode, 0);
10384 set_optab_libfunc (udiv_optab, SImode, 0);
10385 set_optab_libfunc (smod_optab, SImode, 0);
10386 set_optab_libfunc (umod_optab, SImode, 0);
10387
10388 if (SUN_INTEGER_MULTIPLY_64)
10389 {
10390 set_optab_libfunc (smul_optab, DImode, "__mul64");
10391 set_optab_libfunc (sdiv_optab, DImode, "__div64");
10392 set_optab_libfunc (udiv_optab, DImode, "__udiv64");
10393 set_optab_libfunc (smod_optab, DImode, "__rem64");
10394 set_optab_libfunc (umod_optab, DImode, "__urem64");
10395 }
10396
10397 if (SUN_CONVERSION_LIBFUNCS)
10398 {
10399 set_conv_libfunc (sfix_optab, DImode, SFmode, "__ftol");
10400 set_conv_libfunc (ufix_optab, DImode, SFmode, "__ftoul");
10401 set_conv_libfunc (sfix_optab, DImode, DFmode, "__dtol");
10402 set_conv_libfunc (ufix_optab, DImode, DFmode, "__dtoul");
10403 }
10404 }
10405 }
10406 \f
10407 /* SPARC builtins. */
10408 enum sparc_builtins
10409 {
10410 /* FPU builtins. */
10411 SPARC_BUILTIN_LDFSR,
10412 SPARC_BUILTIN_STFSR,
10413
10414 /* VIS 1.0 builtins. */
10415 SPARC_BUILTIN_FPACK16,
10416 SPARC_BUILTIN_FPACK32,
10417 SPARC_BUILTIN_FPACKFIX,
10418 SPARC_BUILTIN_FEXPAND,
10419 SPARC_BUILTIN_FPMERGE,
10420 SPARC_BUILTIN_FMUL8X16,
10421 SPARC_BUILTIN_FMUL8X16AU,
10422 SPARC_BUILTIN_FMUL8X16AL,
10423 SPARC_BUILTIN_FMUL8SUX16,
10424 SPARC_BUILTIN_FMUL8ULX16,
10425 SPARC_BUILTIN_FMULD8SUX16,
10426 SPARC_BUILTIN_FMULD8ULX16,
10427 SPARC_BUILTIN_FALIGNDATAV4HI,
10428 SPARC_BUILTIN_FALIGNDATAV8QI,
10429 SPARC_BUILTIN_FALIGNDATAV2SI,
10430 SPARC_BUILTIN_FALIGNDATADI,
10431 SPARC_BUILTIN_WRGSR,
10432 SPARC_BUILTIN_RDGSR,
10433 SPARC_BUILTIN_ALIGNADDR,
10434 SPARC_BUILTIN_ALIGNADDRL,
10435 SPARC_BUILTIN_PDIST,
10436 SPARC_BUILTIN_EDGE8,
10437 SPARC_BUILTIN_EDGE8L,
10438 SPARC_BUILTIN_EDGE16,
10439 SPARC_BUILTIN_EDGE16L,
10440 SPARC_BUILTIN_EDGE32,
10441 SPARC_BUILTIN_EDGE32L,
10442 SPARC_BUILTIN_FCMPLE16,
10443 SPARC_BUILTIN_FCMPLE32,
10444 SPARC_BUILTIN_FCMPNE16,
10445 SPARC_BUILTIN_FCMPNE32,
10446 SPARC_BUILTIN_FCMPGT16,
10447 SPARC_BUILTIN_FCMPGT32,
10448 SPARC_BUILTIN_FCMPEQ16,
10449 SPARC_BUILTIN_FCMPEQ32,
10450 SPARC_BUILTIN_FPADD16,
10451 SPARC_BUILTIN_FPADD16S,
10452 SPARC_BUILTIN_FPADD32,
10453 SPARC_BUILTIN_FPADD32S,
10454 SPARC_BUILTIN_FPSUB16,
10455 SPARC_BUILTIN_FPSUB16S,
10456 SPARC_BUILTIN_FPSUB32,
10457 SPARC_BUILTIN_FPSUB32S,
10458 SPARC_BUILTIN_ARRAY8,
10459 SPARC_BUILTIN_ARRAY16,
10460 SPARC_BUILTIN_ARRAY32,
10461
10462 /* VIS 2.0 builtins. */
10463 SPARC_BUILTIN_EDGE8N,
10464 SPARC_BUILTIN_EDGE8LN,
10465 SPARC_BUILTIN_EDGE16N,
10466 SPARC_BUILTIN_EDGE16LN,
10467 SPARC_BUILTIN_EDGE32N,
10468 SPARC_BUILTIN_EDGE32LN,
10469 SPARC_BUILTIN_BMASK,
10470 SPARC_BUILTIN_BSHUFFLEV4HI,
10471 SPARC_BUILTIN_BSHUFFLEV8QI,
10472 SPARC_BUILTIN_BSHUFFLEV2SI,
10473 SPARC_BUILTIN_BSHUFFLEDI,
10474
10475 /* VIS 3.0 builtins. */
10476 SPARC_BUILTIN_CMASK8,
10477 SPARC_BUILTIN_CMASK16,
10478 SPARC_BUILTIN_CMASK32,
10479 SPARC_BUILTIN_FCHKSM16,
10480 SPARC_BUILTIN_FSLL16,
10481 SPARC_BUILTIN_FSLAS16,
10482 SPARC_BUILTIN_FSRL16,
10483 SPARC_BUILTIN_FSRA16,
10484 SPARC_BUILTIN_FSLL32,
10485 SPARC_BUILTIN_FSLAS32,
10486 SPARC_BUILTIN_FSRL32,
10487 SPARC_BUILTIN_FSRA32,
10488 SPARC_BUILTIN_PDISTN,
10489 SPARC_BUILTIN_FMEAN16,
10490 SPARC_BUILTIN_FPADD64,
10491 SPARC_BUILTIN_FPSUB64,
10492 SPARC_BUILTIN_FPADDS16,
10493 SPARC_BUILTIN_FPADDS16S,
10494 SPARC_BUILTIN_FPSUBS16,
10495 SPARC_BUILTIN_FPSUBS16S,
10496 SPARC_BUILTIN_FPADDS32,
10497 SPARC_BUILTIN_FPADDS32S,
10498 SPARC_BUILTIN_FPSUBS32,
10499 SPARC_BUILTIN_FPSUBS32S,
10500 SPARC_BUILTIN_FUCMPLE8,
10501 SPARC_BUILTIN_FUCMPNE8,
10502 SPARC_BUILTIN_FUCMPGT8,
10503 SPARC_BUILTIN_FUCMPEQ8,
10504 SPARC_BUILTIN_FHADDS,
10505 SPARC_BUILTIN_FHADDD,
10506 SPARC_BUILTIN_FHSUBS,
10507 SPARC_BUILTIN_FHSUBD,
10508 SPARC_BUILTIN_FNHADDS,
10509 SPARC_BUILTIN_FNHADDD,
10510 SPARC_BUILTIN_UMULXHI,
10511 SPARC_BUILTIN_XMULX,
10512 SPARC_BUILTIN_XMULXHI,
10513
10514 /* VIS 4.0 builtins. */
10515 SPARC_BUILTIN_FPADD8,
10516 SPARC_BUILTIN_FPADDS8,
10517 SPARC_BUILTIN_FPADDUS8,
10518 SPARC_BUILTIN_FPADDUS16,
10519 SPARC_BUILTIN_FPCMPLE8,
10520 SPARC_BUILTIN_FPCMPGT8,
10521 SPARC_BUILTIN_FPCMPULE16,
10522 SPARC_BUILTIN_FPCMPUGT16,
10523 SPARC_BUILTIN_FPCMPULE32,
10524 SPARC_BUILTIN_FPCMPUGT32,
10525 SPARC_BUILTIN_FPMAX8,
10526 SPARC_BUILTIN_FPMAX16,
10527 SPARC_BUILTIN_FPMAX32,
10528 SPARC_BUILTIN_FPMAXU8,
10529 SPARC_BUILTIN_FPMAXU16,
10530 SPARC_BUILTIN_FPMAXU32,
10531 SPARC_BUILTIN_FPMIN8,
10532 SPARC_BUILTIN_FPMIN16,
10533 SPARC_BUILTIN_FPMIN32,
10534 SPARC_BUILTIN_FPMINU8,
10535 SPARC_BUILTIN_FPMINU16,
10536 SPARC_BUILTIN_FPMINU32,
10537 SPARC_BUILTIN_FPSUB8,
10538 SPARC_BUILTIN_FPSUBS8,
10539 SPARC_BUILTIN_FPSUBUS8,
10540 SPARC_BUILTIN_FPSUBUS16,
10541
10542 /* VIS 4.0B builtins. */
10543
10544 /* Note that all the DICTUNPACK* entries should be kept
10545 contiguous. */
10546 SPARC_BUILTIN_FIRST_DICTUNPACK,
10547 SPARC_BUILTIN_DICTUNPACK8 = SPARC_BUILTIN_FIRST_DICTUNPACK,
10548 SPARC_BUILTIN_DICTUNPACK16,
10549 SPARC_BUILTIN_DICTUNPACK32,
10550 SPARC_BUILTIN_LAST_DICTUNPACK = SPARC_BUILTIN_DICTUNPACK32,
10551
10552 /* Note that all the FPCMP*SHL entries should be kept
10553 contiguous. */
10554 SPARC_BUILTIN_FIRST_FPCMPSHL,
10555 SPARC_BUILTIN_FPCMPLE8SHL = SPARC_BUILTIN_FIRST_FPCMPSHL,
10556 SPARC_BUILTIN_FPCMPGT8SHL,
10557 SPARC_BUILTIN_FPCMPEQ8SHL,
10558 SPARC_BUILTIN_FPCMPNE8SHL,
10559 SPARC_BUILTIN_FPCMPLE16SHL,
10560 SPARC_BUILTIN_FPCMPGT16SHL,
10561 SPARC_BUILTIN_FPCMPEQ16SHL,
10562 SPARC_BUILTIN_FPCMPNE16SHL,
10563 SPARC_BUILTIN_FPCMPLE32SHL,
10564 SPARC_BUILTIN_FPCMPGT32SHL,
10565 SPARC_BUILTIN_FPCMPEQ32SHL,
10566 SPARC_BUILTIN_FPCMPNE32SHL,
10567 SPARC_BUILTIN_FPCMPULE8SHL,
10568 SPARC_BUILTIN_FPCMPUGT8SHL,
10569 SPARC_BUILTIN_FPCMPULE16SHL,
10570 SPARC_BUILTIN_FPCMPUGT16SHL,
10571 SPARC_BUILTIN_FPCMPULE32SHL,
10572 SPARC_BUILTIN_FPCMPUGT32SHL,
10573 SPARC_BUILTIN_FPCMPDE8SHL,
10574 SPARC_BUILTIN_FPCMPDE16SHL,
10575 SPARC_BUILTIN_FPCMPDE32SHL,
10576 SPARC_BUILTIN_FPCMPUR8SHL,
10577 SPARC_BUILTIN_FPCMPUR16SHL,
10578 SPARC_BUILTIN_FPCMPUR32SHL,
10579 SPARC_BUILTIN_LAST_FPCMPSHL = SPARC_BUILTIN_FPCMPUR32SHL,
10580
10581 SPARC_BUILTIN_MAX
10582 };
10583
10584 static GTY (()) tree sparc_builtins[(int) SPARC_BUILTIN_MAX];
10585 static enum insn_code sparc_builtins_icode[(int) SPARC_BUILTIN_MAX];
10586
10587 /* Return true if OPVAL can be used for operand OPNUM of instruction ICODE.
10588 The instruction should require a constant operand of some sort. The
10589 function prints an error if OPVAL is not valid. */
10590
10591 static int
10592 check_constant_argument (enum insn_code icode, int opnum, rtx opval)
10593 {
10594 if (GET_CODE (opval) != CONST_INT)
10595 {
10596 error ("%qs expects a constant argument", insn_data[icode].name);
10597 return false;
10598 }
10599
10600 if (!(*insn_data[icode].operand[opnum].predicate) (opval, VOIDmode))
10601 {
10602 error ("constant argument out of range for %qs", insn_data[icode].name);
10603 return false;
10604 }
10605 return true;
10606 }
10607
10608 /* Add a SPARC builtin function with NAME, ICODE, CODE and TYPE. Return the
10609 function decl or NULL_TREE if the builtin was not added. */
10610
10611 static tree
10612 def_builtin (const char *name, enum insn_code icode, enum sparc_builtins code,
10613 tree type)
10614 {
10615 tree t
10616 = add_builtin_function (name, type, code, BUILT_IN_MD, NULL, NULL_TREE);
10617
10618 if (t)
10619 {
10620 sparc_builtins[code] = t;
10621 sparc_builtins_icode[code] = icode;
10622 }
10623
10624 return t;
10625 }
10626
10627 /* Likewise, but also marks the function as "const". */
10628
10629 static tree
10630 def_builtin_const (const char *name, enum insn_code icode,
10631 enum sparc_builtins code, tree type)
10632 {
10633 tree t = def_builtin (name, icode, code, type);
10634
10635 if (t)
10636 TREE_READONLY (t) = 1;
10637
10638 return t;
10639 }
10640
10641 /* Implement the TARGET_INIT_BUILTINS target hook.
10642 Create builtin functions for special SPARC instructions. */
10643
10644 static void
10645 sparc_init_builtins (void)
10646 {
10647 if (TARGET_FPU)
10648 sparc_fpu_init_builtins ();
10649
10650 if (TARGET_VIS)
10651 sparc_vis_init_builtins ();
10652 }
10653
10654 /* Create builtin functions for FPU instructions. */
10655
10656 static void
10657 sparc_fpu_init_builtins (void)
10658 {
10659 tree ftype
10660 = build_function_type_list (void_type_node,
10661 build_pointer_type (unsigned_type_node), 0);
10662 def_builtin ("__builtin_load_fsr", CODE_FOR_ldfsr,
10663 SPARC_BUILTIN_LDFSR, ftype);
10664 def_builtin ("__builtin_store_fsr", CODE_FOR_stfsr,
10665 SPARC_BUILTIN_STFSR, ftype);
10666 }
10667
10668 /* Create builtin functions for VIS instructions. */
10669
10670 static void
10671 sparc_vis_init_builtins (void)
10672 {
10673 tree v4qi = build_vector_type (unsigned_intQI_type_node, 4);
10674 tree v8qi = build_vector_type (unsigned_intQI_type_node, 8);
10675 tree v4hi = build_vector_type (intHI_type_node, 4);
10676 tree v2hi = build_vector_type (intHI_type_node, 2);
10677 tree v2si = build_vector_type (intSI_type_node, 2);
10678 tree v1si = build_vector_type (intSI_type_node, 1);
10679
10680 tree v4qi_ftype_v4hi = build_function_type_list (v4qi, v4hi, 0);
10681 tree v8qi_ftype_v2si_v8qi = build_function_type_list (v8qi, v2si, v8qi, 0);
10682 tree v2hi_ftype_v2si = build_function_type_list (v2hi, v2si, 0);
10683 tree v4hi_ftype_v4qi = build_function_type_list (v4hi, v4qi, 0);
10684 tree v8qi_ftype_v4qi_v4qi = build_function_type_list (v8qi, v4qi, v4qi, 0);
10685 tree v4hi_ftype_v4qi_v4hi = build_function_type_list (v4hi, v4qi, v4hi, 0);
10686 tree v4hi_ftype_v4qi_v2hi = build_function_type_list (v4hi, v4qi, v2hi, 0);
10687 tree v2si_ftype_v4qi_v2hi = build_function_type_list (v2si, v4qi, v2hi, 0);
10688 tree v4hi_ftype_v8qi_v4hi = build_function_type_list (v4hi, v8qi, v4hi, 0);
10689 tree v4hi_ftype_v4hi_v4hi = build_function_type_list (v4hi, v4hi, v4hi, 0);
10690 tree v2si_ftype_v2si_v2si = build_function_type_list (v2si, v2si, v2si, 0);
10691 tree v8qi_ftype_v8qi_v8qi = build_function_type_list (v8qi, v8qi, v8qi, 0);
10692 tree v2hi_ftype_v2hi_v2hi = build_function_type_list (v2hi, v2hi, v2hi, 0);
10693 tree v1si_ftype_v1si_v1si = build_function_type_list (v1si, v1si, v1si, 0);
10694 tree di_ftype_v8qi_v8qi_di = build_function_type_list (intDI_type_node,
10695 v8qi, v8qi,
10696 intDI_type_node, 0);
10697 tree di_ftype_v8qi_v8qi = build_function_type_list (intDI_type_node,
10698 v8qi, v8qi, 0);
10699 tree si_ftype_v8qi_v8qi = build_function_type_list (intSI_type_node,
10700 v8qi, v8qi, 0);
10701 tree v8qi_ftype_df_si = build_function_type_list (v8qi, double_type_node,
10702 intSI_type_node, 0);
10703 tree v4hi_ftype_df_si = build_function_type_list (v4hi, double_type_node,
10704 intSI_type_node, 0);
10705 tree v2si_ftype_df_si = build_function_type_list (v2si, double_type_node,
10706 intDI_type_node, 0);
10707 tree di_ftype_di_di = build_function_type_list (intDI_type_node,
10708 intDI_type_node,
10709 intDI_type_node, 0);
10710 tree si_ftype_si_si = build_function_type_list (intSI_type_node,
10711 intSI_type_node,
10712 intSI_type_node, 0);
10713 tree ptr_ftype_ptr_si = build_function_type_list (ptr_type_node,
10714 ptr_type_node,
10715 intSI_type_node, 0);
10716 tree ptr_ftype_ptr_di = build_function_type_list (ptr_type_node,
10717 ptr_type_node,
10718 intDI_type_node, 0);
10719 tree si_ftype_ptr_ptr = build_function_type_list (intSI_type_node,
10720 ptr_type_node,
10721 ptr_type_node, 0);
10722 tree di_ftype_ptr_ptr = build_function_type_list (intDI_type_node,
10723 ptr_type_node,
10724 ptr_type_node, 0);
10725 tree si_ftype_v4hi_v4hi = build_function_type_list (intSI_type_node,
10726 v4hi, v4hi, 0);
10727 tree si_ftype_v2si_v2si = build_function_type_list (intSI_type_node,
10728 v2si, v2si, 0);
10729 tree di_ftype_v4hi_v4hi = build_function_type_list (intDI_type_node,
10730 v4hi, v4hi, 0);
10731 tree di_ftype_v2si_v2si = build_function_type_list (intDI_type_node,
10732 v2si, v2si, 0);
10733 tree void_ftype_di = build_function_type_list (void_type_node,
10734 intDI_type_node, 0);
10735 tree di_ftype_void = build_function_type_list (intDI_type_node,
10736 void_type_node, 0);
10737 tree void_ftype_si = build_function_type_list (void_type_node,
10738 intSI_type_node, 0);
10739 tree sf_ftype_sf_sf = build_function_type_list (float_type_node,
10740 float_type_node,
10741 float_type_node, 0);
10742 tree df_ftype_df_df = build_function_type_list (double_type_node,
10743 double_type_node,
10744 double_type_node, 0);
10745
10746 /* Packing and expanding vectors. */
10747 def_builtin ("__builtin_vis_fpack16", CODE_FOR_fpack16_vis,
10748 SPARC_BUILTIN_FPACK16, v4qi_ftype_v4hi);
10749 def_builtin ("__builtin_vis_fpack32", CODE_FOR_fpack32_vis,
10750 SPARC_BUILTIN_FPACK32, v8qi_ftype_v2si_v8qi);
10751 def_builtin ("__builtin_vis_fpackfix", CODE_FOR_fpackfix_vis,
10752 SPARC_BUILTIN_FPACKFIX, v2hi_ftype_v2si);
10753 def_builtin_const ("__builtin_vis_fexpand", CODE_FOR_fexpand_vis,
10754 SPARC_BUILTIN_FEXPAND, v4hi_ftype_v4qi);
10755 def_builtin_const ("__builtin_vis_fpmerge", CODE_FOR_fpmerge_vis,
10756 SPARC_BUILTIN_FPMERGE, v8qi_ftype_v4qi_v4qi);
10757
10758 /* Multiplications. */
10759 def_builtin_const ("__builtin_vis_fmul8x16", CODE_FOR_fmul8x16_vis,
10760 SPARC_BUILTIN_FMUL8X16, v4hi_ftype_v4qi_v4hi);
10761 def_builtin_const ("__builtin_vis_fmul8x16au", CODE_FOR_fmul8x16au_vis,
10762 SPARC_BUILTIN_FMUL8X16AU, v4hi_ftype_v4qi_v2hi);
10763 def_builtin_const ("__builtin_vis_fmul8x16al", CODE_FOR_fmul8x16al_vis,
10764 SPARC_BUILTIN_FMUL8X16AL, v4hi_ftype_v4qi_v2hi);
10765 def_builtin_const ("__builtin_vis_fmul8sux16", CODE_FOR_fmul8sux16_vis,
10766 SPARC_BUILTIN_FMUL8SUX16, v4hi_ftype_v8qi_v4hi);
10767 def_builtin_const ("__builtin_vis_fmul8ulx16", CODE_FOR_fmul8ulx16_vis,
10768 SPARC_BUILTIN_FMUL8ULX16, v4hi_ftype_v8qi_v4hi);
10769 def_builtin_const ("__builtin_vis_fmuld8sux16", CODE_FOR_fmuld8sux16_vis,
10770 SPARC_BUILTIN_FMULD8SUX16, v2si_ftype_v4qi_v2hi);
10771 def_builtin_const ("__builtin_vis_fmuld8ulx16", CODE_FOR_fmuld8ulx16_vis,
10772 SPARC_BUILTIN_FMULD8ULX16, v2si_ftype_v4qi_v2hi);
10773
10774 /* Data aligning. */
10775 def_builtin ("__builtin_vis_faligndatav4hi", CODE_FOR_faligndatav4hi_vis,
10776 SPARC_BUILTIN_FALIGNDATAV4HI, v4hi_ftype_v4hi_v4hi);
10777 def_builtin ("__builtin_vis_faligndatav8qi", CODE_FOR_faligndatav8qi_vis,
10778 SPARC_BUILTIN_FALIGNDATAV8QI, v8qi_ftype_v8qi_v8qi);
10779 def_builtin ("__builtin_vis_faligndatav2si", CODE_FOR_faligndatav2si_vis,
10780 SPARC_BUILTIN_FALIGNDATAV2SI, v2si_ftype_v2si_v2si);
10781 def_builtin ("__builtin_vis_faligndatadi", CODE_FOR_faligndatav1di_vis,
10782 SPARC_BUILTIN_FALIGNDATADI, di_ftype_di_di);
10783
10784 def_builtin ("__builtin_vis_write_gsr", CODE_FOR_wrgsr_vis,
10785 SPARC_BUILTIN_WRGSR, void_ftype_di);
10786 def_builtin ("__builtin_vis_read_gsr", CODE_FOR_rdgsr_vis,
10787 SPARC_BUILTIN_RDGSR, di_ftype_void);
10788
10789 if (TARGET_ARCH64)
10790 {
10791 def_builtin ("__builtin_vis_alignaddr", CODE_FOR_alignaddrdi_vis,
10792 SPARC_BUILTIN_ALIGNADDR, ptr_ftype_ptr_di);
10793 def_builtin ("__builtin_vis_alignaddrl", CODE_FOR_alignaddrldi_vis,
10794 SPARC_BUILTIN_ALIGNADDRL, ptr_ftype_ptr_di);
10795 }
10796 else
10797 {
10798 def_builtin ("__builtin_vis_alignaddr", CODE_FOR_alignaddrsi_vis,
10799 SPARC_BUILTIN_ALIGNADDR, ptr_ftype_ptr_si);
10800 def_builtin ("__builtin_vis_alignaddrl", CODE_FOR_alignaddrlsi_vis,
10801 SPARC_BUILTIN_ALIGNADDRL, ptr_ftype_ptr_si);
10802 }
10803
10804 /* Pixel distance. */
10805 def_builtin_const ("__builtin_vis_pdist", CODE_FOR_pdist_vis,
10806 SPARC_BUILTIN_PDIST, di_ftype_v8qi_v8qi_di);
10807
10808 /* Edge handling. */
10809 if (TARGET_ARCH64)
10810 {
10811 def_builtin_const ("__builtin_vis_edge8", CODE_FOR_edge8di_vis,
10812 SPARC_BUILTIN_EDGE8, di_ftype_ptr_ptr);
10813 def_builtin_const ("__builtin_vis_edge8l", CODE_FOR_edge8ldi_vis,
10814 SPARC_BUILTIN_EDGE8L, di_ftype_ptr_ptr);
10815 def_builtin_const ("__builtin_vis_edge16", CODE_FOR_edge16di_vis,
10816 SPARC_BUILTIN_EDGE16, di_ftype_ptr_ptr);
10817 def_builtin_const ("__builtin_vis_edge16l", CODE_FOR_edge16ldi_vis,
10818 SPARC_BUILTIN_EDGE16L, di_ftype_ptr_ptr);
10819 def_builtin_const ("__builtin_vis_edge32", CODE_FOR_edge32di_vis,
10820 SPARC_BUILTIN_EDGE32, di_ftype_ptr_ptr);
10821 def_builtin_const ("__builtin_vis_edge32l", CODE_FOR_edge32ldi_vis,
10822 SPARC_BUILTIN_EDGE32L, di_ftype_ptr_ptr);
10823 }
10824 else
10825 {
10826 def_builtin_const ("__builtin_vis_edge8", CODE_FOR_edge8si_vis,
10827 SPARC_BUILTIN_EDGE8, si_ftype_ptr_ptr);
10828 def_builtin_const ("__builtin_vis_edge8l", CODE_FOR_edge8lsi_vis,
10829 SPARC_BUILTIN_EDGE8L, si_ftype_ptr_ptr);
10830 def_builtin_const ("__builtin_vis_edge16", CODE_FOR_edge16si_vis,
10831 SPARC_BUILTIN_EDGE16, si_ftype_ptr_ptr);
10832 def_builtin_const ("__builtin_vis_edge16l", CODE_FOR_edge16lsi_vis,
10833 SPARC_BUILTIN_EDGE16L, si_ftype_ptr_ptr);
10834 def_builtin_const ("__builtin_vis_edge32", CODE_FOR_edge32si_vis,
10835 SPARC_BUILTIN_EDGE32, si_ftype_ptr_ptr);
10836 def_builtin_const ("__builtin_vis_edge32l", CODE_FOR_edge32lsi_vis,
10837 SPARC_BUILTIN_EDGE32L, si_ftype_ptr_ptr);
10838 }
10839
10840 /* Pixel compare. */
10841 if (TARGET_ARCH64)
10842 {
10843 def_builtin_const ("__builtin_vis_fcmple16", CODE_FOR_fcmple16di_vis,
10844 SPARC_BUILTIN_FCMPLE16, di_ftype_v4hi_v4hi);
10845 def_builtin_const ("__builtin_vis_fcmple32", CODE_FOR_fcmple32di_vis,
10846 SPARC_BUILTIN_FCMPLE32, di_ftype_v2si_v2si);
10847 def_builtin_const ("__builtin_vis_fcmpne16", CODE_FOR_fcmpne16di_vis,
10848 SPARC_BUILTIN_FCMPNE16, di_ftype_v4hi_v4hi);
10849 def_builtin_const ("__builtin_vis_fcmpne32", CODE_FOR_fcmpne32di_vis,
10850 SPARC_BUILTIN_FCMPNE32, di_ftype_v2si_v2si);
10851 def_builtin_const ("__builtin_vis_fcmpgt16", CODE_FOR_fcmpgt16di_vis,
10852 SPARC_BUILTIN_FCMPGT16, di_ftype_v4hi_v4hi);
10853 def_builtin_const ("__builtin_vis_fcmpgt32", CODE_FOR_fcmpgt32di_vis,
10854 SPARC_BUILTIN_FCMPGT32, di_ftype_v2si_v2si);
10855 def_builtin_const ("__builtin_vis_fcmpeq16", CODE_FOR_fcmpeq16di_vis,
10856 SPARC_BUILTIN_FCMPEQ16, di_ftype_v4hi_v4hi);
10857 def_builtin_const ("__builtin_vis_fcmpeq32", CODE_FOR_fcmpeq32di_vis,
10858 SPARC_BUILTIN_FCMPEQ32, di_ftype_v2si_v2si);
10859 }
10860 else
10861 {
10862 def_builtin_const ("__builtin_vis_fcmple16", CODE_FOR_fcmple16si_vis,
10863 SPARC_BUILTIN_FCMPLE16, si_ftype_v4hi_v4hi);
10864 def_builtin_const ("__builtin_vis_fcmple32", CODE_FOR_fcmple32si_vis,
10865 SPARC_BUILTIN_FCMPLE32, si_ftype_v2si_v2si);
10866 def_builtin_const ("__builtin_vis_fcmpne16", CODE_FOR_fcmpne16si_vis,
10867 SPARC_BUILTIN_FCMPNE16, si_ftype_v4hi_v4hi);
10868 def_builtin_const ("__builtin_vis_fcmpne32", CODE_FOR_fcmpne32si_vis,
10869 SPARC_BUILTIN_FCMPNE32, si_ftype_v2si_v2si);
10870 def_builtin_const ("__builtin_vis_fcmpgt16", CODE_FOR_fcmpgt16si_vis,
10871 SPARC_BUILTIN_FCMPGT16, si_ftype_v4hi_v4hi);
10872 def_builtin_const ("__builtin_vis_fcmpgt32", CODE_FOR_fcmpgt32si_vis,
10873 SPARC_BUILTIN_FCMPGT32, si_ftype_v2si_v2si);
10874 def_builtin_const ("__builtin_vis_fcmpeq16", CODE_FOR_fcmpeq16si_vis,
10875 SPARC_BUILTIN_FCMPEQ16, si_ftype_v4hi_v4hi);
10876 def_builtin_const ("__builtin_vis_fcmpeq32", CODE_FOR_fcmpeq32si_vis,
10877 SPARC_BUILTIN_FCMPEQ32, si_ftype_v2si_v2si);
10878 }
10879
10880 /* Addition and subtraction. */
10881 def_builtin_const ("__builtin_vis_fpadd16", CODE_FOR_addv4hi3,
10882 SPARC_BUILTIN_FPADD16, v4hi_ftype_v4hi_v4hi);
10883 def_builtin_const ("__builtin_vis_fpadd16s", CODE_FOR_addv2hi3,
10884 SPARC_BUILTIN_FPADD16S, v2hi_ftype_v2hi_v2hi);
10885 def_builtin_const ("__builtin_vis_fpadd32", CODE_FOR_addv2si3,
10886 SPARC_BUILTIN_FPADD32, v2si_ftype_v2si_v2si);
10887 def_builtin_const ("__builtin_vis_fpadd32s", CODE_FOR_addv1si3,
10888 SPARC_BUILTIN_FPADD32S, v1si_ftype_v1si_v1si);
10889 def_builtin_const ("__builtin_vis_fpsub16", CODE_FOR_subv4hi3,
10890 SPARC_BUILTIN_FPSUB16, v4hi_ftype_v4hi_v4hi);
10891 def_builtin_const ("__builtin_vis_fpsub16s", CODE_FOR_subv2hi3,
10892 SPARC_BUILTIN_FPSUB16S, v2hi_ftype_v2hi_v2hi);
10893 def_builtin_const ("__builtin_vis_fpsub32", CODE_FOR_subv2si3,
10894 SPARC_BUILTIN_FPSUB32, v2si_ftype_v2si_v2si);
10895 def_builtin_const ("__builtin_vis_fpsub32s", CODE_FOR_subv1si3,
10896 SPARC_BUILTIN_FPSUB32S, v1si_ftype_v1si_v1si);
10897
10898 /* Three-dimensional array addressing. */
10899 if (TARGET_ARCH64)
10900 {
10901 def_builtin_const ("__builtin_vis_array8", CODE_FOR_array8di_vis,
10902 SPARC_BUILTIN_ARRAY8, di_ftype_di_di);
10903 def_builtin_const ("__builtin_vis_array16", CODE_FOR_array16di_vis,
10904 SPARC_BUILTIN_ARRAY16, di_ftype_di_di);
10905 def_builtin_const ("__builtin_vis_array32", CODE_FOR_array32di_vis,
10906 SPARC_BUILTIN_ARRAY32, di_ftype_di_di);
10907 }
10908 else
10909 {
10910 def_builtin_const ("__builtin_vis_array8", CODE_FOR_array8si_vis,
10911 SPARC_BUILTIN_ARRAY8, si_ftype_si_si);
10912 def_builtin_const ("__builtin_vis_array16", CODE_FOR_array16si_vis,
10913 SPARC_BUILTIN_ARRAY16, si_ftype_si_si);
10914 def_builtin_const ("__builtin_vis_array32", CODE_FOR_array32si_vis,
10915 SPARC_BUILTIN_ARRAY32, si_ftype_si_si);
10916 }
10917
10918 if (TARGET_VIS2)
10919 {
10920 /* Edge handling. */
10921 if (TARGET_ARCH64)
10922 {
10923 def_builtin_const ("__builtin_vis_edge8n", CODE_FOR_edge8ndi_vis,
10924 SPARC_BUILTIN_EDGE8N, di_ftype_ptr_ptr);
10925 def_builtin_const ("__builtin_vis_edge8ln", CODE_FOR_edge8lndi_vis,
10926 SPARC_BUILTIN_EDGE8LN, di_ftype_ptr_ptr);
10927 def_builtin_const ("__builtin_vis_edge16n", CODE_FOR_edge16ndi_vis,
10928 SPARC_BUILTIN_EDGE16N, di_ftype_ptr_ptr);
10929 def_builtin_const ("__builtin_vis_edge16ln", CODE_FOR_edge16lndi_vis,
10930 SPARC_BUILTIN_EDGE16LN, di_ftype_ptr_ptr);
10931 def_builtin_const ("__builtin_vis_edge32n", CODE_FOR_edge32ndi_vis,
10932 SPARC_BUILTIN_EDGE32N, di_ftype_ptr_ptr);
10933 def_builtin_const ("__builtin_vis_edge32ln", CODE_FOR_edge32lndi_vis,
10934 SPARC_BUILTIN_EDGE32LN, di_ftype_ptr_ptr);
10935 }
10936 else
10937 {
10938 def_builtin_const ("__builtin_vis_edge8n", CODE_FOR_edge8nsi_vis,
10939 SPARC_BUILTIN_EDGE8N, si_ftype_ptr_ptr);
10940 def_builtin_const ("__builtin_vis_edge8ln", CODE_FOR_edge8lnsi_vis,
10941 SPARC_BUILTIN_EDGE8LN, si_ftype_ptr_ptr);
10942 def_builtin_const ("__builtin_vis_edge16n", CODE_FOR_edge16nsi_vis,
10943 SPARC_BUILTIN_EDGE16N, si_ftype_ptr_ptr);
10944 def_builtin_const ("__builtin_vis_edge16ln", CODE_FOR_edge16lnsi_vis,
10945 SPARC_BUILTIN_EDGE16LN, si_ftype_ptr_ptr);
10946 def_builtin_const ("__builtin_vis_edge32n", CODE_FOR_edge32nsi_vis,
10947 SPARC_BUILTIN_EDGE32N, si_ftype_ptr_ptr);
10948 def_builtin_const ("__builtin_vis_edge32ln", CODE_FOR_edge32lnsi_vis,
10949 SPARC_BUILTIN_EDGE32LN, si_ftype_ptr_ptr);
10950 }
10951
10952 /* Byte mask and shuffle. */
10953 if (TARGET_ARCH64)
10954 def_builtin ("__builtin_vis_bmask", CODE_FOR_bmaskdi_vis,
10955 SPARC_BUILTIN_BMASK, di_ftype_di_di);
10956 else
10957 def_builtin ("__builtin_vis_bmask", CODE_FOR_bmasksi_vis,
10958 SPARC_BUILTIN_BMASK, si_ftype_si_si);
10959 def_builtin ("__builtin_vis_bshufflev4hi", CODE_FOR_bshufflev4hi_vis,
10960 SPARC_BUILTIN_BSHUFFLEV4HI, v4hi_ftype_v4hi_v4hi);
10961 def_builtin ("__builtin_vis_bshufflev8qi", CODE_FOR_bshufflev8qi_vis,
10962 SPARC_BUILTIN_BSHUFFLEV8QI, v8qi_ftype_v8qi_v8qi);
10963 def_builtin ("__builtin_vis_bshufflev2si", CODE_FOR_bshufflev2si_vis,
10964 SPARC_BUILTIN_BSHUFFLEV2SI, v2si_ftype_v2si_v2si);
10965 def_builtin ("__builtin_vis_bshuffledi", CODE_FOR_bshufflev1di_vis,
10966 SPARC_BUILTIN_BSHUFFLEDI, di_ftype_di_di);
10967 }
10968
10969 if (TARGET_VIS3)
10970 {
10971 if (TARGET_ARCH64)
10972 {
10973 def_builtin ("__builtin_vis_cmask8", CODE_FOR_cmask8di_vis,
10974 SPARC_BUILTIN_CMASK8, void_ftype_di);
10975 def_builtin ("__builtin_vis_cmask16", CODE_FOR_cmask16di_vis,
10976 SPARC_BUILTIN_CMASK16, void_ftype_di);
10977 def_builtin ("__builtin_vis_cmask32", CODE_FOR_cmask32di_vis,
10978 SPARC_BUILTIN_CMASK32, void_ftype_di);
10979 }
10980 else
10981 {
10982 def_builtin ("__builtin_vis_cmask8", CODE_FOR_cmask8si_vis,
10983 SPARC_BUILTIN_CMASK8, void_ftype_si);
10984 def_builtin ("__builtin_vis_cmask16", CODE_FOR_cmask16si_vis,
10985 SPARC_BUILTIN_CMASK16, void_ftype_si);
10986 def_builtin ("__builtin_vis_cmask32", CODE_FOR_cmask32si_vis,
10987 SPARC_BUILTIN_CMASK32, void_ftype_si);
10988 }
10989
10990 def_builtin_const ("__builtin_vis_fchksm16", CODE_FOR_fchksm16_vis,
10991 SPARC_BUILTIN_FCHKSM16, v4hi_ftype_v4hi_v4hi);
10992
10993 def_builtin_const ("__builtin_vis_fsll16", CODE_FOR_vashlv4hi3,
10994 SPARC_BUILTIN_FSLL16, v4hi_ftype_v4hi_v4hi);
10995 def_builtin_const ("__builtin_vis_fslas16", CODE_FOR_vssashlv4hi3,
10996 SPARC_BUILTIN_FSLAS16, v4hi_ftype_v4hi_v4hi);
10997 def_builtin_const ("__builtin_vis_fsrl16", CODE_FOR_vlshrv4hi3,
10998 SPARC_BUILTIN_FSRL16, v4hi_ftype_v4hi_v4hi);
10999 def_builtin_const ("__builtin_vis_fsra16", CODE_FOR_vashrv4hi3,
11000 SPARC_BUILTIN_FSRA16, v4hi_ftype_v4hi_v4hi);
11001 def_builtin_const ("__builtin_vis_fsll32", CODE_FOR_vashlv2si3,
11002 SPARC_BUILTIN_FSLL32, v2si_ftype_v2si_v2si);
11003 def_builtin_const ("__builtin_vis_fslas32", CODE_FOR_vssashlv2si3,
11004 SPARC_BUILTIN_FSLAS32, v2si_ftype_v2si_v2si);
11005 def_builtin_const ("__builtin_vis_fsrl32", CODE_FOR_vlshrv2si3,
11006 SPARC_BUILTIN_FSRL32, v2si_ftype_v2si_v2si);
11007 def_builtin_const ("__builtin_vis_fsra32", CODE_FOR_vashrv2si3,
11008 SPARC_BUILTIN_FSRA32, v2si_ftype_v2si_v2si);
11009
11010 if (TARGET_ARCH64)
11011 def_builtin_const ("__builtin_vis_pdistn", CODE_FOR_pdistndi_vis,
11012 SPARC_BUILTIN_PDISTN, di_ftype_v8qi_v8qi);
11013 else
11014 def_builtin_const ("__builtin_vis_pdistn", CODE_FOR_pdistnsi_vis,
11015 SPARC_BUILTIN_PDISTN, si_ftype_v8qi_v8qi);
11016
11017 def_builtin_const ("__builtin_vis_fmean16", CODE_FOR_fmean16_vis,
11018 SPARC_BUILTIN_FMEAN16, v4hi_ftype_v4hi_v4hi);
11019 def_builtin_const ("__builtin_vis_fpadd64", CODE_FOR_fpadd64_vis,
11020 SPARC_BUILTIN_FPADD64, di_ftype_di_di);
11021 def_builtin_const ("__builtin_vis_fpsub64", CODE_FOR_fpsub64_vis,
11022 SPARC_BUILTIN_FPSUB64, di_ftype_di_di);
11023
11024 def_builtin_const ("__builtin_vis_fpadds16", CODE_FOR_ssaddv4hi3,
11025 SPARC_BUILTIN_FPADDS16, v4hi_ftype_v4hi_v4hi);
11026 def_builtin_const ("__builtin_vis_fpadds16s", CODE_FOR_ssaddv2hi3,
11027 SPARC_BUILTIN_FPADDS16S, v2hi_ftype_v2hi_v2hi);
11028 def_builtin_const ("__builtin_vis_fpsubs16", CODE_FOR_sssubv4hi3,
11029 SPARC_BUILTIN_FPSUBS16, v4hi_ftype_v4hi_v4hi);
11030 def_builtin_const ("__builtin_vis_fpsubs16s", CODE_FOR_sssubv2hi3,
11031 SPARC_BUILTIN_FPSUBS16S, v2hi_ftype_v2hi_v2hi);
11032 def_builtin_const ("__builtin_vis_fpadds32", CODE_FOR_ssaddv2si3,
11033 SPARC_BUILTIN_FPADDS32, v2si_ftype_v2si_v2si);
11034 def_builtin_const ("__builtin_vis_fpadds32s", CODE_FOR_ssaddv1si3,
11035 SPARC_BUILTIN_FPADDS32S, v1si_ftype_v1si_v1si);
11036 def_builtin_const ("__builtin_vis_fpsubs32", CODE_FOR_sssubv2si3,
11037 SPARC_BUILTIN_FPSUBS32, v2si_ftype_v2si_v2si);
11038 def_builtin_const ("__builtin_vis_fpsubs32s", CODE_FOR_sssubv1si3,
11039 SPARC_BUILTIN_FPSUBS32S, v1si_ftype_v1si_v1si);
11040
11041 if (TARGET_ARCH64)
11042 {
11043 def_builtin_const ("__builtin_vis_fucmple8", CODE_FOR_fucmple8di_vis,
11044 SPARC_BUILTIN_FUCMPLE8, di_ftype_v8qi_v8qi);
11045 def_builtin_const ("__builtin_vis_fucmpne8", CODE_FOR_fucmpne8di_vis,
11046 SPARC_BUILTIN_FUCMPNE8, di_ftype_v8qi_v8qi);
11047 def_builtin_const ("__builtin_vis_fucmpgt8", CODE_FOR_fucmpgt8di_vis,
11048 SPARC_BUILTIN_FUCMPGT8, di_ftype_v8qi_v8qi);
11049 def_builtin_const ("__builtin_vis_fucmpeq8", CODE_FOR_fucmpeq8di_vis,
11050 SPARC_BUILTIN_FUCMPEQ8, di_ftype_v8qi_v8qi);
11051 }
11052 else
11053 {
11054 def_builtin_const ("__builtin_vis_fucmple8", CODE_FOR_fucmple8si_vis,
11055 SPARC_BUILTIN_FUCMPLE8, si_ftype_v8qi_v8qi);
11056 def_builtin_const ("__builtin_vis_fucmpne8", CODE_FOR_fucmpne8si_vis,
11057 SPARC_BUILTIN_FUCMPNE8, si_ftype_v8qi_v8qi);
11058 def_builtin_const ("__builtin_vis_fucmpgt8", CODE_FOR_fucmpgt8si_vis,
11059 SPARC_BUILTIN_FUCMPGT8, si_ftype_v8qi_v8qi);
11060 def_builtin_const ("__builtin_vis_fucmpeq8", CODE_FOR_fucmpeq8si_vis,
11061 SPARC_BUILTIN_FUCMPEQ8, si_ftype_v8qi_v8qi);
11062 }
11063
11064 def_builtin_const ("__builtin_vis_fhadds", CODE_FOR_fhaddsf_vis,
11065 SPARC_BUILTIN_FHADDS, sf_ftype_sf_sf);
11066 def_builtin_const ("__builtin_vis_fhaddd", CODE_FOR_fhadddf_vis,
11067 SPARC_BUILTIN_FHADDD, df_ftype_df_df);
11068 def_builtin_const ("__builtin_vis_fhsubs", CODE_FOR_fhsubsf_vis,
11069 SPARC_BUILTIN_FHSUBS, sf_ftype_sf_sf);
11070 def_builtin_const ("__builtin_vis_fhsubd", CODE_FOR_fhsubdf_vis,
11071 SPARC_BUILTIN_FHSUBD, df_ftype_df_df);
11072 def_builtin_const ("__builtin_vis_fnhadds", CODE_FOR_fnhaddsf_vis,
11073 SPARC_BUILTIN_FNHADDS, sf_ftype_sf_sf);
11074 def_builtin_const ("__builtin_vis_fnhaddd", CODE_FOR_fnhadddf_vis,
11075 SPARC_BUILTIN_FNHADDD, df_ftype_df_df);
11076
11077 def_builtin_const ("__builtin_vis_umulxhi", CODE_FOR_umulxhi_vis,
11078 SPARC_BUILTIN_UMULXHI, di_ftype_di_di);
11079 def_builtin_const ("__builtin_vis_xmulx", CODE_FOR_xmulx_vis,
11080 SPARC_BUILTIN_XMULX, di_ftype_di_di);
11081 def_builtin_const ("__builtin_vis_xmulxhi", CODE_FOR_xmulxhi_vis,
11082 SPARC_BUILTIN_XMULXHI, di_ftype_di_di);
11083 }
11084
11085 if (TARGET_VIS4)
11086 {
11087 def_builtin_const ("__builtin_vis_fpadd8", CODE_FOR_addv8qi3,
11088 SPARC_BUILTIN_FPADD8, v8qi_ftype_v8qi_v8qi);
11089 def_builtin_const ("__builtin_vis_fpadds8", CODE_FOR_ssaddv8qi3,
11090 SPARC_BUILTIN_FPADDS8, v8qi_ftype_v8qi_v8qi);
11091 def_builtin_const ("__builtin_vis_fpaddus8", CODE_FOR_usaddv8qi3,
11092 SPARC_BUILTIN_FPADDUS8, v8qi_ftype_v8qi_v8qi);
11093 def_builtin_const ("__builtin_vis_fpaddus16", CODE_FOR_usaddv4hi3,
11094 SPARC_BUILTIN_FPADDUS16, v4hi_ftype_v4hi_v4hi);
11095
11096
11097 if (TARGET_ARCH64)
11098 {
11099 def_builtin_const ("__builtin_vis_fpcmple8", CODE_FOR_fpcmple8di_vis,
11100 SPARC_BUILTIN_FPCMPLE8, di_ftype_v8qi_v8qi);
11101 def_builtin_const ("__builtin_vis_fpcmpgt8", CODE_FOR_fpcmpgt8di_vis,
11102 SPARC_BUILTIN_FPCMPGT8, di_ftype_v8qi_v8qi);
11103 def_builtin_const ("__builtin_vis_fpcmpule16", CODE_FOR_fpcmpule16di_vis,
11104 SPARC_BUILTIN_FPCMPULE16, di_ftype_v4hi_v4hi);
11105 def_builtin_const ("__builtin_vis_fpcmpugt16", CODE_FOR_fpcmpugt16di_vis,
11106 SPARC_BUILTIN_FPCMPUGT16, di_ftype_v4hi_v4hi);
11107 def_builtin_const ("__builtin_vis_fpcmpule32", CODE_FOR_fpcmpule32di_vis,
11108 SPARC_BUILTIN_FPCMPULE32, di_ftype_v2si_v2si);
11109 def_builtin_const ("__builtin_vis_fpcmpugt32", CODE_FOR_fpcmpugt32di_vis,
11110 SPARC_BUILTIN_FPCMPUGT32, di_ftype_v2si_v2si);
11111 }
11112 else
11113 {
11114 def_builtin_const ("__builtin_vis_fpcmple8", CODE_FOR_fpcmple8si_vis,
11115 SPARC_BUILTIN_FPCMPLE8, si_ftype_v8qi_v8qi);
11116 def_builtin_const ("__builtin_vis_fpcmpgt8", CODE_FOR_fpcmpgt8si_vis,
11117 SPARC_BUILTIN_FPCMPGT8, si_ftype_v8qi_v8qi);
11118 def_builtin_const ("__builtin_vis_fpcmpule16", CODE_FOR_fpcmpule16si_vis,
11119 SPARC_BUILTIN_FPCMPULE16, si_ftype_v4hi_v4hi);
11120 def_builtin_const ("__builtin_vis_fpcmpugt16", CODE_FOR_fpcmpugt16si_vis,
11121 SPARC_BUILTIN_FPCMPUGT16, si_ftype_v4hi_v4hi);
11122 def_builtin_const ("__builtin_vis_fpcmpule32", CODE_FOR_fpcmpule32si_vis,
11123 SPARC_BUILTIN_FPCMPULE32, di_ftype_v2si_v2si);
11124 def_builtin_const ("__builtin_vis_fpcmpugt32", CODE_FOR_fpcmpugt32si_vis,
11125 SPARC_BUILTIN_FPCMPUGT32, di_ftype_v2si_v2si);
11126 }
11127
11128 def_builtin_const ("__builtin_vis_fpmax8", CODE_FOR_maxv8qi3,
11129 SPARC_BUILTIN_FPMAX8, v8qi_ftype_v8qi_v8qi);
11130 def_builtin_const ("__builtin_vis_fpmax16", CODE_FOR_maxv4hi3,
11131 SPARC_BUILTIN_FPMAX16, v4hi_ftype_v4hi_v4hi);
11132 def_builtin_const ("__builtin_vis_fpmax32", CODE_FOR_maxv2si3,
11133 SPARC_BUILTIN_FPMAX32, v2si_ftype_v2si_v2si);
11134 def_builtin_const ("__builtin_vis_fpmaxu8", CODE_FOR_maxuv8qi3,
11135 SPARC_BUILTIN_FPMAXU8, v8qi_ftype_v8qi_v8qi);
11136 def_builtin_const ("__builtin_vis_fpmaxu16", CODE_FOR_maxuv4hi3,
11137 SPARC_BUILTIN_FPMAXU16, v4hi_ftype_v4hi_v4hi);
11138 def_builtin_const ("__builtin_vis_fpmaxu32", CODE_FOR_maxuv2si3,
11139 SPARC_BUILTIN_FPMAXU32, v2si_ftype_v2si_v2si);
11140 def_builtin_const ("__builtin_vis_fpmin8", CODE_FOR_minv8qi3,
11141 SPARC_BUILTIN_FPMIN8, v8qi_ftype_v8qi_v8qi);
11142 def_builtin_const ("__builtin_vis_fpmin16", CODE_FOR_minv4hi3,
11143 SPARC_BUILTIN_FPMIN16, v4hi_ftype_v4hi_v4hi);
11144 def_builtin_const ("__builtin_vis_fpmin32", CODE_FOR_minv2si3,
11145 SPARC_BUILTIN_FPMIN32, v2si_ftype_v2si_v2si);
11146 def_builtin_const ("__builtin_vis_fpminu8", CODE_FOR_minuv8qi3,
11147 SPARC_BUILTIN_FPMINU8, v8qi_ftype_v8qi_v8qi);
11148 def_builtin_const ("__builtin_vis_fpminu16", CODE_FOR_minuv4hi3,
11149 SPARC_BUILTIN_FPMINU16, v4hi_ftype_v4hi_v4hi);
11150 def_builtin_const ("__builtin_vis_fpminu32", CODE_FOR_minuv2si3,
11151 SPARC_BUILTIN_FPMINU32, v2si_ftype_v2si_v2si);
11152 def_builtin_const ("__builtin_vis_fpsub8", CODE_FOR_subv8qi3,
11153 SPARC_BUILTIN_FPSUB8, v8qi_ftype_v8qi_v8qi);
11154 def_builtin_const ("__builtin_vis_fpsubs8", CODE_FOR_sssubv8qi3,
11155 SPARC_BUILTIN_FPSUBS8, v8qi_ftype_v8qi_v8qi);
11156 def_builtin_const ("__builtin_vis_fpsubus8", CODE_FOR_ussubv8qi3,
11157 SPARC_BUILTIN_FPSUBUS8, v8qi_ftype_v8qi_v8qi);
11158 def_builtin_const ("__builtin_vis_fpsubus16", CODE_FOR_ussubv4hi3,
11159 SPARC_BUILTIN_FPSUBUS16, v4hi_ftype_v4hi_v4hi);
11160 }
11161
11162 if (TARGET_VIS4B)
11163 {
11164 def_builtin_const ("__builtin_vis_dictunpack8", CODE_FOR_dictunpack8,
11165 SPARC_BUILTIN_DICTUNPACK8, v8qi_ftype_df_si);
11166 def_builtin_const ("__builtin_vis_dictunpack16", CODE_FOR_dictunpack16,
11167 SPARC_BUILTIN_DICTUNPACK16, v4hi_ftype_df_si);
11168 def_builtin_const ("__builtin_vis_dictunpack32", CODE_FOR_dictunpack32,
11169 SPARC_BUILTIN_DICTUNPACK32, v2si_ftype_df_si);
11170
11171 if (TARGET_ARCH64)
11172 {
11173 tree di_ftype_v8qi_v8qi_si = build_function_type_list (intDI_type_node,
11174 v8qi, v8qi,
11175 intSI_type_node, 0);
11176 tree di_ftype_v4hi_v4hi_si = build_function_type_list (intDI_type_node,
11177 v4hi, v4hi,
11178 intSI_type_node, 0);
11179 tree di_ftype_v2si_v2si_si = build_function_type_list (intDI_type_node,
11180 v2si, v2si,
11181 intSI_type_node, 0);
11182
11183 def_builtin_const ("__builtin_vis_fpcmple8shl", CODE_FOR_fpcmple8dishl,
11184 SPARC_BUILTIN_FPCMPLE8SHL, di_ftype_v8qi_v8qi_si);
11185 def_builtin_const ("__builtin_vis_fpcmpgt8shl", CODE_FOR_fpcmpgt8dishl,
11186 SPARC_BUILTIN_FPCMPGT8SHL, di_ftype_v8qi_v8qi_si);
11187 def_builtin_const ("__builtin_vis_fpcmpeq8shl", CODE_FOR_fpcmpeq8dishl,
11188 SPARC_BUILTIN_FPCMPEQ8SHL, di_ftype_v8qi_v8qi_si);
11189 def_builtin_const ("__builtin_vis_fpcmpne8shl", CODE_FOR_fpcmpne8dishl,
11190 SPARC_BUILTIN_FPCMPNE8SHL, di_ftype_v8qi_v8qi_si);
11191
11192 def_builtin_const ("__builtin_vis_fpcmple16shl", CODE_FOR_fpcmple16dishl,
11193 SPARC_BUILTIN_FPCMPLE16SHL, di_ftype_v4hi_v4hi_si);
11194 def_builtin_const ("__builtin_vis_fpcmpgt16shl", CODE_FOR_fpcmpgt16dishl,
11195 SPARC_BUILTIN_FPCMPGT16SHL, di_ftype_v4hi_v4hi_si);
11196 def_builtin_const ("__builtin_vis_fpcmpeq16shl", CODE_FOR_fpcmpeq16dishl,
11197 SPARC_BUILTIN_FPCMPEQ16SHL, di_ftype_v4hi_v4hi_si);
11198 def_builtin_const ("__builtin_vis_fpcmpne16shl", CODE_FOR_fpcmpne16dishl,
11199 SPARC_BUILTIN_FPCMPNE16SHL, di_ftype_v4hi_v4hi_si);
11200
11201 def_builtin_const ("__builtin_vis_fpcmple32shl", CODE_FOR_fpcmple32dishl,
11202 SPARC_BUILTIN_FPCMPLE32SHL, di_ftype_v2si_v2si_si);
11203 def_builtin_const ("__builtin_vis_fpcmpgt32shl", CODE_FOR_fpcmpgt32dishl,
11204 SPARC_BUILTIN_FPCMPGT32SHL, di_ftype_v2si_v2si_si);
11205 def_builtin_const ("__builtin_vis_fpcmpeq32shl", CODE_FOR_fpcmpeq32dishl,
11206 SPARC_BUILTIN_FPCMPEQ32SHL, di_ftype_v2si_v2si_si);
11207 def_builtin_const ("__builtin_vis_fpcmpne32shl", CODE_FOR_fpcmpne32dishl,
11208 SPARC_BUILTIN_FPCMPNE32SHL, di_ftype_v2si_v2si_si);
11209
11210
11211 def_builtin_const ("__builtin_vis_fpcmpule8shl", CODE_FOR_fpcmpule8dishl,
11212 SPARC_BUILTIN_FPCMPULE8SHL, di_ftype_v8qi_v8qi_si);
11213 def_builtin_const ("__builtin_vis_fpcmpugt8shl", CODE_FOR_fpcmpugt8dishl,
11214 SPARC_BUILTIN_FPCMPUGT8SHL, di_ftype_v8qi_v8qi_si);
11215
11216 def_builtin_const ("__builtin_vis_fpcmpule16shl", CODE_FOR_fpcmpule16dishl,
11217 SPARC_BUILTIN_FPCMPULE16SHL, di_ftype_v4hi_v4hi_si);
11218 def_builtin_const ("__builtin_vis_fpcmpugt16shl", CODE_FOR_fpcmpugt16dishl,
11219 SPARC_BUILTIN_FPCMPUGT16SHL, di_ftype_v4hi_v4hi_si);
11220
11221 def_builtin_const ("__builtin_vis_fpcmpule32shl", CODE_FOR_fpcmpule32dishl,
11222 SPARC_BUILTIN_FPCMPULE32SHL, di_ftype_v2si_v2si_si);
11223 def_builtin_const ("__builtin_vis_fpcmpugt32shl", CODE_FOR_fpcmpugt32dishl,
11224 SPARC_BUILTIN_FPCMPUGT32SHL, di_ftype_v2si_v2si_si);
11225
11226 def_builtin_const ("__builtin_vis_fpcmpde8shl", CODE_FOR_fpcmpde8dishl,
11227 SPARC_BUILTIN_FPCMPDE8SHL, di_ftype_v8qi_v8qi_si);
11228 def_builtin_const ("__builtin_vis_fpcmpde16shl", CODE_FOR_fpcmpde16dishl,
11229 SPARC_BUILTIN_FPCMPDE16SHL, di_ftype_v4hi_v4hi_si);
11230 def_builtin_const ("__builtin_vis_fpcmpde32shl", CODE_FOR_fpcmpde32dishl,
11231 SPARC_BUILTIN_FPCMPDE32SHL, di_ftype_v2si_v2si_si);
11232
11233 def_builtin_const ("__builtin_vis_fpcmpur8shl", CODE_FOR_fpcmpur8dishl,
11234 SPARC_BUILTIN_FPCMPUR8SHL, di_ftype_v8qi_v8qi_si);
11235 def_builtin_const ("__builtin_vis_fpcmpur16shl", CODE_FOR_fpcmpur16dishl,
11236 SPARC_BUILTIN_FPCMPUR16SHL, di_ftype_v4hi_v4hi_si);
11237 def_builtin_const ("__builtin_vis_fpcmpur32shl", CODE_FOR_fpcmpur32dishl,
11238 SPARC_BUILTIN_FPCMPUR32SHL, di_ftype_v2si_v2si_si);
11239
11240 }
11241 else
11242 {
11243 tree si_ftype_v8qi_v8qi_si = build_function_type_list (intSI_type_node,
11244 v8qi, v8qi,
11245 intSI_type_node, 0);
11246 tree si_ftype_v4hi_v4hi_si = build_function_type_list (intSI_type_node,
11247 v4hi, v4hi,
11248 intSI_type_node, 0);
11249 tree si_ftype_v2si_v2si_si = build_function_type_list (intSI_type_node,
11250 v2si, v2si,
11251 intSI_type_node, 0);
11252
11253 def_builtin_const ("__builtin_vis_fpcmple8shl", CODE_FOR_fpcmple8sishl,
11254 SPARC_BUILTIN_FPCMPLE8SHL, si_ftype_v8qi_v8qi_si);
11255 def_builtin_const ("__builtin_vis_fpcmpgt8shl", CODE_FOR_fpcmpgt8sishl,
11256 SPARC_BUILTIN_FPCMPGT8SHL, si_ftype_v8qi_v8qi_si);
11257 def_builtin_const ("__builtin_vis_fpcmpeq8shl", CODE_FOR_fpcmpeq8sishl,
11258 SPARC_BUILTIN_FPCMPEQ8SHL, si_ftype_v8qi_v8qi_si);
11259 def_builtin_const ("__builtin_vis_fpcmpne8shl", CODE_FOR_fpcmpne8sishl,
11260 SPARC_BUILTIN_FPCMPNE8SHL, si_ftype_v8qi_v8qi_si);
11261
11262 def_builtin_const ("__builtin_vis_fpcmple16shl", CODE_FOR_fpcmple16sishl,
11263 SPARC_BUILTIN_FPCMPLE16SHL, si_ftype_v4hi_v4hi_si);
11264 def_builtin_const ("__builtin_vis_fpcmpgt16shl", CODE_FOR_fpcmpgt16sishl,
11265 SPARC_BUILTIN_FPCMPGT16SHL, si_ftype_v4hi_v4hi_si);
11266 def_builtin_const ("__builtin_vis_fpcmpeq16shl", CODE_FOR_fpcmpeq16sishl,
11267 SPARC_BUILTIN_FPCMPEQ16SHL, si_ftype_v4hi_v4hi_si);
11268 def_builtin_const ("__builtin_vis_fpcmpne16shl", CODE_FOR_fpcmpne16sishl,
11269 SPARC_BUILTIN_FPCMPNE16SHL, si_ftype_v4hi_v4hi_si);
11270
11271 def_builtin_const ("__builtin_vis_fpcmple32shl", CODE_FOR_fpcmple32sishl,
11272 SPARC_BUILTIN_FPCMPLE32SHL, si_ftype_v2si_v2si_si);
11273 def_builtin_const ("__builtin_vis_fpcmpgt32shl", CODE_FOR_fpcmpgt32sishl,
11274 SPARC_BUILTIN_FPCMPGT32SHL, si_ftype_v2si_v2si_si);
11275 def_builtin_const ("__builtin_vis_fpcmpeq32shl", CODE_FOR_fpcmpeq32sishl,
11276 SPARC_BUILTIN_FPCMPEQ32SHL, si_ftype_v2si_v2si_si);
11277 def_builtin_const ("__builtin_vis_fpcmpne32shl", CODE_FOR_fpcmpne32sishl,
11278 SPARC_BUILTIN_FPCMPNE32SHL, si_ftype_v2si_v2si_si);
11279
11280
11281 def_builtin_const ("__builtin_vis_fpcmpule8shl", CODE_FOR_fpcmpule8sishl,
11282 SPARC_BUILTIN_FPCMPULE8SHL, si_ftype_v8qi_v8qi_si);
11283 def_builtin_const ("__builtin_vis_fpcmpugt8shl", CODE_FOR_fpcmpugt8sishl,
11284 SPARC_BUILTIN_FPCMPUGT8SHL, si_ftype_v8qi_v8qi_si);
11285
11286 def_builtin_const ("__builtin_vis_fpcmpule16shl", CODE_FOR_fpcmpule16sishl,
11287 SPARC_BUILTIN_FPCMPULE16SHL, si_ftype_v4hi_v4hi_si);
11288 def_builtin_const ("__builtin_vis_fpcmpugt16shl", CODE_FOR_fpcmpugt16sishl,
11289 SPARC_BUILTIN_FPCMPUGT16SHL, si_ftype_v4hi_v4hi_si);
11290
11291 def_builtin_const ("__builtin_vis_fpcmpule32shl", CODE_FOR_fpcmpule32sishl,
11292 SPARC_BUILTIN_FPCMPULE32SHL, si_ftype_v2si_v2si_si);
11293 def_builtin_const ("__builtin_vis_fpcmpugt32shl", CODE_FOR_fpcmpugt32sishl,
11294 SPARC_BUILTIN_FPCMPUGT32SHL, si_ftype_v2si_v2si_si);
11295
11296 def_builtin_const ("__builtin_vis_fpcmpde8shl", CODE_FOR_fpcmpde8sishl,
11297 SPARC_BUILTIN_FPCMPDE8SHL, si_ftype_v8qi_v8qi_si);
11298 def_builtin_const ("__builtin_vis_fpcmpde16shl", CODE_FOR_fpcmpde16sishl,
11299 SPARC_BUILTIN_FPCMPDE16SHL, si_ftype_v4hi_v4hi_si);
11300 def_builtin_const ("__builtin_vis_fpcmpde32shl", CODE_FOR_fpcmpde32sishl,
11301 SPARC_BUILTIN_FPCMPDE32SHL, si_ftype_v2si_v2si_si);
11302
11303 def_builtin_const ("__builtin_vis_fpcmpur8shl", CODE_FOR_fpcmpur8sishl,
11304 SPARC_BUILTIN_FPCMPUR8SHL, si_ftype_v8qi_v8qi_si);
11305 def_builtin_const ("__builtin_vis_fpcmpur16shl", CODE_FOR_fpcmpur16sishl,
11306 SPARC_BUILTIN_FPCMPUR16SHL, si_ftype_v4hi_v4hi_si);
11307 def_builtin_const ("__builtin_vis_fpcmpur32shl", CODE_FOR_fpcmpur32sishl,
11308 SPARC_BUILTIN_FPCMPUR32SHL, si_ftype_v2si_v2si_si);
11309 }
11310 }
11311 }
11312
11313 /* Implement TARGET_BUILTIN_DECL hook. */
11314
11315 static tree
11316 sparc_builtin_decl (unsigned code, bool initialize_p ATTRIBUTE_UNUSED)
11317 {
11318 if (code >= SPARC_BUILTIN_MAX)
11319 return error_mark_node;
11320
11321 return sparc_builtins[code];
11322 }
11323
11324 /* Implemented TARGET_EXPAND_BUILTIN hook. */
11325
11326 static rtx
11327 sparc_expand_builtin (tree exp, rtx target,
11328 rtx subtarget ATTRIBUTE_UNUSED,
11329 machine_mode tmode ATTRIBUTE_UNUSED,
11330 int ignore ATTRIBUTE_UNUSED)
11331 {
11332 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
11333 enum sparc_builtins code = (enum sparc_builtins) DECL_FUNCTION_CODE (fndecl);
11334 enum insn_code icode = sparc_builtins_icode[code];
11335 bool nonvoid = TREE_TYPE (TREE_TYPE (fndecl)) != void_type_node;
11336 call_expr_arg_iterator iter;
11337 int arg_count = 0;
11338 rtx pat, op[4];
11339 tree arg;
11340
11341 if (nonvoid)
11342 {
11343 machine_mode tmode = insn_data[icode].operand[0].mode;
11344 if (!target
11345 || GET_MODE (target) != tmode
11346 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
11347 op[0] = gen_reg_rtx (tmode);
11348 else
11349 op[0] = target;
11350 }
11351
11352 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
11353 {
11354 const struct insn_operand_data *insn_op;
11355 int idx;
11356
11357 if (arg == error_mark_node)
11358 return NULL_RTX;
11359
11360 arg_count++;
11361 idx = arg_count - !nonvoid;
11362 insn_op = &insn_data[icode].operand[idx];
11363 op[arg_count] = expand_normal (arg);
11364
11365 /* Some of the builtins require constant arguments. We check
11366 for this here. */
11367 if ((code >= SPARC_BUILTIN_FIRST_FPCMPSHL
11368 && code <= SPARC_BUILTIN_LAST_FPCMPSHL
11369 && arg_count == 3)
11370 || (code >= SPARC_BUILTIN_FIRST_DICTUNPACK
11371 && code <= SPARC_BUILTIN_LAST_DICTUNPACK
11372 && arg_count == 2))
11373 {
11374 if (!check_constant_argument (icode, idx, op[arg_count]))
11375 return const0_rtx;
11376 }
11377
11378 if (code == SPARC_BUILTIN_LDFSR || code == SPARC_BUILTIN_STFSR)
11379 {
11380 if (!address_operand (op[arg_count], SImode))
11381 {
11382 op[arg_count] = convert_memory_address (Pmode, op[arg_count]);
11383 op[arg_count] = copy_addr_to_reg (op[arg_count]);
11384 }
11385 op[arg_count] = gen_rtx_MEM (SImode, op[arg_count]);
11386 }
11387
11388 else if (insn_op->mode == V1DImode
11389 && GET_MODE (op[arg_count]) == DImode)
11390 op[arg_count] = gen_lowpart (V1DImode, op[arg_count]);
11391
11392 else if (insn_op->mode == V1SImode
11393 && GET_MODE (op[arg_count]) == SImode)
11394 op[arg_count] = gen_lowpart (V1SImode, op[arg_count]);
11395
11396 if (! (*insn_data[icode].operand[idx].predicate) (op[arg_count],
11397 insn_op->mode))
11398 op[arg_count] = copy_to_mode_reg (insn_op->mode, op[arg_count]);
11399 }
11400
11401 switch (arg_count)
11402 {
11403 case 0:
11404 pat = GEN_FCN (icode) (op[0]);
11405 break;
11406 case 1:
11407 if (nonvoid)
11408 pat = GEN_FCN (icode) (op[0], op[1]);
11409 else
11410 pat = GEN_FCN (icode) (op[1]);
11411 break;
11412 case 2:
11413 pat = GEN_FCN (icode) (op[0], op[1], op[2]);
11414 break;
11415 case 3:
11416 pat = GEN_FCN (icode) (op[0], op[1], op[2], op[3]);
11417 break;
11418 default:
11419 gcc_unreachable ();
11420 }
11421
11422 if (!pat)
11423 return NULL_RTX;
11424
11425 emit_insn (pat);
11426
11427 return (nonvoid ? op[0] : const0_rtx);
11428 }
11429
11430 /* Return the upper 16 bits of the 8x16 multiplication. */
11431
11432 static int
11433 sparc_vis_mul8x16 (int e8, int e16)
11434 {
11435 return (e8 * e16 + 128) / 256;
11436 }
11437
11438 /* Multiply the VECTOR_CSTs CST0 and CST1 as specified by FNCODE and put
11439 the result into the array N_ELTS, whose elements are of INNER_TYPE. */
11440
11441 static void
11442 sparc_handle_vis_mul8x16 (tree *n_elts, enum sparc_builtins fncode,
11443 tree inner_type, tree cst0, tree cst1)
11444 {
11445 unsigned i, num = VECTOR_CST_NELTS (cst0);
11446 int scale;
11447
11448 switch (fncode)
11449 {
11450 case SPARC_BUILTIN_FMUL8X16:
11451 for (i = 0; i < num; ++i)
11452 {
11453 int val
11454 = sparc_vis_mul8x16 (TREE_INT_CST_LOW (VECTOR_CST_ELT (cst0, i)),
11455 TREE_INT_CST_LOW (VECTOR_CST_ELT (cst1, i)));
11456 n_elts[i] = build_int_cst (inner_type, val);
11457 }
11458 break;
11459
11460 case SPARC_BUILTIN_FMUL8X16AU:
11461 scale = TREE_INT_CST_LOW (VECTOR_CST_ELT (cst1, 0));
11462
11463 for (i = 0; i < num; ++i)
11464 {
11465 int val
11466 = sparc_vis_mul8x16 (TREE_INT_CST_LOW (VECTOR_CST_ELT (cst0, i)),
11467 scale);
11468 n_elts[i] = build_int_cst (inner_type, val);
11469 }
11470 break;
11471
11472 case SPARC_BUILTIN_FMUL8X16AL:
11473 scale = TREE_INT_CST_LOW (VECTOR_CST_ELT (cst1, 1));
11474
11475 for (i = 0; i < num; ++i)
11476 {
11477 int val
11478 = sparc_vis_mul8x16 (TREE_INT_CST_LOW (VECTOR_CST_ELT (cst0, i)),
11479 scale);
11480 n_elts[i] = build_int_cst (inner_type, val);
11481 }
11482 break;
11483
11484 default:
11485 gcc_unreachable ();
11486 }
11487 }
11488
11489 /* Implement TARGET_FOLD_BUILTIN hook.
11490
11491 Fold builtin functions for SPARC intrinsics. If IGNORE is true the
11492 result of the function call is ignored. NULL_TREE is returned if the
11493 function could not be folded. */
11494
11495 static tree
11496 sparc_fold_builtin (tree fndecl, int n_args ATTRIBUTE_UNUSED,
11497 tree *args, bool ignore)
11498 {
11499 enum sparc_builtins code = (enum sparc_builtins) DECL_FUNCTION_CODE (fndecl);
11500 tree rtype = TREE_TYPE (TREE_TYPE (fndecl));
11501 tree arg0, arg1, arg2;
11502
11503 if (ignore)
11504 switch (code)
11505 {
11506 case SPARC_BUILTIN_LDFSR:
11507 case SPARC_BUILTIN_STFSR:
11508 case SPARC_BUILTIN_ALIGNADDR:
11509 case SPARC_BUILTIN_WRGSR:
11510 case SPARC_BUILTIN_BMASK:
11511 case SPARC_BUILTIN_CMASK8:
11512 case SPARC_BUILTIN_CMASK16:
11513 case SPARC_BUILTIN_CMASK32:
11514 break;
11515
11516 default:
11517 return build_zero_cst (rtype);
11518 }
11519
11520 switch (code)
11521 {
11522 case SPARC_BUILTIN_FEXPAND:
11523 arg0 = args[0];
11524 STRIP_NOPS (arg0);
11525
11526 if (TREE_CODE (arg0) == VECTOR_CST)
11527 {
11528 tree inner_type = TREE_TYPE (rtype);
11529 tree *n_elts;
11530 unsigned i;
11531
11532 n_elts = XALLOCAVEC (tree, VECTOR_CST_NELTS (arg0));
11533 for (i = 0; i < VECTOR_CST_NELTS (arg0); ++i)
11534 n_elts[i] = build_int_cst (inner_type,
11535 TREE_INT_CST_LOW
11536 (VECTOR_CST_ELT (arg0, i)) << 4);
11537 return build_vector (rtype, n_elts);
11538 }
11539 break;
11540
11541 case SPARC_BUILTIN_FMUL8X16:
11542 case SPARC_BUILTIN_FMUL8X16AU:
11543 case SPARC_BUILTIN_FMUL8X16AL:
11544 arg0 = args[0];
11545 arg1 = args[1];
11546 STRIP_NOPS (arg0);
11547 STRIP_NOPS (arg1);
11548
11549 if (TREE_CODE (arg0) == VECTOR_CST && TREE_CODE (arg1) == VECTOR_CST)
11550 {
11551 tree inner_type = TREE_TYPE (rtype);
11552 tree *n_elts = XALLOCAVEC (tree, VECTOR_CST_NELTS (arg0));
11553 sparc_handle_vis_mul8x16 (n_elts, code, inner_type, arg0, arg1);
11554 return build_vector (rtype, n_elts);
11555 }
11556 break;
11557
11558 case SPARC_BUILTIN_FPMERGE:
11559 arg0 = args[0];
11560 arg1 = args[1];
11561 STRIP_NOPS (arg0);
11562 STRIP_NOPS (arg1);
11563
11564 if (TREE_CODE (arg0) == VECTOR_CST && TREE_CODE (arg1) == VECTOR_CST)
11565 {
11566 tree *n_elts = XALLOCAVEC (tree, 2 * VECTOR_CST_NELTS (arg0));
11567 unsigned i;
11568 for (i = 0; i < VECTOR_CST_NELTS (arg0); ++i)
11569 {
11570 n_elts[2*i] = VECTOR_CST_ELT (arg0, i);
11571 n_elts[2*i+1] = VECTOR_CST_ELT (arg1, i);
11572 }
11573
11574 return build_vector (rtype, n_elts);
11575 }
11576 break;
11577
11578 case SPARC_BUILTIN_PDIST:
11579 case SPARC_BUILTIN_PDISTN:
11580 arg0 = args[0];
11581 arg1 = args[1];
11582 STRIP_NOPS (arg0);
11583 STRIP_NOPS (arg1);
11584 if (code == SPARC_BUILTIN_PDIST)
11585 {
11586 arg2 = args[2];
11587 STRIP_NOPS (arg2);
11588 }
11589 else
11590 arg2 = integer_zero_node;
11591
11592 if (TREE_CODE (arg0) == VECTOR_CST
11593 && TREE_CODE (arg1) == VECTOR_CST
11594 && TREE_CODE (arg2) == INTEGER_CST)
11595 {
11596 bool overflow = false;
11597 widest_int result = wi::to_widest (arg2);
11598 widest_int tmp;
11599 unsigned i;
11600
11601 for (i = 0; i < VECTOR_CST_NELTS (arg0); ++i)
11602 {
11603 tree e0 = VECTOR_CST_ELT (arg0, i);
11604 tree e1 = VECTOR_CST_ELT (arg1, i);
11605
11606 bool neg1_ovf, neg2_ovf, add1_ovf, add2_ovf;
11607
11608 tmp = wi::neg (wi::to_widest (e1), &neg1_ovf);
11609 tmp = wi::add (wi::to_widest (e0), tmp, SIGNED, &add1_ovf);
11610 if (wi::neg_p (tmp))
11611 tmp = wi::neg (tmp, &neg2_ovf);
11612 else
11613 neg2_ovf = false;
11614 result = wi::add (result, tmp, SIGNED, &add2_ovf);
11615 overflow |= neg1_ovf | neg2_ovf | add1_ovf | add2_ovf;
11616 }
11617
11618 gcc_assert (!overflow);
11619
11620 return wide_int_to_tree (rtype, result);
11621 }
11622
11623 default:
11624 break;
11625 }
11626
11627 return NULL_TREE;
11628 }
11629 \f
11630 /* ??? This duplicates information provided to the compiler by the
11631 ??? scheduler description. Some day, teach genautomata to output
11632 ??? the latencies and then CSE will just use that. */
11633
11634 static bool
11635 sparc_rtx_costs (rtx x, machine_mode mode, int outer_code,
11636 int opno ATTRIBUTE_UNUSED,
11637 int *total, bool speed ATTRIBUTE_UNUSED)
11638 {
11639 int code = GET_CODE (x);
11640 bool float_mode_p = FLOAT_MODE_P (mode);
11641
11642 switch (code)
11643 {
11644 case CONST_INT:
11645 if (SMALL_INT (x))
11646 *total = 0;
11647 else
11648 *total = 2;
11649 return true;
11650
11651 case CONST_WIDE_INT:
11652 *total = 0;
11653 if (!SPARC_SIMM13_P (CONST_WIDE_INT_ELT (x, 0)))
11654 *total += 2;
11655 if (!SPARC_SIMM13_P (CONST_WIDE_INT_ELT (x, 1)))
11656 *total += 2;
11657 return true;
11658
11659 case HIGH:
11660 *total = 2;
11661 return true;
11662
11663 case CONST:
11664 case LABEL_REF:
11665 case SYMBOL_REF:
11666 *total = 4;
11667 return true;
11668
11669 case CONST_DOUBLE:
11670 *total = 8;
11671 return true;
11672
11673 case MEM:
11674 /* If outer-code was a sign or zero extension, a cost
11675 of COSTS_N_INSNS (1) was already added in. This is
11676 why we are subtracting it back out. */
11677 if (outer_code == ZERO_EXTEND)
11678 {
11679 *total = sparc_costs->int_zload - COSTS_N_INSNS (1);
11680 }
11681 else if (outer_code == SIGN_EXTEND)
11682 {
11683 *total = sparc_costs->int_sload - COSTS_N_INSNS (1);
11684 }
11685 else if (float_mode_p)
11686 {
11687 *total = sparc_costs->float_load;
11688 }
11689 else
11690 {
11691 *total = sparc_costs->int_load;
11692 }
11693
11694 return true;
11695
11696 case PLUS:
11697 case MINUS:
11698 if (float_mode_p)
11699 *total = sparc_costs->float_plusminus;
11700 else
11701 *total = COSTS_N_INSNS (1);
11702 return false;
11703
11704 case FMA:
11705 {
11706 rtx sub;
11707
11708 gcc_assert (float_mode_p);
11709 *total = sparc_costs->float_mul;
11710
11711 sub = XEXP (x, 0);
11712 if (GET_CODE (sub) == NEG)
11713 sub = XEXP (sub, 0);
11714 *total += rtx_cost (sub, mode, FMA, 0, speed);
11715
11716 sub = XEXP (x, 2);
11717 if (GET_CODE (sub) == NEG)
11718 sub = XEXP (sub, 0);
11719 *total += rtx_cost (sub, mode, FMA, 2, speed);
11720 return true;
11721 }
11722
11723 case MULT:
11724 if (float_mode_p)
11725 *total = sparc_costs->float_mul;
11726 else if (TARGET_ARCH32 && !TARGET_HARD_MUL)
11727 *total = COSTS_N_INSNS (25);
11728 else
11729 {
11730 int bit_cost;
11731
11732 bit_cost = 0;
11733 if (sparc_costs->int_mul_bit_factor)
11734 {
11735 int nbits;
11736
11737 if (GET_CODE (XEXP (x, 1)) == CONST_INT)
11738 {
11739 unsigned HOST_WIDE_INT value = INTVAL (XEXP (x, 1));
11740 for (nbits = 0; value != 0; value &= value - 1)
11741 nbits++;
11742 }
11743 else
11744 nbits = 7;
11745
11746 if (nbits < 3)
11747 nbits = 3;
11748 bit_cost = (nbits - 3) / sparc_costs->int_mul_bit_factor;
11749 bit_cost = COSTS_N_INSNS (bit_cost);
11750 }
11751
11752 if (mode == DImode || !TARGET_HARD_MUL)
11753 *total = sparc_costs->int_mulX + bit_cost;
11754 else
11755 *total = sparc_costs->int_mul + bit_cost;
11756 }
11757 return false;
11758
11759 case ASHIFT:
11760 case ASHIFTRT:
11761 case LSHIFTRT:
11762 *total = COSTS_N_INSNS (1) + sparc_costs->shift_penalty;
11763 return false;
11764
11765 case DIV:
11766 case UDIV:
11767 case MOD:
11768 case UMOD:
11769 if (float_mode_p)
11770 {
11771 if (mode == DFmode)
11772 *total = sparc_costs->float_div_df;
11773 else
11774 *total = sparc_costs->float_div_sf;
11775 }
11776 else
11777 {
11778 if (mode == DImode)
11779 *total = sparc_costs->int_divX;
11780 else
11781 *total = sparc_costs->int_div;
11782 }
11783 return false;
11784
11785 case NEG:
11786 if (! float_mode_p)
11787 {
11788 *total = COSTS_N_INSNS (1);
11789 return false;
11790 }
11791 /* FALLTHRU */
11792
11793 case ABS:
11794 case FLOAT:
11795 case UNSIGNED_FLOAT:
11796 case FIX:
11797 case UNSIGNED_FIX:
11798 case FLOAT_EXTEND:
11799 case FLOAT_TRUNCATE:
11800 *total = sparc_costs->float_move;
11801 return false;
11802
11803 case SQRT:
11804 if (mode == DFmode)
11805 *total = sparc_costs->float_sqrt_df;
11806 else
11807 *total = sparc_costs->float_sqrt_sf;
11808 return false;
11809
11810 case COMPARE:
11811 if (float_mode_p)
11812 *total = sparc_costs->float_cmp;
11813 else
11814 *total = COSTS_N_INSNS (1);
11815 return false;
11816
11817 case IF_THEN_ELSE:
11818 if (float_mode_p)
11819 *total = sparc_costs->float_cmove;
11820 else
11821 *total = sparc_costs->int_cmove;
11822 return false;
11823
11824 case IOR:
11825 /* Handle the NAND vector patterns. */
11826 if (sparc_vector_mode_supported_p (mode)
11827 && GET_CODE (XEXP (x, 0)) == NOT
11828 && GET_CODE (XEXP (x, 1)) == NOT)
11829 {
11830 *total = COSTS_N_INSNS (1);
11831 return true;
11832 }
11833 else
11834 return false;
11835
11836 default:
11837 return false;
11838 }
11839 }
11840
11841 /* Return true if CLASS is either GENERAL_REGS or I64_REGS. */
11842
11843 static inline bool
11844 general_or_i64_p (reg_class_t rclass)
11845 {
11846 return (rclass == GENERAL_REGS || rclass == I64_REGS);
11847 }
11848
11849 /* Implement TARGET_REGISTER_MOVE_COST. */
11850
11851 static int
11852 sparc_register_move_cost (machine_mode mode ATTRIBUTE_UNUSED,
11853 reg_class_t from, reg_class_t to)
11854 {
11855 bool need_memory = false;
11856
11857 /* This helps postreload CSE to eliminate redundant comparisons. */
11858 if (from == NO_REGS || to == NO_REGS)
11859 return 100;
11860
11861 if (from == FPCC_REGS || to == FPCC_REGS)
11862 need_memory = true;
11863 else if ((FP_REG_CLASS_P (from) && general_or_i64_p (to))
11864 || (general_or_i64_p (from) && FP_REG_CLASS_P (to)))
11865 {
11866 if (TARGET_VIS3)
11867 {
11868 int size = GET_MODE_SIZE (mode);
11869 if (size == 8 || size == 4)
11870 {
11871 if (! TARGET_ARCH32 || size == 4)
11872 return 4;
11873 else
11874 return 6;
11875 }
11876 }
11877 need_memory = true;
11878 }
11879
11880 if (need_memory)
11881 {
11882 if (sparc_cpu == PROCESSOR_ULTRASPARC
11883 || sparc_cpu == PROCESSOR_ULTRASPARC3
11884 || sparc_cpu == PROCESSOR_NIAGARA
11885 || sparc_cpu == PROCESSOR_NIAGARA2
11886 || sparc_cpu == PROCESSOR_NIAGARA3
11887 || sparc_cpu == PROCESSOR_NIAGARA4
11888 || sparc_cpu == PROCESSOR_NIAGARA7
11889 || sparc_cpu == PROCESSOR_M8)
11890 return 12;
11891
11892 return 6;
11893 }
11894
11895 return 2;
11896 }
11897
11898 /* Emit the sequence of insns SEQ while preserving the registers REG and REG2.
11899 This is achieved by means of a manual dynamic stack space allocation in
11900 the current frame. We make the assumption that SEQ doesn't contain any
11901 function calls, with the possible exception of calls to the GOT helper. */
11902
11903 static void
11904 emit_and_preserve (rtx seq, rtx reg, rtx reg2)
11905 {
11906 /* We must preserve the lowest 16 words for the register save area. */
11907 HOST_WIDE_INT offset = 16*UNITS_PER_WORD;
11908 /* We really need only 2 words of fresh stack space. */
11909 HOST_WIDE_INT size = SPARC_STACK_ALIGN (offset + 2*UNITS_PER_WORD);
11910
11911 rtx slot
11912 = gen_rtx_MEM (word_mode, plus_constant (Pmode, stack_pointer_rtx,
11913 SPARC_STACK_BIAS + offset));
11914
11915 emit_insn (gen_stack_pointer_inc (GEN_INT (-size)));
11916 emit_insn (gen_rtx_SET (slot, reg));
11917 if (reg2)
11918 emit_insn (gen_rtx_SET (adjust_address (slot, word_mode, UNITS_PER_WORD),
11919 reg2));
11920 emit_insn (seq);
11921 if (reg2)
11922 emit_insn (gen_rtx_SET (reg2,
11923 adjust_address (slot, word_mode, UNITS_PER_WORD)));
11924 emit_insn (gen_rtx_SET (reg, slot));
11925 emit_insn (gen_stack_pointer_inc (GEN_INT (size)));
11926 }
11927
11928 /* Output the assembler code for a thunk function. THUNK_DECL is the
11929 declaration for the thunk function itself, FUNCTION is the decl for
11930 the target function. DELTA is an immediate constant offset to be
11931 added to THIS. If VCALL_OFFSET is nonzero, the word at address
11932 (*THIS + VCALL_OFFSET) should be additionally added to THIS. */
11933
11934 static void
11935 sparc_output_mi_thunk (FILE *file, tree thunk_fndecl ATTRIBUTE_UNUSED,
11936 HOST_WIDE_INT delta, HOST_WIDE_INT vcall_offset,
11937 tree function)
11938 {
11939 rtx this_rtx, funexp;
11940 rtx_insn *insn;
11941 unsigned int int_arg_first;
11942
11943 reload_completed = 1;
11944 epilogue_completed = 1;
11945
11946 emit_note (NOTE_INSN_PROLOGUE_END);
11947
11948 if (TARGET_FLAT)
11949 {
11950 sparc_leaf_function_p = 1;
11951
11952 int_arg_first = SPARC_OUTGOING_INT_ARG_FIRST;
11953 }
11954 else if (flag_delayed_branch)
11955 {
11956 /* We will emit a regular sibcall below, so we need to instruct
11957 output_sibcall that we are in a leaf function. */
11958 sparc_leaf_function_p = crtl->uses_only_leaf_regs = 1;
11959
11960 /* This will cause final.c to invoke leaf_renumber_regs so we
11961 must behave as if we were in a not-yet-leafified function. */
11962 int_arg_first = SPARC_INCOMING_INT_ARG_FIRST;
11963 }
11964 else
11965 {
11966 /* We will emit the sibcall manually below, so we will need to
11967 manually spill non-leaf registers. */
11968 sparc_leaf_function_p = crtl->uses_only_leaf_regs = 0;
11969
11970 /* We really are in a leaf function. */
11971 int_arg_first = SPARC_OUTGOING_INT_ARG_FIRST;
11972 }
11973
11974 /* Find the "this" pointer. Normally in %o0, but in ARCH64 if the function
11975 returns a structure, the structure return pointer is there instead. */
11976 if (TARGET_ARCH64
11977 && aggregate_value_p (TREE_TYPE (TREE_TYPE (function)), function))
11978 this_rtx = gen_rtx_REG (Pmode, int_arg_first + 1);
11979 else
11980 this_rtx = gen_rtx_REG (Pmode, int_arg_first);
11981
11982 /* Add DELTA. When possible use a plain add, otherwise load it into
11983 a register first. */
11984 if (delta)
11985 {
11986 rtx delta_rtx = GEN_INT (delta);
11987
11988 if (! SPARC_SIMM13_P (delta))
11989 {
11990 rtx scratch = gen_rtx_REG (Pmode, 1);
11991 emit_move_insn (scratch, delta_rtx);
11992 delta_rtx = scratch;
11993 }
11994
11995 /* THIS_RTX += DELTA. */
11996 emit_insn (gen_add2_insn (this_rtx, delta_rtx));
11997 }
11998
11999 /* Add the word at address (*THIS_RTX + VCALL_OFFSET). */
12000 if (vcall_offset)
12001 {
12002 rtx vcall_offset_rtx = GEN_INT (vcall_offset);
12003 rtx scratch = gen_rtx_REG (Pmode, 1);
12004
12005 gcc_assert (vcall_offset < 0);
12006
12007 /* SCRATCH = *THIS_RTX. */
12008 emit_move_insn (scratch, gen_rtx_MEM (Pmode, this_rtx));
12009
12010 /* Prepare for adding VCALL_OFFSET. The difficulty is that we
12011 may not have any available scratch register at this point. */
12012 if (SPARC_SIMM13_P (vcall_offset))
12013 ;
12014 /* This is the case if ARCH64 (unless -ffixed-g5 is passed). */
12015 else if (! fixed_regs[5]
12016 /* The below sequence is made up of at least 2 insns,
12017 while the default method may need only one. */
12018 && vcall_offset < -8192)
12019 {
12020 rtx scratch2 = gen_rtx_REG (Pmode, 5);
12021 emit_move_insn (scratch2, vcall_offset_rtx);
12022 vcall_offset_rtx = scratch2;
12023 }
12024 else
12025 {
12026 rtx increment = GEN_INT (-4096);
12027
12028 /* VCALL_OFFSET is a negative number whose typical range can be
12029 estimated as -32768..0 in 32-bit mode. In almost all cases
12030 it is therefore cheaper to emit multiple add insns than
12031 spilling and loading the constant into a register (at least
12032 6 insns). */
12033 while (! SPARC_SIMM13_P (vcall_offset))
12034 {
12035 emit_insn (gen_add2_insn (scratch, increment));
12036 vcall_offset += 4096;
12037 }
12038 vcall_offset_rtx = GEN_INT (vcall_offset); /* cannot be 0 */
12039 }
12040
12041 /* SCRATCH = *(*THIS_RTX + VCALL_OFFSET). */
12042 emit_move_insn (scratch, gen_rtx_MEM (Pmode,
12043 gen_rtx_PLUS (Pmode,
12044 scratch,
12045 vcall_offset_rtx)));
12046
12047 /* THIS_RTX += *(*THIS_RTX + VCALL_OFFSET). */
12048 emit_insn (gen_add2_insn (this_rtx, scratch));
12049 }
12050
12051 /* Generate a tail call to the target function. */
12052 if (! TREE_USED (function))
12053 {
12054 assemble_external (function);
12055 TREE_USED (function) = 1;
12056 }
12057 funexp = XEXP (DECL_RTL (function), 0);
12058
12059 if (flag_delayed_branch)
12060 {
12061 funexp = gen_rtx_MEM (FUNCTION_MODE, funexp);
12062 insn = emit_call_insn (gen_sibcall (funexp));
12063 SIBLING_CALL_P (insn) = 1;
12064 }
12065 else
12066 {
12067 /* The hoops we have to jump through in order to generate a sibcall
12068 without using delay slots... */
12069 rtx spill_reg, seq, scratch = gen_rtx_REG (Pmode, 1);
12070
12071 if (flag_pic)
12072 {
12073 spill_reg = gen_rtx_REG (word_mode, 15); /* %o7 */
12074 start_sequence ();
12075 load_got_register (); /* clobbers %o7 */
12076 scratch = sparc_legitimize_pic_address (funexp, scratch);
12077 seq = get_insns ();
12078 end_sequence ();
12079 emit_and_preserve (seq, spill_reg, pic_offset_table_rtx);
12080 }
12081 else if (TARGET_ARCH32)
12082 {
12083 emit_insn (gen_rtx_SET (scratch,
12084 gen_rtx_HIGH (SImode, funexp)));
12085 emit_insn (gen_rtx_SET (scratch,
12086 gen_rtx_LO_SUM (SImode, scratch, funexp)));
12087 }
12088 else /* TARGET_ARCH64 */
12089 {
12090 switch (sparc_cmodel)
12091 {
12092 case CM_MEDLOW:
12093 case CM_MEDMID:
12094 /* The destination can serve as a temporary. */
12095 sparc_emit_set_symbolic_const64 (scratch, funexp, scratch);
12096 break;
12097
12098 case CM_MEDANY:
12099 case CM_EMBMEDANY:
12100 /* The destination cannot serve as a temporary. */
12101 spill_reg = gen_rtx_REG (DImode, 15); /* %o7 */
12102 start_sequence ();
12103 sparc_emit_set_symbolic_const64 (scratch, funexp, spill_reg);
12104 seq = get_insns ();
12105 end_sequence ();
12106 emit_and_preserve (seq, spill_reg, 0);
12107 break;
12108
12109 default:
12110 gcc_unreachable ();
12111 }
12112 }
12113
12114 emit_jump_insn (gen_indirect_jump (scratch));
12115 }
12116
12117 emit_barrier ();
12118
12119 /* Run just enough of rest_of_compilation to get the insns emitted.
12120 There's not really enough bulk here to make other passes such as
12121 instruction scheduling worth while. Note that use_thunk calls
12122 assemble_start_function and assemble_end_function. */
12123 insn = get_insns ();
12124 shorten_branches (insn);
12125 final_start_function (insn, file, 1);
12126 final (insn, file, 1);
12127 final_end_function ();
12128
12129 reload_completed = 0;
12130 epilogue_completed = 0;
12131 }
12132
12133 /* Return true if sparc_output_mi_thunk would be able to output the
12134 assembler code for the thunk function specified by the arguments
12135 it is passed, and false otherwise. */
12136 static bool
12137 sparc_can_output_mi_thunk (const_tree thunk_fndecl ATTRIBUTE_UNUSED,
12138 HOST_WIDE_INT delta ATTRIBUTE_UNUSED,
12139 HOST_WIDE_INT vcall_offset,
12140 const_tree function ATTRIBUTE_UNUSED)
12141 {
12142 /* Bound the loop used in the default method above. */
12143 return (vcall_offset >= -32768 || ! fixed_regs[5]);
12144 }
12145
12146 /* How to allocate a 'struct machine_function'. */
12147
12148 static struct machine_function *
12149 sparc_init_machine_status (void)
12150 {
12151 return ggc_cleared_alloc<machine_function> ();
12152 }
12153
12154 /* This is called from dwarf2out.c via TARGET_ASM_OUTPUT_DWARF_DTPREL.
12155 We need to emit DTP-relative relocations. */
12156
12157 static void
12158 sparc_output_dwarf_dtprel (FILE *file, int size, rtx x)
12159 {
12160 switch (size)
12161 {
12162 case 4:
12163 fputs ("\t.word\t%r_tls_dtpoff32(", file);
12164 break;
12165 case 8:
12166 fputs ("\t.xword\t%r_tls_dtpoff64(", file);
12167 break;
12168 default:
12169 gcc_unreachable ();
12170 }
12171 output_addr_const (file, x);
12172 fputs (")", file);
12173 }
12174
12175 /* Do whatever processing is required at the end of a file. */
12176
12177 static void
12178 sparc_file_end (void)
12179 {
12180 /* If we need to emit the special GOT helper function, do so now. */
12181 if (got_helper_rtx)
12182 {
12183 const char *name = XSTR (got_helper_rtx, 0);
12184 const char *reg_name = reg_names[GLOBAL_OFFSET_TABLE_REGNUM];
12185 #ifdef DWARF2_UNWIND_INFO
12186 bool do_cfi;
12187 #endif
12188
12189 if (USE_HIDDEN_LINKONCE)
12190 {
12191 tree decl = build_decl (BUILTINS_LOCATION, FUNCTION_DECL,
12192 get_identifier (name),
12193 build_function_type_list (void_type_node,
12194 NULL_TREE));
12195 DECL_RESULT (decl) = build_decl (BUILTINS_LOCATION, RESULT_DECL,
12196 NULL_TREE, void_type_node);
12197 TREE_PUBLIC (decl) = 1;
12198 TREE_STATIC (decl) = 1;
12199 make_decl_one_only (decl, DECL_ASSEMBLER_NAME (decl));
12200 DECL_VISIBILITY (decl) = VISIBILITY_HIDDEN;
12201 DECL_VISIBILITY_SPECIFIED (decl) = 1;
12202 resolve_unique_section (decl, 0, flag_function_sections);
12203 allocate_struct_function (decl, true);
12204 cfun->is_thunk = 1;
12205 current_function_decl = decl;
12206 init_varasm_status ();
12207 assemble_start_function (decl, name);
12208 }
12209 else
12210 {
12211 const int align = floor_log2 (FUNCTION_BOUNDARY / BITS_PER_UNIT);
12212 switch_to_section (text_section);
12213 if (align > 0)
12214 ASM_OUTPUT_ALIGN (asm_out_file, align);
12215 ASM_OUTPUT_LABEL (asm_out_file, name);
12216 }
12217
12218 #ifdef DWARF2_UNWIND_INFO
12219 do_cfi = dwarf2out_do_cfi_asm ();
12220 if (do_cfi)
12221 fprintf (asm_out_file, "\t.cfi_startproc\n");
12222 #endif
12223 if (flag_delayed_branch)
12224 fprintf (asm_out_file, "\tjmp\t%%o7+8\n\t add\t%%o7, %s, %s\n",
12225 reg_name, reg_name);
12226 else
12227 fprintf (asm_out_file, "\tadd\t%%o7, %s, %s\n\tjmp\t%%o7+8\n\t nop\n",
12228 reg_name, reg_name);
12229 #ifdef DWARF2_UNWIND_INFO
12230 if (do_cfi)
12231 fprintf (asm_out_file, "\t.cfi_endproc\n");
12232 #endif
12233 }
12234
12235 if (NEED_INDICATE_EXEC_STACK)
12236 file_end_indicate_exec_stack ();
12237
12238 #ifdef TARGET_SOLARIS
12239 solaris_file_end ();
12240 #endif
12241 }
12242
12243 #ifdef TARGET_ALTERNATE_LONG_DOUBLE_MANGLING
12244 /* Implement TARGET_MANGLE_TYPE. */
12245
12246 static const char *
12247 sparc_mangle_type (const_tree type)
12248 {
12249 if (TARGET_ARCH32
12250 && TYPE_MAIN_VARIANT (type) == long_double_type_node
12251 && TARGET_LONG_DOUBLE_128)
12252 return "g";
12253
12254 /* For all other types, use normal C++ mangling. */
12255 return NULL;
12256 }
12257 #endif
12258
12259 /* Expand a membar instruction for various use cases. Both the LOAD_STORE
12260 and BEFORE_AFTER arguments of the form X_Y. They are two-bit masks where
12261 bit 0 indicates that X is true, and bit 1 indicates Y is true. */
12262
12263 void
12264 sparc_emit_membar_for_model (enum memmodel model,
12265 int load_store, int before_after)
12266 {
12267 /* Bits for the MEMBAR mmask field. */
12268 const int LoadLoad = 1;
12269 const int StoreLoad = 2;
12270 const int LoadStore = 4;
12271 const int StoreStore = 8;
12272
12273 int mm = 0, implied = 0;
12274
12275 switch (sparc_memory_model)
12276 {
12277 case SMM_SC:
12278 /* Sequential Consistency. All memory transactions are immediately
12279 visible in sequential execution order. No barriers needed. */
12280 implied = LoadLoad | StoreLoad | LoadStore | StoreStore;
12281 break;
12282
12283 case SMM_TSO:
12284 /* Total Store Ordering: all memory transactions with store semantics
12285 are followed by an implied StoreStore. */
12286 implied |= StoreStore;
12287
12288 /* If we're not looking for a raw barrer (before+after), then atomic
12289 operations get the benefit of being both load and store. */
12290 if (load_store == 3 && before_after == 1)
12291 implied |= StoreLoad;
12292 /* FALLTHRU */
12293
12294 case SMM_PSO:
12295 /* Partial Store Ordering: all memory transactions with load semantics
12296 are followed by an implied LoadLoad | LoadStore. */
12297 implied |= LoadLoad | LoadStore;
12298
12299 /* If we're not looking for a raw barrer (before+after), then atomic
12300 operations get the benefit of being both load and store. */
12301 if (load_store == 3 && before_after == 2)
12302 implied |= StoreLoad | StoreStore;
12303 /* FALLTHRU */
12304
12305 case SMM_RMO:
12306 /* Relaxed Memory Ordering: no implicit bits. */
12307 break;
12308
12309 default:
12310 gcc_unreachable ();
12311 }
12312
12313 if (before_after & 1)
12314 {
12315 if (is_mm_release (model) || is_mm_acq_rel (model)
12316 || is_mm_seq_cst (model))
12317 {
12318 if (load_store & 1)
12319 mm |= LoadLoad | StoreLoad;
12320 if (load_store & 2)
12321 mm |= LoadStore | StoreStore;
12322 }
12323 }
12324 if (before_after & 2)
12325 {
12326 if (is_mm_acquire (model) || is_mm_acq_rel (model)
12327 || is_mm_seq_cst (model))
12328 {
12329 if (load_store & 1)
12330 mm |= LoadLoad | LoadStore;
12331 if (load_store & 2)
12332 mm |= StoreLoad | StoreStore;
12333 }
12334 }
12335
12336 /* Remove the bits implied by the system memory model. */
12337 mm &= ~implied;
12338
12339 /* For raw barriers (before+after), always emit a barrier.
12340 This will become a compile-time barrier if needed. */
12341 if (mm || before_after == 3)
12342 emit_insn (gen_membar (GEN_INT (mm)));
12343 }
12344
12345 /* Expand code to perform a 8 or 16-bit compare and swap by doing 32-bit
12346 compare and swap on the word containing the byte or half-word. */
12347
12348 static void
12349 sparc_expand_compare_and_swap_12 (rtx bool_result, rtx result, rtx mem,
12350 rtx oldval, rtx newval)
12351 {
12352 rtx addr1 = force_reg (Pmode, XEXP (mem, 0));
12353 rtx addr = gen_reg_rtx (Pmode);
12354 rtx off = gen_reg_rtx (SImode);
12355 rtx oldv = gen_reg_rtx (SImode);
12356 rtx newv = gen_reg_rtx (SImode);
12357 rtx oldvalue = gen_reg_rtx (SImode);
12358 rtx newvalue = gen_reg_rtx (SImode);
12359 rtx res = gen_reg_rtx (SImode);
12360 rtx resv = gen_reg_rtx (SImode);
12361 rtx memsi, val, mask, cc;
12362
12363 emit_insn (gen_rtx_SET (addr, gen_rtx_AND (Pmode, addr1, GEN_INT (-4))));
12364
12365 if (Pmode != SImode)
12366 addr1 = gen_lowpart (SImode, addr1);
12367 emit_insn (gen_rtx_SET (off, gen_rtx_AND (SImode, addr1, GEN_INT (3))));
12368
12369 memsi = gen_rtx_MEM (SImode, addr);
12370 set_mem_alias_set (memsi, ALIAS_SET_MEMORY_BARRIER);
12371 MEM_VOLATILE_P (memsi) = MEM_VOLATILE_P (mem);
12372
12373 val = copy_to_reg (memsi);
12374
12375 emit_insn (gen_rtx_SET (off,
12376 gen_rtx_XOR (SImode, off,
12377 GEN_INT (GET_MODE (mem) == QImode
12378 ? 3 : 2))));
12379
12380 emit_insn (gen_rtx_SET (off, gen_rtx_ASHIFT (SImode, off, GEN_INT (3))));
12381
12382 if (GET_MODE (mem) == QImode)
12383 mask = force_reg (SImode, GEN_INT (0xff));
12384 else
12385 mask = force_reg (SImode, GEN_INT (0xffff));
12386
12387 emit_insn (gen_rtx_SET (mask, gen_rtx_ASHIFT (SImode, mask, off)));
12388
12389 emit_insn (gen_rtx_SET (val,
12390 gen_rtx_AND (SImode, gen_rtx_NOT (SImode, mask),
12391 val)));
12392
12393 oldval = gen_lowpart (SImode, oldval);
12394 emit_insn (gen_rtx_SET (oldv, gen_rtx_ASHIFT (SImode, oldval, off)));
12395
12396 newval = gen_lowpart_common (SImode, newval);
12397 emit_insn (gen_rtx_SET (newv, gen_rtx_ASHIFT (SImode, newval, off)));
12398
12399 emit_insn (gen_rtx_SET (oldv, gen_rtx_AND (SImode, oldv, mask)));
12400
12401 emit_insn (gen_rtx_SET (newv, gen_rtx_AND (SImode, newv, mask)));
12402
12403 rtx_code_label *end_label = gen_label_rtx ();
12404 rtx_code_label *loop_label = gen_label_rtx ();
12405 emit_label (loop_label);
12406
12407 emit_insn (gen_rtx_SET (oldvalue, gen_rtx_IOR (SImode, oldv, val)));
12408
12409 emit_insn (gen_rtx_SET (newvalue, gen_rtx_IOR (SImode, newv, val)));
12410
12411 emit_move_insn (bool_result, const1_rtx);
12412
12413 emit_insn (gen_atomic_compare_and_swapsi_1 (res, memsi, oldvalue, newvalue));
12414
12415 emit_cmp_and_jump_insns (res, oldvalue, EQ, NULL, SImode, 0, end_label);
12416
12417 emit_insn (gen_rtx_SET (resv,
12418 gen_rtx_AND (SImode, gen_rtx_NOT (SImode, mask),
12419 res)));
12420
12421 emit_move_insn (bool_result, const0_rtx);
12422
12423 cc = gen_compare_reg_1 (NE, resv, val);
12424 emit_insn (gen_rtx_SET (val, resv));
12425
12426 /* Use cbranchcc4 to separate the compare and branch! */
12427 emit_jump_insn (gen_cbranchcc4 (gen_rtx_NE (VOIDmode, cc, const0_rtx),
12428 cc, const0_rtx, loop_label));
12429
12430 emit_label (end_label);
12431
12432 emit_insn (gen_rtx_SET (res, gen_rtx_AND (SImode, res, mask)));
12433
12434 emit_insn (gen_rtx_SET (res, gen_rtx_LSHIFTRT (SImode, res, off)));
12435
12436 emit_move_insn (result, gen_lowpart (GET_MODE (result), res));
12437 }
12438
12439 /* Expand code to perform a compare-and-swap. */
12440
12441 void
12442 sparc_expand_compare_and_swap (rtx operands[])
12443 {
12444 rtx bval, retval, mem, oldval, newval;
12445 machine_mode mode;
12446 enum memmodel model;
12447
12448 bval = operands[0];
12449 retval = operands[1];
12450 mem = operands[2];
12451 oldval = operands[3];
12452 newval = operands[4];
12453 model = (enum memmodel) INTVAL (operands[6]);
12454 mode = GET_MODE (mem);
12455
12456 sparc_emit_membar_for_model (model, 3, 1);
12457
12458 if (reg_overlap_mentioned_p (retval, oldval))
12459 oldval = copy_to_reg (oldval);
12460
12461 if (mode == QImode || mode == HImode)
12462 sparc_expand_compare_and_swap_12 (bval, retval, mem, oldval, newval);
12463 else
12464 {
12465 rtx (*gen) (rtx, rtx, rtx, rtx);
12466 rtx x;
12467
12468 if (mode == SImode)
12469 gen = gen_atomic_compare_and_swapsi_1;
12470 else
12471 gen = gen_atomic_compare_and_swapdi_1;
12472 emit_insn (gen (retval, mem, oldval, newval));
12473
12474 x = emit_store_flag (bval, EQ, retval, oldval, mode, 1, 1);
12475 if (x != bval)
12476 convert_move (bval, x, 1);
12477 }
12478
12479 sparc_emit_membar_for_model (model, 3, 2);
12480 }
12481
12482 void
12483 sparc_expand_vec_perm_bmask (machine_mode vmode, rtx sel)
12484 {
12485 rtx t_1, t_2, t_3;
12486
12487 sel = gen_lowpart (DImode, sel);
12488 switch (vmode)
12489 {
12490 case E_V2SImode:
12491 /* inp = xxxxxxxAxxxxxxxB */
12492 t_1 = expand_simple_binop (DImode, LSHIFTRT, sel, GEN_INT (16),
12493 NULL_RTX, 1, OPTAB_DIRECT);
12494 /* t_1 = ....xxxxxxxAxxx. */
12495 sel = expand_simple_binop (SImode, AND, gen_lowpart (SImode, sel),
12496 GEN_INT (3), NULL_RTX, 1, OPTAB_DIRECT);
12497 t_1 = expand_simple_binop (SImode, AND, gen_lowpart (SImode, t_1),
12498 GEN_INT (0x30000), NULL_RTX, 1, OPTAB_DIRECT);
12499 /* sel = .......B */
12500 /* t_1 = ...A.... */
12501 sel = expand_simple_binop (SImode, IOR, sel, t_1, sel, 1, OPTAB_DIRECT);
12502 /* sel = ...A...B */
12503 sel = expand_mult (SImode, sel, GEN_INT (0x4444), sel, 1);
12504 /* sel = AAAABBBB * 4 */
12505 t_1 = force_reg (SImode, GEN_INT (0x01230123));
12506 /* sel = { A*4, A*4+1, A*4+2, ... } */
12507 break;
12508
12509 case E_V4HImode:
12510 /* inp = xxxAxxxBxxxCxxxD */
12511 t_1 = expand_simple_binop (DImode, LSHIFTRT, sel, GEN_INT (8),
12512 NULL_RTX, 1, OPTAB_DIRECT);
12513 t_2 = expand_simple_binop (DImode, LSHIFTRT, sel, GEN_INT (16),
12514 NULL_RTX, 1, OPTAB_DIRECT);
12515 t_3 = expand_simple_binop (DImode, LSHIFTRT, sel, GEN_INT (24),
12516 NULL_RTX, 1, OPTAB_DIRECT);
12517 /* t_1 = ..xxxAxxxBxxxCxx */
12518 /* t_2 = ....xxxAxxxBxxxC */
12519 /* t_3 = ......xxxAxxxBxx */
12520 sel = expand_simple_binop (SImode, AND, gen_lowpart (SImode, sel),
12521 GEN_INT (0x07),
12522 NULL_RTX, 1, OPTAB_DIRECT);
12523 t_1 = expand_simple_binop (SImode, AND, gen_lowpart (SImode, t_1),
12524 GEN_INT (0x0700),
12525 NULL_RTX, 1, OPTAB_DIRECT);
12526 t_2 = expand_simple_binop (SImode, AND, gen_lowpart (SImode, t_2),
12527 GEN_INT (0x070000),
12528 NULL_RTX, 1, OPTAB_DIRECT);
12529 t_3 = expand_simple_binop (SImode, AND, gen_lowpart (SImode, t_3),
12530 GEN_INT (0x07000000),
12531 NULL_RTX, 1, OPTAB_DIRECT);
12532 /* sel = .......D */
12533 /* t_1 = .....C.. */
12534 /* t_2 = ...B.... */
12535 /* t_3 = .A...... */
12536 sel = expand_simple_binop (SImode, IOR, sel, t_1, sel, 1, OPTAB_DIRECT);
12537 t_2 = expand_simple_binop (SImode, IOR, t_2, t_3, t_2, 1, OPTAB_DIRECT);
12538 sel = expand_simple_binop (SImode, IOR, sel, t_2, sel, 1, OPTAB_DIRECT);
12539 /* sel = .A.B.C.D */
12540 sel = expand_mult (SImode, sel, GEN_INT (0x22), sel, 1);
12541 /* sel = AABBCCDD * 2 */
12542 t_1 = force_reg (SImode, GEN_INT (0x01010101));
12543 /* sel = { A*2, A*2+1, B*2, B*2+1, ... } */
12544 break;
12545
12546 case E_V8QImode:
12547 /* input = xAxBxCxDxExFxGxH */
12548 sel = expand_simple_binop (DImode, AND, sel,
12549 GEN_INT ((HOST_WIDE_INT)0x0f0f0f0f << 32
12550 | 0x0f0f0f0f),
12551 NULL_RTX, 1, OPTAB_DIRECT);
12552 /* sel = .A.B.C.D.E.F.G.H */
12553 t_1 = expand_simple_binop (DImode, LSHIFTRT, sel, GEN_INT (4),
12554 NULL_RTX, 1, OPTAB_DIRECT);
12555 /* t_1 = ..A.B.C.D.E.F.G. */
12556 sel = expand_simple_binop (DImode, IOR, sel, t_1,
12557 NULL_RTX, 1, OPTAB_DIRECT);
12558 /* sel = .AABBCCDDEEFFGGH */
12559 sel = expand_simple_binop (DImode, AND, sel,
12560 GEN_INT ((HOST_WIDE_INT)0xff00ff << 32
12561 | 0xff00ff),
12562 NULL_RTX, 1, OPTAB_DIRECT);
12563 /* sel = ..AB..CD..EF..GH */
12564 t_1 = expand_simple_binop (DImode, LSHIFTRT, sel, GEN_INT (8),
12565 NULL_RTX, 1, OPTAB_DIRECT);
12566 /* t_1 = ....AB..CD..EF.. */
12567 sel = expand_simple_binop (DImode, IOR, sel, t_1,
12568 NULL_RTX, 1, OPTAB_DIRECT);
12569 /* sel = ..ABABCDCDEFEFGH */
12570 sel = expand_simple_binop (DImode, AND, sel,
12571 GEN_INT ((HOST_WIDE_INT)0xffff << 32 | 0xffff),
12572 NULL_RTX, 1, OPTAB_DIRECT);
12573 /* sel = ....ABCD....EFGH */
12574 t_1 = expand_simple_binop (DImode, LSHIFTRT, sel, GEN_INT (16),
12575 NULL_RTX, 1, OPTAB_DIRECT);
12576 /* t_1 = ........ABCD.... */
12577 sel = gen_lowpart (SImode, sel);
12578 t_1 = gen_lowpart (SImode, t_1);
12579 break;
12580
12581 default:
12582 gcc_unreachable ();
12583 }
12584
12585 /* Always perform the final addition/merge within the bmask insn. */
12586 emit_insn (gen_bmasksi_vis (gen_reg_rtx (SImode), sel, t_1));
12587 }
12588
12589 /* Implement TARGET_FRAME_POINTER_REQUIRED. */
12590
12591 static bool
12592 sparc_frame_pointer_required (void)
12593 {
12594 /* If the stack pointer is dynamically modified in the function, it cannot
12595 serve as the frame pointer. */
12596 if (cfun->calls_alloca)
12597 return true;
12598
12599 /* If the function receives nonlocal gotos, it needs to save the frame
12600 pointer in the nonlocal_goto_save_area object. */
12601 if (cfun->has_nonlocal_label)
12602 return true;
12603
12604 /* In flat mode, that's it. */
12605 if (TARGET_FLAT)
12606 return false;
12607
12608 /* Otherwise, the frame pointer is required if the function isn't leaf, but
12609 we cannot use sparc_leaf_function_p since it hasn't been computed yet. */
12610 return !(optimize > 0 && crtl->is_leaf && only_leaf_regs_used ());
12611 }
12612
12613 /* The way this is structured, we can't eliminate SFP in favor of SP
12614 if the frame pointer is required: we want to use the SFP->HFP elimination
12615 in that case. But the test in update_eliminables doesn't know we are
12616 assuming below that we only do the former elimination. */
12617
12618 static bool
12619 sparc_can_eliminate (const int from ATTRIBUTE_UNUSED, const int to)
12620 {
12621 return to == HARD_FRAME_POINTER_REGNUM || !sparc_frame_pointer_required ();
12622 }
12623
12624 /* Return the hard frame pointer directly to bypass the stack bias. */
12625
12626 static rtx
12627 sparc_builtin_setjmp_frame_value (void)
12628 {
12629 return hard_frame_pointer_rtx;
12630 }
12631
12632 /* If !TARGET_FPU, then make the fp registers and fp cc regs fixed so that
12633 they won't be allocated. */
12634
12635 static void
12636 sparc_conditional_register_usage (void)
12637 {
12638 if (PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM)
12639 {
12640 fixed_regs[PIC_OFFSET_TABLE_REGNUM] = 1;
12641 call_used_regs[PIC_OFFSET_TABLE_REGNUM] = 1;
12642 }
12643 /* If the user has passed -f{fixed,call-{used,saved}}-g5 */
12644 /* then honor it. */
12645 if (TARGET_ARCH32 && fixed_regs[5])
12646 fixed_regs[5] = 1;
12647 else if (TARGET_ARCH64 && fixed_regs[5] == 2)
12648 fixed_regs[5] = 0;
12649 if (! TARGET_V9)
12650 {
12651 int regno;
12652 for (regno = SPARC_FIRST_V9_FP_REG;
12653 regno <= SPARC_LAST_V9_FP_REG;
12654 regno++)
12655 fixed_regs[regno] = 1;
12656 /* %fcc0 is used by v8 and v9. */
12657 for (regno = SPARC_FIRST_V9_FCC_REG + 1;
12658 regno <= SPARC_LAST_V9_FCC_REG;
12659 regno++)
12660 fixed_regs[regno] = 1;
12661 }
12662 if (! TARGET_FPU)
12663 {
12664 int regno;
12665 for (regno = 32; regno < SPARC_LAST_V9_FCC_REG; regno++)
12666 fixed_regs[regno] = 1;
12667 }
12668 /* If the user has passed -f{fixed,call-{used,saved}}-g2 */
12669 /* then honor it. Likewise with g3 and g4. */
12670 if (fixed_regs[2] == 2)
12671 fixed_regs[2] = ! TARGET_APP_REGS;
12672 if (fixed_regs[3] == 2)
12673 fixed_regs[3] = ! TARGET_APP_REGS;
12674 if (TARGET_ARCH32 && fixed_regs[4] == 2)
12675 fixed_regs[4] = ! TARGET_APP_REGS;
12676 else if (TARGET_CM_EMBMEDANY)
12677 fixed_regs[4] = 1;
12678 else if (fixed_regs[4] == 2)
12679 fixed_regs[4] = 0;
12680 if (TARGET_FLAT)
12681 {
12682 int regno;
12683 /* Disable leaf functions. */
12684 memset (sparc_leaf_regs, 0, FIRST_PSEUDO_REGISTER);
12685 for (regno = 0; regno < FIRST_PSEUDO_REGISTER; regno++)
12686 leaf_reg_remap [regno] = regno;
12687 }
12688 if (TARGET_VIS)
12689 global_regs[SPARC_GSR_REG] = 1;
12690 }
12691
12692 /* Implement TARGET_PREFERRED_RELOAD_CLASS:
12693
12694 - We can't load constants into FP registers.
12695 - We can't load FP constants into integer registers when soft-float,
12696 because there is no soft-float pattern with a r/F constraint.
12697 - We can't load FP constants into integer registers for TFmode unless
12698 it is 0.0L, because there is no movtf pattern with a r/F constraint.
12699 - Try and reload integer constants (symbolic or otherwise) back into
12700 registers directly, rather than having them dumped to memory. */
12701
12702 static reg_class_t
12703 sparc_preferred_reload_class (rtx x, reg_class_t rclass)
12704 {
12705 machine_mode mode = GET_MODE (x);
12706 if (CONSTANT_P (x))
12707 {
12708 if (FP_REG_CLASS_P (rclass)
12709 || rclass == GENERAL_OR_FP_REGS
12710 || rclass == GENERAL_OR_EXTRA_FP_REGS
12711 || (GET_MODE_CLASS (mode) == MODE_FLOAT && ! TARGET_FPU)
12712 || (mode == TFmode && ! const_zero_operand (x, mode)))
12713 return NO_REGS;
12714
12715 if (GET_MODE_CLASS (mode) == MODE_INT)
12716 return GENERAL_REGS;
12717
12718 if (GET_MODE_CLASS (mode) == MODE_VECTOR_INT)
12719 {
12720 if (! FP_REG_CLASS_P (rclass)
12721 || !(const_zero_operand (x, mode)
12722 || const_all_ones_operand (x, mode)))
12723 return NO_REGS;
12724 }
12725 }
12726
12727 if (TARGET_VIS3
12728 && ! TARGET_ARCH64
12729 && (rclass == EXTRA_FP_REGS
12730 || rclass == GENERAL_OR_EXTRA_FP_REGS))
12731 {
12732 int regno = true_regnum (x);
12733
12734 if (SPARC_INT_REG_P (regno))
12735 return (rclass == EXTRA_FP_REGS
12736 ? FP_REGS : GENERAL_OR_FP_REGS);
12737 }
12738
12739 return rclass;
12740 }
12741
12742 /* Return true if we use LRA instead of reload pass. */
12743
12744 static bool
12745 sparc_lra_p (void)
12746 {
12747 return TARGET_LRA;
12748 }
12749
12750 /* Output a wide multiply instruction in V8+ mode. INSN is the instruction,
12751 OPERANDS are its operands and OPCODE is the mnemonic to be used. */
12752
12753 const char *
12754 output_v8plus_mult (rtx_insn *insn, rtx *operands, const char *opcode)
12755 {
12756 char mulstr[32];
12757
12758 gcc_assert (! TARGET_ARCH64);
12759
12760 if (sparc_check_64 (operands[1], insn) <= 0)
12761 output_asm_insn ("srl\t%L1, 0, %L1", operands);
12762 if (which_alternative == 1)
12763 output_asm_insn ("sllx\t%H1, 32, %H1", operands);
12764 if (GET_CODE (operands[2]) == CONST_INT)
12765 {
12766 if (which_alternative == 1)
12767 {
12768 output_asm_insn ("or\t%L1, %H1, %H1", operands);
12769 sprintf (mulstr, "%s\t%%H1, %%2, %%L0", opcode);
12770 output_asm_insn (mulstr, operands);
12771 return "srlx\t%L0, 32, %H0";
12772 }
12773 else
12774 {
12775 output_asm_insn ("sllx\t%H1, 32, %3", operands);
12776 output_asm_insn ("or\t%L1, %3, %3", operands);
12777 sprintf (mulstr, "%s\t%%3, %%2, %%3", opcode);
12778 output_asm_insn (mulstr, operands);
12779 output_asm_insn ("srlx\t%3, 32, %H0", operands);
12780 return "mov\t%3, %L0";
12781 }
12782 }
12783 else if (rtx_equal_p (operands[1], operands[2]))
12784 {
12785 if (which_alternative == 1)
12786 {
12787 output_asm_insn ("or\t%L1, %H1, %H1", operands);
12788 sprintf (mulstr, "%s\t%%H1, %%H1, %%L0", opcode);
12789 output_asm_insn (mulstr, operands);
12790 return "srlx\t%L0, 32, %H0";
12791 }
12792 else
12793 {
12794 output_asm_insn ("sllx\t%H1, 32, %3", operands);
12795 output_asm_insn ("or\t%L1, %3, %3", operands);
12796 sprintf (mulstr, "%s\t%%3, %%3, %%3", opcode);
12797 output_asm_insn (mulstr, operands);
12798 output_asm_insn ("srlx\t%3, 32, %H0", operands);
12799 return "mov\t%3, %L0";
12800 }
12801 }
12802 if (sparc_check_64 (operands[2], insn) <= 0)
12803 output_asm_insn ("srl\t%L2, 0, %L2", operands);
12804 if (which_alternative == 1)
12805 {
12806 output_asm_insn ("or\t%L1, %H1, %H1", operands);
12807 output_asm_insn ("sllx\t%H2, 32, %L1", operands);
12808 output_asm_insn ("or\t%L2, %L1, %L1", operands);
12809 sprintf (mulstr, "%s\t%%H1, %%L1, %%L0", opcode);
12810 output_asm_insn (mulstr, operands);
12811 return "srlx\t%L0, 32, %H0";
12812 }
12813 else
12814 {
12815 output_asm_insn ("sllx\t%H1, 32, %3", operands);
12816 output_asm_insn ("sllx\t%H2, 32, %4", operands);
12817 output_asm_insn ("or\t%L1, %3, %3", operands);
12818 output_asm_insn ("or\t%L2, %4, %4", operands);
12819 sprintf (mulstr, "%s\t%%3, %%4, %%3", opcode);
12820 output_asm_insn (mulstr, operands);
12821 output_asm_insn ("srlx\t%3, 32, %H0", operands);
12822 return "mov\t%3, %L0";
12823 }
12824 }
12825
12826 /* Subroutine of sparc_expand_vector_init. Emit code to initialize
12827 all fields of TARGET to ELT by means of VIS2 BSHUFFLE insn. MODE
12828 and INNER_MODE are the modes describing TARGET. */
12829
12830 static void
12831 vector_init_bshuffle (rtx target, rtx elt, machine_mode mode,
12832 machine_mode inner_mode)
12833 {
12834 rtx t1, final_insn, sel;
12835 int bmask;
12836
12837 t1 = gen_reg_rtx (mode);
12838
12839 elt = convert_modes (SImode, inner_mode, elt, true);
12840 emit_move_insn (gen_lowpart(SImode, t1), elt);
12841
12842 switch (mode)
12843 {
12844 case E_V2SImode:
12845 final_insn = gen_bshufflev2si_vis (target, t1, t1);
12846 bmask = 0x45674567;
12847 break;
12848 case E_V4HImode:
12849 final_insn = gen_bshufflev4hi_vis (target, t1, t1);
12850 bmask = 0x67676767;
12851 break;
12852 case E_V8QImode:
12853 final_insn = gen_bshufflev8qi_vis (target, t1, t1);
12854 bmask = 0x77777777;
12855 break;
12856 default:
12857 gcc_unreachable ();
12858 }
12859
12860 sel = force_reg (SImode, GEN_INT (bmask));
12861 emit_insn (gen_bmasksi_vis (gen_reg_rtx (SImode), sel, const0_rtx));
12862 emit_insn (final_insn);
12863 }
12864
12865 /* Subroutine of sparc_expand_vector_init. Emit code to initialize
12866 all fields of TARGET to ELT in V8QI by means of VIS FPMERGE insn. */
12867
12868 static void
12869 vector_init_fpmerge (rtx target, rtx elt)
12870 {
12871 rtx t1, t2, t2_low, t3, t3_low;
12872
12873 t1 = gen_reg_rtx (V4QImode);
12874 elt = convert_modes (SImode, QImode, elt, true);
12875 emit_move_insn (gen_lowpart (SImode, t1), elt);
12876
12877 t2 = gen_reg_rtx (V8QImode);
12878 t2_low = gen_lowpart (V4QImode, t2);
12879 emit_insn (gen_fpmerge_vis (t2, t1, t1));
12880
12881 t3 = gen_reg_rtx (V8QImode);
12882 t3_low = gen_lowpart (V4QImode, t3);
12883 emit_insn (gen_fpmerge_vis (t3, t2_low, t2_low));
12884
12885 emit_insn (gen_fpmerge_vis (target, t3_low, t3_low));
12886 }
12887
12888 /* Subroutine of sparc_expand_vector_init. Emit code to initialize
12889 all fields of TARGET to ELT in V4HI by means of VIS FALIGNDATA insn. */
12890
12891 static void
12892 vector_init_faligndata (rtx target, rtx elt)
12893 {
12894 rtx t1 = gen_reg_rtx (V4HImode);
12895 int i;
12896
12897 elt = convert_modes (SImode, HImode, elt, true);
12898 emit_move_insn (gen_lowpart (SImode, t1), elt);
12899
12900 emit_insn (gen_alignaddrsi_vis (gen_reg_rtx (SImode),
12901 force_reg (SImode, GEN_INT (6)),
12902 const0_rtx));
12903
12904 for (i = 0; i < 4; i++)
12905 emit_insn (gen_faligndatav4hi_vis (target, t1, target));
12906 }
12907
12908 /* Emit code to initialize TARGET to values for individual fields VALS. */
12909
12910 void
12911 sparc_expand_vector_init (rtx target, rtx vals)
12912 {
12913 const machine_mode mode = GET_MODE (target);
12914 const machine_mode inner_mode = GET_MODE_INNER (mode);
12915 const int n_elts = GET_MODE_NUNITS (mode);
12916 int i, n_var = 0;
12917 bool all_same = true;
12918 rtx mem;
12919
12920 for (i = 0; i < n_elts; i++)
12921 {
12922 rtx x = XVECEXP (vals, 0, i);
12923 if (!(CONST_SCALAR_INT_P (x) || CONST_DOUBLE_P (x) || CONST_FIXED_P (x)))
12924 n_var++;
12925
12926 if (i > 0 && !rtx_equal_p (x, XVECEXP (vals, 0, 0)))
12927 all_same = false;
12928 }
12929
12930 if (n_var == 0)
12931 {
12932 emit_move_insn (target, gen_rtx_CONST_VECTOR (mode, XVEC (vals, 0)));
12933 return;
12934 }
12935
12936 if (GET_MODE_SIZE (inner_mode) == GET_MODE_SIZE (mode))
12937 {
12938 if (GET_MODE_SIZE (inner_mode) == 4)
12939 {
12940 emit_move_insn (gen_lowpart (SImode, target),
12941 gen_lowpart (SImode, XVECEXP (vals, 0, 0)));
12942 return;
12943 }
12944 else if (GET_MODE_SIZE (inner_mode) == 8)
12945 {
12946 emit_move_insn (gen_lowpart (DImode, target),
12947 gen_lowpart (DImode, XVECEXP (vals, 0, 0)));
12948 return;
12949 }
12950 }
12951 else if (GET_MODE_SIZE (inner_mode) == GET_MODE_SIZE (word_mode)
12952 && GET_MODE_SIZE (mode) == 2 * GET_MODE_SIZE (word_mode))
12953 {
12954 emit_move_insn (gen_highpart (word_mode, target),
12955 gen_lowpart (word_mode, XVECEXP (vals, 0, 0)));
12956 emit_move_insn (gen_lowpart (word_mode, target),
12957 gen_lowpart (word_mode, XVECEXP (vals, 0, 1)));
12958 return;
12959 }
12960
12961 if (all_same && GET_MODE_SIZE (mode) == 8)
12962 {
12963 if (TARGET_VIS2)
12964 {
12965 vector_init_bshuffle (target, XVECEXP (vals, 0, 0), mode, inner_mode);
12966 return;
12967 }
12968 if (mode == V8QImode)
12969 {
12970 vector_init_fpmerge (target, XVECEXP (vals, 0, 0));
12971 return;
12972 }
12973 if (mode == V4HImode)
12974 {
12975 vector_init_faligndata (target, XVECEXP (vals, 0, 0));
12976 return;
12977 }
12978 }
12979
12980 mem = assign_stack_temp (mode, GET_MODE_SIZE (mode));
12981 for (i = 0; i < n_elts; i++)
12982 emit_move_insn (adjust_address_nv (mem, inner_mode,
12983 i * GET_MODE_SIZE (inner_mode)),
12984 XVECEXP (vals, 0, i));
12985 emit_move_insn (target, mem);
12986 }
12987
12988 /* Implement TARGET_SECONDARY_RELOAD. */
12989
12990 static reg_class_t
12991 sparc_secondary_reload (bool in_p, rtx x, reg_class_t rclass_i,
12992 machine_mode mode, secondary_reload_info *sri)
12993 {
12994 enum reg_class rclass = (enum reg_class) rclass_i;
12995
12996 sri->icode = CODE_FOR_nothing;
12997 sri->extra_cost = 0;
12998
12999 /* We need a temporary when loading/storing a HImode/QImode value
13000 between memory and the FPU registers. This can happen when combine puts
13001 a paradoxical subreg in a float/fix conversion insn. */
13002 if (FP_REG_CLASS_P (rclass)
13003 && (mode == HImode || mode == QImode)
13004 && (GET_CODE (x) == MEM
13005 || ((GET_CODE (x) == REG || GET_CODE (x) == SUBREG)
13006 && true_regnum (x) == -1)))
13007 return GENERAL_REGS;
13008
13009 /* On 32-bit we need a temporary when loading/storing a DFmode value
13010 between unaligned memory and the upper FPU registers. */
13011 if (TARGET_ARCH32
13012 && rclass == EXTRA_FP_REGS
13013 && mode == DFmode
13014 && GET_CODE (x) == MEM
13015 && ! mem_min_alignment (x, 8))
13016 return FP_REGS;
13017
13018 if (((TARGET_CM_MEDANY
13019 && symbolic_operand (x, mode))
13020 || (TARGET_CM_EMBMEDANY
13021 && text_segment_operand (x, mode)))
13022 && ! flag_pic)
13023 {
13024 if (in_p)
13025 sri->icode = direct_optab_handler (reload_in_optab, mode);
13026 else
13027 sri->icode = direct_optab_handler (reload_out_optab, mode);
13028 return NO_REGS;
13029 }
13030
13031 if (TARGET_VIS3 && TARGET_ARCH32)
13032 {
13033 int regno = true_regnum (x);
13034
13035 /* When using VIS3 fp<-->int register moves, on 32-bit we have
13036 to move 8-byte values in 4-byte pieces. This only works via
13037 FP_REGS, and not via EXTRA_FP_REGS. Therefore if we try to
13038 move between EXTRA_FP_REGS and GENERAL_REGS, we will need
13039 an FP_REGS intermediate move. */
13040 if ((rclass == EXTRA_FP_REGS && SPARC_INT_REG_P (regno))
13041 || ((general_or_i64_p (rclass)
13042 || rclass == GENERAL_OR_FP_REGS)
13043 && SPARC_FP_REG_P (regno)))
13044 {
13045 sri->extra_cost = 2;
13046 return FP_REGS;
13047 }
13048 }
13049
13050 return NO_REGS;
13051 }
13052
13053 /* Emit code to conditionally move either OPERANDS[2] or OPERANDS[3] into
13054 OPERANDS[0] in MODE. OPERANDS[1] is the operator of the condition. */
13055
13056 bool
13057 sparc_expand_conditional_move (machine_mode mode, rtx *operands)
13058 {
13059 enum rtx_code rc = GET_CODE (operands[1]);
13060 machine_mode cmp_mode;
13061 rtx cc_reg, dst, cmp;
13062
13063 cmp = operands[1];
13064 if (GET_MODE (XEXP (cmp, 0)) == DImode && !TARGET_ARCH64)
13065 return false;
13066
13067 if (GET_MODE (XEXP (cmp, 0)) == TFmode && !TARGET_HARD_QUAD)
13068 cmp = sparc_emit_float_lib_cmp (XEXP (cmp, 0), XEXP (cmp, 1), rc);
13069
13070 cmp_mode = GET_MODE (XEXP (cmp, 0));
13071 rc = GET_CODE (cmp);
13072
13073 dst = operands[0];
13074 if (! rtx_equal_p (operands[2], dst)
13075 && ! rtx_equal_p (operands[3], dst))
13076 {
13077 if (reg_overlap_mentioned_p (dst, cmp))
13078 dst = gen_reg_rtx (mode);
13079
13080 emit_move_insn (dst, operands[3]);
13081 }
13082 else if (operands[2] == dst)
13083 {
13084 operands[2] = operands[3];
13085
13086 if (GET_MODE_CLASS (cmp_mode) == MODE_FLOAT)
13087 rc = reverse_condition_maybe_unordered (rc);
13088 else
13089 rc = reverse_condition (rc);
13090 }
13091
13092 if (XEXP (cmp, 1) == const0_rtx
13093 && GET_CODE (XEXP (cmp, 0)) == REG
13094 && cmp_mode == DImode
13095 && v9_regcmp_p (rc))
13096 cc_reg = XEXP (cmp, 0);
13097 else
13098 cc_reg = gen_compare_reg_1 (rc, XEXP (cmp, 0), XEXP (cmp, 1));
13099
13100 cmp = gen_rtx_fmt_ee (rc, GET_MODE (cc_reg), cc_reg, const0_rtx);
13101
13102 emit_insn (gen_rtx_SET (dst,
13103 gen_rtx_IF_THEN_ELSE (mode, cmp, operands[2], dst)));
13104
13105 if (dst != operands[0])
13106 emit_move_insn (operands[0], dst);
13107
13108 return true;
13109 }
13110
13111 /* Emit code to conditionally move a combination of OPERANDS[1] and OPERANDS[2]
13112 into OPERANDS[0] in MODE, depending on the outcome of the comparison of
13113 OPERANDS[4] and OPERANDS[5]. OPERANDS[3] is the operator of the condition.
13114 FCODE is the machine code to be used for OPERANDS[3] and CCODE the machine
13115 code to be used for the condition mask. */
13116
13117 void
13118 sparc_expand_vcond (machine_mode mode, rtx *operands, int ccode, int fcode)
13119 {
13120 rtx mask, cop0, cop1, fcmp, cmask, bshuf, gsr;
13121 enum rtx_code code = GET_CODE (operands[3]);
13122
13123 mask = gen_reg_rtx (Pmode);
13124 cop0 = operands[4];
13125 cop1 = operands[5];
13126 if (code == LT || code == GE)
13127 {
13128 rtx t;
13129
13130 code = swap_condition (code);
13131 t = cop0; cop0 = cop1; cop1 = t;
13132 }
13133
13134 gsr = gen_rtx_REG (DImode, SPARC_GSR_REG);
13135
13136 fcmp = gen_rtx_UNSPEC (Pmode,
13137 gen_rtvec (1, gen_rtx_fmt_ee (code, mode, cop0, cop1)),
13138 fcode);
13139
13140 cmask = gen_rtx_UNSPEC (DImode,
13141 gen_rtvec (2, mask, gsr),
13142 ccode);
13143
13144 bshuf = gen_rtx_UNSPEC (mode,
13145 gen_rtvec (3, operands[1], operands[2], gsr),
13146 UNSPEC_BSHUFFLE);
13147
13148 emit_insn (gen_rtx_SET (mask, fcmp));
13149 emit_insn (gen_rtx_SET (gsr, cmask));
13150
13151 emit_insn (gen_rtx_SET (operands[0], bshuf));
13152 }
13153
13154 /* On sparc, any mode which naturally allocates into the float
13155 registers should return 4 here. */
13156
13157 unsigned int
13158 sparc_regmode_natural_size (machine_mode mode)
13159 {
13160 int size = UNITS_PER_WORD;
13161
13162 if (TARGET_ARCH64)
13163 {
13164 enum mode_class mclass = GET_MODE_CLASS (mode);
13165
13166 if (mclass == MODE_FLOAT || mclass == MODE_VECTOR_INT)
13167 size = 4;
13168 }
13169
13170 return size;
13171 }
13172
13173 /* Implement TARGET_HARD_REGNO_NREGS.
13174
13175 On SPARC, ordinary registers hold 32 bits worth; this means both
13176 integer and floating point registers. On v9, integer regs hold 64
13177 bits worth; floating point regs hold 32 bits worth (this includes the
13178 new fp regs as even the odd ones are included in the hard register
13179 count). */
13180
13181 static unsigned int
13182 sparc_hard_regno_nregs (unsigned int regno, machine_mode mode)
13183 {
13184 if (regno == SPARC_GSR_REG)
13185 return 1;
13186 if (TARGET_ARCH64)
13187 {
13188 if (SPARC_INT_REG_P (regno) || regno == FRAME_POINTER_REGNUM)
13189 return CEIL (GET_MODE_SIZE (mode), UNITS_PER_WORD);
13190 return CEIL (GET_MODE_SIZE (mode), 4);
13191 }
13192 return CEIL (GET_MODE_SIZE (mode), UNITS_PER_WORD);
13193 }
13194
13195 /* Implement TARGET_HARD_REGNO_MODE_OK.
13196
13197 ??? Because of the funny way we pass parameters we should allow certain
13198 ??? types of float/complex values to be in integer registers during
13199 ??? RTL generation. This only matters on arch32. */
13200
13201 static bool
13202 sparc_hard_regno_mode_ok (unsigned int regno, machine_mode mode)
13203 {
13204 return (hard_regno_mode_classes[regno] & sparc_mode_class[mode]) != 0;
13205 }
13206
13207 /* Implement TARGET_MODES_TIEABLE_P.
13208
13209 For V9 we have to deal with the fact that only the lower 32 floating
13210 point registers are 32-bit addressable. */
13211
13212 static bool
13213 sparc_modes_tieable_p (machine_mode mode1, machine_mode mode2)
13214 {
13215 enum mode_class mclass1, mclass2;
13216 unsigned short size1, size2;
13217
13218 if (mode1 == mode2)
13219 return true;
13220
13221 mclass1 = GET_MODE_CLASS (mode1);
13222 mclass2 = GET_MODE_CLASS (mode2);
13223 if (mclass1 != mclass2)
13224 return false;
13225
13226 if (! TARGET_V9)
13227 return true;
13228
13229 /* Classes are the same and we are V9 so we have to deal with upper
13230 vs. lower floating point registers. If one of the modes is a
13231 4-byte mode, and the other is not, we have to mark them as not
13232 tieable because only the lower 32 floating point register are
13233 addressable 32-bits at a time.
13234
13235 We can't just test explicitly for SFmode, otherwise we won't
13236 cover the vector mode cases properly. */
13237
13238 if (mclass1 != MODE_FLOAT && mclass1 != MODE_VECTOR_INT)
13239 return true;
13240
13241 size1 = GET_MODE_SIZE (mode1);
13242 size2 = GET_MODE_SIZE (mode2);
13243 if ((size1 > 4 && size2 == 4)
13244 || (size2 > 4 && size1 == 4))
13245 return false;
13246
13247 return true;
13248 }
13249
13250 /* Implement TARGET_CSTORE_MODE. */
13251
13252 static scalar_int_mode
13253 sparc_cstore_mode (enum insn_code icode ATTRIBUTE_UNUSED)
13254 {
13255 return (TARGET_ARCH64 ? DImode : SImode);
13256 }
13257
13258 /* Return the compound expression made of T1 and T2. */
13259
13260 static inline tree
13261 compound_expr (tree t1, tree t2)
13262 {
13263 return build2 (COMPOUND_EXPR, void_type_node, t1, t2);
13264 }
13265
13266 /* Implement TARGET_ATOMIC_ASSIGN_EXPAND_FENV hook. */
13267
13268 static void
13269 sparc_atomic_assign_expand_fenv (tree *hold, tree *clear, tree *update)
13270 {
13271 if (!TARGET_FPU)
13272 return;
13273
13274 const unsigned HOST_WIDE_INT accrued_exception_mask = 0x1f << 5;
13275 const unsigned HOST_WIDE_INT trap_enable_mask = 0x1f << 23;
13276
13277 /* We generate the equivalent of feholdexcept (&fenv_var):
13278
13279 unsigned int fenv_var;
13280 __builtin_store_fsr (&fenv_var);
13281
13282 unsigned int tmp1_var;
13283 tmp1_var = fenv_var & ~(accrued_exception_mask | trap_enable_mask);
13284
13285 __builtin_load_fsr (&tmp1_var); */
13286
13287 tree fenv_var = create_tmp_var_raw (unsigned_type_node);
13288 TREE_ADDRESSABLE (fenv_var) = 1;
13289 tree fenv_addr = build_fold_addr_expr (fenv_var);
13290 tree stfsr = sparc_builtins[SPARC_BUILTIN_STFSR];
13291 tree hold_stfsr
13292 = build4 (TARGET_EXPR, unsigned_type_node, fenv_var,
13293 build_call_expr (stfsr, 1, fenv_addr), NULL_TREE, NULL_TREE);
13294
13295 tree tmp1_var = create_tmp_var_raw (unsigned_type_node);
13296 TREE_ADDRESSABLE (tmp1_var) = 1;
13297 tree masked_fenv_var
13298 = build2 (BIT_AND_EXPR, unsigned_type_node, fenv_var,
13299 build_int_cst (unsigned_type_node,
13300 ~(accrued_exception_mask | trap_enable_mask)));
13301 tree hold_mask
13302 = build4 (TARGET_EXPR, unsigned_type_node, tmp1_var, masked_fenv_var,
13303 NULL_TREE, NULL_TREE);
13304
13305 tree tmp1_addr = build_fold_addr_expr (tmp1_var);
13306 tree ldfsr = sparc_builtins[SPARC_BUILTIN_LDFSR];
13307 tree hold_ldfsr = build_call_expr (ldfsr, 1, tmp1_addr);
13308
13309 *hold = compound_expr (compound_expr (hold_stfsr, hold_mask), hold_ldfsr);
13310
13311 /* We reload the value of tmp1_var to clear the exceptions:
13312
13313 __builtin_load_fsr (&tmp1_var); */
13314
13315 *clear = build_call_expr (ldfsr, 1, tmp1_addr);
13316
13317 /* We generate the equivalent of feupdateenv (&fenv_var):
13318
13319 unsigned int tmp2_var;
13320 __builtin_store_fsr (&tmp2_var);
13321
13322 __builtin_load_fsr (&fenv_var);
13323
13324 if (SPARC_LOW_FE_EXCEPT_VALUES)
13325 tmp2_var >>= 5;
13326 __atomic_feraiseexcept ((int) tmp2_var); */
13327
13328 tree tmp2_var = create_tmp_var_raw (unsigned_type_node);
13329 TREE_ADDRESSABLE (tmp2_var) = 1;
13330 tree tmp2_addr = build_fold_addr_expr (tmp2_var);
13331 tree update_stfsr
13332 = build4 (TARGET_EXPR, unsigned_type_node, tmp2_var,
13333 build_call_expr (stfsr, 1, tmp2_addr), NULL_TREE, NULL_TREE);
13334
13335 tree update_ldfsr = build_call_expr (ldfsr, 1, fenv_addr);
13336
13337 tree atomic_feraiseexcept
13338 = builtin_decl_implicit (BUILT_IN_ATOMIC_FERAISEEXCEPT);
13339 tree update_call
13340 = build_call_expr (atomic_feraiseexcept, 1,
13341 fold_convert (integer_type_node, tmp2_var));
13342
13343 if (SPARC_LOW_FE_EXCEPT_VALUES)
13344 {
13345 tree shifted_tmp2_var
13346 = build2 (RSHIFT_EXPR, unsigned_type_node, tmp2_var,
13347 build_int_cst (unsigned_type_node, 5));
13348 tree update_shift
13349 = build2 (MODIFY_EXPR, void_type_node, tmp2_var, shifted_tmp2_var);
13350 update_call = compound_expr (update_shift, update_call);
13351 }
13352
13353 *update
13354 = compound_expr (compound_expr (update_stfsr, update_ldfsr), update_call);
13355 }
13356
13357 #include "gt-sparc.h"