]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config/rs6000/rs6000.c
re PR tree-optimization/38997 (-ftree-loop-distribution ICEs)
[thirdparty/gcc.git] / gcc / config / rs6000 / rs6000.c
CommitLineData
9878760c 1/* Subroutines used for code generation on IBM RS/6000.
f676971a 2 Copyright (C) 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
1c9c5e43 3 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
337bde91 4 Free Software Foundation, Inc.
fab3bcc3 5 Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
9878760c 6
5de601cf 7 This file is part of GCC.
9878760c 8
5de601cf
NC
9 GCC is free software; you can redistribute it and/or modify it
10 under the terms of the GNU General Public License as published
2f83c7d6 11 by the Free Software Foundation; either version 3, or (at your
5de601cf 12 option) any later version.
9878760c 13
5de601cf
NC
14 GCC is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
17 License for more details.
9878760c 18
5de601cf 19 You should have received a copy of the GNU General Public License
2f83c7d6
NC
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
9878760c 22
956d6950 23#include "config.h"
c4d38ccb 24#include "system.h"
4977bab6
ZW
25#include "coretypes.h"
26#include "tm.h"
9878760c
RK
27#include "rtl.h"
28#include "regs.h"
29#include "hard-reg-set.h"
30#include "real.h"
31#include "insn-config.h"
32#include "conditions.h"
9878760c
RK
33#include "insn-attr.h"
34#include "flags.h"
35#include "recog.h"
9878760c 36#include "obstack.h"
9b30bae2 37#include "tree.h"
dfafc897 38#include "expr.h"
2fc1c679 39#include "optabs.h"
2a430ec1 40#include "except.h"
a7df97e6 41#include "function.h"
296b8152 42#include "output.h"
d5fa86ba 43#include "basic-block.h"
d0101753 44#include "integrate.h"
296b8152 45#include "toplev.h"
c8023011 46#include "ggc.h"
9ebbca7d
GK
47#include "hashtab.h"
48#include "tm_p.h"
672a6f42
NB
49#include "target.h"
50#include "target-def.h"
3ac88239 51#include "langhooks.h"
24ea750e 52#include "reload.h"
117dca74 53#include "cfglayout.h"
79ae11c4 54#include "sched-int.h"
726a989a 55#include "gimple.h"
e41b2a33 56#include "tree-flow.h"
4d3e6fae 57#include "intl.h"
59d6560b 58#include "params.h"
279bb624 59#include "tm-constrs.h"
1bc7c5b6
ZW
60#if TARGET_XCOFF
61#include "xcoffout.h" /* get declarations of xcoff_*_section_name */
62#endif
93a27b7b
ZW
63#if TARGET_MACHO
64#include "gstab.h" /* for N_SLINE */
65#endif
9b30bae2 66
7509c759
MM
67#ifndef TARGET_NO_PROTOTYPE
68#define TARGET_NO_PROTOTYPE 0
69#endif
70
9878760c
RK
71#define min(A,B) ((A) < (B) ? (A) : (B))
72#define max(A,B) ((A) > (B) ? (A) : (B))
73
d1d0c603
JJ
74/* Structure used to define the rs6000 stack */
75typedef struct rs6000_stack {
76 int first_gp_reg_save; /* first callee saved GP register used */
77 int first_fp_reg_save; /* first callee saved FP register used */
78 int first_altivec_reg_save; /* first callee saved AltiVec register used */
79 int lr_save_p; /* true if the link reg needs to be saved */
80 int cr_save_p; /* true if the CR reg needs to be saved */
81 unsigned int vrsave_mask; /* mask of vec registers to save */
d1d0c603
JJ
82 int push_p; /* true if we need to allocate stack space */
83 int calls_p; /* true if the function makes any calls */
c4ad648e 84 int world_save_p; /* true if we're saving *everything*:
d62294f5 85 r13-r31, cr, f14-f31, vrsave, v20-v31 */
d1d0c603
JJ
86 enum rs6000_abi abi; /* which ABI to use */
87 int gp_save_offset; /* offset to save GP regs from initial SP */
88 int fp_save_offset; /* offset to save FP regs from initial SP */
89 int altivec_save_offset; /* offset to save AltiVec regs from initial SP */
90 int lr_save_offset; /* offset to save LR from initial SP */
91 int cr_save_offset; /* offset to save CR from initial SP */
92 int vrsave_save_offset; /* offset to save VRSAVE from initial SP */
93 int spe_gp_save_offset; /* offset to save spe 64-bit gprs */
d1d0c603
JJ
94 int varargs_save_offset; /* offset to save the varargs registers */
95 int ehrd_offset; /* offset to EH return data */
96 int reg_size; /* register size (4 or 8) */
d1d0c603
JJ
97 HOST_WIDE_INT vars_size; /* variable save area size */
98 int parm_size; /* outgoing parameter size */
99 int save_size; /* save area size */
100 int fixed_size; /* fixed size of stack frame */
101 int gp_size; /* size of saved GP registers */
102 int fp_size; /* size of saved FP registers */
103 int altivec_size; /* size of saved AltiVec registers */
104 int cr_size; /* size to hold CR if not in save_size */
d1d0c603
JJ
105 int vrsave_size; /* size to hold VRSAVE if not in save_size */
106 int altivec_padding_size; /* size of altivec alignment padding if
107 not in save_size */
108 int spe_gp_size; /* size of 64-bit GPR save size for SPE */
109 int spe_padding_size;
d1d0c603
JJ
110 HOST_WIDE_INT total_size; /* total bytes allocated for stack */
111 int spe_64bit_regs_used;
112} rs6000_stack_t;
113
5b667039
JJ
114/* A C structure for machine-specific, per-function data.
115 This is added to the cfun structure. */
116typedef struct machine_function GTY(())
117{
118 /* Flags if __builtin_return_address (n) with n >= 1 was used. */
119 int ra_needs_full_frame;
120 /* Some local-dynamic symbol. */
121 const char *some_ld_name;
122 /* Whether the instruction chain has been scanned already. */
123 int insn_chain_scanned_p;
124 /* Flags if __builtin_return_address (0) was used. */
125 int ra_need_lr;
126 /* Offset from virtual_stack_vars_rtx to the start of the ABI_V4
127 varargs save area. */
128 HOST_WIDE_INT varargs_save_offset;
e41b2a33
PB
129 /* Temporary stack slot to use for SDmode copies. This slot is
130 64-bits wide and is allocated early enough so that the offset
131 does not overflow the 16-bit load/store offset field. */
132 rtx sdmode_stack_slot;
5b667039
JJ
133} machine_function;
134
5248c961
RK
135/* Target cpu type */
136
137enum processor_type rs6000_cpu;
8e3f41e7
MM
138struct rs6000_cpu_select rs6000_select[3] =
139{
815cdc52
MM
140 /* switch name, tune arch */
141 { (const char *)0, "--with-cpu=", 1, 1 },
142 { (const char *)0, "-mcpu=", 1, 1 },
143 { (const char *)0, "-mtune=", 1, 0 },
8e3f41e7 144};
5248c961 145
ec507f2d
DE
146/* Always emit branch hint bits. */
147static GTY(()) bool rs6000_always_hint;
148
149/* Schedule instructions for group formation. */
150static GTY(()) bool rs6000_sched_groups;
151
44cd321e
PS
152/* Align branch targets. */
153static GTY(()) bool rs6000_align_branch_targets;
154
569fa502
DN
155/* Support for -msched-costly-dep option. */
156const char *rs6000_sched_costly_dep_str;
157enum rs6000_dependence_cost rs6000_sched_costly_dep;
158
cbe26ab8
DN
159/* Support for -minsert-sched-nops option. */
160const char *rs6000_sched_insert_nops_str;
161enum rs6000_nop_insertion rs6000_sched_insert_nops;
162
7ccf35ed 163/* Support targetm.vectorize.builtin_mask_for_load. */
13c62176 164static GTY(()) tree altivec_builtin_mask_for_load;
7ccf35ed 165
602ea4d3 166/* Size of long double. */
6fa3f289
ZW
167int rs6000_long_double_type_size;
168
602ea4d3
JJ
169/* IEEE quad extended precision long double. */
170int rs6000_ieeequad;
171
a2db2771 172/* Nonzero to use AltiVec ABI. */
6fa3f289
ZW
173int rs6000_altivec_abi;
174
94f4765c
NF
175/* Nonzero if we want SPE SIMD instructions. */
176int rs6000_spe;
177
a3170dc6
AH
178/* Nonzero if we want SPE ABI extensions. */
179int rs6000_spe_abi;
180
94f4765c
NF
181/* Nonzero to use isel instructions. */
182int rs6000_isel;
183
5da702b1
AH
184/* Nonzero if floating point operations are done in the GPRs. */
185int rs6000_float_gprs = 0;
186
594a51fe
SS
187/* Nonzero if we want Darwin's struct-by-value-in-regs ABI. */
188int rs6000_darwin64_abi;
189
a0ab749a 190/* Set to nonzero once AIX common-mode calls have been defined. */
bbfb86aa 191static GTY(()) int common_mode_defined;
c81bebd7 192
9878760c
RK
193/* Save information from a "cmpxx" operation until the branch or scc is
194 emitted. */
9878760c
RK
195rtx rs6000_compare_op0, rs6000_compare_op1;
196int rs6000_compare_fp_p;
874a0744 197
874a0744
MM
198/* Label number of label created for -mrelocatable, to call to so we can
199 get the address of the GOT section */
200int rs6000_pic_labelno;
c81bebd7 201
b91da81f 202#ifdef USING_ELFOS_H
c81bebd7 203/* Which abi to adhere to */
9739c90c 204const char *rs6000_abi_name;
d9407988
MM
205
206/* Semantics of the small data area */
207enum rs6000_sdata_type rs6000_sdata = SDATA_DATA;
208
209/* Which small data model to use */
815cdc52 210const char *rs6000_sdata_name = (char *)0;
9ebbca7d
GK
211
212/* Counter for labels which are to be placed in .fixup. */
213int fixuplabelno = 0;
874a0744 214#endif
4697a36c 215
c4501e62
JJ
216/* Bit size of immediate TLS offsets and string from which it is decoded. */
217int rs6000_tls_size = 32;
218const char *rs6000_tls_size_string;
219
b6c9286a
MM
220/* ABI enumeration available for subtarget to use. */
221enum rs6000_abi rs6000_current_abi;
222
85b776df
AM
223/* Whether to use variant of AIX ABI for PowerPC64 Linux. */
224int dot_symbols;
225
38c1f2d7 226/* Debug flags */
815cdc52 227const char *rs6000_debug_name;
38c1f2d7
MM
228int rs6000_debug_stack; /* debug stack applications */
229int rs6000_debug_arg; /* debug argument handling */
230
aabcd309 231/* Value is TRUE if register/mode pair is acceptable. */
0d1fbc8c
AH
232bool rs6000_hard_regno_mode_ok_p[NUM_MACHINE_MODES][FIRST_PSEUDO_REGISTER];
233
58646b77
PB
234/* Built in types. */
235
236tree rs6000_builtin_types[RS6000_BTI_MAX];
237tree rs6000_builtin_decls[RS6000_BUILTIN_COUNT];
8bb418a3 238
57ac7be9
AM
239const char *rs6000_traceback_name;
240static enum {
241 traceback_default = 0,
242 traceback_none,
243 traceback_part,
244 traceback_full
245} rs6000_traceback;
246
38c1f2d7
MM
247/* Flag to say the TOC is initialized */
248int toc_initialized;
9ebbca7d 249char toc_label_name[10];
38c1f2d7 250
44cd321e
PS
251/* Cached value of rs6000_variable_issue. This is cached in
252 rs6000_variable_issue hook and returned from rs6000_sched_reorder2. */
253static short cached_can_issue_more;
254
d6b5193b
RS
255static GTY(()) section *read_only_data_section;
256static GTY(()) section *private_data_section;
257static GTY(()) section *read_only_private_data_section;
258static GTY(()) section *sdata2_section;
259static GTY(()) section *toc_section;
260
a3c9585f
KH
261/* Control alignment for fields within structures. */
262/* String from -malign-XXXXX. */
025d9908
KH
263int rs6000_alignment_flags;
264
78f5898b
AH
265/* True for any options that were explicitly set. */
266struct {
df01da37 267 bool aix_struct_ret; /* True if -maix-struct-ret was used. */
78f5898b 268 bool alignment; /* True if -malign- was used. */
a2db2771
JJ
269 bool spe_abi; /* True if -mabi=spe/no-spe was used. */
270 bool altivec_abi; /* True if -mabi=altivec/no-altivec used. */
78f5898b
AH
271 bool spe; /* True if -mspe= was used. */
272 bool float_gprs; /* True if -mfloat-gprs= was used. */
273 bool isel; /* True if -misel was used. */
274 bool long_double; /* True if -mlong-double- was used. */
d3603e8c 275 bool ieee; /* True if -mabi=ieee/ibmlongdouble used. */
a2db2771 276 bool vrsave; /* True if -mvrsave was used. */
78f5898b
AH
277} rs6000_explicit_options;
278
a3170dc6
AH
279struct builtin_description
280{
281 /* mask is not const because we're going to alter it below. This
282 nonsense will go away when we rewrite the -march infrastructure
283 to give us more target flag bits. */
284 unsigned int mask;
285 const enum insn_code icode;
286 const char *const name;
287 const enum rs6000_builtins code;
288};
8b897cfa
RS
289\f
290/* Target cpu costs. */
291
292struct processor_costs {
c4ad648e 293 const int mulsi; /* cost of SImode multiplication. */
8b897cfa
RS
294 const int mulsi_const; /* cost of SImode multiplication by constant. */
295 const int mulsi_const9; /* cost of SImode mult by short constant. */
c4ad648e
AM
296 const int muldi; /* cost of DImode multiplication. */
297 const int divsi; /* cost of SImode division. */
298 const int divdi; /* cost of DImode division. */
299 const int fp; /* cost of simple SFmode and DFmode insns. */
300 const int dmul; /* cost of DFmode multiplication (and fmadd). */
301 const int sdiv; /* cost of SFmode division (fdivs). */
302 const int ddiv; /* cost of DFmode division (fdiv). */
5f732aba
DE
303 const int cache_line_size; /* cache line size in bytes. */
304 const int l1_cache_size; /* size of l1 cache, in kilobytes. */
305 const int l2_cache_size; /* size of l2 cache, in kilobytes. */
0b11da67
DE
306 const int simultaneous_prefetches; /* number of parallel prefetch
307 operations. */
8b897cfa
RS
308};
309
310const struct processor_costs *rs6000_cost;
311
312/* Processor costs (relative to an add) */
313
314/* Instruction size costs on 32bit processors. */
315static const
316struct processor_costs size32_cost = {
06a67bdd
RS
317 COSTS_N_INSNS (1), /* mulsi */
318 COSTS_N_INSNS (1), /* mulsi_const */
319 COSTS_N_INSNS (1), /* mulsi_const9 */
320 COSTS_N_INSNS (1), /* muldi */
321 COSTS_N_INSNS (1), /* divsi */
322 COSTS_N_INSNS (1), /* divdi */
323 COSTS_N_INSNS (1), /* fp */
324 COSTS_N_INSNS (1), /* dmul */
325 COSTS_N_INSNS (1), /* sdiv */
326 COSTS_N_INSNS (1), /* ddiv */
0b11da67
DE
327 32,
328 0,
329 0,
5f732aba 330 0,
8b897cfa
RS
331};
332
333/* Instruction size costs on 64bit processors. */
334static const
335struct processor_costs size64_cost = {
06a67bdd
RS
336 COSTS_N_INSNS (1), /* mulsi */
337 COSTS_N_INSNS (1), /* mulsi_const */
338 COSTS_N_INSNS (1), /* mulsi_const9 */
339 COSTS_N_INSNS (1), /* muldi */
340 COSTS_N_INSNS (1), /* divsi */
341 COSTS_N_INSNS (1), /* divdi */
342 COSTS_N_INSNS (1), /* fp */
343 COSTS_N_INSNS (1), /* dmul */
344 COSTS_N_INSNS (1), /* sdiv */
345 COSTS_N_INSNS (1), /* ddiv */
0b11da67
DE
346 128,
347 0,
348 0,
5f732aba 349 0,
8b897cfa
RS
350};
351
352/* Instruction costs on RIOS1 processors. */
353static const
354struct processor_costs rios1_cost = {
06a67bdd
RS
355 COSTS_N_INSNS (5), /* mulsi */
356 COSTS_N_INSNS (4), /* mulsi_const */
357 COSTS_N_INSNS (3), /* mulsi_const9 */
358 COSTS_N_INSNS (5), /* muldi */
359 COSTS_N_INSNS (19), /* divsi */
360 COSTS_N_INSNS (19), /* divdi */
361 COSTS_N_INSNS (2), /* fp */
362 COSTS_N_INSNS (2), /* dmul */
363 COSTS_N_INSNS (19), /* sdiv */
364 COSTS_N_INSNS (19), /* ddiv */
0d158b6e 365 128, /* cache line size */
5f732aba
DE
366 64, /* l1 cache */
367 512, /* l2 cache */
0b11da67 368 0, /* streams */
8b897cfa
RS
369};
370
371/* Instruction costs on RIOS2 processors. */
372static const
373struct processor_costs rios2_cost = {
06a67bdd
RS
374 COSTS_N_INSNS (2), /* mulsi */
375 COSTS_N_INSNS (2), /* mulsi_const */
376 COSTS_N_INSNS (2), /* mulsi_const9 */
377 COSTS_N_INSNS (2), /* muldi */
378 COSTS_N_INSNS (13), /* divsi */
379 COSTS_N_INSNS (13), /* divdi */
380 COSTS_N_INSNS (2), /* fp */
381 COSTS_N_INSNS (2), /* dmul */
382 COSTS_N_INSNS (17), /* sdiv */
383 COSTS_N_INSNS (17), /* ddiv */
0d158b6e 384 256, /* cache line size */
5f732aba
DE
385 256, /* l1 cache */
386 1024, /* l2 cache */
0b11da67 387 0, /* streams */
8b897cfa
RS
388};
389
390/* Instruction costs on RS64A processors. */
391static const
392struct processor_costs rs64a_cost = {
06a67bdd
RS
393 COSTS_N_INSNS (20), /* mulsi */
394 COSTS_N_INSNS (12), /* mulsi_const */
395 COSTS_N_INSNS (8), /* mulsi_const9 */
396 COSTS_N_INSNS (34), /* muldi */
397 COSTS_N_INSNS (65), /* divsi */
398 COSTS_N_INSNS (67), /* divdi */
399 COSTS_N_INSNS (4), /* fp */
400 COSTS_N_INSNS (4), /* dmul */
401 COSTS_N_INSNS (31), /* sdiv */
402 COSTS_N_INSNS (31), /* ddiv */
0d158b6e 403 128, /* cache line size */
5f732aba
DE
404 128, /* l1 cache */
405 2048, /* l2 cache */
0b11da67 406 1, /* streams */
8b897cfa
RS
407};
408
409/* Instruction costs on MPCCORE processors. */
410static const
411struct processor_costs mpccore_cost = {
06a67bdd
RS
412 COSTS_N_INSNS (2), /* mulsi */
413 COSTS_N_INSNS (2), /* mulsi_const */
414 COSTS_N_INSNS (2), /* mulsi_const9 */
415 COSTS_N_INSNS (2), /* muldi */
416 COSTS_N_INSNS (6), /* divsi */
417 COSTS_N_INSNS (6), /* divdi */
418 COSTS_N_INSNS (4), /* fp */
419 COSTS_N_INSNS (5), /* dmul */
420 COSTS_N_INSNS (10), /* sdiv */
421 COSTS_N_INSNS (17), /* ddiv */
0d158b6e 422 32, /* cache line size */
5f732aba
DE
423 4, /* l1 cache */
424 16, /* l2 cache */
0b11da67 425 1, /* streams */
8b897cfa
RS
426};
427
428/* Instruction costs on PPC403 processors. */
429static const
430struct processor_costs ppc403_cost = {
06a67bdd
RS
431 COSTS_N_INSNS (4), /* mulsi */
432 COSTS_N_INSNS (4), /* mulsi_const */
433 COSTS_N_INSNS (4), /* mulsi_const9 */
434 COSTS_N_INSNS (4), /* muldi */
435 COSTS_N_INSNS (33), /* divsi */
436 COSTS_N_INSNS (33), /* divdi */
437 COSTS_N_INSNS (11), /* fp */
438 COSTS_N_INSNS (11), /* dmul */
439 COSTS_N_INSNS (11), /* sdiv */
440 COSTS_N_INSNS (11), /* ddiv */
0d158b6e 441 32, /* cache line size */
5f732aba
DE
442 4, /* l1 cache */
443 16, /* l2 cache */
0b11da67 444 1, /* streams */
8b897cfa
RS
445};
446
447/* Instruction costs on PPC405 processors. */
448static const
449struct processor_costs ppc405_cost = {
06a67bdd
RS
450 COSTS_N_INSNS (5), /* mulsi */
451 COSTS_N_INSNS (4), /* mulsi_const */
452 COSTS_N_INSNS (3), /* mulsi_const9 */
453 COSTS_N_INSNS (5), /* muldi */
454 COSTS_N_INSNS (35), /* divsi */
455 COSTS_N_INSNS (35), /* divdi */
456 COSTS_N_INSNS (11), /* fp */
457 COSTS_N_INSNS (11), /* dmul */
458 COSTS_N_INSNS (11), /* sdiv */
459 COSTS_N_INSNS (11), /* ddiv */
0d158b6e 460 32, /* cache line size */
5f732aba
DE
461 16, /* l1 cache */
462 128, /* l2 cache */
0b11da67 463 1, /* streams */
8b897cfa
RS
464};
465
466/* Instruction costs on PPC440 processors. */
467static const
468struct processor_costs ppc440_cost = {
06a67bdd
RS
469 COSTS_N_INSNS (3), /* mulsi */
470 COSTS_N_INSNS (2), /* mulsi_const */
471 COSTS_N_INSNS (2), /* mulsi_const9 */
472 COSTS_N_INSNS (3), /* muldi */
473 COSTS_N_INSNS (34), /* divsi */
474 COSTS_N_INSNS (34), /* divdi */
475 COSTS_N_INSNS (5), /* fp */
476 COSTS_N_INSNS (5), /* dmul */
477 COSTS_N_INSNS (19), /* sdiv */
478 COSTS_N_INSNS (33), /* ddiv */
0d158b6e 479 32, /* cache line size */
5f732aba
DE
480 32, /* l1 cache */
481 256, /* l2 cache */
0b11da67 482 1, /* streams */
8b897cfa
RS
483};
484
485/* Instruction costs on PPC601 processors. */
486static const
487struct processor_costs ppc601_cost = {
06a67bdd
RS
488 COSTS_N_INSNS (5), /* mulsi */
489 COSTS_N_INSNS (5), /* mulsi_const */
490 COSTS_N_INSNS (5), /* mulsi_const9 */
491 COSTS_N_INSNS (5), /* muldi */
492 COSTS_N_INSNS (36), /* divsi */
493 COSTS_N_INSNS (36), /* divdi */
494 COSTS_N_INSNS (4), /* fp */
495 COSTS_N_INSNS (5), /* dmul */
496 COSTS_N_INSNS (17), /* sdiv */
497 COSTS_N_INSNS (31), /* ddiv */
0d158b6e 498 32, /* cache line size */
5f732aba
DE
499 32, /* l1 cache */
500 256, /* l2 cache */
0b11da67 501 1, /* streams */
8b897cfa
RS
502};
503
504/* Instruction costs on PPC603 processors. */
505static const
506struct processor_costs ppc603_cost = {
06a67bdd
RS
507 COSTS_N_INSNS (5), /* mulsi */
508 COSTS_N_INSNS (3), /* mulsi_const */
509 COSTS_N_INSNS (2), /* mulsi_const9 */
510 COSTS_N_INSNS (5), /* muldi */
511 COSTS_N_INSNS (37), /* divsi */
512 COSTS_N_INSNS (37), /* divdi */
513 COSTS_N_INSNS (3), /* fp */
514 COSTS_N_INSNS (4), /* dmul */
515 COSTS_N_INSNS (18), /* sdiv */
516 COSTS_N_INSNS (33), /* ddiv */
0d158b6e 517 32, /* cache line size */
5f732aba
DE
518 8, /* l1 cache */
519 64, /* l2 cache */
0b11da67 520 1, /* streams */
8b897cfa
RS
521};
522
523/* Instruction costs on PPC604 processors. */
524static const
525struct processor_costs ppc604_cost = {
06a67bdd
RS
526 COSTS_N_INSNS (4), /* mulsi */
527 COSTS_N_INSNS (4), /* mulsi_const */
528 COSTS_N_INSNS (4), /* mulsi_const9 */
529 COSTS_N_INSNS (4), /* muldi */
530 COSTS_N_INSNS (20), /* divsi */
531 COSTS_N_INSNS (20), /* divdi */
532 COSTS_N_INSNS (3), /* fp */
533 COSTS_N_INSNS (3), /* dmul */
534 COSTS_N_INSNS (18), /* sdiv */
535 COSTS_N_INSNS (32), /* ddiv */
0d158b6e 536 32, /* cache line size */
5f732aba
DE
537 16, /* l1 cache */
538 512, /* l2 cache */
0b11da67 539 1, /* streams */
8b897cfa
RS
540};
541
542/* Instruction costs on PPC604e processors. */
543static const
544struct processor_costs ppc604e_cost = {
06a67bdd
RS
545 COSTS_N_INSNS (2), /* mulsi */
546 COSTS_N_INSNS (2), /* mulsi_const */
547 COSTS_N_INSNS (2), /* mulsi_const9 */
548 COSTS_N_INSNS (2), /* muldi */
549 COSTS_N_INSNS (20), /* divsi */
550 COSTS_N_INSNS (20), /* divdi */
551 COSTS_N_INSNS (3), /* fp */
552 COSTS_N_INSNS (3), /* dmul */
553 COSTS_N_INSNS (18), /* sdiv */
554 COSTS_N_INSNS (32), /* ddiv */
0d158b6e 555 32, /* cache line size */
5f732aba
DE
556 32, /* l1 cache */
557 1024, /* l2 cache */
0b11da67 558 1, /* streams */
8b897cfa
RS
559};
560
f0517163 561/* Instruction costs on PPC620 processors. */
8b897cfa
RS
562static const
563struct processor_costs ppc620_cost = {
06a67bdd
RS
564 COSTS_N_INSNS (5), /* mulsi */
565 COSTS_N_INSNS (4), /* mulsi_const */
566 COSTS_N_INSNS (3), /* mulsi_const9 */
567 COSTS_N_INSNS (7), /* muldi */
568 COSTS_N_INSNS (21), /* divsi */
569 COSTS_N_INSNS (37), /* divdi */
570 COSTS_N_INSNS (3), /* fp */
571 COSTS_N_INSNS (3), /* dmul */
572 COSTS_N_INSNS (18), /* sdiv */
573 COSTS_N_INSNS (32), /* ddiv */
0d158b6e 574 128, /* cache line size */
5f732aba
DE
575 32, /* l1 cache */
576 1024, /* l2 cache */
0b11da67 577 1, /* streams */
f0517163
RS
578};
579
580/* Instruction costs on PPC630 processors. */
581static const
582struct processor_costs ppc630_cost = {
06a67bdd
RS
583 COSTS_N_INSNS (5), /* mulsi */
584 COSTS_N_INSNS (4), /* mulsi_const */
585 COSTS_N_INSNS (3), /* mulsi_const9 */
586 COSTS_N_INSNS (7), /* muldi */
587 COSTS_N_INSNS (21), /* divsi */
588 COSTS_N_INSNS (37), /* divdi */
589 COSTS_N_INSNS (3), /* fp */
590 COSTS_N_INSNS (3), /* dmul */
591 COSTS_N_INSNS (17), /* sdiv */
592 COSTS_N_INSNS (21), /* ddiv */
0d158b6e 593 128, /* cache line size */
5f732aba
DE
594 64, /* l1 cache */
595 1024, /* l2 cache */
0b11da67 596 1, /* streams */
8b897cfa
RS
597};
598
d296e02e
AP
599/* Instruction costs on Cell processor. */
600/* COSTS_N_INSNS (1) ~ one add. */
601static const
602struct processor_costs ppccell_cost = {
603 COSTS_N_INSNS (9/2)+2, /* mulsi */
604 COSTS_N_INSNS (6/2), /* mulsi_const */
605 COSTS_N_INSNS (6/2), /* mulsi_const9 */
606 COSTS_N_INSNS (15/2)+2, /* muldi */
607 COSTS_N_INSNS (38/2), /* divsi */
608 COSTS_N_INSNS (70/2), /* divdi */
609 COSTS_N_INSNS (10/2), /* fp */
610 COSTS_N_INSNS (10/2), /* dmul */
611 COSTS_N_INSNS (74/2), /* sdiv */
612 COSTS_N_INSNS (74/2), /* ddiv */
0d158b6e 613 128, /* cache line size */
5f732aba
DE
614 32, /* l1 cache */
615 512, /* l2 cache */
616 6, /* streams */
d296e02e
AP
617};
618
8b897cfa
RS
619/* Instruction costs on PPC750 and PPC7400 processors. */
620static const
621struct processor_costs ppc750_cost = {
06a67bdd
RS
622 COSTS_N_INSNS (5), /* mulsi */
623 COSTS_N_INSNS (3), /* mulsi_const */
624 COSTS_N_INSNS (2), /* mulsi_const9 */
625 COSTS_N_INSNS (5), /* muldi */
626 COSTS_N_INSNS (17), /* divsi */
627 COSTS_N_INSNS (17), /* divdi */
628 COSTS_N_INSNS (3), /* fp */
629 COSTS_N_INSNS (3), /* dmul */
630 COSTS_N_INSNS (17), /* sdiv */
631 COSTS_N_INSNS (31), /* ddiv */
0d158b6e 632 32, /* cache line size */
5f732aba
DE
633 32, /* l1 cache */
634 512, /* l2 cache */
0b11da67 635 1, /* streams */
8b897cfa
RS
636};
637
638/* Instruction costs on PPC7450 processors. */
639static const
640struct processor_costs ppc7450_cost = {
06a67bdd
RS
641 COSTS_N_INSNS (4), /* mulsi */
642 COSTS_N_INSNS (3), /* mulsi_const */
643 COSTS_N_INSNS (3), /* mulsi_const9 */
644 COSTS_N_INSNS (4), /* muldi */
645 COSTS_N_INSNS (23), /* divsi */
646 COSTS_N_INSNS (23), /* divdi */
647 COSTS_N_INSNS (5), /* fp */
648 COSTS_N_INSNS (5), /* dmul */
649 COSTS_N_INSNS (21), /* sdiv */
650 COSTS_N_INSNS (35), /* ddiv */
0d158b6e 651 32, /* cache line size */
5f732aba
DE
652 32, /* l1 cache */
653 1024, /* l2 cache */
0b11da67 654 1, /* streams */
8b897cfa 655};
a3170dc6 656
8b897cfa
RS
657/* Instruction costs on PPC8540 processors. */
658static const
659struct processor_costs ppc8540_cost = {
06a67bdd
RS
660 COSTS_N_INSNS (4), /* mulsi */
661 COSTS_N_INSNS (4), /* mulsi_const */
662 COSTS_N_INSNS (4), /* mulsi_const9 */
663 COSTS_N_INSNS (4), /* muldi */
664 COSTS_N_INSNS (19), /* divsi */
665 COSTS_N_INSNS (19), /* divdi */
666 COSTS_N_INSNS (4), /* fp */
667 COSTS_N_INSNS (4), /* dmul */
668 COSTS_N_INSNS (29), /* sdiv */
669 COSTS_N_INSNS (29), /* ddiv */
0d158b6e 670 32, /* cache line size */
5f732aba
DE
671 32, /* l1 cache */
672 256, /* l2 cache */
0b11da67 673 1, /* prefetch streams /*/
8b897cfa
RS
674};
675
fa41c305
EW
676/* Instruction costs on E300C2 and E300C3 cores. */
677static const
678struct processor_costs ppce300c2c3_cost = {
679 COSTS_N_INSNS (4), /* mulsi */
680 COSTS_N_INSNS (4), /* mulsi_const */
681 COSTS_N_INSNS (4), /* mulsi_const9 */
682 COSTS_N_INSNS (4), /* muldi */
683 COSTS_N_INSNS (19), /* divsi */
684 COSTS_N_INSNS (19), /* divdi */
685 COSTS_N_INSNS (3), /* fp */
686 COSTS_N_INSNS (4), /* dmul */
687 COSTS_N_INSNS (18), /* sdiv */
688 COSTS_N_INSNS (33), /* ddiv */
642639ce 689 32,
a19b7d46
EW
690 16, /* l1 cache */
691 16, /* l2 cache */
642639ce 692 1, /* prefetch streams /*/
fa41c305
EW
693};
694
edae5fe3
DE
695/* Instruction costs on PPCE500MC processors. */
696static const
697struct processor_costs ppce500mc_cost = {
698 COSTS_N_INSNS (4), /* mulsi */
699 COSTS_N_INSNS (4), /* mulsi_const */
700 COSTS_N_INSNS (4), /* mulsi_const9 */
701 COSTS_N_INSNS (4), /* muldi */
702 COSTS_N_INSNS (14), /* divsi */
703 COSTS_N_INSNS (14), /* divdi */
704 COSTS_N_INSNS (8), /* fp */
705 COSTS_N_INSNS (10), /* dmul */
706 COSTS_N_INSNS (36), /* sdiv */
707 COSTS_N_INSNS (66), /* ddiv */
708 64, /* cache line size */
709 32, /* l1 cache */
710 128, /* l2 cache */
711 1, /* prefetch streams /*/
712};
713
8b897cfa
RS
714/* Instruction costs on POWER4 and POWER5 processors. */
715static const
716struct processor_costs power4_cost = {
06a67bdd
RS
717 COSTS_N_INSNS (3), /* mulsi */
718 COSTS_N_INSNS (2), /* mulsi_const */
719 COSTS_N_INSNS (2), /* mulsi_const9 */
720 COSTS_N_INSNS (4), /* muldi */
721 COSTS_N_INSNS (18), /* divsi */
722 COSTS_N_INSNS (34), /* divdi */
723 COSTS_N_INSNS (3), /* fp */
724 COSTS_N_INSNS (3), /* dmul */
725 COSTS_N_INSNS (17), /* sdiv */
726 COSTS_N_INSNS (17), /* ddiv */
0d158b6e 727 128, /* cache line size */
5f732aba
DE
728 32, /* l1 cache */
729 1024, /* l2 cache */
0b11da67 730 8, /* prefetch streams /*/
8b897cfa
RS
731};
732
44cd321e
PS
733/* Instruction costs on POWER6 processors. */
734static const
735struct processor_costs power6_cost = {
736 COSTS_N_INSNS (8), /* mulsi */
737 COSTS_N_INSNS (8), /* mulsi_const */
738 COSTS_N_INSNS (8), /* mulsi_const9 */
739 COSTS_N_INSNS (8), /* muldi */
740 COSTS_N_INSNS (22), /* divsi */
741 COSTS_N_INSNS (28), /* divdi */
742 COSTS_N_INSNS (3), /* fp */
743 COSTS_N_INSNS (3), /* dmul */
744 COSTS_N_INSNS (13), /* sdiv */
745 COSTS_N_INSNS (16), /* ddiv */
0d158b6e 746 128, /* cache line size */
5f732aba
DE
747 64, /* l1 cache */
748 2048, /* l2 cache */
0b11da67 749 16, /* prefetch streams */
44cd321e
PS
750};
751
8b897cfa 752\f
a2369ed3 753static bool rs6000_function_ok_for_sibcall (tree, tree);
3101faab 754static const char *rs6000_invalid_within_doloop (const_rtx);
a2369ed3 755static rtx rs6000_generate_compare (enum rtx_code);
a2369ed3
DJ
756static void rs6000_emit_stack_tie (void);
757static void rs6000_frame_related (rtx, rtx, HOST_WIDE_INT, rtx, rtx);
a2369ed3 758static bool spe_func_has_64bit_regs_p (void);
b20a9cca 759static void emit_frame_save (rtx, rtx, enum machine_mode, unsigned int,
d1d0c603 760 int, HOST_WIDE_INT);
a2369ed3 761static rtx gen_frame_mem_offset (enum machine_mode, rtx, int);
f78c3290 762static void rs6000_emit_allocate_stack (HOST_WIDE_INT, int, int);
a2369ed3
DJ
763static unsigned rs6000_hash_constant (rtx);
764static unsigned toc_hash_function (const void *);
765static int toc_hash_eq (const void *, const void *);
a2369ed3 766static bool constant_pool_expr_p (rtx);
d04b6e6e 767static bool legitimate_small_data_p (enum machine_mode, rtx);
a2369ed3
DJ
768static bool legitimate_lo_sum_address_p (enum machine_mode, rtx, int);
769static struct machine_function * rs6000_init_machine_status (void);
770static bool rs6000_assemble_integer (rtx, unsigned int, int);
f78c3290 771static bool no_global_regs_above (int, bool);
5add3202 772#ifdef HAVE_GAS_HIDDEN
a2369ed3 773static void rs6000_assemble_visibility (tree, int);
5add3202 774#endif
a2369ed3
DJ
775static int rs6000_ra_ever_killed (void);
776static tree rs6000_handle_longcall_attribute (tree *, tree, tree, int, bool *);
8bb418a3 777static tree rs6000_handle_altivec_attribute (tree *, tree, tree, int, bool *);
3101faab 778static bool rs6000_ms_bitfield_layout_p (const_tree);
77ccdfed 779static tree rs6000_handle_struct_attribute (tree *, tree, tree, int, bool *);
76d2b81d 780static void rs6000_eliminate_indexed_memrefs (rtx operands[2]);
3101faab 781static const char *rs6000_mangle_type (const_tree);
b86fe7b4 782extern const struct attribute_spec rs6000_attribute_table[];
a2369ed3 783static void rs6000_set_default_type_attributes (tree);
f78c3290
NF
784static rtx rs6000_savres_routine_sym (rs6000_stack_t *, bool, bool, bool);
785static void rs6000_emit_stack_reset (rs6000_stack_t *, rtx, rtx, int, bool);
786static rtx rs6000_make_savres_rtx (rs6000_stack_t *, rtx, int,
787 enum machine_mode, bool, bool, bool);
52ff33d0 788static bool rs6000_reg_live_or_pic_offset_p (int);
f78c3290
NF
789static int rs6000_savres_strategy (rs6000_stack_t *, bool, int, int);
790static void rs6000_restore_saved_cr (rtx, int);
a2369ed3
DJ
791static void rs6000_output_function_prologue (FILE *, HOST_WIDE_INT);
792static void rs6000_output_function_epilogue (FILE *, HOST_WIDE_INT);
b20a9cca
AM
793static void rs6000_output_mi_thunk (FILE *, tree, HOST_WIDE_INT, HOST_WIDE_INT,
794 tree);
a2369ed3 795static rtx rs6000_emit_set_long_const (rtx, HOST_WIDE_INT, HOST_WIDE_INT);
586de218 796static bool rs6000_return_in_memory (const_tree, const_tree);
a2369ed3 797static void rs6000_file_start (void);
7c262518 798#if TARGET_ELF
9b580a0b 799static int rs6000_elf_reloc_rw_mask (void);
a2369ed3
DJ
800static void rs6000_elf_asm_out_constructor (rtx, int);
801static void rs6000_elf_asm_out_destructor (rtx, int);
1334b570 802static void rs6000_elf_end_indicate_exec_stack (void) ATTRIBUTE_UNUSED;
d6b5193b 803static void rs6000_elf_asm_init_sections (void);
d6b5193b
RS
804static section *rs6000_elf_select_rtx_section (enum machine_mode, rtx,
805 unsigned HOST_WIDE_INT);
a56d7372 806static void rs6000_elf_encode_section_info (tree, rtx, int)
0e5dbd9b 807 ATTRIBUTE_UNUSED;
7c262518 808#endif
3101faab 809static bool rs6000_use_blocks_for_constant_p (enum machine_mode, const_rtx);
e41b2a33
PB
810static void rs6000_alloc_sdmode_stack_slot (void);
811static void rs6000_instantiate_decls (void);
cbaaba19 812#if TARGET_XCOFF
0d5817b2 813static void rs6000_xcoff_asm_output_anchor (rtx);
a2369ed3 814static void rs6000_xcoff_asm_globalize_label (FILE *, const char *);
d6b5193b 815static void rs6000_xcoff_asm_init_sections (void);
9b580a0b 816static int rs6000_xcoff_reloc_rw_mask (void);
8210e4c4 817static void rs6000_xcoff_asm_named_section (const char *, unsigned int, tree);
d6b5193b 818static section *rs6000_xcoff_select_section (tree, int,
b20a9cca 819 unsigned HOST_WIDE_INT);
d6b5193b
RS
820static void rs6000_xcoff_unique_section (tree, int);
821static section *rs6000_xcoff_select_rtx_section
822 (enum machine_mode, rtx, unsigned HOST_WIDE_INT);
a2369ed3
DJ
823static const char * rs6000_xcoff_strip_name_encoding (const char *);
824static unsigned int rs6000_xcoff_section_type_flags (tree, const char *, int);
825static void rs6000_xcoff_file_start (void);
826static void rs6000_xcoff_file_end (void);
f1384257 827#endif
a2369ed3 828static int rs6000_variable_issue (FILE *, int, rtx, int);
f40751dd 829static bool rs6000_rtx_costs (rtx, int, int, int *, bool);
a2369ed3 830static int rs6000_adjust_cost (rtx, rtx, rtx, int);
44cd321e 831static void rs6000_sched_init (FILE *, int, int);
cbe26ab8 832static bool is_microcoded_insn (rtx);
d296e02e 833static bool is_nonpipeline_insn (rtx);
cbe26ab8
DN
834static bool is_cracked_insn (rtx);
835static bool is_branch_slot_insn (rtx);
44cd321e 836static bool is_load_insn (rtx);
e3a0e200 837static rtx get_store_dest (rtx pat);
44cd321e
PS
838static bool is_store_insn (rtx);
839static bool set_to_load_agen (rtx,rtx);
982afe02 840static bool adjacent_mem_locations (rtx,rtx);
a2369ed3
DJ
841static int rs6000_adjust_priority (rtx, int);
842static int rs6000_issue_rate (void);
b198261f 843static bool rs6000_is_costly_dependence (dep_t, int, int);
cbe26ab8
DN
844static rtx get_next_active_insn (rtx, rtx);
845static bool insn_terminates_group_p (rtx , enum group_termination);
44cd321e
PS
846static bool insn_must_be_first_in_group (rtx);
847static bool insn_must_be_last_in_group (rtx);
cbe26ab8
DN
848static bool is_costly_group (rtx *, rtx);
849static int force_new_group (int, FILE *, rtx *, rtx, bool *, int, int *);
850static int redefine_groups (FILE *, int, rtx, rtx);
851static int pad_groups (FILE *, int, rtx, rtx);
852static void rs6000_sched_finish (FILE *, int);
44cd321e
PS
853static int rs6000_sched_reorder (FILE *, int, rtx *, int *, int);
854static int rs6000_sched_reorder2 (FILE *, int, rtx *, int *, int);
a2369ed3 855static int rs6000_use_sched_lookahead (void);
d296e02e 856static int rs6000_use_sched_lookahead_guard (rtx);
e855c69d
AB
857static void * rs6000_alloc_sched_context (void);
858static void rs6000_init_sched_context (void *, bool);
859static void rs6000_set_sched_context (void *);
860static void rs6000_free_sched_context (void *);
9c78b944 861static tree rs6000_builtin_reciprocal (unsigned int, bool, bool);
7ccf35ed 862static tree rs6000_builtin_mask_for_load (void);
89d67cca
DN
863static tree rs6000_builtin_mul_widen_even (tree);
864static tree rs6000_builtin_mul_widen_odd (tree);
f57d17f1 865static tree rs6000_builtin_conversion (enum tree_code, tree);
0fca40f5 866static tree rs6000_builtin_vec_perm (tree, tree *);
a2369ed3 867
58646b77 868static void def_builtin (int, const char *, tree, int);
3101faab 869static bool rs6000_vector_alignment_reachable (const_tree, bool);
a2369ed3
DJ
870static void rs6000_init_builtins (void);
871static rtx rs6000_expand_unop_builtin (enum insn_code, tree, rtx);
872static rtx rs6000_expand_binop_builtin (enum insn_code, tree, rtx);
873static rtx rs6000_expand_ternop_builtin (enum insn_code, tree, rtx);
874static rtx rs6000_expand_builtin (tree, rtx, rtx, enum machine_mode, int);
875static void altivec_init_builtins (void);
876static void rs6000_common_init_builtins (void);
c15c90bb 877static void rs6000_init_libfuncs (void);
a2369ed3 878
96038623
DE
879static void paired_init_builtins (void);
880static rtx paired_expand_builtin (tree, rtx, bool *);
881static rtx paired_expand_lv_builtin (enum insn_code, tree, rtx);
882static rtx paired_expand_stv_builtin (enum insn_code, tree);
883static rtx paired_expand_predicate_builtin (enum insn_code, tree, rtx);
884
b20a9cca
AM
885static void enable_mask_for_builtins (struct builtin_description *, int,
886 enum rs6000_builtins,
887 enum rs6000_builtins);
7c62e993 888static tree build_opaque_vector_type (tree, int);
a2369ed3
DJ
889static void spe_init_builtins (void);
890static rtx spe_expand_builtin (tree, rtx, bool *);
61bea3b0 891static rtx spe_expand_stv_builtin (enum insn_code, tree);
a2369ed3
DJ
892static rtx spe_expand_predicate_builtin (enum insn_code, tree, rtx);
893static rtx spe_expand_evsel_builtin (enum insn_code, tree, rtx);
894static int rs6000_emit_int_cmove (rtx, rtx, rtx, rtx);
d1d0c603
JJ
895static rs6000_stack_t *rs6000_stack_info (void);
896static void debug_stack_info (rs6000_stack_t *);
a2369ed3
DJ
897
898static rtx altivec_expand_builtin (tree, rtx, bool *);
899static rtx altivec_expand_ld_builtin (tree, rtx, bool *);
900static rtx altivec_expand_st_builtin (tree, rtx, bool *);
901static rtx altivec_expand_dst_builtin (tree, rtx, bool *);
902static rtx altivec_expand_abs_builtin (enum insn_code, tree, rtx);
f676971a 903static rtx altivec_expand_predicate_builtin (enum insn_code,
c4ad648e 904 const char *, tree, rtx);
a2369ed3 905static rtx altivec_expand_stv_builtin (enum insn_code, tree);
7a4eca66
DE
906static rtx altivec_expand_vec_init_builtin (tree, tree, rtx);
907static rtx altivec_expand_vec_set_builtin (tree);
908static rtx altivec_expand_vec_ext_builtin (tree, rtx);
909static int get_element_number (tree, tree);
78f5898b 910static bool rs6000_handle_option (size_t, const char *, int);
a2369ed3 911static void rs6000_parse_tls_size_option (void);
5da702b1 912static void rs6000_parse_yes_no_option (const char *, const char *, int *);
a2369ed3
DJ
913static int first_altivec_reg_to_save (void);
914static unsigned int compute_vrsave_mask (void);
9390387d 915static void compute_save_world_info (rs6000_stack_t *info_ptr);
a2369ed3
DJ
916static void is_altivec_return_reg (rtx, void *);
917static rtx generate_set_vrsave (rtx, rs6000_stack_t *, int);
918int easy_vector_constant (rtx, enum machine_mode);
3101faab 919static bool rs6000_is_opaque_type (const_tree);
a2369ed3 920static rtx rs6000_dwarf_register_span (rtx);
37ea0b7e 921static void rs6000_init_dwarf_reg_sizes_extra (tree);
a2369ed3 922static rtx rs6000_legitimize_tls_address (rtx, enum tls_model);
fdbe66f2 923static void rs6000_output_dwarf_dtprel (FILE *, int, rtx) ATTRIBUTE_UNUSED;
a2369ed3
DJ
924static rtx rs6000_tls_get_addr (void);
925static rtx rs6000_got_sym (void);
9390387d 926static int rs6000_tls_symbol_ref_1 (rtx *, void *);
a2369ed3
DJ
927static const char *rs6000_get_some_local_dynamic_name (void);
928static int rs6000_get_some_local_dynamic_name_1 (rtx *, void *);
ded9bf77 929static rtx rs6000_complex_function_value (enum machine_mode);
b20a9cca 930static rtx rs6000_spe_function_arg (CUMULATIVE_ARGS *,
a2369ed3 931 enum machine_mode, tree);
0b5383eb
DJ
932static void rs6000_darwin64_record_arg_advance_flush (CUMULATIVE_ARGS *,
933 HOST_WIDE_INT);
934static void rs6000_darwin64_record_arg_advance_recurse (CUMULATIVE_ARGS *,
935 tree, HOST_WIDE_INT);
936static void rs6000_darwin64_record_arg_flush (CUMULATIVE_ARGS *,
937 HOST_WIDE_INT,
938 rtx[], int *);
939static void rs6000_darwin64_record_arg_recurse (CUMULATIVE_ARGS *,
586de218
KG
940 const_tree, HOST_WIDE_INT,
941 rtx[], int *);
942static rtx rs6000_darwin64_record_arg (CUMULATIVE_ARGS *, const_tree, int, bool);
ec6376ab 943static rtx rs6000_mixed_function_arg (enum machine_mode, tree, int);
b1917422 944static void rs6000_move_block_from_reg (int regno, rtx x, int nregs);
c6e8c921
GK
945static void setup_incoming_varargs (CUMULATIVE_ARGS *,
946 enum machine_mode, tree,
947 int *, int);
8cd5a4e0 948static bool rs6000_pass_by_reference (CUMULATIVE_ARGS *, enum machine_mode,
586de218 949 const_tree, bool);
78a52f11
RH
950static int rs6000_arg_partial_bytes (CUMULATIVE_ARGS *, enum machine_mode,
951 tree, bool);
3101faab 952static const char *invalid_arg_for_unprototyped_fn (const_tree, const_tree, const_tree);
efdba735
SH
953#if TARGET_MACHO
954static void macho_branch_islands (void);
efdba735
SH
955static int no_previous_def (tree function_name);
956static tree get_prev_label (tree function_name);
c4e18b1c 957static void rs6000_darwin_file_start (void);
efdba735
SH
958#endif
959
c35d187f 960static tree rs6000_build_builtin_va_list (void);
d7bd8aeb 961static void rs6000_va_start (tree, rtx);
726a989a 962static tree rs6000_gimplify_va_arg (tree, tree, gimple_seq *, gimple_seq *);
586de218 963static bool rs6000_must_pass_in_stack (enum machine_mode, const_tree);
00b79d54 964static bool rs6000_scalar_mode_supported_p (enum machine_mode);
f676971a 965static bool rs6000_vector_mode_supported_p (enum machine_mode);
94ff898d 966static int get_vec_cmp_insn (enum rtx_code, enum machine_mode,
21213b4c 967 enum machine_mode);
94ff898d 968static rtx rs6000_emit_vector_compare (enum rtx_code, rtx, rtx,
21213b4c
DP
969 enum machine_mode);
970static int get_vsel_insn (enum machine_mode);
971static void rs6000_emit_vector_select (rtx, rtx, rtx, rtx);
3aebbe5f 972static tree rs6000_stack_protect_fail (void);
21213b4c
DP
973
974const int INSN_NOT_AVAILABLE = -1;
93f90be6
FJ
975static enum machine_mode rs6000_eh_return_filter_mode (void);
976
17211ab5
GK
977/* Hash table stuff for keeping track of TOC entries. */
978
979struct toc_hash_struct GTY(())
980{
981 /* `key' will satisfy CONSTANT_P; in fact, it will satisfy
982 ASM_OUTPUT_SPECIAL_POOL_ENTRY_P. */
983 rtx key;
984 enum machine_mode key_mode;
985 int labelno;
986};
987
988static GTY ((param_is (struct toc_hash_struct))) htab_t toc_hash_table;
c81bebd7
MM
989\f
990/* Default register names. */
991char rs6000_reg_names[][8] =
992{
802a0058
MM
993 "0", "1", "2", "3", "4", "5", "6", "7",
994 "8", "9", "10", "11", "12", "13", "14", "15",
995 "16", "17", "18", "19", "20", "21", "22", "23",
996 "24", "25", "26", "27", "28", "29", "30", "31",
997 "0", "1", "2", "3", "4", "5", "6", "7",
998 "8", "9", "10", "11", "12", "13", "14", "15",
999 "16", "17", "18", "19", "20", "21", "22", "23",
1000 "24", "25", "26", "27", "28", "29", "30", "31",
1001 "mq", "lr", "ctr","ap",
1002 "0", "1", "2", "3", "4", "5", "6", "7",
0ac081f6
AH
1003 "xer",
1004 /* AltiVec registers. */
0cd5e3a1
AH
1005 "0", "1", "2", "3", "4", "5", "6", "7",
1006 "8", "9", "10", "11", "12", "13", "14", "15",
1007 "16", "17", "18", "19", "20", "21", "22", "23",
1008 "24", "25", "26", "27", "28", "29", "30", "31",
59a4c851
AH
1009 "vrsave", "vscr",
1010 /* SPE registers. */
7d5175e1
JJ
1011 "spe_acc", "spefscr",
1012 /* Soft frame pointer. */
1013 "sfp"
c81bebd7
MM
1014};
1015
1016#ifdef TARGET_REGNAMES
8b60264b 1017static const char alt_reg_names[][8] =
c81bebd7 1018{
802a0058
MM
1019 "%r0", "%r1", "%r2", "%r3", "%r4", "%r5", "%r6", "%r7",
1020 "%r8", "%r9", "%r10", "%r11", "%r12", "%r13", "%r14", "%r15",
1021 "%r16", "%r17", "%r18", "%r19", "%r20", "%r21", "%r22", "%r23",
1022 "%r24", "%r25", "%r26", "%r27", "%r28", "%r29", "%r30", "%r31",
1023 "%f0", "%f1", "%f2", "%f3", "%f4", "%f5", "%f6", "%f7",
1024 "%f8", "%f9", "%f10", "%f11", "%f12", "%f13", "%f14", "%f15",
1025 "%f16", "%f17", "%f18", "%f19", "%f20", "%f21", "%f22", "%f23",
1026 "%f24", "%f25", "%f26", "%f27", "%f28", "%f29", "%f30", "%f31",
1027 "mq", "lr", "ctr", "ap",
1028 "%cr0", "%cr1", "%cr2", "%cr3", "%cr4", "%cr5", "%cr6", "%cr7",
0ac081f6 1029 "xer",
59a4c851 1030 /* AltiVec registers. */
0ac081f6 1031 "%v0", "%v1", "%v2", "%v3", "%v4", "%v5", "%v6", "%v7",
59a4c851
AH
1032 "%v8", "%v9", "%v10", "%v11", "%v12", "%v13", "%v14", "%v15",
1033 "%v16", "%v17", "%v18", "%v19", "%v20", "%v21", "%v22", "%v23",
1034 "%v24", "%v25", "%v26", "%v27", "%v28", "%v29", "%v30", "%v31",
1035 "vrsave", "vscr",
1036 /* SPE registers. */
7d5175e1
JJ
1037 "spe_acc", "spefscr",
1038 /* Soft frame pointer. */
1039 "sfp"
c81bebd7
MM
1040};
1041#endif
9878760c 1042\f
daf11973
MM
1043#ifndef MASK_STRICT_ALIGN
1044#define MASK_STRICT_ALIGN 0
1045#endif
ffcfcb5f
AM
1046#ifndef TARGET_PROFILE_KERNEL
1047#define TARGET_PROFILE_KERNEL 0
1048#endif
3961e8fe
RH
1049
1050/* The VRSAVE bitmask puts bit %v0 as the most significant bit. */
1051#define ALTIVEC_REG_BIT(REGNO) (0x80000000 >> ((REGNO) - FIRST_ALTIVEC_REGNO))
672a6f42
NB
1052\f
1053/* Initialize the GCC target structure. */
91d231cb
JM
1054#undef TARGET_ATTRIBUTE_TABLE
1055#define TARGET_ATTRIBUTE_TABLE rs6000_attribute_table
a5c76ee6
ZW
1056#undef TARGET_SET_DEFAULT_TYPE_ATTRIBUTES
1057#define TARGET_SET_DEFAULT_TYPE_ATTRIBUTES rs6000_set_default_type_attributes
daf11973 1058
301d03af
RS
1059#undef TARGET_ASM_ALIGNED_DI_OP
1060#define TARGET_ASM_ALIGNED_DI_OP DOUBLE_INT_ASM_OP
1061
1062/* Default unaligned ops are only provided for ELF. Find the ops needed
1063 for non-ELF systems. */
1064#ifndef OBJECT_FORMAT_ELF
cbaaba19 1065#if TARGET_XCOFF
ae6c1efd 1066/* For XCOFF. rs6000_assemble_integer will handle unaligned DIs on
301d03af
RS
1067 64-bit targets. */
1068#undef TARGET_ASM_UNALIGNED_HI_OP
1069#define TARGET_ASM_UNALIGNED_HI_OP "\t.vbyte\t2,"
1070#undef TARGET_ASM_UNALIGNED_SI_OP
1071#define TARGET_ASM_UNALIGNED_SI_OP "\t.vbyte\t4,"
1072#undef TARGET_ASM_UNALIGNED_DI_OP
1073#define TARGET_ASM_UNALIGNED_DI_OP "\t.vbyte\t8,"
1074#else
1075/* For Darwin. */
1076#undef TARGET_ASM_UNALIGNED_HI_OP
1077#define TARGET_ASM_UNALIGNED_HI_OP "\t.short\t"
1078#undef TARGET_ASM_UNALIGNED_SI_OP
1079#define TARGET_ASM_UNALIGNED_SI_OP "\t.long\t"
49bd1d27
SS
1080#undef TARGET_ASM_UNALIGNED_DI_OP
1081#define TARGET_ASM_UNALIGNED_DI_OP "\t.quad\t"
1082#undef TARGET_ASM_ALIGNED_DI_OP
1083#define TARGET_ASM_ALIGNED_DI_OP "\t.quad\t"
301d03af
RS
1084#endif
1085#endif
1086
1087/* This hook deals with fixups for relocatable code and DI-mode objects
1088 in 64-bit code. */
1089#undef TARGET_ASM_INTEGER
1090#define TARGET_ASM_INTEGER rs6000_assemble_integer
1091
93638d7a
AM
1092#ifdef HAVE_GAS_HIDDEN
1093#undef TARGET_ASM_ASSEMBLE_VISIBILITY
1094#define TARGET_ASM_ASSEMBLE_VISIBILITY rs6000_assemble_visibility
1095#endif
1096
c4501e62
JJ
1097#undef TARGET_HAVE_TLS
1098#define TARGET_HAVE_TLS HAVE_AS_TLS
1099
1100#undef TARGET_CANNOT_FORCE_CONST_MEM
a7e0b075 1101#define TARGET_CANNOT_FORCE_CONST_MEM rs6000_tls_referenced_p
c4501e62 1102
08c148a8
NB
1103#undef TARGET_ASM_FUNCTION_PROLOGUE
1104#define TARGET_ASM_FUNCTION_PROLOGUE rs6000_output_function_prologue
1105#undef TARGET_ASM_FUNCTION_EPILOGUE
1106#define TARGET_ASM_FUNCTION_EPILOGUE rs6000_output_function_epilogue
1107
b54cf83a
DE
1108#undef TARGET_SCHED_VARIABLE_ISSUE
1109#define TARGET_SCHED_VARIABLE_ISSUE rs6000_variable_issue
1110
c237e94a
ZW
1111#undef TARGET_SCHED_ISSUE_RATE
1112#define TARGET_SCHED_ISSUE_RATE rs6000_issue_rate
1113#undef TARGET_SCHED_ADJUST_COST
1114#define TARGET_SCHED_ADJUST_COST rs6000_adjust_cost
1115#undef TARGET_SCHED_ADJUST_PRIORITY
1116#define TARGET_SCHED_ADJUST_PRIORITY rs6000_adjust_priority
f676971a 1117#undef TARGET_SCHED_IS_COSTLY_DEPENDENCE
569fa502 1118#define TARGET_SCHED_IS_COSTLY_DEPENDENCE rs6000_is_costly_dependence
44cd321e
PS
1119#undef TARGET_SCHED_INIT
1120#define TARGET_SCHED_INIT rs6000_sched_init
cbe26ab8
DN
1121#undef TARGET_SCHED_FINISH
1122#define TARGET_SCHED_FINISH rs6000_sched_finish
44cd321e
PS
1123#undef TARGET_SCHED_REORDER
1124#define TARGET_SCHED_REORDER rs6000_sched_reorder
1125#undef TARGET_SCHED_REORDER2
1126#define TARGET_SCHED_REORDER2 rs6000_sched_reorder2
c237e94a 1127
be12c2b0
VM
1128#undef TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD
1129#define TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD rs6000_use_sched_lookahead
1130
d296e02e
AP
1131#undef TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD
1132#define TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD rs6000_use_sched_lookahead_guard
1133
e855c69d
AB
1134#undef TARGET_SCHED_ALLOC_SCHED_CONTEXT
1135#define TARGET_SCHED_ALLOC_SCHED_CONTEXT rs6000_alloc_sched_context
1136#undef TARGET_SCHED_INIT_SCHED_CONTEXT
1137#define TARGET_SCHED_INIT_SCHED_CONTEXT rs6000_init_sched_context
1138#undef TARGET_SCHED_SET_SCHED_CONTEXT
1139#define TARGET_SCHED_SET_SCHED_CONTEXT rs6000_set_sched_context
1140#undef TARGET_SCHED_FREE_SCHED_CONTEXT
1141#define TARGET_SCHED_FREE_SCHED_CONTEXT rs6000_free_sched_context
1142
7ccf35ed
DN
1143#undef TARGET_VECTORIZE_BUILTIN_MASK_FOR_LOAD
1144#define TARGET_VECTORIZE_BUILTIN_MASK_FOR_LOAD rs6000_builtin_mask_for_load
89d67cca
DN
1145#undef TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_EVEN
1146#define TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_EVEN rs6000_builtin_mul_widen_even
1147#undef TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_ODD
1148#define TARGET_VECTORIZE_BUILTIN_MUL_WIDEN_ODD rs6000_builtin_mul_widen_odd
f57d17f1
TM
1149#undef TARGET_VECTORIZE_BUILTIN_CONVERSION
1150#define TARGET_VECTORIZE_BUILTIN_CONVERSION rs6000_builtin_conversion
0fca40f5
IR
1151#undef TARGET_VECTORIZE_BUILTIN_VEC_PERM
1152#define TARGET_VECTORIZE_BUILTIN_VEC_PERM rs6000_builtin_vec_perm
7ccf35ed 1153
5b900a4c
DN
1154#undef TARGET_VECTOR_ALIGNMENT_REACHABLE
1155#define TARGET_VECTOR_ALIGNMENT_REACHABLE rs6000_vector_alignment_reachable
1156
0ac081f6
AH
1157#undef TARGET_INIT_BUILTINS
1158#define TARGET_INIT_BUILTINS rs6000_init_builtins
1159
1160#undef TARGET_EXPAND_BUILTIN
1161#define TARGET_EXPAND_BUILTIN rs6000_expand_builtin
1162
608063c3
JB
1163#undef TARGET_MANGLE_TYPE
1164#define TARGET_MANGLE_TYPE rs6000_mangle_type
f18eca82 1165
c15c90bb
ZW
1166#undef TARGET_INIT_LIBFUNCS
1167#define TARGET_INIT_LIBFUNCS rs6000_init_libfuncs
1168
f1384257 1169#if TARGET_MACHO
0e5dbd9b 1170#undef TARGET_BINDS_LOCAL_P
31920d83 1171#define TARGET_BINDS_LOCAL_P darwin_binds_local_p
f1384257 1172#endif
0e5dbd9b 1173
77ccdfed
EC
1174#undef TARGET_MS_BITFIELD_LAYOUT_P
1175#define TARGET_MS_BITFIELD_LAYOUT_P rs6000_ms_bitfield_layout_p
1176
3961e8fe
RH
1177#undef TARGET_ASM_OUTPUT_MI_THUNK
1178#define TARGET_ASM_OUTPUT_MI_THUNK rs6000_output_mi_thunk
1179
3961e8fe 1180#undef TARGET_ASM_CAN_OUTPUT_MI_THUNK
3101faab 1181#define TARGET_ASM_CAN_OUTPUT_MI_THUNK hook_bool_const_tree_hwi_hwi_const_tree_true
00b960c7 1182
4977bab6
ZW
1183#undef TARGET_FUNCTION_OK_FOR_SIBCALL
1184#define TARGET_FUNCTION_OK_FOR_SIBCALL rs6000_function_ok_for_sibcall
1185
2e3f0db6
DJ
1186#undef TARGET_INVALID_WITHIN_DOLOOP
1187#define TARGET_INVALID_WITHIN_DOLOOP rs6000_invalid_within_doloop
9419649c 1188
3c50106f
RH
1189#undef TARGET_RTX_COSTS
1190#define TARGET_RTX_COSTS rs6000_rtx_costs
dcefdf67 1191#undef TARGET_ADDRESS_COST
f40751dd 1192#define TARGET_ADDRESS_COST hook_int_rtx_bool_0
3c50106f 1193
c8e4f0e9 1194#undef TARGET_VECTOR_OPAQUE_P
58646b77 1195#define TARGET_VECTOR_OPAQUE_P rs6000_is_opaque_type
62e1dfcf 1196
96714395
AH
1197#undef TARGET_DWARF_REGISTER_SPAN
1198#define TARGET_DWARF_REGISTER_SPAN rs6000_dwarf_register_span
1199
37ea0b7e
JM
1200#undef TARGET_INIT_DWARF_REG_SIZES_EXTRA
1201#define TARGET_INIT_DWARF_REG_SIZES_EXTRA rs6000_init_dwarf_reg_sizes_extra
1202
c6e8c921
GK
1203/* On rs6000, function arguments are promoted, as are function return
1204 values. */
1205#undef TARGET_PROMOTE_FUNCTION_ARGS
586de218 1206#define TARGET_PROMOTE_FUNCTION_ARGS hook_bool_const_tree_true
c6e8c921 1207#undef TARGET_PROMOTE_FUNCTION_RETURN
586de218 1208#define TARGET_PROMOTE_FUNCTION_RETURN hook_bool_const_tree_true
c6e8c921 1209
c6e8c921
GK
1210#undef TARGET_RETURN_IN_MEMORY
1211#define TARGET_RETURN_IN_MEMORY rs6000_return_in_memory
1212
1213#undef TARGET_SETUP_INCOMING_VARARGS
1214#define TARGET_SETUP_INCOMING_VARARGS setup_incoming_varargs
1215
1216/* Always strict argument naming on rs6000. */
1217#undef TARGET_STRICT_ARGUMENT_NAMING
1218#define TARGET_STRICT_ARGUMENT_NAMING hook_bool_CUMULATIVE_ARGS_true
1219#undef TARGET_PRETEND_OUTGOING_VARARGS_NAMED
1220#define TARGET_PRETEND_OUTGOING_VARARGS_NAMED hook_bool_CUMULATIVE_ARGS_true
42ba5130 1221#undef TARGET_SPLIT_COMPLEX_ARG
3101faab 1222#define TARGET_SPLIT_COMPLEX_ARG hook_bool_const_tree_true
fe984136
RH
1223#undef TARGET_MUST_PASS_IN_STACK
1224#define TARGET_MUST_PASS_IN_STACK rs6000_must_pass_in_stack
8cd5a4e0
RH
1225#undef TARGET_PASS_BY_REFERENCE
1226#define TARGET_PASS_BY_REFERENCE rs6000_pass_by_reference
78a52f11
RH
1227#undef TARGET_ARG_PARTIAL_BYTES
1228#define TARGET_ARG_PARTIAL_BYTES rs6000_arg_partial_bytes
c6e8c921 1229
c35d187f
RH
1230#undef TARGET_BUILD_BUILTIN_VA_LIST
1231#define TARGET_BUILD_BUILTIN_VA_LIST rs6000_build_builtin_va_list
1232
d7bd8aeb
JJ
1233#undef TARGET_EXPAND_BUILTIN_VA_START
1234#define TARGET_EXPAND_BUILTIN_VA_START rs6000_va_start
1235
cd3ce9b4
JM
1236#undef TARGET_GIMPLIFY_VA_ARG_EXPR
1237#define TARGET_GIMPLIFY_VA_ARG_EXPR rs6000_gimplify_va_arg
1238
93f90be6
FJ
1239#undef TARGET_EH_RETURN_FILTER_MODE
1240#define TARGET_EH_RETURN_FILTER_MODE rs6000_eh_return_filter_mode
1241
00b79d54
BE
1242#undef TARGET_SCALAR_MODE_SUPPORTED_P
1243#define TARGET_SCALAR_MODE_SUPPORTED_P rs6000_scalar_mode_supported_p
1244
f676971a
EC
1245#undef TARGET_VECTOR_MODE_SUPPORTED_P
1246#define TARGET_VECTOR_MODE_SUPPORTED_P rs6000_vector_mode_supported_p
1247
4d3e6fae
FJ
1248#undef TARGET_INVALID_ARG_FOR_UNPROTOTYPED_FN
1249#define TARGET_INVALID_ARG_FOR_UNPROTOTYPED_FN invalid_arg_for_unprototyped_fn
1250
78f5898b
AH
1251#undef TARGET_HANDLE_OPTION
1252#define TARGET_HANDLE_OPTION rs6000_handle_option
1253
1254#undef TARGET_DEFAULT_TARGET_FLAGS
1255#define TARGET_DEFAULT_TARGET_FLAGS \
716019c0 1256 (TARGET_DEFAULT)
78f5898b 1257
3aebbe5f
JJ
1258#undef TARGET_STACK_PROTECT_FAIL
1259#define TARGET_STACK_PROTECT_FAIL rs6000_stack_protect_fail
1260
445cf5eb
JM
1261/* MPC604EUM 3.5.2 Weak Consistency between Multiple Processors
1262 The PowerPC architecture requires only weak consistency among
1263 processors--that is, memory accesses between processors need not be
1264 sequentially consistent and memory accesses among processors can occur
1265 in any order. The ability to order memory accesses weakly provides
1266 opportunities for more efficient use of the system bus. Unless a
1267 dependency exists, the 604e allows read operations to precede store
1268 operations. */
1269#undef TARGET_RELAXED_ORDERING
1270#define TARGET_RELAXED_ORDERING true
1271
fdbe66f2
EB
1272#ifdef HAVE_AS_TLS
1273#undef TARGET_ASM_OUTPUT_DWARF_DTPREL
1274#define TARGET_ASM_OUTPUT_DWARF_DTPREL rs6000_output_dwarf_dtprel
1275#endif
1276
aacd3885
RS
1277/* Use a 32-bit anchor range. This leads to sequences like:
1278
1279 addis tmp,anchor,high
1280 add dest,tmp,low
1281
1282 where tmp itself acts as an anchor, and can be shared between
1283 accesses to the same 64k page. */
1284#undef TARGET_MIN_ANCHOR_OFFSET
1285#define TARGET_MIN_ANCHOR_OFFSET -0x7fffffff - 1
1286#undef TARGET_MAX_ANCHOR_OFFSET
1287#define TARGET_MAX_ANCHOR_OFFSET 0x7fffffff
1288#undef TARGET_USE_BLOCKS_FOR_CONSTANT_P
1289#define TARGET_USE_BLOCKS_FOR_CONSTANT_P rs6000_use_blocks_for_constant_p
1290
9c78b944
DE
1291#undef TARGET_BUILTIN_RECIPROCAL
1292#define TARGET_BUILTIN_RECIPROCAL rs6000_builtin_reciprocal
1293
e41b2a33
PB
1294#undef TARGET_EXPAND_TO_RTL_HOOK
1295#define TARGET_EXPAND_TO_RTL_HOOK rs6000_alloc_sdmode_stack_slot
1296
1297#undef TARGET_INSTANTIATE_DECLS
1298#define TARGET_INSTANTIATE_DECLS rs6000_instantiate_decls
1299
f6897b10 1300struct gcc_target targetm = TARGET_INITIALIZER;
672a6f42 1301\f
0d1fbc8c
AH
1302
1303/* Value is 1 if hard register REGNO can hold a value of machine-mode
1304 MODE. */
1305static int
1306rs6000_hard_regno_mode_ok (int regno, enum machine_mode mode)
1307{
1308 /* The GPRs can hold any mode, but values bigger than one register
1309 cannot go past R31. */
1310 if (INT_REGNO_P (regno))
1311 return INT_REGNO_P (regno + HARD_REGNO_NREGS (regno, mode) - 1);
1312
a5a97921 1313 /* The float registers can only hold floating modes and DImode.
7393f7f8 1314 This excludes the 32-bit decimal float mode for now. */
0d1fbc8c
AH
1315 if (FP_REGNO_P (regno))
1316 return
96038623 1317 ((SCALAR_FLOAT_MODE_P (mode)
c092b045 1318 && (mode != TDmode || (regno % 2) == 0)
0d1fbc8c
AH
1319 && FP_REGNO_P (regno + HARD_REGNO_NREGS (regno, mode) - 1))
1320 || (GET_MODE_CLASS (mode) == MODE_INT
96038623
DE
1321 && GET_MODE_SIZE (mode) == UNITS_PER_FP_WORD)
1322 || (PAIRED_SIMD_REGNO_P (regno) && TARGET_PAIRED_FLOAT
1323 && PAIRED_VECTOR_MODE (mode)));
0d1fbc8c
AH
1324
1325 /* The CR register can only hold CC modes. */
1326 if (CR_REGNO_P (regno))
1327 return GET_MODE_CLASS (mode) == MODE_CC;
1328
1329 if (XER_REGNO_P (regno))
1330 return mode == PSImode;
1331
1332 /* AltiVec only in AldyVec registers. */
1333 if (ALTIVEC_REGNO_P (regno))
1334 return ALTIVEC_VECTOR_MODE (mode);
1335
1336 /* ...but GPRs can hold SIMD data on the SPE in one register. */
1337 if (SPE_SIMD_REGNO_P (regno) && TARGET_SPE && SPE_VECTOR_MODE (mode))
1338 return 1;
1339
1340 /* We cannot put TImode anywhere except general register and it must be
1341 able to fit within the register set. */
1342
1343 return GET_MODE_SIZE (mode) <= UNITS_PER_WORD;
1344}
1345
1346/* Initialize rs6000_hard_regno_mode_ok_p table. */
1347static void
1348rs6000_init_hard_regno_mode_ok (void)
1349{
1350 int r, m;
1351
1352 for (r = 0; r < FIRST_PSEUDO_REGISTER; ++r)
1353 for (m = 0; m < NUM_MACHINE_MODES; ++m)
1354 if (rs6000_hard_regno_mode_ok (r, m))
1355 rs6000_hard_regno_mode_ok_p[m][r] = true;
1356}
1357
e4cad568
GK
1358#if TARGET_MACHO
1359/* The Darwin version of SUBTARGET_OVERRIDE_OPTIONS. */
1360
1361static void
1362darwin_rs6000_override_options (void)
1363{
1364 /* The Darwin ABI always includes AltiVec, can't be (validly) turned
1365 off. */
1366 rs6000_altivec_abi = 1;
1367 TARGET_ALTIVEC_VRSAVE = 1;
1368 if (DEFAULT_ABI == ABI_DARWIN)
1369 {
1370 if (MACHO_DYNAMIC_NO_PIC_P)
1371 {
1372 if (flag_pic)
1373 warning (0, "-mdynamic-no-pic overrides -fpic or -fPIC");
1374 flag_pic = 0;
1375 }
1376 else if (flag_pic == 1)
1377 {
1378 flag_pic = 2;
1379 }
1380 }
1381 if (TARGET_64BIT && ! TARGET_POWERPC64)
1382 {
1383 target_flags |= MASK_POWERPC64;
1384 warning (0, "-m64 requires PowerPC64 architecture, enabling");
1385 }
1386 if (flag_mkernel)
1387 {
1388 rs6000_default_long_calls = 1;
1389 target_flags |= MASK_SOFT_FLOAT;
1390 }
1391
1392 /* Make -m64 imply -maltivec. Darwin's 64-bit ABI includes
1393 Altivec. */
1394 if (!flag_mkernel && !flag_apple_kext
1395 && TARGET_64BIT
1396 && ! (target_flags_explicit & MASK_ALTIVEC))
1397 target_flags |= MASK_ALTIVEC;
1398
1399 /* Unless the user (not the configurer) has explicitly overridden
1400 it with -mcpu=G3 or -mno-altivec, then 10.5+ targets default to
1401 G4 unless targetting the kernel. */
1402 if (!flag_mkernel
1403 && !flag_apple_kext
1404 && strverscmp (darwin_macosx_version_min, "10.5") >= 0
1405 && ! (target_flags_explicit & MASK_ALTIVEC)
1406 && ! rs6000_select[1].string)
1407 {
1408 target_flags |= MASK_ALTIVEC;
1409 }
1410}
1411#endif
1412
c1e55850
GK
1413/* If not otherwise specified by a target, make 'long double' equivalent to
1414 'double'. */
1415
1416#ifndef RS6000_DEFAULT_LONG_DOUBLE_SIZE
1417#define RS6000_DEFAULT_LONG_DOUBLE_SIZE 64
1418#endif
1419
5248c961
RK
1420/* Override command line options. Mostly we process the processor
1421 type and sometimes adjust other TARGET_ options. */
1422
1423void
d779d0dc 1424rs6000_override_options (const char *default_cpu)
5248c961 1425{
c4d38ccb 1426 size_t i, j;
8e3f41e7 1427 struct rs6000_cpu_select *ptr;
66188a7e 1428 int set_masks;
5248c961 1429
66188a7e 1430 /* Simplifications for entries below. */
85638c0d 1431
66188a7e
GK
1432 enum {
1433 POWERPC_BASE_MASK = MASK_POWERPC | MASK_NEW_MNEMONICS,
1434 POWERPC_7400_MASK = POWERPC_BASE_MASK | MASK_PPC_GFXOPT | MASK_ALTIVEC
1435 };
85638c0d 1436
66188a7e
GK
1437 /* This table occasionally claims that a processor does not support
1438 a particular feature even though it does, but the feature is slower
1439 than the alternative. Thus, it shouldn't be relied on as a
f676971a 1440 complete description of the processor's support.
66188a7e
GK
1441
1442 Please keep this list in order, and don't forget to update the
1443 documentation in invoke.texi when adding a new processor or
1444 flag. */
5248c961
RK
1445 static struct ptt
1446 {
8b60264b
KG
1447 const char *const name; /* Canonical processor name. */
1448 const enum processor_type processor; /* Processor type enum value. */
1449 const int target_enable; /* Target flags to enable. */
8b60264b 1450 } const processor_target_table[]
66188a7e 1451 = {{"401", PROCESSOR_PPC403, POWERPC_BASE_MASK | MASK_SOFT_FLOAT},
49a0b204 1452 {"403", PROCESSOR_PPC403,
66188a7e 1453 POWERPC_BASE_MASK | MASK_SOFT_FLOAT | MASK_STRICT_ALIGN},
131aeb82 1454 {"405", PROCESSOR_PPC405,
716019c0
JM
1455 POWERPC_BASE_MASK | MASK_SOFT_FLOAT | MASK_MULHW | MASK_DLMZB},
1456 {"405fp", PROCESSOR_PPC405,
1457 POWERPC_BASE_MASK | MASK_MULHW | MASK_DLMZB},
131aeb82 1458 {"440", PROCESSOR_PPC440,
716019c0
JM
1459 POWERPC_BASE_MASK | MASK_SOFT_FLOAT | MASK_MULHW | MASK_DLMZB},
1460 {"440fp", PROCESSOR_PPC440,
1461 POWERPC_BASE_MASK | MASK_MULHW | MASK_DLMZB},
4adf8008
PB
1462 {"464", PROCESSOR_PPC440,
1463 POWERPC_BASE_MASK | MASK_SOFT_FLOAT | MASK_MULHW | MASK_DLMZB},
1464 {"464fp", PROCESSOR_PPC440,
1465 POWERPC_BASE_MASK | MASK_MULHW | MASK_DLMZB},
66188a7e 1466 {"505", PROCESSOR_MPCCORE, POWERPC_BASE_MASK},
5248c961 1467 {"601", PROCESSOR_PPC601,
66188a7e
GK
1468 MASK_POWER | POWERPC_BASE_MASK | MASK_MULTIPLE | MASK_STRING},
1469 {"602", PROCESSOR_PPC603, POWERPC_BASE_MASK | MASK_PPC_GFXOPT},
1470 {"603", PROCESSOR_PPC603, POWERPC_BASE_MASK | MASK_PPC_GFXOPT},
1471 {"603e", PROCESSOR_PPC603, POWERPC_BASE_MASK | MASK_PPC_GFXOPT},
1472 {"604", PROCESSOR_PPC604, POWERPC_BASE_MASK | MASK_PPC_GFXOPT},
1473 {"604e", PROCESSOR_PPC604e, POWERPC_BASE_MASK | MASK_PPC_GFXOPT},
7ddb6568
AM
1474 {"620", PROCESSOR_PPC620,
1475 POWERPC_BASE_MASK | MASK_PPC_GFXOPT | MASK_POWERPC64},
1476 {"630", PROCESSOR_PPC630,
1477 POWERPC_BASE_MASK | MASK_PPC_GFXOPT | MASK_POWERPC64},
66188a7e
GK
1478 {"740", PROCESSOR_PPC750, POWERPC_BASE_MASK | MASK_PPC_GFXOPT},
1479 {"7400", PROCESSOR_PPC7400, POWERPC_7400_MASK},
1480 {"7450", PROCESSOR_PPC7450, POWERPC_7400_MASK},
1481 {"750", PROCESSOR_PPC750, POWERPC_BASE_MASK | MASK_PPC_GFXOPT},
1482 {"801", PROCESSOR_MPCCORE, POWERPC_BASE_MASK | MASK_SOFT_FLOAT},
1483 {"821", PROCESSOR_MPCCORE, POWERPC_BASE_MASK | MASK_SOFT_FLOAT},
1484 {"823", PROCESSOR_MPCCORE, POWERPC_BASE_MASK | MASK_SOFT_FLOAT},
a45bce6e 1485 {"8540", PROCESSOR_PPC8540, POWERPC_BASE_MASK | MASK_STRICT_ALIGN},
4d4cbc0e 1486 /* 8548 has a dummy entry for now. */
a45bce6e 1487 {"8548", PROCESSOR_PPC8540, POWERPC_BASE_MASK | MASK_STRICT_ALIGN},
fa41c305
EW
1488 {"e300c2", PROCESSOR_PPCE300C2, POWERPC_BASE_MASK | MASK_SOFT_FLOAT},
1489 {"e300c3", PROCESSOR_PPCE300C3, POWERPC_BASE_MASK},
edae5fe3 1490 {"e500mc", PROCESSOR_PPCE500MC, POWERPC_BASE_MASK | MASK_PPC_GFXOPT},
66188a7e 1491 {"860", PROCESSOR_MPCCORE, POWERPC_BASE_MASK | MASK_SOFT_FLOAT},
7177e720 1492 {"970", PROCESSOR_POWER4,
66188a7e 1493 POWERPC_7400_MASK | MASK_PPC_GPOPT | MASK_MFCRF | MASK_POWERPC64},
d296e02e
AP
1494 {"cell", PROCESSOR_CELL,
1495 POWERPC_7400_MASK | MASK_PPC_GPOPT | MASK_MFCRF | MASK_POWERPC64},
66188a7e
GK
1496 {"common", PROCESSOR_COMMON, MASK_NEW_MNEMONICS},
1497 {"ec603e", PROCESSOR_PPC603, POWERPC_BASE_MASK | MASK_SOFT_FLOAT},
1498 {"G3", PROCESSOR_PPC750, POWERPC_BASE_MASK | MASK_PPC_GFXOPT},
1499 {"G4", PROCESSOR_PPC7450, POWERPC_7400_MASK},
49ffe578 1500 {"G5", PROCESSOR_POWER4,
66188a7e
GK
1501 POWERPC_7400_MASK | MASK_PPC_GPOPT | MASK_MFCRF | MASK_POWERPC64},
1502 {"power", PROCESSOR_POWER, MASK_POWER | MASK_MULTIPLE | MASK_STRING},
1503 {"power2", PROCESSOR_POWER,
1504 MASK_POWER | MASK_POWER2 | MASK_MULTIPLE | MASK_STRING},
7ddb6568
AM
1505 {"power3", PROCESSOR_PPC630,
1506 POWERPC_BASE_MASK | MASK_PPC_GFXOPT | MASK_POWERPC64},
1507 {"power4", PROCESSOR_POWER4,
9a8d7941 1508 POWERPC_BASE_MASK | MASK_POWERPC64 | MASK_PPC_GPOPT | MASK_PPC_GFXOPT
1bc39d2f 1509 | MASK_MFCRF},
ec507f2d 1510 {"power5", PROCESSOR_POWER5,
9a8d7941 1511 POWERPC_BASE_MASK | MASK_POWERPC64 | MASK_PPC_GPOPT | MASK_PPC_GFXOPT
432218ba 1512 | MASK_MFCRF | MASK_POPCNTB},
9719f3b7 1513 {"power5+", PROCESSOR_POWER5,
9a8d7941 1514 POWERPC_BASE_MASK | MASK_POWERPC64 | MASK_PPC_GPOPT | MASK_PPC_GFXOPT
9719f3b7 1515 | MASK_MFCRF | MASK_POPCNTB | MASK_FPRND},
44cd321e 1516 {"power6", PROCESSOR_POWER6,
0783d48d
DE
1517 POWERPC_BASE_MASK | MASK_POWERPC64 | MASK_PPC_GPOPT | MASK_PPC_GFXOPT
1518 | MASK_MFCRF | MASK_POPCNTB | MASK_FPRND | MASK_CMPB | MASK_DFP},
44cd321e 1519 {"power6x", PROCESSOR_POWER6,
0783d48d
DE
1520 POWERPC_BASE_MASK | MASK_POWERPC64 | MASK_PPC_GPOPT | MASK_PPC_GFXOPT
1521 | MASK_MFCRF | MASK_POPCNTB | MASK_FPRND | MASK_CMPB | MASK_DFP
1522 | MASK_MFPGPR},
d40c9e33
PB
1523 {"power7", PROCESSOR_POWER5,
1524 POWERPC_7400_MASK | MASK_POWERPC64 | MASK_PPC_GPOPT | MASK_MFCRF
1525 | MASK_POPCNTB | MASK_FPRND | MASK_CMPB | MASK_DFP},
66188a7e
GK
1526 {"powerpc", PROCESSOR_POWERPC, POWERPC_BASE_MASK},
1527 {"powerpc64", PROCESSOR_POWERPC64,
98c41d98 1528 POWERPC_BASE_MASK | MASK_PPC_GFXOPT | MASK_POWERPC64},
66188a7e
GK
1529 {"rios", PROCESSOR_RIOS1, MASK_POWER | MASK_MULTIPLE | MASK_STRING},
1530 {"rios1", PROCESSOR_RIOS1, MASK_POWER | MASK_MULTIPLE | MASK_STRING},
1531 {"rios2", PROCESSOR_RIOS2,
1532 MASK_POWER | MASK_POWER2 | MASK_MULTIPLE | MASK_STRING},
1533 {"rsc", PROCESSOR_PPC601, MASK_POWER | MASK_MULTIPLE | MASK_STRING},
1534 {"rsc1", PROCESSOR_PPC601, MASK_POWER | MASK_MULTIPLE | MASK_STRING},
98c41d98
DE
1535 {"rs64", PROCESSOR_RS64A,
1536 POWERPC_BASE_MASK | MASK_PPC_GFXOPT | MASK_POWERPC64}
66188a7e 1537 };
5248c961 1538
ca7558fc 1539 const size_t ptt_size = ARRAY_SIZE (processor_target_table);
5248c961 1540
66188a7e
GK
1541 /* Some OSs don't support saving the high part of 64-bit registers on
1542 context switch. Other OSs don't support saving Altivec registers.
1543 On those OSs, we don't touch the MASK_POWERPC64 or MASK_ALTIVEC
1544 settings; if the user wants either, the user must explicitly specify
1545 them and we won't interfere with the user's specification. */
1546
1547 enum {
1548 POWER_MASKS = MASK_POWER | MASK_POWER2 | MASK_MULTIPLE | MASK_STRING,
db2675d3 1549 POWERPC_MASKS = (POWERPC_BASE_MASK | MASK_PPC_GPOPT | MASK_STRICT_ALIGN
66188a7e 1550 | MASK_PPC_GFXOPT | MASK_POWERPC64 | MASK_ALTIVEC
716019c0 1551 | MASK_MFCRF | MASK_POPCNTB | MASK_FPRND | MASK_MULHW
b639c3c2 1552 | MASK_DLMZB | MASK_CMPB | MASK_MFPGPR | MASK_DFP)
66188a7e 1553 };
0d1fbc8c 1554
c4ad648e 1555 set_masks = POWER_MASKS | POWERPC_MASKS | MASK_SOFT_FLOAT;
66188a7e
GK
1556#ifdef OS_MISSING_POWERPC64
1557 if (OS_MISSING_POWERPC64)
1558 set_masks &= ~MASK_POWERPC64;
1559#endif
1560#ifdef OS_MISSING_ALTIVEC
1561 if (OS_MISSING_ALTIVEC)
1562 set_masks &= ~MASK_ALTIVEC;
1563#endif
1564
768875a8
AM
1565 /* Don't override by the processor default if given explicitly. */
1566 set_masks &= ~target_flags_explicit;
957211c3 1567
a4f6c312 1568 /* Identify the processor type. */
8e3f41e7 1569 rs6000_select[0].string = default_cpu;
3cb999d8 1570 rs6000_cpu = TARGET_POWERPC64 ? PROCESSOR_DEFAULT64 : PROCESSOR_DEFAULT;
8e3f41e7 1571
b6a1cbae 1572 for (i = 0; i < ARRAY_SIZE (rs6000_select); i++)
5248c961 1573 {
8e3f41e7
MM
1574 ptr = &rs6000_select[i];
1575 if (ptr->string != (char *)0 && ptr->string[0] != '\0')
5248c961 1576 {
8e3f41e7
MM
1577 for (j = 0; j < ptt_size; j++)
1578 if (! strcmp (ptr->string, processor_target_table[j].name))
1579 {
1580 if (ptr->set_tune_p)
1581 rs6000_cpu = processor_target_table[j].processor;
1582
1583 if (ptr->set_arch_p)
1584 {
66188a7e
GK
1585 target_flags &= ~set_masks;
1586 target_flags |= (processor_target_table[j].target_enable
1587 & set_masks);
8e3f41e7
MM
1588 }
1589 break;
1590 }
1591
4406229e 1592 if (j == ptt_size)
8e3f41e7 1593 error ("bad value (%s) for %s switch", ptr->string, ptr->name);
5248c961
RK
1594 }
1595 }
8a61d227 1596
edae5fe3
DE
1597 if ((TARGET_E500 || rs6000_cpu == PROCESSOR_PPCE500MC)
1598 && !rs6000_explicit_options.isel)
a3170dc6
AH
1599 rs6000_isel = 1;
1600
edae5fe3
DE
1601 if (rs6000_cpu == PROCESSOR_PPCE300C2 || rs6000_cpu == PROCESSOR_PPCE300C3
1602 || rs6000_cpu == PROCESSOR_PPCE500MC)
fa41c305
EW
1603 {
1604 if (TARGET_ALTIVEC)
1605 error ("AltiVec not supported in this target");
1606 if (TARGET_SPE)
1607 error ("Spe not supported in this target");
1608 }
1609
25696a75 1610 /* Disable Cell microcode if we are optimizing for the Cell
c921bad8
AP
1611 and not optimizing for size. */
1612 if (rs6000_gen_cell_microcode == -1)
1613 rs6000_gen_cell_microcode = !(rs6000_cpu == PROCESSOR_CELL
1614 && !optimize_size);
1615
dff9f1b6 1616 /* If we are optimizing big endian systems for space, use the load/store
c921bad8
AP
1617 multiple and string instructions unless we are not generating
1618 Cell microcode. */
1619 if (BYTES_BIG_ENDIAN && optimize_size && !rs6000_gen_cell_microcode)
957211c3 1620 target_flags |= ~target_flags_explicit & (MASK_MULTIPLE | MASK_STRING);
938937d8 1621
a4f6c312
SS
1622 /* Don't allow -mmultiple or -mstring on little endian systems
1623 unless the cpu is a 750, because the hardware doesn't support the
1624 instructions used in little endian mode, and causes an alignment
1625 trap. The 750 does not cause an alignment trap (except when the
1626 target is unaligned). */
bef84347 1627
b21fb038 1628 if (!BYTES_BIG_ENDIAN && rs6000_cpu != PROCESSOR_PPC750)
7e69e155
MM
1629 {
1630 if (TARGET_MULTIPLE)
1631 {
1632 target_flags &= ~MASK_MULTIPLE;
b21fb038 1633 if ((target_flags_explicit & MASK_MULTIPLE) != 0)
d4ee4d25 1634 warning (0, "-mmultiple is not supported on little endian systems");
7e69e155
MM
1635 }
1636
1637 if (TARGET_STRING)
1638 {
1639 target_flags &= ~MASK_STRING;
b21fb038 1640 if ((target_flags_explicit & MASK_STRING) != 0)
d4ee4d25 1641 warning (0, "-mstring is not supported on little endian systems");
7e69e155
MM
1642 }
1643 }
3933e0e1 1644
38c1f2d7
MM
1645 /* Set debug flags */
1646 if (rs6000_debug_name)
1647 {
bfc79d3b 1648 if (! strcmp (rs6000_debug_name, "all"))
38c1f2d7 1649 rs6000_debug_stack = rs6000_debug_arg = 1;
bfc79d3b 1650 else if (! strcmp (rs6000_debug_name, "stack"))
38c1f2d7 1651 rs6000_debug_stack = 1;
bfc79d3b 1652 else if (! strcmp (rs6000_debug_name, "arg"))
38c1f2d7
MM
1653 rs6000_debug_arg = 1;
1654 else
c725bd79 1655 error ("unknown -mdebug-%s switch", rs6000_debug_name);
38c1f2d7
MM
1656 }
1657
57ac7be9
AM
1658 if (rs6000_traceback_name)
1659 {
1660 if (! strncmp (rs6000_traceback_name, "full", 4))
1661 rs6000_traceback = traceback_full;
1662 else if (! strncmp (rs6000_traceback_name, "part", 4))
1663 rs6000_traceback = traceback_part;
1664 else if (! strncmp (rs6000_traceback_name, "no", 2))
1665 rs6000_traceback = traceback_none;
1666 else
9e637a26 1667 error ("unknown -mtraceback arg %qs; expecting %<full%>, %<partial%> or %<none%>",
57ac7be9
AM
1668 rs6000_traceback_name);
1669 }
1670
78f5898b
AH
1671 if (!rs6000_explicit_options.long_double)
1672 rs6000_long_double_type_size = RS6000_DEFAULT_LONG_DOUBLE_SIZE;
6fa3f289 1673
602ea4d3 1674#ifndef POWERPC_LINUX
d3603e8c 1675 if (!rs6000_explicit_options.ieee)
602ea4d3
JJ
1676 rs6000_ieeequad = 1;
1677#endif
1678
0db747be
DE
1679 /* Enable Altivec ABI for AIX -maltivec. */
1680 if (TARGET_XCOFF && TARGET_ALTIVEC)
1681 rs6000_altivec_abi = 1;
1682
a2db2771
JJ
1683 /* The AltiVec ABI is the default for PowerPC-64 GNU/Linux. For
1684 PowerPC-32 GNU/Linux, -maltivec implies the AltiVec ABI. It can
1685 be explicitly overridden in either case. */
1686 if (TARGET_ELF)
6d0ef01e 1687 {
a2db2771
JJ
1688 if (!rs6000_explicit_options.altivec_abi
1689 && (TARGET_64BIT || TARGET_ALTIVEC))
1690 rs6000_altivec_abi = 1;
1691
1692 /* Enable VRSAVE for AltiVec ABI, unless explicitly overridden. */
1693 if (!rs6000_explicit_options.vrsave)
1694 TARGET_ALTIVEC_VRSAVE = rs6000_altivec_abi;
6d0ef01e
HP
1695 }
1696
594a51fe
SS
1697 /* Set the Darwin64 ABI as default for 64-bit Darwin. */
1698 if (DEFAULT_ABI == ABI_DARWIN && TARGET_64BIT)
1699 {
1700 rs6000_darwin64_abi = 1;
9c7956fd 1701#if TARGET_MACHO
6ac49599 1702 darwin_one_byte_bool = 1;
9c7956fd 1703#endif
d9168963
SS
1704 /* Default to natural alignment, for better performance. */
1705 rs6000_alignment_flags = MASK_ALIGN_NATURAL;
594a51fe
SS
1706 }
1707
194c524a
DE
1708 /* Place FP constants in the constant pool instead of TOC
1709 if section anchors enabled. */
1710 if (flag_section_anchors)
1711 TARGET_NO_FP_IN_TOC = 1;
1712
c4501e62
JJ
1713 /* Handle -mtls-size option. */
1714 rs6000_parse_tls_size_option ();
1715
a7ae18e2
AH
1716#ifdef SUBTARGET_OVERRIDE_OPTIONS
1717 SUBTARGET_OVERRIDE_OPTIONS;
1718#endif
1719#ifdef SUBSUBTARGET_OVERRIDE_OPTIONS
1720 SUBSUBTARGET_OVERRIDE_OPTIONS;
1721#endif
4d4cbc0e
AH
1722#ifdef SUB3TARGET_OVERRIDE_OPTIONS
1723 SUB3TARGET_OVERRIDE_OPTIONS;
1724#endif
a7ae18e2 1725
edae5fe3 1726 if (TARGET_E500 || rs6000_cpu == PROCESSOR_PPCE500MC)
5da702b1 1727 {
edae5fe3 1728 /* The e500 and e500mc do not have string instructions, and we set
5da702b1
AH
1729 MASK_STRING above when optimizing for size. */
1730 if ((target_flags & MASK_STRING) != 0)
1731 target_flags = target_flags & ~MASK_STRING;
1732 }
1733 else if (rs6000_select[1].string != NULL)
1734 {
1735 /* For the powerpc-eabispe configuration, we set all these by
1736 default, so let's unset them if we manually set another
1737 CPU that is not the E500. */
a2db2771 1738 if (!rs6000_explicit_options.spe_abi)
5da702b1 1739 rs6000_spe_abi = 0;
78f5898b 1740 if (!rs6000_explicit_options.spe)
5da702b1 1741 rs6000_spe = 0;
78f5898b 1742 if (!rs6000_explicit_options.float_gprs)
5da702b1 1743 rs6000_float_gprs = 0;
78f5898b 1744 if (!rs6000_explicit_options.isel)
5da702b1
AH
1745 rs6000_isel = 0;
1746 }
b5044283 1747
eca0d5e8
JM
1748 /* Detect invalid option combinations with E500. */
1749 CHECK_E500_OPTIONS;
1750
ec507f2d 1751 rs6000_always_hint = (rs6000_cpu != PROCESSOR_POWER4
44cd321e 1752 && rs6000_cpu != PROCESSOR_POWER5
d296e02e
AP
1753 && rs6000_cpu != PROCESSOR_POWER6
1754 && rs6000_cpu != PROCESSOR_CELL);
ec507f2d
DE
1755 rs6000_sched_groups = (rs6000_cpu == PROCESSOR_POWER4
1756 || rs6000_cpu == PROCESSOR_POWER5);
44cd321e
PS
1757 rs6000_align_branch_targets = (rs6000_cpu == PROCESSOR_POWER4
1758 || rs6000_cpu == PROCESSOR_POWER5
1759 || rs6000_cpu == PROCESSOR_POWER6);
ec507f2d 1760
ec507f2d
DE
1761 rs6000_sched_restricted_insns_priority
1762 = (rs6000_sched_groups ? 1 : 0);
79ae11c4 1763
569fa502 1764 /* Handle -msched-costly-dep option. */
ec507f2d
DE
1765 rs6000_sched_costly_dep
1766 = (rs6000_sched_groups ? store_to_load_dep_costly : no_dep_costly);
432218ba 1767
569fa502
DN
1768 if (rs6000_sched_costly_dep_str)
1769 {
f676971a 1770 if (! strcmp (rs6000_sched_costly_dep_str, "no"))
c4ad648e 1771 rs6000_sched_costly_dep = no_dep_costly;
569fa502 1772 else if (! strcmp (rs6000_sched_costly_dep_str, "all"))
c4ad648e 1773 rs6000_sched_costly_dep = all_deps_costly;
569fa502 1774 else if (! strcmp (rs6000_sched_costly_dep_str, "true_store_to_load"))
c4ad648e 1775 rs6000_sched_costly_dep = true_store_to_load_dep_costly;
569fa502 1776 else if (! strcmp (rs6000_sched_costly_dep_str, "store_to_load"))
c4ad648e 1777 rs6000_sched_costly_dep = store_to_load_dep_costly;
f676971a 1778 else
c4ad648e 1779 rs6000_sched_costly_dep = atoi (rs6000_sched_costly_dep_str);
cbe26ab8
DN
1780 }
1781
1782 /* Handle -minsert-sched-nops option. */
ec507f2d
DE
1783 rs6000_sched_insert_nops
1784 = (rs6000_sched_groups ? sched_finish_regroup_exact : sched_finish_none);
432218ba 1785
cbe26ab8
DN
1786 if (rs6000_sched_insert_nops_str)
1787 {
1788 if (! strcmp (rs6000_sched_insert_nops_str, "no"))
c4ad648e 1789 rs6000_sched_insert_nops = sched_finish_none;
cbe26ab8 1790 else if (! strcmp (rs6000_sched_insert_nops_str, "pad"))
c4ad648e 1791 rs6000_sched_insert_nops = sched_finish_pad_groups;
cbe26ab8 1792 else if (! strcmp (rs6000_sched_insert_nops_str, "regroup_exact"))
c4ad648e 1793 rs6000_sched_insert_nops = sched_finish_regroup_exact;
cbe26ab8 1794 else
c4ad648e 1795 rs6000_sched_insert_nops = atoi (rs6000_sched_insert_nops_str);
569fa502
DN
1796 }
1797
c81bebd7 1798#ifdef TARGET_REGNAMES
a4f6c312
SS
1799 /* If the user desires alternate register names, copy in the
1800 alternate names now. */
c81bebd7 1801 if (TARGET_REGNAMES)
4e135bdd 1802 memcpy (rs6000_reg_names, alt_reg_names, sizeof (rs6000_reg_names));
c81bebd7
MM
1803#endif
1804
df01da37 1805 /* Set aix_struct_return last, after the ABI is determined.
6fa3f289
ZW
1806 If -maix-struct-return or -msvr4-struct-return was explicitly
1807 used, don't override with the ABI default. */
df01da37
DE
1808 if (!rs6000_explicit_options.aix_struct_ret)
1809 aix_struct_return = (DEFAULT_ABI != ABI_V4 || DRAFT_V4_STRUCT_RET);
6fa3f289 1810
602ea4d3 1811 if (TARGET_LONG_DOUBLE_128 && !TARGET_IEEEQUAD)
70a01792 1812 REAL_MODE_FORMAT (TFmode) = &ibm_extended_format;
fcce224d 1813
f676971a 1814 if (TARGET_TOC)
9ebbca7d 1815 ASM_GENERATE_INTERNAL_LABEL (toc_label_name, "LCTOC", 1);
71f123ca 1816
301d03af
RS
1817 /* We can only guarantee the availability of DI pseudo-ops when
1818 assembling for 64-bit targets. */
ae6c1efd 1819 if (!TARGET_64BIT)
301d03af
RS
1820 {
1821 targetm.asm_out.aligned_op.di = NULL;
1822 targetm.asm_out.unaligned_op.di = NULL;
1823 }
1824
1494c534
DE
1825 /* Set branch target alignment, if not optimizing for size. */
1826 if (!optimize_size)
1827 {
d296e02e
AP
1828 /* Cell wants to be aligned 8byte for dual issue. */
1829 if (rs6000_cpu == PROCESSOR_CELL)
1830 {
1831 if (align_functions <= 0)
1832 align_functions = 8;
1833 if (align_jumps <= 0)
1834 align_jumps = 8;
1835 if (align_loops <= 0)
1836 align_loops = 8;
1837 }
44cd321e 1838 if (rs6000_align_branch_targets)
1494c534
DE
1839 {
1840 if (align_functions <= 0)
1841 align_functions = 16;
1842 if (align_jumps <= 0)
1843 align_jumps = 16;
1844 if (align_loops <= 0)
1845 align_loops = 16;
1846 }
1847 if (align_jumps_max_skip <= 0)
1848 align_jumps_max_skip = 15;
1849 if (align_loops_max_skip <= 0)
1850 align_loops_max_skip = 15;
1851 }
2792d578 1852
71f123ca
FS
1853 /* Arrange to save and restore machine status around nested functions. */
1854 init_machine_status = rs6000_init_machine_status;
42ba5130
RH
1855
1856 /* We should always be splitting complex arguments, but we can't break
1857 Linux and Darwin ABIs at the moment. For now, only AIX is fixed. */
18f63bfa 1858 if (DEFAULT_ABI != ABI_AIX)
42ba5130 1859 targetm.calls.split_complex_arg = NULL;
8b897cfa
RS
1860
1861 /* Initialize rs6000_cost with the appropriate target costs. */
1862 if (optimize_size)
1863 rs6000_cost = TARGET_POWERPC64 ? &size64_cost : &size32_cost;
1864 else
1865 switch (rs6000_cpu)
1866 {
1867 case PROCESSOR_RIOS1:
1868 rs6000_cost = &rios1_cost;
1869 break;
1870
1871 case PROCESSOR_RIOS2:
1872 rs6000_cost = &rios2_cost;
1873 break;
1874
1875 case PROCESSOR_RS64A:
1876 rs6000_cost = &rs64a_cost;
1877 break;
1878
1879 case PROCESSOR_MPCCORE:
1880 rs6000_cost = &mpccore_cost;
1881 break;
1882
1883 case PROCESSOR_PPC403:
1884 rs6000_cost = &ppc403_cost;
1885 break;
1886
1887 case PROCESSOR_PPC405:
1888 rs6000_cost = &ppc405_cost;
1889 break;
1890
1891 case PROCESSOR_PPC440:
1892 rs6000_cost = &ppc440_cost;
1893 break;
1894
1895 case PROCESSOR_PPC601:
1896 rs6000_cost = &ppc601_cost;
1897 break;
1898
1899 case PROCESSOR_PPC603:
1900 rs6000_cost = &ppc603_cost;
1901 break;
1902
1903 case PROCESSOR_PPC604:
1904 rs6000_cost = &ppc604_cost;
1905 break;
1906
1907 case PROCESSOR_PPC604e:
1908 rs6000_cost = &ppc604e_cost;
1909 break;
1910
1911 case PROCESSOR_PPC620:
8b897cfa
RS
1912 rs6000_cost = &ppc620_cost;
1913 break;
1914
f0517163
RS
1915 case PROCESSOR_PPC630:
1916 rs6000_cost = &ppc630_cost;
1917 break;
1918
982afe02 1919 case PROCESSOR_CELL:
d296e02e
AP
1920 rs6000_cost = &ppccell_cost;
1921 break;
1922
8b897cfa
RS
1923 case PROCESSOR_PPC750:
1924 case PROCESSOR_PPC7400:
1925 rs6000_cost = &ppc750_cost;
1926 break;
1927
1928 case PROCESSOR_PPC7450:
1929 rs6000_cost = &ppc7450_cost;
1930 break;
1931
1932 case PROCESSOR_PPC8540:
1933 rs6000_cost = &ppc8540_cost;
1934 break;
1935
fa41c305
EW
1936 case PROCESSOR_PPCE300C2:
1937 case PROCESSOR_PPCE300C3:
1938 rs6000_cost = &ppce300c2c3_cost;
1939 break;
1940
edae5fe3
DE
1941 case PROCESSOR_PPCE500MC:
1942 rs6000_cost = &ppce500mc_cost;
1943 break;
1944
8b897cfa
RS
1945 case PROCESSOR_POWER4:
1946 case PROCESSOR_POWER5:
1947 rs6000_cost = &power4_cost;
1948 break;
1949
44cd321e
PS
1950 case PROCESSOR_POWER6:
1951 rs6000_cost = &power6_cost;
1952 break;
1953
8b897cfa 1954 default:
37409796 1955 gcc_unreachable ();
8b897cfa 1956 }
0b11da67
DE
1957
1958 if (!PARAM_SET_P (PARAM_SIMULTANEOUS_PREFETCHES))
1959 set_param_value ("simultaneous-prefetches",
1960 rs6000_cost->simultaneous_prefetches);
1961 if (!PARAM_SET_P (PARAM_L1_CACHE_SIZE))
5f732aba 1962 set_param_value ("l1-cache-size", rs6000_cost->l1_cache_size);
0b11da67
DE
1963 if (!PARAM_SET_P (PARAM_L1_CACHE_LINE_SIZE))
1964 set_param_value ("l1-cache-line-size", rs6000_cost->cache_line_size);
5f732aba
DE
1965 if (!PARAM_SET_P (PARAM_L2_CACHE_SIZE))
1966 set_param_value ("l2-cache-size", rs6000_cost->l2_cache_size);
d7bd8aeb
JJ
1967
1968 /* If using typedef char *va_list, signal that __builtin_va_start (&ap, 0)
1969 can be optimized to ap = __builtin_next_arg (0). */
1970 if (DEFAULT_ABI != ABI_V4)
1971 targetm.expand_builtin_va_start = NULL;
696e45ba
ME
1972
1973 /* Set up single/double float flags.
1974 If TARGET_HARD_FLOAT is set, but neither single or double is set,
1975 then set both flags. */
1976 if (TARGET_HARD_FLOAT && TARGET_FPRS
1977 && rs6000_single_float == 0 && rs6000_double_float == 0)
1978 rs6000_single_float = rs6000_double_float = 1;
1979
1980 /* Reset single and double FP flags if target is E500. */
1981 if (TARGET_E500)
1982 {
1983 rs6000_single_float = rs6000_double_float = 0;
1984 if (TARGET_E500_SINGLE)
1985 rs6000_single_float = 1;
1986 if (TARGET_E500_DOUBLE)
1987 rs6000_single_float = rs6000_double_float = 1;
1988 }
1989
1990 rs6000_init_hard_regno_mode_ok ();
5248c961 1991}
5accd822 1992
7ccf35ed
DN
1993/* Implement targetm.vectorize.builtin_mask_for_load. */
1994static tree
1995rs6000_builtin_mask_for_load (void)
1996{
1997 if (TARGET_ALTIVEC)
1998 return altivec_builtin_mask_for_load;
1999 else
2000 return 0;
2001}
2002
7910ae0c
DN
2003/* Implement targetm.vectorize.builtin_conversion.
2004 Returns a decl of a function that implements conversion of an integer vector
2005 into a floating-point vector, or vice-versa. TYPE is the type of the integer
2006 side of the conversion.
2007 Return NULL_TREE if it is not available. */
f57d17f1
TM
2008static tree
2009rs6000_builtin_conversion (enum tree_code code, tree type)
2010{
2011 if (!TARGET_ALTIVEC)
2012 return NULL_TREE;
982afe02 2013
f57d17f1
TM
2014 switch (code)
2015 {
7910ae0c
DN
2016 case FIX_TRUNC_EXPR:
2017 switch (TYPE_MODE (type))
2018 {
2019 case V4SImode:
2020 return TYPE_UNSIGNED (type)
2021 ? rs6000_builtin_decls[ALTIVEC_BUILTIN_VCTUXS]
2022 : rs6000_builtin_decls[ALTIVEC_BUILTIN_VCTSXS];
2023 default:
2024 return NULL_TREE;
2025 }
2026
f57d17f1
TM
2027 case FLOAT_EXPR:
2028 switch (TYPE_MODE (type))
2029 {
2030 case V4SImode:
7910ae0c
DN
2031 return TYPE_UNSIGNED (type)
2032 ? rs6000_builtin_decls[ALTIVEC_BUILTIN_VCFUX]
2033 : rs6000_builtin_decls[ALTIVEC_BUILTIN_VCFSX];
f57d17f1
TM
2034 default:
2035 return NULL_TREE;
2036 }
7910ae0c 2037
f57d17f1
TM
2038 default:
2039 return NULL_TREE;
2040 }
2041}
2042
89d67cca
DN
2043/* Implement targetm.vectorize.builtin_mul_widen_even. */
2044static tree
2045rs6000_builtin_mul_widen_even (tree type)
2046{
2047 if (!TARGET_ALTIVEC)
2048 return NULL_TREE;
2049
2050 switch (TYPE_MODE (type))
2051 {
2052 case V8HImode:
7910ae0c
DN
2053 return TYPE_UNSIGNED (type)
2054 ? rs6000_builtin_decls[ALTIVEC_BUILTIN_VMULEUH]
2055 : rs6000_builtin_decls[ALTIVEC_BUILTIN_VMULESH];
89d67cca
DN
2056
2057 case V16QImode:
7910ae0c
DN
2058 return TYPE_UNSIGNED (type)
2059 ? rs6000_builtin_decls[ALTIVEC_BUILTIN_VMULEUB]
2060 : rs6000_builtin_decls[ALTIVEC_BUILTIN_VMULESB];
89d67cca
DN
2061 default:
2062 return NULL_TREE;
2063 }
2064}
2065
2066/* Implement targetm.vectorize.builtin_mul_widen_odd. */
2067static tree
2068rs6000_builtin_mul_widen_odd (tree type)
2069{
2070 if (!TARGET_ALTIVEC)
2071 return NULL_TREE;
2072
2073 switch (TYPE_MODE (type))
2074 {
2075 case V8HImode:
7910ae0c
DN
2076 return TYPE_UNSIGNED (type)
2077 ? rs6000_builtin_decls[ALTIVEC_BUILTIN_VMULOUH]
2078 : rs6000_builtin_decls[ALTIVEC_BUILTIN_VMULOSH];
89d67cca
DN
2079
2080 case V16QImode:
7910ae0c
DN
2081 return TYPE_UNSIGNED (type)
2082 ? rs6000_builtin_decls[ALTIVEC_BUILTIN_VMULOUB]
2083 : rs6000_builtin_decls[ALTIVEC_BUILTIN_VMULOSB];
89d67cca
DN
2084 default:
2085 return NULL_TREE;
2086 }
2087}
2088
5b900a4c
DN
2089
2090/* Return true iff, data reference of TYPE can reach vector alignment (16)
2091 after applying N number of iterations. This routine does not determine
2092 how may iterations are required to reach desired alignment. */
2093
2094static bool
3101faab 2095rs6000_vector_alignment_reachable (const_tree type ATTRIBUTE_UNUSED, bool is_packed)
5b900a4c
DN
2096{
2097 if (is_packed)
2098 return false;
2099
2100 if (TARGET_32BIT)
2101 {
2102 if (rs6000_alignment_flags == MASK_ALIGN_NATURAL)
2103 return true;
2104
2105 if (rs6000_alignment_flags == MASK_ALIGN_POWER)
2106 return true;
2107
2108 return false;
2109 }
2110 else
2111 {
2112 if (TARGET_MACHO)
2113 return false;
2114
2115 /* Assuming that all other types are naturally aligned. CHECKME! */
2116 return true;
2117 }
2118}
2119
0fca40f5
IR
2120/* Implement targetm.vectorize.builtin_vec_perm. */
2121tree
2122rs6000_builtin_vec_perm (tree type, tree *mask_element_type)
2123{
2124 tree d;
2125
2126 *mask_element_type = unsigned_char_type_node;
2127
2128 switch (TYPE_MODE (type))
2129 {
2130 case V16QImode:
2131 d = rs6000_builtin_decls[ALTIVEC_BUILTIN_VPERM_16QI];
2132 break;
2133
2134 case V8HImode:
2135 d = rs6000_builtin_decls[ALTIVEC_BUILTIN_VPERM_8HI];
2136 break;
2137
2138 case V4SImode:
2139 d = rs6000_builtin_decls[ALTIVEC_BUILTIN_VPERM_4SI];
2140 break;
2141
2142 case V4SFmode:
2143 d = rs6000_builtin_decls[ALTIVEC_BUILTIN_VPERM_4SF];
2144 break;
2145
2146 default:
2147 return NULL_TREE;
2148 }
2149
2150 gcc_assert (d);
2151 return d;
2152}
2153
5da702b1
AH
2154/* Handle generic options of the form -mfoo=yes/no.
2155 NAME is the option name.
2156 VALUE is the option value.
2157 FLAG is the pointer to the flag where to store a 1 or 0, depending on
2158 whether the option value is 'yes' or 'no' respectively. */
993f19a8 2159static void
5da702b1 2160rs6000_parse_yes_no_option (const char *name, const char *value, int *flag)
993f19a8 2161{
5da702b1 2162 if (value == 0)
993f19a8 2163 return;
5da702b1
AH
2164 else if (!strcmp (value, "yes"))
2165 *flag = 1;
2166 else if (!strcmp (value, "no"))
2167 *flag = 0;
08b57fb3 2168 else
5da702b1 2169 error ("unknown -m%s= option specified: '%s'", name, value);
08b57fb3
AH
2170}
2171
c4501e62
JJ
2172/* Validate and record the size specified with the -mtls-size option. */
2173
2174static void
863d938c 2175rs6000_parse_tls_size_option (void)
c4501e62
JJ
2176{
2177 if (rs6000_tls_size_string == 0)
2178 return;
2179 else if (strcmp (rs6000_tls_size_string, "16") == 0)
2180 rs6000_tls_size = 16;
2181 else if (strcmp (rs6000_tls_size_string, "32") == 0)
2182 rs6000_tls_size = 32;
2183 else if (strcmp (rs6000_tls_size_string, "64") == 0)
2184 rs6000_tls_size = 64;
2185 else
9e637a26 2186 error ("bad value %qs for -mtls-size switch", rs6000_tls_size_string);
c4501e62
JJ
2187}
2188
5accd822 2189void
a2369ed3 2190optimization_options (int level ATTRIBUTE_UNUSED, int size ATTRIBUTE_UNUSED)
5accd822 2191{
2e3f0db6
DJ
2192 if (DEFAULT_ABI == ABI_DARWIN)
2193 /* The Darwin libraries never set errno, so we might as well
2194 avoid calling them when that's the only reason we would. */
2195 flag_errno_math = 0;
59d6560b
DE
2196
2197 /* Double growth factor to counter reduced min jump length. */
2198 set_param_value ("max-grow-copy-bb-insns", 16);
194c524a
DE
2199
2200 /* Enable section anchors by default.
2201 Skip section anchors for Objective C and Objective C++
2f3b0d4a
ST
2202 until front-ends fixed. */
2203 if (!TARGET_MACHO && lang_hooks.name[4] != 'O')
d6cc6ec9 2204 flag_section_anchors = 2;
5accd822 2205}
78f5898b 2206
0bb7b92e
ME
2207static enum fpu_type_t
2208rs6000_parse_fpu_option (const char *option)
2209{
2210 if (!strcmp("none", option)) return FPU_NONE;
2211 if (!strcmp("sp_lite", option)) return FPU_SF_LITE;
2212 if (!strcmp("dp_lite", option)) return FPU_DF_LITE;
2213 if (!strcmp("sp_full", option)) return FPU_SF_FULL;
2214 if (!strcmp("dp_full", option)) return FPU_DF_FULL;
2215 error("unknown value %s for -mfpu", option);
2216 return FPU_NONE;
2217}
2218
78f5898b
AH
2219/* Implement TARGET_HANDLE_OPTION. */
2220
2221static bool
2222rs6000_handle_option (size_t code, const char *arg, int value)
2223{
0bb7b92e
ME
2224 enum fpu_type_t fpu_type = FPU_NONE;
2225
78f5898b
AH
2226 switch (code)
2227 {
2228 case OPT_mno_power:
2229 target_flags &= ~(MASK_POWER | MASK_POWER2
2230 | MASK_MULTIPLE | MASK_STRING);
c2dba4ab
AH
2231 target_flags_explicit |= (MASK_POWER | MASK_POWER2
2232 | MASK_MULTIPLE | MASK_STRING);
78f5898b
AH
2233 break;
2234 case OPT_mno_powerpc:
2235 target_flags &= ~(MASK_POWERPC | MASK_PPC_GPOPT
2236 | MASK_PPC_GFXOPT | MASK_POWERPC64);
c2dba4ab
AH
2237 target_flags_explicit |= (MASK_POWERPC | MASK_PPC_GPOPT
2238 | MASK_PPC_GFXOPT | MASK_POWERPC64);
78f5898b
AH
2239 break;
2240 case OPT_mfull_toc:
d2894ab5
DE
2241 target_flags &= ~MASK_MINIMAL_TOC;
2242 TARGET_NO_FP_IN_TOC = 0;
2243 TARGET_NO_SUM_IN_TOC = 0;
2244 target_flags_explicit |= MASK_MINIMAL_TOC;
78f5898b
AH
2245#ifdef TARGET_USES_SYSV4_OPT
2246 /* Note, V.4 no longer uses a normal TOC, so make -mfull-toc, be
2247 just the same as -mminimal-toc. */
2248 target_flags |= MASK_MINIMAL_TOC;
c2dba4ab 2249 target_flags_explicit |= MASK_MINIMAL_TOC;
78f5898b
AH
2250#endif
2251 break;
2252
2253#ifdef TARGET_USES_SYSV4_OPT
2254 case OPT_mtoc:
2255 /* Make -mtoc behave like -mminimal-toc. */
2256 target_flags |= MASK_MINIMAL_TOC;
c2dba4ab 2257 target_flags_explicit |= MASK_MINIMAL_TOC;
78f5898b
AH
2258 break;
2259#endif
2260
2261#ifdef TARGET_USES_AIX64_OPT
2262 case OPT_maix64:
2263#else
2264 case OPT_m64:
2265#endif
2c9c9afd
AM
2266 target_flags |= MASK_POWERPC64 | MASK_POWERPC;
2267 target_flags |= ~target_flags_explicit & MASK_PPC_GFXOPT;
2268 target_flags_explicit |= MASK_POWERPC64 | MASK_POWERPC;
78f5898b
AH
2269 break;
2270
2271#ifdef TARGET_USES_AIX64_OPT
2272 case OPT_maix32:
2273#else
2274 case OPT_m32:
2275#endif
2276 target_flags &= ~MASK_POWERPC64;
c2dba4ab 2277 target_flags_explicit |= MASK_POWERPC64;
78f5898b
AH
2278 break;
2279
2280 case OPT_minsert_sched_nops_:
2281 rs6000_sched_insert_nops_str = arg;
2282 break;
2283
2284 case OPT_mminimal_toc:
2285 if (value == 1)
2286 {
d2894ab5
DE
2287 TARGET_NO_FP_IN_TOC = 0;
2288 TARGET_NO_SUM_IN_TOC = 0;
78f5898b
AH
2289 }
2290 break;
2291
2292 case OPT_mpower:
2293 if (value == 1)
c2dba4ab
AH
2294 {
2295 target_flags |= (MASK_MULTIPLE | MASK_STRING);
2296 target_flags_explicit |= (MASK_MULTIPLE | MASK_STRING);
2297 }
78f5898b
AH
2298 break;
2299
2300 case OPT_mpower2:
2301 if (value == 1)
c2dba4ab
AH
2302 {
2303 target_flags |= (MASK_POWER | MASK_MULTIPLE | MASK_STRING);
2304 target_flags_explicit |= (MASK_POWER | MASK_MULTIPLE | MASK_STRING);
2305 }
78f5898b
AH
2306 break;
2307
2308 case OPT_mpowerpc_gpopt:
2309 case OPT_mpowerpc_gfxopt:
2310 if (value == 1)
c2dba4ab
AH
2311 {
2312 target_flags |= MASK_POWERPC;
2313 target_flags_explicit |= MASK_POWERPC;
2314 }
78f5898b
AH
2315 break;
2316
df01da37
DE
2317 case OPT_maix_struct_return:
2318 case OPT_msvr4_struct_return:
2319 rs6000_explicit_options.aix_struct_ret = true;
2320 break;
2321
78f5898b 2322 case OPT_mvrsave_:
a2db2771 2323 rs6000_explicit_options.vrsave = true;
78f5898b
AH
2324 rs6000_parse_yes_no_option ("vrsave", arg, &(TARGET_ALTIVEC_VRSAVE));
2325 break;
78f5898b 2326
94f4765c
NF
2327 case OPT_misel:
2328 rs6000_explicit_options.isel = true;
2329 rs6000_isel = value;
2330 break;
2331
78f5898b
AH
2332 case OPT_misel_:
2333 rs6000_explicit_options.isel = true;
2334 rs6000_parse_yes_no_option ("isel", arg, &(rs6000_isel));
2335 break;
2336
94f4765c
NF
2337 case OPT_mspe:
2338 rs6000_explicit_options.spe = true;
2339 rs6000_spe = value;
2340 break;
2341
78f5898b
AH
2342 case OPT_mspe_:
2343 rs6000_explicit_options.spe = true;
2344 rs6000_parse_yes_no_option ("spe", arg, &(rs6000_spe));
78f5898b
AH
2345 break;
2346
2347 case OPT_mdebug_:
2348 rs6000_debug_name = arg;
2349 break;
2350
2351#ifdef TARGET_USES_SYSV4_OPT
2352 case OPT_mcall_:
2353 rs6000_abi_name = arg;
2354 break;
2355
2356 case OPT_msdata_:
2357 rs6000_sdata_name = arg;
2358 break;
2359
2360 case OPT_mtls_size_:
2361 rs6000_tls_size_string = arg;
2362 break;
2363
2364 case OPT_mrelocatable:
2365 if (value == 1)
c2dba4ab 2366 {
e0bf274f
AM
2367 target_flags |= MASK_MINIMAL_TOC;
2368 target_flags_explicit |= MASK_MINIMAL_TOC;
2369 TARGET_NO_FP_IN_TOC = 1;
c2dba4ab 2370 }
78f5898b
AH
2371 break;
2372
2373 case OPT_mrelocatable_lib:
2374 if (value == 1)
c2dba4ab 2375 {
e0bf274f
AM
2376 target_flags |= MASK_RELOCATABLE | MASK_MINIMAL_TOC;
2377 target_flags_explicit |= MASK_RELOCATABLE | MASK_MINIMAL_TOC;
2378 TARGET_NO_FP_IN_TOC = 1;
c2dba4ab 2379 }
78f5898b 2380 else
c2dba4ab
AH
2381 {
2382 target_flags &= ~MASK_RELOCATABLE;
2383 target_flags_explicit |= MASK_RELOCATABLE;
2384 }
78f5898b
AH
2385 break;
2386#endif
2387
2388 case OPT_mabi_:
78f5898b
AH
2389 if (!strcmp (arg, "altivec"))
2390 {
a2db2771 2391 rs6000_explicit_options.altivec_abi = true;
78f5898b 2392 rs6000_altivec_abi = 1;
a2db2771
JJ
2393
2394 /* Enabling the AltiVec ABI turns off the SPE ABI. */
78f5898b
AH
2395 rs6000_spe_abi = 0;
2396 }
2397 else if (! strcmp (arg, "no-altivec"))
d3603e8c 2398 {
a2db2771 2399 rs6000_explicit_options.altivec_abi = true;
d3603e8c
AM
2400 rs6000_altivec_abi = 0;
2401 }
78f5898b
AH
2402 else if (! strcmp (arg, "spe"))
2403 {
a2db2771 2404 rs6000_explicit_options.spe_abi = true;
78f5898b
AH
2405 rs6000_spe_abi = 1;
2406 rs6000_altivec_abi = 0;
2407 if (!TARGET_SPE_ABI)
2408 error ("not configured for ABI: '%s'", arg);
2409 }
2410 else if (! strcmp (arg, "no-spe"))
d3603e8c 2411 {
a2db2771 2412 rs6000_explicit_options.spe_abi = true;
d3603e8c
AM
2413 rs6000_spe_abi = 0;
2414 }
78f5898b
AH
2415
2416 /* These are here for testing during development only, do not
2417 document in the manual please. */
2418 else if (! strcmp (arg, "d64"))
2419 {
2420 rs6000_darwin64_abi = 1;
2421 warning (0, "Using darwin64 ABI");
2422 }
2423 else if (! strcmp (arg, "d32"))
2424 {
2425 rs6000_darwin64_abi = 0;
2426 warning (0, "Using old darwin ABI");
2427 }
2428
602ea4d3
JJ
2429 else if (! strcmp (arg, "ibmlongdouble"))
2430 {
d3603e8c 2431 rs6000_explicit_options.ieee = true;
602ea4d3
JJ
2432 rs6000_ieeequad = 0;
2433 warning (0, "Using IBM extended precision long double");
2434 }
2435 else if (! strcmp (arg, "ieeelongdouble"))
2436 {
d3603e8c 2437 rs6000_explicit_options.ieee = true;
602ea4d3
JJ
2438 rs6000_ieeequad = 1;
2439 warning (0, "Using IEEE extended precision long double");
2440 }
2441
78f5898b
AH
2442 else
2443 {
2444 error ("unknown ABI specified: '%s'", arg);
2445 return false;
2446 }
2447 break;
2448
2449 case OPT_mcpu_:
2450 rs6000_select[1].string = arg;
2451 break;
2452
2453 case OPT_mtune_:
2454 rs6000_select[2].string = arg;
2455 break;
2456
2457 case OPT_mtraceback_:
2458 rs6000_traceback_name = arg;
2459 break;
2460
2461 case OPT_mfloat_gprs_:
2462 rs6000_explicit_options.float_gprs = true;
2463 if (! strcmp (arg, "yes") || ! strcmp (arg, "single"))
2464 rs6000_float_gprs = 1;
2465 else if (! strcmp (arg, "double"))
2466 rs6000_float_gprs = 2;
2467 else if (! strcmp (arg, "no"))
2468 rs6000_float_gprs = 0;
2469 else
2470 {
2471 error ("invalid option for -mfloat-gprs: '%s'", arg);
2472 return false;
2473 }
2474 break;
2475
2476 case OPT_mlong_double_:
2477 rs6000_explicit_options.long_double = true;
2478 rs6000_long_double_type_size = RS6000_DEFAULT_LONG_DOUBLE_SIZE;
2479 if (value != 64 && value != 128)
2480 {
2481 error ("Unknown switch -mlong-double-%s", arg);
2482 rs6000_long_double_type_size = RS6000_DEFAULT_LONG_DOUBLE_SIZE;
2483 return false;
2484 }
2485 else
2486 rs6000_long_double_type_size = value;
2487 break;
2488
2489 case OPT_msched_costly_dep_:
2490 rs6000_sched_costly_dep_str = arg;
2491 break;
2492
2493 case OPT_malign_:
2494 rs6000_explicit_options.alignment = true;
2495 if (! strcmp (arg, "power"))
2496 {
2497 /* On 64-bit Darwin, power alignment is ABI-incompatible with
2498 some C library functions, so warn about it. The flag may be
2499 useful for performance studies from time to time though, so
2500 don't disable it entirely. */
2501 if (DEFAULT_ABI == ABI_DARWIN && TARGET_64BIT)
2502 warning (0, "-malign-power is not supported for 64-bit Darwin;"
2503 " it is incompatible with the installed C and C++ libraries");
2504 rs6000_alignment_flags = MASK_ALIGN_POWER;
2505 }
2506 else if (! strcmp (arg, "natural"))
2507 rs6000_alignment_flags = MASK_ALIGN_NATURAL;
2508 else
2509 {
2510 error ("unknown -malign-XXXXX option specified: '%s'", arg);
2511 return false;
2512 }
2513 break;
696e45ba
ME
2514
2515 case OPT_msingle_float:
2516 if (!TARGET_SINGLE_FPU)
2517 warning (0, "-msingle-float option equivalent to -mhard-float");
2518 /* -msingle-float implies -mno-double-float and TARGET_HARD_FLOAT. */
2519 rs6000_double_float = 0;
2520 target_flags &= ~MASK_SOFT_FLOAT;
2521 target_flags_explicit |= MASK_SOFT_FLOAT;
2522 break;
2523
2524 case OPT_mdouble_float:
2525 /* -mdouble-float implies -msingle-float and TARGET_HARD_FLOAT. */
2526 rs6000_single_float = 1;
2527 target_flags &= ~MASK_SOFT_FLOAT;
2528 target_flags_explicit |= MASK_SOFT_FLOAT;
2529 break;
2530
2531 case OPT_msimple_fpu:
2532 if (!TARGET_SINGLE_FPU)
2533 warning (0, "-msimple-fpu option ignored");
2534 break;
2535
2536 case OPT_mhard_float:
2537 /* -mhard_float implies -msingle-float and -mdouble-float. */
2538 rs6000_single_float = rs6000_double_float = 1;
2539 break;
2540
2541 case OPT_msoft_float:
2542 /* -msoft_float implies -mnosingle-float and -mnodouble-float. */
2543 rs6000_single_float = rs6000_double_float = 0;
2544 break;
0bb7b92e
ME
2545
2546 case OPT_mfpu_:
2547 fpu_type = rs6000_parse_fpu_option(arg);
2548 if (fpu_type != FPU_NONE)
2549 /* If -mfpu is not none, then turn off SOFT_FLOAT, turn on HARD_FLOAT. */
2550 {
2551 target_flags &= ~MASK_SOFT_FLOAT;
2552 target_flags_explicit |= MASK_SOFT_FLOAT;
2553 rs6000_xilinx_fpu = 1;
2554 if (fpu_type == FPU_SF_LITE || fpu_type == FPU_SF_FULL)
2555 rs6000_single_float = 1;
2556 if (fpu_type == FPU_DF_LITE || fpu_type == FPU_DF_FULL)
2557 rs6000_single_float = rs6000_double_float = 1;
2558 if (fpu_type == FPU_SF_LITE || fpu_type == FPU_DF_LITE)
2559 rs6000_simple_fpu = 1;
2560 }
2561 else
2562 {
2563 /* -mfpu=none is equivalent to -msoft-float */
2564 target_flags |= MASK_SOFT_FLOAT;
2565 target_flags_explicit |= MASK_SOFT_FLOAT;
2566 rs6000_single_float = rs6000_double_float = 0;
2567 }
2568 break;
78f5898b
AH
2569 }
2570 return true;
2571}
3cfa4909
MM
2572\f
2573/* Do anything needed at the start of the asm file. */
2574
1bc7c5b6 2575static void
863d938c 2576rs6000_file_start (void)
3cfa4909 2577{
c4d38ccb 2578 size_t i;
3cfa4909 2579 char buffer[80];
d330fd93 2580 const char *start = buffer;
3cfa4909 2581 struct rs6000_cpu_select *ptr;
1bc7c5b6
ZW
2582 const char *default_cpu = TARGET_CPU_DEFAULT;
2583 FILE *file = asm_out_file;
2584
2585 default_file_start ();
2586
2587#ifdef TARGET_BI_ARCH
2588 if ((TARGET_DEFAULT ^ target_flags) & MASK_64BIT)
2589 default_cpu = 0;
2590#endif
3cfa4909
MM
2591
2592 if (flag_verbose_asm)
2593 {
2594 sprintf (buffer, "\n%s rs6000/powerpc options:", ASM_COMMENT_START);
2595 rs6000_select[0].string = default_cpu;
2596
b6a1cbae 2597 for (i = 0; i < ARRAY_SIZE (rs6000_select); i++)
3cfa4909
MM
2598 {
2599 ptr = &rs6000_select[i];
2600 if (ptr->string != (char *)0 && ptr->string[0] != '\0')
2601 {
2602 fprintf (file, "%s %s%s", start, ptr->name, ptr->string);
2603 start = "";
2604 }
2605 }
2606
9c6b4ed9 2607 if (PPC405_ERRATUM77)
b0bfee6e 2608 {
9c6b4ed9 2609 fprintf (file, "%s PPC405CR_ERRATUM77", start);
b0bfee6e
DE
2610 start = "";
2611 }
b0bfee6e 2612
b91da81f 2613#ifdef USING_ELFOS_H
3cfa4909
MM
2614 switch (rs6000_sdata)
2615 {
2616 case SDATA_NONE: fprintf (file, "%s -msdata=none", start); start = ""; break;
2617 case SDATA_DATA: fprintf (file, "%s -msdata=data", start); start = ""; break;
2618 case SDATA_SYSV: fprintf (file, "%s -msdata=sysv", start); start = ""; break;
2619 case SDATA_EABI: fprintf (file, "%s -msdata=eabi", start); start = ""; break;
2620 }
2621
2622 if (rs6000_sdata && g_switch_value)
2623 {
307b599c
MK
2624 fprintf (file, "%s -G " HOST_WIDE_INT_PRINT_UNSIGNED, start,
2625 g_switch_value);
3cfa4909
MM
2626 start = "";
2627 }
2628#endif
2629
2630 if (*start == '\0')
949ea356 2631 putc ('\n', file);
3cfa4909 2632 }
b723e82f 2633
e51917ae
JM
2634#ifdef HAVE_AS_GNU_ATTRIBUTE
2635 if (TARGET_32BIT && DEFAULT_ABI == ABI_V4)
aaa42494
DJ
2636 {
2637 fprintf (file, "\t.gnu_attribute 4, %d\n",
696e45ba
ME
2638 ((TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_DOUBLE_FLOAT) ? 1
2639 : (TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_SINGLE_FLOAT) ? 3
2640 : 2));
aaa42494
DJ
2641 fprintf (file, "\t.gnu_attribute 8, %d\n",
2642 (TARGET_ALTIVEC_ABI ? 2
2643 : TARGET_SPE_ABI ? 3
2644 : 1));
f9fd1e77
NF
2645 fprintf (file, "\t.gnu_attribute 12, %d\n",
2646 aix_struct_return ? 2 : 1);
2647
aaa42494 2648 }
e51917ae
JM
2649#endif
2650
b723e82f
JJ
2651 if (DEFAULT_ABI == ABI_AIX || (TARGET_ELF && flag_pic == 2))
2652 {
d6b5193b
RS
2653 switch_to_section (toc_section);
2654 switch_to_section (text_section);
b723e82f 2655 }
3cfa4909 2656}
c4e18b1c 2657
5248c961 2658\f
a0ab749a 2659/* Return nonzero if this function is known to have a null epilogue. */
9878760c
RK
2660
2661int
863d938c 2662direct_return (void)
9878760c 2663{
4697a36c
MM
2664 if (reload_completed)
2665 {
2666 rs6000_stack_t *info = rs6000_stack_info ();
2667
2668 if (info->first_gp_reg_save == 32
2669 && info->first_fp_reg_save == 64
00b960c7 2670 && info->first_altivec_reg_save == LAST_ALTIVEC_REGNO + 1
c81fc13e
DE
2671 && ! info->lr_save_p
2672 && ! info->cr_save_p
00b960c7 2673 && info->vrsave_mask == 0
c81fc13e 2674 && ! info->push_p)
4697a36c
MM
2675 return 1;
2676 }
2677
2678 return 0;
9878760c
RK
2679}
2680
4e74d8ec
MM
2681/* Return the number of instructions it takes to form a constant in an
2682 integer register. */
2683
48d72335 2684int
a2369ed3 2685num_insns_constant_wide (HOST_WIDE_INT value)
4e74d8ec
MM
2686{
2687 /* signed constant loadable with {cal|addi} */
547b216d 2688 if ((unsigned HOST_WIDE_INT) (value + 0x8000) < 0x10000)
0865c631
GK
2689 return 1;
2690
4e74d8ec 2691 /* constant loadable with {cau|addis} */
547b216d
DE
2692 else if ((value & 0xffff) == 0
2693 && (value >> 31 == -1 || value >> 31 == 0))
4e74d8ec
MM
2694 return 1;
2695
5f59ecb7 2696#if HOST_BITS_PER_WIDE_INT == 64
c81fc13e 2697 else if (TARGET_POWERPC64)
4e74d8ec 2698 {
a65c591c
DE
2699 HOST_WIDE_INT low = ((value & 0xffffffff) ^ 0x80000000) - 0x80000000;
2700 HOST_WIDE_INT high = value >> 31;
4e74d8ec 2701
a65c591c 2702 if (high == 0 || high == -1)
4e74d8ec
MM
2703 return 2;
2704
a65c591c 2705 high >>= 1;
4e74d8ec 2706
a65c591c 2707 if (low == 0)
4e74d8ec 2708 return num_insns_constant_wide (high) + 1;
4e74d8ec
MM
2709 else
2710 return (num_insns_constant_wide (high)
e396202a 2711 + num_insns_constant_wide (low) + 1);
4e74d8ec
MM
2712 }
2713#endif
2714
2715 else
2716 return 2;
2717}
2718
2719int
a2369ed3 2720num_insns_constant (rtx op, enum machine_mode mode)
4e74d8ec 2721{
37409796 2722 HOST_WIDE_INT low, high;
bb8df8a6 2723
37409796 2724 switch (GET_CODE (op))
0d30d435 2725 {
37409796 2726 case CONST_INT:
0d30d435 2727#if HOST_BITS_PER_WIDE_INT == 64
4e2c1c44 2728 if ((INTVAL (op) >> 31) != 0 && (INTVAL (op) >> 31) != -1
1990cd79 2729 && mask64_operand (op, mode))
c4ad648e 2730 return 2;
0d30d435
DE
2731 else
2732#endif
2733 return num_insns_constant_wide (INTVAL (op));
4e74d8ec 2734
37409796 2735 case CONST_DOUBLE:
e41b2a33 2736 if (mode == SFmode || mode == SDmode)
37409796
NS
2737 {
2738 long l;
2739 REAL_VALUE_TYPE rv;
bb8df8a6 2740
37409796 2741 REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
e41b2a33
PB
2742 if (DECIMAL_FLOAT_MODE_P (mode))
2743 REAL_VALUE_TO_TARGET_DECIMAL32 (rv, l);
2744 else
2745 REAL_VALUE_TO_TARGET_SINGLE (rv, l);
37409796
NS
2746 return num_insns_constant_wide ((HOST_WIDE_INT) l);
2747 }
a260abc9 2748
37409796
NS
2749 if (mode == VOIDmode || mode == DImode)
2750 {
2751 high = CONST_DOUBLE_HIGH (op);
2752 low = CONST_DOUBLE_LOW (op);
2753 }
2754 else
2755 {
2756 long l[2];
2757 REAL_VALUE_TYPE rv;
bb8df8a6 2758
37409796 2759 REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
7393f7f8
BE
2760 if (DECIMAL_FLOAT_MODE_P (mode))
2761 REAL_VALUE_TO_TARGET_DECIMAL64 (rv, l);
2762 else
2763 REAL_VALUE_TO_TARGET_DOUBLE (rv, l);
37409796
NS
2764 high = l[WORDS_BIG_ENDIAN == 0];
2765 low = l[WORDS_BIG_ENDIAN != 0];
2766 }
47ad8c61 2767
37409796
NS
2768 if (TARGET_32BIT)
2769 return (num_insns_constant_wide (low)
2770 + num_insns_constant_wide (high));
2771 else
2772 {
2773 if ((high == 0 && low >= 0)
2774 || (high == -1 && low < 0))
2775 return num_insns_constant_wide (low);
bb8df8a6 2776
1990cd79 2777 else if (mask64_operand (op, mode))
37409796 2778 return 2;
bb8df8a6 2779
37409796
NS
2780 else if (low == 0)
2781 return num_insns_constant_wide (high) + 1;
bb8df8a6 2782
37409796
NS
2783 else
2784 return (num_insns_constant_wide (high)
2785 + num_insns_constant_wide (low) + 1);
2786 }
bb8df8a6 2787
37409796
NS
2788 default:
2789 gcc_unreachable ();
4e74d8ec 2790 }
4e74d8ec
MM
2791}
2792
0972012c
RS
2793/* Interpret element ELT of the CONST_VECTOR OP as an integer value.
2794 If the mode of OP is MODE_VECTOR_INT, this simply returns the
2795 corresponding element of the vector, but for V4SFmode and V2SFmode,
2796 the corresponding "float" is interpreted as an SImode integer. */
2797
847535b6 2798HOST_WIDE_INT
0972012c
RS
2799const_vector_elt_as_int (rtx op, unsigned int elt)
2800{
2801 rtx tmp = CONST_VECTOR_ELT (op, elt);
2802 if (GET_MODE (op) == V4SFmode
2803 || GET_MODE (op) == V2SFmode)
2804 tmp = gen_lowpart (SImode, tmp);
2805 return INTVAL (tmp);
2806}
452a7d36 2807
77ccdfed 2808/* Return true if OP can be synthesized with a particular vspltisb, vspltish
66180ff3
PB
2809 or vspltisw instruction. OP is a CONST_VECTOR. Which instruction is used
2810 depends on STEP and COPIES, one of which will be 1. If COPIES > 1,
2811 all items are set to the same value and contain COPIES replicas of the
2812 vsplt's operand; if STEP > 1, one in STEP elements is set to the vsplt's
2813 operand and the others are set to the value of the operand's msb. */
2814
2815static bool
2816vspltis_constant (rtx op, unsigned step, unsigned copies)
452a7d36 2817{
66180ff3
PB
2818 enum machine_mode mode = GET_MODE (op);
2819 enum machine_mode inner = GET_MODE_INNER (mode);
2820
2821 unsigned i;
2822 unsigned nunits = GET_MODE_NUNITS (mode);
2823 unsigned bitsize = GET_MODE_BITSIZE (inner);
2824 unsigned mask = GET_MODE_MASK (inner);
2825
0972012c 2826 HOST_WIDE_INT val = const_vector_elt_as_int (op, nunits - 1);
66180ff3
PB
2827 HOST_WIDE_INT splat_val = val;
2828 HOST_WIDE_INT msb_val = val > 0 ? 0 : -1;
2829
2830 /* Construct the value to be splatted, if possible. If not, return 0. */
2831 for (i = 2; i <= copies; i *= 2)
452a7d36 2832 {
66180ff3
PB
2833 HOST_WIDE_INT small_val;
2834 bitsize /= 2;
2835 small_val = splat_val >> bitsize;
2836 mask >>= bitsize;
2837 if (splat_val != ((small_val << bitsize) | (small_val & mask)))
2838 return false;
2839 splat_val = small_val;
2840 }
c4ad648e 2841
66180ff3
PB
2842 /* Check if SPLAT_VAL can really be the operand of a vspltis[bhw]. */
2843 if (EASY_VECTOR_15 (splat_val))
2844 ;
2845
2846 /* Also check if we can splat, and then add the result to itself. Do so if
2847 the value is positive, of if the splat instruction is using OP's mode;
2848 for splat_val < 0, the splat and the add should use the same mode. */
2849 else if (EASY_VECTOR_15_ADD_SELF (splat_val)
2850 && (splat_val >= 0 || (step == 1 && copies == 1)))
2851 ;
2852
2853 else
2854 return false;
2855
2856 /* Check if VAL is present in every STEP-th element, and the
2857 other elements are filled with its most significant bit. */
2858 for (i = 0; i < nunits - 1; ++i)
2859 {
2860 HOST_WIDE_INT desired_val;
2861 if (((i + 1) & (step - 1)) == 0)
2862 desired_val = val;
2863 else
2864 desired_val = msb_val;
2865
0972012c 2866 if (desired_val != const_vector_elt_as_int (op, i))
66180ff3 2867 return false;
452a7d36 2868 }
66180ff3
PB
2869
2870 return true;
452a7d36
HP
2871}
2872
69ef87e2 2873
77ccdfed 2874/* Return true if OP is of the given MODE and can be synthesized
66180ff3
PB
2875 with a vspltisb, vspltish or vspltisw. */
2876
2877bool
2878easy_altivec_constant (rtx op, enum machine_mode mode)
d744e06e 2879{
66180ff3 2880 unsigned step, copies;
d744e06e 2881
66180ff3
PB
2882 if (mode == VOIDmode)
2883 mode = GET_MODE (op);
2884 else if (mode != GET_MODE (op))
2885 return false;
d744e06e 2886
66180ff3
PB
2887 /* Start with a vspltisw. */
2888 step = GET_MODE_NUNITS (mode) / 4;
2889 copies = 1;
2890
2891 if (vspltis_constant (op, step, copies))
2892 return true;
2893
2894 /* Then try with a vspltish. */
2895 if (step == 1)
2896 copies <<= 1;
2897 else
2898 step >>= 1;
2899
2900 if (vspltis_constant (op, step, copies))
2901 return true;
2902
2903 /* And finally a vspltisb. */
2904 if (step == 1)
2905 copies <<= 1;
2906 else
2907 step >>= 1;
2908
2909 if (vspltis_constant (op, step, copies))
2910 return true;
2911
2912 return false;
d744e06e
AH
2913}
2914
66180ff3
PB
2915/* Generate a VEC_DUPLICATE representing a vspltis[bhw] instruction whose
2916 result is OP. Abort if it is not possible. */
d744e06e 2917
f676971a 2918rtx
66180ff3 2919gen_easy_altivec_constant (rtx op)
452a7d36 2920{
66180ff3
PB
2921 enum machine_mode mode = GET_MODE (op);
2922 int nunits = GET_MODE_NUNITS (mode);
2923 rtx last = CONST_VECTOR_ELT (op, nunits - 1);
2924 unsigned step = nunits / 4;
2925 unsigned copies = 1;
2926
2927 /* Start with a vspltisw. */
2928 if (vspltis_constant (op, step, copies))
2929 return gen_rtx_VEC_DUPLICATE (V4SImode, gen_lowpart (SImode, last));
2930
2931 /* Then try with a vspltish. */
2932 if (step == 1)
2933 copies <<= 1;
2934 else
2935 step >>= 1;
2936
2937 if (vspltis_constant (op, step, copies))
2938 return gen_rtx_VEC_DUPLICATE (V8HImode, gen_lowpart (HImode, last));
2939
2940 /* And finally a vspltisb. */
2941 if (step == 1)
2942 copies <<= 1;
2943 else
2944 step >>= 1;
2945
2946 if (vspltis_constant (op, step, copies))
2947 return gen_rtx_VEC_DUPLICATE (V16QImode, gen_lowpart (QImode, last));
2948
2949 gcc_unreachable ();
d744e06e
AH
2950}
2951
2952const char *
a2369ed3 2953output_vec_const_move (rtx *operands)
d744e06e
AH
2954{
2955 int cst, cst2;
2956 enum machine_mode mode;
2957 rtx dest, vec;
2958
2959 dest = operands[0];
2960 vec = operands[1];
d744e06e 2961 mode = GET_MODE (dest);
69ef87e2 2962
d744e06e
AH
2963 if (TARGET_ALTIVEC)
2964 {
66180ff3 2965 rtx splat_vec;
d744e06e
AH
2966 if (zero_constant (vec, mode))
2967 return "vxor %0,%0,%0";
37409796 2968
66180ff3
PB
2969 splat_vec = gen_easy_altivec_constant (vec);
2970 gcc_assert (GET_CODE (splat_vec) == VEC_DUPLICATE);
2971 operands[1] = XEXP (splat_vec, 0);
2972 if (!EASY_VECTOR_15 (INTVAL (operands[1])))
2973 return "#";
bb8df8a6 2974
66180ff3 2975 switch (GET_MODE (splat_vec))
98ef3137 2976 {
37409796 2977 case V4SImode:
66180ff3 2978 return "vspltisw %0,%1";
c4ad648e 2979
37409796 2980 case V8HImode:
66180ff3 2981 return "vspltish %0,%1";
c4ad648e 2982
37409796 2983 case V16QImode:
66180ff3 2984 return "vspltisb %0,%1";
bb8df8a6 2985
37409796
NS
2986 default:
2987 gcc_unreachable ();
98ef3137 2988 }
69ef87e2
AH
2989 }
2990
37409796 2991 gcc_assert (TARGET_SPE);
bb8df8a6 2992
37409796
NS
2993 /* Vector constant 0 is handled as a splitter of V2SI, and in the
2994 pattern of V1DI, V4HI, and V2SF.
2995
2996 FIXME: We should probably return # and add post reload
2997 splitters for these, but this way is so easy ;-). */
e20dcbef
PB
2998 cst = INTVAL (CONST_VECTOR_ELT (vec, 0));
2999 cst2 = INTVAL (CONST_VECTOR_ELT (vec, 1));
3000 operands[1] = CONST_VECTOR_ELT (vec, 0);
3001 operands[2] = CONST_VECTOR_ELT (vec, 1);
37409796
NS
3002 if (cst == cst2)
3003 return "li %0,%1\n\tevmergelo %0,%0,%0";
3004 else
3005 return "li %0,%1\n\tevmergelo %0,%0,%0\n\tli %0,%2";
69ef87e2
AH
3006}
3007
f5027409
RE
3008/* Initialize TARGET of vector PAIRED to VALS. */
3009
3010void
3011paired_expand_vector_init (rtx target, rtx vals)
3012{
3013 enum machine_mode mode = GET_MODE (target);
3014 int n_elts = GET_MODE_NUNITS (mode);
3015 int n_var = 0;
0a2aaacc 3016 rtx x, new_rtx, tmp, constant_op, op1, op2;
f5027409
RE
3017 int i;
3018
3019 for (i = 0; i < n_elts; ++i)
3020 {
3021 x = XVECEXP (vals, 0, i);
3022 if (!CONSTANT_P (x))
3023 ++n_var;
3024 }
3025 if (n_var == 0)
3026 {
3027 /* Load from constant pool. */
3028 emit_move_insn (target, gen_rtx_CONST_VECTOR (mode, XVEC (vals, 0)));
3029 return;
3030 }
3031
3032 if (n_var == 2)
3033 {
3034 /* The vector is initialized only with non-constants. */
0a2aaacc 3035 new_rtx = gen_rtx_VEC_CONCAT (V2SFmode, XVECEXP (vals, 0, 0),
f5027409
RE
3036 XVECEXP (vals, 0, 1));
3037
0a2aaacc 3038 emit_move_insn (target, new_rtx);
f5027409
RE
3039 return;
3040 }
3041
3042 /* One field is non-constant and the other one is a constant. Load the
3043 constant from the constant pool and use ps_merge instruction to
3044 construct the whole vector. */
3045 op1 = XVECEXP (vals, 0, 0);
3046 op2 = XVECEXP (vals, 0, 1);
3047
3048 constant_op = (CONSTANT_P (op1)) ? op1 : op2;
3049
3050 tmp = gen_reg_rtx (GET_MODE (constant_op));
3051 emit_move_insn (tmp, constant_op);
3052
3053 if (CONSTANT_P (op1))
0a2aaacc 3054 new_rtx = gen_rtx_VEC_CONCAT (V2SFmode, tmp, op2);
f5027409 3055 else
0a2aaacc 3056 new_rtx = gen_rtx_VEC_CONCAT (V2SFmode, op1, tmp);
f5027409 3057
0a2aaacc 3058 emit_move_insn (target, new_rtx);
f5027409
RE
3059}
3060
e2e95f45
RE
3061void
3062paired_expand_vector_move (rtx operands[])
3063{
3064 rtx op0 = operands[0], op1 = operands[1];
3065
3066 emit_move_insn (op0, op1);
3067}
3068
3069/* Emit vector compare for code RCODE. DEST is destination, OP1 and
3070 OP2 are two VEC_COND_EXPR operands, CC_OP0 and CC_OP1 are the two
3071 operands for the relation operation COND. This is a recursive
3072 function. */
3073
3074static void
3075paired_emit_vector_compare (enum rtx_code rcode,
3076 rtx dest, rtx op0, rtx op1,
3077 rtx cc_op0, rtx cc_op1)
3078{
3079 rtx tmp = gen_reg_rtx (V2SFmode);
3080 rtx tmp1, max, min, equal_zero;
3081
3082 gcc_assert (TARGET_PAIRED_FLOAT);
3083 gcc_assert (GET_MODE (op0) == GET_MODE (op1));
3084
3085 switch (rcode)
3086 {
3087 case LT:
3088 case LTU:
3089 paired_emit_vector_compare (GE, dest, op1, op0, cc_op0, cc_op1);
3090 return;
3091 case GE:
3092 case GEU:
3093 emit_insn (gen_subv2sf3 (tmp, cc_op0, cc_op1));
3094 emit_insn (gen_selv2sf4 (dest, tmp, op0, op1, CONST0_RTX (SFmode)));
3095 return;
3096 case LE:
3097 case LEU:
3098 paired_emit_vector_compare (GE, dest, op0, op1, cc_op1, cc_op0);
3099 return;
3100 case GT:
3101 paired_emit_vector_compare (LE, dest, op1, op0, cc_op0, cc_op1);
3102 return;
3103 case EQ:
3104 tmp1 = gen_reg_rtx (V2SFmode);
3105 max = gen_reg_rtx (V2SFmode);
3106 min = gen_reg_rtx (V2SFmode);
3107 equal_zero = gen_reg_rtx (V2SFmode);
3108
3109 emit_insn (gen_subv2sf3 (tmp, cc_op0, cc_op1));
3110 emit_insn (gen_selv2sf4
3111 (max, tmp, cc_op0, cc_op1, CONST0_RTX (SFmode)));
3112 emit_insn (gen_subv2sf3 (tmp, cc_op1, cc_op0));
3113 emit_insn (gen_selv2sf4
3114 (min, tmp, cc_op0, cc_op1, CONST0_RTX (SFmode)));
3115 emit_insn (gen_subv2sf3 (tmp1, min, max));
3116 emit_insn (gen_selv2sf4 (dest, tmp1, op0, op1, CONST0_RTX (SFmode)));
3117 return;
3118 case NE:
3119 paired_emit_vector_compare (EQ, dest, op1, op0, cc_op0, cc_op1);
3120 return;
3121 case UNLE:
3122 paired_emit_vector_compare (LE, dest, op1, op0, cc_op0, cc_op1);
3123 return;
3124 case UNLT:
3125 paired_emit_vector_compare (LT, dest, op1, op0, cc_op0, cc_op1);
3126 return;
3127 case UNGE:
3128 paired_emit_vector_compare (GE, dest, op1, op0, cc_op0, cc_op1);
3129 return;
3130 case UNGT:
3131 paired_emit_vector_compare (GT, dest, op1, op0, cc_op0, cc_op1);
3132 return;
3133 default:
3134 gcc_unreachable ();
3135 }
3136
3137 return;
3138}
3139
3140/* Emit vector conditional expression.
3141 DEST is destination. OP1 and OP2 are two VEC_COND_EXPR operands.
3142 CC_OP0 and CC_OP1 are the two operands for the relation operation COND. */
3143
3144int
3145paired_emit_vector_cond_expr (rtx dest, rtx op1, rtx op2,
3146 rtx cond, rtx cc_op0, rtx cc_op1)
3147{
3148 enum rtx_code rcode = GET_CODE (cond);
3149
3150 if (!TARGET_PAIRED_FLOAT)
3151 return 0;
3152
3153 paired_emit_vector_compare (rcode, dest, op1, op2, cc_op0, cc_op1);
3154
3155 return 1;
3156}
3157
7a4eca66
DE
3158/* Initialize vector TARGET to VALS. */
3159
3160void
3161rs6000_expand_vector_init (rtx target, rtx vals)
3162{
3163 enum machine_mode mode = GET_MODE (target);
3164 enum machine_mode inner_mode = GET_MODE_INNER (mode);
3165 int n_elts = GET_MODE_NUNITS (mode);
3166 int n_var = 0, one_var = -1;
3167 bool all_same = true, all_const_zero = true;
3168 rtx x, mem;
3169 int i;
3170
3171 for (i = 0; i < n_elts; ++i)
3172 {
3173 x = XVECEXP (vals, 0, i);
3174 if (!CONSTANT_P (x))
3175 ++n_var, one_var = i;
3176 else if (x != CONST0_RTX (inner_mode))
3177 all_const_zero = false;
3178
3179 if (i > 0 && !rtx_equal_p (x, XVECEXP (vals, 0, 0)))
3180 all_same = false;
3181 }
3182
3183 if (n_var == 0)
3184 {
501fb355 3185 rtx const_vec = gen_rtx_CONST_VECTOR (mode, XVEC (vals, 0));
7a4eca66
DE
3186 if (mode != V4SFmode && all_const_zero)
3187 {
3188 /* Zero register. */
3189 emit_insn (gen_rtx_SET (VOIDmode, target,
3190 gen_rtx_XOR (mode, target, target)));
3191 return;
3192 }
501fb355 3193 else if (mode != V4SFmode && easy_vector_constant (const_vec, mode))
7a4eca66
DE
3194 {
3195 /* Splat immediate. */
501fb355 3196 emit_insn (gen_rtx_SET (VOIDmode, target, const_vec));
7a4eca66
DE
3197 return;
3198 }
3199 else if (all_same)
3200 ; /* Splat vector element. */
3201 else
3202 {
3203 /* Load from constant pool. */
501fb355 3204 emit_move_insn (target, const_vec);
7a4eca66
DE
3205 return;
3206 }
3207 }
3208
3209 /* Store value to stack temp. Load vector element. Splat. */
3210 if (all_same)
3211 {
3212 mem = assign_stack_temp (mode, GET_MODE_SIZE (inner_mode), 0);
3213 emit_move_insn (adjust_address_nv (mem, inner_mode, 0),
3214 XVECEXP (vals, 0, 0));
3215 x = gen_rtx_UNSPEC (VOIDmode,
3216 gen_rtvec (1, const0_rtx), UNSPEC_LVE);
3217 emit_insn (gen_rtx_PARALLEL (VOIDmode,
3218 gen_rtvec (2,
3219 gen_rtx_SET (VOIDmode,
3220 target, mem),
3221 x)));
3222 x = gen_rtx_VEC_SELECT (inner_mode, target,
3223 gen_rtx_PARALLEL (VOIDmode,
3224 gen_rtvec (1, const0_rtx)));
3225 emit_insn (gen_rtx_SET (VOIDmode, target,
3226 gen_rtx_VEC_DUPLICATE (mode, x)));
3227 return;
3228 }
3229
3230 /* One field is non-constant. Load constant then overwrite
3231 varying field. */
3232 if (n_var == 1)
3233 {
3234 rtx copy = copy_rtx (vals);
3235
57b51d4d 3236 /* Load constant part of vector, substitute neighboring value for
7a4eca66
DE
3237 varying element. */
3238 XVECEXP (copy, 0, one_var) = XVECEXP (vals, 0, (one_var + 1) % n_elts);
3239 rs6000_expand_vector_init (target, copy);
3240
3241 /* Insert variable. */
3242 rs6000_expand_vector_set (target, XVECEXP (vals, 0, one_var), one_var);
3243 return;
3244 }
3245
3246 /* Construct the vector in memory one field at a time
3247 and load the whole vector. */
3248 mem = assign_stack_temp (mode, GET_MODE_SIZE (mode), 0);
3249 for (i = 0; i < n_elts; i++)
3250 emit_move_insn (adjust_address_nv (mem, inner_mode,
3251 i * GET_MODE_SIZE (inner_mode)),
3252 XVECEXP (vals, 0, i));
3253 emit_move_insn (target, mem);
3254}
3255
3256/* Set field ELT of TARGET to VAL. */
3257
3258void
3259rs6000_expand_vector_set (rtx target, rtx val, int elt)
3260{
3261 enum machine_mode mode = GET_MODE (target);
3262 enum machine_mode inner_mode = GET_MODE_INNER (mode);
3263 rtx reg = gen_reg_rtx (mode);
3264 rtx mask, mem, x;
3265 int width = GET_MODE_SIZE (inner_mode);
3266 int i;
3267
3268 /* Load single variable value. */
3269 mem = assign_stack_temp (mode, GET_MODE_SIZE (inner_mode), 0);
3270 emit_move_insn (adjust_address_nv (mem, inner_mode, 0), val);
3271 x = gen_rtx_UNSPEC (VOIDmode,
3272 gen_rtvec (1, const0_rtx), UNSPEC_LVE);
3273 emit_insn (gen_rtx_PARALLEL (VOIDmode,
3274 gen_rtvec (2,
3275 gen_rtx_SET (VOIDmode,
3276 reg, mem),
3277 x)));
3278
3279 /* Linear sequence. */
3280 mask = gen_rtx_PARALLEL (V16QImode, rtvec_alloc (16));
3281 for (i = 0; i < 16; ++i)
3282 XVECEXP (mask, 0, i) = GEN_INT (i);
3283
3284 /* Set permute mask to insert element into target. */
3285 for (i = 0; i < width; ++i)
3286 XVECEXP (mask, 0, elt*width + i)
3287 = GEN_INT (i + 0x10);
3288 x = gen_rtx_CONST_VECTOR (V16QImode, XVEC (mask, 0));
3289 x = gen_rtx_UNSPEC (mode,
3290 gen_rtvec (3, target, reg,
3291 force_reg (V16QImode, x)),
3292 UNSPEC_VPERM);
3293 emit_insn (gen_rtx_SET (VOIDmode, target, x));
3294}
3295
3296/* Extract field ELT from VEC into TARGET. */
3297
3298void
3299rs6000_expand_vector_extract (rtx target, rtx vec, int elt)
3300{
3301 enum machine_mode mode = GET_MODE (vec);
3302 enum machine_mode inner_mode = GET_MODE_INNER (mode);
3303 rtx mem, x;
3304
3305 /* Allocate mode-sized buffer. */
3306 mem = assign_stack_temp (mode, GET_MODE_SIZE (mode), 0);
3307
3308 /* Add offset to field within buffer matching vector element. */
3309 mem = adjust_address_nv (mem, mode, elt * GET_MODE_SIZE (inner_mode));
3310
3311 /* Store single field into mode-sized buffer. */
3312 x = gen_rtx_UNSPEC (VOIDmode,
3313 gen_rtvec (1, const0_rtx), UNSPEC_STVE);
3314 emit_insn (gen_rtx_PARALLEL (VOIDmode,
3315 gen_rtvec (2,
3316 gen_rtx_SET (VOIDmode,
3317 mem, vec),
3318 x)));
3319 emit_move_insn (target, adjust_address_nv (mem, inner_mode, 0));
3320}
3321
0ba1b2ff
AM
3322/* Generates shifts and masks for a pair of rldicl or rldicr insns to
3323 implement ANDing by the mask IN. */
3324void
a2369ed3 3325build_mask64_2_operands (rtx in, rtx *out)
0ba1b2ff
AM
3326{
3327#if HOST_BITS_PER_WIDE_INT >= 64
3328 unsigned HOST_WIDE_INT c, lsb, m1, m2;
3329 int shift;
3330
37409796 3331 gcc_assert (GET_CODE (in) == CONST_INT);
0ba1b2ff
AM
3332
3333 c = INTVAL (in);
3334 if (c & 1)
3335 {
3336 /* Assume c initially something like 0x00fff000000fffff. The idea
3337 is to rotate the word so that the middle ^^^^^^ group of zeros
3338 is at the MS end and can be cleared with an rldicl mask. We then
3339 rotate back and clear off the MS ^^ group of zeros with a
3340 second rldicl. */
3341 c = ~c; /* c == 0xff000ffffff00000 */
3342 lsb = c & -c; /* lsb == 0x0000000000100000 */
3343 m1 = -lsb; /* m1 == 0xfffffffffff00000 */
3344 c = ~c; /* c == 0x00fff000000fffff */
3345 c &= -lsb; /* c == 0x00fff00000000000 */
3346 lsb = c & -c; /* lsb == 0x0000100000000000 */
3347 c = ~c; /* c == 0xff000fffffffffff */
3348 c &= -lsb; /* c == 0xff00000000000000 */
3349 shift = 0;
3350 while ((lsb >>= 1) != 0)
3351 shift++; /* shift == 44 on exit from loop */
3352 m1 <<= 64 - shift; /* m1 == 0xffffff0000000000 */
3353 m1 = ~m1; /* m1 == 0x000000ffffffffff */
3354 m2 = ~c; /* m2 == 0x00ffffffffffffff */
a260abc9
DE
3355 }
3356 else
0ba1b2ff
AM
3357 {
3358 /* Assume c initially something like 0xff000f0000000000. The idea
3359 is to rotate the word so that the ^^^ middle group of zeros
3360 is at the LS end and can be cleared with an rldicr mask. We then
3361 rotate back and clear off the LS group of ^^^^^^^^^^ zeros with
3362 a second rldicr. */
3363 lsb = c & -c; /* lsb == 0x0000010000000000 */
3364 m2 = -lsb; /* m2 == 0xffffff0000000000 */
3365 c = ~c; /* c == 0x00fff0ffffffffff */
3366 c &= -lsb; /* c == 0x00fff00000000000 */
3367 lsb = c & -c; /* lsb == 0x0000100000000000 */
3368 c = ~c; /* c == 0xff000fffffffffff */
3369 c &= -lsb; /* c == 0xff00000000000000 */
3370 shift = 0;
3371 while ((lsb >>= 1) != 0)
3372 shift++; /* shift == 44 on exit from loop */
3373 m1 = ~c; /* m1 == 0x00ffffffffffffff */
3374 m1 >>= shift; /* m1 == 0x0000000000000fff */
3375 m1 = ~m1; /* m1 == 0xfffffffffffff000 */
3376 }
3377
3378 /* Note that when we only have two 0->1 and 1->0 transitions, one of the
3379 masks will be all 1's. We are guaranteed more than one transition. */
3380 out[0] = GEN_INT (64 - shift);
3381 out[1] = GEN_INT (m1);
3382 out[2] = GEN_INT (shift);
3383 out[3] = GEN_INT (m2);
3384#else
045572c7
GK
3385 (void)in;
3386 (void)out;
37409796 3387 gcc_unreachable ();
0ba1b2ff 3388#endif
a260abc9
DE
3389}
3390
54b695e7 3391/* Return TRUE if OP is an invalid SUBREG operation on the e500. */
48d72335
DE
3392
3393bool
54b695e7
AH
3394invalid_e500_subreg (rtx op, enum machine_mode mode)
3395{
61c76239
JM
3396 if (TARGET_E500_DOUBLE)
3397 {
17caeff2 3398 /* Reject (subreg:SI (reg:DF)); likewise with subreg:DI or
4f011e1e
JM
3399 subreg:TI and reg:TF. Decimal float modes are like integer
3400 modes (only low part of each register used) for this
3401 purpose. */
61c76239 3402 if (GET_CODE (op) == SUBREG
4f011e1e
JM
3403 && (mode == SImode || mode == DImode || mode == TImode
3404 || mode == DDmode || mode == TDmode)
61c76239 3405 && REG_P (SUBREG_REG (op))
17caeff2 3406 && (GET_MODE (SUBREG_REG (op)) == DFmode
4f011e1e 3407 || GET_MODE (SUBREG_REG (op)) == TFmode))
61c76239
JM
3408 return true;
3409
17caeff2
JM
3410 /* Reject (subreg:DF (reg:DI)); likewise with subreg:TF and
3411 reg:TI. */
61c76239 3412 if (GET_CODE (op) == SUBREG
4f011e1e 3413 && (mode == DFmode || mode == TFmode)
61c76239 3414 && REG_P (SUBREG_REG (op))
17caeff2 3415 && (GET_MODE (SUBREG_REG (op)) == DImode
4f011e1e
JM
3416 || GET_MODE (SUBREG_REG (op)) == TImode
3417 || GET_MODE (SUBREG_REG (op)) == DDmode
3418 || GET_MODE (SUBREG_REG (op)) == TDmode))
61c76239
JM
3419 return true;
3420 }
54b695e7 3421
61c76239
JM
3422 if (TARGET_SPE
3423 && GET_CODE (op) == SUBREG
3424 && mode == SImode
54b695e7 3425 && REG_P (SUBREG_REG (op))
14502dad 3426 && SPE_VECTOR_MODE (GET_MODE (SUBREG_REG (op))))
54b695e7
AH
3427 return true;
3428
3429 return false;
3430}
3431
58182de3 3432/* AIX increases natural record alignment to doubleword if the first
95727fb8
AP
3433 field is an FP double while the FP fields remain word aligned. */
3434
19d66194 3435unsigned int
fa5b0972
AM
3436rs6000_special_round_type_align (tree type, unsigned int computed,
3437 unsigned int specified)
95727fb8 3438{
fa5b0972 3439 unsigned int align = MAX (computed, specified);
95727fb8 3440 tree field = TYPE_FIELDS (type);
95727fb8 3441
bb8df8a6 3442 /* Skip all non field decls */
85962ac8 3443 while (field != NULL && TREE_CODE (field) != FIELD_DECL)
95727fb8
AP
3444 field = TREE_CHAIN (field);
3445
fa5b0972
AM
3446 if (field != NULL && field != type)
3447 {
3448 type = TREE_TYPE (field);
3449 while (TREE_CODE (type) == ARRAY_TYPE)
3450 type = TREE_TYPE (type);
3451
3452 if (type != error_mark_node && TYPE_MODE (type) == DFmode)
3453 align = MAX (align, 64);
3454 }
95727fb8 3455
fa5b0972 3456 return align;
95727fb8
AP
3457}
3458
58182de3
GK
3459/* Darwin increases record alignment to the natural alignment of
3460 the first field. */
3461
3462unsigned int
3463darwin_rs6000_special_round_type_align (tree type, unsigned int computed,
3464 unsigned int specified)
3465{
3466 unsigned int align = MAX (computed, specified);
3467
3468 if (TYPE_PACKED (type))
3469 return align;
3470
3471 /* Find the first field, looking down into aggregates. */
3472 do {
3473 tree field = TYPE_FIELDS (type);
3474 /* Skip all non field decls */
3475 while (field != NULL && TREE_CODE (field) != FIELD_DECL)
3476 field = TREE_CHAIN (field);
3477 if (! field)
3478 break;
3479 type = TREE_TYPE (field);
3480 while (TREE_CODE (type) == ARRAY_TYPE)
3481 type = TREE_TYPE (type);
3482 } while (AGGREGATE_TYPE_P (type));
3483
3484 if (! AGGREGATE_TYPE_P (type) && type != error_mark_node)
3485 align = MAX (align, TYPE_ALIGN (type));
3486
3487 return align;
3488}
3489
a4f6c312 3490/* Return 1 for an operand in small memory on V.4/eabi. */
7509c759
MM
3491
3492int
f676971a 3493small_data_operand (rtx op ATTRIBUTE_UNUSED,
a2369ed3 3494 enum machine_mode mode ATTRIBUTE_UNUSED)
7509c759 3495{
38c1f2d7 3496#if TARGET_ELF
5f59ecb7 3497 rtx sym_ref;
7509c759 3498
d9407988 3499 if (rs6000_sdata == SDATA_NONE || rs6000_sdata == SDATA_DATA)
a54d04b7 3500 return 0;
a54d04b7 3501
f607bc57 3502 if (DEFAULT_ABI != ABI_V4)
7509c759
MM
3503 return 0;
3504
2aa42e6e
NF
3505 /* Vector and float memory instructions have a limited offset on the
3506 SPE, so using a vector or float variable directly as an operand is
3507 not useful. */
3508 if (TARGET_SPE
3509 && (SPE_VECTOR_MODE (mode) || FLOAT_MODE_P (mode)))
3510 return 0;
3511
88228c4b
MM
3512 if (GET_CODE (op) == SYMBOL_REF)
3513 sym_ref = op;
3514
3515 else if (GET_CODE (op) != CONST
3516 || GET_CODE (XEXP (op, 0)) != PLUS
3517 || GET_CODE (XEXP (XEXP (op, 0), 0)) != SYMBOL_REF
3518 || GET_CODE (XEXP (XEXP (op, 0), 1)) != CONST_INT)
7509c759
MM
3519 return 0;
3520
88228c4b 3521 else
dbf55e53
MM
3522 {
3523 rtx sum = XEXP (op, 0);
3524 HOST_WIDE_INT summand;
3525
3526 /* We have to be careful here, because it is the referenced address
c4ad648e 3527 that must be 32k from _SDA_BASE_, not just the symbol. */
dbf55e53 3528 summand = INTVAL (XEXP (sum, 1));
307b599c 3529 if (summand < 0 || (unsigned HOST_WIDE_INT) summand > g_switch_value)
9390387d 3530 return 0;
dbf55e53
MM
3531
3532 sym_ref = XEXP (sum, 0);
3533 }
88228c4b 3534
20bfcd69 3535 return SYMBOL_REF_SMALL_P (sym_ref);
d9407988
MM
3536#else
3537 return 0;
3538#endif
7509c759 3539}
46c07df8 3540
3a1f863f 3541/* Return true if either operand is a general purpose register. */
46c07df8 3542
3a1f863f
DE
3543bool
3544gpr_or_gpr_p (rtx op0, rtx op1)
46c07df8 3545{
3a1f863f
DE
3546 return ((REG_P (op0) && INT_REGNO_P (REGNO (op0)))
3547 || (REG_P (op1) && INT_REGNO_P (REGNO (op1))));
46c07df8
HP
3548}
3549
9ebbca7d 3550\f
4d588c14
RH
3551/* Subroutines of rs6000_legitimize_address and rs6000_legitimate_address. */
3552
4d588c14 3553static bool
a2369ed3 3554constant_pool_expr_p (rtx op)
9ebbca7d 3555{
2e4316da
RS
3556 rtx base, offset;
3557
3558 split_const (op, &base, &offset);
3559 return (GET_CODE (base) == SYMBOL_REF
3560 && CONSTANT_POOL_ADDRESS_P (base)
3561 && ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (get_pool_constant (base), Pmode));
9ebbca7d
GK
3562}
3563
48d72335 3564bool
a2369ed3 3565toc_relative_expr_p (rtx op)
9ebbca7d 3566{
2e4316da
RS
3567 rtx base, offset;
3568
3569 if (GET_CODE (op) != CONST)
3570 return false;
3571
3572 split_const (op, &base, &offset);
3573 return (GET_CODE (base) == UNSPEC
3574 && XINT (base, 1) == UNSPEC_TOCREL);
4d588c14
RH
3575}
3576
4d588c14 3577bool
a2369ed3 3578legitimate_constant_pool_address_p (rtx x)
4d588c14
RH
3579{
3580 return (TARGET_TOC
3581 && GET_CODE (x) == PLUS
3582 && GET_CODE (XEXP (x, 0)) == REG
3583 && (TARGET_MINIMAL_TOC || REGNO (XEXP (x, 0)) == TOC_REGISTER)
2e4316da 3584 && toc_relative_expr_p (XEXP (x, 1)));
4d588c14
RH
3585}
3586
d04b6e6e
EB
3587static bool
3588legitimate_small_data_p (enum machine_mode mode, rtx x)
4d588c14
RH
3589{
3590 return (DEFAULT_ABI == ABI_V4
3591 && !flag_pic && !TARGET_TOC
3592 && (GET_CODE (x) == SYMBOL_REF || GET_CODE (x) == CONST)
3593 && small_data_operand (x, mode));
3594}
3595
60cdabab
DE
3596/* SPE offset addressing is limited to 5-bits worth of double words. */
3597#define SPE_CONST_OFFSET_OK(x) (((x) & ~0xf8) == 0)
3598
76d2b81d
DJ
3599bool
3600rs6000_legitimate_offset_address_p (enum machine_mode mode, rtx x, int strict)
4d588c14
RH
3601{
3602 unsigned HOST_WIDE_INT offset, extra;
3603
3604 if (GET_CODE (x) != PLUS)
3605 return false;
3606 if (GET_CODE (XEXP (x, 0)) != REG)
3607 return false;
3608 if (!INT_REG_OK_FOR_BASE_P (XEXP (x, 0), strict))
3609 return false;
60cdabab
DE
3610 if (legitimate_constant_pool_address_p (x))
3611 return true;
4d588c14
RH
3612 if (GET_CODE (XEXP (x, 1)) != CONST_INT)
3613 return false;
3614
3615 offset = INTVAL (XEXP (x, 1));
3616 extra = 0;
3617 switch (mode)
3618 {
3619 case V16QImode:
3620 case V8HImode:
3621 case V4SFmode:
3622 case V4SImode:
7a4eca66 3623 /* AltiVec vector modes. Only reg+reg addressing is valid and
1a23970d
DE
3624 constant offset zero should not occur due to canonicalization. */
3625 return false;
4d588c14
RH
3626
3627 case V4HImode:
3628 case V2SImode:
3629 case V1DImode:
3630 case V2SFmode:
d42a3bae 3631 /* Paired vector modes. Only reg+reg addressing is valid and
1a23970d 3632 constant offset zero should not occur due to canonicalization. */
d42a3bae 3633 if (TARGET_PAIRED_FLOAT)
1a23970d 3634 return false;
4d588c14
RH
3635 /* SPE vector modes. */
3636 return SPE_CONST_OFFSET_OK (offset);
3637
3638 case DFmode:
4d4cbc0e
AH
3639 if (TARGET_E500_DOUBLE)
3640 return SPE_CONST_OFFSET_OK (offset);
3641
4f011e1e 3642 case DDmode:
4d588c14 3643 case DImode:
54b695e7
AH
3644 /* On e500v2, we may have:
3645
3646 (subreg:DF (mem:DI (plus (reg) (const_int))) 0).
3647
3648 Which gets addressed with evldd instructions. */
3649 if (TARGET_E500_DOUBLE)
3650 return SPE_CONST_OFFSET_OK (offset);
3651
7393f7f8 3652 if (mode == DFmode || mode == DDmode || !TARGET_POWERPC64)
4d588c14
RH
3653 extra = 4;
3654 else if (offset & 3)
3655 return false;
3656 break;
3657
3658 case TFmode:
17caeff2
JM
3659 if (TARGET_E500_DOUBLE)
3660 return (SPE_CONST_OFFSET_OK (offset)
3661 && SPE_CONST_OFFSET_OK (offset + 8));
3662
4f011e1e 3663 case TDmode:
4d588c14 3664 case TImode:
7393f7f8 3665 if (mode == TFmode || mode == TDmode || !TARGET_POWERPC64)
4d588c14
RH
3666 extra = 12;
3667 else if (offset & 3)
3668 return false;
3669 else
3670 extra = 8;
3671 break;
3672
3673 default:
3674 break;
3675 }
3676
b1917422
AM
3677 offset += 0x8000;
3678 return (offset < 0x10000) && (offset + extra < 0x10000);
4d588c14
RH
3679}
3680
6fb5fa3c 3681bool
a2369ed3 3682legitimate_indexed_address_p (rtx x, int strict)
4d588c14
RH
3683{
3684 rtx op0, op1;
3685
3686 if (GET_CODE (x) != PLUS)
3687 return false;
850e8d3d 3688
4d588c14
RH
3689 op0 = XEXP (x, 0);
3690 op1 = XEXP (x, 1);
3691
bf00cc0f 3692 /* Recognize the rtl generated by reload which we know will later be
9024f4b8
AM
3693 replaced with proper base and index regs. */
3694 if (!strict
3695 && reload_in_progress
3696 && (REG_P (op0) || GET_CODE (op0) == PLUS)
3697 && REG_P (op1))
3698 return true;
3699
3700 return (REG_P (op0) && REG_P (op1)
3701 && ((INT_REG_OK_FOR_BASE_P (op0, strict)
3702 && INT_REG_OK_FOR_INDEX_P (op1, strict))
3703 || (INT_REG_OK_FOR_BASE_P (op1, strict)
3704 && INT_REG_OK_FOR_INDEX_P (op0, strict))));
9ebbca7d
GK
3705}
3706
48d72335 3707inline bool
a2369ed3 3708legitimate_indirect_address_p (rtx x, int strict)
4d588c14
RH
3709{
3710 return GET_CODE (x) == REG && INT_REG_OK_FOR_BASE_P (x, strict);
3711}
3712
48d72335 3713bool
4c81e946
FJ
3714macho_lo_sum_memory_operand (rtx x, enum machine_mode mode)
3715{
c4ad648e 3716 if (!TARGET_MACHO || !flag_pic
9390387d 3717 || mode != SImode || GET_CODE (x) != MEM)
c4ad648e
AM
3718 return false;
3719 x = XEXP (x, 0);
4c81e946
FJ
3720
3721 if (GET_CODE (x) != LO_SUM)
3722 return false;
3723 if (GET_CODE (XEXP (x, 0)) != REG)
3724 return false;
3725 if (!INT_REG_OK_FOR_BASE_P (XEXP (x, 0), 0))
3726 return false;
3727 x = XEXP (x, 1);
3728
3729 return CONSTANT_P (x);
3730}
3731
4d588c14 3732static bool
a2369ed3 3733legitimate_lo_sum_address_p (enum machine_mode mode, rtx x, int strict)
4d588c14
RH
3734{
3735 if (GET_CODE (x) != LO_SUM)
3736 return false;
3737 if (GET_CODE (XEXP (x, 0)) != REG)
3738 return false;
3739 if (!INT_REG_OK_FOR_BASE_P (XEXP (x, 0), strict))
3740 return false;
54b695e7 3741 /* Restrict addressing for DI because of our SUBREG hackery. */
17caeff2 3742 if (TARGET_E500_DOUBLE && (mode == DFmode || mode == TFmode
4d4447b5 3743 || mode == DDmode || mode == TDmode
17caeff2 3744 || mode == DImode))
f82f556d 3745 return false;
4d588c14
RH
3746 x = XEXP (x, 1);
3747
8622e235 3748 if (TARGET_ELF || TARGET_MACHO)
4d588c14 3749 {
a29077da 3750 if (DEFAULT_ABI != ABI_AIX && DEFAULT_ABI != ABI_DARWIN && flag_pic)
4d588c14
RH
3751 return false;
3752 if (TARGET_TOC)
3753 return false;
3754 if (GET_MODE_NUNITS (mode) != 1)
3755 return false;
5e5f01b9 3756 if (GET_MODE_BITSIZE (mode) > 64
3c028f65 3757 || (GET_MODE_BITSIZE (mode) > 32 && !TARGET_POWERPC64
696e45ba 3758 && !(TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_DOUBLE_FLOAT
4d4447b5 3759 && (mode == DFmode || mode == DDmode))))
4d588c14
RH
3760 return false;
3761
3762 return CONSTANT_P (x);
3763 }
3764
3765 return false;
3766}
3767
3768
9ebbca7d
GK
3769/* Try machine-dependent ways of modifying an illegitimate address
3770 to be legitimate. If we find one, return the new, valid address.
3771 This is used from only one place: `memory_address' in explow.c.
3772
a4f6c312
SS
3773 OLDX is the address as it was before break_out_memory_refs was
3774 called. In some cases it is useful to look at this to decide what
3775 needs to be done.
9ebbca7d 3776
a4f6c312 3777 MODE is passed so that this function can use GO_IF_LEGITIMATE_ADDRESS.
9ebbca7d 3778
a4f6c312
SS
3779 It is always safe for this function to do nothing. It exists to
3780 recognize opportunities to optimize the output.
9ebbca7d
GK
3781
3782 On RS/6000, first check for the sum of a register with a constant
3783 integer that is out of range. If so, generate code to add the
3784 constant with the low-order 16 bits masked to the register and force
3785 this result into another register (this can be done with `cau').
3786 Then generate an address of REG+(CONST&0xffff), allowing for the
3787 possibility of bit 16 being a one.
3788
3789 Then check for the sum of a register and something not constant, try to
3790 load the other things into a register and return the sum. */
4d588c14 3791
9ebbca7d 3792rtx
a2369ed3
DJ
3793rs6000_legitimize_address (rtx x, rtx oldx ATTRIBUTE_UNUSED,
3794 enum machine_mode mode)
0ac081f6 3795{
c4501e62
JJ
3796 if (GET_CODE (x) == SYMBOL_REF)
3797 {
3798 enum tls_model model = SYMBOL_REF_TLS_MODEL (x);
3799 if (model != 0)
3800 return rs6000_legitimize_tls_address (x, model);
3801 }
3802
f676971a 3803 if (GET_CODE (x) == PLUS
9ebbca7d
GK
3804 && GET_CODE (XEXP (x, 0)) == REG
3805 && GET_CODE (XEXP (x, 1)) == CONST_INT
3c1eb9eb 3806 && (unsigned HOST_WIDE_INT) (INTVAL (XEXP (x, 1)) + 0x8000) >= 0x10000
7da13f1d
NF
3807 && !((TARGET_POWERPC64
3808 && (mode == DImode || mode == TImode)
3809 && (INTVAL (XEXP (x, 1)) & 3) != 0)
3810 || SPE_VECTOR_MODE (mode)
efc05e3c 3811 || ALTIVEC_VECTOR_MODE (mode)
3c1eb9eb 3812 || (TARGET_E500_DOUBLE && (mode == DFmode || mode == TFmode
4f011e1e
JM
3813 || mode == DImode || mode == DDmode
3814 || mode == TDmode))))
f676971a 3815 {
9ebbca7d
GK
3816 HOST_WIDE_INT high_int, low_int;
3817 rtx sum;
a65c591c
DE
3818 low_int = ((INTVAL (XEXP (x, 1)) & 0xffff) ^ 0x8000) - 0x8000;
3819 high_int = INTVAL (XEXP (x, 1)) - low_int;
9ebbca7d
GK
3820 sum = force_operand (gen_rtx_PLUS (Pmode, XEXP (x, 0),
3821 GEN_INT (high_int)), 0);
3822 return gen_rtx_PLUS (Pmode, sum, GEN_INT (low_int));
3823 }
f676971a 3824 else if (GET_CODE (x) == PLUS
9ebbca7d
GK
3825 && GET_CODE (XEXP (x, 0)) == REG
3826 && GET_CODE (XEXP (x, 1)) != CONST_INT
6ac7bf2c 3827 && GET_MODE_NUNITS (mode) == 1
696e45ba 3828 && ((TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_DOUBLE_FLOAT)
a3170dc6 3829 || TARGET_POWERPC64
efc05e3c 3830 || ((mode != DImode && mode != DFmode && mode != DDmode)
4f011e1e 3831 || (TARGET_E500_DOUBLE && mode != DDmode)))
9ebbca7d 3832 && (TARGET_POWERPC64 || mode != DImode)
efc05e3c
PB
3833 && mode != TImode
3834 && mode != TFmode
3835 && mode != TDmode)
9ebbca7d
GK
3836 {
3837 return gen_rtx_PLUS (Pmode, XEXP (x, 0),
3838 force_reg (Pmode, force_operand (XEXP (x, 1), 0)));
3839 }
0ac081f6
AH
3840 else if (ALTIVEC_VECTOR_MODE (mode))
3841 {
3842 rtx reg;
3843
3844 /* Make sure both operands are registers. */
3845 if (GET_CODE (x) == PLUS)
9f85ed45 3846 return gen_rtx_PLUS (Pmode, force_reg (Pmode, XEXP (x, 0)),
0ac081f6
AH
3847 force_reg (Pmode, XEXP (x, 1)));
3848
3849 reg = force_reg (Pmode, x);
3850 return reg;
3851 }
4d4cbc0e 3852 else if (SPE_VECTOR_MODE (mode)
17caeff2 3853 || (TARGET_E500_DOUBLE && (mode == DFmode || mode == TFmode
7393f7f8 3854 || mode == DDmode || mode == TDmode
54b695e7 3855 || mode == DImode)))
a3170dc6 3856 {
54b695e7
AH
3857 if (mode == DImode)
3858 return NULL_RTX;
a3170dc6
AH
3859 /* We accept [reg + reg] and [reg + OFFSET]. */
3860
3861 if (GET_CODE (x) == PLUS)
61dd226f
NF
3862 {
3863 rtx op1 = XEXP (x, 0);
3864 rtx op2 = XEXP (x, 1);
3865 rtx y;
3866
3867 op1 = force_reg (Pmode, op1);
3868
3869 if (GET_CODE (op2) != REG
3870 && (GET_CODE (op2) != CONST_INT
3871 || !SPE_CONST_OFFSET_OK (INTVAL (op2))
3872 || (GET_MODE_SIZE (mode) > 8
3873 && !SPE_CONST_OFFSET_OK (INTVAL (op2) + 8))))
3874 op2 = force_reg (Pmode, op2);
3875
3876 /* We can't always do [reg + reg] for these, because [reg +
3877 reg + offset] is not a legitimate addressing mode. */
3878 y = gen_rtx_PLUS (Pmode, op1, op2);
3879
4f011e1e 3880 if ((GET_MODE_SIZE (mode) > 8 || mode == DDmode) && REG_P (op2))
61dd226f
NF
3881 return force_reg (Pmode, y);
3882 else
3883 return y;
3884 }
a3170dc6
AH
3885
3886 return force_reg (Pmode, x);
3887 }
f1384257
AM
3888 else if (TARGET_ELF
3889 && TARGET_32BIT
3890 && TARGET_NO_TOC
3891 && ! flag_pic
9ebbca7d 3892 && GET_CODE (x) != CONST_INT
f676971a 3893 && GET_CODE (x) != CONST_DOUBLE
9ebbca7d 3894 && CONSTANT_P (x)
6ac7bf2c
GK
3895 && GET_MODE_NUNITS (mode) == 1
3896 && (GET_MODE_BITSIZE (mode) <= 32
696e45ba 3897 || ((TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_DOUBLE_FLOAT)
4d4447b5 3898 && (mode == DFmode || mode == DDmode))))
9ebbca7d
GK
3899 {
3900 rtx reg = gen_reg_rtx (Pmode);
8a1977f3
GK
3901 emit_insn (gen_elf_high (reg, x));
3902 return gen_rtx_LO_SUM (Pmode, reg, x);
9ebbca7d 3903 }
ee890fe2
SS
3904 else if (TARGET_MACHO && TARGET_32BIT && TARGET_NO_TOC
3905 && ! flag_pic
ab82a49f
AP
3906#if TARGET_MACHO
3907 && ! MACHO_DYNAMIC_NO_PIC_P
3908#endif
ee890fe2 3909 && GET_CODE (x) != CONST_INT
f676971a 3910 && GET_CODE (x) != CONST_DOUBLE
ee890fe2 3911 && CONSTANT_P (x)
506a7bc8 3912 && GET_MODE_NUNITS (mode) == 1
696e45ba 3913 && ((TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_DOUBLE_FLOAT)
4d4447b5 3914 || (mode != DFmode && mode != DDmode))
f676971a 3915 && mode != DImode
ee890fe2
SS
3916 && mode != TImode)
3917 {
3918 rtx reg = gen_reg_rtx (Pmode);
8a1977f3
GK
3919 emit_insn (gen_macho_high (reg, x));
3920 return gen_rtx_LO_SUM (Pmode, reg, x);
ee890fe2 3921 }
f676971a 3922 else if (TARGET_TOC
0cdc04e8 3923 && GET_CODE (x) == SYMBOL_REF
4d588c14 3924 && constant_pool_expr_p (x)
a9098fd0 3925 && ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (get_pool_constant (x), Pmode))
9ebbca7d
GK
3926 {
3927 return create_TOC_reference (x);
3928 }
3929 else
3930 return NULL_RTX;
3931}
258bfae2 3932
fdbe66f2 3933/* This is called from dwarf2out.c via TARGET_ASM_OUTPUT_DWARF_DTPREL.
c973d557
JJ
3934 We need to emit DTP-relative relocations. */
3935
fdbe66f2 3936static void
c973d557
JJ
3937rs6000_output_dwarf_dtprel (FILE *file, int size, rtx x)
3938{
3939 switch (size)
3940 {
3941 case 4:
3942 fputs ("\t.long\t", file);
3943 break;
3944 case 8:
3945 fputs (DOUBLE_INT_ASM_OP, file);
3946 break;
3947 default:
37409796 3948 gcc_unreachable ();
c973d557
JJ
3949 }
3950 output_addr_const (file, x);
3951 fputs ("@dtprel+0x8000", file);
3952}
3953
c4501e62
JJ
3954/* Construct the SYMBOL_REF for the tls_get_addr function. */
3955
3956static GTY(()) rtx rs6000_tls_symbol;
3957static rtx
863d938c 3958rs6000_tls_get_addr (void)
c4501e62
JJ
3959{
3960 if (!rs6000_tls_symbol)
3961 rs6000_tls_symbol = init_one_libfunc ("__tls_get_addr");
3962
3963 return rs6000_tls_symbol;
3964}
3965
3966/* Construct the SYMBOL_REF for TLS GOT references. */
3967
3968static GTY(()) rtx rs6000_got_symbol;
3969static rtx
863d938c 3970rs6000_got_sym (void)
c4501e62
JJ
3971{
3972 if (!rs6000_got_symbol)
3973 {
3974 rs6000_got_symbol = gen_rtx_SYMBOL_REF (Pmode, "_GLOBAL_OFFSET_TABLE_");
3975 SYMBOL_REF_FLAGS (rs6000_got_symbol) |= SYMBOL_FLAG_LOCAL;
3976 SYMBOL_REF_FLAGS (rs6000_got_symbol) |= SYMBOL_FLAG_EXTERNAL;
f676971a 3977 }
c4501e62
JJ
3978
3979 return rs6000_got_symbol;
3980}
3981
3982/* ADDR contains a thread-local SYMBOL_REF. Generate code to compute
3983 this (thread-local) address. */
3984
3985static rtx
a2369ed3 3986rs6000_legitimize_tls_address (rtx addr, enum tls_model model)
c4501e62
JJ
3987{
3988 rtx dest, insn;
3989
3990 dest = gen_reg_rtx (Pmode);
3991 if (model == TLS_MODEL_LOCAL_EXEC && rs6000_tls_size == 16)
3992 {
3993 rtx tlsreg;
3994
3995 if (TARGET_64BIT)
3996 {
3997 tlsreg = gen_rtx_REG (Pmode, 13);
3998 insn = gen_tls_tprel_64 (dest, tlsreg, addr);
3999 }
4000 else
4001 {
4002 tlsreg = gen_rtx_REG (Pmode, 2);
4003 insn = gen_tls_tprel_32 (dest, tlsreg, addr);
4004 }
4005 emit_insn (insn);
4006 }
4007 else if (model == TLS_MODEL_LOCAL_EXEC && rs6000_tls_size == 32)
4008 {
4009 rtx tlsreg, tmp;
4010
4011 tmp = gen_reg_rtx (Pmode);
4012 if (TARGET_64BIT)
4013 {
4014 tlsreg = gen_rtx_REG (Pmode, 13);
4015 insn = gen_tls_tprel_ha_64 (tmp, tlsreg, addr);
4016 }
4017 else
4018 {
4019 tlsreg = gen_rtx_REG (Pmode, 2);
4020 insn = gen_tls_tprel_ha_32 (tmp, tlsreg, addr);
4021 }
4022 emit_insn (insn);
4023 if (TARGET_64BIT)
4024 insn = gen_tls_tprel_lo_64 (dest, tmp, addr);
4025 else
4026 insn = gen_tls_tprel_lo_32 (dest, tmp, addr);
4027 emit_insn (insn);
4028 }
4029 else
4030 {
4031 rtx r3, got, tga, tmp1, tmp2, eqv;
4032
4fed8f8f
AM
4033 /* We currently use relocations like @got@tlsgd for tls, which
4034 means the linker will handle allocation of tls entries, placing
4035 them in the .got section. So use a pointer to the .got section,
4036 not one to secondary TOC sections used by 64-bit -mminimal-toc,
4037 or to secondary GOT sections used by 32-bit -fPIC. */
c4501e62 4038 if (TARGET_64BIT)
972f427b 4039 got = gen_rtx_REG (Pmode, 2);
c4501e62
JJ
4040 else
4041 {
4042 if (flag_pic == 1)
4043 got = gen_rtx_REG (Pmode, RS6000_PIC_OFFSET_TABLE_REGNUM);
4044 else
4045 {
4046 rtx gsym = rs6000_got_sym ();
4047 got = gen_reg_rtx (Pmode);
4048 if (flag_pic == 0)
4049 rs6000_emit_move (got, gsym, Pmode);
4050 else
4051 {
e65a3857 4052 rtx tmp3, mem;
c4501e62
JJ
4053 rtx first, last;
4054
c4501e62
JJ
4055 tmp1 = gen_reg_rtx (Pmode);
4056 tmp2 = gen_reg_rtx (Pmode);
4057 tmp3 = gen_reg_rtx (Pmode);
542a8afa 4058 mem = gen_const_mem (Pmode, tmp1);
c4501e62 4059
e65a3857
DE
4060 first = emit_insn (gen_load_toc_v4_PIC_1b (gsym));
4061 emit_move_insn (tmp1,
1de43f85 4062 gen_rtx_REG (Pmode, LR_REGNO));
c4501e62
JJ
4063 emit_move_insn (tmp2, mem);
4064 emit_insn (gen_addsi3 (tmp3, tmp1, tmp2));
4065 last = emit_move_insn (got, tmp3);
bd94cb6e 4066 set_unique_reg_note (last, REG_EQUAL, gsym);
c4501e62
JJ
4067 }
4068 }
4069 }
4070
4071 if (model == TLS_MODEL_GLOBAL_DYNAMIC)
4072 {
4073 r3 = gen_rtx_REG (Pmode, 3);
02135bc1
SB
4074 tga = rs6000_tls_get_addr ();
4075
4076 if (DEFAULT_ABI == ABI_AIX && TARGET_64BIT)
4077 insn = gen_tls_gd_aix64 (r3, got, addr, tga, const0_rtx);
4078 else if (DEFAULT_ABI == ABI_AIX && !TARGET_64BIT)
4079 insn = gen_tls_gd_aix32 (r3, got, addr, tga, const0_rtx);
4080 else if (DEFAULT_ABI == ABI_V4)
4081 insn = gen_tls_gd_sysvsi (r3, got, addr, tga, const0_rtx);
c4501e62 4082 else
02135bc1
SB
4083 gcc_unreachable ();
4084
c4501e62 4085 start_sequence ();
c4501e62 4086 insn = emit_call_insn (insn);
becfd6e5 4087 RTL_CONST_CALL_P (insn) = 1;
c4501e62 4088 use_reg (&CALL_INSN_FUNCTION_USAGE (insn), r3);
d161cb2d
AM
4089 if (DEFAULT_ABI == ABI_V4 && TARGET_SECURE_PLT && flag_pic)
4090 use_reg (&CALL_INSN_FUNCTION_USAGE (insn), pic_offset_table_rtx);
c4501e62
JJ
4091 insn = get_insns ();
4092 end_sequence ();
4093 emit_libcall_block (insn, dest, r3, addr);
4094 }
4095 else if (model == TLS_MODEL_LOCAL_DYNAMIC)
4096 {
4097 r3 = gen_rtx_REG (Pmode, 3);
02135bc1
SB
4098 tga = rs6000_tls_get_addr ();
4099
4100 if (DEFAULT_ABI == ABI_AIX && TARGET_64BIT)
4101 insn = gen_tls_ld_aix64 (r3, got, tga, const0_rtx);
4102 else if (DEFAULT_ABI == ABI_AIX && !TARGET_64BIT)
4103 insn = gen_tls_ld_aix32 (r3, got, tga, const0_rtx);
4104 else if (DEFAULT_ABI == ABI_V4)
4105 insn = gen_tls_ld_sysvsi (r3, got, tga, const0_rtx);
c4501e62 4106 else
02135bc1
SB
4107 gcc_unreachable ();
4108
c4501e62 4109 start_sequence ();
c4501e62 4110 insn = emit_call_insn (insn);
becfd6e5 4111 RTL_CONST_CALL_P (insn) = 1;
c4501e62 4112 use_reg (&CALL_INSN_FUNCTION_USAGE (insn), r3);
d161cb2d
AM
4113 if (DEFAULT_ABI == ABI_V4 && TARGET_SECURE_PLT && flag_pic)
4114 use_reg (&CALL_INSN_FUNCTION_USAGE (insn), pic_offset_table_rtx);
c4501e62
JJ
4115 insn = get_insns ();
4116 end_sequence ();
4117 tmp1 = gen_reg_rtx (Pmode);
4118 eqv = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, const0_rtx),
4119 UNSPEC_TLSLD);
4120 emit_libcall_block (insn, tmp1, r3, eqv);
4121 if (rs6000_tls_size == 16)
4122 {
4123 if (TARGET_64BIT)
4124 insn = gen_tls_dtprel_64 (dest, tmp1, addr);
4125 else
4126 insn = gen_tls_dtprel_32 (dest, tmp1, addr);
4127 }
4128 else if (rs6000_tls_size == 32)
4129 {
4130 tmp2 = gen_reg_rtx (Pmode);
4131 if (TARGET_64BIT)
4132 insn = gen_tls_dtprel_ha_64 (tmp2, tmp1, addr);
4133 else
4134 insn = gen_tls_dtprel_ha_32 (tmp2, tmp1, addr);
4135 emit_insn (insn);
4136 if (TARGET_64BIT)
4137 insn = gen_tls_dtprel_lo_64 (dest, tmp2, addr);
4138 else
4139 insn = gen_tls_dtprel_lo_32 (dest, tmp2, addr);
4140 }
4141 else
4142 {
4143 tmp2 = gen_reg_rtx (Pmode);
4144 if (TARGET_64BIT)
4145 insn = gen_tls_got_dtprel_64 (tmp2, got, addr);
4146 else
4147 insn = gen_tls_got_dtprel_32 (tmp2, got, addr);
4148 emit_insn (insn);
4149 insn = gen_rtx_SET (Pmode, dest,
4150 gen_rtx_PLUS (Pmode, tmp2, tmp1));
4151 }
4152 emit_insn (insn);
4153 }
4154 else
4155 {
a7b376ee 4156 /* IE, or 64-bit offset LE. */
c4501e62
JJ
4157 tmp2 = gen_reg_rtx (Pmode);
4158 if (TARGET_64BIT)
4159 insn = gen_tls_got_tprel_64 (tmp2, got, addr);
4160 else
4161 insn = gen_tls_got_tprel_32 (tmp2, got, addr);
4162 emit_insn (insn);
4163 if (TARGET_64BIT)
4164 insn = gen_tls_tls_64 (dest, tmp2, addr);
4165 else
4166 insn = gen_tls_tls_32 (dest, tmp2, addr);
4167 emit_insn (insn);
4168 }
4169 }
4170
4171 return dest;
4172}
4173
c4501e62
JJ
4174/* Return 1 if X contains a thread-local symbol. */
4175
4176bool
a2369ed3 4177rs6000_tls_referenced_p (rtx x)
c4501e62 4178{
cd413cab
AP
4179 if (! TARGET_HAVE_TLS)
4180 return false;
4181
c4501e62
JJ
4182 return for_each_rtx (&x, &rs6000_tls_symbol_ref_1, 0);
4183}
4184
4185/* Return 1 if *X is a thread-local symbol. This is the same as
4186 rs6000_tls_symbol_ref except for the type of the unused argument. */
4187
9390387d 4188static int
a2369ed3 4189rs6000_tls_symbol_ref_1 (rtx *x, void *data ATTRIBUTE_UNUSED)
c4501e62
JJ
4190{
4191 return RS6000_SYMBOL_REF_TLS_P (*x);
4192}
4193
24ea750e
DJ
4194/* The convention appears to be to define this wherever it is used.
4195 With legitimize_reload_address now defined here, REG_MODE_OK_FOR_BASE_P
4196 is now used here. */
4197#ifndef REG_MODE_OK_FOR_BASE_P
4198#define REG_MODE_OK_FOR_BASE_P(REGNO, MODE) REG_OK_FOR_BASE_P (REGNO)
4199#endif
4200
4201/* Our implementation of LEGITIMIZE_RELOAD_ADDRESS. Returns a value to
4202 replace the input X, or the original X if no replacement is called for.
4203 The output parameter *WIN is 1 if the calling macro should goto WIN,
4204 0 if it should not.
4205
4206 For RS/6000, we wish to handle large displacements off a base
4207 register by splitting the addend across an addiu/addis and the mem insn.
4208 This cuts number of extra insns needed from 3 to 1.
4209
4210 On Darwin, we use this to generate code for floating point constants.
4211 A movsf_low is generated so we wind up with 2 instructions rather than 3.
08a6a74b
RS
4212 The Darwin code is inside #if TARGET_MACHO because only then are the
4213 machopic_* functions defined. */
24ea750e 4214rtx
f676971a 4215rs6000_legitimize_reload_address (rtx x, enum machine_mode mode,
c4ad648e
AM
4216 int opnum, int type,
4217 int ind_levels ATTRIBUTE_UNUSED, int *win)
24ea750e 4218{
f676971a 4219 /* We must recognize output that we have already generated ourselves. */
24ea750e
DJ
4220 if (GET_CODE (x) == PLUS
4221 && GET_CODE (XEXP (x, 0)) == PLUS
4222 && GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
4223 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
4224 && GET_CODE (XEXP (x, 1)) == CONST_INT)
4225 {
4226 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
c4ad648e
AM
4227 BASE_REG_CLASS, GET_MODE (x), VOIDmode, 0, 0,
4228 opnum, (enum reload_type)type);
24ea750e
DJ
4229 *win = 1;
4230 return x;
4231 }
3deb2758 4232
24ea750e
DJ
4233#if TARGET_MACHO
4234 if (DEFAULT_ABI == ABI_DARWIN && flag_pic
4235 && GET_CODE (x) == LO_SUM
4236 && GET_CODE (XEXP (x, 0)) == PLUS
4237 && XEXP (XEXP (x, 0), 0) == pic_offset_table_rtx
4238 && GET_CODE (XEXP (XEXP (x, 0), 1)) == HIGH
24ea750e 4239 && XEXP (XEXP (XEXP (x, 0), 1), 0) == XEXP (x, 1)
08a6a74b 4240 && machopic_operand_p (XEXP (x, 1)))
24ea750e
DJ
4241 {
4242 /* Result of previous invocation of this function on Darwin
6f317ef3 4243 floating point constant. */
24ea750e 4244 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
c4ad648e
AM
4245 BASE_REG_CLASS, Pmode, VOIDmode, 0, 0,
4246 opnum, (enum reload_type)type);
24ea750e
DJ
4247 *win = 1;
4248 return x;
4249 }
4250#endif
4937d02d
DE
4251
4252 /* Force ld/std non-word aligned offset into base register by wrapping
4253 in offset 0. */
4254 if (GET_CODE (x) == PLUS
4255 && GET_CODE (XEXP (x, 0)) == REG
4256 && REGNO (XEXP (x, 0)) < 32
4257 && REG_MODE_OK_FOR_BASE_P (XEXP (x, 0), mode)
4258 && GET_CODE (XEXP (x, 1)) == CONST_INT
4259 && (INTVAL (XEXP (x, 1)) & 3) != 0
78796ad5 4260 && !ALTIVEC_VECTOR_MODE (mode)
4937d02d
DE
4261 && GET_MODE_SIZE (mode) >= UNITS_PER_WORD
4262 && TARGET_POWERPC64)
4263 {
4264 x = gen_rtx_PLUS (GET_MODE (x), x, GEN_INT (0));
4265 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
4266 BASE_REG_CLASS, GET_MODE (x), VOIDmode, 0, 0,
4267 opnum, (enum reload_type) type);
4268 *win = 1;
4269 return x;
4270 }
4271
24ea750e
DJ
4272 if (GET_CODE (x) == PLUS
4273 && GET_CODE (XEXP (x, 0)) == REG
4274 && REGNO (XEXP (x, 0)) < FIRST_PSEUDO_REGISTER
4275 && REG_MODE_OK_FOR_BASE_P (XEXP (x, 0), mode)
78c875e8 4276 && GET_CODE (XEXP (x, 1)) == CONST_INT
93638d7a 4277 && !SPE_VECTOR_MODE (mode)
17caeff2 4278 && !(TARGET_E500_DOUBLE && (mode == DFmode || mode == TFmode
4d4447b5 4279 || mode == DDmode || mode == TDmode
54b695e7 4280 || mode == DImode))
78c875e8 4281 && !ALTIVEC_VECTOR_MODE (mode))
24ea750e
DJ
4282 {
4283 HOST_WIDE_INT val = INTVAL (XEXP (x, 1));
4284 HOST_WIDE_INT low = ((val & 0xffff) ^ 0x8000) - 0x8000;
4285 HOST_WIDE_INT high
c4ad648e 4286 = (((val - low) & 0xffffffff) ^ 0x80000000) - 0x80000000;
24ea750e
DJ
4287
4288 /* Check for 32-bit overflow. */
4289 if (high + low != val)
c4ad648e 4290 {
24ea750e
DJ
4291 *win = 0;
4292 return x;
4293 }
4294
4295 /* Reload the high part into a base reg; leave the low part
c4ad648e 4296 in the mem directly. */
24ea750e
DJ
4297
4298 x = gen_rtx_PLUS (GET_MODE (x),
c4ad648e
AM
4299 gen_rtx_PLUS (GET_MODE (x), XEXP (x, 0),
4300 GEN_INT (high)),
4301 GEN_INT (low));
24ea750e
DJ
4302
4303 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
c4ad648e
AM
4304 BASE_REG_CLASS, GET_MODE (x), VOIDmode, 0, 0,
4305 opnum, (enum reload_type)type);
24ea750e
DJ
4306 *win = 1;
4307 return x;
4308 }
4937d02d 4309
24ea750e 4310 if (GET_CODE (x) == SYMBOL_REF
69ef87e2 4311 && !ALTIVEC_VECTOR_MODE (mode)
1650e3f5 4312 && !SPE_VECTOR_MODE (mode)
8308679f
DE
4313#if TARGET_MACHO
4314 && DEFAULT_ABI == ABI_DARWIN
a29077da 4315 && (flag_pic || MACHO_DYNAMIC_NO_PIC_P)
8308679f
DE
4316#else
4317 && DEFAULT_ABI == ABI_V4
4318 && !flag_pic
4319#endif
7393f7f8 4320 /* Don't do this for TFmode or TDmode, since the result isn't offsettable.
4d4447b5 4321 The same goes for DImode without 64-bit gprs and DFmode and DDmode
7b5d92b2 4322 without fprs. */
0d8c1c97 4323 && mode != TFmode
7393f7f8 4324 && mode != TDmode
7b5d92b2 4325 && (mode != DImode || TARGET_POWERPC64)
4d4447b5 4326 && ((mode != DFmode && mode != DDmode) || TARGET_POWERPC64
696e45ba 4327 || (TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_DOUBLE_FLOAT)))
24ea750e 4328 {
8308679f 4329#if TARGET_MACHO
a29077da
GK
4330 if (flag_pic)
4331 {
08a6a74b 4332 rtx offset = machopic_gen_offset (x);
a29077da
GK
4333 x = gen_rtx_LO_SUM (GET_MODE (x),
4334 gen_rtx_PLUS (Pmode, pic_offset_table_rtx,
4335 gen_rtx_HIGH (Pmode, offset)), offset);
4336 }
4337 else
8308679f 4338#endif
a29077da 4339 x = gen_rtx_LO_SUM (GET_MODE (x),
c4ad648e 4340 gen_rtx_HIGH (Pmode, x), x);
a29077da 4341
24ea750e 4342 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
a29077da
GK
4343 BASE_REG_CLASS, Pmode, VOIDmode, 0, 0,
4344 opnum, (enum reload_type)type);
24ea750e
DJ
4345 *win = 1;
4346 return x;
4347 }
4937d02d 4348
dec1f3aa
DE
4349 /* Reload an offset address wrapped by an AND that represents the
4350 masking of the lower bits. Strip the outer AND and let reload
4351 convert the offset address into an indirect address. */
4352 if (TARGET_ALTIVEC
4353 && ALTIVEC_VECTOR_MODE (mode)
4354 && GET_CODE (x) == AND
4355 && GET_CODE (XEXP (x, 0)) == PLUS
4356 && GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
4357 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
4358 && GET_CODE (XEXP (x, 1)) == CONST_INT
4359 && INTVAL (XEXP (x, 1)) == -16)
4360 {
4361 x = XEXP (x, 0);
4362 *win = 1;
4363 return x;
4364 }
4365
24ea750e 4366 if (TARGET_TOC
0cdc04e8 4367 && GET_CODE (x) == SYMBOL_REF
4d588c14 4368 && constant_pool_expr_p (x)
c1f11548 4369 && ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (get_pool_constant (x), mode))
24ea750e 4370 {
194c524a 4371 x = create_TOC_reference (x);
24ea750e
DJ
4372 *win = 1;
4373 return x;
4374 }
4375 *win = 0;
4376 return x;
f676971a 4377}
24ea750e 4378
258bfae2
FS
4379/* GO_IF_LEGITIMATE_ADDRESS recognizes an RTL expression
4380 that is a valid memory address for an instruction.
4381 The MODE argument is the machine mode for the MEM expression
4382 that wants to use this address.
4383
4384 On the RS/6000, there are four valid address: a SYMBOL_REF that
4385 refers to a constant pool entry of an address (or the sum of it
4386 plus a constant), a short (16-bit signed) constant plus a register,
4387 the sum of two registers, or a register indirect, possibly with an
4d4447b5
PB
4388 auto-increment. For DFmode, DDmode and DImode with a constant plus
4389 register, we must ensure that both words are addressable or PowerPC64
4390 with offset word aligned.
258bfae2 4391
4d4447b5 4392 For modes spanning multiple registers (DFmode and DDmode in 32-bit GPRs,
7393f7f8
BE
4393 32-bit DImode, TImode, TFmode, TDmode), indexed addressing cannot be used
4394 because adjacent memory cells are accessed by adding word-sized offsets
258bfae2
FS
4395 during assembly output. */
4396int
a2369ed3 4397rs6000_legitimate_address (enum machine_mode mode, rtx x, int reg_ok_strict)
258bfae2 4398{
850e8d3d
DN
4399 /* If this is an unaligned stvx/ldvx type address, discard the outer AND. */
4400 if (TARGET_ALTIVEC
4401 && ALTIVEC_VECTOR_MODE (mode)
4402 && GET_CODE (x) == AND
4403 && GET_CODE (XEXP (x, 1)) == CONST_INT
4404 && INTVAL (XEXP (x, 1)) == -16)
4405 x = XEXP (x, 0);
4406
c4501e62
JJ
4407 if (RS6000_SYMBOL_REF_TLS_P (x))
4408 return 0;
4d588c14 4409 if (legitimate_indirect_address_p (x, reg_ok_strict))
258bfae2
FS
4410 return 1;
4411 if ((GET_CODE (x) == PRE_INC || GET_CODE (x) == PRE_DEC)
0d6d6892 4412 && !ALTIVEC_VECTOR_MODE (mode)
a3170dc6 4413 && !SPE_VECTOR_MODE (mode)
429ec7dc 4414 && mode != TFmode
7393f7f8 4415 && mode != TDmode
54b695e7 4416 /* Restrict addressing for DI because of our SUBREG hackery. */
4d4447b5
PB
4417 && !(TARGET_E500_DOUBLE
4418 && (mode == DFmode || mode == DDmode || mode == DImode))
258bfae2 4419 && TARGET_UPDATE
4d588c14 4420 && legitimate_indirect_address_p (XEXP (x, 0), reg_ok_strict))
258bfae2 4421 return 1;
d04b6e6e 4422 if (legitimate_small_data_p (mode, x))
258bfae2 4423 return 1;
4d588c14 4424 if (legitimate_constant_pool_address_p (x))
258bfae2
FS
4425 return 1;
4426 /* If not REG_OK_STRICT (before reload) let pass any stack offset. */
4427 if (! reg_ok_strict
4428 && GET_CODE (x) == PLUS
4429 && GET_CODE (XEXP (x, 0)) == REG
708d2456 4430 && (XEXP (x, 0) == virtual_stack_vars_rtx
c4ad648e 4431 || XEXP (x, 0) == arg_pointer_rtx)
258bfae2
FS
4432 && GET_CODE (XEXP (x, 1)) == CONST_INT)
4433 return 1;
76d2b81d 4434 if (rs6000_legitimate_offset_address_p (mode, x, reg_ok_strict))
258bfae2
FS
4435 return 1;
4436 if (mode != TImode
76d2b81d 4437 && mode != TFmode
7393f7f8 4438 && mode != TDmode
a3170dc6
AH
4439 && ((TARGET_HARD_FLOAT && TARGET_FPRS)
4440 || TARGET_POWERPC64
4f011e1e
JM
4441 || (mode != DFmode && mode != DDmode)
4442 || (TARGET_E500_DOUBLE && mode != DDmode))
258bfae2 4443 && (TARGET_POWERPC64 || mode != DImode)
4d588c14 4444 && legitimate_indexed_address_p (x, reg_ok_strict))
258bfae2 4445 return 1;
6fb5fa3c
DB
4446 if (GET_CODE (x) == PRE_MODIFY
4447 && mode != TImode
4448 && mode != TFmode
4449 && mode != TDmode
696e45ba 4450 && ((TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_DOUBLE_FLOAT)
6fb5fa3c 4451 || TARGET_POWERPC64
4d4447b5 4452 || ((mode != DFmode && mode != DDmode) || TARGET_E500_DOUBLE))
6fb5fa3c
DB
4453 && (TARGET_POWERPC64 || mode != DImode)
4454 && !ALTIVEC_VECTOR_MODE (mode)
4455 && !SPE_VECTOR_MODE (mode)
4456 /* Restrict addressing for DI because of our SUBREG hackery. */
4d4447b5
PB
4457 && !(TARGET_E500_DOUBLE
4458 && (mode == DFmode || mode == DDmode || mode == DImode))
6fb5fa3c
DB
4459 && TARGET_UPDATE
4460 && legitimate_indirect_address_p (XEXP (x, 0), reg_ok_strict)
4461 && (rs6000_legitimate_offset_address_p (mode, XEXP (x, 1), reg_ok_strict)
4462 || legitimate_indexed_address_p (XEXP (x, 1), reg_ok_strict))
4463 && rtx_equal_p (XEXP (XEXP (x, 1), 0), XEXP (x, 0)))
4464 return 1;
4d588c14 4465 if (legitimate_lo_sum_address_p (mode, x, reg_ok_strict))
258bfae2
FS
4466 return 1;
4467 return 0;
4468}
4d588c14
RH
4469
4470/* Go to LABEL if ADDR (a legitimate address expression)
4471 has an effect that depends on the machine mode it is used for.
4472
4473 On the RS/6000 this is true of all integral offsets (since AltiVec
4474 modes don't allow them) or is a pre-increment or decrement.
4475
4476 ??? Except that due to conceptual problems in offsettable_address_p
4477 we can't really report the problems of integral offsets. So leave
f676971a 4478 this assuming that the adjustable offset must be valid for the
4d588c14
RH
4479 sub-words of a TFmode operand, which is what we had before. */
4480
4481bool
a2369ed3 4482rs6000_mode_dependent_address (rtx addr)
4d588c14
RH
4483{
4484 switch (GET_CODE (addr))
4485 {
4486 case PLUS:
4487 if (GET_CODE (XEXP (addr, 1)) == CONST_INT)
4488 {
4489 unsigned HOST_WIDE_INT val = INTVAL (XEXP (addr, 1));
4490 return val + 12 + 0x8000 >= 0x10000;
4491 }
4492 break;
4493
4494 case LO_SUM:
4495 return true;
4496
619fe064 4497 /* Auto-increment cases are now treated generically in recog.c. */
6fb5fa3c
DB
4498 case PRE_MODIFY:
4499 return TARGET_UPDATE;
4d588c14
RH
4500
4501 default:
4502 break;
4503 }
4504
4505 return false;
4506}
d8ecbcdb 4507
944258eb
RS
4508/* Implement FIND_BASE_TERM. */
4509
4510rtx
4511rs6000_find_base_term (rtx op)
4512{
4513 rtx base, offset;
4514
4515 split_const (op, &base, &offset);
4516 if (GET_CODE (base) == UNSPEC)
4517 switch (XINT (base, 1))
4518 {
4519 case UNSPEC_TOCREL:
4520 case UNSPEC_MACHOPIC_OFFSET:
4521 /* OP represents SYM [+ OFFSET] - ANCHOR. SYM is the base term
4522 for aliasing purposes. */
4523 return XVECEXP (base, 0, 0);
4524 }
4525
4526 return op;
4527}
4528
d04b6e6e
EB
4529/* More elaborate version of recog's offsettable_memref_p predicate
4530 that works around the ??? note of rs6000_mode_dependent_address.
4531 In particular it accepts
4532
4533 (mem:DI (plus:SI (reg/f:SI 31 31) (const_int 32760 [0x7ff8])))
4534
4535 in 32-bit mode, that the recog predicate rejects. */
4536
4537bool
4538rs6000_offsettable_memref_p (rtx op)
4539{
4540 if (!MEM_P (op))
4541 return false;
4542
4543 /* First mimic offsettable_memref_p. */
4544 if (offsettable_address_p (1, GET_MODE (op), XEXP (op, 0)))
4545 return true;
4546
4547 /* offsettable_address_p invokes rs6000_mode_dependent_address, but
4548 the latter predicate knows nothing about the mode of the memory
4549 reference and, therefore, assumes that it is the largest supported
4550 mode (TFmode). As a consequence, legitimate offsettable memory
4551 references are rejected. rs6000_legitimate_offset_address_p contains
4552 the correct logic for the PLUS case of rs6000_mode_dependent_address. */
4553 return rs6000_legitimate_offset_address_p (GET_MODE (op), XEXP (op, 0), 1);
4554}
4555
d8ecbcdb
AH
4556/* Return number of consecutive hard regs needed starting at reg REGNO
4557 to hold something of mode MODE.
4558 This is ordinarily the length in words of a value of mode MODE
4559 but can be less for certain modes in special long registers.
4560
4561 For the SPE, GPRs are 64 bits but only 32 bits are visible in
4562 scalar instructions. The upper 32 bits are only available to the
4563 SIMD instructions.
4564
4565 POWER and PowerPC GPRs hold 32 bits worth;
4566 PowerPC64 GPRs and FPRs point register holds 64 bits worth. */
4567
4568int
4569rs6000_hard_regno_nregs (int regno, enum machine_mode mode)
4570{
4571 if (FP_REGNO_P (regno))
4572 return (GET_MODE_SIZE (mode) + UNITS_PER_FP_WORD - 1) / UNITS_PER_FP_WORD;
4573
4574 if (SPE_SIMD_REGNO_P (regno) && TARGET_SPE && SPE_VECTOR_MODE (mode))
4575 return (GET_MODE_SIZE (mode) + UNITS_PER_SPE_WORD - 1) / UNITS_PER_SPE_WORD;
4576
4577 if (ALTIVEC_REGNO_P (regno))
4578 return
4579 (GET_MODE_SIZE (mode) + UNITS_PER_ALTIVEC_WORD - 1) / UNITS_PER_ALTIVEC_WORD;
4580
8521c414
JM
4581 /* The value returned for SCmode in the E500 double case is 2 for
4582 ABI compatibility; storing an SCmode value in a single register
4583 would require function_arg and rs6000_spe_function_arg to handle
4584 SCmode so as to pass the value correctly in a pair of
4585 registers. */
4f011e1e
JM
4586 if (TARGET_E500_DOUBLE && FLOAT_MODE_P (mode) && mode != SCmode
4587 && !DECIMAL_FLOAT_MODE_P (mode))
8521c414
JM
4588 return (GET_MODE_SIZE (mode) + UNITS_PER_FP_WORD - 1) / UNITS_PER_FP_WORD;
4589
d8ecbcdb
AH
4590 return (GET_MODE_SIZE (mode) + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
4591}
2aa4498c
AH
4592
4593/* Change register usage conditional on target flags. */
4594void
4595rs6000_conditional_register_usage (void)
4596{
4597 int i;
4598
4599 /* Set MQ register fixed (already call_used) if not POWER
4600 architecture (RIOS1, RIOS2, RSC, and PPC601) so that it will not
4601 be allocated. */
4602 if (! TARGET_POWER)
4603 fixed_regs[64] = 1;
4604
7c9ac5c0 4605 /* 64-bit AIX and Linux reserve GPR13 for thread-private data. */
2aa4498c
AH
4606 if (TARGET_64BIT)
4607 fixed_regs[13] = call_used_regs[13]
4608 = call_really_used_regs[13] = 1;
4609
4610 /* Conditionally disable FPRs. */
4611 if (TARGET_SOFT_FLOAT || !TARGET_FPRS)
4612 for (i = 32; i < 64; i++)
4613 fixed_regs[i] = call_used_regs[i]
c4ad648e 4614 = call_really_used_regs[i] = 1;
2aa4498c 4615
7c9ac5c0
PH
4616 /* The TOC register is not killed across calls in a way that is
4617 visible to the compiler. */
4618 if (DEFAULT_ABI == ABI_AIX)
4619 call_really_used_regs[2] = 0;
4620
2aa4498c
AH
4621 if (DEFAULT_ABI == ABI_V4
4622 && PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM
4623 && flag_pic == 2)
4624 fixed_regs[RS6000_PIC_OFFSET_TABLE_REGNUM] = 1;
4625
4626 if (DEFAULT_ABI == ABI_V4
4627 && PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM
4628 && flag_pic == 1)
4629 fixed_regs[RS6000_PIC_OFFSET_TABLE_REGNUM]
4630 = call_used_regs[RS6000_PIC_OFFSET_TABLE_REGNUM]
4631 = call_really_used_regs[RS6000_PIC_OFFSET_TABLE_REGNUM] = 1;
4632
4633 if (DEFAULT_ABI == ABI_DARWIN
4634 && PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM)
6d0a8091 4635 fixed_regs[RS6000_PIC_OFFSET_TABLE_REGNUM]
2aa4498c
AH
4636 = call_used_regs[RS6000_PIC_OFFSET_TABLE_REGNUM]
4637 = call_really_used_regs[RS6000_PIC_OFFSET_TABLE_REGNUM] = 1;
4638
b4db40bf
JJ
4639 if (TARGET_TOC && TARGET_MINIMAL_TOC)
4640 fixed_regs[RS6000_PIC_OFFSET_TABLE_REGNUM]
4641 = call_used_regs[RS6000_PIC_OFFSET_TABLE_REGNUM] = 1;
4642
2aa4498c
AH
4643 if (TARGET_SPE)
4644 {
4645 global_regs[SPEFSCR_REGNO] = 1;
52ff33d0
NF
4646 /* We used to use r14 as FIXED_SCRATCH to address SPE 64-bit
4647 registers in prologues and epilogues. We no longer use r14
4648 for FIXED_SCRATCH, but we're keeping r14 out of the allocation
4649 pool for link-compatibility with older versions of GCC. Once
4650 "old" code has died out, we can return r14 to the allocation
4651 pool. */
4652 fixed_regs[14]
4653 = call_used_regs[14]
4654 = call_really_used_regs[14] = 1;
2aa4498c
AH
4655 }
4656
0db747be 4657 if (!TARGET_ALTIVEC)
2aa4498c
AH
4658 {
4659 for (i = FIRST_ALTIVEC_REGNO; i <= LAST_ALTIVEC_REGNO; ++i)
4660 fixed_regs[i] = call_used_regs[i] = call_really_used_regs[i] = 1;
4661 call_really_used_regs[VRSAVE_REGNO] = 1;
4662 }
4663
0db747be
DE
4664 if (TARGET_ALTIVEC)
4665 global_regs[VSCR_REGNO] = 1;
4666
2aa4498c 4667 if (TARGET_ALTIVEC_ABI)
0db747be
DE
4668 {
4669 for (i = FIRST_ALTIVEC_REGNO; i < FIRST_ALTIVEC_REGNO + 20; ++i)
4670 call_used_regs[i] = call_really_used_regs[i] = 1;
4671
4672 /* AIX reserves VR20:31 in non-extended ABI mode. */
4673 if (TARGET_XCOFF)
4674 for (i = FIRST_ALTIVEC_REGNO + 20; i < FIRST_ALTIVEC_REGNO + 32; ++i)
4675 fixed_regs[i] = call_used_regs[i] = call_really_used_regs[i] = 1;
4676 }
2aa4498c 4677}
fb4d4348 4678\f
a4f6c312
SS
4679/* Try to output insns to set TARGET equal to the constant C if it can
4680 be done in less than N insns. Do all computations in MODE.
4681 Returns the place where the output has been placed if it can be
4682 done and the insns have been emitted. If it would take more than N
4683 insns, zero is returned and no insns and emitted. */
2bfcf297
DB
4684
4685rtx
f676971a 4686rs6000_emit_set_const (rtx dest, enum machine_mode mode,
a2369ed3 4687 rtx source, int n ATTRIBUTE_UNUSED)
2bfcf297 4688{
af8cb5c5 4689 rtx result, insn, set;
2bfcf297
DB
4690 HOST_WIDE_INT c0, c1;
4691
37409796 4692 switch (mode)
2bfcf297 4693 {
37409796
NS
4694 case QImode:
4695 case HImode:
2bfcf297 4696 if (dest == NULL)
c4ad648e 4697 dest = gen_reg_rtx (mode);
2bfcf297
DB
4698 emit_insn (gen_rtx_SET (VOIDmode, dest, source));
4699 return dest;
bb8df8a6 4700
37409796 4701 case SImode:
b3a13419 4702 result = !can_create_pseudo_p () ? dest : gen_reg_rtx (SImode);
bb8df8a6 4703
d448860e 4704 emit_insn (gen_rtx_SET (VOIDmode, copy_rtx (result),
af8cb5c5
DE
4705 GEN_INT (INTVAL (source)
4706 & (~ (HOST_WIDE_INT) 0xffff))));
4707 emit_insn (gen_rtx_SET (VOIDmode, dest,
d448860e 4708 gen_rtx_IOR (SImode, copy_rtx (result),
af8cb5c5
DE
4709 GEN_INT (INTVAL (source) & 0xffff))));
4710 result = dest;
37409796
NS
4711 break;
4712
4713 case DImode:
4714 switch (GET_CODE (source))
af8cb5c5 4715 {
37409796 4716 case CONST_INT:
af8cb5c5
DE
4717 c0 = INTVAL (source);
4718 c1 = -(c0 < 0);
37409796 4719 break;
bb8df8a6 4720
37409796 4721 case CONST_DOUBLE:
2bfcf297 4722#if HOST_BITS_PER_WIDE_INT >= 64
af8cb5c5
DE
4723 c0 = CONST_DOUBLE_LOW (source);
4724 c1 = -(c0 < 0);
2bfcf297 4725#else
af8cb5c5
DE
4726 c0 = CONST_DOUBLE_LOW (source);
4727 c1 = CONST_DOUBLE_HIGH (source);
2bfcf297 4728#endif
37409796
NS
4729 break;
4730
4731 default:
4732 gcc_unreachable ();
af8cb5c5 4733 }
af8cb5c5
DE
4734
4735 result = rs6000_emit_set_long_const (dest, c0, c1);
37409796
NS
4736 break;
4737
4738 default:
4739 gcc_unreachable ();
2bfcf297 4740 }
2bfcf297 4741
af8cb5c5
DE
4742 insn = get_last_insn ();
4743 set = single_set (insn);
4744 if (! CONSTANT_P (SET_SRC (set)))
4745 set_unique_reg_note (insn, REG_EQUAL, source);
4746
4747 return result;
2bfcf297
DB
4748}
4749
4750/* Having failed to find a 3 insn sequence in rs6000_emit_set_const,
4751 fall back to a straight forward decomposition. We do this to avoid
4752 exponential run times encountered when looking for longer sequences
4753 with rs6000_emit_set_const. */
4754static rtx
a2369ed3 4755rs6000_emit_set_long_const (rtx dest, HOST_WIDE_INT c1, HOST_WIDE_INT c2)
2bfcf297
DB
4756{
4757 if (!TARGET_POWERPC64)
4758 {
4759 rtx operand1, operand2;
4760
4761 operand1 = operand_subword_force (dest, WORDS_BIG_ENDIAN == 0,
4762 DImode);
d448860e 4763 operand2 = operand_subword_force (copy_rtx (dest), WORDS_BIG_ENDIAN != 0,
2bfcf297
DB
4764 DImode);
4765 emit_move_insn (operand1, GEN_INT (c1));
4766 emit_move_insn (operand2, GEN_INT (c2));
4767 }
4768 else
4769 {
bc06712d 4770 HOST_WIDE_INT ud1, ud2, ud3, ud4;
252b88f7 4771
bc06712d 4772 ud1 = c1 & 0xffff;
f921c9c9 4773 ud2 = (c1 & 0xffff0000) >> 16;
2bfcf297 4774#if HOST_BITS_PER_WIDE_INT >= 64
bc06712d 4775 c2 = c1 >> 32;
2bfcf297 4776#endif
bc06712d 4777 ud3 = c2 & 0xffff;
f921c9c9 4778 ud4 = (c2 & 0xffff0000) >> 16;
2bfcf297 4779
f676971a 4780 if ((ud4 == 0xffff && ud3 == 0xffff && ud2 == 0xffff && (ud1 & 0x8000))
bc06712d 4781 || (ud4 == 0 && ud3 == 0 && ud2 == 0 && ! (ud1 & 0x8000)))
2bfcf297 4782 {
bc06712d 4783 if (ud1 & 0x8000)
b78d48dd 4784 emit_move_insn (dest, GEN_INT (((ud1 ^ 0x8000) - 0x8000)));
bc06712d
TR
4785 else
4786 emit_move_insn (dest, GEN_INT (ud1));
2bfcf297 4787 }
2bfcf297 4788
f676971a 4789 else if ((ud4 == 0xffff && ud3 == 0xffff && (ud2 & 0x8000))
bc06712d 4790 || (ud4 == 0 && ud3 == 0 && ! (ud2 & 0x8000)))
252b88f7 4791 {
bc06712d 4792 if (ud2 & 0x8000)
f676971a 4793 emit_move_insn (dest, GEN_INT (((ud2 << 16) ^ 0x80000000)
bc06712d 4794 - 0x80000000));
252b88f7 4795 else
bc06712d
TR
4796 emit_move_insn (dest, GEN_INT (ud2 << 16));
4797 if (ud1 != 0)
d448860e
JH
4798 emit_move_insn (copy_rtx (dest),
4799 gen_rtx_IOR (DImode, copy_rtx (dest),
4800 GEN_INT (ud1)));
252b88f7 4801 }
f676971a 4802 else if ((ud4 == 0xffff && (ud3 & 0x8000))
bc06712d
TR
4803 || (ud4 == 0 && ! (ud3 & 0x8000)))
4804 {
4805 if (ud3 & 0x8000)
f676971a 4806 emit_move_insn (dest, GEN_INT (((ud3 << 16) ^ 0x80000000)
bc06712d
TR
4807 - 0x80000000));
4808 else
4809 emit_move_insn (dest, GEN_INT (ud3 << 16));
4810
4811 if (ud2 != 0)
d448860e
JH
4812 emit_move_insn (copy_rtx (dest),
4813 gen_rtx_IOR (DImode, copy_rtx (dest),
4814 GEN_INT (ud2)));
4815 emit_move_insn (copy_rtx (dest),
4816 gen_rtx_ASHIFT (DImode, copy_rtx (dest),
4817 GEN_INT (16)));
bc06712d 4818 if (ud1 != 0)
d448860e
JH
4819 emit_move_insn (copy_rtx (dest),
4820 gen_rtx_IOR (DImode, copy_rtx (dest),
4821 GEN_INT (ud1)));
bc06712d 4822 }
f676971a 4823 else
bc06712d
TR
4824 {
4825 if (ud4 & 0x8000)
f676971a 4826 emit_move_insn (dest, GEN_INT (((ud4 << 16) ^ 0x80000000)
bc06712d
TR
4827 - 0x80000000));
4828 else
4829 emit_move_insn (dest, GEN_INT (ud4 << 16));
4830
4831 if (ud3 != 0)
d448860e
JH
4832 emit_move_insn (copy_rtx (dest),
4833 gen_rtx_IOR (DImode, copy_rtx (dest),
4834 GEN_INT (ud3)));
2bfcf297 4835
d448860e
JH
4836 emit_move_insn (copy_rtx (dest),
4837 gen_rtx_ASHIFT (DImode, copy_rtx (dest),
4838 GEN_INT (32)));
bc06712d 4839 if (ud2 != 0)
d448860e
JH
4840 emit_move_insn (copy_rtx (dest),
4841 gen_rtx_IOR (DImode, copy_rtx (dest),
4842 GEN_INT (ud2 << 16)));
bc06712d 4843 if (ud1 != 0)
d448860e
JH
4844 emit_move_insn (copy_rtx (dest),
4845 gen_rtx_IOR (DImode, copy_rtx (dest), GEN_INT (ud1)));
bc06712d
TR
4846 }
4847 }
2bfcf297
DB
4848 return dest;
4849}
4850
76d2b81d 4851/* Helper for the following. Get rid of [r+r] memory refs
7393f7f8 4852 in cases where it won't work (TImode, TFmode, TDmode). */
76d2b81d
DJ
4853
4854static void
4855rs6000_eliminate_indexed_memrefs (rtx operands[2])
4856{
4857 if (GET_CODE (operands[0]) == MEM
4858 && GET_CODE (XEXP (operands[0], 0)) != REG
55aa0757 4859 && ! legitimate_constant_pool_address_p (XEXP (operands[0], 0))
76d2b81d
DJ
4860 && ! reload_in_progress)
4861 operands[0]
4862 = replace_equiv_address (operands[0],
4863 copy_addr_to_reg (XEXP (operands[0], 0)));
4864
4865 if (GET_CODE (operands[1]) == MEM
4866 && GET_CODE (XEXP (operands[1], 0)) != REG
55aa0757 4867 && ! legitimate_constant_pool_address_p (XEXP (operands[1], 0))
76d2b81d
DJ
4868 && ! reload_in_progress)
4869 operands[1]
4870 = replace_equiv_address (operands[1],
4871 copy_addr_to_reg (XEXP (operands[1], 0)));
4872}
4873
fb4d4348
GK
4874/* Emit a move from SOURCE to DEST in mode MODE. */
4875void
a2369ed3 4876rs6000_emit_move (rtx dest, rtx source, enum machine_mode mode)
fb4d4348
GK
4877{
4878 rtx operands[2];
4879 operands[0] = dest;
4880 operands[1] = source;
f676971a 4881
fb4d4348
GK
4882 /* Sanity checks. Check that we get CONST_DOUBLE only when we should. */
4883 if (GET_CODE (operands[1]) == CONST_DOUBLE
4884 && ! FLOAT_MODE_P (mode)
4885 && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
4886 {
4887 /* FIXME. This should never happen. */
4888 /* Since it seems that it does, do the safe thing and convert
4889 to a CONST_INT. */
2496c7bd 4890 operands[1] = gen_int_mode (CONST_DOUBLE_LOW (operands[1]), mode);
fb4d4348 4891 }
37409796
NS
4892 gcc_assert (GET_CODE (operands[1]) != CONST_DOUBLE
4893 || FLOAT_MODE_P (mode)
4894 || ((CONST_DOUBLE_HIGH (operands[1]) != 0
4895 || CONST_DOUBLE_LOW (operands[1]) < 0)
4896 && (CONST_DOUBLE_HIGH (operands[1]) != -1
4897 || CONST_DOUBLE_LOW (operands[1]) >= 0)));
bb8df8a6 4898
c9e8cb32
DD
4899 /* Check if GCC is setting up a block move that will end up using FP
4900 registers as temporaries. We must make sure this is acceptable. */
4901 if (GET_CODE (operands[0]) == MEM
4902 && GET_CODE (operands[1]) == MEM
4903 && mode == DImode
41543739
GK
4904 && (SLOW_UNALIGNED_ACCESS (DImode, MEM_ALIGN (operands[0]))
4905 || SLOW_UNALIGNED_ACCESS (DImode, MEM_ALIGN (operands[1])))
4906 && ! (SLOW_UNALIGNED_ACCESS (SImode, (MEM_ALIGN (operands[0]) > 32
4907 ? 32 : MEM_ALIGN (operands[0])))
4908 || SLOW_UNALIGNED_ACCESS (SImode, (MEM_ALIGN (operands[1]) > 32
f676971a 4909 ? 32
41543739
GK
4910 : MEM_ALIGN (operands[1]))))
4911 && ! MEM_VOLATILE_P (operands [0])
4912 && ! MEM_VOLATILE_P (operands [1]))
c9e8cb32 4913 {
41543739
GK
4914 emit_move_insn (adjust_address (operands[0], SImode, 0),
4915 adjust_address (operands[1], SImode, 0));
d448860e
JH
4916 emit_move_insn (adjust_address (copy_rtx (operands[0]), SImode, 4),
4917 adjust_address (copy_rtx (operands[1]), SImode, 4));
c9e8cb32
DD
4918 return;
4919 }
630d42a0 4920
b3a13419 4921 if (can_create_pseudo_p () && GET_CODE (operands[0]) == MEM
c9dbf840 4922 && !gpc_reg_operand (operands[1], mode))
f6219a5e 4923 operands[1] = force_reg (mode, operands[1]);
a9098fd0 4924
a3170dc6 4925 if (mode == SFmode && ! TARGET_POWERPC
696e45ba 4926 && TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_DOUBLE_FLOAT
ffc14f31 4927 && GET_CODE (operands[0]) == MEM)
fb4d4348 4928 {
ffc14f31
GK
4929 int regnum;
4930
4931 if (reload_in_progress || reload_completed)
4932 regnum = true_regnum (operands[1]);
4933 else if (GET_CODE (operands[1]) == REG)
4934 regnum = REGNO (operands[1]);
4935 else
4936 regnum = -1;
f676971a 4937
fb4d4348
GK
4938 /* If operands[1] is a register, on POWER it may have
4939 double-precision data in it, so truncate it to single
4940 precision. */
4941 if (FP_REGNO_P (regnum) || regnum >= FIRST_PSEUDO_REGISTER)
4942 {
4943 rtx newreg;
b3a13419 4944 newreg = (!can_create_pseudo_p () ? copy_rtx (operands[1])
d448860e 4945 : gen_reg_rtx (mode));
fb4d4348
GK
4946 emit_insn (gen_aux_truncdfsf2 (newreg, operands[1]));
4947 operands[1] = newreg;
4948 }
4949 }
4950
c4501e62
JJ
4951 /* Recognize the case where operand[1] is a reference to thread-local
4952 data and load its address to a register. */
84f52ebd 4953 if (rs6000_tls_referenced_p (operands[1]))
c4501e62 4954 {
84f52ebd
RH
4955 enum tls_model model;
4956 rtx tmp = operands[1];
4957 rtx addend = NULL;
4958
4959 if (GET_CODE (tmp) == CONST && GET_CODE (XEXP (tmp, 0)) == PLUS)
4960 {
4961 addend = XEXP (XEXP (tmp, 0), 1);
4962 tmp = XEXP (XEXP (tmp, 0), 0);
4963 }
4964
4965 gcc_assert (GET_CODE (tmp) == SYMBOL_REF);
4966 model = SYMBOL_REF_TLS_MODEL (tmp);
4967 gcc_assert (model != 0);
4968
4969 tmp = rs6000_legitimize_tls_address (tmp, model);
4970 if (addend)
4971 {
4972 tmp = gen_rtx_PLUS (mode, tmp, addend);
4973 tmp = force_operand (tmp, operands[0]);
4974 }
4975 operands[1] = tmp;
c4501e62
JJ
4976 }
4977
8f4e6caf
RH
4978 /* Handle the case where reload calls us with an invalid address. */
4979 if (reload_in_progress && mode == Pmode
69ef87e2 4980 && (! general_operand (operands[1], mode)
8f4e6caf
RH
4981 || ! nonimmediate_operand (operands[0], mode)))
4982 goto emit_set;
4983
a9baceb1
GK
4984 /* 128-bit constant floating-point values on Darwin should really be
4985 loaded as two parts. */
8521c414 4986 if (!TARGET_IEEEQUAD && TARGET_LONG_DOUBLE_128
a9baceb1
GK
4987 && mode == TFmode && GET_CODE (operands[1]) == CONST_DOUBLE)
4988 {
4989 /* DImode is used, not DFmode, because simplify_gen_subreg doesn't
4990 know how to get a DFmode SUBREG of a TFmode. */
17caeff2
JM
4991 enum machine_mode imode = (TARGET_E500_DOUBLE ? DFmode : DImode);
4992 rs6000_emit_move (simplify_gen_subreg (imode, operands[0], mode, 0),
4993 simplify_gen_subreg (imode, operands[1], mode, 0),
4994 imode);
4995 rs6000_emit_move (simplify_gen_subreg (imode, operands[0], mode,
4996 GET_MODE_SIZE (imode)),
4997 simplify_gen_subreg (imode, operands[1], mode,
4998 GET_MODE_SIZE (imode)),
4999 imode);
a9baceb1
GK
5000 return;
5001 }
5002
e41b2a33
PB
5003 if (reload_in_progress && cfun->machine->sdmode_stack_slot != NULL_RTX)
5004 cfun->machine->sdmode_stack_slot =
5005 eliminate_regs (cfun->machine->sdmode_stack_slot, VOIDmode, NULL_RTX);
5006
5007 if (reload_in_progress
5008 && mode == SDmode
5009 && MEM_P (operands[0])
5010 && rtx_equal_p (operands[0], cfun->machine->sdmode_stack_slot)
5011 && REG_P (operands[1]))
5012 {
5013 if (FP_REGNO_P (REGNO (operands[1])))
5014 {
5015 rtx mem = adjust_address_nv (operands[0], DDmode, 0);
5016 mem = eliminate_regs (mem, VOIDmode, NULL_RTX);
5017 emit_insn (gen_movsd_store (mem, operands[1]));
5018 }
5019 else if (INT_REGNO_P (REGNO (operands[1])))
5020 {
5021 rtx mem = adjust_address_nv (operands[0], mode, 4);
5022 mem = eliminate_regs (mem, VOIDmode, NULL_RTX);
5023 emit_insn (gen_movsd_hardfloat (mem, operands[1]));
5024 }
5025 else
5026 gcc_unreachable();
5027 return;
5028 }
5029 if (reload_in_progress
5030 && mode == SDmode
5031 && REG_P (operands[0])
5032 && MEM_P (operands[1])
5033 && rtx_equal_p (operands[1], cfun->machine->sdmode_stack_slot))
5034 {
5035 if (FP_REGNO_P (REGNO (operands[0])))
5036 {
5037 rtx mem = adjust_address_nv (operands[1], DDmode, 0);
5038 mem = eliminate_regs (mem, VOIDmode, NULL_RTX);
5039 emit_insn (gen_movsd_load (operands[0], mem));
5040 }
5041 else if (INT_REGNO_P (REGNO (operands[0])))
5042 {
5043 rtx mem = adjust_address_nv (operands[1], mode, 4);
5044 mem = eliminate_regs (mem, VOIDmode, NULL_RTX);
5045 emit_insn (gen_movsd_hardfloat (operands[0], mem));
5046 }
5047 else
5048 gcc_unreachable();
5049 return;
5050 }
5051
fb4d4348
GK
5052 /* FIXME: In the long term, this switch statement should go away
5053 and be replaced by a sequence of tests based on things like
5054 mode == Pmode. */
5055 switch (mode)
5056 {
5057 case HImode:
5058 case QImode:
5059 if (CONSTANT_P (operands[1])
5060 && GET_CODE (operands[1]) != CONST_INT)
a9098fd0 5061 operands[1] = force_const_mem (mode, operands[1]);
fb4d4348
GK
5062 break;
5063
06f4e019 5064 case TFmode:
7393f7f8 5065 case TDmode:
76d2b81d
DJ
5066 rs6000_eliminate_indexed_memrefs (operands);
5067 /* fall through */
5068
fb4d4348 5069 case DFmode:
7393f7f8 5070 case DDmode:
fb4d4348 5071 case SFmode:
e41b2a33 5072 case SDmode:
f676971a 5073 if (CONSTANT_P (operands[1])
fb4d4348 5074 && ! easy_fp_constant (operands[1], mode))
a9098fd0 5075 operands[1] = force_const_mem (mode, operands[1]);
fb4d4348 5076 break;
f676971a 5077
0ac081f6
AH
5078 case V16QImode:
5079 case V8HImode:
5080 case V4SFmode:
5081 case V4SImode:
a3170dc6
AH
5082 case V4HImode:
5083 case V2SFmode:
5084 case V2SImode:
00a892b8 5085 case V1DImode:
69ef87e2 5086 if (CONSTANT_P (operands[1])
d744e06e 5087 && !easy_vector_constant (operands[1], mode))
0ac081f6
AH
5088 operands[1] = force_const_mem (mode, operands[1]);
5089 break;
f676971a 5090
fb4d4348 5091 case SImode:
a9098fd0 5092 case DImode:
fb4d4348
GK
5093 /* Use default pattern for address of ELF small data */
5094 if (TARGET_ELF
a9098fd0 5095 && mode == Pmode
f607bc57 5096 && DEFAULT_ABI == ABI_V4
f676971a 5097 && (GET_CODE (operands[1]) == SYMBOL_REF
a9098fd0
GK
5098 || GET_CODE (operands[1]) == CONST)
5099 && small_data_operand (operands[1], mode))
fb4d4348
GK
5100 {
5101 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
5102 return;
5103 }
5104
f607bc57 5105 if (DEFAULT_ABI == ABI_V4
a9098fd0
GK
5106 && mode == Pmode && mode == SImode
5107 && flag_pic == 1 && got_operand (operands[1], mode))
fb4d4348
GK
5108 {
5109 emit_insn (gen_movsi_got (operands[0], operands[1]));
5110 return;
5111 }
5112
ee890fe2 5113 if ((TARGET_ELF || DEFAULT_ABI == ABI_DARWIN)
f1384257
AM
5114 && TARGET_NO_TOC
5115 && ! flag_pic
a9098fd0 5116 && mode == Pmode
fb4d4348
GK
5117 && CONSTANT_P (operands[1])
5118 && GET_CODE (operands[1]) != HIGH
5119 && GET_CODE (operands[1]) != CONST_INT)
5120 {
b3a13419
ILT
5121 rtx target = (!can_create_pseudo_p ()
5122 ? operands[0]
5123 : gen_reg_rtx (mode));
fb4d4348
GK
5124
5125 /* If this is a function address on -mcall-aixdesc,
5126 convert it to the address of the descriptor. */
5127 if (DEFAULT_ABI == ABI_AIX
5128 && GET_CODE (operands[1]) == SYMBOL_REF
5129 && XSTR (operands[1], 0)[0] == '.')
5130 {
5131 const char *name = XSTR (operands[1], 0);
5132 rtx new_ref;
5133 while (*name == '.')
5134 name++;
5135 new_ref = gen_rtx_SYMBOL_REF (Pmode, name);
5136 CONSTANT_POOL_ADDRESS_P (new_ref)
5137 = CONSTANT_POOL_ADDRESS_P (operands[1]);
d1908feb 5138 SYMBOL_REF_FLAGS (new_ref) = SYMBOL_REF_FLAGS (operands[1]);
fb4d4348 5139 SYMBOL_REF_USED (new_ref) = SYMBOL_REF_USED (operands[1]);
c185c797 5140 SYMBOL_REF_DATA (new_ref) = SYMBOL_REF_DATA (operands[1]);
fb4d4348
GK
5141 operands[1] = new_ref;
5142 }
7509c759 5143
ee890fe2
SS
5144 if (DEFAULT_ABI == ABI_DARWIN)
5145 {
ab82a49f
AP
5146#if TARGET_MACHO
5147 if (MACHO_DYNAMIC_NO_PIC_P)
5148 {
5149 /* Take care of any required data indirection. */
5150 operands[1] = rs6000_machopic_legitimize_pic_address (
5151 operands[1], mode, operands[0]);
5152 if (operands[0] != operands[1])
5153 emit_insn (gen_rtx_SET (VOIDmode,
c4ad648e 5154 operands[0], operands[1]));
ab82a49f
AP
5155 return;
5156 }
5157#endif
b8a55285
AP
5158 emit_insn (gen_macho_high (target, operands[1]));
5159 emit_insn (gen_macho_low (operands[0], target, operands[1]));
ee890fe2
SS
5160 return;
5161 }
5162
fb4d4348
GK
5163 emit_insn (gen_elf_high (target, operands[1]));
5164 emit_insn (gen_elf_low (operands[0], target, operands[1]));
5165 return;
5166 }
5167
a9098fd0
GK
5168 /* If this is a SYMBOL_REF that refers to a constant pool entry,
5169 and we have put it in the TOC, we just need to make a TOC-relative
5170 reference to it. */
5171 if (TARGET_TOC
5172 && GET_CODE (operands[1]) == SYMBOL_REF
4d588c14 5173 && constant_pool_expr_p (operands[1])
a9098fd0
GK
5174 && ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (get_pool_constant (operands[1]),
5175 get_pool_mode (operands[1])))
fb4d4348 5176 {
a9098fd0 5177 operands[1] = create_TOC_reference (operands[1]);
fb4d4348 5178 }
a9098fd0
GK
5179 else if (mode == Pmode
5180 && CONSTANT_P (operands[1])
38886f37
AO
5181 && ((GET_CODE (operands[1]) != CONST_INT
5182 && ! easy_fp_constant (operands[1], mode))
5183 || (GET_CODE (operands[1]) == CONST_INT
5184 && num_insns_constant (operands[1], mode) > 2)
5185 || (GET_CODE (operands[0]) == REG
5186 && FP_REGNO_P (REGNO (operands[0]))))
a9098fd0 5187 && GET_CODE (operands[1]) != HIGH
4d588c14
RH
5188 && ! legitimate_constant_pool_address_p (operands[1])
5189 && ! toc_relative_expr_p (operands[1]))
fb4d4348
GK
5190 {
5191 /* Emit a USE operation so that the constant isn't deleted if
5192 expensive optimizations are turned on because nobody
5193 references it. This should only be done for operands that
5194 contain SYMBOL_REFs with CONSTANT_POOL_ADDRESS_P set.
5195 This should not be done for operands that contain LABEL_REFs.
5196 For now, we just handle the obvious case. */
5197 if (GET_CODE (operands[1]) != LABEL_REF)
c41c1387 5198 emit_use (operands[1]);
fb4d4348 5199
c859cda6 5200#if TARGET_MACHO
ee890fe2 5201 /* Darwin uses a special PIC legitimizer. */
ab82a49f 5202 if (DEFAULT_ABI == ABI_DARWIN && MACHOPIC_INDIRECT)
ee890fe2 5203 {
ee890fe2
SS
5204 operands[1] =
5205 rs6000_machopic_legitimize_pic_address (operands[1], mode,
c859cda6
DJ
5206 operands[0]);
5207 if (operands[0] != operands[1])
5208 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
ee890fe2
SS
5209 return;
5210 }
c859cda6 5211#endif
ee890fe2 5212
fb4d4348
GK
5213 /* If we are to limit the number of things we put in the TOC and
5214 this is a symbol plus a constant we can add in one insn,
5215 just put the symbol in the TOC and add the constant. Don't do
5216 this if reload is in progress. */
5217 if (GET_CODE (operands[1]) == CONST
5218 && TARGET_NO_SUM_IN_TOC && ! reload_in_progress
5219 && GET_CODE (XEXP (operands[1], 0)) == PLUS
a9098fd0 5220 && add_operand (XEXP (XEXP (operands[1], 0), 1), mode)
fb4d4348
GK
5221 && (GET_CODE (XEXP (XEXP (operands[1], 0), 0)) == LABEL_REF
5222 || GET_CODE (XEXP (XEXP (operands[1], 0), 0)) == SYMBOL_REF)
5223 && ! side_effects_p (operands[0]))
5224 {
a4f6c312
SS
5225 rtx sym =
5226 force_const_mem (mode, XEXP (XEXP (operands[1], 0), 0));
fb4d4348
GK
5227 rtx other = XEXP (XEXP (operands[1], 0), 1);
5228
a9098fd0
GK
5229 sym = force_reg (mode, sym);
5230 if (mode == SImode)
5231 emit_insn (gen_addsi3 (operands[0], sym, other));
5232 else
5233 emit_insn (gen_adddi3 (operands[0], sym, other));
fb4d4348
GK
5234 return;
5235 }
5236
a9098fd0 5237 operands[1] = force_const_mem (mode, operands[1]);
fb4d4348 5238
f676971a 5239 if (TARGET_TOC
0cdc04e8 5240 && GET_CODE (XEXP (operands[1], 0)) == SYMBOL_REF
4d588c14 5241 && constant_pool_expr_p (XEXP (operands[1], 0))
d34c5b80
DE
5242 && ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (
5243 get_pool_constant (XEXP (operands[1], 0)),
5244 get_pool_mode (XEXP (operands[1], 0))))
a9098fd0 5245 {
ba4828e0 5246 operands[1]
542a8afa 5247 = gen_const_mem (mode,
c4ad648e 5248 create_TOC_reference (XEXP (operands[1], 0)));
ba4828e0 5249 set_mem_alias_set (operands[1], get_TOC_alias_set ());
a9098fd0 5250 }
fb4d4348
GK
5251 }
5252 break;
a9098fd0 5253
fb4d4348 5254 case TImode:
76d2b81d
DJ
5255 rs6000_eliminate_indexed_memrefs (operands);
5256
27dc0551
DE
5257 if (TARGET_POWER)
5258 {
5259 emit_insn (gen_rtx_PARALLEL (VOIDmode,
5260 gen_rtvec (2,
5261 gen_rtx_SET (VOIDmode,
5262 operands[0], operands[1]),
5263 gen_rtx_CLOBBER (VOIDmode,
5264 gen_rtx_SCRATCH (SImode)))));
5265 return;
5266 }
fb4d4348
GK
5267 break;
5268
5269 default:
37409796 5270 gcc_unreachable ();
fb4d4348
GK
5271 }
5272
a9098fd0
GK
5273 /* Above, we may have called force_const_mem which may have returned
5274 an invalid address. If we can, fix this up; otherwise, reload will
5275 have to deal with it. */
8f4e6caf
RH
5276 if (GET_CODE (operands[1]) == MEM && ! reload_in_progress)
5277 operands[1] = validize_mem (operands[1]);
a9098fd0 5278
8f4e6caf 5279 emit_set:
fb4d4348
GK
5280 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
5281}
4697a36c 5282\f
2858f73a
GK
5283/* Nonzero if we can use a floating-point register to pass this arg. */
5284#define USE_FP_FOR_ARG_P(CUM,MODE,TYPE) \
ebb109ad 5285 (SCALAR_FLOAT_MODE_P (MODE) \
2858f73a 5286 && (CUM)->fregno <= FP_ARG_MAX_REG \
56f4cc04 5287 && TARGET_HARD_FLOAT && TARGET_FPRS)
2858f73a
GK
5288
5289/* Nonzero if we can use an AltiVec register to pass this arg. */
5290#define USE_ALTIVEC_FOR_ARG_P(CUM,MODE,TYPE,NAMED) \
5291 (ALTIVEC_VECTOR_MODE (MODE) \
5292 && (CUM)->vregno <= ALTIVEC_ARG_MAX_REG \
5293 && TARGET_ALTIVEC_ABI \
83953138 5294 && (NAMED))
2858f73a 5295
c6e8c921
GK
5296/* Return a nonzero value to say to return the function value in
5297 memory, just as large structures are always returned. TYPE will be
5298 the data type of the value, and FNTYPE will be the type of the
5299 function doing the returning, or @code{NULL} for libcalls.
5300
5301 The AIX ABI for the RS/6000 specifies that all structures are
5302 returned in memory. The Darwin ABI does the same. The SVR4 ABI
5303 specifies that structures <= 8 bytes are returned in r3/r4, but a
5304 draft put them in memory, and GCC used to implement the draft
df01da37 5305 instead of the final standard. Therefore, aix_struct_return
c6e8c921
GK
5306 controls this instead of DEFAULT_ABI; V.4 targets needing backward
5307 compatibility can change DRAFT_V4_STRUCT_RET to override the
5308 default, and -m switches get the final word. See
5309 rs6000_override_options for more details.
5310
5311 The PPC32 SVR4 ABI uses IEEE double extended for long double, if 128-bit
5312 long double support is enabled. These values are returned in memory.
5313
5314 int_size_in_bytes returns -1 for variable size objects, which go in
5315 memory always. The cast to unsigned makes -1 > 8. */
5316
5317static bool
586de218 5318rs6000_return_in_memory (const_tree type, const_tree fntype ATTRIBUTE_UNUSED)
c6e8c921 5319{
594a51fe
SS
5320 /* In the darwin64 abi, try to use registers for larger structs
5321 if possible. */
0b5383eb 5322 if (rs6000_darwin64_abi
594a51fe 5323 && TREE_CODE (type) == RECORD_TYPE
0b5383eb
DJ
5324 && int_size_in_bytes (type) > 0)
5325 {
5326 CUMULATIVE_ARGS valcum;
5327 rtx valret;
5328
5329 valcum.words = 0;
5330 valcum.fregno = FP_ARG_MIN_REG;
5331 valcum.vregno = ALTIVEC_ARG_MIN_REG;
5332 /* Do a trial code generation as if this were going to be passed
5333 as an argument; if any part goes in memory, we return NULL. */
5334 valret = rs6000_darwin64_record_arg (&valcum, type, 1, true);
5335 if (valret)
5336 return false;
5337 /* Otherwise fall through to more conventional ABI rules. */
5338 }
594a51fe 5339
c6e8c921 5340 if (AGGREGATE_TYPE_P (type)
df01da37 5341 && (aix_struct_return
c6e8c921
GK
5342 || (unsigned HOST_WIDE_INT) int_size_in_bytes (type) > 8))
5343 return true;
b693336b 5344
bada2eb8
DE
5345 /* Allow -maltivec -mabi=no-altivec without warning. Altivec vector
5346 modes only exist for GCC vector types if -maltivec. */
5347 if (TARGET_32BIT && !TARGET_ALTIVEC_ABI
5348 && ALTIVEC_VECTOR_MODE (TYPE_MODE (type)))
5349 return false;
5350
b693336b
PB
5351 /* Return synthetic vectors in memory. */
5352 if (TREE_CODE (type) == VECTOR_TYPE
ad630bef 5353 && int_size_in_bytes (type) > (TARGET_ALTIVEC_ABI ? 16 : 8))
b693336b
PB
5354 {
5355 static bool warned_for_return_big_vectors = false;
5356 if (!warned_for_return_big_vectors)
5357 {
d4ee4d25 5358 warning (0, "GCC vector returned by reference: "
b693336b
PB
5359 "non-standard ABI extension with no compatibility guarantee");
5360 warned_for_return_big_vectors = true;
5361 }
5362 return true;
5363 }
5364
602ea4d3 5365 if (DEFAULT_ABI == ABI_V4 && TARGET_IEEEQUAD && TYPE_MODE (type) == TFmode)
c6e8c921 5366 return true;
ad630bef 5367
c6e8c921
GK
5368 return false;
5369}
5370
4697a36c
MM
5371/* Initialize a variable CUM of type CUMULATIVE_ARGS
5372 for a call to a function whose data type is FNTYPE.
5373 For a library call, FNTYPE is 0.
5374
5375 For incoming args we set the number of arguments in the prototype large
1c20ae99 5376 so we never return a PARALLEL. */
4697a36c
MM
5377
5378void
f676971a 5379init_cumulative_args (CUMULATIVE_ARGS *cum, tree fntype,
0f6937fe
AM
5380 rtx libname ATTRIBUTE_UNUSED, int incoming,
5381 int libcall, int n_named_args)
4697a36c
MM
5382{
5383 static CUMULATIVE_ARGS zero_cumulative;
5384
5385 *cum = zero_cumulative;
5386 cum->words = 0;
5387 cum->fregno = FP_ARG_MIN_REG;
0ac081f6 5388 cum->vregno = ALTIVEC_ARG_MIN_REG;
4697a36c 5389 cum->prototype = (fntype && TYPE_ARG_TYPES (fntype));
ddcc8263
DE
5390 cum->call_cookie = ((DEFAULT_ABI == ABI_V4 && libcall)
5391 ? CALL_LIBCALL : CALL_NORMAL);
4cc833b7 5392 cum->sysv_gregno = GP_ARG_MIN_REG;
a6c9bed4
AH
5393 cum->stdarg = fntype
5394 && (TYPE_ARG_TYPES (fntype) != 0
5395 && (TREE_VALUE (tree_last (TYPE_ARG_TYPES (fntype)))
5396 != void_type_node));
4697a36c 5397
0f6937fe
AM
5398 cum->nargs_prototype = 0;
5399 if (incoming || cum->prototype)
5400 cum->nargs_prototype = n_named_args;
4697a36c 5401
a5c76ee6 5402 /* Check for a longcall attribute. */
3eb4e360
AM
5403 if ((!fntype && rs6000_default_long_calls)
5404 || (fntype
5405 && lookup_attribute ("longcall", TYPE_ATTRIBUTES (fntype))
5406 && !lookup_attribute ("shortcall", TYPE_ATTRIBUTES (fntype))))
5407 cum->call_cookie |= CALL_LONG;
6a4cee5f 5408
4697a36c
MM
5409 if (TARGET_DEBUG_ARG)
5410 {
5411 fprintf (stderr, "\ninit_cumulative_args:");
5412 if (fntype)
5413 {
5414 tree ret_type = TREE_TYPE (fntype);
5415 fprintf (stderr, " ret code = %s,",
5416 tree_code_name[ (int)TREE_CODE (ret_type) ]);
5417 }
5418
6a4cee5f
MM
5419 if (cum->call_cookie & CALL_LONG)
5420 fprintf (stderr, " longcall,");
5421
4697a36c
MM
5422 fprintf (stderr, " proto = %d, nargs = %d\n",
5423 cum->prototype, cum->nargs_prototype);
5424 }
f676971a 5425
c4ad648e
AM
5426 if (fntype
5427 && !TARGET_ALTIVEC
5428 && TARGET_ALTIVEC_ABI
5429 && ALTIVEC_VECTOR_MODE (TYPE_MODE (TREE_TYPE (fntype))))
5430 {
c85ce869 5431 error ("cannot return value in vector register because"
c4ad648e 5432 " altivec instructions are disabled, use -maltivec"
c85ce869 5433 " to enable them");
c4ad648e 5434 }
4697a36c
MM
5435}
5436\f
fe984136
RH
5437/* Return true if TYPE must be passed on the stack and not in registers. */
5438
5439static bool
586de218 5440rs6000_must_pass_in_stack (enum machine_mode mode, const_tree type)
fe984136
RH
5441{
5442 if (DEFAULT_ABI == ABI_AIX || TARGET_64BIT)
5443 return must_pass_in_stack_var_size (mode, type);
5444 else
5445 return must_pass_in_stack_var_size_or_pad (mode, type);
5446}
5447
c229cba9
DE
5448/* If defined, a C expression which determines whether, and in which
5449 direction, to pad out an argument with extra space. The value
5450 should be of type `enum direction': either `upward' to pad above
5451 the argument, `downward' to pad below, or `none' to inhibit
5452 padding.
5453
5454 For the AIX ABI structs are always stored left shifted in their
5455 argument slot. */
5456
9ebbca7d 5457enum direction
586de218 5458function_arg_padding (enum machine_mode mode, const_tree type)
c229cba9 5459{
6e985040
AM
5460#ifndef AGGREGATE_PADDING_FIXED
5461#define AGGREGATE_PADDING_FIXED 0
5462#endif
5463#ifndef AGGREGATES_PAD_UPWARD_ALWAYS
5464#define AGGREGATES_PAD_UPWARD_ALWAYS 0
5465#endif
5466
5467 if (!AGGREGATE_PADDING_FIXED)
5468 {
5469 /* GCC used to pass structures of the same size as integer types as
5470 if they were in fact integers, ignoring FUNCTION_ARG_PADDING.
19525b57 5471 i.e. Structures of size 1 or 2 (or 4 when TARGET_64BIT) were
6e985040
AM
5472 passed padded downward, except that -mstrict-align further
5473 muddied the water in that multi-component structures of 2 and 4
5474 bytes in size were passed padded upward.
5475
5476 The following arranges for best compatibility with previous
5477 versions of gcc, but removes the -mstrict-align dependency. */
5478 if (BYTES_BIG_ENDIAN)
5479 {
5480 HOST_WIDE_INT size = 0;
5481
5482 if (mode == BLKmode)
5483 {
5484 if (type && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST)
5485 size = int_size_in_bytes (type);
5486 }
5487 else
5488 size = GET_MODE_SIZE (mode);
5489
5490 if (size == 1 || size == 2 || size == 4)
5491 return downward;
5492 }
5493 return upward;
5494 }
5495
5496 if (AGGREGATES_PAD_UPWARD_ALWAYS)
5497 {
5498 if (type != 0 && AGGREGATE_TYPE_P (type))
5499 return upward;
5500 }
c229cba9 5501
d3704c46
KH
5502 /* Fall back to the default. */
5503 return DEFAULT_FUNCTION_ARG_PADDING (mode, type);
c229cba9
DE
5504}
5505
b6c9286a 5506/* If defined, a C expression that gives the alignment boundary, in bits,
f676971a 5507 of an argument with the specified mode and type. If it is not defined,
b6c9286a 5508 PARM_BOUNDARY is used for all arguments.
f676971a 5509
84e9ad15
AM
5510 V.4 wants long longs and doubles to be double word aligned. Just
5511 testing the mode size is a boneheaded way to do this as it means
5512 that other types such as complex int are also double word aligned.
5513 However, we're stuck with this because changing the ABI might break
5514 existing library interfaces.
5515
b693336b
PB
5516 Doubleword align SPE vectors.
5517 Quadword align Altivec vectors.
5518 Quadword align large synthetic vector types. */
b6c9286a
MM
5519
5520int
b693336b 5521function_arg_boundary (enum machine_mode mode, tree type)
b6c9286a 5522{
84e9ad15
AM
5523 if (DEFAULT_ABI == ABI_V4
5524 && (GET_MODE_SIZE (mode) == 8
5525 || (TARGET_HARD_FLOAT
5526 && TARGET_FPRS
7393f7f8 5527 && (mode == TFmode || mode == TDmode))))
4ed78545 5528 return 64;
ad630bef
DE
5529 else if (SPE_VECTOR_MODE (mode)
5530 || (type && TREE_CODE (type) == VECTOR_TYPE
5531 && int_size_in_bytes (type) >= 8
5532 && int_size_in_bytes (type) < 16))
e1f83b4d 5533 return 64;
ad630bef
DE
5534 else if (ALTIVEC_VECTOR_MODE (mode)
5535 || (type && TREE_CODE (type) == VECTOR_TYPE
5536 && int_size_in_bytes (type) >= 16))
0ac081f6 5537 return 128;
0b5383eb
DJ
5538 else if (rs6000_darwin64_abi && mode == BLKmode
5539 && type && TYPE_ALIGN (type) > 64)
5540 return 128;
9ebbca7d 5541 else
b6c9286a 5542 return PARM_BOUNDARY;
b6c9286a 5543}
c53bdcf5 5544
294bd182
AM
5545/* For a function parm of MODE and TYPE, return the starting word in
5546 the parameter area. NWORDS of the parameter area are already used. */
5547
5548static unsigned int
5549rs6000_parm_start (enum machine_mode mode, tree type, unsigned int nwords)
5550{
5551 unsigned int align;
5552 unsigned int parm_offset;
5553
5554 align = function_arg_boundary (mode, type) / PARM_BOUNDARY - 1;
5555 parm_offset = DEFAULT_ABI == ABI_V4 ? 2 : 6;
5556 return nwords + (-(parm_offset + nwords) & align);
5557}
5558
c53bdcf5
AM
5559/* Compute the size (in words) of a function argument. */
5560
5561static unsigned long
5562rs6000_arg_size (enum machine_mode mode, tree type)
5563{
5564 unsigned long size;
5565
5566 if (mode != BLKmode)
5567 size = GET_MODE_SIZE (mode);
5568 else
5569 size = int_size_in_bytes (type);
5570
5571 if (TARGET_32BIT)
5572 return (size + 3) >> 2;
5573 else
5574 return (size + 7) >> 3;
5575}
b6c9286a 5576\f
0b5383eb 5577/* Use this to flush pending int fields. */
594a51fe
SS
5578
5579static void
0b5383eb
DJ
5580rs6000_darwin64_record_arg_advance_flush (CUMULATIVE_ARGS *cum,
5581 HOST_WIDE_INT bitpos)
594a51fe 5582{
0b5383eb
DJ
5583 unsigned int startbit, endbit;
5584 int intregs, intoffset;
5585 enum machine_mode mode;
594a51fe 5586
0b5383eb
DJ
5587 if (cum->intoffset == -1)
5588 return;
594a51fe 5589
0b5383eb
DJ
5590 intoffset = cum->intoffset;
5591 cum->intoffset = -1;
5592
5593 if (intoffset % BITS_PER_WORD != 0)
5594 {
5595 mode = mode_for_size (BITS_PER_WORD - intoffset % BITS_PER_WORD,
5596 MODE_INT, 0);
5597 if (mode == BLKmode)
594a51fe 5598 {
0b5383eb
DJ
5599 /* We couldn't find an appropriate mode, which happens,
5600 e.g., in packed structs when there are 3 bytes to load.
5601 Back intoffset back to the beginning of the word in this
5602 case. */
5603 intoffset = intoffset & -BITS_PER_WORD;
594a51fe 5604 }
594a51fe 5605 }
0b5383eb
DJ
5606
5607 startbit = intoffset & -BITS_PER_WORD;
5608 endbit = (bitpos + BITS_PER_WORD - 1) & -BITS_PER_WORD;
5609 intregs = (endbit - startbit) / BITS_PER_WORD;
5610 cum->words += intregs;
5611}
5612
5613/* The darwin64 ABI calls for us to recurse down through structs,
5614 looking for elements passed in registers. Unfortunately, we have
5615 to track int register count here also because of misalignments
5616 in powerpc alignment mode. */
5617
5618static void
5619rs6000_darwin64_record_arg_advance_recurse (CUMULATIVE_ARGS *cum,
5620 tree type,
5621 HOST_WIDE_INT startbitpos)
5622{
5623 tree f;
5624
5625 for (f = TYPE_FIELDS (type); f ; f = TREE_CHAIN (f))
5626 if (TREE_CODE (f) == FIELD_DECL)
5627 {
5628 HOST_WIDE_INT bitpos = startbitpos;
5629 tree ftype = TREE_TYPE (f);
70fb00df
AP
5630 enum machine_mode mode;
5631 if (ftype == error_mark_node)
5632 continue;
5633 mode = TYPE_MODE (ftype);
0b5383eb
DJ
5634
5635 if (DECL_SIZE (f) != 0
5636 && host_integerp (bit_position (f), 1))
5637 bitpos += int_bit_position (f);
5638
5639 /* ??? FIXME: else assume zero offset. */
5640
5641 if (TREE_CODE (ftype) == RECORD_TYPE)
5642 rs6000_darwin64_record_arg_advance_recurse (cum, ftype, bitpos);
5643 else if (USE_FP_FOR_ARG_P (cum, mode, ftype))
5644 {
5645 rs6000_darwin64_record_arg_advance_flush (cum, bitpos);
5646 cum->fregno += (GET_MODE_SIZE (mode) + 7) >> 3;
5647 cum->words += (GET_MODE_SIZE (mode) + 7) >> 3;
5648 }
5649 else if (USE_ALTIVEC_FOR_ARG_P (cum, mode, type, 1))
5650 {
5651 rs6000_darwin64_record_arg_advance_flush (cum, bitpos);
5652 cum->vregno++;
5653 cum->words += 2;
5654 }
5655 else if (cum->intoffset == -1)
5656 cum->intoffset = bitpos;
5657 }
594a51fe
SS
5658}
5659
4697a36c
MM
5660/* Update the data in CUM to advance over an argument
5661 of mode MODE and data type TYPE.
b2d04ecf
AM
5662 (TYPE is null for libcalls where that information may not be available.)
5663
5664 Note that for args passed by reference, function_arg will be called
5665 with MODE and TYPE set to that of the pointer to the arg, not the arg
5666 itself. */
4697a36c
MM
5667
5668void
f676971a 5669function_arg_advance (CUMULATIVE_ARGS *cum, enum machine_mode mode,
594a51fe 5670 tree type, int named, int depth)
4697a36c 5671{
0b5383eb
DJ
5672 int size;
5673
594a51fe
SS
5674 /* Only tick off an argument if we're not recursing. */
5675 if (depth == 0)
5676 cum->nargs_prototype--;
4697a36c 5677
ad630bef
DE
5678 if (TARGET_ALTIVEC_ABI
5679 && (ALTIVEC_VECTOR_MODE (mode)
5680 || (type && TREE_CODE (type) == VECTOR_TYPE
5681 && int_size_in_bytes (type) == 16)))
0ac081f6 5682 {
4ed78545
AM
5683 bool stack = false;
5684
2858f73a 5685 if (USE_ALTIVEC_FOR_ARG_P (cum, mode, type, named))
c4ad648e 5686 {
6d0ef01e
HP
5687 cum->vregno++;
5688 if (!TARGET_ALTIVEC)
c85ce869 5689 error ("cannot pass argument in vector register because"
6d0ef01e 5690 " altivec instructions are disabled, use -maltivec"
c85ce869 5691 " to enable them");
4ed78545
AM
5692
5693 /* PowerPC64 Linux and AIX allocate GPRs for a vector argument
f676971a 5694 even if it is going to be passed in a vector register.
4ed78545
AM
5695 Darwin does the same for variable-argument functions. */
5696 if ((DEFAULT_ABI == ABI_AIX && TARGET_64BIT)
5697 || (cum->stdarg && DEFAULT_ABI != ABI_V4))
5698 stack = true;
6d0ef01e 5699 }
4ed78545
AM
5700 else
5701 stack = true;
5702
5703 if (stack)
c4ad648e 5704 {
a594a19c 5705 int align;
f676971a 5706
2858f73a
GK
5707 /* Vector parameters must be 16-byte aligned. This places
5708 them at 2 mod 4 in terms of words in 32-bit mode, since
5709 the parameter save area starts at offset 24 from the
5710 stack. In 64-bit mode, they just have to start on an
5711 even word, since the parameter save area is 16-byte
5712 aligned. Space for GPRs is reserved even if the argument
5713 will be passed in memory. */
5714 if (TARGET_32BIT)
4ed78545 5715 align = (2 - cum->words) & 3;
2858f73a
GK
5716 else
5717 align = cum->words & 1;
c53bdcf5 5718 cum->words += align + rs6000_arg_size (mode, type);
f676971a 5719
a594a19c
GK
5720 if (TARGET_DEBUG_ARG)
5721 {
f676971a 5722 fprintf (stderr, "function_adv: words = %2d, align=%d, ",
a594a19c
GK
5723 cum->words, align);
5724 fprintf (stderr, "nargs = %4d, proto = %d, mode = %4s\n",
f676971a 5725 cum->nargs_prototype, cum->prototype,
2858f73a 5726 GET_MODE_NAME (mode));
a594a19c
GK
5727 }
5728 }
0ac081f6 5729 }
a4b0320c 5730 else if (TARGET_SPE_ABI && TARGET_SPE && SPE_VECTOR_MODE (mode)
a6c9bed4
AH
5731 && !cum->stdarg
5732 && cum->sysv_gregno <= GP_ARG_MAX_REG)
a4b0320c 5733 cum->sysv_gregno++;
594a51fe
SS
5734
5735 else if (rs6000_darwin64_abi
5736 && mode == BLKmode
0b5383eb
DJ
5737 && TREE_CODE (type) == RECORD_TYPE
5738 && (size = int_size_in_bytes (type)) > 0)
5739 {
5740 /* Variable sized types have size == -1 and are
5741 treated as if consisting entirely of ints.
5742 Pad to 16 byte boundary if needed. */
5743 if (TYPE_ALIGN (type) >= 2 * BITS_PER_WORD
5744 && (cum->words % 2) != 0)
5745 cum->words++;
5746 /* For varargs, we can just go up by the size of the struct. */
5747 if (!named)
5748 cum->words += (size + 7) / 8;
5749 else
5750 {
5751 /* It is tempting to say int register count just goes up by
5752 sizeof(type)/8, but this is wrong in a case such as
5753 { int; double; int; } [powerpc alignment]. We have to
5754 grovel through the fields for these too. */
5755 cum->intoffset = 0;
5756 rs6000_darwin64_record_arg_advance_recurse (cum, type, 0);
bb8df8a6 5757 rs6000_darwin64_record_arg_advance_flush (cum,
0b5383eb
DJ
5758 size * BITS_PER_UNIT);
5759 }
5760 }
f607bc57 5761 else if (DEFAULT_ABI == ABI_V4)
4697a36c 5762 {
a3170dc6 5763 if (TARGET_HARD_FLOAT && TARGET_FPRS
56f4cc04
DE
5764 && ((TARGET_SINGLE_FLOAT && mode == SFmode)
5765 || (TARGET_DOUBLE_FLOAT && mode == DFmode)
5766 || (mode == TFmode && !TARGET_IEEEQUAD)
5767 || mode == SDmode || mode == DDmode || mode == TDmode))
4697a36c 5768 {
2d83f070
JJ
5769 /* _Decimal128 must use an even/odd register pair. This assumes
5770 that the register number is odd when fregno is odd. */
5771 if (mode == TDmode && (cum->fregno % 2) == 1)
7393f7f8
BE
5772 cum->fregno++;
5773
5774 if (cum->fregno + (mode == TFmode || mode == TDmode ? 1 : 0)
5775 <= FP_ARG_V4_MAX_REG)
602ea4d3 5776 cum->fregno += (GET_MODE_SIZE (mode) + 7) >> 3;
4cc833b7
RH
5777 else
5778 {
602ea4d3 5779 cum->fregno = FP_ARG_V4_MAX_REG + 1;
4d4447b5
PB
5780 if (mode == DFmode || mode == TFmode
5781 || mode == DDmode || mode == TDmode)
c4ad648e 5782 cum->words += cum->words & 1;
c53bdcf5 5783 cum->words += rs6000_arg_size (mode, type);
4cc833b7 5784 }
4697a36c 5785 }
4cc833b7
RH
5786 else
5787 {
b2d04ecf 5788 int n_words = rs6000_arg_size (mode, type);
4cc833b7
RH
5789 int gregno = cum->sysv_gregno;
5790
4ed78545
AM
5791 /* Long long and SPE vectors are put in (r3,r4), (r5,r6),
5792 (r7,r8) or (r9,r10). As does any other 2 word item such
5793 as complex int due to a historical mistake. */
5794 if (n_words == 2)
5795 gregno += (1 - gregno) & 1;
4cc833b7 5796
4ed78545 5797 /* Multi-reg args are not split between registers and stack. */
4cc833b7
RH
5798 if (gregno + n_words - 1 > GP_ARG_MAX_REG)
5799 {
4ed78545
AM
5800 /* Long long and SPE vectors are aligned on the stack.
5801 So are other 2 word items such as complex int due to
5802 a historical mistake. */
4cc833b7
RH
5803 if (n_words == 2)
5804 cum->words += cum->words & 1;
5805 cum->words += n_words;
5806 }
4697a36c 5807
4cc833b7
RH
5808 /* Note: continuing to accumulate gregno past when we've started
5809 spilling to the stack indicates the fact that we've started
5810 spilling to the stack to expand_builtin_saveregs. */
5811 cum->sysv_gregno = gregno + n_words;
5812 }
4697a36c 5813
4cc833b7
RH
5814 if (TARGET_DEBUG_ARG)
5815 {
5816 fprintf (stderr, "function_adv: words = %2d, fregno = %2d, ",
5817 cum->words, cum->fregno);
5818 fprintf (stderr, "gregno = %2d, nargs = %4d, proto = %d, ",
5819 cum->sysv_gregno, cum->nargs_prototype, cum->prototype);
5820 fprintf (stderr, "mode = %4s, named = %d\n",
5821 GET_MODE_NAME (mode), named);
5822 }
4697a36c
MM
5823 }
5824 else
4cc833b7 5825 {
b2d04ecf 5826 int n_words = rs6000_arg_size (mode, type);
294bd182
AM
5827 int start_words = cum->words;
5828 int align_words = rs6000_parm_start (mode, type, start_words);
a4f6c312 5829
294bd182 5830 cum->words = align_words + n_words;
4697a36c 5831
ebb109ad 5832 if (SCALAR_FLOAT_MODE_P (mode)
56f4cc04 5833 && TARGET_HARD_FLOAT && TARGET_FPRS)
2d83f070
JJ
5834 {
5835 /* _Decimal128 must be passed in an even/odd float register pair.
5836 This assumes that the register number is odd when fregno is
5837 odd. */
5838 if (mode == TDmode && (cum->fregno % 2) == 1)
5839 cum->fregno++;
5840 cum->fregno += (GET_MODE_SIZE (mode) + 7) >> 3;
5841 }
4cc833b7
RH
5842
5843 if (TARGET_DEBUG_ARG)
5844 {
5845 fprintf (stderr, "function_adv: words = %2d, fregno = %2d, ",
5846 cum->words, cum->fregno);
5847 fprintf (stderr, "nargs = %4d, proto = %d, mode = %4s, ",
5848 cum->nargs_prototype, cum->prototype, GET_MODE_NAME (mode));
594a51fe 5849 fprintf (stderr, "named = %d, align = %d, depth = %d\n",
294bd182 5850 named, align_words - start_words, depth);
4cc833b7
RH
5851 }
5852 }
4697a36c 5853}
a6c9bed4 5854
f82f556d
AH
5855static rtx
5856spe_build_register_parallel (enum machine_mode mode, int gregno)
5857{
17caeff2 5858 rtx r1, r3, r5, r7;
f82f556d 5859
37409796 5860 switch (mode)
f82f556d 5861 {
37409796 5862 case DFmode:
54b695e7
AH
5863 r1 = gen_rtx_REG (DImode, gregno);
5864 r1 = gen_rtx_EXPR_LIST (VOIDmode, r1, const0_rtx);
5865 return gen_rtx_PARALLEL (mode, gen_rtvec (1, r1));
37409796
NS
5866
5867 case DCmode:
17caeff2 5868 case TFmode:
54b695e7
AH
5869 r1 = gen_rtx_REG (DImode, gregno);
5870 r1 = gen_rtx_EXPR_LIST (VOIDmode, r1, const0_rtx);
5871 r3 = gen_rtx_REG (DImode, gregno + 2);
5872 r3 = gen_rtx_EXPR_LIST (VOIDmode, r3, GEN_INT (8));
5873 return gen_rtx_PARALLEL (mode, gen_rtvec (2, r1, r3));
37409796 5874
17caeff2
JM
5875 case TCmode:
5876 r1 = gen_rtx_REG (DImode, gregno);
5877 r1 = gen_rtx_EXPR_LIST (VOIDmode, r1, const0_rtx);
5878 r3 = gen_rtx_REG (DImode, gregno + 2);
5879 r3 = gen_rtx_EXPR_LIST (VOIDmode, r3, GEN_INT (8));
5880 r5 = gen_rtx_REG (DImode, gregno + 4);
5881 r5 = gen_rtx_EXPR_LIST (VOIDmode, r5, GEN_INT (16));
5882 r7 = gen_rtx_REG (DImode, gregno + 6);
5883 r7 = gen_rtx_EXPR_LIST (VOIDmode, r7, GEN_INT (24));
5884 return gen_rtx_PARALLEL (mode, gen_rtvec (4, r1, r3, r5, r7));
5885
37409796
NS
5886 default:
5887 gcc_unreachable ();
f82f556d 5888 }
f82f556d 5889}
b78d48dd 5890
f82f556d 5891/* Determine where to put a SIMD argument on the SPE. */
a6c9bed4 5892static rtx
f676971a 5893rs6000_spe_function_arg (CUMULATIVE_ARGS *cum, enum machine_mode mode,
a2369ed3 5894 tree type)
a6c9bed4 5895{
f82f556d
AH
5896 int gregno = cum->sysv_gregno;
5897
5898 /* On E500 v2, double arithmetic is done on the full 64-bit GPR, but
600e1f95 5899 are passed and returned in a pair of GPRs for ABI compatibility. */
4d4447b5 5900 if (TARGET_E500_DOUBLE && (mode == DFmode || mode == TFmode
4d4447b5 5901 || mode == DCmode || mode == TCmode))
f82f556d 5902 {
b5870bee
AH
5903 int n_words = rs6000_arg_size (mode, type);
5904
f82f556d 5905 /* Doubles go in an odd/even register pair (r5/r6, etc). */
4f011e1e 5906 if (mode == DFmode)
b5870bee 5907 gregno += (1 - gregno) & 1;
f82f556d 5908
b5870bee
AH
5909 /* Multi-reg args are not split between registers and stack. */
5910 if (gregno + n_words - 1 > GP_ARG_MAX_REG)
f82f556d
AH
5911 return NULL_RTX;
5912
5913 return spe_build_register_parallel (mode, gregno);
5914 }
a6c9bed4
AH
5915 if (cum->stdarg)
5916 {
c53bdcf5 5917 int n_words = rs6000_arg_size (mode, type);
a6c9bed4
AH
5918
5919 /* SPE vectors are put in odd registers. */
5920 if (n_words == 2 && (gregno & 1) == 0)
5921 gregno += 1;
5922
5923 if (gregno + n_words - 1 <= GP_ARG_MAX_REG)
5924 {
5925 rtx r1, r2;
5926 enum machine_mode m = SImode;
5927
5928 r1 = gen_rtx_REG (m, gregno);
5929 r1 = gen_rtx_EXPR_LIST (m, r1, const0_rtx);
5930 r2 = gen_rtx_REG (m, gregno + 1);
5931 r2 = gen_rtx_EXPR_LIST (m, r2, GEN_INT (4));
5932 return gen_rtx_PARALLEL (mode, gen_rtvec (2, r1, r2));
5933 }
5934 else
b78d48dd 5935 return NULL_RTX;
a6c9bed4
AH
5936 }
5937 else
5938 {
f82f556d
AH
5939 if (gregno <= GP_ARG_MAX_REG)
5940 return gen_rtx_REG (mode, gregno);
a6c9bed4 5941 else
b78d48dd 5942 return NULL_RTX;
a6c9bed4
AH
5943 }
5944}
5945
0b5383eb
DJ
5946/* A subroutine of rs6000_darwin64_record_arg. Assign the bits of the
5947 structure between cum->intoffset and bitpos to integer registers. */
594a51fe 5948
0b5383eb 5949static void
bb8df8a6 5950rs6000_darwin64_record_arg_flush (CUMULATIVE_ARGS *cum,
0b5383eb 5951 HOST_WIDE_INT bitpos, rtx rvec[], int *k)
594a51fe 5952{
0b5383eb
DJ
5953 enum machine_mode mode;
5954 unsigned int regno;
5955 unsigned int startbit, endbit;
5956 int this_regno, intregs, intoffset;
5957 rtx reg;
594a51fe 5958
0b5383eb
DJ
5959 if (cum->intoffset == -1)
5960 return;
5961
5962 intoffset = cum->intoffset;
5963 cum->intoffset = -1;
5964
5965 /* If this is the trailing part of a word, try to only load that
5966 much into the register. Otherwise load the whole register. Note
5967 that in the latter case we may pick up unwanted bits. It's not a
5968 problem at the moment but may wish to revisit. */
5969
5970 if (intoffset % BITS_PER_WORD != 0)
594a51fe 5971 {
0b5383eb
DJ
5972 mode = mode_for_size (BITS_PER_WORD - intoffset % BITS_PER_WORD,
5973 MODE_INT, 0);
5974 if (mode == BLKmode)
5975 {
5976 /* We couldn't find an appropriate mode, which happens,
5977 e.g., in packed structs when there are 3 bytes to load.
5978 Back intoffset back to the beginning of the word in this
5979 case. */
5980 intoffset = intoffset & -BITS_PER_WORD;
5981 mode = word_mode;
5982 }
5983 }
5984 else
5985 mode = word_mode;
5986
5987 startbit = intoffset & -BITS_PER_WORD;
5988 endbit = (bitpos + BITS_PER_WORD - 1) & -BITS_PER_WORD;
5989 intregs = (endbit - startbit) / BITS_PER_WORD;
5990 this_regno = cum->words + intoffset / BITS_PER_WORD;
5991
5992 if (intregs > 0 && intregs > GP_ARG_NUM_REG - this_regno)
5993 cum->use_stack = 1;
bb8df8a6 5994
0b5383eb
DJ
5995 intregs = MIN (intregs, GP_ARG_NUM_REG - this_regno);
5996 if (intregs <= 0)
5997 return;
5998
5999 intoffset /= BITS_PER_UNIT;
6000 do
6001 {
6002 regno = GP_ARG_MIN_REG + this_regno;
6003 reg = gen_rtx_REG (mode, regno);
6004 rvec[(*k)++] =
6005 gen_rtx_EXPR_LIST (VOIDmode, reg, GEN_INT (intoffset));
6006
6007 this_regno += 1;
6008 intoffset = (intoffset | (UNITS_PER_WORD-1)) + 1;
6009 mode = word_mode;
6010 intregs -= 1;
6011 }
6012 while (intregs > 0);
6013}
6014
6015/* Recursive workhorse for the following. */
6016
6017static void
586de218 6018rs6000_darwin64_record_arg_recurse (CUMULATIVE_ARGS *cum, const_tree type,
0b5383eb
DJ
6019 HOST_WIDE_INT startbitpos, rtx rvec[],
6020 int *k)
6021{
6022 tree f;
6023
6024 for (f = TYPE_FIELDS (type); f ; f = TREE_CHAIN (f))
6025 if (TREE_CODE (f) == FIELD_DECL)
6026 {
6027 HOST_WIDE_INT bitpos = startbitpos;
6028 tree ftype = TREE_TYPE (f);
70fb00df
AP
6029 enum machine_mode mode;
6030 if (ftype == error_mark_node)
6031 continue;
6032 mode = TYPE_MODE (ftype);
0b5383eb
DJ
6033
6034 if (DECL_SIZE (f) != 0
6035 && host_integerp (bit_position (f), 1))
6036 bitpos += int_bit_position (f);
6037
6038 /* ??? FIXME: else assume zero offset. */
6039
6040 if (TREE_CODE (ftype) == RECORD_TYPE)
6041 rs6000_darwin64_record_arg_recurse (cum, ftype, bitpos, rvec, k);
6042 else if (cum->named && USE_FP_FOR_ARG_P (cum, mode, ftype))
594a51fe 6043 {
0b5383eb
DJ
6044#if 0
6045 switch (mode)
594a51fe 6046 {
0b5383eb
DJ
6047 case SCmode: mode = SFmode; break;
6048 case DCmode: mode = DFmode; break;
6049 case TCmode: mode = TFmode; break;
6050 default: break;
594a51fe 6051 }
0b5383eb
DJ
6052#endif
6053 rs6000_darwin64_record_arg_flush (cum, bitpos, rvec, k);
6054 rvec[(*k)++]
bb8df8a6 6055 = gen_rtx_EXPR_LIST (VOIDmode,
0b5383eb
DJ
6056 gen_rtx_REG (mode, cum->fregno++),
6057 GEN_INT (bitpos / BITS_PER_UNIT));
7393f7f8 6058 if (mode == TFmode || mode == TDmode)
0b5383eb 6059 cum->fregno++;
594a51fe 6060 }
0b5383eb
DJ
6061 else if (cum->named && USE_ALTIVEC_FOR_ARG_P (cum, mode, ftype, 1))
6062 {
6063 rs6000_darwin64_record_arg_flush (cum, bitpos, rvec, k);
6064 rvec[(*k)++]
bb8df8a6
EC
6065 = gen_rtx_EXPR_LIST (VOIDmode,
6066 gen_rtx_REG (mode, cum->vregno++),
0b5383eb
DJ
6067 GEN_INT (bitpos / BITS_PER_UNIT));
6068 }
6069 else if (cum->intoffset == -1)
6070 cum->intoffset = bitpos;
6071 }
6072}
594a51fe 6073
0b5383eb
DJ
6074/* For the darwin64 ABI, we want to construct a PARALLEL consisting of
6075 the register(s) to be used for each field and subfield of a struct
6076 being passed by value, along with the offset of where the
6077 register's value may be found in the block. FP fields go in FP
6078 register, vector fields go in vector registers, and everything
bb8df8a6 6079 else goes in int registers, packed as in memory.
8ff40a74 6080
0b5383eb
DJ
6081 This code is also used for function return values. RETVAL indicates
6082 whether this is the case.
8ff40a74 6083
a4d05547 6084 Much of this is taken from the SPARC V9 port, which has a similar
0b5383eb 6085 calling convention. */
594a51fe 6086
0b5383eb 6087static rtx
586de218 6088rs6000_darwin64_record_arg (CUMULATIVE_ARGS *orig_cum, const_tree type,
0b5383eb
DJ
6089 int named, bool retval)
6090{
6091 rtx rvec[FIRST_PSEUDO_REGISTER];
6092 int k = 1, kbase = 1;
6093 HOST_WIDE_INT typesize = int_size_in_bytes (type);
6094 /* This is a copy; modifications are not visible to our caller. */
6095 CUMULATIVE_ARGS copy_cum = *orig_cum;
6096 CUMULATIVE_ARGS *cum = &copy_cum;
6097
6098 /* Pad to 16 byte boundary if needed. */
6099 if (!retval && TYPE_ALIGN (type) >= 2 * BITS_PER_WORD
6100 && (cum->words % 2) != 0)
6101 cum->words++;
6102
6103 cum->intoffset = 0;
6104 cum->use_stack = 0;
6105 cum->named = named;
6106
6107 /* Put entries into rvec[] for individual FP and vector fields, and
6108 for the chunks of memory that go in int regs. Note we start at
6109 element 1; 0 is reserved for an indication of using memory, and
6110 may or may not be filled in below. */
6111 rs6000_darwin64_record_arg_recurse (cum, type, 0, rvec, &k);
6112 rs6000_darwin64_record_arg_flush (cum, typesize * BITS_PER_UNIT, rvec, &k);
6113
6114 /* If any part of the struct went on the stack put all of it there.
6115 This hack is because the generic code for
6116 FUNCTION_ARG_PARTIAL_NREGS cannot handle cases where the register
6117 parts of the struct are not at the beginning. */
6118 if (cum->use_stack)
6119 {
6120 if (retval)
6121 return NULL_RTX; /* doesn't go in registers at all */
6122 kbase = 0;
6123 rvec[0] = gen_rtx_EXPR_LIST (VOIDmode, NULL_RTX, const0_rtx);
6124 }
6125 if (k > 1 || cum->use_stack)
6126 return gen_rtx_PARALLEL (BLKmode, gen_rtvec_v (k - kbase, &rvec[kbase]));
594a51fe
SS
6127 else
6128 return NULL_RTX;
6129}
6130
b78d48dd
FJ
6131/* Determine where to place an argument in 64-bit mode with 32-bit ABI. */
6132
6133static rtx
ec6376ab 6134rs6000_mixed_function_arg (enum machine_mode mode, tree type, int align_words)
b78d48dd 6135{
ec6376ab
AM
6136 int n_units;
6137 int i, k;
6138 rtx rvec[GP_ARG_NUM_REG + 1];
6139
6140 if (align_words >= GP_ARG_NUM_REG)
6141 return NULL_RTX;
6142
6143 n_units = rs6000_arg_size (mode, type);
6144
6145 /* Optimize the simple case where the arg fits in one gpr, except in
6146 the case of BLKmode due to assign_parms assuming that registers are
6147 BITS_PER_WORD wide. */
6148 if (n_units == 0
6149 || (n_units == 1 && mode != BLKmode))
6150 return gen_rtx_REG (mode, GP_ARG_MIN_REG + align_words);
6151
6152 k = 0;
6153 if (align_words + n_units > GP_ARG_NUM_REG)
6154 /* Not all of the arg fits in gprs. Say that it goes in memory too,
6155 using a magic NULL_RTX component.
79773478
AM
6156 This is not strictly correct. Only some of the arg belongs in
6157 memory, not all of it. However, the normal scheme using
6158 function_arg_partial_nregs can result in unusual subregs, eg.
6159 (subreg:SI (reg:DF) 4), which are not handled well. The code to
6160 store the whole arg to memory is often more efficient than code
6161 to store pieces, and we know that space is available in the right
6162 place for the whole arg. */
ec6376ab
AM
6163 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, NULL_RTX, const0_rtx);
6164
6165 i = 0;
6166 do
36a454e1 6167 {
ec6376ab
AM
6168 rtx r = gen_rtx_REG (SImode, GP_ARG_MIN_REG + align_words);
6169 rtx off = GEN_INT (i++ * 4);
6170 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, r, off);
36a454e1 6171 }
ec6376ab
AM
6172 while (++align_words < GP_ARG_NUM_REG && --n_units != 0);
6173
6174 return gen_rtx_PARALLEL (mode, gen_rtvec_v (k, rvec));
b78d48dd
FJ
6175}
6176
4697a36c
MM
6177/* Determine where to put an argument to a function.
6178 Value is zero to push the argument on the stack,
6179 or a hard register in which to store the argument.
6180
6181 MODE is the argument's machine mode.
6182 TYPE is the data type of the argument (as a tree).
6183 This is null for libcalls where that information may
6184 not be available.
6185 CUM is a variable of type CUMULATIVE_ARGS which gives info about
0b5383eb
DJ
6186 the preceding args and about the function being called. It is
6187 not modified in this routine.
4697a36c
MM
6188 NAMED is nonzero if this argument is a named parameter
6189 (otherwise it is an extra parameter matching an ellipsis).
6190
6191 On RS/6000 the first eight words of non-FP are normally in registers
6192 and the rest are pushed. Under AIX, the first 13 FP args are in registers.
6193 Under V.4, the first 8 FP args are in registers.
6194
6195 If this is floating-point and no prototype is specified, we use
6196 both an FP and integer register (or possibly FP reg and stack). Library
b9599e46 6197 functions (when CALL_LIBCALL is set) always have the proper types for args,
4697a36c 6198 so we can pass the FP value just in one register. emit_library_function
b2d04ecf
AM
6199 doesn't support PARALLEL anyway.
6200
6201 Note that for args passed by reference, function_arg will be called
6202 with MODE and TYPE set to that of the pointer to the arg, not the arg
6203 itself. */
4697a36c 6204
9390387d 6205rtx
f676971a 6206function_arg (CUMULATIVE_ARGS *cum, enum machine_mode mode,
a2369ed3 6207 tree type, int named)
4697a36c 6208{
4cc833b7 6209 enum rs6000_abi abi = DEFAULT_ABI;
4697a36c 6210
a4f6c312
SS
6211 /* Return a marker to indicate whether CR1 needs to set or clear the
6212 bit that V.4 uses to say fp args were passed in registers.
6213 Assume that we don't need the marker for software floating point,
6214 or compiler generated library calls. */
4697a36c
MM
6215 if (mode == VOIDmode)
6216 {
f607bc57 6217 if (abi == ABI_V4
b9599e46 6218 && (cum->call_cookie & CALL_LIBCALL) == 0
c1fa753e
AM
6219 && (cum->stdarg
6220 || (cum->nargs_prototype < 0
6221 && (cum->prototype || TARGET_NO_PROTOTYPE))))
7509c759 6222 {
a3170dc6
AH
6223 /* For the SPE, we need to crxor CR6 always. */
6224 if (TARGET_SPE_ABI)
6225 return GEN_INT (cum->call_cookie | CALL_V4_SET_FP_ARGS);
6226 else if (TARGET_HARD_FLOAT && TARGET_FPRS)
6227 return GEN_INT (cum->call_cookie
6228 | ((cum->fregno == FP_ARG_MIN_REG)
6229 ? CALL_V4_SET_FP_ARGS
6230 : CALL_V4_CLEAR_FP_ARGS));
7509c759 6231 }
4697a36c 6232
7509c759 6233 return GEN_INT (cum->call_cookie);
4697a36c
MM
6234 }
6235
0b5383eb
DJ
6236 if (rs6000_darwin64_abi && mode == BLKmode
6237 && TREE_CODE (type) == RECORD_TYPE)
8ff40a74 6238 {
0b5383eb 6239 rtx rslt = rs6000_darwin64_record_arg (cum, type, named, false);
8ff40a74
SS
6240 if (rslt != NULL_RTX)
6241 return rslt;
6242 /* Else fall through to usual handling. */
6243 }
6244
2858f73a 6245 if (USE_ALTIVEC_FOR_ARG_P (cum, mode, type, named))
c72d6c26
HP
6246 if (TARGET_64BIT && ! cum->prototype)
6247 {
c4ad648e
AM
6248 /* Vector parameters get passed in vector register
6249 and also in GPRs or memory, in absence of prototype. */
6250 int align_words;
6251 rtx slot;
6252 align_words = (cum->words + 1) & ~1;
6253
6254 if (align_words >= GP_ARG_NUM_REG)
6255 {
6256 slot = NULL_RTX;
6257 }
6258 else
6259 {
6260 slot = gen_rtx_REG (mode, GP_ARG_MIN_REG + align_words);
6261 }
6262 return gen_rtx_PARALLEL (mode,
6263 gen_rtvec (2,
6264 gen_rtx_EXPR_LIST (VOIDmode,
6265 slot, const0_rtx),
6266 gen_rtx_EXPR_LIST (VOIDmode,
6267 gen_rtx_REG (mode, cum->vregno),
6268 const0_rtx)));
c72d6c26
HP
6269 }
6270 else
6271 return gen_rtx_REG (mode, cum->vregno);
ad630bef
DE
6272 else if (TARGET_ALTIVEC_ABI
6273 && (ALTIVEC_VECTOR_MODE (mode)
6274 || (type && TREE_CODE (type) == VECTOR_TYPE
6275 && int_size_in_bytes (type) == 16)))
0ac081f6 6276 {
2858f73a 6277 if (named || abi == ABI_V4)
a594a19c 6278 return NULL_RTX;
0ac081f6 6279 else
a594a19c
GK
6280 {
6281 /* Vector parameters to varargs functions under AIX or Darwin
6282 get passed in memory and possibly also in GPRs. */
ec6376ab
AM
6283 int align, align_words, n_words;
6284 enum machine_mode part_mode;
a594a19c
GK
6285
6286 /* Vector parameters must be 16-byte aligned. This places them at
2858f73a
GK
6287 2 mod 4 in terms of words in 32-bit mode, since the parameter
6288 save area starts at offset 24 from the stack. In 64-bit mode,
6289 they just have to start on an even word, since the parameter
6290 save area is 16-byte aligned. */
6291 if (TARGET_32BIT)
4ed78545 6292 align = (2 - cum->words) & 3;
2858f73a
GK
6293 else
6294 align = cum->words & 1;
a594a19c
GK
6295 align_words = cum->words + align;
6296
6297 /* Out of registers? Memory, then. */
6298 if (align_words >= GP_ARG_NUM_REG)
6299 return NULL_RTX;
ec6376ab
AM
6300
6301 if (TARGET_32BIT && TARGET_POWERPC64)
6302 return rs6000_mixed_function_arg (mode, type, align_words);
6303
2858f73a
GK
6304 /* The vector value goes in GPRs. Only the part of the
6305 value in GPRs is reported here. */
ec6376ab
AM
6306 part_mode = mode;
6307 n_words = rs6000_arg_size (mode, type);
6308 if (align_words + n_words > GP_ARG_NUM_REG)
839a4992 6309 /* Fortunately, there are only two possibilities, the value
2858f73a
GK
6310 is either wholly in GPRs or half in GPRs and half not. */
6311 part_mode = DImode;
ec6376ab
AM
6312
6313 return gen_rtx_REG (part_mode, GP_ARG_MIN_REG + align_words);
a594a19c 6314 }
0ac081f6 6315 }
f82f556d
AH
6316 else if (TARGET_SPE_ABI && TARGET_SPE
6317 && (SPE_VECTOR_MODE (mode)
18f63bfa 6318 || (TARGET_E500_DOUBLE && (mode == DFmode
17caeff2
JM
6319 || mode == DCmode
6320 || mode == TFmode
6321 || mode == TCmode))))
a6c9bed4 6322 return rs6000_spe_function_arg (cum, mode, type);
594a51fe 6323
f607bc57 6324 else if (abi == ABI_V4)
4697a36c 6325 {
a3170dc6 6326 if (TARGET_HARD_FLOAT && TARGET_FPRS
56f4cc04
DE
6327 && ((TARGET_SINGLE_FLOAT && mode == SFmode)
6328 || (TARGET_DOUBLE_FLOAT && mode == DFmode)
cf8e1455
DE
6329 || (mode == TFmode && !TARGET_IEEEQUAD)
6330 || mode == SDmode || mode == DDmode || mode == TDmode))
4cc833b7 6331 {
2d83f070
JJ
6332 /* _Decimal128 must use an even/odd register pair. This assumes
6333 that the register number is odd when fregno is odd. */
6334 if (mode == TDmode && (cum->fregno % 2) == 1)
7393f7f8
BE
6335 cum->fregno++;
6336
6337 if (cum->fregno + (mode == TFmode || mode == TDmode ? 1 : 0)
6338 <= FP_ARG_V4_MAX_REG)
4cc833b7
RH
6339 return gen_rtx_REG (mode, cum->fregno);
6340 else
b78d48dd 6341 return NULL_RTX;
4cc833b7
RH
6342 }
6343 else
6344 {
b2d04ecf 6345 int n_words = rs6000_arg_size (mode, type);
4cc833b7
RH
6346 int gregno = cum->sysv_gregno;
6347
4ed78545
AM
6348 /* Long long and SPE vectors are put in (r3,r4), (r5,r6),
6349 (r7,r8) or (r9,r10). As does any other 2 word item such
6350 as complex int due to a historical mistake. */
6351 if (n_words == 2)
6352 gregno += (1 - gregno) & 1;
4cc833b7 6353
4ed78545 6354 /* Multi-reg args are not split between registers and stack. */
ec6376ab 6355 if (gregno + n_words - 1 > GP_ARG_MAX_REG)
b78d48dd 6356 return NULL_RTX;
ec6376ab
AM
6357
6358 if (TARGET_32BIT && TARGET_POWERPC64)
6359 return rs6000_mixed_function_arg (mode, type,
6360 gregno - GP_ARG_MIN_REG);
6361 return gen_rtx_REG (mode, gregno);
4cc833b7 6362 }
4697a36c 6363 }
4cc833b7
RH
6364 else
6365 {
294bd182 6366 int align_words = rs6000_parm_start (mode, type, cum->words);
b78d48dd 6367
2d83f070
JJ
6368 /* _Decimal128 must be passed in an even/odd float register pair.
6369 This assumes that the register number is odd when fregno is odd. */
6370 if (mode == TDmode && (cum->fregno % 2) == 1)
6371 cum->fregno++;
6372
2858f73a 6373 if (USE_FP_FOR_ARG_P (cum, mode, type))
4cc833b7 6374 {
ec6376ab
AM
6375 rtx rvec[GP_ARG_NUM_REG + 1];
6376 rtx r;
6377 int k;
c53bdcf5
AM
6378 bool needs_psave;
6379 enum machine_mode fmode = mode;
c53bdcf5
AM
6380 unsigned long n_fpreg = (GET_MODE_SIZE (mode) + 7) >> 3;
6381
6382 if (cum->fregno + n_fpreg > FP_ARG_MAX_REG + 1)
6383 {
c53bdcf5
AM
6384 /* Currently, we only ever need one reg here because complex
6385 doubles are split. */
7393f7f8
BE
6386 gcc_assert (cum->fregno == FP_ARG_MAX_REG
6387 && (fmode == TFmode || fmode == TDmode));
ec6376ab 6388
7393f7f8
BE
6389 /* Long double or _Decimal128 split over regs and memory. */
6390 fmode = DECIMAL_FLOAT_MODE_P (fmode) ? DDmode : DFmode;
c53bdcf5 6391 }
c53bdcf5
AM
6392
6393 /* Do we also need to pass this arg in the parameter save
6394 area? */
6395 needs_psave = (type
6396 && (cum->nargs_prototype <= 0
6397 || (DEFAULT_ABI == ABI_AIX
de17c25f 6398 && TARGET_XL_COMPAT
c53bdcf5
AM
6399 && align_words >= GP_ARG_NUM_REG)));
6400
6401 if (!needs_psave && mode == fmode)
ec6376ab 6402 return gen_rtx_REG (fmode, cum->fregno);
c53bdcf5 6403
ec6376ab 6404 k = 0;
c53bdcf5
AM
6405 if (needs_psave)
6406 {
ec6376ab 6407 /* Describe the part that goes in gprs or the stack.
c53bdcf5 6408 This piece must come first, before the fprs. */
c53bdcf5
AM
6409 if (align_words < GP_ARG_NUM_REG)
6410 {
6411 unsigned long n_words = rs6000_arg_size (mode, type);
ec6376ab
AM
6412
6413 if (align_words + n_words > GP_ARG_NUM_REG
6414 || (TARGET_32BIT && TARGET_POWERPC64))
6415 {
6416 /* If this is partially on the stack, then we only
6417 include the portion actually in registers here. */
6418 enum machine_mode rmode = TARGET_32BIT ? SImode : DImode;
6419 rtx off;
79773478
AM
6420 int i = 0;
6421 if (align_words + n_words > GP_ARG_NUM_REG)
c4ad648e
AM
6422 /* Not all of the arg fits in gprs. Say that it
6423 goes in memory too, using a magic NULL_RTX
6424 component. Also see comment in
6425 rs6000_mixed_function_arg for why the normal
6426 function_arg_partial_nregs scheme doesn't work
6427 in this case. */
6428 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, NULL_RTX,
6429 const0_rtx);
ec6376ab
AM
6430 do
6431 {
6432 r = gen_rtx_REG (rmode,
6433 GP_ARG_MIN_REG + align_words);
2e6c9641 6434 off = GEN_INT (i++ * GET_MODE_SIZE (rmode));
ec6376ab
AM
6435 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, r, off);
6436 }
6437 while (++align_words < GP_ARG_NUM_REG && --n_words != 0);
6438 }
6439 else
6440 {
6441 /* The whole arg fits in gprs. */
6442 r = gen_rtx_REG (mode, GP_ARG_MIN_REG + align_words);
6443 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, r, const0_rtx);
6444 }
c53bdcf5 6445 }
ec6376ab
AM
6446 else
6447 /* It's entirely in memory. */
6448 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, NULL_RTX, const0_rtx);
c53bdcf5
AM
6449 }
6450
ec6376ab
AM
6451 /* Describe where this piece goes in the fprs. */
6452 r = gen_rtx_REG (fmode, cum->fregno);
6453 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, r, const0_rtx);
6454
6455 return gen_rtx_PARALLEL (mode, gen_rtvec_v (k, rvec));
4cc833b7
RH
6456 }
6457 else if (align_words < GP_ARG_NUM_REG)
b2d04ecf 6458 {
ec6376ab
AM
6459 if (TARGET_32BIT && TARGET_POWERPC64)
6460 return rs6000_mixed_function_arg (mode, type, align_words);
b2d04ecf 6461
4eeca74f
AM
6462 if (mode == BLKmode)
6463 mode = Pmode;
6464
b2d04ecf
AM
6465 return gen_rtx_REG (mode, GP_ARG_MIN_REG + align_words);
6466 }
4cc833b7
RH
6467 else
6468 return NULL_RTX;
4697a36c 6469 }
4697a36c
MM
6470}
6471\f
ec6376ab 6472/* For an arg passed partly in registers and partly in memory, this is
fb63c729
AM
6473 the number of bytes passed in registers. For args passed entirely in
6474 registers or entirely in memory, zero. When an arg is described by a
6475 PARALLEL, perhaps using more than one register type, this function
6476 returns the number of bytes used by the first element of the PARALLEL. */
4697a36c 6477
78a52f11
RH
6478static int
6479rs6000_arg_partial_bytes (CUMULATIVE_ARGS *cum, enum machine_mode mode,
6480 tree type, bool named)
4697a36c 6481{
c53bdcf5 6482 int ret = 0;
ec6376ab 6483 int align_words;
c53bdcf5 6484
f607bc57 6485 if (DEFAULT_ABI == ABI_V4)
4697a36c 6486 return 0;
4697a36c 6487
c53bdcf5
AM
6488 if (USE_ALTIVEC_FOR_ARG_P (cum, mode, type, named)
6489 && cum->nargs_prototype >= 0)
6490 return 0;
6491
0b5383eb
DJ
6492 /* In this complicated case we just disable the partial_nregs code. */
6493 if (rs6000_darwin64_abi && mode == BLKmode
6494 && TREE_CODE (type) == RECORD_TYPE
6495 && int_size_in_bytes (type) > 0)
6496 return 0;
6497
294bd182 6498 align_words = rs6000_parm_start (mode, type, cum->words);
ec6376ab 6499
79773478
AM
6500 if (USE_FP_FOR_ARG_P (cum, mode, type))
6501 {
fb63c729
AM
6502 /* If we are passing this arg in the fixed parameter save area
6503 (gprs or memory) as well as fprs, then this function should
79773478
AM
6504 return the number of partial bytes passed in the parameter
6505 save area rather than partial bytes passed in fprs. */
6506 if (type
6507 && (cum->nargs_prototype <= 0
6508 || (DEFAULT_ABI == ABI_AIX
6509 && TARGET_XL_COMPAT
6510 && align_words >= GP_ARG_NUM_REG)))
6511 return 0;
6512 else if (cum->fregno + ((GET_MODE_SIZE (mode) + 7) >> 3)
6513 > FP_ARG_MAX_REG + 1)
ac7e839c 6514 ret = (FP_ARG_MAX_REG + 1 - cum->fregno) * 8;
c53bdcf5 6515 else if (cum->nargs_prototype >= 0)
4697a36c
MM
6516 return 0;
6517 }
6518
ec6376ab
AM
6519 if (align_words < GP_ARG_NUM_REG
6520 && GP_ARG_NUM_REG < align_words + rs6000_arg_size (mode, type))
ac7e839c 6521 ret = (GP_ARG_NUM_REG - align_words) * (TARGET_32BIT ? 4 : 8);
78a52f11 6522
c53bdcf5 6523 if (ret != 0 && TARGET_DEBUG_ARG)
78a52f11 6524 fprintf (stderr, "rs6000_arg_partial_bytes: %d\n", ret);
4697a36c 6525
c53bdcf5 6526 return ret;
4697a36c
MM
6527}
6528\f
6529/* A C expression that indicates when an argument must be passed by
6530 reference. If nonzero for an argument, a copy of that argument is
6531 made in memory and a pointer to the argument is passed instead of
6532 the argument itself. The pointer is passed in whatever way is
6533 appropriate for passing a pointer to that type.
6534
b2d04ecf
AM
6535 Under V.4, aggregates and long double are passed by reference.
6536
6537 As an extension to all 32-bit ABIs, AltiVec vectors are passed by
6538 reference unless the AltiVec vector extension ABI is in force.
c8c99a68
DE
6539
6540 As an extension to all ABIs, variable sized types are passed by
6541 reference. */
4697a36c 6542
8cd5a4e0 6543static bool
f676971a 6544rs6000_pass_by_reference (CUMULATIVE_ARGS *cum ATTRIBUTE_UNUSED,
586de218 6545 enum machine_mode mode, const_tree type,
bada2eb8 6546 bool named ATTRIBUTE_UNUSED)
4697a36c 6547{
602ea4d3 6548 if (DEFAULT_ABI == ABI_V4 && TARGET_IEEEQUAD && mode == TFmode)
4697a36c
MM
6549 {
6550 if (TARGET_DEBUG_ARG)
bada2eb8
DE
6551 fprintf (stderr, "function_arg_pass_by_reference: V4 long double\n");
6552 return 1;
6553 }
6554
6555 if (!type)
6556 return 0;
4697a36c 6557
bada2eb8
DE
6558 if (DEFAULT_ABI == ABI_V4 && AGGREGATE_TYPE_P (type))
6559 {
6560 if (TARGET_DEBUG_ARG)
6561 fprintf (stderr, "function_arg_pass_by_reference: V4 aggregate\n");
6562 return 1;
6563 }
6564
6565 if (int_size_in_bytes (type) < 0)
6566 {
6567 if (TARGET_DEBUG_ARG)
6568 fprintf (stderr, "function_arg_pass_by_reference: variable size\n");
6569 return 1;
6570 }
6571
6572 /* Allow -maltivec -mabi=no-altivec without warning. Altivec vector
6573 modes only exist for GCC vector types if -maltivec. */
6574 if (TARGET_32BIT && !TARGET_ALTIVEC_ABI && ALTIVEC_VECTOR_MODE (mode))
6575 {
6576 if (TARGET_DEBUG_ARG)
6577 fprintf (stderr, "function_arg_pass_by_reference: AltiVec\n");
4697a36c
MM
6578 return 1;
6579 }
b693336b
PB
6580
6581 /* Pass synthetic vectors in memory. */
bada2eb8 6582 if (TREE_CODE (type) == VECTOR_TYPE
ad630bef 6583 && int_size_in_bytes (type) > (TARGET_ALTIVEC_ABI ? 16 : 8))
b693336b
PB
6584 {
6585 static bool warned_for_pass_big_vectors = false;
6586 if (TARGET_DEBUG_ARG)
6587 fprintf (stderr, "function_arg_pass_by_reference: synthetic vector\n");
6588 if (!warned_for_pass_big_vectors)
6589 {
d4ee4d25 6590 warning (0, "GCC vector passed by reference: "
b693336b
PB
6591 "non-standard ABI extension with no compatibility guarantee");
6592 warned_for_pass_big_vectors = true;
6593 }
6594 return 1;
6595 }
6596
b2d04ecf 6597 return 0;
4697a36c 6598}
5985c7a6
FJ
6599
6600static void
2d9db8eb 6601rs6000_move_block_from_reg (int regno, rtx x, int nregs)
5985c7a6
FJ
6602{
6603 int i;
6604 enum machine_mode reg_mode = TARGET_32BIT ? SImode : DImode;
6605
6606 if (nregs == 0)
6607 return;
6608
c4ad648e 6609 for (i = 0; i < nregs; i++)
5985c7a6 6610 {
9390387d 6611 rtx tem = adjust_address_nv (x, reg_mode, i * GET_MODE_SIZE (reg_mode));
5985c7a6 6612 if (reload_completed)
c4ad648e
AM
6613 {
6614 if (! strict_memory_address_p (reg_mode, XEXP (tem, 0)))
6615 tem = NULL_RTX;
6616 else
6617 tem = simplify_gen_subreg (reg_mode, x, BLKmode,
9390387d 6618 i * GET_MODE_SIZE (reg_mode));
c4ad648e 6619 }
5985c7a6
FJ
6620 else
6621 tem = replace_equiv_address (tem, XEXP (tem, 0));
6622
37409796 6623 gcc_assert (tem);
5985c7a6
FJ
6624
6625 emit_move_insn (tem, gen_rtx_REG (reg_mode, regno + i));
6626 }
6627}
4697a36c
MM
6628\f
6629/* Perform any needed actions needed for a function that is receiving a
f676971a 6630 variable number of arguments.
4697a36c
MM
6631
6632 CUM is as above.
6633
6634 MODE and TYPE are the mode and type of the current parameter.
6635
6636 PRETEND_SIZE is a variable that should be set to the amount of stack
6637 that must be pushed by the prolog to pretend that our caller pushed
6638 it.
6639
6640 Normally, this macro will push all remaining incoming registers on the
6641 stack and set PRETEND_SIZE to the length of the registers pushed. */
6642
c6e8c921 6643static void
f676971a 6644setup_incoming_varargs (CUMULATIVE_ARGS *cum, enum machine_mode mode,
c4ad648e
AM
6645 tree type, int *pretend_size ATTRIBUTE_UNUSED,
6646 int no_rtl)
4697a36c 6647{
4cc833b7
RH
6648 CUMULATIVE_ARGS next_cum;
6649 int reg_size = TARGET_32BIT ? 4 : 8;
ca5adc63 6650 rtx save_area = NULL_RTX, mem;
4862826d
ILT
6651 int first_reg_offset;
6652 alias_set_type set;
4697a36c 6653
f31bf321 6654 /* Skip the last named argument. */
d34c5b80 6655 next_cum = *cum;
594a51fe 6656 function_arg_advance (&next_cum, mode, type, 1, 0);
4cc833b7 6657
f607bc57 6658 if (DEFAULT_ABI == ABI_V4)
d34c5b80 6659 {
5b667039
JJ
6660 first_reg_offset = next_cum.sysv_gregno - GP_ARG_MIN_REG;
6661
60e2d0ca 6662 if (! no_rtl)
5b667039
JJ
6663 {
6664 int gpr_reg_num = 0, gpr_size = 0, fpr_size = 0;
6665 HOST_WIDE_INT offset = 0;
6666
6667 /* Try to optimize the size of the varargs save area.
6668 The ABI requires that ap.reg_save_area is doubleword
6669 aligned, but we don't need to allocate space for all
6670 the bytes, only those to which we actually will save
6671 anything. */
6672 if (cfun->va_list_gpr_size && first_reg_offset < GP_ARG_NUM_REG)
6673 gpr_reg_num = GP_ARG_NUM_REG - first_reg_offset;
6674 if (TARGET_HARD_FLOAT && TARGET_FPRS
6675 && next_cum.fregno <= FP_ARG_V4_MAX_REG
6676 && cfun->va_list_fpr_size)
6677 {
6678 if (gpr_reg_num)
6679 fpr_size = (next_cum.fregno - FP_ARG_MIN_REG)
6680 * UNITS_PER_FP_WORD;
6681 if (cfun->va_list_fpr_size
6682 < FP_ARG_V4_MAX_REG + 1 - next_cum.fregno)
6683 fpr_size += cfun->va_list_fpr_size * UNITS_PER_FP_WORD;
6684 else
6685 fpr_size += (FP_ARG_V4_MAX_REG + 1 - next_cum.fregno)
6686 * UNITS_PER_FP_WORD;
6687 }
6688 if (gpr_reg_num)
6689 {
6690 offset = -((first_reg_offset * reg_size) & ~7);
6691 if (!fpr_size && gpr_reg_num > cfun->va_list_gpr_size)
6692 {
6693 gpr_reg_num = cfun->va_list_gpr_size;
6694 if (reg_size == 4 && (first_reg_offset & 1))
6695 gpr_reg_num++;
6696 }
6697 gpr_size = (gpr_reg_num * reg_size + 7) & ~7;
6698 }
6699 else if (fpr_size)
6700 offset = - (int) (next_cum.fregno - FP_ARG_MIN_REG)
6701 * UNITS_PER_FP_WORD
6702 - (int) (GP_ARG_NUM_REG * reg_size);
4cc833b7 6703
5b667039
JJ
6704 if (gpr_size + fpr_size)
6705 {
6706 rtx reg_save_area
6707 = assign_stack_local (BLKmode, gpr_size + fpr_size, 64);
6708 gcc_assert (GET_CODE (reg_save_area) == MEM);
6709 reg_save_area = XEXP (reg_save_area, 0);
6710 if (GET_CODE (reg_save_area) == PLUS)
6711 {
6712 gcc_assert (XEXP (reg_save_area, 0)
6713 == virtual_stack_vars_rtx);
6714 gcc_assert (GET_CODE (XEXP (reg_save_area, 1)) == CONST_INT);
6715 offset += INTVAL (XEXP (reg_save_area, 1));
6716 }
6717 else
6718 gcc_assert (reg_save_area == virtual_stack_vars_rtx);
6719 }
6720
6721 cfun->machine->varargs_save_offset = offset;
6722 save_area = plus_constant (virtual_stack_vars_rtx, offset);
6723 }
4697a36c 6724 }
60e2d0ca 6725 else
4697a36c 6726 {
d34c5b80 6727 first_reg_offset = next_cum.words;
4cc833b7 6728 save_area = virtual_incoming_args_rtx;
4697a36c 6729
fe984136 6730 if (targetm.calls.must_pass_in_stack (mode, type))
c53bdcf5 6731 first_reg_offset += rs6000_arg_size (TYPE_MODE (type), type);
4cc833b7 6732 }
4697a36c 6733
dfafc897 6734 set = get_varargs_alias_set ();
9d30f3c1
JJ
6735 if (! no_rtl && first_reg_offset < GP_ARG_NUM_REG
6736 && cfun->va_list_gpr_size)
4cc833b7 6737 {
9d30f3c1
JJ
6738 int nregs = GP_ARG_NUM_REG - first_reg_offset;
6739
6740 if (va_list_gpr_counter_field)
6741 {
6742 /* V4 va_list_gpr_size counts number of registers needed. */
6743 if (nregs > cfun->va_list_gpr_size)
6744 nregs = cfun->va_list_gpr_size;
6745 }
6746 else
6747 {
6748 /* char * va_list instead counts number of bytes needed. */
6749 if (nregs > cfun->va_list_gpr_size / reg_size)
6750 nregs = cfun->va_list_gpr_size / reg_size;
6751 }
6752
dfafc897 6753 mem = gen_rtx_MEM (BLKmode,
c4ad648e 6754 plus_constant (save_area,
13e2e16e
DE
6755 first_reg_offset * reg_size));
6756 MEM_NOTRAP_P (mem) = 1;
ba4828e0 6757 set_mem_alias_set (mem, set);
8ac61af7 6758 set_mem_align (mem, BITS_PER_WORD);
dfafc897 6759
f676971a 6760 rs6000_move_block_from_reg (GP_ARG_MIN_REG + first_reg_offset, mem,
9d30f3c1 6761 nregs);
4697a36c
MM
6762 }
6763
4697a36c 6764 /* Save FP registers if needed. */
f607bc57 6765 if (DEFAULT_ABI == ABI_V4
a3170dc6
AH
6766 && TARGET_HARD_FLOAT && TARGET_FPRS
6767 && ! no_rtl
9d30f3c1
JJ
6768 && next_cum.fregno <= FP_ARG_V4_MAX_REG
6769 && cfun->va_list_fpr_size)
4697a36c 6770 {
9d30f3c1 6771 int fregno = next_cum.fregno, nregs;
9ebbca7d 6772 rtx cr1 = gen_rtx_REG (CCmode, CR1_REGNO);
4cc833b7 6773 rtx lab = gen_label_rtx ();
5b667039
JJ
6774 int off = (GP_ARG_NUM_REG * reg_size) + ((fregno - FP_ARG_MIN_REG)
6775 * UNITS_PER_FP_WORD);
4697a36c 6776
c4ad648e
AM
6777 emit_jump_insn
6778 (gen_rtx_SET (VOIDmode,
6779 pc_rtx,
6780 gen_rtx_IF_THEN_ELSE (VOIDmode,
4cc833b7 6781 gen_rtx_NE (VOIDmode, cr1,
c4ad648e 6782 const0_rtx),
39403d82 6783 gen_rtx_LABEL_REF (VOIDmode, lab),
4697a36c
MM
6784 pc_rtx)));
6785
9d30f3c1
JJ
6786 for (nregs = 0;
6787 fregno <= FP_ARG_V4_MAX_REG && nregs < cfun->va_list_fpr_size;
5b667039 6788 fregno++, off += UNITS_PER_FP_WORD, nregs++)
4cc833b7 6789 {
696e45ba
ME
6790 mem = gen_rtx_MEM ((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
6791 ? DFmode : SFmode,
6792 plus_constant (save_area, off));
6793 MEM_NOTRAP_P (mem) = 1;
6794 set_mem_alias_set (mem, set);
6795 set_mem_align (mem, GET_MODE_ALIGNMENT (
6796 (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
6797 ? DFmode : SFmode));
6798 emit_move_insn (mem, gen_rtx_REG (
6799 (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
6800 ? DFmode : SFmode, fregno));
4697a36c 6801 }
4cc833b7
RH
6802
6803 emit_label (lab);
4697a36c 6804 }
4697a36c 6805}
4697a36c 6806
dfafc897 6807/* Create the va_list data type. */
2c4974b7 6808
c35d187f
RH
6809static tree
6810rs6000_build_builtin_va_list (void)
dfafc897 6811{
64c2816f 6812 tree f_gpr, f_fpr, f_res, f_ovf, f_sav, record, type_decl;
4697a36c 6813
9ebbca7d
GK
6814 /* For AIX, prefer 'char *' because that's what the system
6815 header files like. */
f607bc57 6816 if (DEFAULT_ABI != ABI_V4)
9ebbca7d 6817 return build_pointer_type (char_type_node);
dfafc897 6818
f1e639b1 6819 record = (*lang_hooks.types.make_type) (RECORD_TYPE);
bab45a51 6820 type_decl = build_decl (TYPE_DECL, get_identifier ("__va_list_tag"), record);
0f4fd75d 6821
f676971a 6822 f_gpr = build_decl (FIELD_DECL, get_identifier ("gpr"),
9ebbca7d 6823 unsigned_char_type_node);
f676971a 6824 f_fpr = build_decl (FIELD_DECL, get_identifier ("fpr"),
9ebbca7d 6825 unsigned_char_type_node);
64c2816f
DT
6826 /* Give the two bytes of padding a name, so that -Wpadded won't warn on
6827 every user file. */
6828 f_res = build_decl (FIELD_DECL, get_identifier ("reserved"),
6829 short_unsigned_type_node);
dfafc897
FS
6830 f_ovf = build_decl (FIELD_DECL, get_identifier ("overflow_arg_area"),
6831 ptr_type_node);
6832 f_sav = build_decl (FIELD_DECL, get_identifier ("reg_save_area"),
6833 ptr_type_node);
6834
9d30f3c1
JJ
6835 va_list_gpr_counter_field = f_gpr;
6836 va_list_fpr_counter_field = f_fpr;
6837
dfafc897
FS
6838 DECL_FIELD_CONTEXT (f_gpr) = record;
6839 DECL_FIELD_CONTEXT (f_fpr) = record;
64c2816f 6840 DECL_FIELD_CONTEXT (f_res) = record;
dfafc897
FS
6841 DECL_FIELD_CONTEXT (f_ovf) = record;
6842 DECL_FIELD_CONTEXT (f_sav) = record;
6843
bab45a51
FS
6844 TREE_CHAIN (record) = type_decl;
6845 TYPE_NAME (record) = type_decl;
dfafc897
FS
6846 TYPE_FIELDS (record) = f_gpr;
6847 TREE_CHAIN (f_gpr) = f_fpr;
64c2816f
DT
6848 TREE_CHAIN (f_fpr) = f_res;
6849 TREE_CHAIN (f_res) = f_ovf;
dfafc897
FS
6850 TREE_CHAIN (f_ovf) = f_sav;
6851
6852 layout_type (record);
6853
6854 /* The correct type is an array type of one element. */
6855 return build_array_type (record, build_index_type (size_zero_node));
6856}
6857
6858/* Implement va_start. */
6859
d7bd8aeb 6860static void
a2369ed3 6861rs6000_va_start (tree valist, rtx nextarg)
4697a36c 6862{
dfafc897 6863 HOST_WIDE_INT words, n_gpr, n_fpr;
c566f9bd 6864 tree f_gpr, f_fpr, f_res, f_ovf, f_sav;
dfafc897 6865 tree gpr, fpr, ovf, sav, t;
2c4974b7 6866
dfafc897 6867 /* Only SVR4 needs something special. */
f607bc57 6868 if (DEFAULT_ABI != ABI_V4)
dfafc897 6869 {
e5faf155 6870 std_expand_builtin_va_start (valist, nextarg);
dfafc897
FS
6871 return;
6872 }
6873
973a648b 6874 f_gpr = TYPE_FIELDS (TREE_TYPE (va_list_type_node));
dfafc897 6875 f_fpr = TREE_CHAIN (f_gpr);
c566f9bd
DT
6876 f_res = TREE_CHAIN (f_fpr);
6877 f_ovf = TREE_CHAIN (f_res);
dfafc897
FS
6878 f_sav = TREE_CHAIN (f_ovf);
6879
872a65b5 6880 valist = build_va_arg_indirect_ref (valist);
47a25a46 6881 gpr = build3 (COMPONENT_REF, TREE_TYPE (f_gpr), valist, f_gpr, NULL_TREE);
726a989a
RB
6882 fpr = build3 (COMPONENT_REF, TREE_TYPE (f_fpr), unshare_expr (valist),
6883 f_fpr, NULL_TREE);
6884 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), unshare_expr (valist),
6885 f_ovf, NULL_TREE);
6886 sav = build3 (COMPONENT_REF, TREE_TYPE (f_sav), unshare_expr (valist),
6887 f_sav, NULL_TREE);
dfafc897
FS
6888
6889 /* Count number of gp and fp argument registers used. */
38173d38
JH
6890 words = crtl->args.info.words;
6891 n_gpr = MIN (crtl->args.info.sysv_gregno - GP_ARG_MIN_REG,
987732e0 6892 GP_ARG_NUM_REG);
38173d38 6893 n_fpr = MIN (crtl->args.info.fregno - FP_ARG_MIN_REG,
987732e0 6894 FP_ARG_NUM_REG);
dfafc897
FS
6895
6896 if (TARGET_DEBUG_ARG)
4a0a75dd
KG
6897 fprintf (stderr, "va_start: words = "HOST_WIDE_INT_PRINT_DEC", n_gpr = "
6898 HOST_WIDE_INT_PRINT_DEC", n_fpr = "HOST_WIDE_INT_PRINT_DEC"\n",
6899 words, n_gpr, n_fpr);
dfafc897 6900
9d30f3c1
JJ
6901 if (cfun->va_list_gpr_size)
6902 {
726a989a 6903 t = build2 (MODIFY_EXPR, TREE_TYPE (gpr), gpr,
47a25a46 6904 build_int_cst (NULL_TREE, n_gpr));
9d30f3c1
JJ
6905 TREE_SIDE_EFFECTS (t) = 1;
6906 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
6907 }
58c8adc1 6908
9d30f3c1
JJ
6909 if (cfun->va_list_fpr_size)
6910 {
726a989a 6911 t = build2 (MODIFY_EXPR, TREE_TYPE (fpr), fpr,
47a25a46 6912 build_int_cst (NULL_TREE, n_fpr));
9d30f3c1
JJ
6913 TREE_SIDE_EFFECTS (t) = 1;
6914 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
6915 }
dfafc897
FS
6916
6917 /* Find the overflow area. */
6918 t = make_tree (TREE_TYPE (ovf), virtual_incoming_args_rtx);
6919 if (words != 0)
5be014d5
AP
6920 t = build2 (POINTER_PLUS_EXPR, TREE_TYPE (ovf), t,
6921 size_int (words * UNITS_PER_WORD));
726a989a 6922 t = build2 (MODIFY_EXPR, TREE_TYPE (ovf), ovf, t);
dfafc897
FS
6923 TREE_SIDE_EFFECTS (t) = 1;
6924 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
6925
9d30f3c1
JJ
6926 /* If there were no va_arg invocations, don't set up the register
6927 save area. */
6928 if (!cfun->va_list_gpr_size
6929 && !cfun->va_list_fpr_size
6930 && n_gpr < GP_ARG_NUM_REG
6931 && n_fpr < FP_ARG_V4_MAX_REG)
6932 return;
6933
dfafc897
FS
6934 /* Find the register save area. */
6935 t = make_tree (TREE_TYPE (sav), virtual_stack_vars_rtx);
5b667039 6936 if (cfun->machine->varargs_save_offset)
5be014d5
AP
6937 t = build2 (POINTER_PLUS_EXPR, TREE_TYPE (sav), t,
6938 size_int (cfun->machine->varargs_save_offset));
726a989a 6939 t = build2 (MODIFY_EXPR, TREE_TYPE (sav), sav, t);
dfafc897
FS
6940 TREE_SIDE_EFFECTS (t) = 1;
6941 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
6942}
6943
6944/* Implement va_arg. */
6945
23a60a04 6946tree
726a989a
RB
6947rs6000_gimplify_va_arg (tree valist, tree type, gimple_seq *pre_p,
6948 gimple_seq *post_p)
cd3ce9b4 6949{
cd3ce9b4
JM
6950 tree f_gpr, f_fpr, f_res, f_ovf, f_sav;
6951 tree gpr, fpr, ovf, sav, reg, t, u;
08b0dc1b 6952 int size, rsize, n_reg, sav_ofs, sav_scale;
cd3ce9b4
JM
6953 tree lab_false, lab_over, addr;
6954 int align;
6955 tree ptrtype = build_pointer_type (type);
7393f7f8 6956 int regalign = 0;
726a989a 6957 gimple stmt;
cd3ce9b4 6958
08b0dc1b
RH
6959 if (pass_by_reference (NULL, TYPE_MODE (type), type, false))
6960 {
6961 t = rs6000_gimplify_va_arg (valist, ptrtype, pre_p, post_p);
872a65b5 6962 return build_va_arg_indirect_ref (t);
08b0dc1b
RH
6963 }
6964
cd3ce9b4
JM
6965 if (DEFAULT_ABI != ABI_V4)
6966 {
08b0dc1b 6967 if (targetm.calls.split_complex_arg && TREE_CODE (type) == COMPLEX_TYPE)
cd3ce9b4
JM
6968 {
6969 tree elem_type = TREE_TYPE (type);
6970 enum machine_mode elem_mode = TYPE_MODE (elem_type);
6971 int elem_size = GET_MODE_SIZE (elem_mode);
6972
6973 if (elem_size < UNITS_PER_WORD)
6974 {
23a60a04 6975 tree real_part, imag_part;
726a989a 6976 gimple_seq post = NULL;
cd3ce9b4 6977
23a60a04
JM
6978 real_part = rs6000_gimplify_va_arg (valist, elem_type, pre_p,
6979 &post);
6980 /* Copy the value into a temporary, lest the formal temporary
6981 be reused out from under us. */
6982 real_part = get_initialized_tmp_var (real_part, pre_p, &post);
726a989a 6983 gimple_seq_add_seq (pre_p, post);
cd3ce9b4 6984
23a60a04
JM
6985 imag_part = rs6000_gimplify_va_arg (valist, elem_type, pre_p,
6986 post_p);
cd3ce9b4 6987
47a25a46 6988 return build2 (COMPLEX_EXPR, type, real_part, imag_part);
cd3ce9b4
JM
6989 }
6990 }
6991
23a60a04 6992 return std_gimplify_va_arg_expr (valist, type, pre_p, post_p);
cd3ce9b4
JM
6993 }
6994
6995 f_gpr = TYPE_FIELDS (TREE_TYPE (va_list_type_node));
6996 f_fpr = TREE_CHAIN (f_gpr);
6997 f_res = TREE_CHAIN (f_fpr);
6998 f_ovf = TREE_CHAIN (f_res);
6999 f_sav = TREE_CHAIN (f_ovf);
7000
872a65b5 7001 valist = build_va_arg_indirect_ref (valist);
47a25a46 7002 gpr = build3 (COMPONENT_REF, TREE_TYPE (f_gpr), valist, f_gpr, NULL_TREE);
726a989a
RB
7003 fpr = build3 (COMPONENT_REF, TREE_TYPE (f_fpr), unshare_expr (valist),
7004 f_fpr, NULL_TREE);
7005 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), unshare_expr (valist),
7006 f_ovf, NULL_TREE);
7007 sav = build3 (COMPONENT_REF, TREE_TYPE (f_sav), unshare_expr (valist),
7008 f_sav, NULL_TREE);
cd3ce9b4
JM
7009
7010 size = int_size_in_bytes (type);
7011 rsize = (size + 3) / 4;
7012 align = 1;
7013
08b0dc1b 7014 if (TARGET_HARD_FLOAT && TARGET_FPRS
696e45ba
ME
7015 && ((TARGET_SINGLE_FLOAT && TYPE_MODE (type) == SFmode)
7016 || (TARGET_DOUBLE_FLOAT
7017 && (TYPE_MODE (type) == DFmode
7018 || TYPE_MODE (type) == TFmode
7019 || TYPE_MODE (type) == SDmode
7020 || TYPE_MODE (type) == DDmode
7021 || TYPE_MODE (type) == TDmode))))
cd3ce9b4
JM
7022 {
7023 /* FP args go in FP registers, if present. */
cd3ce9b4 7024 reg = fpr;
602ea4d3 7025 n_reg = (size + 7) / 8;
696e45ba
ME
7026 sav_ofs = ((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT) ? 8 : 4) * 4;
7027 sav_scale = ((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT) ? 8 : 4);
e41b2a33 7028 if (TYPE_MODE (type) != SFmode && TYPE_MODE (type) != SDmode)
cd3ce9b4
JM
7029 align = 8;
7030 }
7031 else
7032 {
7033 /* Otherwise into GP registers. */
cd3ce9b4
JM
7034 reg = gpr;
7035 n_reg = rsize;
7036 sav_ofs = 0;
7037 sav_scale = 4;
7038 if (n_reg == 2)
7039 align = 8;
7040 }
7041
7042 /* Pull the value out of the saved registers.... */
7043
7044 lab_over = NULL;
7045 addr = create_tmp_var (ptr_type_node, "addr");
7046 DECL_POINTER_ALIAS_SET (addr) = get_varargs_alias_set ();
7047
7048 /* AltiVec vectors never go in registers when -mabi=altivec. */
7049 if (TARGET_ALTIVEC_ABI && ALTIVEC_VECTOR_MODE (TYPE_MODE (type)))
7050 align = 16;
7051 else
7052 {
7053 lab_false = create_artificial_label ();
7054 lab_over = create_artificial_label ();
7055
7056 /* Long long and SPE vectors are aligned in the registers.
7057 As are any other 2 gpr item such as complex int due to a
7058 historical mistake. */
7059 u = reg;
602ea4d3 7060 if (n_reg == 2 && reg == gpr)
cd3ce9b4 7061 {
7393f7f8 7062 regalign = 1;
726a989a 7063 u = build2 (BIT_AND_EXPR, TREE_TYPE (reg), unshare_expr (reg),
8fb632eb 7064 build_int_cst (TREE_TYPE (reg), n_reg - 1));
726a989a
RB
7065 u = build2 (POSTINCREMENT_EXPR, TREE_TYPE (reg),
7066 unshare_expr (reg), u);
cd3ce9b4 7067 }
7393f7f8
BE
7068 /* _Decimal128 is passed in even/odd fpr pairs; the stored
7069 reg number is 0 for f1, so we want to make it odd. */
7070 else if (reg == fpr && TYPE_MODE (type) == TDmode)
7071 {
7072 regalign = 1;
726a989a 7073 t = build2 (BIT_IOR_EXPR, TREE_TYPE (reg), unshare_expr (reg),
383e91e4 7074 build_int_cst (TREE_TYPE (reg), 1));
726a989a 7075 u = build2 (MODIFY_EXPR, void_type_node, unshare_expr (reg), t);
7393f7f8 7076 }
cd3ce9b4 7077
95674810 7078 t = fold_convert (TREE_TYPE (reg), size_int (8 - n_reg + 1));
cd3ce9b4
JM
7079 t = build2 (GE_EXPR, boolean_type_node, u, t);
7080 u = build1 (GOTO_EXPR, void_type_node, lab_false);
7081 t = build3 (COND_EXPR, void_type_node, t, u, NULL_TREE);
7082 gimplify_and_add (t, pre_p);
7083
7084 t = sav;
7085 if (sav_ofs)
5be014d5 7086 t = build2 (POINTER_PLUS_EXPR, ptr_type_node, sav, size_int (sav_ofs));
cd3ce9b4 7087
726a989a 7088 u = build2 (POSTINCREMENT_EXPR, TREE_TYPE (reg), unshare_expr (reg),
8fb632eb 7089 build_int_cst (TREE_TYPE (reg), n_reg));
5be014d5
AP
7090 u = fold_convert (sizetype, u);
7091 u = build2 (MULT_EXPR, sizetype, u, size_int (sav_scale));
7092 t = build2 (POINTER_PLUS_EXPR, ptr_type_node, t, u);
cd3ce9b4 7093
e41b2a33
PB
7094 /* _Decimal32 varargs are located in the second word of the 64-bit
7095 FP register for 32-bit binaries. */
4f011e1e
JM
7096 if (!TARGET_POWERPC64
7097 && TARGET_HARD_FLOAT && TARGET_FPRS
7098 && TYPE_MODE (type) == SDmode)
e41b2a33
PB
7099 t = build2 (POINTER_PLUS_EXPR, TREE_TYPE (t), t, size_int (size));
7100
726a989a 7101 gimplify_assign (addr, t, pre_p);
cd3ce9b4 7102
726a989a 7103 gimple_seq_add_stmt (pre_p, gimple_build_goto (lab_over));
cd3ce9b4 7104
726a989a
RB
7105 stmt = gimple_build_label (lab_false);
7106 gimple_seq_add_stmt (pre_p, stmt);
cd3ce9b4 7107
7393f7f8 7108 if ((n_reg == 2 && !regalign) || n_reg > 2)
cd3ce9b4
JM
7109 {
7110 /* Ensure that we don't find any more args in regs.
7393f7f8 7111 Alignment has taken care of for special cases. */
726a989a 7112 gimplify_assign (reg, build_int_cst (TREE_TYPE (reg), 8), pre_p);
cd3ce9b4
JM
7113 }
7114 }
7115
7116 /* ... otherwise out of the overflow area. */
7117
7118 /* Care for on-stack alignment if needed. */
7119 t = ovf;
7120 if (align != 1)
7121 {
5be014d5
AP
7122 t = build2 (POINTER_PLUS_EXPR, TREE_TYPE (t), t, size_int (align - 1));
7123 t = fold_convert (sizetype, t);
4a90aeeb 7124 t = build2 (BIT_AND_EXPR, TREE_TYPE (t), t,
5be014d5
AP
7125 size_int (-align));
7126 t = fold_convert (TREE_TYPE (ovf), t);
cd3ce9b4
JM
7127 }
7128 gimplify_expr (&t, pre_p, NULL, is_gimple_val, fb_rvalue);
7129
726a989a 7130 gimplify_assign (unshare_expr (addr), t, pre_p);
cd3ce9b4 7131
5be014d5 7132 t = build2 (POINTER_PLUS_EXPR, TREE_TYPE (t), t, size_int (size));
726a989a 7133 gimplify_assign (unshare_expr (ovf), t, pre_p);
cd3ce9b4
JM
7134
7135 if (lab_over)
7136 {
726a989a
RB
7137 stmt = gimple_build_label (lab_over);
7138 gimple_seq_add_stmt (pre_p, stmt);
cd3ce9b4
JM
7139 }
7140
0cfbc62b
JM
7141 if (STRICT_ALIGNMENT
7142 && (TYPE_ALIGN (type)
7143 > (unsigned) BITS_PER_UNIT * (align < 4 ? 4 : align)))
7144 {
7145 /* The value (of type complex double, for example) may not be
7146 aligned in memory in the saved registers, so copy via a
7147 temporary. (This is the same code as used for SPARC.) */
7148 tree tmp = create_tmp_var (type, "va_arg_tmp");
7149 tree dest_addr = build_fold_addr_expr (tmp);
7150
5039610b
SL
7151 tree copy = build_call_expr (implicit_built_in_decls[BUILT_IN_MEMCPY],
7152 3, dest_addr, addr, size_int (rsize * 4));
0cfbc62b
JM
7153
7154 gimplify_and_add (copy, pre_p);
7155 addr = dest_addr;
7156 }
7157
08b0dc1b 7158 addr = fold_convert (ptrtype, addr);
872a65b5 7159 return build_va_arg_indirect_ref (addr);
cd3ce9b4
JM
7160}
7161
0ac081f6
AH
7162/* Builtins. */
7163
58646b77
PB
7164static void
7165def_builtin (int mask, const char *name, tree type, int code)
7166{
96038623 7167 if ((mask & target_flags) || TARGET_PAIRED_FLOAT)
58646b77
PB
7168 {
7169 if (rs6000_builtin_decls[code])
7170 abort ();
7171
7172 rs6000_builtin_decls[code] =
c79efc4d
RÁE
7173 add_builtin_function (name, type, code, BUILT_IN_MD,
7174 NULL, NULL_TREE);
58646b77
PB
7175 }
7176}
0ac081f6 7177
24408032
AH
7178/* Simple ternary operations: VECd = foo (VECa, VECb, VECc). */
7179
2212663f 7180static const struct builtin_description bdesc_3arg[] =
24408032
AH
7181{
7182 { MASK_ALTIVEC, CODE_FOR_altivec_vmaddfp, "__builtin_altivec_vmaddfp", ALTIVEC_BUILTIN_VMADDFP },
7183 { MASK_ALTIVEC, CODE_FOR_altivec_vmhaddshs, "__builtin_altivec_vmhaddshs", ALTIVEC_BUILTIN_VMHADDSHS },
7184 { MASK_ALTIVEC, CODE_FOR_altivec_vmhraddshs, "__builtin_altivec_vmhraddshs", ALTIVEC_BUILTIN_VMHRADDSHS },
7185 { MASK_ALTIVEC, CODE_FOR_altivec_vmladduhm, "__builtin_altivec_vmladduhm", ALTIVEC_BUILTIN_VMLADDUHM},
7186 { MASK_ALTIVEC, CODE_FOR_altivec_vmsumubm, "__builtin_altivec_vmsumubm", ALTIVEC_BUILTIN_VMSUMUBM },
7187 { MASK_ALTIVEC, CODE_FOR_altivec_vmsummbm, "__builtin_altivec_vmsummbm", ALTIVEC_BUILTIN_VMSUMMBM },
7188 { MASK_ALTIVEC, CODE_FOR_altivec_vmsumuhm, "__builtin_altivec_vmsumuhm", ALTIVEC_BUILTIN_VMSUMUHM },
7189 { MASK_ALTIVEC, CODE_FOR_altivec_vmsumshm, "__builtin_altivec_vmsumshm", ALTIVEC_BUILTIN_VMSUMSHM },
7190 { MASK_ALTIVEC, CODE_FOR_altivec_vmsumuhs, "__builtin_altivec_vmsumuhs", ALTIVEC_BUILTIN_VMSUMUHS },
7191 { MASK_ALTIVEC, CODE_FOR_altivec_vmsumshs, "__builtin_altivec_vmsumshs", ALTIVEC_BUILTIN_VMSUMSHS },
f676971a 7192 { MASK_ALTIVEC, CODE_FOR_altivec_vnmsubfp, "__builtin_altivec_vnmsubfp", ALTIVEC_BUILTIN_VNMSUBFP },
aba5fb01
NS
7193 { MASK_ALTIVEC, CODE_FOR_altivec_vperm_v4sf, "__builtin_altivec_vperm_4sf", ALTIVEC_BUILTIN_VPERM_4SF },
7194 { MASK_ALTIVEC, CODE_FOR_altivec_vperm_v4si, "__builtin_altivec_vperm_4si", ALTIVEC_BUILTIN_VPERM_4SI },
7195 { MASK_ALTIVEC, CODE_FOR_altivec_vperm_v8hi, "__builtin_altivec_vperm_8hi", ALTIVEC_BUILTIN_VPERM_8HI },
7196 { MASK_ALTIVEC, CODE_FOR_altivec_vperm_v16qi, "__builtin_altivec_vperm_16qi", ALTIVEC_BUILTIN_VPERM_16QI },
7197 { MASK_ALTIVEC, CODE_FOR_altivec_vsel_v4sf, "__builtin_altivec_vsel_4sf", ALTIVEC_BUILTIN_VSEL_4SF },
7198 { MASK_ALTIVEC, CODE_FOR_altivec_vsel_v4si, "__builtin_altivec_vsel_4si", ALTIVEC_BUILTIN_VSEL_4SI },
7199 { MASK_ALTIVEC, CODE_FOR_altivec_vsel_v8hi, "__builtin_altivec_vsel_8hi", ALTIVEC_BUILTIN_VSEL_8HI },
7200 { MASK_ALTIVEC, CODE_FOR_altivec_vsel_v16qi, "__builtin_altivec_vsel_16qi", ALTIVEC_BUILTIN_VSEL_16QI },
7201 { MASK_ALTIVEC, CODE_FOR_altivec_vsldoi_v16qi, "__builtin_altivec_vsldoi_16qi", ALTIVEC_BUILTIN_VSLDOI_16QI },
7202 { MASK_ALTIVEC, CODE_FOR_altivec_vsldoi_v8hi, "__builtin_altivec_vsldoi_8hi", ALTIVEC_BUILTIN_VSLDOI_8HI },
7203 { MASK_ALTIVEC, CODE_FOR_altivec_vsldoi_v4si, "__builtin_altivec_vsldoi_4si", ALTIVEC_BUILTIN_VSLDOI_4SI },
7204 { MASK_ALTIVEC, CODE_FOR_altivec_vsldoi_v4sf, "__builtin_altivec_vsldoi_4sf", ALTIVEC_BUILTIN_VSLDOI_4SF },
58646b77
PB
7205
7206 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_madd", ALTIVEC_BUILTIN_VEC_MADD },
7207 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_madds", ALTIVEC_BUILTIN_VEC_MADDS },
7208 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_mladd", ALTIVEC_BUILTIN_VEC_MLADD },
7209 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_mradds", ALTIVEC_BUILTIN_VEC_MRADDS },
7210 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_msum", ALTIVEC_BUILTIN_VEC_MSUM },
7211 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmsumshm", ALTIVEC_BUILTIN_VEC_VMSUMSHM },
7212 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmsumuhm", ALTIVEC_BUILTIN_VEC_VMSUMUHM },
7213 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmsummbm", ALTIVEC_BUILTIN_VEC_VMSUMMBM },
7214 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmsumubm", ALTIVEC_BUILTIN_VEC_VMSUMUBM },
7215 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_msums", ALTIVEC_BUILTIN_VEC_MSUMS },
7216 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmsumshs", ALTIVEC_BUILTIN_VEC_VMSUMSHS },
7217 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmsumuhs", ALTIVEC_BUILTIN_VEC_VMSUMUHS },
7218 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_nmsub", ALTIVEC_BUILTIN_VEC_NMSUB },
7219 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_perm", ALTIVEC_BUILTIN_VEC_PERM },
7220 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_sel", ALTIVEC_BUILTIN_VEC_SEL },
96038623
DE
7221
7222 { 0, CODE_FOR_paired_msub, "__builtin_paired_msub", PAIRED_BUILTIN_MSUB },
7223 { 0, CODE_FOR_paired_madd, "__builtin_paired_madd", PAIRED_BUILTIN_MADD },
7224 { 0, CODE_FOR_paired_madds0, "__builtin_paired_madds0", PAIRED_BUILTIN_MADDS0 },
7225 { 0, CODE_FOR_paired_madds1, "__builtin_paired_madds1", PAIRED_BUILTIN_MADDS1 },
7226 { 0, CODE_FOR_paired_nmsub, "__builtin_paired_nmsub", PAIRED_BUILTIN_NMSUB },
7227 { 0, CODE_FOR_paired_nmadd, "__builtin_paired_nmadd", PAIRED_BUILTIN_NMADD },
7228 { 0, CODE_FOR_paired_sum0, "__builtin_paired_sum0", PAIRED_BUILTIN_SUM0 },
7229 { 0, CODE_FOR_paired_sum1, "__builtin_paired_sum1", PAIRED_BUILTIN_SUM1 },
49e39588 7230 { 0, CODE_FOR_selv2sf4, "__builtin_paired_selv2sf4", PAIRED_BUILTIN_SELV2SF4 },
24408032 7231};
2212663f 7232
95385cbb
AH
7233/* DST operations: void foo (void *, const int, const char). */
7234
7235static const struct builtin_description bdesc_dst[] =
7236{
7237 { MASK_ALTIVEC, CODE_FOR_altivec_dst, "__builtin_altivec_dst", ALTIVEC_BUILTIN_DST },
7238 { MASK_ALTIVEC, CODE_FOR_altivec_dstt, "__builtin_altivec_dstt", ALTIVEC_BUILTIN_DSTT },
7239 { MASK_ALTIVEC, CODE_FOR_altivec_dstst, "__builtin_altivec_dstst", ALTIVEC_BUILTIN_DSTST },
58646b77
PB
7240 { MASK_ALTIVEC, CODE_FOR_altivec_dststt, "__builtin_altivec_dststt", ALTIVEC_BUILTIN_DSTSTT },
7241
7242 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_dst", ALTIVEC_BUILTIN_VEC_DST },
7243 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_dstt", ALTIVEC_BUILTIN_VEC_DSTT },
7244 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_dstst", ALTIVEC_BUILTIN_VEC_DSTST },
7245 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_dststt", ALTIVEC_BUILTIN_VEC_DSTSTT }
95385cbb
AH
7246};
7247
2212663f 7248/* Simple binary operations: VECc = foo (VECa, VECb). */
24408032 7249
a3170dc6 7250static struct builtin_description bdesc_2arg[] =
0ac081f6 7251{
f18c054f
DB
7252 { MASK_ALTIVEC, CODE_FOR_addv16qi3, "__builtin_altivec_vaddubm", ALTIVEC_BUILTIN_VADDUBM },
7253 { MASK_ALTIVEC, CODE_FOR_addv8hi3, "__builtin_altivec_vadduhm", ALTIVEC_BUILTIN_VADDUHM },
7254 { MASK_ALTIVEC, CODE_FOR_addv4si3, "__builtin_altivec_vadduwm", ALTIVEC_BUILTIN_VADDUWM },
7255 { MASK_ALTIVEC, CODE_FOR_addv4sf3, "__builtin_altivec_vaddfp", ALTIVEC_BUILTIN_VADDFP },
0ac081f6
AH
7256 { MASK_ALTIVEC, CODE_FOR_altivec_vaddcuw, "__builtin_altivec_vaddcuw", ALTIVEC_BUILTIN_VADDCUW },
7257 { MASK_ALTIVEC, CODE_FOR_altivec_vaddubs, "__builtin_altivec_vaddubs", ALTIVEC_BUILTIN_VADDUBS },
7258 { MASK_ALTIVEC, CODE_FOR_altivec_vaddsbs, "__builtin_altivec_vaddsbs", ALTIVEC_BUILTIN_VADDSBS },
7259 { MASK_ALTIVEC, CODE_FOR_altivec_vadduhs, "__builtin_altivec_vadduhs", ALTIVEC_BUILTIN_VADDUHS },
7260 { MASK_ALTIVEC, CODE_FOR_altivec_vaddshs, "__builtin_altivec_vaddshs", ALTIVEC_BUILTIN_VADDSHS },
7261 { MASK_ALTIVEC, CODE_FOR_altivec_vadduws, "__builtin_altivec_vadduws", ALTIVEC_BUILTIN_VADDUWS },
7262 { MASK_ALTIVEC, CODE_FOR_altivec_vaddsws, "__builtin_altivec_vaddsws", ALTIVEC_BUILTIN_VADDSWS },
f18c054f 7263 { MASK_ALTIVEC, CODE_FOR_andv4si3, "__builtin_altivec_vand", ALTIVEC_BUILTIN_VAND },
aba5fb01 7264 { MASK_ALTIVEC, CODE_FOR_andcv4si3, "__builtin_altivec_vandc", ALTIVEC_BUILTIN_VANDC },
0ac081f6
AH
7265 { MASK_ALTIVEC, CODE_FOR_altivec_vavgub, "__builtin_altivec_vavgub", ALTIVEC_BUILTIN_VAVGUB },
7266 { MASK_ALTIVEC, CODE_FOR_altivec_vavgsb, "__builtin_altivec_vavgsb", ALTIVEC_BUILTIN_VAVGSB },
7267 { MASK_ALTIVEC, CODE_FOR_altivec_vavguh, "__builtin_altivec_vavguh", ALTIVEC_BUILTIN_VAVGUH },
7268 { MASK_ALTIVEC, CODE_FOR_altivec_vavgsh, "__builtin_altivec_vavgsh", ALTIVEC_BUILTIN_VAVGSH },
7269 { MASK_ALTIVEC, CODE_FOR_altivec_vavguw, "__builtin_altivec_vavguw", ALTIVEC_BUILTIN_VAVGUW },
7270 { MASK_ALTIVEC, CODE_FOR_altivec_vavgsw, "__builtin_altivec_vavgsw", ALTIVEC_BUILTIN_VAVGSW },
617e0e1d
DB
7271 { MASK_ALTIVEC, CODE_FOR_altivec_vcfux, "__builtin_altivec_vcfux", ALTIVEC_BUILTIN_VCFUX },
7272 { MASK_ALTIVEC, CODE_FOR_altivec_vcfsx, "__builtin_altivec_vcfsx", ALTIVEC_BUILTIN_VCFSX },
0ac081f6
AH
7273 { MASK_ALTIVEC, CODE_FOR_altivec_vcmpbfp, "__builtin_altivec_vcmpbfp", ALTIVEC_BUILTIN_VCMPBFP },
7274 { MASK_ALTIVEC, CODE_FOR_altivec_vcmpequb, "__builtin_altivec_vcmpequb", ALTIVEC_BUILTIN_VCMPEQUB },
7275 { MASK_ALTIVEC, CODE_FOR_altivec_vcmpequh, "__builtin_altivec_vcmpequh", ALTIVEC_BUILTIN_VCMPEQUH },
7276 { MASK_ALTIVEC, CODE_FOR_altivec_vcmpequw, "__builtin_altivec_vcmpequw", ALTIVEC_BUILTIN_VCMPEQUW },
7277 { MASK_ALTIVEC, CODE_FOR_altivec_vcmpeqfp, "__builtin_altivec_vcmpeqfp", ALTIVEC_BUILTIN_VCMPEQFP },
7278 { MASK_ALTIVEC, CODE_FOR_altivec_vcmpgefp, "__builtin_altivec_vcmpgefp", ALTIVEC_BUILTIN_VCMPGEFP },
7279 { MASK_ALTIVEC, CODE_FOR_altivec_vcmpgtub, "__builtin_altivec_vcmpgtub", ALTIVEC_BUILTIN_VCMPGTUB },
7280 { MASK_ALTIVEC, CODE_FOR_altivec_vcmpgtsb, "__builtin_altivec_vcmpgtsb", ALTIVEC_BUILTIN_VCMPGTSB },
7281 { MASK_ALTIVEC, CODE_FOR_altivec_vcmpgtuh, "__builtin_altivec_vcmpgtuh", ALTIVEC_BUILTIN_VCMPGTUH },
7282 { MASK_ALTIVEC, CODE_FOR_altivec_vcmpgtsh, "__builtin_altivec_vcmpgtsh", ALTIVEC_BUILTIN_VCMPGTSH },
7283 { MASK_ALTIVEC, CODE_FOR_altivec_vcmpgtuw, "__builtin_altivec_vcmpgtuw", ALTIVEC_BUILTIN_VCMPGTUW },
7284 { MASK_ALTIVEC, CODE_FOR_altivec_vcmpgtsw, "__builtin_altivec_vcmpgtsw", ALTIVEC_BUILTIN_VCMPGTSW },
7285 { MASK_ALTIVEC, CODE_FOR_altivec_vcmpgtfp, "__builtin_altivec_vcmpgtfp", ALTIVEC_BUILTIN_VCMPGTFP },
617e0e1d
DB
7286 { MASK_ALTIVEC, CODE_FOR_altivec_vctsxs, "__builtin_altivec_vctsxs", ALTIVEC_BUILTIN_VCTSXS },
7287 { MASK_ALTIVEC, CODE_FOR_altivec_vctuxs, "__builtin_altivec_vctuxs", ALTIVEC_BUILTIN_VCTUXS },
f18c054f
DB
7288 { MASK_ALTIVEC, CODE_FOR_umaxv16qi3, "__builtin_altivec_vmaxub", ALTIVEC_BUILTIN_VMAXUB },
7289 { MASK_ALTIVEC, CODE_FOR_smaxv16qi3, "__builtin_altivec_vmaxsb", ALTIVEC_BUILTIN_VMAXSB },
df966bff
AH
7290 { MASK_ALTIVEC, CODE_FOR_umaxv8hi3, "__builtin_altivec_vmaxuh", ALTIVEC_BUILTIN_VMAXUH },
7291 { MASK_ALTIVEC, CODE_FOR_smaxv8hi3, "__builtin_altivec_vmaxsh", ALTIVEC_BUILTIN_VMAXSH },
7292 { MASK_ALTIVEC, CODE_FOR_umaxv4si3, "__builtin_altivec_vmaxuw", ALTIVEC_BUILTIN_VMAXUW },
7293 { MASK_ALTIVEC, CODE_FOR_smaxv4si3, "__builtin_altivec_vmaxsw", ALTIVEC_BUILTIN_VMAXSW },
7294 { MASK_ALTIVEC, CODE_FOR_smaxv4sf3, "__builtin_altivec_vmaxfp", ALTIVEC_BUILTIN_VMAXFP },
0ac081f6
AH
7295 { MASK_ALTIVEC, CODE_FOR_altivec_vmrghb, "__builtin_altivec_vmrghb", ALTIVEC_BUILTIN_VMRGHB },
7296 { MASK_ALTIVEC, CODE_FOR_altivec_vmrghh, "__builtin_altivec_vmrghh", ALTIVEC_BUILTIN_VMRGHH },
7297 { MASK_ALTIVEC, CODE_FOR_altivec_vmrghw, "__builtin_altivec_vmrghw", ALTIVEC_BUILTIN_VMRGHW },
7298 { MASK_ALTIVEC, CODE_FOR_altivec_vmrglb, "__builtin_altivec_vmrglb", ALTIVEC_BUILTIN_VMRGLB },
7299 { MASK_ALTIVEC, CODE_FOR_altivec_vmrglh, "__builtin_altivec_vmrglh", ALTIVEC_BUILTIN_VMRGLH },
7300 { MASK_ALTIVEC, CODE_FOR_altivec_vmrglw, "__builtin_altivec_vmrglw", ALTIVEC_BUILTIN_VMRGLW },
f18c054f
DB
7301 { MASK_ALTIVEC, CODE_FOR_uminv16qi3, "__builtin_altivec_vminub", ALTIVEC_BUILTIN_VMINUB },
7302 { MASK_ALTIVEC, CODE_FOR_sminv16qi3, "__builtin_altivec_vminsb", ALTIVEC_BUILTIN_VMINSB },
7303 { MASK_ALTIVEC, CODE_FOR_uminv8hi3, "__builtin_altivec_vminuh", ALTIVEC_BUILTIN_VMINUH },
7304 { MASK_ALTIVEC, CODE_FOR_sminv8hi3, "__builtin_altivec_vminsh", ALTIVEC_BUILTIN_VMINSH },
7305 { MASK_ALTIVEC, CODE_FOR_uminv4si3, "__builtin_altivec_vminuw", ALTIVEC_BUILTIN_VMINUW },
7306 { MASK_ALTIVEC, CODE_FOR_sminv4si3, "__builtin_altivec_vminsw", ALTIVEC_BUILTIN_VMINSW },
7307 { MASK_ALTIVEC, CODE_FOR_sminv4sf3, "__builtin_altivec_vminfp", ALTIVEC_BUILTIN_VMINFP },
0ac081f6
AH
7308 { MASK_ALTIVEC, CODE_FOR_altivec_vmuleub, "__builtin_altivec_vmuleub", ALTIVEC_BUILTIN_VMULEUB },
7309 { MASK_ALTIVEC, CODE_FOR_altivec_vmulesb, "__builtin_altivec_vmulesb", ALTIVEC_BUILTIN_VMULESB },
7310 { MASK_ALTIVEC, CODE_FOR_altivec_vmuleuh, "__builtin_altivec_vmuleuh", ALTIVEC_BUILTIN_VMULEUH },
7311 { MASK_ALTIVEC, CODE_FOR_altivec_vmulesh, "__builtin_altivec_vmulesh", ALTIVEC_BUILTIN_VMULESH },
7312 { MASK_ALTIVEC, CODE_FOR_altivec_vmuloub, "__builtin_altivec_vmuloub", ALTIVEC_BUILTIN_VMULOUB },
7313 { MASK_ALTIVEC, CODE_FOR_altivec_vmulosb, "__builtin_altivec_vmulosb", ALTIVEC_BUILTIN_VMULOSB },
7314 { MASK_ALTIVEC, CODE_FOR_altivec_vmulouh, "__builtin_altivec_vmulouh", ALTIVEC_BUILTIN_VMULOUH },
7315 { MASK_ALTIVEC, CODE_FOR_altivec_vmulosh, "__builtin_altivec_vmulosh", ALTIVEC_BUILTIN_VMULOSH },
f96bc213 7316 { MASK_ALTIVEC, CODE_FOR_altivec_norv4si3, "__builtin_altivec_vnor", ALTIVEC_BUILTIN_VNOR },
f18c054f 7317 { MASK_ALTIVEC, CODE_FOR_iorv4si3, "__builtin_altivec_vor", ALTIVEC_BUILTIN_VOR },
0ac081f6
AH
7318 { MASK_ALTIVEC, CODE_FOR_altivec_vpkuhum, "__builtin_altivec_vpkuhum", ALTIVEC_BUILTIN_VPKUHUM },
7319 { MASK_ALTIVEC, CODE_FOR_altivec_vpkuwum, "__builtin_altivec_vpkuwum", ALTIVEC_BUILTIN_VPKUWUM },
7320 { MASK_ALTIVEC, CODE_FOR_altivec_vpkpx, "__builtin_altivec_vpkpx", ALTIVEC_BUILTIN_VPKPX },
0ac081f6 7321 { MASK_ALTIVEC, CODE_FOR_altivec_vpkshss, "__builtin_altivec_vpkshss", ALTIVEC_BUILTIN_VPKSHSS },
0ac081f6
AH
7322 { MASK_ALTIVEC, CODE_FOR_altivec_vpkswss, "__builtin_altivec_vpkswss", ALTIVEC_BUILTIN_VPKSWSS },
7323 { MASK_ALTIVEC, CODE_FOR_altivec_vpkuhus, "__builtin_altivec_vpkuhus", ALTIVEC_BUILTIN_VPKUHUS },
7324 { MASK_ALTIVEC, CODE_FOR_altivec_vpkshus, "__builtin_altivec_vpkshus", ALTIVEC_BUILTIN_VPKSHUS },
7325 { MASK_ALTIVEC, CODE_FOR_altivec_vpkuwus, "__builtin_altivec_vpkuwus", ALTIVEC_BUILTIN_VPKUWUS },
7326 { MASK_ALTIVEC, CODE_FOR_altivec_vpkswus, "__builtin_altivec_vpkswus", ALTIVEC_BUILTIN_VPKSWUS },
7327 { MASK_ALTIVEC, CODE_FOR_altivec_vrlb, "__builtin_altivec_vrlb", ALTIVEC_BUILTIN_VRLB },
7328 { MASK_ALTIVEC, CODE_FOR_altivec_vrlh, "__builtin_altivec_vrlh", ALTIVEC_BUILTIN_VRLH },
7329 { MASK_ALTIVEC, CODE_FOR_altivec_vrlw, "__builtin_altivec_vrlw", ALTIVEC_BUILTIN_VRLW },
71d46ca5
MM
7330 { MASK_ALTIVEC, CODE_FOR_vashlv16qi3, "__builtin_altivec_vslb", ALTIVEC_BUILTIN_VSLB },
7331 { MASK_ALTIVEC, CODE_FOR_vashlv8hi3, "__builtin_altivec_vslh", ALTIVEC_BUILTIN_VSLH },
7332 { MASK_ALTIVEC, CODE_FOR_vashlv4si3, "__builtin_altivec_vslw", ALTIVEC_BUILTIN_VSLW },
0ac081f6
AH
7333 { MASK_ALTIVEC, CODE_FOR_altivec_vsl, "__builtin_altivec_vsl", ALTIVEC_BUILTIN_VSL },
7334 { MASK_ALTIVEC, CODE_FOR_altivec_vslo, "__builtin_altivec_vslo", ALTIVEC_BUILTIN_VSLO },
2212663f
DB
7335 { MASK_ALTIVEC, CODE_FOR_altivec_vspltb, "__builtin_altivec_vspltb", ALTIVEC_BUILTIN_VSPLTB },
7336 { MASK_ALTIVEC, CODE_FOR_altivec_vsplth, "__builtin_altivec_vsplth", ALTIVEC_BUILTIN_VSPLTH },
7337 { MASK_ALTIVEC, CODE_FOR_altivec_vspltw, "__builtin_altivec_vspltw", ALTIVEC_BUILTIN_VSPLTW },
71d46ca5
MM
7338 { MASK_ALTIVEC, CODE_FOR_vlshrv16qi3, "__builtin_altivec_vsrb", ALTIVEC_BUILTIN_VSRB },
7339 { MASK_ALTIVEC, CODE_FOR_vlshrv8hi3, "__builtin_altivec_vsrh", ALTIVEC_BUILTIN_VSRH },
7340 { MASK_ALTIVEC, CODE_FOR_vlshrv4si3, "__builtin_altivec_vsrw", ALTIVEC_BUILTIN_VSRW },
7341 { MASK_ALTIVEC, CODE_FOR_vashrv16qi3, "__builtin_altivec_vsrab", ALTIVEC_BUILTIN_VSRAB },
7342 { MASK_ALTIVEC, CODE_FOR_vashrv8hi3, "__builtin_altivec_vsrah", ALTIVEC_BUILTIN_VSRAH },
7343 { MASK_ALTIVEC, CODE_FOR_vashrv4si3, "__builtin_altivec_vsraw", ALTIVEC_BUILTIN_VSRAW },
0ac081f6
AH
7344 { MASK_ALTIVEC, CODE_FOR_altivec_vsr, "__builtin_altivec_vsr", ALTIVEC_BUILTIN_VSR },
7345 { MASK_ALTIVEC, CODE_FOR_altivec_vsro, "__builtin_altivec_vsro", ALTIVEC_BUILTIN_VSRO },
f18c054f
DB
7346 { MASK_ALTIVEC, CODE_FOR_subv16qi3, "__builtin_altivec_vsububm", ALTIVEC_BUILTIN_VSUBUBM },
7347 { MASK_ALTIVEC, CODE_FOR_subv8hi3, "__builtin_altivec_vsubuhm", ALTIVEC_BUILTIN_VSUBUHM },
7348 { MASK_ALTIVEC, CODE_FOR_subv4si3, "__builtin_altivec_vsubuwm", ALTIVEC_BUILTIN_VSUBUWM },
7349 { MASK_ALTIVEC, CODE_FOR_subv4sf3, "__builtin_altivec_vsubfp", ALTIVEC_BUILTIN_VSUBFP },
0ac081f6
AH
7350 { MASK_ALTIVEC, CODE_FOR_altivec_vsubcuw, "__builtin_altivec_vsubcuw", ALTIVEC_BUILTIN_VSUBCUW },
7351 { MASK_ALTIVEC, CODE_FOR_altivec_vsububs, "__builtin_altivec_vsububs", ALTIVEC_BUILTIN_VSUBUBS },
7352 { MASK_ALTIVEC, CODE_FOR_altivec_vsubsbs, "__builtin_altivec_vsubsbs", ALTIVEC_BUILTIN_VSUBSBS },
7353 { MASK_ALTIVEC, CODE_FOR_altivec_vsubuhs, "__builtin_altivec_vsubuhs", ALTIVEC_BUILTIN_VSUBUHS },
7354 { MASK_ALTIVEC, CODE_FOR_altivec_vsubshs, "__builtin_altivec_vsubshs", ALTIVEC_BUILTIN_VSUBSHS },
7355 { MASK_ALTIVEC, CODE_FOR_altivec_vsubuws, "__builtin_altivec_vsubuws", ALTIVEC_BUILTIN_VSUBUWS },
7356 { MASK_ALTIVEC, CODE_FOR_altivec_vsubsws, "__builtin_altivec_vsubsws", ALTIVEC_BUILTIN_VSUBSWS },
7357 { MASK_ALTIVEC, CODE_FOR_altivec_vsum4ubs, "__builtin_altivec_vsum4ubs", ALTIVEC_BUILTIN_VSUM4UBS },
7358 { MASK_ALTIVEC, CODE_FOR_altivec_vsum4sbs, "__builtin_altivec_vsum4sbs", ALTIVEC_BUILTIN_VSUM4SBS },
7359 { MASK_ALTIVEC, CODE_FOR_altivec_vsum4shs, "__builtin_altivec_vsum4shs", ALTIVEC_BUILTIN_VSUM4SHS },
7360 { MASK_ALTIVEC, CODE_FOR_altivec_vsum2sws, "__builtin_altivec_vsum2sws", ALTIVEC_BUILTIN_VSUM2SWS },
7361 { MASK_ALTIVEC, CODE_FOR_altivec_vsumsws, "__builtin_altivec_vsumsws", ALTIVEC_BUILTIN_VSUMSWS },
f18c054f 7362 { MASK_ALTIVEC, CODE_FOR_xorv4si3, "__builtin_altivec_vxor", ALTIVEC_BUILTIN_VXOR },
a3170dc6 7363
58646b77
PB
7364 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_add", ALTIVEC_BUILTIN_VEC_ADD },
7365 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vaddfp", ALTIVEC_BUILTIN_VEC_VADDFP },
7366 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vadduwm", ALTIVEC_BUILTIN_VEC_VADDUWM },
7367 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vadduhm", ALTIVEC_BUILTIN_VEC_VADDUHM },
7368 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vaddubm", ALTIVEC_BUILTIN_VEC_VADDUBM },
7369 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_addc", ALTIVEC_BUILTIN_VEC_ADDC },
7370 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_adds", ALTIVEC_BUILTIN_VEC_ADDS },
7371 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vaddsws", ALTIVEC_BUILTIN_VEC_VADDSWS },
7372 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vadduws", ALTIVEC_BUILTIN_VEC_VADDUWS },
7373 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vaddshs", ALTIVEC_BUILTIN_VEC_VADDSHS },
7374 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vadduhs", ALTIVEC_BUILTIN_VEC_VADDUHS },
7375 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vaddsbs", ALTIVEC_BUILTIN_VEC_VADDSBS },
7376 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vaddubs", ALTIVEC_BUILTIN_VEC_VADDUBS },
7377 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_and", ALTIVEC_BUILTIN_VEC_AND },
7378 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_andc", ALTIVEC_BUILTIN_VEC_ANDC },
7379 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_avg", ALTIVEC_BUILTIN_VEC_AVG },
7380 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vavgsw", ALTIVEC_BUILTIN_VEC_VAVGSW },
7381 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vavguw", ALTIVEC_BUILTIN_VEC_VAVGUW },
7382 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vavgsh", ALTIVEC_BUILTIN_VEC_VAVGSH },
7383 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vavguh", ALTIVEC_BUILTIN_VEC_VAVGUH },
7384 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vavgsb", ALTIVEC_BUILTIN_VEC_VAVGSB },
7385 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vavgub", ALTIVEC_BUILTIN_VEC_VAVGUB },
7386 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_cmpb", ALTIVEC_BUILTIN_VEC_CMPB },
7387 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_cmpeq", ALTIVEC_BUILTIN_VEC_CMPEQ },
7388 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vcmpeqfp", ALTIVEC_BUILTIN_VEC_VCMPEQFP },
7389 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vcmpequw", ALTIVEC_BUILTIN_VEC_VCMPEQUW },
7390 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vcmpequh", ALTIVEC_BUILTIN_VEC_VCMPEQUH },
7391 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vcmpequb", ALTIVEC_BUILTIN_VEC_VCMPEQUB },
7392 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_cmpge", ALTIVEC_BUILTIN_VEC_CMPGE },
7393 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_cmpgt", ALTIVEC_BUILTIN_VEC_CMPGT },
7394 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vcmpgtfp", ALTIVEC_BUILTIN_VEC_VCMPGTFP },
7395 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vcmpgtsw", ALTIVEC_BUILTIN_VEC_VCMPGTSW },
7396 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vcmpgtuw", ALTIVEC_BUILTIN_VEC_VCMPGTUW },
7397 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vcmpgtsh", ALTIVEC_BUILTIN_VEC_VCMPGTSH },
7398 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vcmpgtuh", ALTIVEC_BUILTIN_VEC_VCMPGTUH },
7399 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vcmpgtsb", ALTIVEC_BUILTIN_VEC_VCMPGTSB },
7400 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vcmpgtub", ALTIVEC_BUILTIN_VEC_VCMPGTUB },
7401 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_cmple", ALTIVEC_BUILTIN_VEC_CMPLE },
7402 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_cmplt", ALTIVEC_BUILTIN_VEC_CMPLT },
7403 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_max", ALTIVEC_BUILTIN_VEC_MAX },
7404 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmaxfp", ALTIVEC_BUILTIN_VEC_VMAXFP },
7405 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmaxsw", ALTIVEC_BUILTIN_VEC_VMAXSW },
7406 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmaxuw", ALTIVEC_BUILTIN_VEC_VMAXUW },
7407 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmaxsh", ALTIVEC_BUILTIN_VEC_VMAXSH },
7408 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmaxuh", ALTIVEC_BUILTIN_VEC_VMAXUH },
7409 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmaxsb", ALTIVEC_BUILTIN_VEC_VMAXSB },
7410 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmaxub", ALTIVEC_BUILTIN_VEC_VMAXUB },
7411 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_mergeh", ALTIVEC_BUILTIN_VEC_MERGEH },
7412 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmrghw", ALTIVEC_BUILTIN_VEC_VMRGHW },
7413 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmrghh", ALTIVEC_BUILTIN_VEC_VMRGHH },
7414 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmrghb", ALTIVEC_BUILTIN_VEC_VMRGHB },
7415 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_mergel", ALTIVEC_BUILTIN_VEC_MERGEL },
7416 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmrglw", ALTIVEC_BUILTIN_VEC_VMRGLW },
7417 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmrglh", ALTIVEC_BUILTIN_VEC_VMRGLH },
7418 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmrglb", ALTIVEC_BUILTIN_VEC_VMRGLB },
7419 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_min", ALTIVEC_BUILTIN_VEC_MIN },
7420 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vminfp", ALTIVEC_BUILTIN_VEC_VMINFP },
7421 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vminsw", ALTIVEC_BUILTIN_VEC_VMINSW },
7422 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vminuw", ALTIVEC_BUILTIN_VEC_VMINUW },
7423 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vminsh", ALTIVEC_BUILTIN_VEC_VMINSH },
7424 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vminuh", ALTIVEC_BUILTIN_VEC_VMINUH },
7425 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vminsb", ALTIVEC_BUILTIN_VEC_VMINSB },
7426 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vminub", ALTIVEC_BUILTIN_VEC_VMINUB },
7427 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_mule", ALTIVEC_BUILTIN_VEC_MULE },
7428 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmuleub", ALTIVEC_BUILTIN_VEC_VMULEUB },
7429 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmulesb", ALTIVEC_BUILTIN_VEC_VMULESB },
7430 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmuleuh", ALTIVEC_BUILTIN_VEC_VMULEUH },
7431 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmulesh", ALTIVEC_BUILTIN_VEC_VMULESH },
7432 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_mulo", ALTIVEC_BUILTIN_VEC_MULO },
7433 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmulosh", ALTIVEC_BUILTIN_VEC_VMULOSH },
7434 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmulouh", ALTIVEC_BUILTIN_VEC_VMULOUH },
7435 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmulosb", ALTIVEC_BUILTIN_VEC_VMULOSB },
7436 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vmuloub", ALTIVEC_BUILTIN_VEC_VMULOUB },
7437 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_nor", ALTIVEC_BUILTIN_VEC_NOR },
7438 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_or", ALTIVEC_BUILTIN_VEC_OR },
7439 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_pack", ALTIVEC_BUILTIN_VEC_PACK },
7440 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vpkuwum", ALTIVEC_BUILTIN_VEC_VPKUWUM },
7441 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vpkuhum", ALTIVEC_BUILTIN_VEC_VPKUHUM },
7442 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_packpx", ALTIVEC_BUILTIN_VEC_PACKPX },
7443 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_packs", ALTIVEC_BUILTIN_VEC_PACKS },
7444 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vpkswss", ALTIVEC_BUILTIN_VEC_VPKSWSS },
7445 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vpkuwus", ALTIVEC_BUILTIN_VEC_VPKUWUS },
7446 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vpkshss", ALTIVEC_BUILTIN_VEC_VPKSHSS },
7447 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vpkuhus", ALTIVEC_BUILTIN_VEC_VPKUHUS },
7448 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_packsu", ALTIVEC_BUILTIN_VEC_PACKSU },
7449 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vpkswus", ALTIVEC_BUILTIN_VEC_VPKSWUS },
7450 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vpkshus", ALTIVEC_BUILTIN_VEC_VPKSHUS },
7451 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_rl", ALTIVEC_BUILTIN_VEC_RL },
7452 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vrlw", ALTIVEC_BUILTIN_VEC_VRLW },
7453 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vrlh", ALTIVEC_BUILTIN_VEC_VRLH },
7454 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vrlb", ALTIVEC_BUILTIN_VEC_VRLB },
7455 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_sl", ALTIVEC_BUILTIN_VEC_SL },
7456 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vslw", ALTIVEC_BUILTIN_VEC_VSLW },
7457 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vslh", ALTIVEC_BUILTIN_VEC_VSLH },
7458 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vslb", ALTIVEC_BUILTIN_VEC_VSLB },
7459 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_sll", ALTIVEC_BUILTIN_VEC_SLL },
7460 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_slo", ALTIVEC_BUILTIN_VEC_SLO },
7461 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_sr", ALTIVEC_BUILTIN_VEC_SR },
7462 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsrw", ALTIVEC_BUILTIN_VEC_VSRW },
7463 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsrh", ALTIVEC_BUILTIN_VEC_VSRH },
7464 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsrb", ALTIVEC_BUILTIN_VEC_VSRB },
7465 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_sra", ALTIVEC_BUILTIN_VEC_SRA },
7466 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsraw", ALTIVEC_BUILTIN_VEC_VSRAW },
7467 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsrah", ALTIVEC_BUILTIN_VEC_VSRAH },
7468 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsrab", ALTIVEC_BUILTIN_VEC_VSRAB },
7469 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_srl", ALTIVEC_BUILTIN_VEC_SRL },
7470 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_sro", ALTIVEC_BUILTIN_VEC_SRO },
7471 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_sub", ALTIVEC_BUILTIN_VEC_SUB },
7472 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsubfp", ALTIVEC_BUILTIN_VEC_VSUBFP },
7473 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsubuwm", ALTIVEC_BUILTIN_VEC_VSUBUWM },
7474 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsubuhm", ALTIVEC_BUILTIN_VEC_VSUBUHM },
7475 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsububm", ALTIVEC_BUILTIN_VEC_VSUBUBM },
7476 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_subc", ALTIVEC_BUILTIN_VEC_SUBC },
7477 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_subs", ALTIVEC_BUILTIN_VEC_SUBS },
7478 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsubsws", ALTIVEC_BUILTIN_VEC_VSUBSWS },
7479 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsubuws", ALTIVEC_BUILTIN_VEC_VSUBUWS },
7480 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsubshs", ALTIVEC_BUILTIN_VEC_VSUBSHS },
7481 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsubuhs", ALTIVEC_BUILTIN_VEC_VSUBUHS },
7482 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsubsbs", ALTIVEC_BUILTIN_VEC_VSUBSBS },
7483 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsububs", ALTIVEC_BUILTIN_VEC_VSUBUBS },
7484 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_sum4s", ALTIVEC_BUILTIN_VEC_SUM4S },
7485 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsum4shs", ALTIVEC_BUILTIN_VEC_VSUM4SHS },
7486 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsum4sbs", ALTIVEC_BUILTIN_VEC_VSUM4SBS },
7487 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vsum4ubs", ALTIVEC_BUILTIN_VEC_VSUM4UBS },
7488 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_sum2s", ALTIVEC_BUILTIN_VEC_SUM2S },
7489 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_sums", ALTIVEC_BUILTIN_VEC_SUMS },
7490 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_xor", ALTIVEC_BUILTIN_VEC_XOR },
7491
96038623
DE
7492 { 0, CODE_FOR_divv2sf3, "__builtin_paired_divv2sf3", PAIRED_BUILTIN_DIVV2SF3 },
7493 { 0, CODE_FOR_addv2sf3, "__builtin_paired_addv2sf3", PAIRED_BUILTIN_ADDV2SF3 },
7494 { 0, CODE_FOR_subv2sf3, "__builtin_paired_subv2sf3", PAIRED_BUILTIN_SUBV2SF3 },
7495 { 0, CODE_FOR_mulv2sf3, "__builtin_paired_mulv2sf3", PAIRED_BUILTIN_MULV2SF3 },
7496 { 0, CODE_FOR_paired_muls0, "__builtin_paired_muls0", PAIRED_BUILTIN_MULS0 },
7497 { 0, CODE_FOR_paired_muls1, "__builtin_paired_muls1", PAIRED_BUILTIN_MULS1 },
7498 { 0, CODE_FOR_paired_merge00, "__builtin_paired_merge00", PAIRED_BUILTIN_MERGE00 },
7499 { 0, CODE_FOR_paired_merge01, "__builtin_paired_merge01", PAIRED_BUILTIN_MERGE01 },
7500 { 0, CODE_FOR_paired_merge10, "__builtin_paired_merge10", PAIRED_BUILTIN_MERGE10 },
7501 { 0, CODE_FOR_paired_merge11, "__builtin_paired_merge11", PAIRED_BUILTIN_MERGE11 },
7502
a3170dc6
AH
7503 /* Place holder, leave as first spe builtin. */
7504 { 0, CODE_FOR_spe_evaddw, "__builtin_spe_evaddw", SPE_BUILTIN_EVADDW },
7505 { 0, CODE_FOR_spe_evand, "__builtin_spe_evand", SPE_BUILTIN_EVAND },
7506 { 0, CODE_FOR_spe_evandc, "__builtin_spe_evandc", SPE_BUILTIN_EVANDC },
7507 { 0, CODE_FOR_spe_evdivws, "__builtin_spe_evdivws", SPE_BUILTIN_EVDIVWS },
7508 { 0, CODE_FOR_spe_evdivwu, "__builtin_spe_evdivwu", SPE_BUILTIN_EVDIVWU },
7509 { 0, CODE_FOR_spe_eveqv, "__builtin_spe_eveqv", SPE_BUILTIN_EVEQV },
7510 { 0, CODE_FOR_spe_evfsadd, "__builtin_spe_evfsadd", SPE_BUILTIN_EVFSADD },
7511 { 0, CODE_FOR_spe_evfsdiv, "__builtin_spe_evfsdiv", SPE_BUILTIN_EVFSDIV },
7512 { 0, CODE_FOR_spe_evfsmul, "__builtin_spe_evfsmul", SPE_BUILTIN_EVFSMUL },
7513 { 0, CODE_FOR_spe_evfssub, "__builtin_spe_evfssub", SPE_BUILTIN_EVFSSUB },
7514 { 0, CODE_FOR_spe_evmergehi, "__builtin_spe_evmergehi", SPE_BUILTIN_EVMERGEHI },
7515 { 0, CODE_FOR_spe_evmergehilo, "__builtin_spe_evmergehilo", SPE_BUILTIN_EVMERGEHILO },
7516 { 0, CODE_FOR_spe_evmergelo, "__builtin_spe_evmergelo", SPE_BUILTIN_EVMERGELO },
7517 { 0, CODE_FOR_spe_evmergelohi, "__builtin_spe_evmergelohi", SPE_BUILTIN_EVMERGELOHI },
7518 { 0, CODE_FOR_spe_evmhegsmfaa, "__builtin_spe_evmhegsmfaa", SPE_BUILTIN_EVMHEGSMFAA },
7519 { 0, CODE_FOR_spe_evmhegsmfan, "__builtin_spe_evmhegsmfan", SPE_BUILTIN_EVMHEGSMFAN },
7520 { 0, CODE_FOR_spe_evmhegsmiaa, "__builtin_spe_evmhegsmiaa", SPE_BUILTIN_EVMHEGSMIAA },
7521 { 0, CODE_FOR_spe_evmhegsmian, "__builtin_spe_evmhegsmian", SPE_BUILTIN_EVMHEGSMIAN },
7522 { 0, CODE_FOR_spe_evmhegumiaa, "__builtin_spe_evmhegumiaa", SPE_BUILTIN_EVMHEGUMIAA },
7523 { 0, CODE_FOR_spe_evmhegumian, "__builtin_spe_evmhegumian", SPE_BUILTIN_EVMHEGUMIAN },
7524 { 0, CODE_FOR_spe_evmhesmf, "__builtin_spe_evmhesmf", SPE_BUILTIN_EVMHESMF },
7525 { 0, CODE_FOR_spe_evmhesmfa, "__builtin_spe_evmhesmfa", SPE_BUILTIN_EVMHESMFA },
7526 { 0, CODE_FOR_spe_evmhesmfaaw, "__builtin_spe_evmhesmfaaw", SPE_BUILTIN_EVMHESMFAAW },
7527 { 0, CODE_FOR_spe_evmhesmfanw, "__builtin_spe_evmhesmfanw", SPE_BUILTIN_EVMHESMFANW },
7528 { 0, CODE_FOR_spe_evmhesmi, "__builtin_spe_evmhesmi", SPE_BUILTIN_EVMHESMI },
7529 { 0, CODE_FOR_spe_evmhesmia, "__builtin_spe_evmhesmia", SPE_BUILTIN_EVMHESMIA },
7530 { 0, CODE_FOR_spe_evmhesmiaaw, "__builtin_spe_evmhesmiaaw", SPE_BUILTIN_EVMHESMIAAW },
7531 { 0, CODE_FOR_spe_evmhesmianw, "__builtin_spe_evmhesmianw", SPE_BUILTIN_EVMHESMIANW },
7532 { 0, CODE_FOR_spe_evmhessf, "__builtin_spe_evmhessf", SPE_BUILTIN_EVMHESSF },
7533 { 0, CODE_FOR_spe_evmhessfa, "__builtin_spe_evmhessfa", SPE_BUILTIN_EVMHESSFA },
7534 { 0, CODE_FOR_spe_evmhessfaaw, "__builtin_spe_evmhessfaaw", SPE_BUILTIN_EVMHESSFAAW },
7535 { 0, CODE_FOR_spe_evmhessfanw, "__builtin_spe_evmhessfanw", SPE_BUILTIN_EVMHESSFANW },
7536 { 0, CODE_FOR_spe_evmhessiaaw, "__builtin_spe_evmhessiaaw", SPE_BUILTIN_EVMHESSIAAW },
7537 { 0, CODE_FOR_spe_evmhessianw, "__builtin_spe_evmhessianw", SPE_BUILTIN_EVMHESSIANW },
7538 { 0, CODE_FOR_spe_evmheumi, "__builtin_spe_evmheumi", SPE_BUILTIN_EVMHEUMI },
7539 { 0, CODE_FOR_spe_evmheumia, "__builtin_spe_evmheumia", SPE_BUILTIN_EVMHEUMIA },
7540 { 0, CODE_FOR_spe_evmheumiaaw, "__builtin_spe_evmheumiaaw", SPE_BUILTIN_EVMHEUMIAAW },
7541 { 0, CODE_FOR_spe_evmheumianw, "__builtin_spe_evmheumianw", SPE_BUILTIN_EVMHEUMIANW },
7542 { 0, CODE_FOR_spe_evmheusiaaw, "__builtin_spe_evmheusiaaw", SPE_BUILTIN_EVMHEUSIAAW },
7543 { 0, CODE_FOR_spe_evmheusianw, "__builtin_spe_evmheusianw", SPE_BUILTIN_EVMHEUSIANW },
7544 { 0, CODE_FOR_spe_evmhogsmfaa, "__builtin_spe_evmhogsmfaa", SPE_BUILTIN_EVMHOGSMFAA },
7545 { 0, CODE_FOR_spe_evmhogsmfan, "__builtin_spe_evmhogsmfan", SPE_BUILTIN_EVMHOGSMFAN },
7546 { 0, CODE_FOR_spe_evmhogsmiaa, "__builtin_spe_evmhogsmiaa", SPE_BUILTIN_EVMHOGSMIAA },
7547 { 0, CODE_FOR_spe_evmhogsmian, "__builtin_spe_evmhogsmian", SPE_BUILTIN_EVMHOGSMIAN },
7548 { 0, CODE_FOR_spe_evmhogumiaa, "__builtin_spe_evmhogumiaa", SPE_BUILTIN_EVMHOGUMIAA },
7549 { 0, CODE_FOR_spe_evmhogumian, "__builtin_spe_evmhogumian", SPE_BUILTIN_EVMHOGUMIAN },
7550 { 0, CODE_FOR_spe_evmhosmf, "__builtin_spe_evmhosmf", SPE_BUILTIN_EVMHOSMF },
7551 { 0, CODE_FOR_spe_evmhosmfa, "__builtin_spe_evmhosmfa", SPE_BUILTIN_EVMHOSMFA },
7552 { 0, CODE_FOR_spe_evmhosmfaaw, "__builtin_spe_evmhosmfaaw", SPE_BUILTIN_EVMHOSMFAAW },
7553 { 0, CODE_FOR_spe_evmhosmfanw, "__builtin_spe_evmhosmfanw", SPE_BUILTIN_EVMHOSMFANW },
7554 { 0, CODE_FOR_spe_evmhosmi, "__builtin_spe_evmhosmi", SPE_BUILTIN_EVMHOSMI },
7555 { 0, CODE_FOR_spe_evmhosmia, "__builtin_spe_evmhosmia", SPE_BUILTIN_EVMHOSMIA },
7556 { 0, CODE_FOR_spe_evmhosmiaaw, "__builtin_spe_evmhosmiaaw", SPE_BUILTIN_EVMHOSMIAAW },
7557 { 0, CODE_FOR_spe_evmhosmianw, "__builtin_spe_evmhosmianw", SPE_BUILTIN_EVMHOSMIANW },
7558 { 0, CODE_FOR_spe_evmhossf, "__builtin_spe_evmhossf", SPE_BUILTIN_EVMHOSSF },
7559 { 0, CODE_FOR_spe_evmhossfa, "__builtin_spe_evmhossfa", SPE_BUILTIN_EVMHOSSFA },
7560 { 0, CODE_FOR_spe_evmhossfaaw, "__builtin_spe_evmhossfaaw", SPE_BUILTIN_EVMHOSSFAAW },
7561 { 0, CODE_FOR_spe_evmhossfanw, "__builtin_spe_evmhossfanw", SPE_BUILTIN_EVMHOSSFANW },
7562 { 0, CODE_FOR_spe_evmhossiaaw, "__builtin_spe_evmhossiaaw", SPE_BUILTIN_EVMHOSSIAAW },
7563 { 0, CODE_FOR_spe_evmhossianw, "__builtin_spe_evmhossianw", SPE_BUILTIN_EVMHOSSIANW },
7564 { 0, CODE_FOR_spe_evmhoumi, "__builtin_spe_evmhoumi", SPE_BUILTIN_EVMHOUMI },
7565 { 0, CODE_FOR_spe_evmhoumia, "__builtin_spe_evmhoumia", SPE_BUILTIN_EVMHOUMIA },
7566 { 0, CODE_FOR_spe_evmhoumiaaw, "__builtin_spe_evmhoumiaaw", SPE_BUILTIN_EVMHOUMIAAW },
7567 { 0, CODE_FOR_spe_evmhoumianw, "__builtin_spe_evmhoumianw", SPE_BUILTIN_EVMHOUMIANW },
7568 { 0, CODE_FOR_spe_evmhousiaaw, "__builtin_spe_evmhousiaaw", SPE_BUILTIN_EVMHOUSIAAW },
7569 { 0, CODE_FOR_spe_evmhousianw, "__builtin_spe_evmhousianw", SPE_BUILTIN_EVMHOUSIANW },
7570 { 0, CODE_FOR_spe_evmwhsmf, "__builtin_spe_evmwhsmf", SPE_BUILTIN_EVMWHSMF },
7571 { 0, CODE_FOR_spe_evmwhsmfa, "__builtin_spe_evmwhsmfa", SPE_BUILTIN_EVMWHSMFA },
7572 { 0, CODE_FOR_spe_evmwhsmi, "__builtin_spe_evmwhsmi", SPE_BUILTIN_EVMWHSMI },
7573 { 0, CODE_FOR_spe_evmwhsmia, "__builtin_spe_evmwhsmia", SPE_BUILTIN_EVMWHSMIA },
7574 { 0, CODE_FOR_spe_evmwhssf, "__builtin_spe_evmwhssf", SPE_BUILTIN_EVMWHSSF },
7575 { 0, CODE_FOR_spe_evmwhssfa, "__builtin_spe_evmwhssfa", SPE_BUILTIN_EVMWHSSFA },
7576 { 0, CODE_FOR_spe_evmwhumi, "__builtin_spe_evmwhumi", SPE_BUILTIN_EVMWHUMI },
7577 { 0, CODE_FOR_spe_evmwhumia, "__builtin_spe_evmwhumia", SPE_BUILTIN_EVMWHUMIA },
a3170dc6
AH
7578 { 0, CODE_FOR_spe_evmwlsmiaaw, "__builtin_spe_evmwlsmiaaw", SPE_BUILTIN_EVMWLSMIAAW },
7579 { 0, CODE_FOR_spe_evmwlsmianw, "__builtin_spe_evmwlsmianw", SPE_BUILTIN_EVMWLSMIANW },
a3170dc6
AH
7580 { 0, CODE_FOR_spe_evmwlssiaaw, "__builtin_spe_evmwlssiaaw", SPE_BUILTIN_EVMWLSSIAAW },
7581 { 0, CODE_FOR_spe_evmwlssianw, "__builtin_spe_evmwlssianw", SPE_BUILTIN_EVMWLSSIANW },
7582 { 0, CODE_FOR_spe_evmwlumi, "__builtin_spe_evmwlumi", SPE_BUILTIN_EVMWLUMI },
7583 { 0, CODE_FOR_spe_evmwlumia, "__builtin_spe_evmwlumia", SPE_BUILTIN_EVMWLUMIA },
7584 { 0, CODE_FOR_spe_evmwlumiaaw, "__builtin_spe_evmwlumiaaw", SPE_BUILTIN_EVMWLUMIAAW },
7585 { 0, CODE_FOR_spe_evmwlumianw, "__builtin_spe_evmwlumianw", SPE_BUILTIN_EVMWLUMIANW },
7586 { 0, CODE_FOR_spe_evmwlusiaaw, "__builtin_spe_evmwlusiaaw", SPE_BUILTIN_EVMWLUSIAAW },
7587 { 0, CODE_FOR_spe_evmwlusianw, "__builtin_spe_evmwlusianw", SPE_BUILTIN_EVMWLUSIANW },
7588 { 0, CODE_FOR_spe_evmwsmf, "__builtin_spe_evmwsmf", SPE_BUILTIN_EVMWSMF },
7589 { 0, CODE_FOR_spe_evmwsmfa, "__builtin_spe_evmwsmfa", SPE_BUILTIN_EVMWSMFA },
7590 { 0, CODE_FOR_spe_evmwsmfaa, "__builtin_spe_evmwsmfaa", SPE_BUILTIN_EVMWSMFAA },
7591 { 0, CODE_FOR_spe_evmwsmfan, "__builtin_spe_evmwsmfan", SPE_BUILTIN_EVMWSMFAN },
7592 { 0, CODE_FOR_spe_evmwsmi, "__builtin_spe_evmwsmi", SPE_BUILTIN_EVMWSMI },
7593 { 0, CODE_FOR_spe_evmwsmia, "__builtin_spe_evmwsmia", SPE_BUILTIN_EVMWSMIA },
7594 { 0, CODE_FOR_spe_evmwsmiaa, "__builtin_spe_evmwsmiaa", SPE_BUILTIN_EVMWSMIAA },
7595 { 0, CODE_FOR_spe_evmwsmian, "__builtin_spe_evmwsmian", SPE_BUILTIN_EVMWSMIAN },
7596 { 0, CODE_FOR_spe_evmwssf, "__builtin_spe_evmwssf", SPE_BUILTIN_EVMWSSF },
7597 { 0, CODE_FOR_spe_evmwssfa, "__builtin_spe_evmwssfa", SPE_BUILTIN_EVMWSSFA },
7598 { 0, CODE_FOR_spe_evmwssfaa, "__builtin_spe_evmwssfaa", SPE_BUILTIN_EVMWSSFAA },
7599 { 0, CODE_FOR_spe_evmwssfan, "__builtin_spe_evmwssfan", SPE_BUILTIN_EVMWSSFAN },
7600 { 0, CODE_FOR_spe_evmwumi, "__builtin_spe_evmwumi", SPE_BUILTIN_EVMWUMI },
7601 { 0, CODE_FOR_spe_evmwumia, "__builtin_spe_evmwumia", SPE_BUILTIN_EVMWUMIA },
7602 { 0, CODE_FOR_spe_evmwumiaa, "__builtin_spe_evmwumiaa", SPE_BUILTIN_EVMWUMIAA },
7603 { 0, CODE_FOR_spe_evmwumian, "__builtin_spe_evmwumian", SPE_BUILTIN_EVMWUMIAN },
7604 { 0, CODE_FOR_spe_evnand, "__builtin_spe_evnand", SPE_BUILTIN_EVNAND },
7605 { 0, CODE_FOR_spe_evnor, "__builtin_spe_evnor", SPE_BUILTIN_EVNOR },
7606 { 0, CODE_FOR_spe_evor, "__builtin_spe_evor", SPE_BUILTIN_EVOR },
7607 { 0, CODE_FOR_spe_evorc, "__builtin_spe_evorc", SPE_BUILTIN_EVORC },
7608 { 0, CODE_FOR_spe_evrlw, "__builtin_spe_evrlw", SPE_BUILTIN_EVRLW },
7609 { 0, CODE_FOR_spe_evslw, "__builtin_spe_evslw", SPE_BUILTIN_EVSLW },
7610 { 0, CODE_FOR_spe_evsrws, "__builtin_spe_evsrws", SPE_BUILTIN_EVSRWS },
7611 { 0, CODE_FOR_spe_evsrwu, "__builtin_spe_evsrwu", SPE_BUILTIN_EVSRWU },
7612 { 0, CODE_FOR_spe_evsubfw, "__builtin_spe_evsubfw", SPE_BUILTIN_EVSUBFW },
7613
7614 /* SPE binary operations expecting a 5-bit unsigned literal. */
7615 { 0, CODE_FOR_spe_evaddiw, "__builtin_spe_evaddiw", SPE_BUILTIN_EVADDIW },
7616
7617 { 0, CODE_FOR_spe_evrlwi, "__builtin_spe_evrlwi", SPE_BUILTIN_EVRLWI },
7618 { 0, CODE_FOR_spe_evslwi, "__builtin_spe_evslwi", SPE_BUILTIN_EVSLWI },
7619 { 0, CODE_FOR_spe_evsrwis, "__builtin_spe_evsrwis", SPE_BUILTIN_EVSRWIS },
7620 { 0, CODE_FOR_spe_evsrwiu, "__builtin_spe_evsrwiu", SPE_BUILTIN_EVSRWIU },
7621 { 0, CODE_FOR_spe_evsubifw, "__builtin_spe_evsubifw", SPE_BUILTIN_EVSUBIFW },
7622 { 0, CODE_FOR_spe_evmwhssfaa, "__builtin_spe_evmwhssfaa", SPE_BUILTIN_EVMWHSSFAA },
7623 { 0, CODE_FOR_spe_evmwhssmaa, "__builtin_spe_evmwhssmaa", SPE_BUILTIN_EVMWHSSMAA },
7624 { 0, CODE_FOR_spe_evmwhsmfaa, "__builtin_spe_evmwhsmfaa", SPE_BUILTIN_EVMWHSMFAA },
7625 { 0, CODE_FOR_spe_evmwhsmiaa, "__builtin_spe_evmwhsmiaa", SPE_BUILTIN_EVMWHSMIAA },
7626 { 0, CODE_FOR_spe_evmwhusiaa, "__builtin_spe_evmwhusiaa", SPE_BUILTIN_EVMWHUSIAA },
7627 { 0, CODE_FOR_spe_evmwhumiaa, "__builtin_spe_evmwhumiaa", SPE_BUILTIN_EVMWHUMIAA },
7628 { 0, CODE_FOR_spe_evmwhssfan, "__builtin_spe_evmwhssfan", SPE_BUILTIN_EVMWHSSFAN },
7629 { 0, CODE_FOR_spe_evmwhssian, "__builtin_spe_evmwhssian", SPE_BUILTIN_EVMWHSSIAN },
7630 { 0, CODE_FOR_spe_evmwhsmfan, "__builtin_spe_evmwhsmfan", SPE_BUILTIN_EVMWHSMFAN },
7631 { 0, CODE_FOR_spe_evmwhsmian, "__builtin_spe_evmwhsmian", SPE_BUILTIN_EVMWHSMIAN },
7632 { 0, CODE_FOR_spe_evmwhusian, "__builtin_spe_evmwhusian", SPE_BUILTIN_EVMWHUSIAN },
7633 { 0, CODE_FOR_spe_evmwhumian, "__builtin_spe_evmwhumian", SPE_BUILTIN_EVMWHUMIAN },
7634 { 0, CODE_FOR_spe_evmwhgssfaa, "__builtin_spe_evmwhgssfaa", SPE_BUILTIN_EVMWHGSSFAA },
7635 { 0, CODE_FOR_spe_evmwhgsmfaa, "__builtin_spe_evmwhgsmfaa", SPE_BUILTIN_EVMWHGSMFAA },
7636 { 0, CODE_FOR_spe_evmwhgsmiaa, "__builtin_spe_evmwhgsmiaa", SPE_BUILTIN_EVMWHGSMIAA },
7637 { 0, CODE_FOR_spe_evmwhgumiaa, "__builtin_spe_evmwhgumiaa", SPE_BUILTIN_EVMWHGUMIAA },
7638 { 0, CODE_FOR_spe_evmwhgssfan, "__builtin_spe_evmwhgssfan", SPE_BUILTIN_EVMWHGSSFAN },
7639 { 0, CODE_FOR_spe_evmwhgsmfan, "__builtin_spe_evmwhgsmfan", SPE_BUILTIN_EVMWHGSMFAN },
7640 { 0, CODE_FOR_spe_evmwhgsmian, "__builtin_spe_evmwhgsmian", SPE_BUILTIN_EVMWHGSMIAN },
7641 { 0, CODE_FOR_spe_evmwhgumian, "__builtin_spe_evmwhgumian", SPE_BUILTIN_EVMWHGUMIAN },
7642 { 0, CODE_FOR_spe_brinc, "__builtin_spe_brinc", SPE_BUILTIN_BRINC },
7643
7644 /* Place-holder. Leave as last binary SPE builtin. */
58646b77 7645 { 0, CODE_FOR_xorv2si3, "__builtin_spe_evxor", SPE_BUILTIN_EVXOR }
ae4b4a02
AH
7646};
7647
7648/* AltiVec predicates. */
7649
7650struct builtin_description_predicates
7651{
7652 const unsigned int mask;
7653 const enum insn_code icode;
7654 const char *opcode;
7655 const char *const name;
7656 const enum rs6000_builtins code;
7657};
7658
7659static const struct builtin_description_predicates bdesc_altivec_preds[] =
7660{
7661 { MASK_ALTIVEC, CODE_FOR_altivec_predicate_v4sf, "*vcmpbfp.", "__builtin_altivec_vcmpbfp_p", ALTIVEC_BUILTIN_VCMPBFP_P },
7662 { MASK_ALTIVEC, CODE_FOR_altivec_predicate_v4sf, "*vcmpeqfp.", "__builtin_altivec_vcmpeqfp_p", ALTIVEC_BUILTIN_VCMPEQFP_P },
7663 { MASK_ALTIVEC, CODE_FOR_altivec_predicate_v4sf, "*vcmpgefp.", "__builtin_altivec_vcmpgefp_p", ALTIVEC_BUILTIN_VCMPGEFP_P },
7664 { MASK_ALTIVEC, CODE_FOR_altivec_predicate_v4sf, "*vcmpgtfp.", "__builtin_altivec_vcmpgtfp_p", ALTIVEC_BUILTIN_VCMPGTFP_P },
7665 { MASK_ALTIVEC, CODE_FOR_altivec_predicate_v4si, "*vcmpequw.", "__builtin_altivec_vcmpequw_p", ALTIVEC_BUILTIN_VCMPEQUW_P },
7666 { MASK_ALTIVEC, CODE_FOR_altivec_predicate_v4si, "*vcmpgtsw.", "__builtin_altivec_vcmpgtsw_p", ALTIVEC_BUILTIN_VCMPGTSW_P },
7667 { MASK_ALTIVEC, CODE_FOR_altivec_predicate_v4si, "*vcmpgtuw.", "__builtin_altivec_vcmpgtuw_p", ALTIVEC_BUILTIN_VCMPGTUW_P },
7668 { MASK_ALTIVEC, CODE_FOR_altivec_predicate_v8hi, "*vcmpgtuh.", "__builtin_altivec_vcmpgtuh_p", ALTIVEC_BUILTIN_VCMPGTUH_P },
7669 { MASK_ALTIVEC, CODE_FOR_altivec_predicate_v8hi, "*vcmpgtsh.", "__builtin_altivec_vcmpgtsh_p", ALTIVEC_BUILTIN_VCMPGTSH_P },
7670 { MASK_ALTIVEC, CODE_FOR_altivec_predicate_v8hi, "*vcmpequh.", "__builtin_altivec_vcmpequh_p", ALTIVEC_BUILTIN_VCMPEQUH_P },
7671 { MASK_ALTIVEC, CODE_FOR_altivec_predicate_v16qi, "*vcmpequb.", "__builtin_altivec_vcmpequb_p", ALTIVEC_BUILTIN_VCMPEQUB_P },
7672 { MASK_ALTIVEC, CODE_FOR_altivec_predicate_v16qi, "*vcmpgtsb.", "__builtin_altivec_vcmpgtsb_p", ALTIVEC_BUILTIN_VCMPGTSB_P },
58646b77
PB
7673 { MASK_ALTIVEC, CODE_FOR_altivec_predicate_v16qi, "*vcmpgtub.", "__builtin_altivec_vcmpgtub_p", ALTIVEC_BUILTIN_VCMPGTUB_P },
7674
7675 { MASK_ALTIVEC, 0, NULL, "__builtin_vec_vcmpeq_p", ALTIVEC_BUILTIN_VCMPEQ_P },
7676 { MASK_ALTIVEC, 0, NULL, "__builtin_vec_vcmpgt_p", ALTIVEC_BUILTIN_VCMPGT_P },
7677 { MASK_ALTIVEC, 0, NULL, "__builtin_vec_vcmpge_p", ALTIVEC_BUILTIN_VCMPGE_P }
0ac081f6 7678};
24408032 7679
a3170dc6
AH
7680/* SPE predicates. */
7681static struct builtin_description bdesc_spe_predicates[] =
7682{
7683 /* Place-holder. Leave as first. */
7684 { 0, CODE_FOR_spe_evcmpeq, "__builtin_spe_evcmpeq", SPE_BUILTIN_EVCMPEQ },
7685 { 0, CODE_FOR_spe_evcmpgts, "__builtin_spe_evcmpgts", SPE_BUILTIN_EVCMPGTS },
7686 { 0, CODE_FOR_spe_evcmpgtu, "__builtin_spe_evcmpgtu", SPE_BUILTIN_EVCMPGTU },
7687 { 0, CODE_FOR_spe_evcmplts, "__builtin_spe_evcmplts", SPE_BUILTIN_EVCMPLTS },
7688 { 0, CODE_FOR_spe_evcmpltu, "__builtin_spe_evcmpltu", SPE_BUILTIN_EVCMPLTU },
7689 { 0, CODE_FOR_spe_evfscmpeq, "__builtin_spe_evfscmpeq", SPE_BUILTIN_EVFSCMPEQ },
7690 { 0, CODE_FOR_spe_evfscmpgt, "__builtin_spe_evfscmpgt", SPE_BUILTIN_EVFSCMPGT },
7691 { 0, CODE_FOR_spe_evfscmplt, "__builtin_spe_evfscmplt", SPE_BUILTIN_EVFSCMPLT },
7692 { 0, CODE_FOR_spe_evfststeq, "__builtin_spe_evfststeq", SPE_BUILTIN_EVFSTSTEQ },
7693 { 0, CODE_FOR_spe_evfststgt, "__builtin_spe_evfststgt", SPE_BUILTIN_EVFSTSTGT },
7694 /* Place-holder. Leave as last. */
7695 { 0, CODE_FOR_spe_evfststlt, "__builtin_spe_evfststlt", SPE_BUILTIN_EVFSTSTLT },
7696};
7697
7698/* SPE evsel predicates. */
7699static struct builtin_description bdesc_spe_evsel[] =
7700{
7701 /* Place-holder. Leave as first. */
7702 { 0, CODE_FOR_spe_evcmpgts, "__builtin_spe_evsel_gts", SPE_BUILTIN_EVSEL_CMPGTS },
7703 { 0, CODE_FOR_spe_evcmpgtu, "__builtin_spe_evsel_gtu", SPE_BUILTIN_EVSEL_CMPGTU },
7704 { 0, CODE_FOR_spe_evcmplts, "__builtin_spe_evsel_lts", SPE_BUILTIN_EVSEL_CMPLTS },
7705 { 0, CODE_FOR_spe_evcmpltu, "__builtin_spe_evsel_ltu", SPE_BUILTIN_EVSEL_CMPLTU },
7706 { 0, CODE_FOR_spe_evcmpeq, "__builtin_spe_evsel_eq", SPE_BUILTIN_EVSEL_CMPEQ },
7707 { 0, CODE_FOR_spe_evfscmpgt, "__builtin_spe_evsel_fsgt", SPE_BUILTIN_EVSEL_FSCMPGT },
7708 { 0, CODE_FOR_spe_evfscmplt, "__builtin_spe_evsel_fslt", SPE_BUILTIN_EVSEL_FSCMPLT },
7709 { 0, CODE_FOR_spe_evfscmpeq, "__builtin_spe_evsel_fseq", SPE_BUILTIN_EVSEL_FSCMPEQ },
7710 { 0, CODE_FOR_spe_evfststgt, "__builtin_spe_evsel_fststgt", SPE_BUILTIN_EVSEL_FSTSTGT },
7711 { 0, CODE_FOR_spe_evfststlt, "__builtin_spe_evsel_fststlt", SPE_BUILTIN_EVSEL_FSTSTLT },
7712 /* Place-holder. Leave as last. */
7713 { 0, CODE_FOR_spe_evfststeq, "__builtin_spe_evsel_fststeq", SPE_BUILTIN_EVSEL_FSTSTEQ },
7714};
7715
96038623
DE
7716/* PAIRED predicates. */
7717static const struct builtin_description bdesc_paired_preds[] =
7718{
7719 /* Place-holder. Leave as first. */
7720 { 0, CODE_FOR_paired_cmpu0, "__builtin_paired_cmpu0", PAIRED_BUILTIN_CMPU0 },
7721 /* Place-holder. Leave as last. */
7722 { 0, CODE_FOR_paired_cmpu1, "__builtin_paired_cmpu1", PAIRED_BUILTIN_CMPU1 },
7723};
7724
b6d08ca1 7725/* ABS* operations. */
100c4561
AH
7726
7727static const struct builtin_description bdesc_abs[] =
7728{
7729 { MASK_ALTIVEC, CODE_FOR_absv4si2, "__builtin_altivec_abs_v4si", ALTIVEC_BUILTIN_ABS_V4SI },
7730 { MASK_ALTIVEC, CODE_FOR_absv8hi2, "__builtin_altivec_abs_v8hi", ALTIVEC_BUILTIN_ABS_V8HI },
7731 { MASK_ALTIVEC, CODE_FOR_absv4sf2, "__builtin_altivec_abs_v4sf", ALTIVEC_BUILTIN_ABS_V4SF },
7732 { MASK_ALTIVEC, CODE_FOR_absv16qi2, "__builtin_altivec_abs_v16qi", ALTIVEC_BUILTIN_ABS_V16QI },
7733 { MASK_ALTIVEC, CODE_FOR_altivec_abss_v4si, "__builtin_altivec_abss_v4si", ALTIVEC_BUILTIN_ABSS_V4SI },
7734 { MASK_ALTIVEC, CODE_FOR_altivec_abss_v8hi, "__builtin_altivec_abss_v8hi", ALTIVEC_BUILTIN_ABSS_V8HI },
7735 { MASK_ALTIVEC, CODE_FOR_altivec_abss_v16qi, "__builtin_altivec_abss_v16qi", ALTIVEC_BUILTIN_ABSS_V16QI }
7736};
7737
617e0e1d
DB
7738/* Simple unary operations: VECb = foo (unsigned literal) or VECb =
7739 foo (VECa). */
24408032 7740
a3170dc6 7741static struct builtin_description bdesc_1arg[] =
2212663f 7742{
617e0e1d
DB
7743 { MASK_ALTIVEC, CODE_FOR_altivec_vexptefp, "__builtin_altivec_vexptefp", ALTIVEC_BUILTIN_VEXPTEFP },
7744 { MASK_ALTIVEC, CODE_FOR_altivec_vlogefp, "__builtin_altivec_vlogefp", ALTIVEC_BUILTIN_VLOGEFP },
7745 { MASK_ALTIVEC, CODE_FOR_altivec_vrefp, "__builtin_altivec_vrefp", ALTIVEC_BUILTIN_VREFP },
7746 { MASK_ALTIVEC, CODE_FOR_altivec_vrfim, "__builtin_altivec_vrfim", ALTIVEC_BUILTIN_VRFIM },
7747 { MASK_ALTIVEC, CODE_FOR_altivec_vrfin, "__builtin_altivec_vrfin", ALTIVEC_BUILTIN_VRFIN },
7748 { MASK_ALTIVEC, CODE_FOR_altivec_vrfip, "__builtin_altivec_vrfip", ALTIVEC_BUILTIN_VRFIP },
7749 { MASK_ALTIVEC, CODE_FOR_ftruncv4sf2, "__builtin_altivec_vrfiz", ALTIVEC_BUILTIN_VRFIZ },
7750 { MASK_ALTIVEC, CODE_FOR_altivec_vrsqrtefp, "__builtin_altivec_vrsqrtefp", ALTIVEC_BUILTIN_VRSQRTEFP },
2212663f
DB
7751 { MASK_ALTIVEC, CODE_FOR_altivec_vspltisb, "__builtin_altivec_vspltisb", ALTIVEC_BUILTIN_VSPLTISB },
7752 { MASK_ALTIVEC, CODE_FOR_altivec_vspltish, "__builtin_altivec_vspltish", ALTIVEC_BUILTIN_VSPLTISH },
7753 { MASK_ALTIVEC, CODE_FOR_altivec_vspltisw, "__builtin_altivec_vspltisw", ALTIVEC_BUILTIN_VSPLTISW },
20e26713
AH
7754 { MASK_ALTIVEC, CODE_FOR_altivec_vupkhsb, "__builtin_altivec_vupkhsb", ALTIVEC_BUILTIN_VUPKHSB },
7755 { MASK_ALTIVEC, CODE_FOR_altivec_vupkhpx, "__builtin_altivec_vupkhpx", ALTIVEC_BUILTIN_VUPKHPX },
7756 { MASK_ALTIVEC, CODE_FOR_altivec_vupkhsh, "__builtin_altivec_vupkhsh", ALTIVEC_BUILTIN_VUPKHSH },
7757 { MASK_ALTIVEC, CODE_FOR_altivec_vupklsb, "__builtin_altivec_vupklsb", ALTIVEC_BUILTIN_VUPKLSB },
7758 { MASK_ALTIVEC, CODE_FOR_altivec_vupklpx, "__builtin_altivec_vupklpx", ALTIVEC_BUILTIN_VUPKLPX },
7759 { MASK_ALTIVEC, CODE_FOR_altivec_vupklsh, "__builtin_altivec_vupklsh", ALTIVEC_BUILTIN_VUPKLSH },
a3170dc6 7760
58646b77
PB
7761 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_abs", ALTIVEC_BUILTIN_VEC_ABS },
7762 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_abss", ALTIVEC_BUILTIN_VEC_ABSS },
7763 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_ceil", ALTIVEC_BUILTIN_VEC_CEIL },
7764 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_expte", ALTIVEC_BUILTIN_VEC_EXPTE },
7765 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_floor", ALTIVEC_BUILTIN_VEC_FLOOR },
7766 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_loge", ALTIVEC_BUILTIN_VEC_LOGE },
7767 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_mtvscr", ALTIVEC_BUILTIN_VEC_MTVSCR },
7768 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_re", ALTIVEC_BUILTIN_VEC_RE },
7769 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_round", ALTIVEC_BUILTIN_VEC_ROUND },
7770 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_rsqrte", ALTIVEC_BUILTIN_VEC_RSQRTE },
7771 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_trunc", ALTIVEC_BUILTIN_VEC_TRUNC },
7772 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_unpackh", ALTIVEC_BUILTIN_VEC_UNPACKH },
7773 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vupkhsh", ALTIVEC_BUILTIN_VEC_VUPKHSH },
7774 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vupkhpx", ALTIVEC_BUILTIN_VEC_VUPKHPX },
7775 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vupkhsb", ALTIVEC_BUILTIN_VEC_VUPKHSB },
7776 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_unpackl", ALTIVEC_BUILTIN_VEC_UNPACKL },
7777 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vupklpx", ALTIVEC_BUILTIN_VEC_VUPKLPX },
7778 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vupklsh", ALTIVEC_BUILTIN_VEC_VUPKLSH },
7779 { MASK_ALTIVEC, CODE_FOR_nothing, "__builtin_vec_vupklsb", ALTIVEC_BUILTIN_VEC_VUPKLSB },
7780
a3170dc6
AH
7781 /* The SPE unary builtins must start with SPE_BUILTIN_EVABS and
7782 end with SPE_BUILTIN_EVSUBFUSIAAW. */
7783 { 0, CODE_FOR_spe_evabs, "__builtin_spe_evabs", SPE_BUILTIN_EVABS },
7784 { 0, CODE_FOR_spe_evaddsmiaaw, "__builtin_spe_evaddsmiaaw", SPE_BUILTIN_EVADDSMIAAW },
7785 { 0, CODE_FOR_spe_evaddssiaaw, "__builtin_spe_evaddssiaaw", SPE_BUILTIN_EVADDSSIAAW },
7786 { 0, CODE_FOR_spe_evaddumiaaw, "__builtin_spe_evaddumiaaw", SPE_BUILTIN_EVADDUMIAAW },
7787 { 0, CODE_FOR_spe_evaddusiaaw, "__builtin_spe_evaddusiaaw", SPE_BUILTIN_EVADDUSIAAW },
7788 { 0, CODE_FOR_spe_evcntlsw, "__builtin_spe_evcntlsw", SPE_BUILTIN_EVCNTLSW },
7789 { 0, CODE_FOR_spe_evcntlzw, "__builtin_spe_evcntlzw", SPE_BUILTIN_EVCNTLZW },
7790 { 0, CODE_FOR_spe_evextsb, "__builtin_spe_evextsb", SPE_BUILTIN_EVEXTSB },
7791 { 0, CODE_FOR_spe_evextsh, "__builtin_spe_evextsh", SPE_BUILTIN_EVEXTSH },
7792 { 0, CODE_FOR_spe_evfsabs, "__builtin_spe_evfsabs", SPE_BUILTIN_EVFSABS },
7793 { 0, CODE_FOR_spe_evfscfsf, "__builtin_spe_evfscfsf", SPE_BUILTIN_EVFSCFSF },
7794 { 0, CODE_FOR_spe_evfscfsi, "__builtin_spe_evfscfsi", SPE_BUILTIN_EVFSCFSI },
7795 { 0, CODE_FOR_spe_evfscfuf, "__builtin_spe_evfscfuf", SPE_BUILTIN_EVFSCFUF },
7796 { 0, CODE_FOR_spe_evfscfui, "__builtin_spe_evfscfui", SPE_BUILTIN_EVFSCFUI },
7797 { 0, CODE_FOR_spe_evfsctsf, "__builtin_spe_evfsctsf", SPE_BUILTIN_EVFSCTSF },
7798 { 0, CODE_FOR_spe_evfsctsi, "__builtin_spe_evfsctsi", SPE_BUILTIN_EVFSCTSI },
7799 { 0, CODE_FOR_spe_evfsctsiz, "__builtin_spe_evfsctsiz", SPE_BUILTIN_EVFSCTSIZ },
7800 { 0, CODE_FOR_spe_evfsctuf, "__builtin_spe_evfsctuf", SPE_BUILTIN_EVFSCTUF },
7801 { 0, CODE_FOR_spe_evfsctui, "__builtin_spe_evfsctui", SPE_BUILTIN_EVFSCTUI },
7802 { 0, CODE_FOR_spe_evfsctuiz, "__builtin_spe_evfsctuiz", SPE_BUILTIN_EVFSCTUIZ },
7803 { 0, CODE_FOR_spe_evfsnabs, "__builtin_spe_evfsnabs", SPE_BUILTIN_EVFSNABS },
7804 { 0, CODE_FOR_spe_evfsneg, "__builtin_spe_evfsneg", SPE_BUILTIN_EVFSNEG },
7805 { 0, CODE_FOR_spe_evmra, "__builtin_spe_evmra", SPE_BUILTIN_EVMRA },
6a599451 7806 { 0, CODE_FOR_negv2si2, "__builtin_spe_evneg", SPE_BUILTIN_EVNEG },
a3170dc6
AH
7807 { 0, CODE_FOR_spe_evrndw, "__builtin_spe_evrndw", SPE_BUILTIN_EVRNDW },
7808 { 0, CODE_FOR_spe_evsubfsmiaaw, "__builtin_spe_evsubfsmiaaw", SPE_BUILTIN_EVSUBFSMIAAW },
7809 { 0, CODE_FOR_spe_evsubfssiaaw, "__builtin_spe_evsubfssiaaw", SPE_BUILTIN_EVSUBFSSIAAW },
7810 { 0, CODE_FOR_spe_evsubfumiaaw, "__builtin_spe_evsubfumiaaw", SPE_BUILTIN_EVSUBFUMIAAW },
a3170dc6
AH
7811
7812 /* Place-holder. Leave as last unary SPE builtin. */
96038623
DE
7813 { 0, CODE_FOR_spe_evsubfusiaaw, "__builtin_spe_evsubfusiaaw", SPE_BUILTIN_EVSUBFUSIAAW },
7814
7815 { 0, CODE_FOR_absv2sf2, "__builtin_paired_absv2sf2", PAIRED_BUILTIN_ABSV2SF2 },
7816 { 0, CODE_FOR_nabsv2sf2, "__builtin_paired_nabsv2sf2", PAIRED_BUILTIN_NABSV2SF2 },
7817 { 0, CODE_FOR_negv2sf2, "__builtin_paired_negv2sf2", PAIRED_BUILTIN_NEGV2SF2 },
7818 { 0, CODE_FOR_sqrtv2sf2, "__builtin_paired_sqrtv2sf2", PAIRED_BUILTIN_SQRTV2SF2 },
7819 { 0, CODE_FOR_resv2sf2, "__builtin_paired_resv2sf2", PAIRED_BUILTIN_RESV2SF2 }
2212663f
DB
7820};
7821
7822static rtx
5039610b 7823rs6000_expand_unop_builtin (enum insn_code icode, tree exp, rtx target)
2212663f
DB
7824{
7825 rtx pat;
5039610b 7826 tree arg0 = CALL_EXPR_ARG (exp, 0);
84217346 7827 rtx op0 = expand_normal (arg0);
2212663f
DB
7828 enum machine_mode tmode = insn_data[icode].operand[0].mode;
7829 enum machine_mode mode0 = insn_data[icode].operand[1].mode;
7830
0559cc77
DE
7831 if (icode == CODE_FOR_nothing)
7832 /* Builtin not supported on this processor. */
7833 return 0;
7834
20e26713
AH
7835 /* If we got invalid arguments bail out before generating bad rtl. */
7836 if (arg0 == error_mark_node)
9a171fcd 7837 return const0_rtx;
20e26713 7838
0559cc77
DE
7839 if (icode == CODE_FOR_altivec_vspltisb
7840 || icode == CODE_FOR_altivec_vspltish
7841 || icode == CODE_FOR_altivec_vspltisw
7842 || icode == CODE_FOR_spe_evsplatfi
7843 || icode == CODE_FOR_spe_evsplati)
b44140e7
AH
7844 {
7845 /* Only allow 5-bit *signed* literals. */
b44140e7 7846 if (GET_CODE (op0) != CONST_INT
afca671b
DP
7847 || INTVAL (op0) > 15
7848 || INTVAL (op0) < -16)
b44140e7
AH
7849 {
7850 error ("argument 1 must be a 5-bit signed literal");
9a171fcd 7851 return const0_rtx;
b44140e7 7852 }
b44140e7
AH
7853 }
7854
c62f2db5 7855 if (target == 0
2212663f
DB
7856 || GET_MODE (target) != tmode
7857 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
7858 target = gen_reg_rtx (tmode);
7859
7860 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
7861 op0 = copy_to_mode_reg (mode0, op0);
7862
7863 pat = GEN_FCN (icode) (target, op0);
7864 if (! pat)
7865 return 0;
7866 emit_insn (pat);
0ac081f6 7867
2212663f
DB
7868 return target;
7869}
ae4b4a02 7870
100c4561 7871static rtx
5039610b 7872altivec_expand_abs_builtin (enum insn_code icode, tree exp, rtx target)
100c4561
AH
7873{
7874 rtx pat, scratch1, scratch2;
5039610b 7875 tree arg0 = CALL_EXPR_ARG (exp, 0);
84217346 7876 rtx op0 = expand_normal (arg0);
100c4561
AH
7877 enum machine_mode tmode = insn_data[icode].operand[0].mode;
7878 enum machine_mode mode0 = insn_data[icode].operand[1].mode;
7879
7880 /* If we have invalid arguments, bail out before generating bad rtl. */
7881 if (arg0 == error_mark_node)
9a171fcd 7882 return const0_rtx;
100c4561
AH
7883
7884 if (target == 0
7885 || GET_MODE (target) != tmode
7886 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
7887 target = gen_reg_rtx (tmode);
7888
7889 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
7890 op0 = copy_to_mode_reg (mode0, op0);
7891
7892 scratch1 = gen_reg_rtx (mode0);
7893 scratch2 = gen_reg_rtx (mode0);
7894
7895 pat = GEN_FCN (icode) (target, op0, scratch1, scratch2);
7896 if (! pat)
7897 return 0;
7898 emit_insn (pat);
7899
7900 return target;
7901}
7902
0ac081f6 7903static rtx
5039610b 7904rs6000_expand_binop_builtin (enum insn_code icode, tree exp, rtx target)
0ac081f6
AH
7905{
7906 rtx pat;
5039610b
SL
7907 tree arg0 = CALL_EXPR_ARG (exp, 0);
7908 tree arg1 = CALL_EXPR_ARG (exp, 1);
84217346
MD
7909 rtx op0 = expand_normal (arg0);
7910 rtx op1 = expand_normal (arg1);
0ac081f6
AH
7911 enum machine_mode tmode = insn_data[icode].operand[0].mode;
7912 enum machine_mode mode0 = insn_data[icode].operand[1].mode;
7913 enum machine_mode mode1 = insn_data[icode].operand[2].mode;
7914
0559cc77
DE
7915 if (icode == CODE_FOR_nothing)
7916 /* Builtin not supported on this processor. */
7917 return 0;
7918
20e26713
AH
7919 /* If we got invalid arguments bail out before generating bad rtl. */
7920 if (arg0 == error_mark_node || arg1 == error_mark_node)
9a171fcd 7921 return const0_rtx;
20e26713 7922
0559cc77
DE
7923 if (icode == CODE_FOR_altivec_vcfux
7924 || icode == CODE_FOR_altivec_vcfsx
7925 || icode == CODE_FOR_altivec_vctsxs
7926 || icode == CODE_FOR_altivec_vctuxs
7927 || icode == CODE_FOR_altivec_vspltb
7928 || icode == CODE_FOR_altivec_vsplth
7929 || icode == CODE_FOR_altivec_vspltw
7930 || icode == CODE_FOR_spe_evaddiw
7931 || icode == CODE_FOR_spe_evldd
7932 || icode == CODE_FOR_spe_evldh
7933 || icode == CODE_FOR_spe_evldw
7934 || icode == CODE_FOR_spe_evlhhesplat
7935 || icode == CODE_FOR_spe_evlhhossplat
7936 || icode == CODE_FOR_spe_evlhhousplat
7937 || icode == CODE_FOR_spe_evlwhe
7938 || icode == CODE_FOR_spe_evlwhos
7939 || icode == CODE_FOR_spe_evlwhou
7940 || icode == CODE_FOR_spe_evlwhsplat
7941 || icode == CODE_FOR_spe_evlwwsplat
7942 || icode == CODE_FOR_spe_evrlwi
7943 || icode == CODE_FOR_spe_evslwi
7944 || icode == CODE_FOR_spe_evsrwis
f5119d10 7945 || icode == CODE_FOR_spe_evsubifw
0559cc77 7946 || icode == CODE_FOR_spe_evsrwiu)
b44140e7
AH
7947 {
7948 /* Only allow 5-bit unsigned literals. */
8bb418a3 7949 STRIP_NOPS (arg1);
b44140e7
AH
7950 if (TREE_CODE (arg1) != INTEGER_CST
7951 || TREE_INT_CST_LOW (arg1) & ~0x1f)
7952 {
7953 error ("argument 2 must be a 5-bit unsigned literal");
9a171fcd 7954 return const0_rtx;
b44140e7 7955 }
b44140e7
AH
7956 }
7957
c62f2db5 7958 if (target == 0
0ac081f6
AH
7959 || GET_MODE (target) != tmode
7960 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
7961 target = gen_reg_rtx (tmode);
7962
7963 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
7964 op0 = copy_to_mode_reg (mode0, op0);
7965 if (! (*insn_data[icode].operand[2].predicate) (op1, mode1))
7966 op1 = copy_to_mode_reg (mode1, op1);
7967
7968 pat = GEN_FCN (icode) (target, op0, op1);
7969 if (! pat)
7970 return 0;
7971 emit_insn (pat);
7972
7973 return target;
7974}
6525c0e7 7975
ae4b4a02 7976static rtx
f676971a 7977altivec_expand_predicate_builtin (enum insn_code icode, const char *opcode,
5039610b 7978 tree exp, rtx target)
ae4b4a02
AH
7979{
7980 rtx pat, scratch;
5039610b
SL
7981 tree cr6_form = CALL_EXPR_ARG (exp, 0);
7982 tree arg0 = CALL_EXPR_ARG (exp, 1);
7983 tree arg1 = CALL_EXPR_ARG (exp, 2);
84217346
MD
7984 rtx op0 = expand_normal (arg0);
7985 rtx op1 = expand_normal (arg1);
ae4b4a02
AH
7986 enum machine_mode tmode = SImode;
7987 enum machine_mode mode0 = insn_data[icode].operand[1].mode;
7988 enum machine_mode mode1 = insn_data[icode].operand[2].mode;
7989 int cr6_form_int;
7990
7991 if (TREE_CODE (cr6_form) != INTEGER_CST)
7992 {
7993 error ("argument 1 of __builtin_altivec_predicate must be a constant");
9a171fcd 7994 return const0_rtx;
ae4b4a02
AH
7995 }
7996 else
7997 cr6_form_int = TREE_INT_CST_LOW (cr6_form);
7998
37409796 7999 gcc_assert (mode0 == mode1);
ae4b4a02
AH
8000
8001 /* If we have invalid arguments, bail out before generating bad rtl. */
8002 if (arg0 == error_mark_node || arg1 == error_mark_node)
9a171fcd 8003 return const0_rtx;
ae4b4a02
AH
8004
8005 if (target == 0
8006 || GET_MODE (target) != tmode
8007 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
8008 target = gen_reg_rtx (tmode);
8009
8010 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
8011 op0 = copy_to_mode_reg (mode0, op0);
8012 if (! (*insn_data[icode].operand[2].predicate) (op1, mode1))
8013 op1 = copy_to_mode_reg (mode1, op1);
8014
8015 scratch = gen_reg_rtx (mode0);
8016
8017 pat = GEN_FCN (icode) (scratch, op0, op1,
f1c25d3b 8018 gen_rtx_SYMBOL_REF (Pmode, opcode));
ae4b4a02
AH
8019 if (! pat)
8020 return 0;
8021 emit_insn (pat);
8022
8023 /* The vec_any* and vec_all* predicates use the same opcodes for two
8024 different operations, but the bits in CR6 will be different
8025 depending on what information we want. So we have to play tricks
8026 with CR6 to get the right bits out.
8027
8028 If you think this is disgusting, look at the specs for the
8029 AltiVec predicates. */
8030
c4ad648e
AM
8031 switch (cr6_form_int)
8032 {
8033 case 0:
8034 emit_insn (gen_cr6_test_for_zero (target));
8035 break;
8036 case 1:
8037 emit_insn (gen_cr6_test_for_zero_reverse (target));
8038 break;
8039 case 2:
8040 emit_insn (gen_cr6_test_for_lt (target));
8041 break;
8042 case 3:
8043 emit_insn (gen_cr6_test_for_lt_reverse (target));
8044 break;
8045 default:
8046 error ("argument 1 of __builtin_altivec_predicate is out of range");
8047 break;
8048 }
ae4b4a02
AH
8049
8050 return target;
8051}
8052
96038623
DE
8053static rtx
8054paired_expand_lv_builtin (enum insn_code icode, tree exp, rtx target)
8055{
8056 rtx pat, addr;
8057 tree arg0 = CALL_EXPR_ARG (exp, 0);
8058 tree arg1 = CALL_EXPR_ARG (exp, 1);
8059 enum machine_mode tmode = insn_data[icode].operand[0].mode;
8060 enum machine_mode mode0 = Pmode;
8061 enum machine_mode mode1 = Pmode;
8062 rtx op0 = expand_normal (arg0);
8063 rtx op1 = expand_normal (arg1);
8064
8065 if (icode == CODE_FOR_nothing)
8066 /* Builtin not supported on this processor. */
8067 return 0;
8068
8069 /* If we got invalid arguments bail out before generating bad rtl. */
8070 if (arg0 == error_mark_node || arg1 == error_mark_node)
8071 return const0_rtx;
8072
8073 if (target == 0
8074 || GET_MODE (target) != tmode
8075 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
8076 target = gen_reg_rtx (tmode);
8077
8078 op1 = copy_to_mode_reg (mode1, op1);
8079
8080 if (op0 == const0_rtx)
8081 {
8082 addr = gen_rtx_MEM (tmode, op1);
8083 }
8084 else
8085 {
8086 op0 = copy_to_mode_reg (mode0, op0);
8087 addr = gen_rtx_MEM (tmode, gen_rtx_PLUS (Pmode, op0, op1));
8088 }
8089
8090 pat = GEN_FCN (icode) (target, addr);
8091
8092 if (! pat)
8093 return 0;
8094 emit_insn (pat);
8095
8096 return target;
8097}
8098
b4a62fa0 8099static rtx
0b61703c 8100altivec_expand_lv_builtin (enum insn_code icode, tree exp, rtx target, bool blk)
b4a62fa0
SB
8101{
8102 rtx pat, addr;
5039610b
SL
8103 tree arg0 = CALL_EXPR_ARG (exp, 0);
8104 tree arg1 = CALL_EXPR_ARG (exp, 1);
b4a62fa0
SB
8105 enum machine_mode tmode = insn_data[icode].operand[0].mode;
8106 enum machine_mode mode0 = Pmode;
8107 enum machine_mode mode1 = Pmode;
84217346
MD
8108 rtx op0 = expand_normal (arg0);
8109 rtx op1 = expand_normal (arg1);
b4a62fa0
SB
8110
8111 if (icode == CODE_FOR_nothing)
8112 /* Builtin not supported on this processor. */
8113 return 0;
8114
8115 /* If we got invalid arguments bail out before generating bad rtl. */
8116 if (arg0 == error_mark_node || arg1 == error_mark_node)
8117 return const0_rtx;
8118
8119 if (target == 0
8120 || GET_MODE (target) != tmode
8121 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
8122 target = gen_reg_rtx (tmode);
8123
f676971a 8124 op1 = copy_to_mode_reg (mode1, op1);
b4a62fa0
SB
8125
8126 if (op0 == const0_rtx)
8127 {
0b61703c 8128 addr = gen_rtx_MEM (blk ? BLKmode : tmode, op1);
b4a62fa0
SB
8129 }
8130 else
8131 {
8132 op0 = copy_to_mode_reg (mode0, op0);
0b61703c 8133 addr = gen_rtx_MEM (blk ? BLKmode : tmode, gen_rtx_PLUS (Pmode, op0, op1));
b4a62fa0
SB
8134 }
8135
8136 pat = GEN_FCN (icode) (target, addr);
8137
8138 if (! pat)
8139 return 0;
8140 emit_insn (pat);
8141
8142 return target;
8143}
8144
61bea3b0 8145static rtx
5039610b 8146spe_expand_stv_builtin (enum insn_code icode, tree exp)
61bea3b0 8147{
5039610b
SL
8148 tree arg0 = CALL_EXPR_ARG (exp, 0);
8149 tree arg1 = CALL_EXPR_ARG (exp, 1);
8150 tree arg2 = CALL_EXPR_ARG (exp, 2);
84217346
MD
8151 rtx op0 = expand_normal (arg0);
8152 rtx op1 = expand_normal (arg1);
8153 rtx op2 = expand_normal (arg2);
61bea3b0
AH
8154 rtx pat;
8155 enum machine_mode mode0 = insn_data[icode].operand[0].mode;
8156 enum machine_mode mode1 = insn_data[icode].operand[1].mode;
8157 enum machine_mode mode2 = insn_data[icode].operand[2].mode;
8158
8159 /* Invalid arguments. Bail before doing anything stoopid! */
8160 if (arg0 == error_mark_node
8161 || arg1 == error_mark_node
8162 || arg2 == error_mark_node)
8163 return const0_rtx;
8164
8165 if (! (*insn_data[icode].operand[2].predicate) (op0, mode2))
8166 op0 = copy_to_mode_reg (mode2, op0);
8167 if (! (*insn_data[icode].operand[0].predicate) (op1, mode0))
8168 op1 = copy_to_mode_reg (mode0, op1);
8169 if (! (*insn_data[icode].operand[1].predicate) (op2, mode1))
8170 op2 = copy_to_mode_reg (mode1, op2);
8171
8172 pat = GEN_FCN (icode) (op1, op2, op0);
8173 if (pat)
8174 emit_insn (pat);
8175 return NULL_RTX;
8176}
8177
96038623
DE
8178static rtx
8179paired_expand_stv_builtin (enum insn_code icode, tree exp)
8180{
8181 tree arg0 = CALL_EXPR_ARG (exp, 0);
8182 tree arg1 = CALL_EXPR_ARG (exp, 1);
8183 tree arg2 = CALL_EXPR_ARG (exp, 2);
8184 rtx op0 = expand_normal (arg0);
8185 rtx op1 = expand_normal (arg1);
8186 rtx op2 = expand_normal (arg2);
8187 rtx pat, addr;
8188 enum machine_mode tmode = insn_data[icode].operand[0].mode;
8189 enum machine_mode mode1 = Pmode;
8190 enum machine_mode mode2 = Pmode;
8191
8192 /* Invalid arguments. Bail before doing anything stoopid! */
8193 if (arg0 == error_mark_node
8194 || arg1 == error_mark_node
8195 || arg2 == error_mark_node)
8196 return const0_rtx;
8197
8198 if (! (*insn_data[icode].operand[1].predicate) (op0, tmode))
8199 op0 = copy_to_mode_reg (tmode, op0);
8200
8201 op2 = copy_to_mode_reg (mode2, op2);
8202
8203 if (op1 == const0_rtx)
8204 {
8205 addr = gen_rtx_MEM (tmode, op2);
8206 }
8207 else
8208 {
8209 op1 = copy_to_mode_reg (mode1, op1);
8210 addr = gen_rtx_MEM (tmode, gen_rtx_PLUS (Pmode, op1, op2));
8211 }
8212
8213 pat = GEN_FCN (icode) (addr, op0);
8214 if (pat)
8215 emit_insn (pat);
8216 return NULL_RTX;
8217}
8218
6525c0e7 8219static rtx
5039610b 8220altivec_expand_stv_builtin (enum insn_code icode, tree exp)
6525c0e7 8221{
5039610b
SL
8222 tree arg0 = CALL_EXPR_ARG (exp, 0);
8223 tree arg1 = CALL_EXPR_ARG (exp, 1);
8224 tree arg2 = CALL_EXPR_ARG (exp, 2);
84217346
MD
8225 rtx op0 = expand_normal (arg0);
8226 rtx op1 = expand_normal (arg1);
8227 rtx op2 = expand_normal (arg2);
b4a62fa0
SB
8228 rtx pat, addr;
8229 enum machine_mode tmode = insn_data[icode].operand[0].mode;
8230 enum machine_mode mode1 = Pmode;
8231 enum machine_mode mode2 = Pmode;
6525c0e7
AH
8232
8233 /* Invalid arguments. Bail before doing anything stoopid! */
8234 if (arg0 == error_mark_node
8235 || arg1 == error_mark_node
8236 || arg2 == error_mark_node)
9a171fcd 8237 return const0_rtx;
6525c0e7 8238
b4a62fa0
SB
8239 if (! (*insn_data[icode].operand[1].predicate) (op0, tmode))
8240 op0 = copy_to_mode_reg (tmode, op0);
8241
f676971a 8242 op2 = copy_to_mode_reg (mode2, op2);
b4a62fa0
SB
8243
8244 if (op1 == const0_rtx)
8245 {
8246 addr = gen_rtx_MEM (tmode, op2);
8247 }
8248 else
8249 {
8250 op1 = copy_to_mode_reg (mode1, op1);
8251 addr = gen_rtx_MEM (tmode, gen_rtx_PLUS (Pmode, op1, op2));
8252 }
6525c0e7 8253
b4a62fa0 8254 pat = GEN_FCN (icode) (addr, op0);
6525c0e7
AH
8255 if (pat)
8256 emit_insn (pat);
8257 return NULL_RTX;
8258}
8259
2212663f 8260static rtx
5039610b 8261rs6000_expand_ternop_builtin (enum insn_code icode, tree exp, rtx target)
2212663f
DB
8262{
8263 rtx pat;
5039610b
SL
8264 tree arg0 = CALL_EXPR_ARG (exp, 0);
8265 tree arg1 = CALL_EXPR_ARG (exp, 1);
8266 tree arg2 = CALL_EXPR_ARG (exp, 2);
84217346
MD
8267 rtx op0 = expand_normal (arg0);
8268 rtx op1 = expand_normal (arg1);
8269 rtx op2 = expand_normal (arg2);
2212663f
DB
8270 enum machine_mode tmode = insn_data[icode].operand[0].mode;
8271 enum machine_mode mode0 = insn_data[icode].operand[1].mode;
8272 enum machine_mode mode1 = insn_data[icode].operand[2].mode;
8273 enum machine_mode mode2 = insn_data[icode].operand[3].mode;
0ac081f6 8274
774b5662
DE
8275 if (icode == CODE_FOR_nothing)
8276 /* Builtin not supported on this processor. */
8277 return 0;
8278
20e26713
AH
8279 /* If we got invalid arguments bail out before generating bad rtl. */
8280 if (arg0 == error_mark_node
8281 || arg1 == error_mark_node
8282 || arg2 == error_mark_node)
9a171fcd 8283 return const0_rtx;
20e26713 8284
aba5fb01
NS
8285 if (icode == CODE_FOR_altivec_vsldoi_v4sf
8286 || icode == CODE_FOR_altivec_vsldoi_v4si
8287 || icode == CODE_FOR_altivec_vsldoi_v8hi
8288 || icode == CODE_FOR_altivec_vsldoi_v16qi)
b44140e7
AH
8289 {
8290 /* Only allow 4-bit unsigned literals. */
8bb418a3 8291 STRIP_NOPS (arg2);
b44140e7
AH
8292 if (TREE_CODE (arg2) != INTEGER_CST
8293 || TREE_INT_CST_LOW (arg2) & ~0xf)
8294 {
8295 error ("argument 3 must be a 4-bit unsigned literal");
e3277ffb 8296 return const0_rtx;
b44140e7 8297 }
b44140e7
AH
8298 }
8299
c62f2db5 8300 if (target == 0
2212663f
DB
8301 || GET_MODE (target) != tmode
8302 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
8303 target = gen_reg_rtx (tmode);
8304
8305 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
8306 op0 = copy_to_mode_reg (mode0, op0);
8307 if (! (*insn_data[icode].operand[2].predicate) (op1, mode1))
8308 op1 = copy_to_mode_reg (mode1, op1);
8309 if (! (*insn_data[icode].operand[3].predicate) (op2, mode2))
8310 op2 = copy_to_mode_reg (mode2, op2);
8311
49e39588
RE
8312 if (TARGET_PAIRED_FLOAT && icode == CODE_FOR_selv2sf4)
8313 pat = GEN_FCN (icode) (target, op0, op1, op2, CONST0_RTX (SFmode));
8314 else
8315 pat = GEN_FCN (icode) (target, op0, op1, op2);
2212663f
DB
8316 if (! pat)
8317 return 0;
8318 emit_insn (pat);
8319
8320 return target;
8321}
92898235 8322
3a9b8c7e 8323/* Expand the lvx builtins. */
0ac081f6 8324static rtx
a2369ed3 8325altivec_expand_ld_builtin (tree exp, rtx target, bool *expandedp)
0ac081f6 8326{
5039610b 8327 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
0ac081f6 8328 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
3a9b8c7e
AH
8329 tree arg0;
8330 enum machine_mode tmode, mode0;
7c3abc73 8331 rtx pat, op0;
3a9b8c7e 8332 enum insn_code icode;
92898235 8333
0ac081f6
AH
8334 switch (fcode)
8335 {
f18c054f 8336 case ALTIVEC_BUILTIN_LD_INTERNAL_16qi:
81466555 8337 icode = CODE_FOR_altivec_lvx_v16qi;
3a9b8c7e 8338 break;
f18c054f 8339 case ALTIVEC_BUILTIN_LD_INTERNAL_8hi:
81466555 8340 icode = CODE_FOR_altivec_lvx_v8hi;
3a9b8c7e
AH
8341 break;
8342 case ALTIVEC_BUILTIN_LD_INTERNAL_4si:
81466555 8343 icode = CODE_FOR_altivec_lvx_v4si;
3a9b8c7e
AH
8344 break;
8345 case ALTIVEC_BUILTIN_LD_INTERNAL_4sf:
81466555 8346 icode = CODE_FOR_altivec_lvx_v4sf;
3a9b8c7e
AH
8347 break;
8348 default:
8349 *expandedp = false;
8350 return NULL_RTX;
8351 }
0ac081f6 8352
3a9b8c7e 8353 *expandedp = true;
f18c054f 8354
5039610b 8355 arg0 = CALL_EXPR_ARG (exp, 0);
84217346 8356 op0 = expand_normal (arg0);
3a9b8c7e
AH
8357 tmode = insn_data[icode].operand[0].mode;
8358 mode0 = insn_data[icode].operand[1].mode;
f18c054f 8359
3a9b8c7e
AH
8360 if (target == 0
8361 || GET_MODE (target) != tmode
8362 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
8363 target = gen_reg_rtx (tmode);
24408032 8364
3a9b8c7e
AH
8365 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
8366 op0 = gen_rtx_MEM (mode0, copy_to_mode_reg (Pmode, op0));
f18c054f 8367
3a9b8c7e
AH
8368 pat = GEN_FCN (icode) (target, op0);
8369 if (! pat)
8370 return 0;
8371 emit_insn (pat);
8372 return target;
8373}
f18c054f 8374
3a9b8c7e
AH
8375/* Expand the stvx builtins. */
8376static rtx
f676971a 8377altivec_expand_st_builtin (tree exp, rtx target ATTRIBUTE_UNUSED,
a2369ed3 8378 bool *expandedp)
3a9b8c7e 8379{
5039610b 8380 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
3a9b8c7e
AH
8381 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
8382 tree arg0, arg1;
8383 enum machine_mode mode0, mode1;
7c3abc73 8384 rtx pat, op0, op1;
3a9b8c7e 8385 enum insn_code icode;
f18c054f 8386
3a9b8c7e
AH
8387 switch (fcode)
8388 {
8389 case ALTIVEC_BUILTIN_ST_INTERNAL_16qi:
81466555 8390 icode = CODE_FOR_altivec_stvx_v16qi;
3a9b8c7e
AH
8391 break;
8392 case ALTIVEC_BUILTIN_ST_INTERNAL_8hi:
81466555 8393 icode = CODE_FOR_altivec_stvx_v8hi;
3a9b8c7e
AH
8394 break;
8395 case ALTIVEC_BUILTIN_ST_INTERNAL_4si:
81466555 8396 icode = CODE_FOR_altivec_stvx_v4si;
3a9b8c7e
AH
8397 break;
8398 case ALTIVEC_BUILTIN_ST_INTERNAL_4sf:
81466555 8399 icode = CODE_FOR_altivec_stvx_v4sf;
3a9b8c7e
AH
8400 break;
8401 default:
8402 *expandedp = false;
8403 return NULL_RTX;
8404 }
24408032 8405
5039610b
SL
8406 arg0 = CALL_EXPR_ARG (exp, 0);
8407 arg1 = CALL_EXPR_ARG (exp, 1);
84217346
MD
8408 op0 = expand_normal (arg0);
8409 op1 = expand_normal (arg1);
3a9b8c7e
AH
8410 mode0 = insn_data[icode].operand[0].mode;
8411 mode1 = insn_data[icode].operand[1].mode;
f18c054f 8412
3a9b8c7e
AH
8413 if (! (*insn_data[icode].operand[0].predicate) (op0, mode0))
8414 op0 = gen_rtx_MEM (mode0, copy_to_mode_reg (Pmode, op0));
8415 if (! (*insn_data[icode].operand[1].predicate) (op1, mode1))
8416 op1 = copy_to_mode_reg (mode1, op1);
f18c054f 8417
3a9b8c7e
AH
8418 pat = GEN_FCN (icode) (op0, op1);
8419 if (pat)
8420 emit_insn (pat);
f18c054f 8421
3a9b8c7e
AH
8422 *expandedp = true;
8423 return NULL_RTX;
8424}
f18c054f 8425
3a9b8c7e
AH
8426/* Expand the dst builtins. */
8427static rtx
f676971a 8428altivec_expand_dst_builtin (tree exp, rtx target ATTRIBUTE_UNUSED,
a2369ed3 8429 bool *expandedp)
3a9b8c7e 8430{
5039610b 8431 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
3a9b8c7e
AH
8432 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
8433 tree arg0, arg1, arg2;
8434 enum machine_mode mode0, mode1, mode2;
7c3abc73 8435 rtx pat, op0, op1, op2;
586de218 8436 const struct builtin_description *d;
a3170dc6 8437 size_t i;
f18c054f 8438
3a9b8c7e 8439 *expandedp = false;
f18c054f 8440
3a9b8c7e 8441 /* Handle DST variants. */
586de218 8442 d = bdesc_dst;
3a9b8c7e
AH
8443 for (i = 0; i < ARRAY_SIZE (bdesc_dst); i++, d++)
8444 if (d->code == fcode)
8445 {
5039610b
SL
8446 arg0 = CALL_EXPR_ARG (exp, 0);
8447 arg1 = CALL_EXPR_ARG (exp, 1);
8448 arg2 = CALL_EXPR_ARG (exp, 2);
84217346
MD
8449 op0 = expand_normal (arg0);
8450 op1 = expand_normal (arg1);
8451 op2 = expand_normal (arg2);
3a9b8c7e
AH
8452 mode0 = insn_data[d->icode].operand[0].mode;
8453 mode1 = insn_data[d->icode].operand[1].mode;
8454 mode2 = insn_data[d->icode].operand[2].mode;
24408032 8455
3a9b8c7e
AH
8456 /* Invalid arguments, bail out before generating bad rtl. */
8457 if (arg0 == error_mark_node
8458 || arg1 == error_mark_node
8459 || arg2 == error_mark_node)
8460 return const0_rtx;
f18c054f 8461
86e7df90 8462 *expandedp = true;
8bb418a3 8463 STRIP_NOPS (arg2);
3a9b8c7e
AH
8464 if (TREE_CODE (arg2) != INTEGER_CST
8465 || TREE_INT_CST_LOW (arg2) & ~0x3)
8466 {
9e637a26 8467 error ("argument to %qs must be a 2-bit unsigned literal", d->name);
3a9b8c7e
AH
8468 return const0_rtx;
8469 }
f18c054f 8470
3a9b8c7e 8471 if (! (*insn_data[d->icode].operand[0].predicate) (op0, mode0))
666158b9 8472 op0 = copy_to_mode_reg (Pmode, op0);
3a9b8c7e
AH
8473 if (! (*insn_data[d->icode].operand[1].predicate) (op1, mode1))
8474 op1 = copy_to_mode_reg (mode1, op1);
24408032 8475
3a9b8c7e
AH
8476 pat = GEN_FCN (d->icode) (op0, op1, op2);
8477 if (pat != 0)
8478 emit_insn (pat);
f18c054f 8479
3a9b8c7e
AH
8480 return NULL_RTX;
8481 }
f18c054f 8482
3a9b8c7e
AH
8483 return NULL_RTX;
8484}
24408032 8485
7a4eca66
DE
8486/* Expand vec_init builtin. */
8487static rtx
5039610b 8488altivec_expand_vec_init_builtin (tree type, tree exp, rtx target)
7a4eca66
DE
8489{
8490 enum machine_mode tmode = TYPE_MODE (type);
8491 enum machine_mode inner_mode = GET_MODE_INNER (tmode);
8492 int i, n_elt = GET_MODE_NUNITS (tmode);
8493 rtvec v = rtvec_alloc (n_elt);
8494
8495 gcc_assert (VECTOR_MODE_P (tmode));
5039610b 8496 gcc_assert (n_elt == call_expr_nargs (exp));
982afe02 8497
5039610b 8498 for (i = 0; i < n_elt; ++i)
7a4eca66 8499 {
5039610b 8500 rtx x = expand_normal (CALL_EXPR_ARG (exp, i));
7a4eca66
DE
8501 RTVEC_ELT (v, i) = gen_lowpart (inner_mode, x);
8502 }
8503
7a4eca66
DE
8504 if (!target || !register_operand (target, tmode))
8505 target = gen_reg_rtx (tmode);
8506
8507 rs6000_expand_vector_init (target, gen_rtx_PARALLEL (tmode, v));
8508 return target;
8509}
8510
8511/* Return the integer constant in ARG. Constrain it to be in the range
8512 of the subparts of VEC_TYPE; issue an error if not. */
8513
8514static int
8515get_element_number (tree vec_type, tree arg)
8516{
8517 unsigned HOST_WIDE_INT elt, max = TYPE_VECTOR_SUBPARTS (vec_type) - 1;
8518
8519 if (!host_integerp (arg, 1)
8520 || (elt = tree_low_cst (arg, 1), elt > max))
8521 {
8522 error ("selector must be an integer constant in the range 0..%wi", max);
8523 return 0;
8524 }
8525
8526 return elt;
8527}
8528
8529/* Expand vec_set builtin. */
8530static rtx
5039610b 8531altivec_expand_vec_set_builtin (tree exp)
7a4eca66
DE
8532{
8533 enum machine_mode tmode, mode1;
8534 tree arg0, arg1, arg2;
8535 int elt;
8536 rtx op0, op1;
8537
5039610b
SL
8538 arg0 = CALL_EXPR_ARG (exp, 0);
8539 arg1 = CALL_EXPR_ARG (exp, 1);
8540 arg2 = CALL_EXPR_ARG (exp, 2);
7a4eca66
DE
8541
8542 tmode = TYPE_MODE (TREE_TYPE (arg0));
8543 mode1 = TYPE_MODE (TREE_TYPE (TREE_TYPE (arg0)));
8544 gcc_assert (VECTOR_MODE_P (tmode));
8545
8546 op0 = expand_expr (arg0, NULL_RTX, tmode, 0);
8547 op1 = expand_expr (arg1, NULL_RTX, mode1, 0);
8548 elt = get_element_number (TREE_TYPE (arg0), arg2);
8549
8550 if (GET_MODE (op1) != mode1 && GET_MODE (op1) != VOIDmode)
8551 op1 = convert_modes (mode1, GET_MODE (op1), op1, true);
8552
8553 op0 = force_reg (tmode, op0);
8554 op1 = force_reg (mode1, op1);
8555
8556 rs6000_expand_vector_set (op0, op1, elt);
8557
8558 return op0;
8559}
8560
8561/* Expand vec_ext builtin. */
8562static rtx
5039610b 8563altivec_expand_vec_ext_builtin (tree exp, rtx target)
7a4eca66
DE
8564{
8565 enum machine_mode tmode, mode0;
8566 tree arg0, arg1;
8567 int elt;
8568 rtx op0;
8569
5039610b
SL
8570 arg0 = CALL_EXPR_ARG (exp, 0);
8571 arg1 = CALL_EXPR_ARG (exp, 1);
7a4eca66 8572
84217346 8573 op0 = expand_normal (arg0);
7a4eca66
DE
8574 elt = get_element_number (TREE_TYPE (arg0), arg1);
8575
8576 tmode = TYPE_MODE (TREE_TYPE (TREE_TYPE (arg0)));
8577 mode0 = TYPE_MODE (TREE_TYPE (arg0));
8578 gcc_assert (VECTOR_MODE_P (mode0));
8579
8580 op0 = force_reg (mode0, op0);
8581
8582 if (optimize || !target || !register_operand (target, tmode))
8583 target = gen_reg_rtx (tmode);
8584
8585 rs6000_expand_vector_extract (target, op0, elt);
8586
8587 return target;
8588}
8589
3a9b8c7e
AH
8590/* Expand the builtin in EXP and store the result in TARGET. Store
8591 true in *EXPANDEDP if we found a builtin to expand. */
8592static rtx
a2369ed3 8593altivec_expand_builtin (tree exp, rtx target, bool *expandedp)
3a9b8c7e 8594{
586de218
KG
8595 const struct builtin_description *d;
8596 const struct builtin_description_predicates *dp;
3a9b8c7e
AH
8597 size_t i;
8598 enum insn_code icode;
5039610b 8599 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
7c3abc73
AH
8600 tree arg0;
8601 rtx op0, pat;
8602 enum machine_mode tmode, mode0;
3a9b8c7e 8603 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
0ac081f6 8604
58646b77
PB
8605 if (fcode >= ALTIVEC_BUILTIN_OVERLOADED_FIRST
8606 && fcode <= ALTIVEC_BUILTIN_OVERLOADED_LAST)
8607 {
8608 *expandedp = true;
ea40ba9c 8609 error ("unresolved overload for Altivec builtin %qF", fndecl);
58646b77
PB
8610 return const0_rtx;
8611 }
8612
3a9b8c7e
AH
8613 target = altivec_expand_ld_builtin (exp, target, expandedp);
8614 if (*expandedp)
8615 return target;
0ac081f6 8616
3a9b8c7e
AH
8617 target = altivec_expand_st_builtin (exp, target, expandedp);
8618 if (*expandedp)
8619 return target;
8620
8621 target = altivec_expand_dst_builtin (exp, target, expandedp);
8622 if (*expandedp)
8623 return target;
8624
8625 *expandedp = true;
95385cbb 8626
3a9b8c7e
AH
8627 switch (fcode)
8628 {
6525c0e7 8629 case ALTIVEC_BUILTIN_STVX:
5039610b 8630 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvx, exp);
6525c0e7 8631 case ALTIVEC_BUILTIN_STVEBX:
5039610b 8632 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvebx, exp);
6525c0e7 8633 case ALTIVEC_BUILTIN_STVEHX:
5039610b 8634 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvehx, exp);
6525c0e7 8635 case ALTIVEC_BUILTIN_STVEWX:
5039610b 8636 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvewx, exp);
6525c0e7 8637 case ALTIVEC_BUILTIN_STVXL:
5039610b 8638 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvxl, exp);
3a9b8c7e 8639
0b61703c
AP
8640 case ALTIVEC_BUILTIN_STVLX:
8641 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvlx, exp);
8642 case ALTIVEC_BUILTIN_STVLXL:
8643 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvlxl, exp);
8644 case ALTIVEC_BUILTIN_STVRX:
8645 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvrx, exp);
8646 case ALTIVEC_BUILTIN_STVRXL:
8647 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvrxl, exp);
8648
95385cbb
AH
8649 case ALTIVEC_BUILTIN_MFVSCR:
8650 icode = CODE_FOR_altivec_mfvscr;
8651 tmode = insn_data[icode].operand[0].mode;
8652
8653 if (target == 0
8654 || GET_MODE (target) != tmode
8655 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
8656 target = gen_reg_rtx (tmode);
f676971a 8657
95385cbb 8658 pat = GEN_FCN (icode) (target);
0ac081f6
AH
8659 if (! pat)
8660 return 0;
8661 emit_insn (pat);
95385cbb
AH
8662 return target;
8663
8664 case ALTIVEC_BUILTIN_MTVSCR:
8665 icode = CODE_FOR_altivec_mtvscr;
5039610b 8666 arg0 = CALL_EXPR_ARG (exp, 0);
84217346 8667 op0 = expand_normal (arg0);
95385cbb
AH
8668 mode0 = insn_data[icode].operand[0].mode;
8669
8670 /* If we got invalid arguments bail out before generating bad rtl. */
8671 if (arg0 == error_mark_node)
9a171fcd 8672 return const0_rtx;
95385cbb
AH
8673
8674 if (! (*insn_data[icode].operand[0].predicate) (op0, mode0))
8675 op0 = copy_to_mode_reg (mode0, op0);
8676
8677 pat = GEN_FCN (icode) (op0);
8678 if (pat)
8679 emit_insn (pat);
8680 return NULL_RTX;
3a9b8c7e 8681
95385cbb
AH
8682 case ALTIVEC_BUILTIN_DSSALL:
8683 emit_insn (gen_altivec_dssall ());
8684 return NULL_RTX;
8685
8686 case ALTIVEC_BUILTIN_DSS:
8687 icode = CODE_FOR_altivec_dss;
5039610b 8688 arg0 = CALL_EXPR_ARG (exp, 0);
8bb418a3 8689 STRIP_NOPS (arg0);
84217346 8690 op0 = expand_normal (arg0);
95385cbb
AH
8691 mode0 = insn_data[icode].operand[0].mode;
8692
8693 /* If we got invalid arguments bail out before generating bad rtl. */
8694 if (arg0 == error_mark_node)
9a171fcd 8695 return const0_rtx;
95385cbb 8696
b44140e7
AH
8697 if (TREE_CODE (arg0) != INTEGER_CST
8698 || TREE_INT_CST_LOW (arg0) & ~0x3)
8699 {
8700 error ("argument to dss must be a 2-bit unsigned literal");
9a171fcd 8701 return const0_rtx;
b44140e7
AH
8702 }
8703
95385cbb
AH
8704 if (! (*insn_data[icode].operand[0].predicate) (op0, mode0))
8705 op0 = copy_to_mode_reg (mode0, op0);
8706
8707 emit_insn (gen_altivec_dss (op0));
0ac081f6 8708 return NULL_RTX;
7a4eca66
DE
8709
8710 case ALTIVEC_BUILTIN_VEC_INIT_V4SI:
8711 case ALTIVEC_BUILTIN_VEC_INIT_V8HI:
8712 case ALTIVEC_BUILTIN_VEC_INIT_V16QI:
8713 case ALTIVEC_BUILTIN_VEC_INIT_V4SF:
5039610b 8714 return altivec_expand_vec_init_builtin (TREE_TYPE (exp), exp, target);
7a4eca66
DE
8715
8716 case ALTIVEC_BUILTIN_VEC_SET_V4SI:
8717 case ALTIVEC_BUILTIN_VEC_SET_V8HI:
8718 case ALTIVEC_BUILTIN_VEC_SET_V16QI:
8719 case ALTIVEC_BUILTIN_VEC_SET_V4SF:
5039610b 8720 return altivec_expand_vec_set_builtin (exp);
7a4eca66
DE
8721
8722 case ALTIVEC_BUILTIN_VEC_EXT_V4SI:
8723 case ALTIVEC_BUILTIN_VEC_EXT_V8HI:
8724 case ALTIVEC_BUILTIN_VEC_EXT_V16QI:
8725 case ALTIVEC_BUILTIN_VEC_EXT_V4SF:
5039610b 8726 return altivec_expand_vec_ext_builtin (exp, target);
7a4eca66
DE
8727
8728 default:
8729 break;
8730 /* Fall through. */
0ac081f6 8731 }
24408032 8732
100c4561 8733 /* Expand abs* operations. */
586de218 8734 d = bdesc_abs;
ca7558fc 8735 for (i = 0; i < ARRAY_SIZE (bdesc_abs); i++, d++)
100c4561 8736 if (d->code == fcode)
5039610b 8737 return altivec_expand_abs_builtin (d->icode, exp, target);
100c4561 8738
ae4b4a02 8739 /* Expand the AltiVec predicates. */
586de218 8740 dp = bdesc_altivec_preds;
ca7558fc 8741 for (i = 0; i < ARRAY_SIZE (bdesc_altivec_preds); i++, dp++)
ae4b4a02 8742 if (dp->code == fcode)
c4ad648e 8743 return altivec_expand_predicate_builtin (dp->icode, dp->opcode,
5039610b 8744 exp, target);
ae4b4a02 8745
6525c0e7
AH
8746 /* LV* are funky. We initialized them differently. */
8747 switch (fcode)
8748 {
8749 case ALTIVEC_BUILTIN_LVSL:
b4a62fa0 8750 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvsl,
0b61703c 8751 exp, target, false);
6525c0e7 8752 case ALTIVEC_BUILTIN_LVSR:
b4a62fa0 8753 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvsr,
0b61703c 8754 exp, target, false);
6525c0e7 8755 case ALTIVEC_BUILTIN_LVEBX:
b4a62fa0 8756 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvebx,
0b61703c 8757 exp, target, false);
6525c0e7 8758 case ALTIVEC_BUILTIN_LVEHX:
b4a62fa0 8759 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvehx,
0b61703c 8760 exp, target, false);
6525c0e7 8761 case ALTIVEC_BUILTIN_LVEWX:
b4a62fa0 8762 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvewx,
0b61703c 8763 exp, target, false);
6525c0e7 8764 case ALTIVEC_BUILTIN_LVXL:
b4a62fa0 8765 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvxl,
0b61703c 8766 exp, target, false);
6525c0e7 8767 case ALTIVEC_BUILTIN_LVX:
b4a62fa0 8768 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvx,
0b61703c
AP
8769 exp, target, false);
8770 case ALTIVEC_BUILTIN_LVLX:
8771 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvlx,
8772 exp, target, true);
8773 case ALTIVEC_BUILTIN_LVLXL:
8774 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvlxl,
8775 exp, target, true);
8776 case ALTIVEC_BUILTIN_LVRX:
8777 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvrx,
8778 exp, target, true);
8779 case ALTIVEC_BUILTIN_LVRXL:
8780 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvrxl,
8781 exp, target, true);
6525c0e7
AH
8782 default:
8783 break;
8784 /* Fall through. */
8785 }
95385cbb 8786
92898235 8787 *expandedp = false;
0ac081f6
AH
8788 return NULL_RTX;
8789}
8790
96038623
DE
8791/* Expand the builtin in EXP and store the result in TARGET. Store
8792 true in *EXPANDEDP if we found a builtin to expand. */
8793static rtx
8794paired_expand_builtin (tree exp, rtx target, bool * expandedp)
8795{
8796 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
8797 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
23a651fc 8798 const struct builtin_description *d;
96038623
DE
8799 size_t i;
8800
8801 *expandedp = true;
8802
8803 switch (fcode)
8804 {
8805 case PAIRED_BUILTIN_STX:
8806 return paired_expand_stv_builtin (CODE_FOR_paired_stx, exp);
8807 case PAIRED_BUILTIN_LX:
8808 return paired_expand_lv_builtin (CODE_FOR_paired_lx, exp, target);
8809 default:
8810 break;
8811 /* Fall through. */
8812 }
8813
8814 /* Expand the paired predicates. */
23a651fc 8815 d = bdesc_paired_preds;
96038623
DE
8816 for (i = 0; i < ARRAY_SIZE (bdesc_paired_preds); i++, d++)
8817 if (d->code == fcode)
8818 return paired_expand_predicate_builtin (d->icode, exp, target);
8819
8820 *expandedp = false;
8821 return NULL_RTX;
8822}
8823
a3170dc6
AH
8824/* Binops that need to be initialized manually, but can be expanded
8825 automagically by rs6000_expand_binop_builtin. */
8826static struct builtin_description bdesc_2arg_spe[] =
8827{
8828 { 0, CODE_FOR_spe_evlddx, "__builtin_spe_evlddx", SPE_BUILTIN_EVLDDX },
8829 { 0, CODE_FOR_spe_evldwx, "__builtin_spe_evldwx", SPE_BUILTIN_EVLDWX },
8830 { 0, CODE_FOR_spe_evldhx, "__builtin_spe_evldhx", SPE_BUILTIN_EVLDHX },
8831 { 0, CODE_FOR_spe_evlwhex, "__builtin_spe_evlwhex", SPE_BUILTIN_EVLWHEX },
8832 { 0, CODE_FOR_spe_evlwhoux, "__builtin_spe_evlwhoux", SPE_BUILTIN_EVLWHOUX },
8833 { 0, CODE_FOR_spe_evlwhosx, "__builtin_spe_evlwhosx", SPE_BUILTIN_EVLWHOSX },
8834 { 0, CODE_FOR_spe_evlwwsplatx, "__builtin_spe_evlwwsplatx", SPE_BUILTIN_EVLWWSPLATX },
8835 { 0, CODE_FOR_spe_evlwhsplatx, "__builtin_spe_evlwhsplatx", SPE_BUILTIN_EVLWHSPLATX },
8836 { 0, CODE_FOR_spe_evlhhesplatx, "__builtin_spe_evlhhesplatx", SPE_BUILTIN_EVLHHESPLATX },
8837 { 0, CODE_FOR_spe_evlhhousplatx, "__builtin_spe_evlhhousplatx", SPE_BUILTIN_EVLHHOUSPLATX },
8838 { 0, CODE_FOR_spe_evlhhossplatx, "__builtin_spe_evlhhossplatx", SPE_BUILTIN_EVLHHOSSPLATX },
8839 { 0, CODE_FOR_spe_evldd, "__builtin_spe_evldd", SPE_BUILTIN_EVLDD },
8840 { 0, CODE_FOR_spe_evldw, "__builtin_spe_evldw", SPE_BUILTIN_EVLDW },
8841 { 0, CODE_FOR_spe_evldh, "__builtin_spe_evldh", SPE_BUILTIN_EVLDH },
8842 { 0, CODE_FOR_spe_evlwhe, "__builtin_spe_evlwhe", SPE_BUILTIN_EVLWHE },
8843 { 0, CODE_FOR_spe_evlwhou, "__builtin_spe_evlwhou", SPE_BUILTIN_EVLWHOU },
8844 { 0, CODE_FOR_spe_evlwhos, "__builtin_spe_evlwhos", SPE_BUILTIN_EVLWHOS },
8845 { 0, CODE_FOR_spe_evlwwsplat, "__builtin_spe_evlwwsplat", SPE_BUILTIN_EVLWWSPLAT },
8846 { 0, CODE_FOR_spe_evlwhsplat, "__builtin_spe_evlwhsplat", SPE_BUILTIN_EVLWHSPLAT },
8847 { 0, CODE_FOR_spe_evlhhesplat, "__builtin_spe_evlhhesplat", SPE_BUILTIN_EVLHHESPLAT },
8848 { 0, CODE_FOR_spe_evlhhousplat, "__builtin_spe_evlhhousplat", SPE_BUILTIN_EVLHHOUSPLAT },
8849 { 0, CODE_FOR_spe_evlhhossplat, "__builtin_spe_evlhhossplat", SPE_BUILTIN_EVLHHOSSPLAT }
8850};
8851
8852/* Expand the builtin in EXP and store the result in TARGET. Store
8853 true in *EXPANDEDP if we found a builtin to expand.
8854
8855 This expands the SPE builtins that are not simple unary and binary
8856 operations. */
8857static rtx
a2369ed3 8858spe_expand_builtin (tree exp, rtx target, bool *expandedp)
a3170dc6 8859{
5039610b 8860 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
a3170dc6
AH
8861 tree arg1, arg0;
8862 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
8863 enum insn_code icode;
8864 enum machine_mode tmode, mode0;
8865 rtx pat, op0;
8866 struct builtin_description *d;
8867 size_t i;
8868
8869 *expandedp = true;
8870
8871 /* Syntax check for a 5-bit unsigned immediate. */
8872 switch (fcode)
8873 {
8874 case SPE_BUILTIN_EVSTDD:
8875 case SPE_BUILTIN_EVSTDH:
8876 case SPE_BUILTIN_EVSTDW:
8877 case SPE_BUILTIN_EVSTWHE:
8878 case SPE_BUILTIN_EVSTWHO:
8879 case SPE_BUILTIN_EVSTWWE:
8880 case SPE_BUILTIN_EVSTWWO:
5039610b 8881 arg1 = CALL_EXPR_ARG (exp, 2);
a3170dc6
AH
8882 if (TREE_CODE (arg1) != INTEGER_CST
8883 || TREE_INT_CST_LOW (arg1) & ~0x1f)
8884 {
8885 error ("argument 2 must be a 5-bit unsigned literal");
8886 return const0_rtx;
8887 }
8888 break;
8889 default:
8890 break;
8891 }
8892
00332c9f
AH
8893 /* The evsplat*i instructions are not quite generic. */
8894 switch (fcode)
8895 {
8896 case SPE_BUILTIN_EVSPLATFI:
8897 return rs6000_expand_unop_builtin (CODE_FOR_spe_evsplatfi,
5039610b 8898 exp, target);
00332c9f
AH
8899 case SPE_BUILTIN_EVSPLATI:
8900 return rs6000_expand_unop_builtin (CODE_FOR_spe_evsplati,
5039610b 8901 exp, target);
00332c9f
AH
8902 default:
8903 break;
8904 }
8905
a3170dc6
AH
8906 d = (struct builtin_description *) bdesc_2arg_spe;
8907 for (i = 0; i < ARRAY_SIZE (bdesc_2arg_spe); ++i, ++d)
8908 if (d->code == fcode)
5039610b 8909 return rs6000_expand_binop_builtin (d->icode, exp, target);
a3170dc6
AH
8910
8911 d = (struct builtin_description *) bdesc_spe_predicates;
8912 for (i = 0; i < ARRAY_SIZE (bdesc_spe_predicates); ++i, ++d)
8913 if (d->code == fcode)
5039610b 8914 return spe_expand_predicate_builtin (d->icode, exp, target);
a3170dc6
AH
8915
8916 d = (struct builtin_description *) bdesc_spe_evsel;
8917 for (i = 0; i < ARRAY_SIZE (bdesc_spe_evsel); ++i, ++d)
8918 if (d->code == fcode)
5039610b 8919 return spe_expand_evsel_builtin (d->icode, exp, target);
a3170dc6
AH
8920
8921 switch (fcode)
8922 {
8923 case SPE_BUILTIN_EVSTDDX:
5039610b 8924 return spe_expand_stv_builtin (CODE_FOR_spe_evstddx, exp);
a3170dc6 8925 case SPE_BUILTIN_EVSTDHX:
5039610b 8926 return spe_expand_stv_builtin (CODE_FOR_spe_evstdhx, exp);
a3170dc6 8927 case SPE_BUILTIN_EVSTDWX:
5039610b 8928 return spe_expand_stv_builtin (CODE_FOR_spe_evstdwx, exp);
a3170dc6 8929 case SPE_BUILTIN_EVSTWHEX:
5039610b 8930 return spe_expand_stv_builtin (CODE_FOR_spe_evstwhex, exp);
a3170dc6 8931 case SPE_BUILTIN_EVSTWHOX:
5039610b 8932 return spe_expand_stv_builtin (CODE_FOR_spe_evstwhox, exp);
a3170dc6 8933 case SPE_BUILTIN_EVSTWWEX:
5039610b 8934 return spe_expand_stv_builtin (CODE_FOR_spe_evstwwex, exp);
a3170dc6 8935 case SPE_BUILTIN_EVSTWWOX:
5039610b 8936 return spe_expand_stv_builtin (CODE_FOR_spe_evstwwox, exp);
a3170dc6 8937 case SPE_BUILTIN_EVSTDD:
5039610b 8938 return spe_expand_stv_builtin (CODE_FOR_spe_evstdd, exp);
a3170dc6 8939 case SPE_BUILTIN_EVSTDH:
5039610b 8940 return spe_expand_stv_builtin (CODE_FOR_spe_evstdh, exp);
a3170dc6 8941 case SPE_BUILTIN_EVSTDW:
5039610b 8942 return spe_expand_stv_builtin (CODE_FOR_spe_evstdw, exp);
a3170dc6 8943 case SPE_BUILTIN_EVSTWHE:
5039610b 8944 return spe_expand_stv_builtin (CODE_FOR_spe_evstwhe, exp);
a3170dc6 8945 case SPE_BUILTIN_EVSTWHO:
5039610b 8946 return spe_expand_stv_builtin (CODE_FOR_spe_evstwho, exp);
a3170dc6 8947 case SPE_BUILTIN_EVSTWWE:
5039610b 8948 return spe_expand_stv_builtin (CODE_FOR_spe_evstwwe, exp);
a3170dc6 8949 case SPE_BUILTIN_EVSTWWO:
5039610b 8950 return spe_expand_stv_builtin (CODE_FOR_spe_evstwwo, exp);
a3170dc6
AH
8951 case SPE_BUILTIN_MFSPEFSCR:
8952 icode = CODE_FOR_spe_mfspefscr;
8953 tmode = insn_data[icode].operand[0].mode;
8954
8955 if (target == 0
8956 || GET_MODE (target) != tmode
8957 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
8958 target = gen_reg_rtx (tmode);
f676971a 8959
a3170dc6
AH
8960 pat = GEN_FCN (icode) (target);
8961 if (! pat)
8962 return 0;
8963 emit_insn (pat);
8964 return target;
8965 case SPE_BUILTIN_MTSPEFSCR:
8966 icode = CODE_FOR_spe_mtspefscr;
5039610b 8967 arg0 = CALL_EXPR_ARG (exp, 0);
84217346 8968 op0 = expand_normal (arg0);
a3170dc6
AH
8969 mode0 = insn_data[icode].operand[0].mode;
8970
8971 if (arg0 == error_mark_node)
8972 return const0_rtx;
8973
8974 if (! (*insn_data[icode].operand[0].predicate) (op0, mode0))
8975 op0 = copy_to_mode_reg (mode0, op0);
8976
8977 pat = GEN_FCN (icode) (op0);
8978 if (pat)
8979 emit_insn (pat);
8980 return NULL_RTX;
8981 default:
8982 break;
8983 }
8984
8985 *expandedp = false;
8986 return NULL_RTX;
8987}
8988
96038623
DE
8989static rtx
8990paired_expand_predicate_builtin (enum insn_code icode, tree exp, rtx target)
8991{
8992 rtx pat, scratch, tmp;
8993 tree form = CALL_EXPR_ARG (exp, 0);
8994 tree arg0 = CALL_EXPR_ARG (exp, 1);
8995 tree arg1 = CALL_EXPR_ARG (exp, 2);
8996 rtx op0 = expand_normal (arg0);
8997 rtx op1 = expand_normal (arg1);
8998 enum machine_mode mode0 = insn_data[icode].operand[1].mode;
8999 enum machine_mode mode1 = insn_data[icode].operand[2].mode;
9000 int form_int;
9001 enum rtx_code code;
9002
9003 if (TREE_CODE (form) != INTEGER_CST)
9004 {
9005 error ("argument 1 of __builtin_paired_predicate must be a constant");
9006 return const0_rtx;
9007 }
9008 else
9009 form_int = TREE_INT_CST_LOW (form);
9010
9011 gcc_assert (mode0 == mode1);
9012
9013 if (arg0 == error_mark_node || arg1 == error_mark_node)
9014 return const0_rtx;
9015
9016 if (target == 0
9017 || GET_MODE (target) != SImode
9018 || !(*insn_data[icode].operand[0].predicate) (target, SImode))
9019 target = gen_reg_rtx (SImode);
9020 if (!(*insn_data[icode].operand[1].predicate) (op0, mode0))
9021 op0 = copy_to_mode_reg (mode0, op0);
9022 if (!(*insn_data[icode].operand[2].predicate) (op1, mode1))
9023 op1 = copy_to_mode_reg (mode1, op1);
9024
9025 scratch = gen_reg_rtx (CCFPmode);
9026
9027 pat = GEN_FCN (icode) (scratch, op0, op1);
9028 if (!pat)
9029 return const0_rtx;
9030
9031 emit_insn (pat);
9032
9033 switch (form_int)
9034 {
9035 /* LT bit. */
9036 case 0:
9037 code = LT;
9038 break;
9039 /* GT bit. */
9040 case 1:
9041 code = GT;
9042 break;
9043 /* EQ bit. */
9044 case 2:
9045 code = EQ;
9046 break;
9047 /* UN bit. */
9048 case 3:
9049 emit_insn (gen_move_from_CR_ov_bit (target, scratch));
9050 return target;
9051 default:
9052 error ("argument 1 of __builtin_paired_predicate is out of range");
9053 return const0_rtx;
9054 }
9055
9056 tmp = gen_rtx_fmt_ee (code, SImode, scratch, const0_rtx);
9057 emit_move_insn (target, tmp);
9058 return target;
9059}
9060
a3170dc6 9061static rtx
5039610b 9062spe_expand_predicate_builtin (enum insn_code icode, tree exp, rtx target)
a3170dc6
AH
9063{
9064 rtx pat, scratch, tmp;
5039610b
SL
9065 tree form = CALL_EXPR_ARG (exp, 0);
9066 tree arg0 = CALL_EXPR_ARG (exp, 1);
9067 tree arg1 = CALL_EXPR_ARG (exp, 2);
84217346
MD
9068 rtx op0 = expand_normal (arg0);
9069 rtx op1 = expand_normal (arg1);
a3170dc6
AH
9070 enum machine_mode mode0 = insn_data[icode].operand[1].mode;
9071 enum machine_mode mode1 = insn_data[icode].operand[2].mode;
9072 int form_int;
9073 enum rtx_code code;
9074
9075 if (TREE_CODE (form) != INTEGER_CST)
9076 {
9077 error ("argument 1 of __builtin_spe_predicate must be a constant");
9078 return const0_rtx;
9079 }
9080 else
9081 form_int = TREE_INT_CST_LOW (form);
9082
37409796 9083 gcc_assert (mode0 == mode1);
a3170dc6
AH
9084
9085 if (arg0 == error_mark_node || arg1 == error_mark_node)
9086 return const0_rtx;
9087
9088 if (target == 0
9089 || GET_MODE (target) != SImode
9090 || ! (*insn_data[icode].operand[0].predicate) (target, SImode))
9091 target = gen_reg_rtx (SImode);
9092
9093 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
9094 op0 = copy_to_mode_reg (mode0, op0);
9095 if (! (*insn_data[icode].operand[2].predicate) (op1, mode1))
9096 op1 = copy_to_mode_reg (mode1, op1);
9097
9098 scratch = gen_reg_rtx (CCmode);
9099
9100 pat = GEN_FCN (icode) (scratch, op0, op1);
9101 if (! pat)
9102 return const0_rtx;
9103 emit_insn (pat);
9104
9105 /* There are 4 variants for each predicate: _any_, _all_, _upper_,
9106 _lower_. We use one compare, but look in different bits of the
9107 CR for each variant.
9108
9109 There are 2 elements in each SPE simd type (upper/lower). The CR
9110 bits are set as follows:
9111
9112 BIT0 | BIT 1 | BIT 2 | BIT 3
9113 U | L | (U | L) | (U & L)
9114
9115 So, for an "all" relationship, BIT 3 would be set.
9116 For an "any" relationship, BIT 2 would be set. Etc.
9117
9118 Following traditional nomenclature, these bits map to:
9119
9120 BIT0 | BIT 1 | BIT 2 | BIT 3
9121 LT | GT | EQ | OV
9122
9123 Later, we will generate rtl to look in the LT/EQ/EQ/OV bits.
9124 */
9125
9126 switch (form_int)
9127 {
9128 /* All variant. OV bit. */
9129 case 0:
9130 /* We need to get to the OV bit, which is the ORDERED bit. We
9131 could generate (ordered:SI (reg:CC xx) (const_int 0)), but
992d08b1 9132 that's ugly and will make validate_condition_mode die.
a3170dc6
AH
9133 So let's just use another pattern. */
9134 emit_insn (gen_move_from_CR_ov_bit (target, scratch));
9135 return target;
9136 /* Any variant. EQ bit. */
9137 case 1:
9138 code = EQ;
9139 break;
9140 /* Upper variant. LT bit. */
9141 case 2:
9142 code = LT;
9143 break;
9144 /* Lower variant. GT bit. */
9145 case 3:
9146 code = GT;
9147 break;
9148 default:
9149 error ("argument 1 of __builtin_spe_predicate is out of range");
9150 return const0_rtx;
9151 }
9152
9153 tmp = gen_rtx_fmt_ee (code, SImode, scratch, const0_rtx);
9154 emit_move_insn (target, tmp);
9155
9156 return target;
9157}
9158
9159/* The evsel builtins look like this:
9160
9161 e = __builtin_spe_evsel_OP (a, b, c, d);
9162
9163 and work like this:
9164
9165 e[upper] = a[upper] *OP* b[upper] ? c[upper] : d[upper];
9166 e[lower] = a[lower] *OP* b[lower] ? c[lower] : d[lower];
9167*/
9168
9169static rtx
5039610b 9170spe_expand_evsel_builtin (enum insn_code icode, tree exp, rtx target)
a3170dc6
AH
9171{
9172 rtx pat, scratch;
5039610b
SL
9173 tree arg0 = CALL_EXPR_ARG (exp, 0);
9174 tree arg1 = CALL_EXPR_ARG (exp, 1);
9175 tree arg2 = CALL_EXPR_ARG (exp, 2);
9176 tree arg3 = CALL_EXPR_ARG (exp, 3);
84217346
MD
9177 rtx op0 = expand_normal (arg0);
9178 rtx op1 = expand_normal (arg1);
9179 rtx op2 = expand_normal (arg2);
9180 rtx op3 = expand_normal (arg3);
a3170dc6
AH
9181 enum machine_mode mode0 = insn_data[icode].operand[1].mode;
9182 enum machine_mode mode1 = insn_data[icode].operand[2].mode;
9183
37409796 9184 gcc_assert (mode0 == mode1);
a3170dc6
AH
9185
9186 if (arg0 == error_mark_node || arg1 == error_mark_node
9187 || arg2 == error_mark_node || arg3 == error_mark_node)
9188 return const0_rtx;
9189
9190 if (target == 0
9191 || GET_MODE (target) != mode0
9192 || ! (*insn_data[icode].operand[0].predicate) (target, mode0))
9193 target = gen_reg_rtx (mode0);
9194
9195 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
9196 op0 = copy_to_mode_reg (mode0, op0);
9197 if (! (*insn_data[icode].operand[1].predicate) (op1, mode1))
9198 op1 = copy_to_mode_reg (mode0, op1);
9199 if (! (*insn_data[icode].operand[1].predicate) (op2, mode1))
9200 op2 = copy_to_mode_reg (mode0, op2);
9201 if (! (*insn_data[icode].operand[1].predicate) (op3, mode1))
9202 op3 = copy_to_mode_reg (mode0, op3);
9203
9204 /* Generate the compare. */
9205 scratch = gen_reg_rtx (CCmode);
9206 pat = GEN_FCN (icode) (scratch, op0, op1);
9207 if (! pat)
9208 return const0_rtx;
9209 emit_insn (pat);
9210
9211 if (mode0 == V2SImode)
9212 emit_insn (gen_spe_evsel (target, op2, op3, scratch));
9213 else
9214 emit_insn (gen_spe_evsel_fs (target, op2, op3, scratch));
9215
9216 return target;
9217}
9218
0ac081f6
AH
9219/* Expand an expression EXP that calls a built-in function,
9220 with result going to TARGET if that's convenient
9221 (and in mode MODE if that's convenient).
9222 SUBTARGET may be used as the target for computing one of EXP's operands.
9223 IGNORE is nonzero if the value is to be ignored. */
9224
9225static rtx
a2369ed3 9226rs6000_expand_builtin (tree exp, rtx target, rtx subtarget ATTRIBUTE_UNUSED,
c4ad648e
AM
9227 enum machine_mode mode ATTRIBUTE_UNUSED,
9228 int ignore ATTRIBUTE_UNUSED)
0ac081f6 9229{
5039610b 9230 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
92898235 9231 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
586de218 9232 const struct builtin_description *d;
92898235
AH
9233 size_t i;
9234 rtx ret;
9235 bool success;
f676971a 9236
9c78b944
DE
9237 if (fcode == RS6000_BUILTIN_RECIP)
9238 return rs6000_expand_binop_builtin (CODE_FOR_recipdf3, exp, target);
9239
9240 if (fcode == RS6000_BUILTIN_RECIPF)
9241 return rs6000_expand_binop_builtin (CODE_FOR_recipsf3, exp, target);
9242
9243 if (fcode == RS6000_BUILTIN_RSQRTF)
9244 return rs6000_expand_unop_builtin (CODE_FOR_rsqrtsf2, exp, target);
9245
7ccf35ed
DN
9246 if (fcode == ALTIVEC_BUILTIN_MASK_FOR_LOAD
9247 || fcode == ALTIVEC_BUILTIN_MASK_FOR_STORE)
9248 {
9249 int icode = (int) CODE_FOR_altivec_lvsr;
9250 enum machine_mode tmode = insn_data[icode].operand[0].mode;
9251 enum machine_mode mode = insn_data[icode].operand[1].mode;
9252 tree arg;
9253 rtx op, addr, pat;
9254
37409796 9255 gcc_assert (TARGET_ALTIVEC);
7ccf35ed 9256
5039610b 9257 arg = CALL_EXPR_ARG (exp, 0);
37409796 9258 gcc_assert (TREE_CODE (TREE_TYPE (arg)) == POINTER_TYPE);
7ccf35ed
DN
9259 op = expand_expr (arg, NULL_RTX, Pmode, EXPAND_NORMAL);
9260 addr = memory_address (mode, op);
9261 if (fcode == ALTIVEC_BUILTIN_MASK_FOR_STORE)
9262 op = addr;
9263 else
9264 {
9265 /* For the load case need to negate the address. */
9266 op = gen_reg_rtx (GET_MODE (addr));
9267 emit_insn (gen_rtx_SET (VOIDmode, op,
9268 gen_rtx_NEG (GET_MODE (addr), addr)));
c4ad648e 9269 }
7ccf35ed
DN
9270 op = gen_rtx_MEM (mode, op);
9271
9272 if (target == 0
9273 || GET_MODE (target) != tmode
9274 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
9275 target = gen_reg_rtx (tmode);
9276
9277 /*pat = gen_altivec_lvsr (target, op);*/
9278 pat = GEN_FCN (icode) (target, op);
9279 if (!pat)
9280 return 0;
9281 emit_insn (pat);
9282
9283 return target;
9284 }
5039610b
SL
9285
9286 /* FIXME: There's got to be a nicer way to handle this case than
9287 constructing a new CALL_EXPR. */
f57d17f1 9288 if (fcode == ALTIVEC_BUILTIN_VCFUX
7910ae0c
DN
9289 || fcode == ALTIVEC_BUILTIN_VCFSX
9290 || fcode == ALTIVEC_BUILTIN_VCTUXS
9291 || fcode == ALTIVEC_BUILTIN_VCTSXS)
f57d17f1 9292 {
5039610b
SL
9293 if (call_expr_nargs (exp) == 1)
9294 exp = build_call_nary (TREE_TYPE (exp), CALL_EXPR_FN (exp),
9295 2, CALL_EXPR_ARG (exp, 0), integer_zero_node);
982afe02 9296 }
7ccf35ed 9297
0ac081f6 9298 if (TARGET_ALTIVEC)
92898235
AH
9299 {
9300 ret = altivec_expand_builtin (exp, target, &success);
9301
a3170dc6
AH
9302 if (success)
9303 return ret;
9304 }
9305 if (TARGET_SPE)
9306 {
9307 ret = spe_expand_builtin (exp, target, &success);
9308
92898235
AH
9309 if (success)
9310 return ret;
9311 }
96038623
DE
9312 if (TARGET_PAIRED_FLOAT)
9313 {
9314 ret = paired_expand_builtin (exp, target, &success);
9315
9316 if (success)
9317 return ret;
9318 }
92898235 9319
96038623 9320 gcc_assert (TARGET_ALTIVEC || TARGET_SPE || TARGET_PAIRED_FLOAT);
bb8df8a6 9321
37409796
NS
9322 /* Handle simple unary operations. */
9323 d = (struct builtin_description *) bdesc_1arg;
9324 for (i = 0; i < ARRAY_SIZE (bdesc_1arg); i++, d++)
9325 if (d->code == fcode)
5039610b 9326 return rs6000_expand_unop_builtin (d->icode, exp, target);
bb8df8a6 9327
37409796
NS
9328 /* Handle simple binary operations. */
9329 d = (struct builtin_description *) bdesc_2arg;
9330 for (i = 0; i < ARRAY_SIZE (bdesc_2arg); i++, d++)
9331 if (d->code == fcode)
5039610b 9332 return rs6000_expand_binop_builtin (d->icode, exp, target);
0ac081f6 9333
37409796 9334 /* Handle simple ternary operations. */
586de218 9335 d = bdesc_3arg;
37409796
NS
9336 for (i = 0; i < ARRAY_SIZE (bdesc_3arg); i++, d++)
9337 if (d->code == fcode)
5039610b 9338 return rs6000_expand_ternop_builtin (d->icode, exp, target);
bb8df8a6 9339
37409796 9340 gcc_unreachable ();
0ac081f6
AH
9341}
9342
7c62e993
PB
9343static tree
9344build_opaque_vector_type (tree node, int nunits)
9345{
9346 node = copy_node (node);
9347 TYPE_MAIN_VARIANT (node) = node;
0627bfb4 9348 TYPE_CANONICAL (node) = node;
7c62e993
PB
9349 return build_vector_type (node, nunits);
9350}
9351
0ac081f6 9352static void
863d938c 9353rs6000_init_builtins (void)
0ac081f6 9354{
4a5eab38
PB
9355 V2SI_type_node = build_vector_type (intSI_type_node, 2);
9356 V2SF_type_node = build_vector_type (float_type_node, 2);
9357 V4HI_type_node = build_vector_type (intHI_type_node, 4);
9358 V4SI_type_node = build_vector_type (intSI_type_node, 4);
9359 V4SF_type_node = build_vector_type (float_type_node, 4);
7e463bda 9360 V8HI_type_node = build_vector_type (intHI_type_node, 8);
4a5eab38
PB
9361 V16QI_type_node = build_vector_type (intQI_type_node, 16);
9362
9363 unsigned_V16QI_type_node = build_vector_type (unsigned_intQI_type_node, 16);
9364 unsigned_V8HI_type_node = build_vector_type (unsigned_intHI_type_node, 8);
9365 unsigned_V4SI_type_node = build_vector_type (unsigned_intSI_type_node, 4);
9366
7c62e993
PB
9367 opaque_V2SF_type_node = build_opaque_vector_type (float_type_node, 2);
9368 opaque_V2SI_type_node = build_opaque_vector_type (intSI_type_node, 2);
6035d635 9369 opaque_p_V2SI_type_node = build_pointer_type (opaque_V2SI_type_node);
58646b77 9370 opaque_V4SI_type_node = copy_node (V4SI_type_node);
3fdaa45a 9371
8bb418a3
ZL
9372 /* The 'vector bool ...' types must be kept distinct from 'vector unsigned ...'
9373 types, especially in C++ land. Similarly, 'vector pixel' is distinct from
9374 'vector unsigned short'. */
9375
8dd16ecc
NS
9376 bool_char_type_node = build_distinct_type_copy (unsigned_intQI_type_node);
9377 bool_short_type_node = build_distinct_type_copy (unsigned_intHI_type_node);
9378 bool_int_type_node = build_distinct_type_copy (unsigned_intSI_type_node);
9379 pixel_type_node = build_distinct_type_copy (unsigned_intHI_type_node);
8bb418a3 9380
58646b77
PB
9381 long_integer_type_internal_node = long_integer_type_node;
9382 long_unsigned_type_internal_node = long_unsigned_type_node;
9383 intQI_type_internal_node = intQI_type_node;
9384 uintQI_type_internal_node = unsigned_intQI_type_node;
9385 intHI_type_internal_node = intHI_type_node;
9386 uintHI_type_internal_node = unsigned_intHI_type_node;
9387 intSI_type_internal_node = intSI_type_node;
9388 uintSI_type_internal_node = unsigned_intSI_type_node;
9389 float_type_internal_node = float_type_node;
9390 void_type_internal_node = void_type_node;
9391
8bb418a3
ZL
9392 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
9393 get_identifier ("__bool char"),
9394 bool_char_type_node));
9395 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
9396 get_identifier ("__bool short"),
9397 bool_short_type_node));
9398 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
9399 get_identifier ("__bool int"),
9400 bool_int_type_node));
9401 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
9402 get_identifier ("__pixel"),
9403 pixel_type_node));
9404
4a5eab38
PB
9405 bool_V16QI_type_node = build_vector_type (bool_char_type_node, 16);
9406 bool_V8HI_type_node = build_vector_type (bool_short_type_node, 8);
9407 bool_V4SI_type_node = build_vector_type (bool_int_type_node, 4);
9408 pixel_V8HI_type_node = build_vector_type (pixel_type_node, 8);
8bb418a3
ZL
9409
9410 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
9411 get_identifier ("__vector unsigned char"),
9412 unsigned_V16QI_type_node));
9413 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
9414 get_identifier ("__vector signed char"),
9415 V16QI_type_node));
9416 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
9417 get_identifier ("__vector __bool char"),
9418 bool_V16QI_type_node));
9419
9420 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
9421 get_identifier ("__vector unsigned short"),
9422 unsigned_V8HI_type_node));
9423 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
9424 get_identifier ("__vector signed short"),
9425 V8HI_type_node));
9426 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
9427 get_identifier ("__vector __bool short"),
9428 bool_V8HI_type_node));
9429
9430 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
9431 get_identifier ("__vector unsigned int"),
9432 unsigned_V4SI_type_node));
9433 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
9434 get_identifier ("__vector signed int"),
9435 V4SI_type_node));
9436 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
9437 get_identifier ("__vector __bool int"),
9438 bool_V4SI_type_node));
9439
9440 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
9441 get_identifier ("__vector float"),
9442 V4SF_type_node));
9443 (*lang_hooks.decls.pushdecl) (build_decl (TYPE_DECL,
9444 get_identifier ("__vector __pixel"),
9445 pixel_V8HI_type_node));
9446
96038623
DE
9447 if (TARGET_PAIRED_FLOAT)
9448 paired_init_builtins ();
a3170dc6 9449 if (TARGET_SPE)
3fdaa45a 9450 spe_init_builtins ();
0ac081f6
AH
9451 if (TARGET_ALTIVEC)
9452 altivec_init_builtins ();
96038623 9453 if (TARGET_ALTIVEC || TARGET_SPE || TARGET_PAIRED_FLOAT)
0559cc77 9454 rs6000_common_init_builtins ();
9c78b944
DE
9455 if (TARGET_PPC_GFXOPT)
9456 {
9457 tree ftype = build_function_type_list (float_type_node,
9458 float_type_node,
9459 float_type_node,
9460 NULL_TREE);
9461 def_builtin (MASK_PPC_GFXOPT, "__builtin_recipdivf", ftype,
9462 RS6000_BUILTIN_RECIPF);
9463
9464 ftype = build_function_type_list (float_type_node,
9465 float_type_node,
9466 NULL_TREE);
9467 def_builtin (MASK_PPC_GFXOPT, "__builtin_rsqrtf", ftype,
9468 RS6000_BUILTIN_RSQRTF);
9469 }
9470 if (TARGET_POPCNTB)
9471 {
9472 tree ftype = build_function_type_list (double_type_node,
9473 double_type_node,
9474 double_type_node,
9475 NULL_TREE);
9476 def_builtin (MASK_POPCNTB, "__builtin_recipdiv", ftype,
9477 RS6000_BUILTIN_RECIP);
9478
9479 }
69ca3549
DE
9480
9481#if TARGET_XCOFF
9482 /* AIX libm provides clog as __clog. */
9483 if (built_in_decls [BUILT_IN_CLOG])
9484 set_user_assembler_name (built_in_decls [BUILT_IN_CLOG], "__clog");
9485#endif
fb220235
FXC
9486
9487#ifdef SUBTARGET_INIT_BUILTINS
9488 SUBTARGET_INIT_BUILTINS;
9489#endif
0ac081f6
AH
9490}
9491
a3170dc6
AH
9492/* Search through a set of builtins and enable the mask bits.
9493 DESC is an array of builtins.
b6d08ca1 9494 SIZE is the total number of builtins.
a3170dc6
AH
9495 START is the builtin enum at which to start.
9496 END is the builtin enum at which to end. */
0ac081f6 9497static void
a2369ed3 9498enable_mask_for_builtins (struct builtin_description *desc, int size,
f676971a 9499 enum rs6000_builtins start,
a2369ed3 9500 enum rs6000_builtins end)
a3170dc6
AH
9501{
9502 int i;
9503
9504 for (i = 0; i < size; ++i)
9505 if (desc[i].code == start)
9506 break;
9507
9508 if (i == size)
9509 return;
9510
9511 for (; i < size; ++i)
9512 {
9513 /* Flip all the bits on. */
9514 desc[i].mask = target_flags;
9515 if (desc[i].code == end)
9516 break;
9517 }
9518}
9519
9520static void
863d938c 9521spe_init_builtins (void)
0ac081f6 9522{
a3170dc6
AH
9523 tree endlink = void_list_node;
9524 tree puint_type_node = build_pointer_type (unsigned_type_node);
9525 tree pushort_type_node = build_pointer_type (short_unsigned_type_node);
ae4b4a02 9526 struct builtin_description *d;
0ac081f6
AH
9527 size_t i;
9528
a3170dc6
AH
9529 tree v2si_ftype_4_v2si
9530 = build_function_type
3fdaa45a
AH
9531 (opaque_V2SI_type_node,
9532 tree_cons (NULL_TREE, opaque_V2SI_type_node,
9533 tree_cons (NULL_TREE, opaque_V2SI_type_node,
9534 tree_cons (NULL_TREE, opaque_V2SI_type_node,
9535 tree_cons (NULL_TREE, opaque_V2SI_type_node,
a3170dc6
AH
9536 endlink)))));
9537
9538 tree v2sf_ftype_4_v2sf
9539 = build_function_type
3fdaa45a
AH
9540 (opaque_V2SF_type_node,
9541 tree_cons (NULL_TREE, opaque_V2SF_type_node,
9542 tree_cons (NULL_TREE, opaque_V2SF_type_node,
9543 tree_cons (NULL_TREE, opaque_V2SF_type_node,
9544 tree_cons (NULL_TREE, opaque_V2SF_type_node,
a3170dc6
AH
9545 endlink)))));
9546
9547 tree int_ftype_int_v2si_v2si
9548 = build_function_type
9549 (integer_type_node,
9550 tree_cons (NULL_TREE, integer_type_node,
3fdaa45a
AH
9551 tree_cons (NULL_TREE, opaque_V2SI_type_node,
9552 tree_cons (NULL_TREE, opaque_V2SI_type_node,
a3170dc6
AH
9553 endlink))));
9554
9555 tree int_ftype_int_v2sf_v2sf
9556 = build_function_type
9557 (integer_type_node,
9558 tree_cons (NULL_TREE, integer_type_node,
3fdaa45a
AH
9559 tree_cons (NULL_TREE, opaque_V2SF_type_node,
9560 tree_cons (NULL_TREE, opaque_V2SF_type_node,
a3170dc6
AH
9561 endlink))));
9562
9563 tree void_ftype_v2si_puint_int
9564 = build_function_type (void_type_node,
3fdaa45a 9565 tree_cons (NULL_TREE, opaque_V2SI_type_node,
a3170dc6
AH
9566 tree_cons (NULL_TREE, puint_type_node,
9567 tree_cons (NULL_TREE,
9568 integer_type_node,
9569 endlink))));
9570
9571 tree void_ftype_v2si_puint_char
9572 = build_function_type (void_type_node,
3fdaa45a 9573 tree_cons (NULL_TREE, opaque_V2SI_type_node,
a3170dc6
AH
9574 tree_cons (NULL_TREE, puint_type_node,
9575 tree_cons (NULL_TREE,
9576 char_type_node,
9577 endlink))));
9578
9579 tree void_ftype_v2si_pv2si_int
9580 = build_function_type (void_type_node,
3fdaa45a 9581 tree_cons (NULL_TREE, opaque_V2SI_type_node,
6035d635 9582 tree_cons (NULL_TREE, opaque_p_V2SI_type_node,
a3170dc6
AH
9583 tree_cons (NULL_TREE,
9584 integer_type_node,
9585 endlink))));
9586
9587 tree void_ftype_v2si_pv2si_char
9588 = build_function_type (void_type_node,
3fdaa45a 9589 tree_cons (NULL_TREE, opaque_V2SI_type_node,
6035d635 9590 tree_cons (NULL_TREE, opaque_p_V2SI_type_node,
a3170dc6
AH
9591 tree_cons (NULL_TREE,
9592 char_type_node,
9593 endlink))));
9594
9595 tree void_ftype_int
9596 = build_function_type (void_type_node,
9597 tree_cons (NULL_TREE, integer_type_node, endlink));
9598
9599 tree int_ftype_void
36e8d515 9600 = build_function_type (integer_type_node, endlink);
a3170dc6
AH
9601
9602 tree v2si_ftype_pv2si_int
3fdaa45a 9603 = build_function_type (opaque_V2SI_type_node,
6035d635 9604 tree_cons (NULL_TREE, opaque_p_V2SI_type_node,
a3170dc6
AH
9605 tree_cons (NULL_TREE, integer_type_node,
9606 endlink)));
9607
9608 tree v2si_ftype_puint_int
3fdaa45a 9609 = build_function_type (opaque_V2SI_type_node,
a3170dc6
AH
9610 tree_cons (NULL_TREE, puint_type_node,
9611 tree_cons (NULL_TREE, integer_type_node,
9612 endlink)));
9613
9614 tree v2si_ftype_pushort_int
3fdaa45a 9615 = build_function_type (opaque_V2SI_type_node,
a3170dc6
AH
9616 tree_cons (NULL_TREE, pushort_type_node,
9617 tree_cons (NULL_TREE, integer_type_node,
9618 endlink)));
9619
00332c9f
AH
9620 tree v2si_ftype_signed_char
9621 = build_function_type (opaque_V2SI_type_node,
9622 tree_cons (NULL_TREE, signed_char_type_node,
9623 endlink));
9624
a3170dc6
AH
9625 /* The initialization of the simple binary and unary builtins is
9626 done in rs6000_common_init_builtins, but we have to enable the
9627 mask bits here manually because we have run out of `target_flags'
9628 bits. We really need to redesign this mask business. */
9629
9630 enable_mask_for_builtins ((struct builtin_description *) bdesc_2arg,
9631 ARRAY_SIZE (bdesc_2arg),
9632 SPE_BUILTIN_EVADDW,
9633 SPE_BUILTIN_EVXOR);
9634 enable_mask_for_builtins ((struct builtin_description *) bdesc_1arg,
9635 ARRAY_SIZE (bdesc_1arg),
9636 SPE_BUILTIN_EVABS,
9637 SPE_BUILTIN_EVSUBFUSIAAW);
9638 enable_mask_for_builtins ((struct builtin_description *) bdesc_spe_predicates,
9639 ARRAY_SIZE (bdesc_spe_predicates),
9640 SPE_BUILTIN_EVCMPEQ,
9641 SPE_BUILTIN_EVFSTSTLT);
9642 enable_mask_for_builtins ((struct builtin_description *) bdesc_spe_evsel,
9643 ARRAY_SIZE (bdesc_spe_evsel),
9644 SPE_BUILTIN_EVSEL_CMPGTS,
9645 SPE_BUILTIN_EVSEL_FSTSTEQ);
9646
36252949
AH
9647 (*lang_hooks.decls.pushdecl)
9648 (build_decl (TYPE_DECL, get_identifier ("__ev64_opaque__"),
9649 opaque_V2SI_type_node));
9650
a3170dc6 9651 /* Initialize irregular SPE builtins. */
f676971a 9652
a3170dc6
AH
9653 def_builtin (target_flags, "__builtin_spe_mtspefscr", void_ftype_int, SPE_BUILTIN_MTSPEFSCR);
9654 def_builtin (target_flags, "__builtin_spe_mfspefscr", int_ftype_void, SPE_BUILTIN_MFSPEFSCR);
9655 def_builtin (target_flags, "__builtin_spe_evstddx", void_ftype_v2si_pv2si_int, SPE_BUILTIN_EVSTDDX);
9656 def_builtin (target_flags, "__builtin_spe_evstdhx", void_ftype_v2si_pv2si_int, SPE_BUILTIN_EVSTDHX);
9657 def_builtin (target_flags, "__builtin_spe_evstdwx", void_ftype_v2si_pv2si_int, SPE_BUILTIN_EVSTDWX);
9658 def_builtin (target_flags, "__builtin_spe_evstwhex", void_ftype_v2si_puint_int, SPE_BUILTIN_EVSTWHEX);
9659 def_builtin (target_flags, "__builtin_spe_evstwhox", void_ftype_v2si_puint_int, SPE_BUILTIN_EVSTWHOX);
9660 def_builtin (target_flags, "__builtin_spe_evstwwex", void_ftype_v2si_puint_int, SPE_BUILTIN_EVSTWWEX);
9661 def_builtin (target_flags, "__builtin_spe_evstwwox", void_ftype_v2si_puint_int, SPE_BUILTIN_EVSTWWOX);
9662 def_builtin (target_flags, "__builtin_spe_evstdd", void_ftype_v2si_pv2si_char, SPE_BUILTIN_EVSTDD);
9663 def_builtin (target_flags, "__builtin_spe_evstdh", void_ftype_v2si_pv2si_char, SPE_BUILTIN_EVSTDH);
9664 def_builtin (target_flags, "__builtin_spe_evstdw", void_ftype_v2si_pv2si_char, SPE_BUILTIN_EVSTDW);
9665 def_builtin (target_flags, "__builtin_spe_evstwhe", void_ftype_v2si_puint_char, SPE_BUILTIN_EVSTWHE);
9666 def_builtin (target_flags, "__builtin_spe_evstwho", void_ftype_v2si_puint_char, SPE_BUILTIN_EVSTWHO);
9667 def_builtin (target_flags, "__builtin_spe_evstwwe", void_ftype_v2si_puint_char, SPE_BUILTIN_EVSTWWE);
9668 def_builtin (target_flags, "__builtin_spe_evstwwo", void_ftype_v2si_puint_char, SPE_BUILTIN_EVSTWWO);
00332c9f
AH
9669 def_builtin (target_flags, "__builtin_spe_evsplatfi", v2si_ftype_signed_char, SPE_BUILTIN_EVSPLATFI);
9670 def_builtin (target_flags, "__builtin_spe_evsplati", v2si_ftype_signed_char, SPE_BUILTIN_EVSPLATI);
a3170dc6
AH
9671
9672 /* Loads. */
9673 def_builtin (target_flags, "__builtin_spe_evlddx", v2si_ftype_pv2si_int, SPE_BUILTIN_EVLDDX);
9674 def_builtin (target_flags, "__builtin_spe_evldwx", v2si_ftype_pv2si_int, SPE_BUILTIN_EVLDWX);
9675 def_builtin (target_flags, "__builtin_spe_evldhx", v2si_ftype_pv2si_int, SPE_BUILTIN_EVLDHX);
9676 def_builtin (target_flags, "__builtin_spe_evlwhex", v2si_ftype_puint_int, SPE_BUILTIN_EVLWHEX);
9677 def_builtin (target_flags, "__builtin_spe_evlwhoux", v2si_ftype_puint_int, SPE_BUILTIN_EVLWHOUX);
9678 def_builtin (target_flags, "__builtin_spe_evlwhosx", v2si_ftype_puint_int, SPE_BUILTIN_EVLWHOSX);
9679 def_builtin (target_flags, "__builtin_spe_evlwwsplatx", v2si_ftype_puint_int, SPE_BUILTIN_EVLWWSPLATX);
9680 def_builtin (target_flags, "__builtin_spe_evlwhsplatx", v2si_ftype_puint_int, SPE_BUILTIN_EVLWHSPLATX);
9681 def_builtin (target_flags, "__builtin_spe_evlhhesplatx", v2si_ftype_pushort_int, SPE_BUILTIN_EVLHHESPLATX);
9682 def_builtin (target_flags, "__builtin_spe_evlhhousplatx", v2si_ftype_pushort_int, SPE_BUILTIN_EVLHHOUSPLATX);
9683 def_builtin (target_flags, "__builtin_spe_evlhhossplatx", v2si_ftype_pushort_int, SPE_BUILTIN_EVLHHOSSPLATX);
9684 def_builtin (target_flags, "__builtin_spe_evldd", v2si_ftype_pv2si_int, SPE_BUILTIN_EVLDD);
9685 def_builtin (target_flags, "__builtin_spe_evldw", v2si_ftype_pv2si_int, SPE_BUILTIN_EVLDW);
9686 def_builtin (target_flags, "__builtin_spe_evldh", v2si_ftype_pv2si_int, SPE_BUILTIN_EVLDH);
9687 def_builtin (target_flags, "__builtin_spe_evlhhesplat", v2si_ftype_pushort_int, SPE_BUILTIN_EVLHHESPLAT);
9688 def_builtin (target_flags, "__builtin_spe_evlhhossplat", v2si_ftype_pushort_int, SPE_BUILTIN_EVLHHOSSPLAT);
9689 def_builtin (target_flags, "__builtin_spe_evlhhousplat", v2si_ftype_pushort_int, SPE_BUILTIN_EVLHHOUSPLAT);
9690 def_builtin (target_flags, "__builtin_spe_evlwhe", v2si_ftype_puint_int, SPE_BUILTIN_EVLWHE);
9691 def_builtin (target_flags, "__builtin_spe_evlwhos", v2si_ftype_puint_int, SPE_BUILTIN_EVLWHOS);
9692 def_builtin (target_flags, "__builtin_spe_evlwhou", v2si_ftype_puint_int, SPE_BUILTIN_EVLWHOU);
9693 def_builtin (target_flags, "__builtin_spe_evlwhsplat", v2si_ftype_puint_int, SPE_BUILTIN_EVLWHSPLAT);
9694 def_builtin (target_flags, "__builtin_spe_evlwwsplat", v2si_ftype_puint_int, SPE_BUILTIN_EVLWWSPLAT);
9695
9696 /* Predicates. */
9697 d = (struct builtin_description *) bdesc_spe_predicates;
9698 for (i = 0; i < ARRAY_SIZE (bdesc_spe_predicates); ++i, d++)
9699 {
9700 tree type;
9701
9702 switch (insn_data[d->icode].operand[1].mode)
9703 {
9704 case V2SImode:
9705 type = int_ftype_int_v2si_v2si;
9706 break;
9707 case V2SFmode:
9708 type = int_ftype_int_v2sf_v2sf;
9709 break;
9710 default:
37409796 9711 gcc_unreachable ();
a3170dc6
AH
9712 }
9713
9714 def_builtin (d->mask, d->name, type, d->code);
9715 }
9716
9717 /* Evsel predicates. */
9718 d = (struct builtin_description *) bdesc_spe_evsel;
9719 for (i = 0; i < ARRAY_SIZE (bdesc_spe_evsel); ++i, d++)
9720 {
9721 tree type;
9722
9723 switch (insn_data[d->icode].operand[1].mode)
9724 {
9725 case V2SImode:
9726 type = v2si_ftype_4_v2si;
9727 break;
9728 case V2SFmode:
9729 type = v2sf_ftype_4_v2sf;
9730 break;
9731 default:
37409796 9732 gcc_unreachable ();
a3170dc6
AH
9733 }
9734
9735 def_builtin (d->mask, d->name, type, d->code);
9736 }
9737}
9738
96038623
DE
9739static void
9740paired_init_builtins (void)
9741{
23a651fc 9742 const struct builtin_description *d;
96038623
DE
9743 size_t i;
9744 tree endlink = void_list_node;
9745
9746 tree int_ftype_int_v2sf_v2sf
9747 = build_function_type
9748 (integer_type_node,
9749 tree_cons (NULL_TREE, integer_type_node,
9750 tree_cons (NULL_TREE, V2SF_type_node,
9751 tree_cons (NULL_TREE, V2SF_type_node,
9752 endlink))));
9753 tree pcfloat_type_node =
9754 build_pointer_type (build_qualified_type
9755 (float_type_node, TYPE_QUAL_CONST));
9756
9757 tree v2sf_ftype_long_pcfloat = build_function_type_list (V2SF_type_node,
9758 long_integer_type_node,
9759 pcfloat_type_node,
9760 NULL_TREE);
9761 tree void_ftype_v2sf_long_pcfloat =
9762 build_function_type_list (void_type_node,
9763 V2SF_type_node,
9764 long_integer_type_node,
9765 pcfloat_type_node,
9766 NULL_TREE);
9767
9768
9769 def_builtin (0, "__builtin_paired_lx", v2sf_ftype_long_pcfloat,
9770 PAIRED_BUILTIN_LX);
9771
9772
9773 def_builtin (0, "__builtin_paired_stx", void_ftype_v2sf_long_pcfloat,
9774 PAIRED_BUILTIN_STX);
9775
9776 /* Predicates. */
23a651fc 9777 d = bdesc_paired_preds;
96038623
DE
9778 for (i = 0; i < ARRAY_SIZE (bdesc_paired_preds); ++i, d++)
9779 {
9780 tree type;
9781
9782 switch (insn_data[d->icode].operand[1].mode)
9783 {
9784 case V2SFmode:
9785 type = int_ftype_int_v2sf_v2sf;
9786 break;
9787 default:
9788 gcc_unreachable ();
9789 }
9790
9791 def_builtin (d->mask, d->name, type, d->code);
9792 }
9793}
9794
a3170dc6 9795static void
863d938c 9796altivec_init_builtins (void)
a3170dc6 9797{
586de218
KG
9798 const struct builtin_description *d;
9799 const struct builtin_description_predicates *dp;
a3170dc6 9800 size_t i;
7a4eca66
DE
9801 tree ftype;
9802
a3170dc6
AH
9803 tree pfloat_type_node = build_pointer_type (float_type_node);
9804 tree pint_type_node = build_pointer_type (integer_type_node);
9805 tree pshort_type_node = build_pointer_type (short_integer_type_node);
9806 tree pchar_type_node = build_pointer_type (char_type_node);
9807
9808 tree pvoid_type_node = build_pointer_type (void_type_node);
9809
0dbc3651
ZW
9810 tree pcfloat_type_node = build_pointer_type (build_qualified_type (float_type_node, TYPE_QUAL_CONST));
9811 tree pcint_type_node = build_pointer_type (build_qualified_type (integer_type_node, TYPE_QUAL_CONST));
9812 tree pcshort_type_node = build_pointer_type (build_qualified_type (short_integer_type_node, TYPE_QUAL_CONST));
9813 tree pcchar_type_node = build_pointer_type (build_qualified_type (char_type_node, TYPE_QUAL_CONST));
9814
9815 tree pcvoid_type_node = build_pointer_type (build_qualified_type (void_type_node, TYPE_QUAL_CONST));
9816
58646b77
PB
9817 tree int_ftype_opaque
9818 = build_function_type_list (integer_type_node,
9819 opaque_V4SI_type_node, NULL_TREE);
266b4890
AP
9820 tree opaque_ftype_opaque
9821 = build_function_type (integer_type_node,
9822 NULL_TREE);
58646b77
PB
9823 tree opaque_ftype_opaque_int
9824 = build_function_type_list (opaque_V4SI_type_node,
9825 opaque_V4SI_type_node, integer_type_node, NULL_TREE);
9826 tree opaque_ftype_opaque_opaque_int
9827 = build_function_type_list (opaque_V4SI_type_node,
9828 opaque_V4SI_type_node, opaque_V4SI_type_node,
9829 integer_type_node, NULL_TREE);
9830 tree int_ftype_int_opaque_opaque
9831 = build_function_type_list (integer_type_node,
9832 integer_type_node, opaque_V4SI_type_node,
9833 opaque_V4SI_type_node, NULL_TREE);
a3170dc6
AH
9834 tree int_ftype_int_v4si_v4si
9835 = build_function_type_list (integer_type_node,
9836 integer_type_node, V4SI_type_node,
9837 V4SI_type_node, NULL_TREE);
0dbc3651
ZW
9838 tree v4sf_ftype_pcfloat
9839 = build_function_type_list (V4SF_type_node, pcfloat_type_node, NULL_TREE);
a3170dc6 9840 tree void_ftype_pfloat_v4sf
b4de2f7d 9841 = build_function_type_list (void_type_node,
a3170dc6 9842 pfloat_type_node, V4SF_type_node, NULL_TREE);
0dbc3651
ZW
9843 tree v4si_ftype_pcint
9844 = build_function_type_list (V4SI_type_node, pcint_type_node, NULL_TREE);
9845 tree void_ftype_pint_v4si
b4de2f7d
AH
9846 = build_function_type_list (void_type_node,
9847 pint_type_node, V4SI_type_node, NULL_TREE);
0dbc3651
ZW
9848 tree v8hi_ftype_pcshort
9849 = build_function_type_list (V8HI_type_node, pcshort_type_node, NULL_TREE);
f18c054f 9850 tree void_ftype_pshort_v8hi
b4de2f7d
AH
9851 = build_function_type_list (void_type_node,
9852 pshort_type_node, V8HI_type_node, NULL_TREE);
0dbc3651
ZW
9853 tree v16qi_ftype_pcchar
9854 = build_function_type_list (V16QI_type_node, pcchar_type_node, NULL_TREE);
f18c054f 9855 tree void_ftype_pchar_v16qi
b4de2f7d
AH
9856 = build_function_type_list (void_type_node,
9857 pchar_type_node, V16QI_type_node, NULL_TREE);
95385cbb 9858 tree void_ftype_v4si
b4de2f7d 9859 = build_function_type_list (void_type_node, V4SI_type_node, NULL_TREE);
a3170dc6
AH
9860 tree v8hi_ftype_void
9861 = build_function_type (V8HI_type_node, void_list_node);
9862 tree void_ftype_void
9863 = build_function_type (void_type_node, void_list_node);
e34b6648
JJ
9864 tree void_ftype_int
9865 = build_function_type_list (void_type_node, integer_type_node, NULL_TREE);
0dbc3651 9866
58646b77
PB
9867 tree opaque_ftype_long_pcvoid
9868 = build_function_type_list (opaque_V4SI_type_node,
9869 long_integer_type_node, pcvoid_type_node, NULL_TREE);
b4a62fa0 9870 tree v16qi_ftype_long_pcvoid
a3170dc6 9871 = build_function_type_list (V16QI_type_node,
b4a62fa0
SB
9872 long_integer_type_node, pcvoid_type_node, NULL_TREE);
9873 tree v8hi_ftype_long_pcvoid
a3170dc6 9874 = build_function_type_list (V8HI_type_node,
b4a62fa0
SB
9875 long_integer_type_node, pcvoid_type_node, NULL_TREE);
9876 tree v4si_ftype_long_pcvoid
a3170dc6 9877 = build_function_type_list (V4SI_type_node,
b4a62fa0 9878 long_integer_type_node, pcvoid_type_node, NULL_TREE);
0dbc3651 9879
58646b77
PB
9880 tree void_ftype_opaque_long_pvoid
9881 = build_function_type_list (void_type_node,
9882 opaque_V4SI_type_node, long_integer_type_node,
9883 pvoid_type_node, NULL_TREE);
b4a62fa0 9884 tree void_ftype_v4si_long_pvoid
b4de2f7d 9885 = build_function_type_list (void_type_node,
b4a62fa0 9886 V4SI_type_node, long_integer_type_node,
b4de2f7d 9887 pvoid_type_node, NULL_TREE);
b4a62fa0 9888 tree void_ftype_v16qi_long_pvoid
b4de2f7d 9889 = build_function_type_list (void_type_node,
b4a62fa0 9890 V16QI_type_node, long_integer_type_node,
b4de2f7d 9891 pvoid_type_node, NULL_TREE);
b4a62fa0 9892 tree void_ftype_v8hi_long_pvoid
b4de2f7d 9893 = build_function_type_list (void_type_node,
b4a62fa0 9894 V8HI_type_node, long_integer_type_node,
b4de2f7d 9895 pvoid_type_node, NULL_TREE);
a3170dc6
AH
9896 tree int_ftype_int_v8hi_v8hi
9897 = build_function_type_list (integer_type_node,
9898 integer_type_node, V8HI_type_node,
9899 V8HI_type_node, NULL_TREE);
9900 tree int_ftype_int_v16qi_v16qi
9901 = build_function_type_list (integer_type_node,
9902 integer_type_node, V16QI_type_node,
9903 V16QI_type_node, NULL_TREE);
9904 tree int_ftype_int_v4sf_v4sf
9905 = build_function_type_list (integer_type_node,
9906 integer_type_node, V4SF_type_node,
9907 V4SF_type_node, NULL_TREE);
9908 tree v4si_ftype_v4si
9909 = build_function_type_list (V4SI_type_node, V4SI_type_node, NULL_TREE);
9910 tree v8hi_ftype_v8hi
9911 = build_function_type_list (V8HI_type_node, V8HI_type_node, NULL_TREE);
9912 tree v16qi_ftype_v16qi
9913 = build_function_type_list (V16QI_type_node, V16QI_type_node, NULL_TREE);
9914 tree v4sf_ftype_v4sf
9915 = build_function_type_list (V4SF_type_node, V4SF_type_node, NULL_TREE);
8bb418a3 9916 tree void_ftype_pcvoid_int_int
a3170dc6 9917 = build_function_type_list (void_type_node,
0dbc3651 9918 pcvoid_type_node, integer_type_node,
8bb418a3 9919 integer_type_node, NULL_TREE);
8bb418a3 9920
0dbc3651
ZW
9921 def_builtin (MASK_ALTIVEC, "__builtin_altivec_ld_internal_4sf", v4sf_ftype_pcfloat,
9922 ALTIVEC_BUILTIN_LD_INTERNAL_4sf);
9923 def_builtin (MASK_ALTIVEC, "__builtin_altivec_st_internal_4sf", void_ftype_pfloat_v4sf,
9924 ALTIVEC_BUILTIN_ST_INTERNAL_4sf);
9925 def_builtin (MASK_ALTIVEC, "__builtin_altivec_ld_internal_4si", v4si_ftype_pcint,
9926 ALTIVEC_BUILTIN_LD_INTERNAL_4si);
9927 def_builtin (MASK_ALTIVEC, "__builtin_altivec_st_internal_4si", void_ftype_pint_v4si,
9928 ALTIVEC_BUILTIN_ST_INTERNAL_4si);
9929 def_builtin (MASK_ALTIVEC, "__builtin_altivec_ld_internal_8hi", v8hi_ftype_pcshort,
9930 ALTIVEC_BUILTIN_LD_INTERNAL_8hi);
9931 def_builtin (MASK_ALTIVEC, "__builtin_altivec_st_internal_8hi", void_ftype_pshort_v8hi,
9932 ALTIVEC_BUILTIN_ST_INTERNAL_8hi);
9933 def_builtin (MASK_ALTIVEC, "__builtin_altivec_ld_internal_16qi", v16qi_ftype_pcchar,
9934 ALTIVEC_BUILTIN_LD_INTERNAL_16qi);
9935 def_builtin (MASK_ALTIVEC, "__builtin_altivec_st_internal_16qi", void_ftype_pchar_v16qi,
9936 ALTIVEC_BUILTIN_ST_INTERNAL_16qi);
a3170dc6
AH
9937 def_builtin (MASK_ALTIVEC, "__builtin_altivec_mtvscr", void_ftype_v4si, ALTIVEC_BUILTIN_MTVSCR);
9938 def_builtin (MASK_ALTIVEC, "__builtin_altivec_mfvscr", v8hi_ftype_void, ALTIVEC_BUILTIN_MFVSCR);
9939 def_builtin (MASK_ALTIVEC, "__builtin_altivec_dssall", void_ftype_void, ALTIVEC_BUILTIN_DSSALL);
e34b6648 9940 def_builtin (MASK_ALTIVEC, "__builtin_altivec_dss", void_ftype_int, ALTIVEC_BUILTIN_DSS);
b4a62fa0
SB
9941 def_builtin (MASK_ALTIVEC, "__builtin_altivec_lvsl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVSL);
9942 def_builtin (MASK_ALTIVEC, "__builtin_altivec_lvsr", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVSR);
9943 def_builtin (MASK_ALTIVEC, "__builtin_altivec_lvebx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVEBX);
9944 def_builtin (MASK_ALTIVEC, "__builtin_altivec_lvehx", v8hi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVEHX);
9945 def_builtin (MASK_ALTIVEC, "__builtin_altivec_lvewx", v4si_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVEWX);
9946 def_builtin (MASK_ALTIVEC, "__builtin_altivec_lvxl", v4si_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVXL);
9947 def_builtin (MASK_ALTIVEC, "__builtin_altivec_lvx", v4si_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVX);
9948 def_builtin (MASK_ALTIVEC, "__builtin_altivec_stvx", void_ftype_v4si_long_pvoid, ALTIVEC_BUILTIN_STVX);
9949 def_builtin (MASK_ALTIVEC, "__builtin_altivec_stvewx", void_ftype_v4si_long_pvoid, ALTIVEC_BUILTIN_STVEWX);
9950 def_builtin (MASK_ALTIVEC, "__builtin_altivec_stvxl", void_ftype_v4si_long_pvoid, ALTIVEC_BUILTIN_STVXL);
9951 def_builtin (MASK_ALTIVEC, "__builtin_altivec_stvebx", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_STVEBX);
9952 def_builtin (MASK_ALTIVEC, "__builtin_altivec_stvehx", void_ftype_v8hi_long_pvoid, ALTIVEC_BUILTIN_STVEHX);
58646b77
PB
9953 def_builtin (MASK_ALTIVEC, "__builtin_vec_ld", opaque_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LD);
9954 def_builtin (MASK_ALTIVEC, "__builtin_vec_lde", opaque_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LDE);
9955 def_builtin (MASK_ALTIVEC, "__builtin_vec_ldl", opaque_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LDL);
9956 def_builtin (MASK_ALTIVEC, "__builtin_vec_lvsl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVSL);
9957 def_builtin (MASK_ALTIVEC, "__builtin_vec_lvsr", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVSR);
9958 def_builtin (MASK_ALTIVEC, "__builtin_vec_lvebx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVEBX);
9959 def_builtin (MASK_ALTIVEC, "__builtin_vec_lvehx", v8hi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVEHX);
9960 def_builtin (MASK_ALTIVEC, "__builtin_vec_lvewx", v4si_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVEWX);
9961 def_builtin (MASK_ALTIVEC, "__builtin_vec_st", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_ST);
9962 def_builtin (MASK_ALTIVEC, "__builtin_vec_ste", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_STE);
9963 def_builtin (MASK_ALTIVEC, "__builtin_vec_stl", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_STL);
9964 def_builtin (MASK_ALTIVEC, "__builtin_vec_stvewx", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_STVEWX);
9965 def_builtin (MASK_ALTIVEC, "__builtin_vec_stvebx", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_STVEBX);
9966 def_builtin (MASK_ALTIVEC, "__builtin_vec_stvehx", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_STVEHX);
9967
0b61703c
AP
9968 if (rs6000_cpu == PROCESSOR_CELL)
9969 {
9970 def_builtin (MASK_ALTIVEC, "__builtin_altivec_lvlx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVLX);
9971 def_builtin (MASK_ALTIVEC, "__builtin_altivec_lvlxl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVLXL);
9972 def_builtin (MASK_ALTIVEC, "__builtin_altivec_lvrx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVRX);
9973 def_builtin (MASK_ALTIVEC, "__builtin_altivec_lvrxl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVRXL);
9974
9975 def_builtin (MASK_ALTIVEC, "__builtin_vec_lvlx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVLX);
9976 def_builtin (MASK_ALTIVEC, "__builtin_vec_lvlxl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVLXL);
9977 def_builtin (MASK_ALTIVEC, "__builtin_vec_lvrx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVRX);
9978 def_builtin (MASK_ALTIVEC, "__builtin_vec_lvrxl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVRXL);
9979
9980 def_builtin (MASK_ALTIVEC, "__builtin_altivec_stvlx", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_STVLX);
9981 def_builtin (MASK_ALTIVEC, "__builtin_altivec_stvlxl", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_STVLXL);
9982 def_builtin (MASK_ALTIVEC, "__builtin_altivec_stvrx", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_STVRX);
9983 def_builtin (MASK_ALTIVEC, "__builtin_altivec_stvrxl", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_STVRXL);
9984
9985 def_builtin (MASK_ALTIVEC, "__builtin_vec_stvlx", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_VEC_STVLX);
9986 def_builtin (MASK_ALTIVEC, "__builtin_vec_stvlxl", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_VEC_STVLXL);
9987 def_builtin (MASK_ALTIVEC, "__builtin_vec_stvrx", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_VEC_STVRX);
9988 def_builtin (MASK_ALTIVEC, "__builtin_vec_stvrxl", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_VEC_STVRXL);
9989 }
58646b77 9990 def_builtin (MASK_ALTIVEC, "__builtin_vec_step", int_ftype_opaque, ALTIVEC_BUILTIN_VEC_STEP);
266b4890
AP
9991 def_builtin (MASK_ALTIVEC, "__builtin_vec_splats", opaque_ftype_opaque, ALTIVEC_BUILTIN_VEC_SPLATS);
9992 def_builtin (MASK_ALTIVEC, "__builtin_vec_promote", opaque_ftype_opaque, ALTIVEC_BUILTIN_VEC_PROMOTE);
58646b77
PB
9993
9994 def_builtin (MASK_ALTIVEC, "__builtin_vec_sld", opaque_ftype_opaque_opaque_int, ALTIVEC_BUILTIN_VEC_SLD);
9995 def_builtin (MASK_ALTIVEC, "__builtin_vec_splat", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_SPLAT);
266b4890
AP
9996 def_builtin (MASK_ALTIVEC, "__builtin_vec_extract", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_EXTRACT);
9997 def_builtin (MASK_ALTIVEC, "__builtin_vec_insert", opaque_ftype_opaque_opaque_int, ALTIVEC_BUILTIN_VEC_INSERT);
58646b77
PB
9998 def_builtin (MASK_ALTIVEC, "__builtin_vec_vspltw", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_VSPLTW);
9999 def_builtin (MASK_ALTIVEC, "__builtin_vec_vsplth", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_VSPLTH);
10000 def_builtin (MASK_ALTIVEC, "__builtin_vec_vspltb", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_VSPLTB);
10001 def_builtin (MASK_ALTIVEC, "__builtin_vec_ctf", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_CTF);
10002 def_builtin (MASK_ALTIVEC, "__builtin_vec_vcfsx", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_VCFSX);
10003 def_builtin (MASK_ALTIVEC, "__builtin_vec_vcfux", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_VCFUX);
10004 def_builtin (MASK_ALTIVEC, "__builtin_vec_cts", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_CTS);
10005 def_builtin (MASK_ALTIVEC, "__builtin_vec_ctu", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_CTU);
8bb418a3 10006
a3170dc6 10007 /* Add the DST variants. */
586de218 10008 d = bdesc_dst;
a3170dc6 10009 for (i = 0; i < ARRAY_SIZE (bdesc_dst); i++, d++)
8bb418a3 10010 def_builtin (d->mask, d->name, void_ftype_pcvoid_int_int, d->code);
a3170dc6
AH
10011
10012 /* Initialize the predicates. */
586de218 10013 dp = bdesc_altivec_preds;
a3170dc6
AH
10014 for (i = 0; i < ARRAY_SIZE (bdesc_altivec_preds); i++, dp++)
10015 {
10016 enum machine_mode mode1;
10017 tree type;
58646b77
PB
10018 bool is_overloaded = dp->code >= ALTIVEC_BUILTIN_OVERLOADED_FIRST
10019 && dp->code <= ALTIVEC_BUILTIN_OVERLOADED_LAST;
a3170dc6 10020
58646b77
PB
10021 if (is_overloaded)
10022 mode1 = VOIDmode;
10023 else
10024 mode1 = insn_data[dp->icode].operand[1].mode;
a3170dc6
AH
10025
10026 switch (mode1)
10027 {
58646b77
PB
10028 case VOIDmode:
10029 type = int_ftype_int_opaque_opaque;
10030 break;
a3170dc6
AH
10031 case V4SImode:
10032 type = int_ftype_int_v4si_v4si;
10033 break;
10034 case V8HImode:
10035 type = int_ftype_int_v8hi_v8hi;
10036 break;
10037 case V16QImode:
10038 type = int_ftype_int_v16qi_v16qi;
10039 break;
10040 case V4SFmode:
10041 type = int_ftype_int_v4sf_v4sf;
10042 break;
10043 default:
37409796 10044 gcc_unreachable ();
a3170dc6 10045 }
f676971a 10046
a3170dc6
AH
10047 def_builtin (dp->mask, dp->name, type, dp->code);
10048 }
10049
10050 /* Initialize the abs* operators. */
586de218 10051 d = bdesc_abs;
a3170dc6
AH
10052 for (i = 0; i < ARRAY_SIZE (bdesc_abs); i++, d++)
10053 {
10054 enum machine_mode mode0;
10055 tree type;
10056
10057 mode0 = insn_data[d->icode].operand[0].mode;
10058
10059 switch (mode0)
10060 {
10061 case V4SImode:
10062 type = v4si_ftype_v4si;
10063 break;
10064 case V8HImode:
10065 type = v8hi_ftype_v8hi;
10066 break;
10067 case V16QImode:
10068 type = v16qi_ftype_v16qi;
10069 break;
10070 case V4SFmode:
10071 type = v4sf_ftype_v4sf;
10072 break;
10073 default:
37409796 10074 gcc_unreachable ();
a3170dc6 10075 }
f676971a 10076
a3170dc6
AH
10077 def_builtin (d->mask, d->name, type, d->code);
10078 }
7ccf35ed 10079
13c62176
DN
10080 if (TARGET_ALTIVEC)
10081 {
10082 tree decl;
10083
10084 /* Initialize target builtin that implements
10085 targetm.vectorize.builtin_mask_for_load. */
10086
c79efc4d
RÁE
10087 decl = add_builtin_function ("__builtin_altivec_mask_for_load",
10088 v16qi_ftype_long_pcvoid,
10089 ALTIVEC_BUILTIN_MASK_FOR_LOAD,
61210b72
AP
10090 BUILT_IN_MD, NULL, NULL_TREE);
10091 TREE_READONLY (decl) = 1;
13c62176
DN
10092 /* Record the decl. Will be used by rs6000_builtin_mask_for_load. */
10093 altivec_builtin_mask_for_load = decl;
13c62176 10094 }
7a4eca66
DE
10095
10096 /* Access to the vec_init patterns. */
10097 ftype = build_function_type_list (V4SI_type_node, integer_type_node,
10098 integer_type_node, integer_type_node,
10099 integer_type_node, NULL_TREE);
10100 def_builtin (MASK_ALTIVEC, "__builtin_vec_init_v4si", ftype,
10101 ALTIVEC_BUILTIN_VEC_INIT_V4SI);
10102
10103 ftype = build_function_type_list (V8HI_type_node, short_integer_type_node,
10104 short_integer_type_node,
10105 short_integer_type_node,
10106 short_integer_type_node,
10107 short_integer_type_node,
10108 short_integer_type_node,
10109 short_integer_type_node,
10110 short_integer_type_node, NULL_TREE);
10111 def_builtin (MASK_ALTIVEC, "__builtin_vec_init_v8hi", ftype,
10112 ALTIVEC_BUILTIN_VEC_INIT_V8HI);
10113
10114 ftype = build_function_type_list (V16QI_type_node, char_type_node,
10115 char_type_node, char_type_node,
10116 char_type_node, char_type_node,
10117 char_type_node, char_type_node,
10118 char_type_node, char_type_node,
10119 char_type_node, char_type_node,
10120 char_type_node, char_type_node,
10121 char_type_node, char_type_node,
10122 char_type_node, NULL_TREE);
10123 def_builtin (MASK_ALTIVEC, "__builtin_vec_init_v16qi", ftype,
10124 ALTIVEC_BUILTIN_VEC_INIT_V16QI);
10125
10126 ftype = build_function_type_list (V4SF_type_node, float_type_node,
10127 float_type_node, float_type_node,
10128 float_type_node, NULL_TREE);
10129 def_builtin (MASK_ALTIVEC, "__builtin_vec_init_v4sf", ftype,
10130 ALTIVEC_BUILTIN_VEC_INIT_V4SF);
10131
10132 /* Access to the vec_set patterns. */
10133 ftype = build_function_type_list (V4SI_type_node, V4SI_type_node,
10134 intSI_type_node,
10135 integer_type_node, NULL_TREE);
10136 def_builtin (MASK_ALTIVEC, "__builtin_vec_set_v4si", ftype,
10137 ALTIVEC_BUILTIN_VEC_SET_V4SI);
10138
10139 ftype = build_function_type_list (V8HI_type_node, V8HI_type_node,
10140 intHI_type_node,
10141 integer_type_node, NULL_TREE);
10142 def_builtin (MASK_ALTIVEC, "__builtin_vec_set_v8hi", ftype,
10143 ALTIVEC_BUILTIN_VEC_SET_V8HI);
10144
10145 ftype = build_function_type_list (V8HI_type_node, V16QI_type_node,
10146 intQI_type_node,
10147 integer_type_node, NULL_TREE);
10148 def_builtin (MASK_ALTIVEC, "__builtin_vec_set_v16qi", ftype,
10149 ALTIVEC_BUILTIN_VEC_SET_V16QI);
10150
10151 ftype = build_function_type_list (V4SF_type_node, V4SF_type_node,
10152 float_type_node,
10153 integer_type_node, NULL_TREE);
10154 def_builtin (MASK_ALTIVEC, "__builtin_vec_set_v4sf", ftype,
10155 ALTIVEC_BUILTIN_VEC_SET_V4SF);
10156
10157 /* Access to the vec_extract patterns. */
10158 ftype = build_function_type_list (intSI_type_node, V4SI_type_node,
10159 integer_type_node, NULL_TREE);
10160 def_builtin (MASK_ALTIVEC, "__builtin_vec_ext_v4si", ftype,
10161 ALTIVEC_BUILTIN_VEC_EXT_V4SI);
10162
10163 ftype = build_function_type_list (intHI_type_node, V8HI_type_node,
10164 integer_type_node, NULL_TREE);
10165 def_builtin (MASK_ALTIVEC, "__builtin_vec_ext_v8hi", ftype,
10166 ALTIVEC_BUILTIN_VEC_EXT_V8HI);
10167
10168 ftype = build_function_type_list (intQI_type_node, V16QI_type_node,
10169 integer_type_node, NULL_TREE);
10170 def_builtin (MASK_ALTIVEC, "__builtin_vec_ext_v16qi", ftype,
10171 ALTIVEC_BUILTIN_VEC_EXT_V16QI);
10172
10173 ftype = build_function_type_list (float_type_node, V4SF_type_node,
10174 integer_type_node, NULL_TREE);
10175 def_builtin (MASK_ALTIVEC, "__builtin_vec_ext_v4sf", ftype,
10176 ALTIVEC_BUILTIN_VEC_EXT_V4SF);
a3170dc6
AH
10177}
10178
10179static void
863d938c 10180rs6000_common_init_builtins (void)
a3170dc6 10181{
586de218 10182 const struct builtin_description *d;
a3170dc6
AH
10183 size_t i;
10184
96038623
DE
10185 tree v2sf_ftype_v2sf_v2sf_v2sf
10186 = build_function_type_list (V2SF_type_node,
10187 V2SF_type_node, V2SF_type_node,
10188 V2SF_type_node, NULL_TREE);
10189
a3170dc6
AH
10190 tree v4sf_ftype_v4sf_v4sf_v16qi
10191 = build_function_type_list (V4SF_type_node,
10192 V4SF_type_node, V4SF_type_node,
10193 V16QI_type_node, NULL_TREE);
10194 tree v4si_ftype_v4si_v4si_v16qi
10195 = build_function_type_list (V4SI_type_node,
10196 V4SI_type_node, V4SI_type_node,
10197 V16QI_type_node, NULL_TREE);
10198 tree v8hi_ftype_v8hi_v8hi_v16qi
10199 = build_function_type_list (V8HI_type_node,
10200 V8HI_type_node, V8HI_type_node,
10201 V16QI_type_node, NULL_TREE);
10202 tree v16qi_ftype_v16qi_v16qi_v16qi
10203 = build_function_type_list (V16QI_type_node,
10204 V16QI_type_node, V16QI_type_node,
10205 V16QI_type_node, NULL_TREE);
b9e4e5d1
ZL
10206 tree v4si_ftype_int
10207 = build_function_type_list (V4SI_type_node, integer_type_node, NULL_TREE);
10208 tree v8hi_ftype_int
10209 = build_function_type_list (V8HI_type_node, integer_type_node, NULL_TREE);
10210 tree v16qi_ftype_int
10211 = build_function_type_list (V16QI_type_node, integer_type_node, NULL_TREE);
a3170dc6
AH
10212 tree v8hi_ftype_v16qi
10213 = build_function_type_list (V8HI_type_node, V16QI_type_node, NULL_TREE);
10214 tree v4sf_ftype_v4sf
10215 = build_function_type_list (V4SF_type_node, V4SF_type_node, NULL_TREE);
10216
10217 tree v2si_ftype_v2si_v2si
2abe3e28
AH
10218 = build_function_type_list (opaque_V2SI_type_node,
10219 opaque_V2SI_type_node,
10220 opaque_V2SI_type_node, NULL_TREE);
a3170dc6 10221
96038623 10222 tree v2sf_ftype_v2sf_v2sf_spe
2abe3e28
AH
10223 = build_function_type_list (opaque_V2SF_type_node,
10224 opaque_V2SF_type_node,
10225 opaque_V2SF_type_node, NULL_TREE);
a3170dc6 10226
96038623
DE
10227 tree v2sf_ftype_v2sf_v2sf
10228 = build_function_type_list (V2SF_type_node,
10229 V2SF_type_node,
10230 V2SF_type_node, NULL_TREE);
10231
10232
a3170dc6 10233 tree v2si_ftype_int_int
2abe3e28 10234 = build_function_type_list (opaque_V2SI_type_node,
a3170dc6
AH
10235 integer_type_node, integer_type_node,
10236 NULL_TREE);
10237
58646b77
PB
10238 tree opaque_ftype_opaque
10239 = build_function_type_list (opaque_V4SI_type_node,
10240 opaque_V4SI_type_node, NULL_TREE);
10241
a3170dc6 10242 tree v2si_ftype_v2si
2abe3e28
AH
10243 = build_function_type_list (opaque_V2SI_type_node,
10244 opaque_V2SI_type_node, NULL_TREE);
a3170dc6 10245
96038623 10246 tree v2sf_ftype_v2sf_spe
2abe3e28
AH
10247 = build_function_type_list (opaque_V2SF_type_node,
10248 opaque_V2SF_type_node, NULL_TREE);
f676971a 10249
96038623
DE
10250 tree v2sf_ftype_v2sf
10251 = build_function_type_list (V2SF_type_node,
10252 V2SF_type_node, NULL_TREE);
10253
a3170dc6 10254 tree v2sf_ftype_v2si
2abe3e28
AH
10255 = build_function_type_list (opaque_V2SF_type_node,
10256 opaque_V2SI_type_node, NULL_TREE);
a3170dc6
AH
10257
10258 tree v2si_ftype_v2sf
2abe3e28
AH
10259 = build_function_type_list (opaque_V2SI_type_node,
10260 opaque_V2SF_type_node, NULL_TREE);
a3170dc6
AH
10261
10262 tree v2si_ftype_v2si_char
2abe3e28
AH
10263 = build_function_type_list (opaque_V2SI_type_node,
10264 opaque_V2SI_type_node,
10265 char_type_node, NULL_TREE);
a3170dc6
AH
10266
10267 tree v2si_ftype_int_char
2abe3e28 10268 = build_function_type_list (opaque_V2SI_type_node,
a3170dc6
AH
10269 integer_type_node, char_type_node, NULL_TREE);
10270
10271 tree v2si_ftype_char
2abe3e28
AH
10272 = build_function_type_list (opaque_V2SI_type_node,
10273 char_type_node, NULL_TREE);
a3170dc6
AH
10274
10275 tree int_ftype_int_int
10276 = build_function_type_list (integer_type_node,
10277 integer_type_node, integer_type_node,
10278 NULL_TREE);
95385cbb 10279
58646b77
PB
10280 tree opaque_ftype_opaque_opaque
10281 = build_function_type_list (opaque_V4SI_type_node,
10282 opaque_V4SI_type_node, opaque_V4SI_type_node, NULL_TREE);
0ac081f6 10283 tree v4si_ftype_v4si_v4si
b4de2f7d
AH
10284 = build_function_type_list (V4SI_type_node,
10285 V4SI_type_node, V4SI_type_node, NULL_TREE);
b9e4e5d1 10286 tree v4sf_ftype_v4si_int
b4de2f7d 10287 = build_function_type_list (V4SF_type_node,
b9e4e5d1
ZL
10288 V4SI_type_node, integer_type_node, NULL_TREE);
10289 tree v4si_ftype_v4sf_int
b4de2f7d 10290 = build_function_type_list (V4SI_type_node,
b9e4e5d1
ZL
10291 V4SF_type_node, integer_type_node, NULL_TREE);
10292 tree v4si_ftype_v4si_int
b4de2f7d 10293 = build_function_type_list (V4SI_type_node,
b9e4e5d1
ZL
10294 V4SI_type_node, integer_type_node, NULL_TREE);
10295 tree v8hi_ftype_v8hi_int
b4de2f7d 10296 = build_function_type_list (V8HI_type_node,
b9e4e5d1
ZL
10297 V8HI_type_node, integer_type_node, NULL_TREE);
10298 tree v16qi_ftype_v16qi_int
b4de2f7d 10299 = build_function_type_list (V16QI_type_node,
b9e4e5d1
ZL
10300 V16QI_type_node, integer_type_node, NULL_TREE);
10301 tree v16qi_ftype_v16qi_v16qi_int
b4de2f7d
AH
10302 = build_function_type_list (V16QI_type_node,
10303 V16QI_type_node, V16QI_type_node,
b9e4e5d1
ZL
10304 integer_type_node, NULL_TREE);
10305 tree v8hi_ftype_v8hi_v8hi_int
b4de2f7d
AH
10306 = build_function_type_list (V8HI_type_node,
10307 V8HI_type_node, V8HI_type_node,
b9e4e5d1
ZL
10308 integer_type_node, NULL_TREE);
10309 tree v4si_ftype_v4si_v4si_int
b4de2f7d
AH
10310 = build_function_type_list (V4SI_type_node,
10311 V4SI_type_node, V4SI_type_node,
b9e4e5d1
ZL
10312 integer_type_node, NULL_TREE);
10313 tree v4sf_ftype_v4sf_v4sf_int
b4de2f7d
AH
10314 = build_function_type_list (V4SF_type_node,
10315 V4SF_type_node, V4SF_type_node,
b9e4e5d1 10316 integer_type_node, NULL_TREE);
0ac081f6 10317 tree v4sf_ftype_v4sf_v4sf
b4de2f7d
AH
10318 = build_function_type_list (V4SF_type_node,
10319 V4SF_type_node, V4SF_type_node, NULL_TREE);
58646b77
PB
10320 tree opaque_ftype_opaque_opaque_opaque
10321 = build_function_type_list (opaque_V4SI_type_node,
10322 opaque_V4SI_type_node, opaque_V4SI_type_node,
10323 opaque_V4SI_type_node, NULL_TREE);
617e0e1d 10324 tree v4sf_ftype_v4sf_v4sf_v4si
b4de2f7d
AH
10325 = build_function_type_list (V4SF_type_node,
10326 V4SF_type_node, V4SF_type_node,
10327 V4SI_type_node, NULL_TREE);
2212663f 10328 tree v4sf_ftype_v4sf_v4sf_v4sf
b4de2f7d
AH
10329 = build_function_type_list (V4SF_type_node,
10330 V4SF_type_node, V4SF_type_node,
10331 V4SF_type_node, NULL_TREE);
f676971a 10332 tree v4si_ftype_v4si_v4si_v4si
b4de2f7d
AH
10333 = build_function_type_list (V4SI_type_node,
10334 V4SI_type_node, V4SI_type_node,
10335 V4SI_type_node, NULL_TREE);
0ac081f6 10336 tree v8hi_ftype_v8hi_v8hi
b4de2f7d
AH
10337 = build_function_type_list (V8HI_type_node,
10338 V8HI_type_node, V8HI_type_node, NULL_TREE);
2212663f 10339 tree v8hi_ftype_v8hi_v8hi_v8hi
b4de2f7d
AH
10340 = build_function_type_list (V8HI_type_node,
10341 V8HI_type_node, V8HI_type_node,
10342 V8HI_type_node, NULL_TREE);
c4ad648e 10343 tree v4si_ftype_v8hi_v8hi_v4si
b4de2f7d
AH
10344 = build_function_type_list (V4SI_type_node,
10345 V8HI_type_node, V8HI_type_node,
10346 V4SI_type_node, NULL_TREE);
c4ad648e 10347 tree v4si_ftype_v16qi_v16qi_v4si
b4de2f7d
AH
10348 = build_function_type_list (V4SI_type_node,
10349 V16QI_type_node, V16QI_type_node,
10350 V4SI_type_node, NULL_TREE);
0ac081f6 10351 tree v16qi_ftype_v16qi_v16qi
b4de2f7d
AH
10352 = build_function_type_list (V16QI_type_node,
10353 V16QI_type_node, V16QI_type_node, NULL_TREE);
0ac081f6 10354 tree v4si_ftype_v4sf_v4sf
b4de2f7d
AH
10355 = build_function_type_list (V4SI_type_node,
10356 V4SF_type_node, V4SF_type_node, NULL_TREE);
0ac081f6 10357 tree v8hi_ftype_v16qi_v16qi
b4de2f7d
AH
10358 = build_function_type_list (V8HI_type_node,
10359 V16QI_type_node, V16QI_type_node, NULL_TREE);
0ac081f6 10360 tree v4si_ftype_v8hi_v8hi
b4de2f7d
AH
10361 = build_function_type_list (V4SI_type_node,
10362 V8HI_type_node, V8HI_type_node, NULL_TREE);
0ac081f6 10363 tree v8hi_ftype_v4si_v4si
b4de2f7d
AH
10364 = build_function_type_list (V8HI_type_node,
10365 V4SI_type_node, V4SI_type_node, NULL_TREE);
0ac081f6 10366 tree v16qi_ftype_v8hi_v8hi
b4de2f7d
AH
10367 = build_function_type_list (V16QI_type_node,
10368 V8HI_type_node, V8HI_type_node, NULL_TREE);
0ac081f6 10369 tree v4si_ftype_v16qi_v4si
b4de2f7d
AH
10370 = build_function_type_list (V4SI_type_node,
10371 V16QI_type_node, V4SI_type_node, NULL_TREE);
fa066a23 10372 tree v4si_ftype_v16qi_v16qi
b4de2f7d
AH
10373 = build_function_type_list (V4SI_type_node,
10374 V16QI_type_node, V16QI_type_node, NULL_TREE);
0ac081f6 10375 tree v4si_ftype_v8hi_v4si
b4de2f7d
AH
10376 = build_function_type_list (V4SI_type_node,
10377 V8HI_type_node, V4SI_type_node, NULL_TREE);
a3170dc6
AH
10378 tree v4si_ftype_v8hi
10379 = build_function_type_list (V4SI_type_node, V8HI_type_node, NULL_TREE);
10380 tree int_ftype_v4si_v4si
10381 = build_function_type_list (integer_type_node,
10382 V4SI_type_node, V4SI_type_node, NULL_TREE);
10383 tree int_ftype_v4sf_v4sf
10384 = build_function_type_list (integer_type_node,
10385 V4SF_type_node, V4SF_type_node, NULL_TREE);
10386 tree int_ftype_v16qi_v16qi
10387 = build_function_type_list (integer_type_node,
10388 V16QI_type_node, V16QI_type_node, NULL_TREE);
0ac081f6 10389 tree int_ftype_v8hi_v8hi
b4de2f7d
AH
10390 = build_function_type_list (integer_type_node,
10391 V8HI_type_node, V8HI_type_node, NULL_TREE);
0ac081f6 10392
6f317ef3 10393 /* Add the simple ternary operators. */
586de218 10394 d = bdesc_3arg;
ca7558fc 10395 for (i = 0; i < ARRAY_SIZE (bdesc_3arg); i++, d++)
2212663f 10396 {
2212663f
DB
10397 enum machine_mode mode0, mode1, mode2, mode3;
10398 tree type;
58646b77
PB
10399 bool is_overloaded = d->code >= ALTIVEC_BUILTIN_OVERLOADED_FIRST
10400 && d->code <= ALTIVEC_BUILTIN_OVERLOADED_LAST;
2212663f 10401
58646b77
PB
10402 if (is_overloaded)
10403 {
10404 mode0 = VOIDmode;
10405 mode1 = VOIDmode;
10406 mode2 = VOIDmode;
10407 mode3 = VOIDmode;
10408 }
10409 else
10410 {
10411 if (d->name == 0 || d->icode == CODE_FOR_nothing)
10412 continue;
f676971a 10413
58646b77
PB
10414 mode0 = insn_data[d->icode].operand[0].mode;
10415 mode1 = insn_data[d->icode].operand[1].mode;
10416 mode2 = insn_data[d->icode].operand[2].mode;
10417 mode3 = insn_data[d->icode].operand[3].mode;
10418 }
bb8df8a6 10419
2212663f
DB
10420 /* When all four are of the same mode. */
10421 if (mode0 == mode1 && mode1 == mode2 && mode2 == mode3)
10422 {
10423 switch (mode0)
10424 {
58646b77
PB
10425 case VOIDmode:
10426 type = opaque_ftype_opaque_opaque_opaque;
10427 break;
617e0e1d
DB
10428 case V4SImode:
10429 type = v4si_ftype_v4si_v4si_v4si;
10430 break;
2212663f
DB
10431 case V4SFmode:
10432 type = v4sf_ftype_v4sf_v4sf_v4sf;
10433 break;
10434 case V8HImode:
10435 type = v8hi_ftype_v8hi_v8hi_v8hi;
f676971a 10436 break;
2212663f
DB
10437 case V16QImode:
10438 type = v16qi_ftype_v16qi_v16qi_v16qi;
f676971a 10439 break;
96038623
DE
10440 case V2SFmode:
10441 type = v2sf_ftype_v2sf_v2sf_v2sf;
10442 break;
2212663f 10443 default:
37409796 10444 gcc_unreachable ();
2212663f
DB
10445 }
10446 }
10447 else if (mode0 == mode1 && mode1 == mode2 && mode3 == V16QImode)
c4ad648e 10448 {
2212663f
DB
10449 switch (mode0)
10450 {
10451 case V4SImode:
10452 type = v4si_ftype_v4si_v4si_v16qi;
10453 break;
10454 case V4SFmode:
10455 type = v4sf_ftype_v4sf_v4sf_v16qi;
10456 break;
10457 case V8HImode:
10458 type = v8hi_ftype_v8hi_v8hi_v16qi;
f676971a 10459 break;
2212663f
DB
10460 case V16QImode:
10461 type = v16qi_ftype_v16qi_v16qi_v16qi;
f676971a 10462 break;
2212663f 10463 default:
37409796 10464 gcc_unreachable ();
2212663f
DB
10465 }
10466 }
f676971a 10467 else if (mode0 == V4SImode && mode1 == V16QImode && mode2 == V16QImode
2212663f 10468 && mode3 == V4SImode)
24408032 10469 type = v4si_ftype_v16qi_v16qi_v4si;
f676971a 10470 else if (mode0 == V4SImode && mode1 == V8HImode && mode2 == V8HImode
2212663f 10471 && mode3 == V4SImode)
24408032 10472 type = v4si_ftype_v8hi_v8hi_v4si;
f676971a 10473 else if (mode0 == V4SFmode && mode1 == V4SFmode && mode2 == V4SFmode
617e0e1d 10474 && mode3 == V4SImode)
24408032
AH
10475 type = v4sf_ftype_v4sf_v4sf_v4si;
10476
a7b376ee 10477 /* vchar, vchar, vchar, 4-bit literal. */
24408032
AH
10478 else if (mode0 == V16QImode && mode1 == mode0 && mode2 == mode0
10479 && mode3 == QImode)
b9e4e5d1 10480 type = v16qi_ftype_v16qi_v16qi_int;
24408032 10481
a7b376ee 10482 /* vshort, vshort, vshort, 4-bit literal. */
24408032
AH
10483 else if (mode0 == V8HImode && mode1 == mode0 && mode2 == mode0
10484 && mode3 == QImode)
b9e4e5d1 10485 type = v8hi_ftype_v8hi_v8hi_int;
24408032 10486
a7b376ee 10487 /* vint, vint, vint, 4-bit literal. */
24408032
AH
10488 else if (mode0 == V4SImode && mode1 == mode0 && mode2 == mode0
10489 && mode3 == QImode)
b9e4e5d1 10490 type = v4si_ftype_v4si_v4si_int;
24408032 10491
a7b376ee 10492 /* vfloat, vfloat, vfloat, 4-bit literal. */
24408032
AH
10493 else if (mode0 == V4SFmode && mode1 == mode0 && mode2 == mode0
10494 && mode3 == QImode)
b9e4e5d1 10495 type = v4sf_ftype_v4sf_v4sf_int;
24408032 10496
2212663f 10497 else
37409796 10498 gcc_unreachable ();
2212663f
DB
10499
10500 def_builtin (d->mask, d->name, type, d->code);
10501 }
10502
0ac081f6 10503 /* Add the simple binary operators. */
00b960c7 10504 d = (struct builtin_description *) bdesc_2arg;
ca7558fc 10505 for (i = 0; i < ARRAY_SIZE (bdesc_2arg); i++, d++)
0ac081f6
AH
10506 {
10507 enum machine_mode mode0, mode1, mode2;
10508 tree type;
58646b77
PB
10509 bool is_overloaded = d->code >= ALTIVEC_BUILTIN_OVERLOADED_FIRST
10510 && d->code <= ALTIVEC_BUILTIN_OVERLOADED_LAST;
0ac081f6 10511
58646b77
PB
10512 if (is_overloaded)
10513 {
10514 mode0 = VOIDmode;
10515 mode1 = VOIDmode;
10516 mode2 = VOIDmode;
10517 }
10518 else
bb8df8a6 10519 {
58646b77
PB
10520 if (d->name == 0 || d->icode == CODE_FOR_nothing)
10521 continue;
f676971a 10522
58646b77
PB
10523 mode0 = insn_data[d->icode].operand[0].mode;
10524 mode1 = insn_data[d->icode].operand[1].mode;
10525 mode2 = insn_data[d->icode].operand[2].mode;
10526 }
0ac081f6
AH
10527
10528 /* When all three operands are of the same mode. */
10529 if (mode0 == mode1 && mode1 == mode2)
10530 {
10531 switch (mode0)
10532 {
58646b77
PB
10533 case VOIDmode:
10534 type = opaque_ftype_opaque_opaque;
10535 break;
0ac081f6
AH
10536 case V4SFmode:
10537 type = v4sf_ftype_v4sf_v4sf;
10538 break;
10539 case V4SImode:
10540 type = v4si_ftype_v4si_v4si;
10541 break;
10542 case V16QImode:
10543 type = v16qi_ftype_v16qi_v16qi;
10544 break;
10545 case V8HImode:
10546 type = v8hi_ftype_v8hi_v8hi;
10547 break;
a3170dc6
AH
10548 case V2SImode:
10549 type = v2si_ftype_v2si_v2si;
10550 break;
96038623
DE
10551 case V2SFmode:
10552 if (TARGET_PAIRED_FLOAT)
10553 type = v2sf_ftype_v2sf_v2sf;
10554 else
10555 type = v2sf_ftype_v2sf_v2sf_spe;
a3170dc6
AH
10556 break;
10557 case SImode:
10558 type = int_ftype_int_int;
10559 break;
0ac081f6 10560 default:
37409796 10561 gcc_unreachable ();
0ac081f6
AH
10562 }
10563 }
10564
10565 /* A few other combos we really don't want to do manually. */
10566
10567 /* vint, vfloat, vfloat. */
10568 else if (mode0 == V4SImode && mode1 == V4SFmode && mode2 == V4SFmode)
10569 type = v4si_ftype_v4sf_v4sf;
10570
10571 /* vshort, vchar, vchar. */
10572 else if (mode0 == V8HImode && mode1 == V16QImode && mode2 == V16QImode)
10573 type = v8hi_ftype_v16qi_v16qi;
10574
10575 /* vint, vshort, vshort. */
10576 else if (mode0 == V4SImode && mode1 == V8HImode && mode2 == V8HImode)
10577 type = v4si_ftype_v8hi_v8hi;
10578
10579 /* vshort, vint, vint. */
10580 else if (mode0 == V8HImode && mode1 == V4SImode && mode2 == V4SImode)
10581 type = v8hi_ftype_v4si_v4si;
10582
10583 /* vchar, vshort, vshort. */
10584 else if (mode0 == V16QImode && mode1 == V8HImode && mode2 == V8HImode)
10585 type = v16qi_ftype_v8hi_v8hi;
10586
10587 /* vint, vchar, vint. */
10588 else if (mode0 == V4SImode && mode1 == V16QImode && mode2 == V4SImode)
10589 type = v4si_ftype_v16qi_v4si;
10590
fa066a23
AH
10591 /* vint, vchar, vchar. */
10592 else if (mode0 == V4SImode && mode1 == V16QImode && mode2 == V16QImode)
10593 type = v4si_ftype_v16qi_v16qi;
10594
0ac081f6
AH
10595 /* vint, vshort, vint. */
10596 else if (mode0 == V4SImode && mode1 == V8HImode && mode2 == V4SImode)
10597 type = v4si_ftype_v8hi_v4si;
f676971a 10598
a7b376ee 10599 /* vint, vint, 5-bit literal. */
2212663f 10600 else if (mode0 == V4SImode && mode1 == V4SImode && mode2 == QImode)
b9e4e5d1 10601 type = v4si_ftype_v4si_int;
f676971a 10602
a7b376ee 10603 /* vshort, vshort, 5-bit literal. */
2212663f 10604 else if (mode0 == V8HImode && mode1 == V8HImode && mode2 == QImode)
b9e4e5d1 10605 type = v8hi_ftype_v8hi_int;
f676971a 10606
a7b376ee 10607 /* vchar, vchar, 5-bit literal. */
2212663f 10608 else if (mode0 == V16QImode && mode1 == V16QImode && mode2 == QImode)
b9e4e5d1 10609 type = v16qi_ftype_v16qi_int;
0ac081f6 10610
a7b376ee 10611 /* vfloat, vint, 5-bit literal. */
617e0e1d 10612 else if (mode0 == V4SFmode && mode1 == V4SImode && mode2 == QImode)
b9e4e5d1 10613 type = v4sf_ftype_v4si_int;
f676971a 10614
a7b376ee 10615 /* vint, vfloat, 5-bit literal. */
617e0e1d 10616 else if (mode0 == V4SImode && mode1 == V4SFmode && mode2 == QImode)
b9e4e5d1 10617 type = v4si_ftype_v4sf_int;
617e0e1d 10618
a3170dc6
AH
10619 else if (mode0 == V2SImode && mode1 == SImode && mode2 == SImode)
10620 type = v2si_ftype_int_int;
10621
10622 else if (mode0 == V2SImode && mode1 == V2SImode && mode2 == QImode)
10623 type = v2si_ftype_v2si_char;
10624
10625 else if (mode0 == V2SImode && mode1 == SImode && mode2 == QImode)
10626 type = v2si_ftype_int_char;
10627
37409796 10628 else
0ac081f6 10629 {
37409796
NS
10630 /* int, x, x. */
10631 gcc_assert (mode0 == SImode);
0ac081f6
AH
10632 switch (mode1)
10633 {
10634 case V4SImode:
10635 type = int_ftype_v4si_v4si;
10636 break;
10637 case V4SFmode:
10638 type = int_ftype_v4sf_v4sf;
10639 break;
10640 case V16QImode:
10641 type = int_ftype_v16qi_v16qi;
10642 break;
10643 case V8HImode:
10644 type = int_ftype_v8hi_v8hi;
10645 break;
10646 default:
37409796 10647 gcc_unreachable ();
0ac081f6
AH
10648 }
10649 }
10650
2212663f
DB
10651 def_builtin (d->mask, d->name, type, d->code);
10652 }
24408032 10653
2212663f
DB
10654 /* Add the simple unary operators. */
10655 d = (struct builtin_description *) bdesc_1arg;
ca7558fc 10656 for (i = 0; i < ARRAY_SIZE (bdesc_1arg); i++, d++)
2212663f
DB
10657 {
10658 enum machine_mode mode0, mode1;
10659 tree type;
58646b77
PB
10660 bool is_overloaded = d->code >= ALTIVEC_BUILTIN_OVERLOADED_FIRST
10661 && d->code <= ALTIVEC_BUILTIN_OVERLOADED_LAST;
10662
10663 if (is_overloaded)
10664 {
10665 mode0 = VOIDmode;
10666 mode1 = VOIDmode;
10667 }
10668 else
10669 {
10670 if (d->name == 0 || d->icode == CODE_FOR_nothing)
10671 continue;
bb8df8a6 10672
58646b77
PB
10673 mode0 = insn_data[d->icode].operand[0].mode;
10674 mode1 = insn_data[d->icode].operand[1].mode;
10675 }
2212663f
DB
10676
10677 if (mode0 == V4SImode && mode1 == QImode)
c4ad648e 10678 type = v4si_ftype_int;
2212663f 10679 else if (mode0 == V8HImode && mode1 == QImode)
c4ad648e 10680 type = v8hi_ftype_int;
2212663f 10681 else if (mode0 == V16QImode && mode1 == QImode)
c4ad648e 10682 type = v16qi_ftype_int;
58646b77
PB
10683 else if (mode0 == VOIDmode && mode1 == VOIDmode)
10684 type = opaque_ftype_opaque;
617e0e1d
DB
10685 else if (mode0 == V4SFmode && mode1 == V4SFmode)
10686 type = v4sf_ftype_v4sf;
20e26713
AH
10687 else if (mode0 == V8HImode && mode1 == V16QImode)
10688 type = v8hi_ftype_v16qi;
10689 else if (mode0 == V4SImode && mode1 == V8HImode)
10690 type = v4si_ftype_v8hi;
a3170dc6
AH
10691 else if (mode0 == V2SImode && mode1 == V2SImode)
10692 type = v2si_ftype_v2si;
10693 else if (mode0 == V2SFmode && mode1 == V2SFmode)
96038623
DE
10694 {
10695 if (TARGET_PAIRED_FLOAT)
10696 type = v2sf_ftype_v2sf;
10697 else
10698 type = v2sf_ftype_v2sf_spe;
10699 }
a3170dc6
AH
10700 else if (mode0 == V2SFmode && mode1 == V2SImode)
10701 type = v2sf_ftype_v2si;
10702 else if (mode0 == V2SImode && mode1 == V2SFmode)
10703 type = v2si_ftype_v2sf;
10704 else if (mode0 == V2SImode && mode1 == QImode)
10705 type = v2si_ftype_char;
2212663f 10706 else
37409796 10707 gcc_unreachable ();
2212663f 10708
0ac081f6
AH
10709 def_builtin (d->mask, d->name, type, d->code);
10710 }
10711}
10712
c15c90bb
ZW
10713static void
10714rs6000_init_libfuncs (void)
10715{
602ea4d3
JJ
10716 if (DEFAULT_ABI != ABI_V4 && TARGET_XCOFF
10717 && !TARGET_POWER2 && !TARGET_POWERPC)
c15c90bb 10718 {
602ea4d3
JJ
10719 /* AIX library routines for float->int conversion. */
10720 set_conv_libfunc (sfix_optab, SImode, DFmode, "__itrunc");
10721 set_conv_libfunc (ufix_optab, SImode, DFmode, "__uitrunc");
10722 set_conv_libfunc (sfix_optab, SImode, TFmode, "_qitrunc");
10723 set_conv_libfunc (ufix_optab, SImode, TFmode, "_quitrunc");
10724 }
c15c90bb 10725
602ea4d3 10726 if (!TARGET_IEEEQUAD)
98c41d98 10727 /* AIX/Darwin/64-bit Linux quad floating point routines. */
602ea4d3
JJ
10728 if (!TARGET_XL_COMPAT)
10729 {
10730 set_optab_libfunc (add_optab, TFmode, "__gcc_qadd");
10731 set_optab_libfunc (sub_optab, TFmode, "__gcc_qsub");
10732 set_optab_libfunc (smul_optab, TFmode, "__gcc_qmul");
10733 set_optab_libfunc (sdiv_optab, TFmode, "__gcc_qdiv");
d0768f19 10734
17caeff2 10735 if (!(TARGET_HARD_FLOAT && (TARGET_FPRS || TARGET_E500_DOUBLE)))
d0768f19
DE
10736 {
10737 set_optab_libfunc (neg_optab, TFmode, "__gcc_qneg");
10738 set_optab_libfunc (eq_optab, TFmode, "__gcc_qeq");
10739 set_optab_libfunc (ne_optab, TFmode, "__gcc_qne");
10740 set_optab_libfunc (gt_optab, TFmode, "__gcc_qgt");
10741 set_optab_libfunc (ge_optab, TFmode, "__gcc_qge");
10742 set_optab_libfunc (lt_optab, TFmode, "__gcc_qlt");
10743 set_optab_libfunc (le_optab, TFmode, "__gcc_qle");
d0768f19
DE
10744
10745 set_conv_libfunc (sext_optab, TFmode, SFmode, "__gcc_stoq");
10746 set_conv_libfunc (sext_optab, TFmode, DFmode, "__gcc_dtoq");
10747 set_conv_libfunc (trunc_optab, SFmode, TFmode, "__gcc_qtos");
10748 set_conv_libfunc (trunc_optab, DFmode, TFmode, "__gcc_qtod");
10749 set_conv_libfunc (sfix_optab, SImode, TFmode, "__gcc_qtoi");
10750 set_conv_libfunc (ufix_optab, SImode, TFmode, "__gcc_qtou");
10751 set_conv_libfunc (sfloat_optab, TFmode, SImode, "__gcc_itoq");
10752 set_conv_libfunc (ufloat_optab, TFmode, SImode, "__gcc_utoq");
10753 }
b26941b4
JM
10754
10755 if (!(TARGET_HARD_FLOAT && TARGET_FPRS))
10756 set_optab_libfunc (unord_optab, TFmode, "__gcc_qunord");
602ea4d3
JJ
10757 }
10758 else
10759 {
10760 set_optab_libfunc (add_optab, TFmode, "_xlqadd");
10761 set_optab_libfunc (sub_optab, TFmode, "_xlqsub");
10762 set_optab_libfunc (smul_optab, TFmode, "_xlqmul");
10763 set_optab_libfunc (sdiv_optab, TFmode, "_xlqdiv");
10764 }
c9034561 10765 else
c15c90bb 10766 {
c9034561 10767 /* 32-bit SVR4 quad floating point routines. */
c15c90bb
ZW
10768
10769 set_optab_libfunc (add_optab, TFmode, "_q_add");
10770 set_optab_libfunc (sub_optab, TFmode, "_q_sub");
10771 set_optab_libfunc (neg_optab, TFmode, "_q_neg");
10772 set_optab_libfunc (smul_optab, TFmode, "_q_mul");
10773 set_optab_libfunc (sdiv_optab, TFmode, "_q_div");
10774 if (TARGET_PPC_GPOPT || TARGET_POWER2)
10775 set_optab_libfunc (sqrt_optab, TFmode, "_q_sqrt");
10776
c9034561
ZW
10777 set_optab_libfunc (eq_optab, TFmode, "_q_feq");
10778 set_optab_libfunc (ne_optab, TFmode, "_q_fne");
10779 set_optab_libfunc (gt_optab, TFmode, "_q_fgt");
10780 set_optab_libfunc (ge_optab, TFmode, "_q_fge");
10781 set_optab_libfunc (lt_optab, TFmode, "_q_flt");
10782 set_optab_libfunc (le_optab, TFmode, "_q_fle");
10783
85363ca0
ZW
10784 set_conv_libfunc (sext_optab, TFmode, SFmode, "_q_stoq");
10785 set_conv_libfunc (sext_optab, TFmode, DFmode, "_q_dtoq");
10786 set_conv_libfunc (trunc_optab, SFmode, TFmode, "_q_qtos");
10787 set_conv_libfunc (trunc_optab, DFmode, TFmode, "_q_qtod");
10788 set_conv_libfunc (sfix_optab, SImode, TFmode, "_q_qtoi");
10789 set_conv_libfunc (ufix_optab, SImode, TFmode, "_q_qtou");
10790 set_conv_libfunc (sfloat_optab, TFmode, SImode, "_q_itoq");
57904aa7 10791 set_conv_libfunc (ufloat_optab, TFmode, SImode, "_q_utoq");
c15c90bb
ZW
10792 }
10793}
fba73eb1
DE
10794
10795\f
10796/* Expand a block clear operation, and return 1 if successful. Return 0
10797 if we should let the compiler generate normal code.
10798
10799 operands[0] is the destination
10800 operands[1] is the length
57e84f18 10801 operands[3] is the alignment */
fba73eb1
DE
10802
10803int
10804expand_block_clear (rtx operands[])
10805{
10806 rtx orig_dest = operands[0];
10807 rtx bytes_rtx = operands[1];
57e84f18 10808 rtx align_rtx = operands[3];
5514620a
GK
10809 bool constp = (GET_CODE (bytes_rtx) == CONST_INT);
10810 HOST_WIDE_INT align;
10811 HOST_WIDE_INT bytes;
fba73eb1
DE
10812 int offset;
10813 int clear_bytes;
5514620a 10814 int clear_step;
fba73eb1
DE
10815
10816 /* If this is not a fixed size move, just call memcpy */
10817 if (! constp)
10818 return 0;
10819
37409796
NS
10820 /* This must be a fixed size alignment */
10821 gcc_assert (GET_CODE (align_rtx) == CONST_INT);
fba73eb1
DE
10822 align = INTVAL (align_rtx) * BITS_PER_UNIT;
10823
10824 /* Anything to clear? */
10825 bytes = INTVAL (bytes_rtx);
10826 if (bytes <= 0)
10827 return 1;
10828
5514620a
GK
10829 /* Use the builtin memset after a point, to avoid huge code bloat.
10830 When optimize_size, avoid any significant code bloat; calling
10831 memset is about 4 instructions, so allow for one instruction to
10832 load zero and three to do clearing. */
10833 if (TARGET_ALTIVEC && align >= 128)
10834 clear_step = 16;
10835 else if (TARGET_POWERPC64 && align >= 32)
10836 clear_step = 8;
21d818ff
NF
10837 else if (TARGET_SPE && align >= 64)
10838 clear_step = 8;
5514620a
GK
10839 else
10840 clear_step = 4;
fba73eb1 10841
5514620a
GK
10842 if (optimize_size && bytes > 3 * clear_step)
10843 return 0;
10844 if (! optimize_size && bytes > 8 * clear_step)
fba73eb1
DE
10845 return 0;
10846
10847 for (offset = 0; bytes > 0; offset += clear_bytes, bytes -= clear_bytes)
10848 {
fba73eb1
DE
10849 enum machine_mode mode = BLKmode;
10850 rtx dest;
f676971a 10851
5514620a
GK
10852 if (bytes >= 16 && TARGET_ALTIVEC && align >= 128)
10853 {
10854 clear_bytes = 16;
10855 mode = V4SImode;
10856 }
21d818ff
NF
10857 else if (bytes >= 8 && TARGET_SPE && align >= 64)
10858 {
10859 clear_bytes = 8;
10860 mode = V2SImode;
10861 }
5514620a 10862 else if (bytes >= 8 && TARGET_POWERPC64
21d818ff
NF
10863 /* 64-bit loads and stores require word-aligned
10864 displacements. */
10865 && (align >= 64 || (!STRICT_ALIGNMENT && align >= 32)))
fba73eb1
DE
10866 {
10867 clear_bytes = 8;
10868 mode = DImode;
fba73eb1 10869 }
5514620a 10870 else if (bytes >= 4 && (align >= 32 || !STRICT_ALIGNMENT))
fba73eb1
DE
10871 { /* move 4 bytes */
10872 clear_bytes = 4;
10873 mode = SImode;
fba73eb1 10874 }
ec53fc93 10875 else if (bytes >= 2 && (align >= 16 || !STRICT_ALIGNMENT))
fba73eb1
DE
10876 { /* move 2 bytes */
10877 clear_bytes = 2;
10878 mode = HImode;
fba73eb1
DE
10879 }
10880 else /* move 1 byte at a time */
10881 {
10882 clear_bytes = 1;
10883 mode = QImode;
fba73eb1 10884 }
f676971a 10885
fba73eb1 10886 dest = adjust_address (orig_dest, mode, offset);
f676971a 10887
5514620a 10888 emit_move_insn (dest, CONST0_RTX (mode));
fba73eb1
DE
10889 }
10890
10891 return 1;
10892}
10893
35aff10b 10894\f
7e69e155
MM
10895/* Expand a block move operation, and return 1 if successful. Return 0
10896 if we should let the compiler generate normal code.
10897
10898 operands[0] is the destination
10899 operands[1] is the source
10900 operands[2] is the length
10901 operands[3] is the alignment */
10902
3933e0e1
MM
10903#define MAX_MOVE_REG 4
10904
7e69e155 10905int
a2369ed3 10906expand_block_move (rtx operands[])
7e69e155 10907{
b6c9286a
MM
10908 rtx orig_dest = operands[0];
10909 rtx orig_src = operands[1];
7e69e155 10910 rtx bytes_rtx = operands[2];
7e69e155 10911 rtx align_rtx = operands[3];
3933e0e1 10912 int constp = (GET_CODE (bytes_rtx) == CONST_INT);
5ee95df6 10913 int align;
3933e0e1
MM
10914 int bytes;
10915 int offset;
7e69e155 10916 int move_bytes;
cabfd258
GK
10917 rtx stores[MAX_MOVE_REG];
10918 int num_reg = 0;
7e69e155 10919
3933e0e1 10920 /* If this is not a fixed size move, just call memcpy */
cc0d9ba8 10921 if (! constp)
3933e0e1
MM
10922 return 0;
10923
37409796
NS
10924 /* This must be a fixed size alignment */
10925 gcc_assert (GET_CODE (align_rtx) == CONST_INT);
fba73eb1 10926 align = INTVAL (align_rtx) * BITS_PER_UNIT;
5ee95df6 10927
7e69e155 10928 /* Anything to move? */
3933e0e1
MM
10929 bytes = INTVAL (bytes_rtx);
10930 if (bytes <= 0)
7e69e155
MM
10931 return 1;
10932
ea9982a8 10933 /* store_one_arg depends on expand_block_move to handle at least the size of
f676971a 10934 reg_parm_stack_space. */
ea9982a8 10935 if (bytes > (TARGET_POWERPC64 ? 64 : 32))
7e69e155
MM
10936 return 0;
10937
cabfd258 10938 for (offset = 0; bytes > 0; offset += move_bytes, bytes -= move_bytes)
7e69e155 10939 {
cabfd258 10940 union {
70128ad9 10941 rtx (*movmemsi) (rtx, rtx, rtx, rtx);
a2369ed3 10942 rtx (*mov) (rtx, rtx);
cabfd258
GK
10943 } gen_func;
10944 enum machine_mode mode = BLKmode;
10945 rtx src, dest;
f676971a 10946
5514620a
GK
10947 /* Altivec first, since it will be faster than a string move
10948 when it applies, and usually not significantly larger. */
10949 if (TARGET_ALTIVEC && bytes >= 16 && align >= 128)
10950 {
10951 move_bytes = 16;
10952 mode = V4SImode;
10953 gen_func.mov = gen_movv4si;
10954 }
21d818ff
NF
10955 else if (TARGET_SPE && bytes >= 8 && align >= 64)
10956 {
10957 move_bytes = 8;
10958 mode = V2SImode;
10959 gen_func.mov = gen_movv2si;
10960 }
5514620a 10961 else if (TARGET_STRING
cabfd258
GK
10962 && bytes > 24 /* move up to 32 bytes at a time */
10963 && ! fixed_regs[5]
10964 && ! fixed_regs[6]
10965 && ! fixed_regs[7]
10966 && ! fixed_regs[8]
10967 && ! fixed_regs[9]
10968 && ! fixed_regs[10]
10969 && ! fixed_regs[11]
10970 && ! fixed_regs[12])
7e69e155 10971 {
cabfd258 10972 move_bytes = (bytes > 32) ? 32 : bytes;
70128ad9 10973 gen_func.movmemsi = gen_movmemsi_8reg;
cabfd258
GK
10974 }
10975 else if (TARGET_STRING
10976 && bytes > 16 /* move up to 24 bytes at a time */
10977 && ! fixed_regs[5]
10978 && ! fixed_regs[6]
10979 && ! fixed_regs[7]
10980 && ! fixed_regs[8]
10981 && ! fixed_regs[9]
10982 && ! fixed_regs[10])
10983 {
10984 move_bytes = (bytes > 24) ? 24 : bytes;
70128ad9 10985 gen_func.movmemsi = gen_movmemsi_6reg;
cabfd258
GK
10986 }
10987 else if (TARGET_STRING
10988 && bytes > 8 /* move up to 16 bytes at a time */
10989 && ! fixed_regs[5]
10990 && ! fixed_regs[6]
10991 && ! fixed_regs[7]
10992 && ! fixed_regs[8])
10993 {
10994 move_bytes = (bytes > 16) ? 16 : bytes;
70128ad9 10995 gen_func.movmemsi = gen_movmemsi_4reg;
cabfd258
GK
10996 }
10997 else if (bytes >= 8 && TARGET_POWERPC64
10998 /* 64-bit loads and stores require word-aligned
10999 displacements. */
fba73eb1 11000 && (align >= 64 || (!STRICT_ALIGNMENT && align >= 32)))
cabfd258
GK
11001 {
11002 move_bytes = 8;
11003 mode = DImode;
11004 gen_func.mov = gen_movdi;
11005 }
11006 else if (TARGET_STRING && bytes > 4 && !TARGET_POWERPC64)
11007 { /* move up to 8 bytes at a time */
11008 move_bytes = (bytes > 8) ? 8 : bytes;
70128ad9 11009 gen_func.movmemsi = gen_movmemsi_2reg;
cabfd258 11010 }
cd7d9ca4 11011 else if (bytes >= 4 && (align >= 32 || !STRICT_ALIGNMENT))
cabfd258
GK
11012 { /* move 4 bytes */
11013 move_bytes = 4;
11014 mode = SImode;
11015 gen_func.mov = gen_movsi;
11016 }
ec53fc93 11017 else if (bytes >= 2 && (align >= 16 || !STRICT_ALIGNMENT))
cabfd258
GK
11018 { /* move 2 bytes */
11019 move_bytes = 2;
11020 mode = HImode;
11021 gen_func.mov = gen_movhi;
11022 }
11023 else if (TARGET_STRING && bytes > 1)
11024 { /* move up to 4 bytes at a time */
11025 move_bytes = (bytes > 4) ? 4 : bytes;
70128ad9 11026 gen_func.movmemsi = gen_movmemsi_1reg;
cabfd258
GK
11027 }
11028 else /* move 1 byte at a time */
11029 {
11030 move_bytes = 1;
11031 mode = QImode;
11032 gen_func.mov = gen_movqi;
11033 }
f676971a 11034
cabfd258
GK
11035 src = adjust_address (orig_src, mode, offset);
11036 dest = adjust_address (orig_dest, mode, offset);
f676971a
EC
11037
11038 if (mode != BLKmode)
cabfd258
GK
11039 {
11040 rtx tmp_reg = gen_reg_rtx (mode);
f676971a 11041
cabfd258
GK
11042 emit_insn ((*gen_func.mov) (tmp_reg, src));
11043 stores[num_reg++] = (*gen_func.mov) (dest, tmp_reg);
4c64a852 11044 }
3933e0e1 11045
cabfd258
GK
11046 if (mode == BLKmode || num_reg >= MAX_MOVE_REG || bytes == move_bytes)
11047 {
11048 int i;
11049 for (i = 0; i < num_reg; i++)
11050 emit_insn (stores[i]);
11051 num_reg = 0;
11052 }
35aff10b 11053
cabfd258 11054 if (mode == BLKmode)
7e69e155 11055 {
70128ad9 11056 /* Move the address into scratch registers. The movmemsi
cabfd258
GK
11057 patterns require zero offset. */
11058 if (!REG_P (XEXP (src, 0)))
b6c9286a 11059 {
cabfd258
GK
11060 rtx src_reg = copy_addr_to_reg (XEXP (src, 0));
11061 src = replace_equiv_address (src, src_reg);
b6c9286a 11062 }
cabfd258 11063 set_mem_size (src, GEN_INT (move_bytes));
f676971a 11064
cabfd258 11065 if (!REG_P (XEXP (dest, 0)))
3933e0e1 11066 {
cabfd258
GK
11067 rtx dest_reg = copy_addr_to_reg (XEXP (dest, 0));
11068 dest = replace_equiv_address (dest, dest_reg);
7e69e155 11069 }
cabfd258 11070 set_mem_size (dest, GEN_INT (move_bytes));
f676971a 11071
70128ad9 11072 emit_insn ((*gen_func.movmemsi) (dest, src,
cabfd258
GK
11073 GEN_INT (move_bytes & 31),
11074 align_rtx));
7e69e155 11075 }
7e69e155
MM
11076 }
11077
11078 return 1;
11079}
11080
d62294f5 11081\f
9caa3eb2
DE
11082/* Return a string to perform a load_multiple operation.
11083 operands[0] is the vector.
11084 operands[1] is the source address.
11085 operands[2] is the first destination register. */
11086
11087const char *
a2369ed3 11088rs6000_output_load_multiple (rtx operands[3])
9caa3eb2
DE
11089{
11090 /* We have to handle the case where the pseudo used to contain the address
11091 is assigned to one of the output registers. */
11092 int i, j;
11093 int words = XVECLEN (operands[0], 0);
11094 rtx xop[10];
11095
11096 if (XVECLEN (operands[0], 0) == 1)
11097 return "{l|lwz} %2,0(%1)";
11098
11099 for (i = 0; i < words; i++)
11100 if (refers_to_regno_p (REGNO (operands[2]) + i,
11101 REGNO (operands[2]) + i + 1, operands[1], 0))
11102 {
11103 if (i == words-1)
11104 {
11105 xop[0] = GEN_INT (4 * (words-1));
11106 xop[1] = operands[1];
11107 xop[2] = operands[2];
11108 output_asm_insn ("{lsi|lswi} %2,%1,%0\n\t{l|lwz} %1,%0(%1)", xop);
11109 return "";
11110 }
11111 else if (i == 0)
11112 {
11113 xop[0] = GEN_INT (4 * (words-1));
11114 xop[1] = operands[1];
11115 xop[2] = gen_rtx_REG (SImode, REGNO (operands[2]) + 1);
11116 output_asm_insn ("{cal %1,4(%1)|addi %1,%1,4}\n\t{lsi|lswi} %2,%1,%0\n\t{l|lwz} %1,-4(%1)", xop);
11117 return "";
11118 }
11119 else
11120 {
11121 for (j = 0; j < words; j++)
11122 if (j != i)
11123 {
11124 xop[0] = GEN_INT (j * 4);
11125 xop[1] = operands[1];
11126 xop[2] = gen_rtx_REG (SImode, REGNO (operands[2]) + j);
11127 output_asm_insn ("{l|lwz} %2,%0(%1)", xop);
11128 }
11129 xop[0] = GEN_INT (i * 4);
11130 xop[1] = operands[1];
11131 output_asm_insn ("{l|lwz} %1,%0(%1)", xop);
11132 return "";
11133 }
11134 }
11135
11136 return "{lsi|lswi} %2,%1,%N0";
11137}
11138
9878760c 11139\f
a4f6c312
SS
11140/* A validation routine: say whether CODE, a condition code, and MODE
11141 match. The other alternatives either don't make sense or should
11142 never be generated. */
39a10a29 11143
48d72335 11144void
a2369ed3 11145validate_condition_mode (enum rtx_code code, enum machine_mode mode)
39a10a29 11146{
37409796
NS
11147 gcc_assert ((GET_RTX_CLASS (code) == RTX_COMPARE
11148 || GET_RTX_CLASS (code) == RTX_COMM_COMPARE)
11149 && GET_MODE_CLASS (mode) == MODE_CC);
39a10a29
GK
11150
11151 /* These don't make sense. */
37409796
NS
11152 gcc_assert ((code != GT && code != LT && code != GE && code != LE)
11153 || mode != CCUNSmode);
39a10a29 11154
37409796
NS
11155 gcc_assert ((code != GTU && code != LTU && code != GEU && code != LEU)
11156 || mode == CCUNSmode);
39a10a29 11157
37409796
NS
11158 gcc_assert (mode == CCFPmode
11159 || (code != ORDERED && code != UNORDERED
11160 && code != UNEQ && code != LTGT
11161 && code != UNGT && code != UNLT
11162 && code != UNGE && code != UNLE));
f676971a
EC
11163
11164 /* These should never be generated except for
bc9ec0e0 11165 flag_finite_math_only. */
37409796
NS
11166 gcc_assert (mode != CCFPmode
11167 || flag_finite_math_only
11168 || (code != LE && code != GE
11169 && code != UNEQ && code != LTGT
11170 && code != UNGT && code != UNLT));
39a10a29
GK
11171
11172 /* These are invalid; the information is not there. */
37409796 11173 gcc_assert (mode != CCEQmode || code == EQ || code == NE);
39a10a29
GK
11174}
11175
9878760c
RK
11176\f
11177/* Return 1 if ANDOP is a mask that has no bits on that are not in the
11178 mask required to convert the result of a rotate insn into a shift
b1765bde 11179 left insn of SHIFTOP bits. Both are known to be SImode CONST_INT. */
9878760c
RK
11180
11181int
a2369ed3 11182includes_lshift_p (rtx shiftop, rtx andop)
9878760c 11183{
e2c953b6
DE
11184 unsigned HOST_WIDE_INT shift_mask = ~(unsigned HOST_WIDE_INT) 0;
11185
11186 shift_mask <<= INTVAL (shiftop);
9878760c 11187
b1765bde 11188 return (INTVAL (andop) & 0xffffffff & ~shift_mask) == 0;
9878760c
RK
11189}
11190
11191/* Similar, but for right shift. */
11192
11193int
a2369ed3 11194includes_rshift_p (rtx shiftop, rtx andop)
9878760c 11195{
a7653a2c 11196 unsigned HOST_WIDE_INT shift_mask = ~(unsigned HOST_WIDE_INT) 0;
9878760c
RK
11197
11198 shift_mask >>= INTVAL (shiftop);
11199
b1765bde 11200 return (INTVAL (andop) & 0xffffffff & ~shift_mask) == 0;
e2c953b6
DE
11201}
11202
c5059423
AM
11203/* Return 1 if ANDOP is a mask suitable for use with an rldic insn
11204 to perform a left shift. It must have exactly SHIFTOP least
b6d08ca1 11205 significant 0's, then one or more 1's, then zero or more 0's. */
e2c953b6
DE
11206
11207int
a2369ed3 11208includes_rldic_lshift_p (rtx shiftop, rtx andop)
e2c953b6 11209{
c5059423
AM
11210 if (GET_CODE (andop) == CONST_INT)
11211 {
02071907 11212 HOST_WIDE_INT c, lsb, shift_mask;
e2c953b6 11213
c5059423 11214 c = INTVAL (andop);
02071907 11215 if (c == 0 || c == ~0)
c5059423 11216 return 0;
e2c953b6 11217
02071907 11218 shift_mask = ~0;
c5059423
AM
11219 shift_mask <<= INTVAL (shiftop);
11220
b6d08ca1 11221 /* Find the least significant one bit. */
c5059423
AM
11222 lsb = c & -c;
11223
11224 /* It must coincide with the LSB of the shift mask. */
11225 if (-lsb != shift_mask)
11226 return 0;
e2c953b6 11227
c5059423
AM
11228 /* Invert to look for the next transition (if any). */
11229 c = ~c;
11230
11231 /* Remove the low group of ones (originally low group of zeros). */
11232 c &= -lsb;
11233
11234 /* Again find the lsb, and check we have all 1's above. */
11235 lsb = c & -c;
11236 return c == -lsb;
11237 }
11238 else if (GET_CODE (andop) == CONST_DOUBLE
11239 && (GET_MODE (andop) == VOIDmode || GET_MODE (andop) == DImode))
11240 {
02071907
AM
11241 HOST_WIDE_INT low, high, lsb;
11242 HOST_WIDE_INT shift_mask_low, shift_mask_high;
c5059423
AM
11243
11244 low = CONST_DOUBLE_LOW (andop);
11245 if (HOST_BITS_PER_WIDE_INT < 64)
11246 high = CONST_DOUBLE_HIGH (andop);
11247
11248 if ((low == 0 && (HOST_BITS_PER_WIDE_INT >= 64 || high == 0))
02071907 11249 || (low == ~0 && (HOST_BITS_PER_WIDE_INT >= 64 || high == ~0)))
c5059423
AM
11250 return 0;
11251
11252 if (HOST_BITS_PER_WIDE_INT < 64 && low == 0)
11253 {
02071907 11254 shift_mask_high = ~0;
c5059423
AM
11255 if (INTVAL (shiftop) > 32)
11256 shift_mask_high <<= INTVAL (shiftop) - 32;
11257
11258 lsb = high & -high;
11259
11260 if (-lsb != shift_mask_high || INTVAL (shiftop) < 32)
11261 return 0;
11262
11263 high = ~high;
11264 high &= -lsb;
11265
11266 lsb = high & -high;
11267 return high == -lsb;
11268 }
11269
02071907 11270 shift_mask_low = ~0;
c5059423
AM
11271 shift_mask_low <<= INTVAL (shiftop);
11272
11273 lsb = low & -low;
11274
11275 if (-lsb != shift_mask_low)
11276 return 0;
11277
11278 if (HOST_BITS_PER_WIDE_INT < 64)
11279 high = ~high;
11280 low = ~low;
11281 low &= -lsb;
11282
11283 if (HOST_BITS_PER_WIDE_INT < 64 && low == 0)
11284 {
11285 lsb = high & -high;
11286 return high == -lsb;
11287 }
11288
11289 lsb = low & -low;
11290 return low == -lsb && (HOST_BITS_PER_WIDE_INT >= 64 || high == ~0);
11291 }
11292 else
11293 return 0;
11294}
e2c953b6 11295
c5059423
AM
11296/* Return 1 if ANDOP is a mask suitable for use with an rldicr insn
11297 to perform a left shift. It must have SHIFTOP or more least
c1207243 11298 significant 0's, with the remainder of the word 1's. */
e2c953b6 11299
c5059423 11300int
a2369ed3 11301includes_rldicr_lshift_p (rtx shiftop, rtx andop)
c5059423 11302{
e2c953b6 11303 if (GET_CODE (andop) == CONST_INT)
c5059423 11304 {
02071907 11305 HOST_WIDE_INT c, lsb, shift_mask;
c5059423 11306
02071907 11307 shift_mask = ~0;
c5059423
AM
11308 shift_mask <<= INTVAL (shiftop);
11309 c = INTVAL (andop);
11310
c1207243 11311 /* Find the least significant one bit. */
c5059423
AM
11312 lsb = c & -c;
11313
11314 /* It must be covered by the shift mask.
a4f6c312 11315 This test also rejects c == 0. */
c5059423
AM
11316 if ((lsb & shift_mask) == 0)
11317 return 0;
11318
11319 /* Check we have all 1's above the transition, and reject all 1's. */
11320 return c == -lsb && lsb != 1;
11321 }
11322 else if (GET_CODE (andop) == CONST_DOUBLE
11323 && (GET_MODE (andop) == VOIDmode || GET_MODE (andop) == DImode))
11324 {
02071907 11325 HOST_WIDE_INT low, lsb, shift_mask_low;
c5059423
AM
11326
11327 low = CONST_DOUBLE_LOW (andop);
11328
11329 if (HOST_BITS_PER_WIDE_INT < 64)
11330 {
02071907 11331 HOST_WIDE_INT high, shift_mask_high;
c5059423
AM
11332
11333 high = CONST_DOUBLE_HIGH (andop);
11334
11335 if (low == 0)
11336 {
02071907 11337 shift_mask_high = ~0;
c5059423
AM
11338 if (INTVAL (shiftop) > 32)
11339 shift_mask_high <<= INTVAL (shiftop) - 32;
11340
11341 lsb = high & -high;
11342
11343 if ((lsb & shift_mask_high) == 0)
11344 return 0;
11345
11346 return high == -lsb;
11347 }
11348 if (high != ~0)
11349 return 0;
11350 }
11351
02071907 11352 shift_mask_low = ~0;
c5059423
AM
11353 shift_mask_low <<= INTVAL (shiftop);
11354
11355 lsb = low & -low;
11356
11357 if ((lsb & shift_mask_low) == 0)
11358 return 0;
11359
11360 return low == -lsb && lsb != 1;
11361 }
e2c953b6 11362 else
c5059423 11363 return 0;
9878760c 11364}
35068b43 11365
11ac38b2
DE
11366/* Return 1 if operands will generate a valid arguments to rlwimi
11367instruction for insert with right shift in 64-bit mode. The mask may
11368not start on the first bit or stop on the last bit because wrap-around
11369effects of instruction do not correspond to semantics of RTL insn. */
11370
11371int
11372insvdi_rshift_rlwimi_p (rtx sizeop, rtx startop, rtx shiftop)
11373{
429ec7dc
DE
11374 if (INTVAL (startop) > 32
11375 && INTVAL (startop) < 64
11376 && INTVAL (sizeop) > 1
11377 && INTVAL (sizeop) + INTVAL (startop) < 64
11378 && INTVAL (shiftop) > 0
11379 && INTVAL (sizeop) + INTVAL (shiftop) < 32
11ac38b2
DE
11380 && (64 - (INTVAL (shiftop) & 63)) >= INTVAL (sizeop))
11381 return 1;
11382
11383 return 0;
11384}
11385
35068b43 11386/* Return 1 if REGNO (reg1) == REGNO (reg2) - 1 making them candidates
90f81f99 11387 for lfq and stfq insns iff the registers are hard registers. */
35068b43
RK
11388
11389int
a2369ed3 11390registers_ok_for_quad_peep (rtx reg1, rtx reg2)
35068b43
RK
11391{
11392 /* We might have been passed a SUBREG. */
f676971a 11393 if (GET_CODE (reg1) != REG || GET_CODE (reg2) != REG)
35068b43 11394 return 0;
f676971a 11395
90f81f99
AP
11396 /* We might have been passed non floating point registers. */
11397 if (!FP_REGNO_P (REGNO (reg1))
11398 || !FP_REGNO_P (REGNO (reg2)))
11399 return 0;
35068b43
RK
11400
11401 return (REGNO (reg1) == REGNO (reg2) - 1);
11402}
11403
a4f6c312
SS
11404/* Return 1 if addr1 and addr2 are suitable for lfq or stfq insn.
11405 addr1 and addr2 must be in consecutive memory locations
11406 (addr2 == addr1 + 8). */
35068b43
RK
11407
11408int
90f81f99 11409mems_ok_for_quad_peep (rtx mem1, rtx mem2)
35068b43 11410{
90f81f99 11411 rtx addr1, addr2;
bb8df8a6
EC
11412 unsigned int reg1, reg2;
11413 int offset1, offset2;
35068b43 11414
90f81f99
AP
11415 /* The mems cannot be volatile. */
11416 if (MEM_VOLATILE_P (mem1) || MEM_VOLATILE_P (mem2))
11417 return 0;
f676971a 11418
90f81f99
AP
11419 addr1 = XEXP (mem1, 0);
11420 addr2 = XEXP (mem2, 0);
11421
35068b43
RK
11422 /* Extract an offset (if used) from the first addr. */
11423 if (GET_CODE (addr1) == PLUS)
11424 {
11425 /* If not a REG, return zero. */
11426 if (GET_CODE (XEXP (addr1, 0)) != REG)
11427 return 0;
11428 else
11429 {
c4ad648e 11430 reg1 = REGNO (XEXP (addr1, 0));
35068b43
RK
11431 /* The offset must be constant! */
11432 if (GET_CODE (XEXP (addr1, 1)) != CONST_INT)
c4ad648e
AM
11433 return 0;
11434 offset1 = INTVAL (XEXP (addr1, 1));
35068b43
RK
11435 }
11436 }
11437 else if (GET_CODE (addr1) != REG)
11438 return 0;
11439 else
11440 {
11441 reg1 = REGNO (addr1);
11442 /* This was a simple (mem (reg)) expression. Offset is 0. */
11443 offset1 = 0;
11444 }
11445
bb8df8a6
EC
11446 /* And now for the second addr. */
11447 if (GET_CODE (addr2) == PLUS)
11448 {
11449 /* If not a REG, return zero. */
11450 if (GET_CODE (XEXP (addr2, 0)) != REG)
11451 return 0;
11452 else
11453 {
11454 reg2 = REGNO (XEXP (addr2, 0));
11455 /* The offset must be constant. */
11456 if (GET_CODE (XEXP (addr2, 1)) != CONST_INT)
11457 return 0;
11458 offset2 = INTVAL (XEXP (addr2, 1));
11459 }
11460 }
11461 else if (GET_CODE (addr2) != REG)
35068b43 11462 return 0;
bb8df8a6
EC
11463 else
11464 {
11465 reg2 = REGNO (addr2);
11466 /* This was a simple (mem (reg)) expression. Offset is 0. */
11467 offset2 = 0;
11468 }
35068b43 11469
bb8df8a6
EC
11470 /* Both of these must have the same base register. */
11471 if (reg1 != reg2)
35068b43
RK
11472 return 0;
11473
11474 /* The offset for the second addr must be 8 more than the first addr. */
bb8df8a6 11475 if (offset2 != offset1 + 8)
35068b43
RK
11476 return 0;
11477
11478 /* All the tests passed. addr1 and addr2 are valid for lfq or stfq
11479 instructions. */
11480 return 1;
11481}
9878760c 11482\f
e41b2a33
PB
11483
11484rtx
11485rs6000_secondary_memory_needed_rtx (enum machine_mode mode)
11486{
11487 static bool eliminated = false;
11488 if (mode != SDmode)
11489 return assign_stack_local (mode, GET_MODE_SIZE (mode), 0);
11490 else
11491 {
11492 rtx mem = cfun->machine->sdmode_stack_slot;
11493 gcc_assert (mem != NULL_RTX);
11494
11495 if (!eliminated)
11496 {
11497 mem = eliminate_regs (mem, VOIDmode, NULL_RTX);
11498 cfun->machine->sdmode_stack_slot = mem;
11499 eliminated = true;
11500 }
11501 return mem;
11502 }
11503}
11504
11505static tree
11506rs6000_check_sdmode (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
11507{
11508 /* Don't walk into types. */
11509 if (*tp == NULL_TREE || *tp == error_mark_node || TYPE_P (*tp))
11510 {
11511 *walk_subtrees = 0;
11512 return NULL_TREE;
11513 }
11514
11515 switch (TREE_CODE (*tp))
11516 {
11517 case VAR_DECL:
11518 case PARM_DECL:
11519 case FIELD_DECL:
11520 case RESULT_DECL:
11521 case REAL_CST:
fdf4f148 11522 case INDIRECT_REF:
a0f39282
JJ
11523 case ALIGN_INDIRECT_REF:
11524 case MISALIGNED_INDIRECT_REF:
fdf4f148 11525 case VIEW_CONVERT_EXPR:
e41b2a33
PB
11526 if (TYPE_MODE (TREE_TYPE (*tp)) == SDmode)
11527 return *tp;
11528 break;
11529 default:
11530 break;
11531 }
11532
11533 return NULL_TREE;
11534}
11535
11536
11537/* Allocate a 64-bit stack slot to be used for copying SDmode
11538 values through if this function has any SDmode references. */
11539
11540static void
11541rs6000_alloc_sdmode_stack_slot (void)
11542{
11543 tree t;
11544 basic_block bb;
726a989a 11545 gimple_stmt_iterator gsi;
e41b2a33
PB
11546
11547 gcc_assert (cfun->machine->sdmode_stack_slot == NULL_RTX);
11548
11549 FOR_EACH_BB (bb)
726a989a 11550 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
e41b2a33 11551 {
726a989a 11552 tree ret = walk_gimple_op (gsi_stmt (gsi), rs6000_check_sdmode, NULL);
e41b2a33
PB
11553 if (ret)
11554 {
11555 rtx stack = assign_stack_local (DDmode, GET_MODE_SIZE (DDmode), 0);
11556 cfun->machine->sdmode_stack_slot = adjust_address_nv (stack,
11557 SDmode, 0);
11558 return;
11559 }
11560 }
11561
11562 /* Check for any SDmode parameters of the function. */
11563 for (t = DECL_ARGUMENTS (cfun->decl); t; t = TREE_CHAIN (t))
11564 {
11565 if (TREE_TYPE (t) == error_mark_node)
11566 continue;
11567
11568 if (TYPE_MODE (TREE_TYPE (t)) == SDmode
11569 || TYPE_MODE (DECL_ARG_TYPE (t)) == SDmode)
11570 {
11571 rtx stack = assign_stack_local (DDmode, GET_MODE_SIZE (DDmode), 0);
11572 cfun->machine->sdmode_stack_slot = adjust_address_nv (stack,
11573 SDmode, 0);
11574 return;
11575 }
11576 }
11577}
11578
11579static void
11580rs6000_instantiate_decls (void)
11581{
11582 if (cfun->machine->sdmode_stack_slot != NULL_RTX)
11583 instantiate_decl_rtl (cfun->machine->sdmode_stack_slot);
11584}
11585
9878760c 11586/* Return the register class of a scratch register needed to copy IN into
0a2aaacc 11587 or out of a register in RCLASS in MODE. If it can be done directly,
9878760c
RK
11588 NO_REGS is returned. */
11589
11590enum reg_class
0a2aaacc 11591rs6000_secondary_reload_class (enum reg_class rclass,
3c4774e0
R
11592 enum machine_mode mode ATTRIBUTE_UNUSED,
11593 rtx in)
9878760c 11594{
5accd822 11595 int regno;
9878760c 11596
ab82a49f
AP
11597 if (TARGET_ELF || (DEFAULT_ABI == ABI_DARWIN
11598#if TARGET_MACHO
c4ad648e 11599 && MACHOPIC_INDIRECT
ab82a49f 11600#endif
c4ad648e 11601 ))
46fad5b7
DJ
11602 {
11603 /* We cannot copy a symbolic operand directly into anything
c4ad648e
AM
11604 other than BASE_REGS for TARGET_ELF. So indicate that a
11605 register from BASE_REGS is needed as an intermediate
11606 register.
f676971a 11607
46fad5b7
DJ
11608 On Darwin, pic addresses require a load from memory, which
11609 needs a base register. */
0a2aaacc 11610 if (rclass != BASE_REGS
c4ad648e
AM
11611 && (GET_CODE (in) == SYMBOL_REF
11612 || GET_CODE (in) == HIGH
11613 || GET_CODE (in) == LABEL_REF
11614 || GET_CODE (in) == CONST))
11615 return BASE_REGS;
46fad5b7 11616 }
e7b7998a 11617
5accd822
DE
11618 if (GET_CODE (in) == REG)
11619 {
11620 regno = REGNO (in);
11621 if (regno >= FIRST_PSEUDO_REGISTER)
11622 {
11623 regno = true_regnum (in);
11624 if (regno >= FIRST_PSEUDO_REGISTER)
11625 regno = -1;
11626 }
11627 }
11628 else if (GET_CODE (in) == SUBREG)
11629 {
11630 regno = true_regnum (in);
11631 if (regno >= FIRST_PSEUDO_REGISTER)
11632 regno = -1;
11633 }
11634 else
11635 regno = -1;
11636
9878760c
RK
11637 /* We can place anything into GENERAL_REGS and can put GENERAL_REGS
11638 into anything. */
0a2aaacc 11639 if (rclass == GENERAL_REGS || rclass == BASE_REGS
9878760c
RK
11640 || (regno >= 0 && INT_REGNO_P (regno)))
11641 return NO_REGS;
11642
11643 /* Constants, memory, and FP registers can go into FP registers. */
11644 if ((regno == -1 || FP_REGNO_P (regno))
0a2aaacc 11645 && (rclass == FLOAT_REGS || rclass == NON_SPECIAL_REGS))
e41b2a33 11646 return (mode != SDmode) ? NO_REGS : GENERAL_REGS;
9878760c 11647
0ac081f6
AH
11648 /* Memory, and AltiVec registers can go into AltiVec registers. */
11649 if ((regno == -1 || ALTIVEC_REGNO_P (regno))
0a2aaacc 11650 && rclass == ALTIVEC_REGS)
0ac081f6
AH
11651 return NO_REGS;
11652
9878760c 11653 /* We can copy among the CR registers. */
0a2aaacc 11654 if ((rclass == CR_REGS || rclass == CR0_REGS)
9878760c
RK
11655 && regno >= 0 && CR_REGNO_P (regno))
11656 return NO_REGS;
11657
11658 /* Otherwise, we need GENERAL_REGS. */
11659 return GENERAL_REGS;
11660}
11661\f
11662/* Given a comparison operation, return the bit number in CCR to test. We
f676971a 11663 know this is a valid comparison.
9878760c
RK
11664
11665 SCC_P is 1 if this is for an scc. That means that %D will have been
11666 used instead of %C, so the bits will be in different places.
11667
b4ac57ab 11668 Return -1 if OP isn't a valid comparison for some reason. */
9878760c
RK
11669
11670int
a2369ed3 11671ccr_bit (rtx op, int scc_p)
9878760c
RK
11672{
11673 enum rtx_code code = GET_CODE (op);
11674 enum machine_mode cc_mode;
11675 int cc_regnum;
11676 int base_bit;
9ebbca7d 11677 rtx reg;
9878760c 11678
ec8e098d 11679 if (!COMPARISON_P (op))
9878760c
RK
11680 return -1;
11681
9ebbca7d
GK
11682 reg = XEXP (op, 0);
11683
37409796 11684 gcc_assert (GET_CODE (reg) == REG && CR_REGNO_P (REGNO (reg)));
9ebbca7d
GK
11685
11686 cc_mode = GET_MODE (reg);
11687 cc_regnum = REGNO (reg);
11688 base_bit = 4 * (cc_regnum - CR0_REGNO);
9878760c 11689
39a10a29 11690 validate_condition_mode (code, cc_mode);
c5defebb 11691
b7053a3f
GK
11692 /* When generating a sCOND operation, only positive conditions are
11693 allowed. */
37409796
NS
11694 gcc_assert (!scc_p
11695 || code == EQ || code == GT || code == LT || code == UNORDERED
11696 || code == GTU || code == LTU);
f676971a 11697
9878760c
RK
11698 switch (code)
11699 {
11700 case NE:
11701 return scc_p ? base_bit + 3 : base_bit + 2;
11702 case EQ:
11703 return base_bit + 2;
1c882ea4 11704 case GT: case GTU: case UNLE:
9878760c 11705 return base_bit + 1;
1c882ea4 11706 case LT: case LTU: case UNGE:
9878760c 11707 return base_bit;
1c882ea4
GK
11708 case ORDERED: case UNORDERED:
11709 return base_bit + 3;
9878760c
RK
11710
11711 case GE: case GEU:
39a10a29 11712 /* If scc, we will have done a cror to put the bit in the
9878760c
RK
11713 unordered position. So test that bit. For integer, this is ! LT
11714 unless this is an scc insn. */
39a10a29 11715 return scc_p ? base_bit + 3 : base_bit;
9878760c
RK
11716
11717 case LE: case LEU:
39a10a29 11718 return scc_p ? base_bit + 3 : base_bit + 1;
1c882ea4 11719
9878760c 11720 default:
37409796 11721 gcc_unreachable ();
9878760c
RK
11722 }
11723}
1ff7789b 11724\f
8d30c4ee 11725/* Return the GOT register. */
1ff7789b 11726
9390387d 11727rtx
a2369ed3 11728rs6000_got_register (rtx value ATTRIBUTE_UNUSED)
1ff7789b 11729{
a4f6c312
SS
11730 /* The second flow pass currently (June 1999) can't update
11731 regs_ever_live without disturbing other parts of the compiler, so
11732 update it here to make the prolog/epilogue code happy. */
b3a13419
ILT
11733 if (!can_create_pseudo_p ()
11734 && !df_regs_ever_live_p (RS6000_PIC_OFFSET_TABLE_REGNUM))
6fb5fa3c 11735 df_set_regs_ever_live (RS6000_PIC_OFFSET_TABLE_REGNUM, true);
1ff7789b 11736
e3b5732b 11737 crtl->uses_pic_offset_table = 1;
3cb999d8 11738
1ff7789b
MM
11739 return pic_offset_table_rtx;
11740}
a7df97e6 11741\f
e2500fed
GK
11742/* Function to init struct machine_function.
11743 This will be called, via a pointer variable,
11744 from push_function_context. */
a7df97e6 11745
e2500fed 11746static struct machine_function *
863d938c 11747rs6000_init_machine_status (void)
a7df97e6 11748{
5ead67f6 11749 return GGC_CNEW (machine_function);
a7df97e6 11750}
9878760c 11751\f
0ba1b2ff
AM
11752/* These macros test for integers and extract the low-order bits. */
11753#define INT_P(X) \
11754((GET_CODE (X) == CONST_INT || GET_CODE (X) == CONST_DOUBLE) \
11755 && GET_MODE (X) == VOIDmode)
11756
11757#define INT_LOWPART(X) \
11758 (GET_CODE (X) == CONST_INT ? INTVAL (X) : CONST_DOUBLE_LOW (X))
11759
11760int
a2369ed3 11761extract_MB (rtx op)
0ba1b2ff
AM
11762{
11763 int i;
11764 unsigned long val = INT_LOWPART (op);
11765
11766 /* If the high bit is zero, the value is the first 1 bit we find
11767 from the left. */
11768 if ((val & 0x80000000) == 0)
11769 {
37409796 11770 gcc_assert (val & 0xffffffff);
0ba1b2ff
AM
11771
11772 i = 1;
11773 while (((val <<= 1) & 0x80000000) == 0)
11774 ++i;
11775 return i;
11776 }
11777
11778 /* If the high bit is set and the low bit is not, or the mask is all
11779 1's, the value is zero. */
11780 if ((val & 1) == 0 || (val & 0xffffffff) == 0xffffffff)
11781 return 0;
11782
11783 /* Otherwise we have a wrap-around mask. Look for the first 0 bit
11784 from the right. */
11785 i = 31;
11786 while (((val >>= 1) & 1) != 0)
11787 --i;
11788
11789 return i;
11790}
11791
11792int
a2369ed3 11793extract_ME (rtx op)
0ba1b2ff
AM
11794{
11795 int i;
11796 unsigned long val = INT_LOWPART (op);
11797
11798 /* If the low bit is zero, the value is the first 1 bit we find from
11799 the right. */
11800 if ((val & 1) == 0)
11801 {
37409796 11802 gcc_assert (val & 0xffffffff);
0ba1b2ff
AM
11803
11804 i = 30;
11805 while (((val >>= 1) & 1) == 0)
11806 --i;
11807
11808 return i;
11809 }
11810
11811 /* If the low bit is set and the high bit is not, or the mask is all
11812 1's, the value is 31. */
11813 if ((val & 0x80000000) == 0 || (val & 0xffffffff) == 0xffffffff)
11814 return 31;
11815
11816 /* Otherwise we have a wrap-around mask. Look for the first 0 bit
11817 from the left. */
11818 i = 0;
11819 while (((val <<= 1) & 0x80000000) != 0)
11820 ++i;
11821
11822 return i;
11823}
11824
c4501e62
JJ
11825/* Locate some local-dynamic symbol still in use by this function
11826 so that we can print its name in some tls_ld pattern. */
11827
11828static const char *
863d938c 11829rs6000_get_some_local_dynamic_name (void)
c4501e62
JJ
11830{
11831 rtx insn;
11832
11833 if (cfun->machine->some_ld_name)
11834 return cfun->machine->some_ld_name;
11835
11836 for (insn = get_insns (); insn ; insn = NEXT_INSN (insn))
11837 if (INSN_P (insn)
11838 && for_each_rtx (&PATTERN (insn),
11839 rs6000_get_some_local_dynamic_name_1, 0))
11840 return cfun->machine->some_ld_name;
11841
37409796 11842 gcc_unreachable ();
c4501e62
JJ
11843}
11844
11845/* Helper function for rs6000_get_some_local_dynamic_name. */
11846
11847static int
a2369ed3 11848rs6000_get_some_local_dynamic_name_1 (rtx *px, void *data ATTRIBUTE_UNUSED)
c4501e62
JJ
11849{
11850 rtx x = *px;
11851
11852 if (GET_CODE (x) == SYMBOL_REF)
11853 {
11854 const char *str = XSTR (x, 0);
11855 if (SYMBOL_REF_TLS_MODEL (x) == TLS_MODEL_LOCAL_DYNAMIC)
11856 {
11857 cfun->machine->some_ld_name = str;
11858 return 1;
11859 }
11860 }
11861
11862 return 0;
11863}
11864
85b776df
AM
11865/* Write out a function code label. */
11866
11867void
11868rs6000_output_function_entry (FILE *file, const char *fname)
11869{
11870 if (fname[0] != '.')
11871 {
11872 switch (DEFAULT_ABI)
11873 {
11874 default:
37409796 11875 gcc_unreachable ();
85b776df
AM
11876
11877 case ABI_AIX:
11878 if (DOT_SYMBOLS)
11879 putc ('.', file);
11880 else
11881 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "L.");
11882 break;
11883
11884 case ABI_V4:
11885 case ABI_DARWIN:
11886 break;
11887 }
11888 }
11889 if (TARGET_AIX)
11890 RS6000_OUTPUT_BASENAME (file, fname);
11891 else
11892 assemble_name (file, fname);
11893}
11894
9878760c
RK
11895/* Print an operand. Recognize special options, documented below. */
11896
38c1f2d7 11897#if TARGET_ELF
d9407988 11898#define SMALL_DATA_RELOC ((rs6000_sdata == SDATA_EABI) ? "sda21" : "sdarel")
8fbd2dc7 11899#define SMALL_DATA_REG ((rs6000_sdata == SDATA_EABI) ? 0 : 13)
ba5e43aa
MM
11900#else
11901#define SMALL_DATA_RELOC "sda21"
8fbd2dc7 11902#define SMALL_DATA_REG 0
ba5e43aa
MM
11903#endif
11904
9878760c 11905void
a2369ed3 11906print_operand (FILE *file, rtx x, int code)
9878760c
RK
11907{
11908 int i;
a260abc9 11909 HOST_WIDE_INT val;
0ba1b2ff 11910 unsigned HOST_WIDE_INT uval;
9878760c
RK
11911
11912 switch (code)
11913 {
a8b3aeda 11914 case '.':
a85d226b
RK
11915 /* Write out an instruction after the call which may be replaced
11916 with glue code by the loader. This depends on the AIX version. */
11917 asm_fprintf (file, RS6000_CALL_GLUE);
a8b3aeda
RK
11918 return;
11919
81eace42
GK
11920 /* %a is output_address. */
11921
9854d9ed
RK
11922 case 'A':
11923 /* If X is a constant integer whose low-order 5 bits are zero,
11924 write 'l'. Otherwise, write 'r'. This is a kludge to fix a bug
76229ac8 11925 in the AIX assembler where "sri" with a zero shift count
20e26713 11926 writes a trash instruction. */
9854d9ed 11927 if (GET_CODE (x) == CONST_INT && (INTVAL (x) & 31) == 0)
76229ac8 11928 putc ('l', file);
9854d9ed 11929 else
76229ac8 11930 putc ('r', file);
9854d9ed
RK
11931 return;
11932
11933 case 'b':
e2c953b6
DE
11934 /* If constant, low-order 16 bits of constant, unsigned.
11935 Otherwise, write normally. */
11936 if (INT_P (x))
11937 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INT_LOWPART (x) & 0xffff);
11938 else
11939 print_operand (file, x, 0);
cad12a8d
RK
11940 return;
11941
a260abc9
DE
11942 case 'B':
11943 /* If the low-order bit is zero, write 'r'; otherwise, write 'l'
11944 for 64-bit mask direction. */
9390387d 11945 putc (((INT_LOWPART (x) & 1) == 0 ? 'r' : 'l'), file);
a238cd8b 11946 return;
a260abc9 11947
81eace42
GK
11948 /* %c is output_addr_const if a CONSTANT_ADDRESS_P, otherwise
11949 output_operand. */
11950
423c1189
AH
11951 case 'c':
11952 /* X is a CR register. Print the number of the GT bit of the CR. */
11953 if (GET_CODE (x) != REG || ! CR_REGNO_P (REGNO (x)))
11954 output_operand_lossage ("invalid %%E value");
11955 else
11956 fprintf (file, "%d", 4 * (REGNO (x) - CR0_REGNO) + 1);
11957 return;
11958
11959 case 'D':
cef6b86c 11960 /* Like 'J' but get to the GT bit only. */
37409796 11961 gcc_assert (GET_CODE (x) == REG);
423c1189 11962
cef6b86c
EB
11963 /* Bit 1 is GT bit. */
11964 i = 4 * (REGNO (x) - CR0_REGNO) + 1;
423c1189 11965
cef6b86c
EB
11966 /* Add one for shift count in rlinm for scc. */
11967 fprintf (file, "%d", i + 1);
423c1189
AH
11968 return;
11969
9854d9ed 11970 case 'E':
39a10a29 11971 /* X is a CR register. Print the number of the EQ bit of the CR */
9854d9ed
RK
11972 if (GET_CODE (x) != REG || ! CR_REGNO_P (REGNO (x)))
11973 output_operand_lossage ("invalid %%E value");
78fbdbf7 11974 else
39a10a29 11975 fprintf (file, "%d", 4 * (REGNO (x) - CR0_REGNO) + 2);
a85d226b 11976 return;
9854d9ed
RK
11977
11978 case 'f':
11979 /* X is a CR register. Print the shift count needed to move it
11980 to the high-order four bits. */
11981 if (GET_CODE (x) != REG || ! CR_REGNO_P (REGNO (x)))
11982 output_operand_lossage ("invalid %%f value");
11983 else
9ebbca7d 11984 fprintf (file, "%d", 4 * (REGNO (x) - CR0_REGNO));
9854d9ed
RK
11985 return;
11986
11987 case 'F':
11988 /* Similar, but print the count for the rotate in the opposite
11989 direction. */
11990 if (GET_CODE (x) != REG || ! CR_REGNO_P (REGNO (x)))
11991 output_operand_lossage ("invalid %%F value");
11992 else
9ebbca7d 11993 fprintf (file, "%d", 32 - 4 * (REGNO (x) - CR0_REGNO));
9854d9ed
RK
11994 return;
11995
11996 case 'G':
11997 /* X is a constant integer. If it is negative, print "m",
43aa4e05 11998 otherwise print "z". This is to make an aze or ame insn. */
9854d9ed
RK
11999 if (GET_CODE (x) != CONST_INT)
12000 output_operand_lossage ("invalid %%G value");
12001 else if (INTVAL (x) >= 0)
76229ac8 12002 putc ('z', file);
9854d9ed 12003 else
76229ac8 12004 putc ('m', file);
9854d9ed 12005 return;
e2c953b6 12006
9878760c 12007 case 'h':
a4f6c312
SS
12008 /* If constant, output low-order five bits. Otherwise, write
12009 normally. */
9878760c 12010 if (INT_P (x))
5f59ecb7 12011 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INT_LOWPART (x) & 31);
9878760c
RK
12012 else
12013 print_operand (file, x, 0);
12014 return;
12015
64305719 12016 case 'H':
a4f6c312
SS
12017 /* If constant, output low-order six bits. Otherwise, write
12018 normally. */
64305719 12019 if (INT_P (x))
5f59ecb7 12020 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INT_LOWPART (x) & 63);
64305719
DE
12021 else
12022 print_operand (file, x, 0);
12023 return;
12024
9854d9ed
RK
12025 case 'I':
12026 /* Print `i' if this is a constant, else nothing. */
9878760c 12027 if (INT_P (x))
76229ac8 12028 putc ('i', file);
9878760c
RK
12029 return;
12030
9854d9ed
RK
12031 case 'j':
12032 /* Write the bit number in CCR for jump. */
12033 i = ccr_bit (x, 0);
12034 if (i == -1)
12035 output_operand_lossage ("invalid %%j code");
9878760c 12036 else
9854d9ed 12037 fprintf (file, "%d", i);
9878760c
RK
12038 return;
12039
9854d9ed
RK
12040 case 'J':
12041 /* Similar, but add one for shift count in rlinm for scc and pass
12042 scc flag to `ccr_bit'. */
12043 i = ccr_bit (x, 1);
12044 if (i == -1)
12045 output_operand_lossage ("invalid %%J code");
12046 else
a0466a68
RK
12047 /* If we want bit 31, write a shift count of zero, not 32. */
12048 fprintf (file, "%d", i == 31 ? 0 : i + 1);
9878760c
RK
12049 return;
12050
9854d9ed
RK
12051 case 'k':
12052 /* X must be a constant. Write the 1's complement of the
12053 constant. */
9878760c 12054 if (! INT_P (x))
9854d9ed 12055 output_operand_lossage ("invalid %%k value");
e2c953b6
DE
12056 else
12057 fprintf (file, HOST_WIDE_INT_PRINT_DEC, ~ INT_LOWPART (x));
9878760c
RK
12058 return;
12059
81eace42 12060 case 'K':
9ebbca7d
GK
12061 /* X must be a symbolic constant on ELF. Write an
12062 expression suitable for an 'addi' that adds in the low 16
12063 bits of the MEM. */
12064 if (GET_CODE (x) != CONST)
12065 {
12066 print_operand_address (file, x);
12067 fputs ("@l", file);
12068 }
12069 else
12070 {
12071 if (GET_CODE (XEXP (x, 0)) != PLUS
12072 || (GET_CODE (XEXP (XEXP (x, 0), 0)) != SYMBOL_REF
12073 && GET_CODE (XEXP (XEXP (x, 0), 0)) != LABEL_REF)
12074 || GET_CODE (XEXP (XEXP (x, 0), 1)) != CONST_INT)
53cd5d6c 12075 output_operand_lossage ("invalid %%K value");
9ebbca7d
GK
12076 print_operand_address (file, XEXP (XEXP (x, 0), 0));
12077 fputs ("@l", file);
ed8d2920
MM
12078 /* For GNU as, there must be a non-alphanumeric character
12079 between 'l' and the number. The '-' is added by
12080 print_operand() already. */
12081 if (INTVAL (XEXP (XEXP (x, 0), 1)) >= 0)
12082 fputs ("+", file);
9ebbca7d
GK
12083 print_operand (file, XEXP (XEXP (x, 0), 1), 0);
12084 }
81eace42
GK
12085 return;
12086
12087 /* %l is output_asm_label. */
9ebbca7d 12088
9854d9ed
RK
12089 case 'L':
12090 /* Write second word of DImode or DFmode reference. Works on register
12091 or non-indexed memory only. */
12092 if (GET_CODE (x) == REG)
fb5c67a7 12093 fputs (reg_names[REGNO (x) + 1], file);
9854d9ed
RK
12094 else if (GET_CODE (x) == MEM)
12095 {
12096 /* Handle possible auto-increment. Since it is pre-increment and
1427100a 12097 we have already done it, we can just use an offset of word. */
9854d9ed
RK
12098 if (GET_CODE (XEXP (x, 0)) == PRE_INC
12099 || GET_CODE (XEXP (x, 0)) == PRE_DEC)
ed8908e7
RK
12100 output_address (plus_constant (XEXP (XEXP (x, 0), 0),
12101 UNITS_PER_WORD));
6fb5fa3c
DB
12102 else if (GET_CODE (XEXP (x, 0)) == PRE_MODIFY)
12103 output_address (plus_constant (XEXP (XEXP (x, 0), 0),
12104 UNITS_PER_WORD));
9854d9ed 12105 else
d7624dc0
RK
12106 output_address (XEXP (adjust_address_nv (x, SImode,
12107 UNITS_PER_WORD),
12108 0));
ed8908e7 12109
ba5e43aa 12110 if (small_data_operand (x, GET_MODE (x)))
8fbd2dc7
MM
12111 fprintf (file, "@%s(%s)", SMALL_DATA_RELOC,
12112 reg_names[SMALL_DATA_REG]);
9854d9ed 12113 }
9878760c 12114 return;
f676971a 12115
9878760c
RK
12116 case 'm':
12117 /* MB value for a mask operand. */
b1765bde 12118 if (! mask_operand (x, SImode))
9878760c
RK
12119 output_operand_lossage ("invalid %%m value");
12120
0ba1b2ff 12121 fprintf (file, "%d", extract_MB (x));
9878760c
RK
12122 return;
12123
12124 case 'M':
12125 /* ME value for a mask operand. */
b1765bde 12126 if (! mask_operand (x, SImode))
a260abc9 12127 output_operand_lossage ("invalid %%M value");
9878760c 12128
0ba1b2ff 12129 fprintf (file, "%d", extract_ME (x));
9878760c
RK
12130 return;
12131
81eace42
GK
12132 /* %n outputs the negative of its operand. */
12133
9878760c
RK
12134 case 'N':
12135 /* Write the number of elements in the vector times 4. */
12136 if (GET_CODE (x) != PARALLEL)
12137 output_operand_lossage ("invalid %%N value");
e2c953b6
DE
12138 else
12139 fprintf (file, "%d", XVECLEN (x, 0) * 4);
9878760c
RK
12140 return;
12141
12142 case 'O':
12143 /* Similar, but subtract 1 first. */
12144 if (GET_CODE (x) != PARALLEL)
1427100a 12145 output_operand_lossage ("invalid %%O value");
e2c953b6
DE
12146 else
12147 fprintf (file, "%d", (XVECLEN (x, 0) - 1) * 4);
9878760c
RK
12148 return;
12149
9854d9ed
RK
12150 case 'p':
12151 /* X is a CONST_INT that is a power of two. Output the logarithm. */
12152 if (! INT_P (x)
2bfcf297 12153 || INT_LOWPART (x) < 0
9854d9ed
RK
12154 || (i = exact_log2 (INT_LOWPART (x))) < 0)
12155 output_operand_lossage ("invalid %%p value");
e2c953b6
DE
12156 else
12157 fprintf (file, "%d", i);
9854d9ed
RK
12158 return;
12159
9878760c
RK
12160 case 'P':
12161 /* The operand must be an indirect memory reference. The result
8bb418a3 12162 is the register name. */
9878760c
RK
12163 if (GET_CODE (x) != MEM || GET_CODE (XEXP (x, 0)) != REG
12164 || REGNO (XEXP (x, 0)) >= 32)
12165 output_operand_lossage ("invalid %%P value");
e2c953b6 12166 else
fb5c67a7 12167 fputs (reg_names[REGNO (XEXP (x, 0))], file);
9878760c
RK
12168 return;
12169
dfbdccdb
GK
12170 case 'q':
12171 /* This outputs the logical code corresponding to a boolean
12172 expression. The expression may have one or both operands
39a10a29 12173 negated (if one, only the first one). For condition register
c4ad648e
AM
12174 logical operations, it will also treat the negated
12175 CR codes as NOTs, but not handle NOTs of them. */
dfbdccdb 12176 {
63bc1d05 12177 const char *const *t = 0;
dfbdccdb
GK
12178 const char *s;
12179 enum rtx_code code = GET_CODE (x);
12180 static const char * const tbl[3][3] = {
12181 { "and", "andc", "nor" },
12182 { "or", "orc", "nand" },
12183 { "xor", "eqv", "xor" } };
12184
12185 if (code == AND)
12186 t = tbl[0];
12187 else if (code == IOR)
12188 t = tbl[1];
12189 else if (code == XOR)
12190 t = tbl[2];
12191 else
12192 output_operand_lossage ("invalid %%q value");
12193
12194 if (GET_CODE (XEXP (x, 0)) != NOT)
12195 s = t[0];
12196 else
12197 {
12198 if (GET_CODE (XEXP (x, 1)) == NOT)
12199 s = t[2];
12200 else
12201 s = t[1];
12202 }
f676971a 12203
dfbdccdb
GK
12204 fputs (s, file);
12205 }
12206 return;
12207
2c4a9cff
DE
12208 case 'Q':
12209 if (TARGET_MFCRF)
3b6ce0af 12210 fputc (',', file);
5efb1046 12211 /* FALLTHRU */
2c4a9cff
DE
12212 else
12213 return;
12214
9854d9ed
RK
12215 case 'R':
12216 /* X is a CR register. Print the mask for `mtcrf'. */
12217 if (GET_CODE (x) != REG || ! CR_REGNO_P (REGNO (x)))
12218 output_operand_lossage ("invalid %%R value");
12219 else
9ebbca7d 12220 fprintf (file, "%d", 128 >> (REGNO (x) - CR0_REGNO));
9878760c 12221 return;
9854d9ed
RK
12222
12223 case 's':
12224 /* Low 5 bits of 32 - value */
12225 if (! INT_P (x))
12226 output_operand_lossage ("invalid %%s value");
e2c953b6
DE
12227 else
12228 fprintf (file, HOST_WIDE_INT_PRINT_DEC, (32 - INT_LOWPART (x)) & 31);
9878760c 12229 return;
9854d9ed 12230
a260abc9 12231 case 'S':
0ba1b2ff 12232 /* PowerPC64 mask position. All 0's is excluded.
a260abc9
DE
12233 CONST_INT 32-bit mask is considered sign-extended so any
12234 transition must occur within the CONST_INT, not on the boundary. */
1990cd79 12235 if (! mask64_operand (x, DImode))
a260abc9
DE
12236 output_operand_lossage ("invalid %%S value");
12237
0ba1b2ff 12238 uval = INT_LOWPART (x);
a260abc9 12239
0ba1b2ff 12240 if (uval & 1) /* Clear Left */
a260abc9 12241 {
f099d360
GK
12242#if HOST_BITS_PER_WIDE_INT > 64
12243 uval &= ((unsigned HOST_WIDE_INT) 1 << 64) - 1;
12244#endif
0ba1b2ff 12245 i = 64;
a260abc9 12246 }
0ba1b2ff 12247 else /* Clear Right */
a260abc9 12248 {
0ba1b2ff 12249 uval = ~uval;
f099d360
GK
12250#if HOST_BITS_PER_WIDE_INT > 64
12251 uval &= ((unsigned HOST_WIDE_INT) 1 << 64) - 1;
12252#endif
0ba1b2ff 12253 i = 63;
a260abc9 12254 }
0ba1b2ff
AM
12255 while (uval != 0)
12256 --i, uval >>= 1;
37409796 12257 gcc_assert (i >= 0);
0ba1b2ff
AM
12258 fprintf (file, "%d", i);
12259 return;
a260abc9 12260
a3170dc6
AH
12261 case 't':
12262 /* Like 'J' but get to the OVERFLOW/UNORDERED bit. */
37409796 12263 gcc_assert (GET_CODE (x) == REG && GET_MODE (x) == CCmode);
a3170dc6
AH
12264
12265 /* Bit 3 is OV bit. */
12266 i = 4 * (REGNO (x) - CR0_REGNO) + 3;
12267
12268 /* If we want bit 31, write a shift count of zero, not 32. */
12269 fprintf (file, "%d", i == 31 ? 0 : i + 1);
12270 return;
12271
cccf3bdc
DE
12272 case 'T':
12273 /* Print the symbolic name of a branch target register. */
1de43f85
DE
12274 if (GET_CODE (x) != REG || (REGNO (x) != LR_REGNO
12275 && REGNO (x) != CTR_REGNO))
cccf3bdc 12276 output_operand_lossage ("invalid %%T value");
1de43f85 12277 else if (REGNO (x) == LR_REGNO)
cccf3bdc
DE
12278 fputs (TARGET_NEW_MNEMONICS ? "lr" : "r", file);
12279 else
12280 fputs ("ctr", file);
12281 return;
12282
9854d9ed 12283 case 'u':
802a0058 12284 /* High-order 16 bits of constant for use in unsigned operand. */
9854d9ed
RK
12285 if (! INT_P (x))
12286 output_operand_lossage ("invalid %%u value");
e2c953b6 12287 else
f676971a 12288 fprintf (file, HOST_WIDE_INT_PRINT_HEX,
e2c953b6 12289 (INT_LOWPART (x) >> 16) & 0xffff);
9878760c
RK
12290 return;
12291
802a0058
MM
12292 case 'v':
12293 /* High-order 16 bits of constant for use in signed operand. */
12294 if (! INT_P (x))
12295 output_operand_lossage ("invalid %%v value");
e2c953b6 12296 else
134c32f6
DE
12297 fprintf (file, HOST_WIDE_INT_PRINT_HEX,
12298 (INT_LOWPART (x) >> 16) & 0xffff);
12299 return;
802a0058 12300
9854d9ed
RK
12301 case 'U':
12302 /* Print `u' if this has an auto-increment or auto-decrement. */
12303 if (GET_CODE (x) == MEM
12304 && (GET_CODE (XEXP (x, 0)) == PRE_INC
6fb5fa3c
DB
12305 || GET_CODE (XEXP (x, 0)) == PRE_DEC
12306 || GET_CODE (XEXP (x, 0)) == PRE_MODIFY))
76229ac8 12307 putc ('u', file);
9854d9ed 12308 return;
9878760c 12309
e0cd0770
JC
12310 case 'V':
12311 /* Print the trap code for this operand. */
12312 switch (GET_CODE (x))
12313 {
12314 case EQ:
12315 fputs ("eq", file); /* 4 */
12316 break;
12317 case NE:
12318 fputs ("ne", file); /* 24 */
12319 break;
12320 case LT:
12321 fputs ("lt", file); /* 16 */
12322 break;
12323 case LE:
12324 fputs ("le", file); /* 20 */
12325 break;
12326 case GT:
12327 fputs ("gt", file); /* 8 */
12328 break;
12329 case GE:
12330 fputs ("ge", file); /* 12 */
12331 break;
12332 case LTU:
12333 fputs ("llt", file); /* 2 */
12334 break;
12335 case LEU:
12336 fputs ("lle", file); /* 6 */
12337 break;
12338 case GTU:
12339 fputs ("lgt", file); /* 1 */
12340 break;
12341 case GEU:
12342 fputs ("lge", file); /* 5 */
12343 break;
12344 default:
37409796 12345 gcc_unreachable ();
e0cd0770
JC
12346 }
12347 break;
12348
9854d9ed
RK
12349 case 'w':
12350 /* If constant, low-order 16 bits of constant, signed. Otherwise, write
12351 normally. */
12352 if (INT_P (x))
f676971a 12353 fprintf (file, HOST_WIDE_INT_PRINT_DEC,
5f59ecb7 12354 ((INT_LOWPART (x) & 0xffff) ^ 0x8000) - 0x8000);
9854d9ed
RK
12355 else
12356 print_operand (file, x, 0);
9878760c
RK
12357 return;
12358
9854d9ed 12359 case 'W':
e2c953b6 12360 /* MB value for a PowerPC64 rldic operand. */
e2c953b6
DE
12361 val = (GET_CODE (x) == CONST_INT
12362 ? INTVAL (x) : CONST_DOUBLE_HIGH (x));
12363
12364 if (val < 0)
12365 i = -1;
9854d9ed 12366 else
e2c953b6
DE
12367 for (i = 0; i < HOST_BITS_PER_WIDE_INT; i++)
12368 if ((val <<= 1) < 0)
12369 break;
12370
12371#if HOST_BITS_PER_WIDE_INT == 32
12372 if (GET_CODE (x) == CONST_INT && i >= 0)
12373 i += 32; /* zero-extend high-part was all 0's */
12374 else if (GET_CODE (x) == CONST_DOUBLE && i == 32)
12375 {
12376 val = CONST_DOUBLE_LOW (x);
12377
37409796
NS
12378 gcc_assert (val);
12379 if (val < 0)
e2c953b6
DE
12380 --i;
12381 else
12382 for ( ; i < 64; i++)
12383 if ((val <<= 1) < 0)
12384 break;
12385 }
12386#endif
12387
12388 fprintf (file, "%d", i + 1);
9854d9ed 12389 return;
9878760c 12390
9854d9ed
RK
12391 case 'X':
12392 if (GET_CODE (x) == MEM
6fb5fa3c
DB
12393 && (legitimate_indexed_address_p (XEXP (x, 0), 0)
12394 || (GET_CODE (XEXP (x, 0)) == PRE_MODIFY
12395 && legitimate_indexed_address_p (XEXP (XEXP (x, 0), 1), 0))))
76229ac8 12396 putc ('x', file);
9854d9ed 12397 return;
9878760c 12398
9854d9ed
RK
12399 case 'Y':
12400 /* Like 'L', for third word of TImode */
12401 if (GET_CODE (x) == REG)
fb5c67a7 12402 fputs (reg_names[REGNO (x) + 2], file);
9854d9ed 12403 else if (GET_CODE (x) == MEM)
9878760c 12404 {
9854d9ed
RK
12405 if (GET_CODE (XEXP (x, 0)) == PRE_INC
12406 || GET_CODE (XEXP (x, 0)) == PRE_DEC)
a54d04b7 12407 output_address (plus_constant (XEXP (XEXP (x, 0), 0), 8));
6fb5fa3c
DB
12408 else if (GET_CODE (XEXP (x, 0)) == PRE_MODIFY)
12409 output_address (plus_constant (XEXP (XEXP (x, 0), 0), 8));
9854d9ed 12410 else
d7624dc0 12411 output_address (XEXP (adjust_address_nv (x, SImode, 8), 0));
ba5e43aa 12412 if (small_data_operand (x, GET_MODE (x)))
8fbd2dc7
MM
12413 fprintf (file, "@%s(%s)", SMALL_DATA_RELOC,
12414 reg_names[SMALL_DATA_REG]);
9878760c
RK
12415 }
12416 return;
f676971a 12417
9878760c 12418 case 'z':
b4ac57ab
RS
12419 /* X is a SYMBOL_REF. Write out the name preceded by a
12420 period and without any trailing data in brackets. Used for function
4d30c363
MM
12421 names. If we are configured for System V (or the embedded ABI) on
12422 the PowerPC, do not emit the period, since those systems do not use
12423 TOCs and the like. */
37409796 12424 gcc_assert (GET_CODE (x) == SYMBOL_REF);
9878760c 12425
c4ad648e
AM
12426 /* Mark the decl as referenced so that cgraph will output the
12427 function. */
9bf6462a 12428 if (SYMBOL_REF_DECL (x))
c4ad648e 12429 mark_decl_referenced (SYMBOL_REF_DECL (x));
9bf6462a 12430
85b776df 12431 /* For macho, check to see if we need a stub. */
f9da97f0
AP
12432 if (TARGET_MACHO)
12433 {
12434 const char *name = XSTR (x, 0);
a031e781 12435#if TARGET_MACHO
3b48085e 12436 if (MACHOPIC_INDIRECT
11abc112
MM
12437 && machopic_classify_symbol (x) == MACHOPIC_UNDEFINED_FUNCTION)
12438 name = machopic_indirection_name (x, /*stub_p=*/true);
f9da97f0
AP
12439#endif
12440 assemble_name (file, name);
12441 }
85b776df 12442 else if (!DOT_SYMBOLS)
9739c90c 12443 assemble_name (file, XSTR (x, 0));
85b776df
AM
12444 else
12445 rs6000_output_function_entry (file, XSTR (x, 0));
9878760c
RK
12446 return;
12447
9854d9ed
RK
12448 case 'Z':
12449 /* Like 'L', for last word of TImode. */
12450 if (GET_CODE (x) == REG)
fb5c67a7 12451 fputs (reg_names[REGNO (x) + 3], file);
9854d9ed
RK
12452 else if (GET_CODE (x) == MEM)
12453 {
12454 if (GET_CODE (XEXP (x, 0)) == PRE_INC
12455 || GET_CODE (XEXP (x, 0)) == PRE_DEC)
a54d04b7 12456 output_address (plus_constant (XEXP (XEXP (x, 0), 0), 12));
6fb5fa3c
DB
12457 else if (GET_CODE (XEXP (x, 0)) == PRE_MODIFY)
12458 output_address (plus_constant (XEXP (XEXP (x, 0), 0), 12));
9854d9ed 12459 else
d7624dc0 12460 output_address (XEXP (adjust_address_nv (x, SImode, 12), 0));
ba5e43aa 12461 if (small_data_operand (x, GET_MODE (x)))
8fbd2dc7
MM
12462 fprintf (file, "@%s(%s)", SMALL_DATA_RELOC,
12463 reg_names[SMALL_DATA_REG]);
9854d9ed 12464 }
5c23c401 12465 return;
0ac081f6 12466
a3170dc6 12467 /* Print AltiVec or SPE memory operand. */
0ac081f6
AH
12468 case 'y':
12469 {
12470 rtx tmp;
12471
37409796 12472 gcc_assert (GET_CODE (x) == MEM);
0ac081f6
AH
12473
12474 tmp = XEXP (x, 0);
12475
90d3ff1c 12476 /* Ugly hack because %y is overloaded. */
8ef65e3d 12477 if ((TARGET_SPE || TARGET_E500_DOUBLE)
17caeff2
JM
12478 && (GET_MODE_SIZE (GET_MODE (x)) == 8
12479 || GET_MODE (x) == TFmode
12480 || GET_MODE (x) == TImode))
a3170dc6
AH
12481 {
12482 /* Handle [reg]. */
12483 if (GET_CODE (tmp) == REG)
12484 {
12485 fprintf (file, "0(%s)", reg_names[REGNO (tmp)]);
12486 break;
12487 }
12488 /* Handle [reg+UIMM]. */
12489 else if (GET_CODE (tmp) == PLUS &&
12490 GET_CODE (XEXP (tmp, 1)) == CONST_INT)
12491 {
12492 int x;
12493
37409796 12494 gcc_assert (GET_CODE (XEXP (tmp, 0)) == REG);
a3170dc6
AH
12495
12496 x = INTVAL (XEXP (tmp, 1));
12497 fprintf (file, "%d(%s)", x, reg_names[REGNO (XEXP (tmp, 0))]);
12498 break;
12499 }
12500
12501 /* Fall through. Must be [reg+reg]. */
12502 }
850e8d3d
DN
12503 if (TARGET_ALTIVEC
12504 && GET_CODE (tmp) == AND
12505 && GET_CODE (XEXP (tmp, 1)) == CONST_INT
12506 && INTVAL (XEXP (tmp, 1)) == -16)
12507 tmp = XEXP (tmp, 0);
0ac081f6 12508 if (GET_CODE (tmp) == REG)
c62f2db5 12509 fprintf (file, "0,%s", reg_names[REGNO (tmp)]);
37409796 12510 else
0ac081f6 12511 {
cb8cc791
AP
12512 if (!GET_CODE (tmp) == PLUS
12513 || !REG_P (XEXP (tmp, 0))
12514 || !REG_P (XEXP (tmp, 1)))
12515 {
12516 output_operand_lossage ("invalid %%y value, try using the 'Z' constraint");
12517 break;
12518 }
bb8df8a6 12519
0ac081f6
AH
12520 if (REGNO (XEXP (tmp, 0)) == 0)
12521 fprintf (file, "%s,%s", reg_names[ REGNO (XEXP (tmp, 1)) ],
12522 reg_names[ REGNO (XEXP (tmp, 0)) ]);
12523 else
12524 fprintf (file, "%s,%s", reg_names[ REGNO (XEXP (tmp, 0)) ],
12525 reg_names[ REGNO (XEXP (tmp, 1)) ]);
12526 }
0ac081f6
AH
12527 break;
12528 }
f676971a 12529
9878760c
RK
12530 case 0:
12531 if (GET_CODE (x) == REG)
12532 fprintf (file, "%s", reg_names[REGNO (x)]);
12533 else if (GET_CODE (x) == MEM)
12534 {
12535 /* We need to handle PRE_INC and PRE_DEC here, since we need to
12536 know the width from the mode. */
12537 if (GET_CODE (XEXP (x, 0)) == PRE_INC)
79ba6d34
MM
12538 fprintf (file, "%d(%s)", GET_MODE_SIZE (GET_MODE (x)),
12539 reg_names[REGNO (XEXP (XEXP (x, 0), 0))]);
9878760c 12540 else if (GET_CODE (XEXP (x, 0)) == PRE_DEC)
79ba6d34
MM
12541 fprintf (file, "%d(%s)", - GET_MODE_SIZE (GET_MODE (x)),
12542 reg_names[REGNO (XEXP (XEXP (x, 0), 0))]);
6fb5fa3c
DB
12543 else if (GET_CODE (XEXP (x, 0)) == PRE_MODIFY)
12544 output_address (XEXP (XEXP (x, 0), 1));
9878760c 12545 else
a54d04b7 12546 output_address (XEXP (x, 0));
9878760c
RK
12547 }
12548 else
a54d04b7 12549 output_addr_const (file, x);
a85d226b 12550 return;
9878760c 12551
c4501e62
JJ
12552 case '&':
12553 assemble_name (file, rs6000_get_some_local_dynamic_name ());
12554 return;
12555
9878760c
RK
12556 default:
12557 output_operand_lossage ("invalid %%xn code");
12558 }
12559}
12560\f
12561/* Print the address of an operand. */
12562
12563void
a2369ed3 12564print_operand_address (FILE *file, rtx x)
9878760c
RK
12565{
12566 if (GET_CODE (x) == REG)
4697a36c 12567 fprintf (file, "0(%s)", reg_names[ REGNO (x) ]);
9ebbca7d
GK
12568 else if (GET_CODE (x) == SYMBOL_REF || GET_CODE (x) == CONST
12569 || GET_CODE (x) == LABEL_REF)
9878760c
RK
12570 {
12571 output_addr_const (file, x);
ba5e43aa 12572 if (small_data_operand (x, GET_MODE (x)))
8fbd2dc7
MM
12573 fprintf (file, "@%s(%s)", SMALL_DATA_RELOC,
12574 reg_names[SMALL_DATA_REG]);
37409796
NS
12575 else
12576 gcc_assert (!TARGET_TOC);
9878760c
RK
12577 }
12578 else if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 1)) == REG)
12579 {
9024f4b8 12580 gcc_assert (REG_P (XEXP (x, 0)));
9878760c 12581 if (REGNO (XEXP (x, 0)) == 0)
4697a36c
MM
12582 fprintf (file, "%s,%s", reg_names[ REGNO (XEXP (x, 1)) ],
12583 reg_names[ REGNO (XEXP (x, 0)) ]);
9878760c 12584 else
4697a36c
MM
12585 fprintf (file, "%s,%s", reg_names[ REGNO (XEXP (x, 0)) ],
12586 reg_names[ REGNO (XEXP (x, 1)) ]);
9878760c
RK
12587 }
12588 else if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
4a0a75dd
KG
12589 fprintf (file, HOST_WIDE_INT_PRINT_DEC "(%s)",
12590 INTVAL (XEXP (x, 1)), reg_names[ REGNO (XEXP (x, 0)) ]);
3cb999d8
DE
12591#if TARGET_ELF
12592 else if (GET_CODE (x) == LO_SUM && GET_CODE (XEXP (x, 0)) == REG
c4ad648e 12593 && CONSTANT_P (XEXP (x, 1)))
4697a36c
MM
12594 {
12595 output_addr_const (file, XEXP (x, 1));
12596 fprintf (file, "@l(%s)", reg_names[ REGNO (XEXP (x, 0)) ]);
12597 }
c859cda6
DJ
12598#endif
12599#if TARGET_MACHO
12600 else if (GET_CODE (x) == LO_SUM && GET_CODE (XEXP (x, 0)) == REG
c4ad648e 12601 && CONSTANT_P (XEXP (x, 1)))
c859cda6
DJ
12602 {
12603 fprintf (file, "lo16(");
12604 output_addr_const (file, XEXP (x, 1));
12605 fprintf (file, ")(%s)", reg_names[ REGNO (XEXP (x, 0)) ]);
12606 }
3cb999d8 12607#endif
4d588c14 12608 else if (legitimate_constant_pool_address_p (x))
9ebbca7d 12609 {
2e4316da 12610 output_addr_const (file, XEXP (x, 1));
9ebbca7d
GK
12611 fprintf (file, "(%s)", reg_names[REGNO (XEXP (x, 0))]);
12612 }
9878760c 12613 else
37409796 12614 gcc_unreachable ();
9878760c
RK
12615}
12616\f
2e4316da
RS
12617/* Implement OUTPUT_ADDR_CONST_EXTRA for address X. */
12618
12619bool
12620rs6000_output_addr_const_extra (FILE *file, rtx x)
12621{
12622 if (GET_CODE (x) == UNSPEC)
12623 switch (XINT (x, 1))
12624 {
12625 case UNSPEC_TOCREL:
12626 x = XVECEXP (x, 0, 0);
12627 gcc_assert (GET_CODE (x) == SYMBOL_REF);
12628 output_addr_const (file, x);
12629 if (!TARGET_AIX || (TARGET_ELF && TARGET_MINIMAL_TOC))
12630 {
12631 putc ('-', file);
12632 assemble_name (file, toc_label_name);
12633 }
12634 else if (TARGET_ELF)
12635 fputs ("@toc", file);
12636 return true;
08a6a74b
RS
12637
12638#if TARGET_MACHO
12639 case UNSPEC_MACHOPIC_OFFSET:
12640 output_addr_const (file, XVECEXP (x, 0, 0));
12641 putc ('-', file);
12642 machopic_output_function_base_name (file);
12643 return true;
12644#endif
2e4316da
RS
12645 }
12646 return false;
12647}
12648\f
88cad84b 12649/* Target hook for assembling integer objects. The PowerPC version has
301d03af
RS
12650 to handle fixup entries for relocatable code if RELOCATABLE_NEEDS_FIXUP
12651 is defined. It also needs to handle DI-mode objects on 64-bit
12652 targets. */
12653
12654static bool
a2369ed3 12655rs6000_assemble_integer (rtx x, unsigned int size, int aligned_p)
301d03af 12656{
f4f4921e 12657#ifdef RELOCATABLE_NEEDS_FIXUP
301d03af 12658 /* Special handling for SI values. */
84dcde01 12659 if (RELOCATABLE_NEEDS_FIXUP && size == 4 && aligned_p)
301d03af 12660 {
301d03af 12661 static int recurse = 0;
f676971a 12662
301d03af
RS
12663 /* For -mrelocatable, we mark all addresses that need to be fixed up
12664 in the .fixup section. */
12665 if (TARGET_RELOCATABLE
d6b5193b
RS
12666 && in_section != toc_section
12667 && in_section != text_section
4325ca90 12668 && !unlikely_text_section_p (in_section)
301d03af
RS
12669 && !recurse
12670 && GET_CODE (x) != CONST_INT
12671 && GET_CODE (x) != CONST_DOUBLE
12672 && CONSTANT_P (x))
12673 {
12674 char buf[256];
12675
12676 recurse = 1;
12677 ASM_GENERATE_INTERNAL_LABEL (buf, "LCP", fixuplabelno);
12678 fixuplabelno++;
12679 ASM_OUTPUT_LABEL (asm_out_file, buf);
12680 fprintf (asm_out_file, "\t.long\t(");
12681 output_addr_const (asm_out_file, x);
12682 fprintf (asm_out_file, ")@fixup\n");
12683 fprintf (asm_out_file, "\t.section\t\".fixup\",\"aw\"\n");
12684 ASM_OUTPUT_ALIGN (asm_out_file, 2);
12685 fprintf (asm_out_file, "\t.long\t");
12686 assemble_name (asm_out_file, buf);
12687 fprintf (asm_out_file, "\n\t.previous\n");
12688 recurse = 0;
12689 return true;
12690 }
12691 /* Remove initial .'s to turn a -mcall-aixdesc function
12692 address into the address of the descriptor, not the function
12693 itself. */
12694 else if (GET_CODE (x) == SYMBOL_REF
12695 && XSTR (x, 0)[0] == '.'
12696 && DEFAULT_ABI == ABI_AIX)
12697 {
12698 const char *name = XSTR (x, 0);
12699 while (*name == '.')
12700 name++;
12701
12702 fprintf (asm_out_file, "\t.long\t%s\n", name);
12703 return true;
12704 }
12705 }
f4f4921e 12706#endif /* RELOCATABLE_NEEDS_FIXUP */
301d03af
RS
12707 return default_assemble_integer (x, size, aligned_p);
12708}
93638d7a
AM
12709
12710#ifdef HAVE_GAS_HIDDEN
12711/* Emit an assembler directive to set symbol visibility for DECL to
12712 VISIBILITY_TYPE. */
12713
5add3202 12714static void
a2369ed3 12715rs6000_assemble_visibility (tree decl, int vis)
93638d7a 12716{
93638d7a
AM
12717 /* Functions need to have their entry point symbol visibility set as
12718 well as their descriptor symbol visibility. */
85b776df
AM
12719 if (DEFAULT_ABI == ABI_AIX
12720 && DOT_SYMBOLS
12721 && TREE_CODE (decl) == FUNCTION_DECL)
93638d7a 12722 {
25fdb4dc 12723 static const char * const visibility_types[] = {
c4ad648e 12724 NULL, "internal", "hidden", "protected"
25fdb4dc
RH
12725 };
12726
12727 const char *name, *type;
93638d7a
AM
12728
12729 name = ((* targetm.strip_name_encoding)
12730 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl))));
25fdb4dc 12731 type = visibility_types[vis];
93638d7a 12732
25fdb4dc
RH
12733 fprintf (asm_out_file, "\t.%s\t%s\n", type, name);
12734 fprintf (asm_out_file, "\t.%s\t.%s\n", type, name);
93638d7a 12735 }
25fdb4dc
RH
12736 else
12737 default_assemble_visibility (decl, vis);
93638d7a
AM
12738}
12739#endif
301d03af 12740\f
39a10a29 12741enum rtx_code
a2369ed3 12742rs6000_reverse_condition (enum machine_mode mode, enum rtx_code code)
39a10a29
GK
12743{
12744 /* Reversal of FP compares takes care -- an ordered compare
12745 becomes an unordered compare and vice versa. */
f676971a 12746 if (mode == CCFPmode
bc9ec0e0
GK
12747 && (!flag_finite_math_only
12748 || code == UNLT || code == UNLE || code == UNGT || code == UNGE
12749 || code == UNEQ || code == LTGT))
bab6226b 12750 return reverse_condition_maybe_unordered (code);
39a10a29 12751 else
bab6226b 12752 return reverse_condition (code);
39a10a29
GK
12753}
12754
39a10a29
GK
12755/* Generate a compare for CODE. Return a brand-new rtx that
12756 represents the result of the compare. */
a4f6c312 12757
39a10a29 12758static rtx
a2369ed3 12759rs6000_generate_compare (enum rtx_code code)
39a10a29
GK
12760{
12761 enum machine_mode comp_mode;
12762 rtx compare_result;
12763
12764 if (rs6000_compare_fp_p)
12765 comp_mode = CCFPmode;
12766 else if (code == GTU || code == LTU
c4ad648e 12767 || code == GEU || code == LEU)
39a10a29 12768 comp_mode = CCUNSmode;
60934f9c
NS
12769 else if ((code == EQ || code == NE)
12770 && GET_CODE (rs6000_compare_op0) == SUBREG
12771 && GET_CODE (rs6000_compare_op1) == SUBREG
12772 && SUBREG_PROMOTED_UNSIGNED_P (rs6000_compare_op0)
12773 && SUBREG_PROMOTED_UNSIGNED_P (rs6000_compare_op1))
12774 /* These are unsigned values, perhaps there will be a later
12775 ordering compare that can be shared with this one.
12776 Unfortunately we cannot detect the signedness of the operands
12777 for non-subregs. */
12778 comp_mode = CCUNSmode;
39a10a29
GK
12779 else
12780 comp_mode = CCmode;
12781
12782 /* First, the compare. */
12783 compare_result = gen_reg_rtx (comp_mode);
a3170dc6 12784
cef6b86c 12785 /* E500 FP compare instructions on the GPRs. Yuck! */
8ef65e3d 12786 if ((!TARGET_FPRS && TARGET_HARD_FLOAT)
993f19a8 12787 && rs6000_compare_fp_p)
a3170dc6 12788 {
64022b5d 12789 rtx cmp, or_result, compare_result2;
4d4cbc0e
AH
12790 enum machine_mode op_mode = GET_MODE (rs6000_compare_op0);
12791
12792 if (op_mode == VOIDmode)
12793 op_mode = GET_MODE (rs6000_compare_op1);
a3170dc6 12794
cef6b86c
EB
12795 /* The E500 FP compare instructions toggle the GT bit (CR bit 1) only.
12796 This explains the following mess. */
423c1189 12797
a3170dc6
AH
12798 switch (code)
12799 {
423c1189 12800 case EQ: case UNEQ: case NE: case LTGT:
37409796
NS
12801 switch (op_mode)
12802 {
12803 case SFmode:
1cdc0d8f 12804 cmp = (flag_finite_math_only && !flag_trapping_math)
37409796
NS
12805 ? gen_tstsfeq_gpr (compare_result, rs6000_compare_op0,
12806 rs6000_compare_op1)
12807 : gen_cmpsfeq_gpr (compare_result, rs6000_compare_op0,
12808 rs6000_compare_op1);
12809 break;
12810
12811 case DFmode:
1cdc0d8f 12812 cmp = (flag_finite_math_only && !flag_trapping_math)
37409796
NS
12813 ? gen_tstdfeq_gpr (compare_result, rs6000_compare_op0,
12814 rs6000_compare_op1)
12815 : gen_cmpdfeq_gpr (compare_result, rs6000_compare_op0,
12816 rs6000_compare_op1);
12817 break;
12818
17caeff2 12819 case TFmode:
1cdc0d8f 12820 cmp = (flag_finite_math_only && !flag_trapping_math)
17caeff2
JM
12821 ? gen_tsttfeq_gpr (compare_result, rs6000_compare_op0,
12822 rs6000_compare_op1)
12823 : gen_cmptfeq_gpr (compare_result, rs6000_compare_op0,
12824 rs6000_compare_op1);
12825 break;
12826
37409796
NS
12827 default:
12828 gcc_unreachable ();
12829 }
a3170dc6 12830 break;
bb8df8a6 12831
423c1189 12832 case GT: case GTU: case UNGT: case UNGE: case GE: case GEU:
37409796
NS
12833 switch (op_mode)
12834 {
12835 case SFmode:
1cdc0d8f 12836 cmp = (flag_finite_math_only && !flag_trapping_math)
37409796
NS
12837 ? gen_tstsfgt_gpr (compare_result, rs6000_compare_op0,
12838 rs6000_compare_op1)
12839 : gen_cmpsfgt_gpr (compare_result, rs6000_compare_op0,
12840 rs6000_compare_op1);
12841 break;
bb8df8a6 12842
37409796 12843 case DFmode:
1cdc0d8f 12844 cmp = (flag_finite_math_only && !flag_trapping_math)
37409796
NS
12845 ? gen_tstdfgt_gpr (compare_result, rs6000_compare_op0,
12846 rs6000_compare_op1)
12847 : gen_cmpdfgt_gpr (compare_result, rs6000_compare_op0,
12848 rs6000_compare_op1);
12849 break;
12850
17caeff2 12851 case TFmode:
1cdc0d8f 12852 cmp = (flag_finite_math_only && !flag_trapping_math)
17caeff2
JM
12853 ? gen_tsttfgt_gpr (compare_result, rs6000_compare_op0,
12854 rs6000_compare_op1)
12855 : gen_cmptfgt_gpr (compare_result, rs6000_compare_op0,
12856 rs6000_compare_op1);
12857 break;
12858
37409796
NS
12859 default:
12860 gcc_unreachable ();
12861 }
a3170dc6 12862 break;
bb8df8a6 12863
423c1189 12864 case LT: case LTU: case UNLT: case UNLE: case LE: case LEU:
37409796
NS
12865 switch (op_mode)
12866 {
12867 case SFmode:
1cdc0d8f 12868 cmp = (flag_finite_math_only && !flag_trapping_math)
37409796
NS
12869 ? gen_tstsflt_gpr (compare_result, rs6000_compare_op0,
12870 rs6000_compare_op1)
12871 : gen_cmpsflt_gpr (compare_result, rs6000_compare_op0,
12872 rs6000_compare_op1);
12873 break;
bb8df8a6 12874
37409796 12875 case DFmode:
1cdc0d8f 12876 cmp = (flag_finite_math_only && !flag_trapping_math)
37409796
NS
12877 ? gen_tstdflt_gpr (compare_result, rs6000_compare_op0,
12878 rs6000_compare_op1)
12879 : gen_cmpdflt_gpr (compare_result, rs6000_compare_op0,
12880 rs6000_compare_op1);
12881 break;
12882
17caeff2 12883 case TFmode:
1cdc0d8f 12884 cmp = (flag_finite_math_only && !flag_trapping_math)
17caeff2
JM
12885 ? gen_tsttflt_gpr (compare_result, rs6000_compare_op0,
12886 rs6000_compare_op1)
12887 : gen_cmptflt_gpr (compare_result, rs6000_compare_op0,
12888 rs6000_compare_op1);
12889 break;
12890
37409796
NS
12891 default:
12892 gcc_unreachable ();
12893 }
a3170dc6 12894 break;
4d4cbc0e 12895 default:
37409796 12896 gcc_unreachable ();
a3170dc6
AH
12897 }
12898
12899 /* Synthesize LE and GE from LT/GT || EQ. */
12900 if (code == LE || code == GE || code == LEU || code == GEU)
12901 {
a3170dc6
AH
12902 emit_insn (cmp);
12903
12904 switch (code)
12905 {
12906 case LE: code = LT; break;
12907 case GE: code = GT; break;
12908 case LEU: code = LT; break;
12909 case GEU: code = GT; break;
37409796 12910 default: gcc_unreachable ();
a3170dc6
AH
12911 }
12912
a3170dc6
AH
12913 compare_result2 = gen_reg_rtx (CCFPmode);
12914
12915 /* Do the EQ. */
37409796
NS
12916 switch (op_mode)
12917 {
12918 case SFmode:
1cdc0d8f 12919 cmp = (flag_finite_math_only && !flag_trapping_math)
37409796
NS
12920 ? gen_tstsfeq_gpr (compare_result2, rs6000_compare_op0,
12921 rs6000_compare_op1)
12922 : gen_cmpsfeq_gpr (compare_result2, rs6000_compare_op0,
12923 rs6000_compare_op1);
12924 break;
12925
12926 case DFmode:
1cdc0d8f 12927 cmp = (flag_finite_math_only && !flag_trapping_math)
37409796
NS
12928 ? gen_tstdfeq_gpr (compare_result2, rs6000_compare_op0,
12929 rs6000_compare_op1)
12930 : gen_cmpdfeq_gpr (compare_result2, rs6000_compare_op0,
12931 rs6000_compare_op1);
12932 break;
12933
17caeff2 12934 case TFmode:
1cdc0d8f 12935 cmp = (flag_finite_math_only && !flag_trapping_math)
17caeff2
JM
12936 ? gen_tsttfeq_gpr (compare_result2, rs6000_compare_op0,
12937 rs6000_compare_op1)
12938 : gen_cmptfeq_gpr (compare_result2, rs6000_compare_op0,
12939 rs6000_compare_op1);
12940 break;
12941
37409796
NS
12942 default:
12943 gcc_unreachable ();
12944 }
a3170dc6
AH
12945 emit_insn (cmp);
12946
a3170dc6 12947 /* OR them together. */
64022b5d
AH
12948 or_result = gen_reg_rtx (CCFPmode);
12949 cmp = gen_e500_cr_ior_compare (or_result, compare_result,
12950 compare_result2);
a3170dc6
AH
12951 compare_result = or_result;
12952 code = EQ;
12953 }
12954 else
12955 {
a3170dc6 12956 if (code == NE || code == LTGT)
a3170dc6 12957 code = NE;
423c1189
AH
12958 else
12959 code = EQ;
a3170dc6
AH
12960 }
12961
12962 emit_insn (cmp);
12963 }
12964 else
de17c25f
DE
12965 {
12966 /* Generate XLC-compatible TFmode compare as PARALLEL with extra
12967 CLOBBERs to match cmptf_internal2 pattern. */
12968 if (comp_mode == CCFPmode && TARGET_XL_COMPAT
12969 && GET_MODE (rs6000_compare_op0) == TFmode
602ea4d3 12970 && !TARGET_IEEEQUAD
de17c25f
DE
12971 && TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_LONG_DOUBLE_128)
12972 emit_insn (gen_rtx_PARALLEL (VOIDmode,
12973 gen_rtvec (9,
12974 gen_rtx_SET (VOIDmode,
12975 compare_result,
12976 gen_rtx_COMPARE (comp_mode,
12977 rs6000_compare_op0,
12978 rs6000_compare_op1)),
12979 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
12980 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
12981 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
12982 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
12983 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
12984 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
12985 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
12986 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)))));
3aebbe5f
JJ
12987 else if (GET_CODE (rs6000_compare_op1) == UNSPEC
12988 && XINT (rs6000_compare_op1, 1) == UNSPEC_SP_TEST)
12989 {
12990 rtx op1 = XVECEXP (rs6000_compare_op1, 0, 0);
12991 comp_mode = CCEQmode;
12992 compare_result = gen_reg_rtx (CCEQmode);
12993 if (TARGET_64BIT)
12994 emit_insn (gen_stack_protect_testdi (compare_result,
12995 rs6000_compare_op0, op1));
12996 else
12997 emit_insn (gen_stack_protect_testsi (compare_result,
12998 rs6000_compare_op0, op1));
12999 }
de17c25f
DE
13000 else
13001 emit_insn (gen_rtx_SET (VOIDmode, compare_result,
13002 gen_rtx_COMPARE (comp_mode,
13003 rs6000_compare_op0,
13004 rs6000_compare_op1)));
13005 }
f676971a 13006
ca5adc63 13007 /* Some kinds of FP comparisons need an OR operation;
e7108df9 13008 under flag_finite_math_only we don't bother. */
39a10a29 13009 if (rs6000_compare_fp_p
e7108df9 13010 && !flag_finite_math_only
8ef65e3d 13011 && !(TARGET_HARD_FLOAT && !TARGET_FPRS)
39a10a29
GK
13012 && (code == LE || code == GE
13013 || code == UNEQ || code == LTGT
13014 || code == UNGT || code == UNLT))
13015 {
13016 enum rtx_code or1, or2;
13017 rtx or1_rtx, or2_rtx, compare2_rtx;
13018 rtx or_result = gen_reg_rtx (CCEQmode);
f676971a 13019
39a10a29
GK
13020 switch (code)
13021 {
13022 case LE: or1 = LT; or2 = EQ; break;
13023 case GE: or1 = GT; or2 = EQ; break;
13024 case UNEQ: or1 = UNORDERED; or2 = EQ; break;
13025 case LTGT: or1 = LT; or2 = GT; break;
13026 case UNGT: or1 = UNORDERED; or2 = GT; break;
13027 case UNLT: or1 = UNORDERED; or2 = LT; break;
37409796 13028 default: gcc_unreachable ();
39a10a29
GK
13029 }
13030 validate_condition_mode (or1, comp_mode);
13031 validate_condition_mode (or2, comp_mode);
1c563bed
KH
13032 or1_rtx = gen_rtx_fmt_ee (or1, SImode, compare_result, const0_rtx);
13033 or2_rtx = gen_rtx_fmt_ee (or2, SImode, compare_result, const0_rtx);
39a10a29
GK
13034 compare2_rtx = gen_rtx_COMPARE (CCEQmode,
13035 gen_rtx_IOR (SImode, or1_rtx, or2_rtx),
13036 const_true_rtx);
13037 emit_insn (gen_rtx_SET (VOIDmode, or_result, compare2_rtx));
13038
13039 compare_result = or_result;
13040 code = EQ;
13041 }
13042
13043 validate_condition_mode (code, GET_MODE (compare_result));
f676971a 13044
1c563bed 13045 return gen_rtx_fmt_ee (code, VOIDmode, compare_result, const0_rtx);
39a10a29
GK
13046}
13047
13048
13049/* Emit the RTL for an sCOND pattern. */
13050
13051void
a2369ed3 13052rs6000_emit_sCOND (enum rtx_code code, rtx result)
39a10a29
GK
13053{
13054 rtx condition_rtx;
13055 enum machine_mode op_mode;
b7053a3f 13056 enum rtx_code cond_code;
39a10a29
GK
13057
13058 condition_rtx = rs6000_generate_compare (code);
b7053a3f
GK
13059 cond_code = GET_CODE (condition_rtx);
13060
8ef65e3d 13061 if (rs6000_compare_fp_p
423c1189
AH
13062 && !TARGET_FPRS && TARGET_HARD_FLOAT)
13063 {
13064 rtx t;
13065
13066 PUT_MODE (condition_rtx, SImode);
13067 t = XEXP (condition_rtx, 0);
13068
37409796 13069 gcc_assert (cond_code == NE || cond_code == EQ);
423c1189
AH
13070
13071 if (cond_code == NE)
64022b5d 13072 emit_insn (gen_e500_flip_gt_bit (t, t));
423c1189 13073
64022b5d 13074 emit_insn (gen_move_from_CR_gt_bit (result, t));
423c1189
AH
13075 return;
13076 }
13077
b7053a3f
GK
13078 if (cond_code == NE
13079 || cond_code == GE || cond_code == LE
13080 || cond_code == GEU || cond_code == LEU
13081 || cond_code == ORDERED || cond_code == UNGE || cond_code == UNLE)
13082 {
13083 rtx not_result = gen_reg_rtx (CCEQmode);
13084 rtx not_op, rev_cond_rtx;
13085 enum machine_mode cc_mode;
f676971a 13086
b7053a3f
GK
13087 cc_mode = GET_MODE (XEXP (condition_rtx, 0));
13088
1c563bed 13089 rev_cond_rtx = gen_rtx_fmt_ee (rs6000_reverse_condition (cc_mode, cond_code),
0f4c242b 13090 SImode, XEXP (condition_rtx, 0), const0_rtx);
b7053a3f
GK
13091 not_op = gen_rtx_COMPARE (CCEQmode, rev_cond_rtx, const0_rtx);
13092 emit_insn (gen_rtx_SET (VOIDmode, not_result, not_op));
13093 condition_rtx = gen_rtx_EQ (VOIDmode, not_result, const0_rtx);
13094 }
39a10a29
GK
13095
13096 op_mode = GET_MODE (rs6000_compare_op0);
13097 if (op_mode == VOIDmode)
13098 op_mode = GET_MODE (rs6000_compare_op1);
13099
13100 if (TARGET_POWERPC64 && (op_mode == DImode || rs6000_compare_fp_p))
13101 {
13102 PUT_MODE (condition_rtx, DImode);
13103 convert_move (result, condition_rtx, 0);
13104 }
13105 else
13106 {
13107 PUT_MODE (condition_rtx, SImode);
13108 emit_insn (gen_rtx_SET (VOIDmode, result, condition_rtx));
13109 }
13110}
13111
39a10a29
GK
13112/* Emit a branch of kind CODE to location LOC. */
13113
13114void
a2369ed3 13115rs6000_emit_cbranch (enum rtx_code code, rtx loc)
39a10a29
GK
13116{
13117 rtx condition_rtx, loc_ref;
13118
13119 condition_rtx = rs6000_generate_compare (code);
13120 loc_ref = gen_rtx_LABEL_REF (VOIDmode, loc);
13121 emit_jump_insn (gen_rtx_SET (VOIDmode, pc_rtx,
13122 gen_rtx_IF_THEN_ELSE (VOIDmode, condition_rtx,
13123 loc_ref, pc_rtx)));
13124}
13125
12a4e8c5
GK
13126/* Return the string to output a conditional branch to LABEL, which is
13127 the operand number of the label, or -1 if the branch is really a
f676971a 13128 conditional return.
12a4e8c5
GK
13129
13130 OP is the conditional expression. XEXP (OP, 0) is assumed to be a
13131 condition code register and its mode specifies what kind of
13132 comparison we made.
13133
a0ab749a 13134 REVERSED is nonzero if we should reverse the sense of the comparison.
12a4e8c5
GK
13135
13136 INSN is the insn. */
13137
13138char *
a2369ed3 13139output_cbranch (rtx op, const char *label, int reversed, rtx insn)
12a4e8c5
GK
13140{
13141 static char string[64];
13142 enum rtx_code code = GET_CODE (op);
13143 rtx cc_reg = XEXP (op, 0);
13144 enum machine_mode mode = GET_MODE (cc_reg);
13145 int cc_regno = REGNO (cc_reg) - CR0_REGNO;
39a10a29 13146 int need_longbranch = label != NULL && get_attr_length (insn) == 8;
12a4e8c5
GK
13147 int really_reversed = reversed ^ need_longbranch;
13148 char *s = string;
13149 const char *ccode;
13150 const char *pred;
13151 rtx note;
13152
39a10a29
GK
13153 validate_condition_mode (code, mode);
13154
13155 /* Work out which way this really branches. We could use
13156 reverse_condition_maybe_unordered here always but this
13157 makes the resulting assembler clearer. */
12a4e8c5 13158 if (really_reversed)
de40e1df
DJ
13159 {
13160 /* Reversal of FP compares takes care -- an ordered compare
13161 becomes an unordered compare and vice versa. */
13162 if (mode == CCFPmode)
13163 code = reverse_condition_maybe_unordered (code);
13164 else
13165 code = reverse_condition (code);
13166 }
12a4e8c5 13167
8ef65e3d 13168 if ((!TARGET_FPRS && TARGET_HARD_FLOAT) && mode == CCFPmode)
a3170dc6
AH
13169 {
13170 /* The efscmp/tst* instructions twiddle bit 2, which maps nicely
13171 to the GT bit. */
37409796
NS
13172 switch (code)
13173 {
13174 case EQ:
13175 /* Opposite of GT. */
13176 code = GT;
13177 break;
13178
13179 case NE:
13180 code = UNLE;
13181 break;
13182
13183 default:
13184 gcc_unreachable ();
13185 }
a3170dc6
AH
13186 }
13187
39a10a29 13188 switch (code)
12a4e8c5
GK
13189 {
13190 /* Not all of these are actually distinct opcodes, but
13191 we distinguish them for clarity of the resulting assembler. */
50a0b056
GK
13192 case NE: case LTGT:
13193 ccode = "ne"; break;
13194 case EQ: case UNEQ:
13195 ccode = "eq"; break;
f676971a 13196 case GE: case GEU:
50a0b056 13197 ccode = "ge"; break;
f676971a 13198 case GT: case GTU: case UNGT:
50a0b056 13199 ccode = "gt"; break;
f676971a 13200 case LE: case LEU:
50a0b056 13201 ccode = "le"; break;
f676971a 13202 case LT: case LTU: case UNLT:
50a0b056 13203 ccode = "lt"; break;
12a4e8c5
GK
13204 case UNORDERED: ccode = "un"; break;
13205 case ORDERED: ccode = "nu"; break;
13206 case UNGE: ccode = "nl"; break;
13207 case UNLE: ccode = "ng"; break;
13208 default:
37409796 13209 gcc_unreachable ();
12a4e8c5 13210 }
f676971a
EC
13211
13212 /* Maybe we have a guess as to how likely the branch is.
94a54f47 13213 The old mnemonics don't have a way to specify this information. */
f4857b9b 13214 pred = "";
12a4e8c5
GK
13215 note = find_reg_note (insn, REG_BR_PROB, NULL_RTX);
13216 if (note != NULL_RTX)
13217 {
13218 /* PROB is the difference from 50%. */
13219 int prob = INTVAL (XEXP (note, 0)) - REG_BR_PROB_BASE / 2;
f4857b9b
AM
13220
13221 /* Only hint for highly probable/improbable branches on newer
13222 cpus as static prediction overrides processor dynamic
13223 prediction. For older cpus we may as well always hint, but
13224 assume not taken for branches that are very close to 50% as a
13225 mispredicted taken branch is more expensive than a
f676971a 13226 mispredicted not-taken branch. */
ec507f2d 13227 if (rs6000_always_hint
2c9e13f3
JH
13228 || (abs (prob) > REG_BR_PROB_BASE / 100 * 48
13229 && br_prob_note_reliable_p (note)))
f4857b9b
AM
13230 {
13231 if (abs (prob) > REG_BR_PROB_BASE / 20
13232 && ((prob > 0) ^ need_longbranch))
c4ad648e 13233 pred = "+";
f4857b9b
AM
13234 else
13235 pred = "-";
13236 }
12a4e8c5 13237 }
12a4e8c5
GK
13238
13239 if (label == NULL)
94a54f47 13240 s += sprintf (s, "{b%sr|b%slr%s} ", ccode, ccode, pred);
12a4e8c5 13241 else
94a54f47 13242 s += sprintf (s, "{b%s|b%s%s} ", ccode, ccode, pred);
12a4e8c5 13243
37c67319 13244 /* We need to escape any '%' characters in the reg_names string.
a3c9585f 13245 Assume they'd only be the first character.... */
37c67319
GK
13246 if (reg_names[cc_regno + CR0_REGNO][0] == '%')
13247 *s++ = '%';
94a54f47 13248 s += sprintf (s, "%s", reg_names[cc_regno + CR0_REGNO]);
12a4e8c5
GK
13249
13250 if (label != NULL)
13251 {
13252 /* If the branch distance was too far, we may have to use an
13253 unconditional branch to go the distance. */
13254 if (need_longbranch)
44518ddd 13255 s += sprintf (s, ",$+8\n\tb %s", label);
12a4e8c5
GK
13256 else
13257 s += sprintf (s, ",%s", label);
13258 }
13259
13260 return string;
13261}
50a0b056 13262
64022b5d 13263/* Return the string to flip the GT bit on a CR. */
423c1189 13264char *
64022b5d 13265output_e500_flip_gt_bit (rtx dst, rtx src)
423c1189
AH
13266{
13267 static char string[64];
13268 int a, b;
13269
37409796
NS
13270 gcc_assert (GET_CODE (dst) == REG && CR_REGNO_P (REGNO (dst))
13271 && GET_CODE (src) == REG && CR_REGNO_P (REGNO (src)));
423c1189 13272
64022b5d
AH
13273 /* GT bit. */
13274 a = 4 * (REGNO (dst) - CR0_REGNO) + 1;
13275 b = 4 * (REGNO (src) - CR0_REGNO) + 1;
423c1189
AH
13276
13277 sprintf (string, "crnot %d,%d", a, b);
13278 return string;
13279}
13280
21213b4c
DP
13281/* Return insn index for the vector compare instruction for given CODE,
13282 and DEST_MODE, OP_MODE. Return INSN_NOT_AVAILABLE if valid insn is
13283 not available. */
13284
13285static int
94ff898d 13286get_vec_cmp_insn (enum rtx_code code,
21213b4c
DP
13287 enum machine_mode dest_mode,
13288 enum machine_mode op_mode)
13289{
13290 if (!TARGET_ALTIVEC)
13291 return INSN_NOT_AVAILABLE;
13292
13293 switch (code)
13294 {
13295 case EQ:
13296 if (dest_mode == V16QImode && op_mode == V16QImode)
13297 return UNSPEC_VCMPEQUB;
13298 if (dest_mode == V8HImode && op_mode == V8HImode)
13299 return UNSPEC_VCMPEQUH;
13300 if (dest_mode == V4SImode && op_mode == V4SImode)
13301 return UNSPEC_VCMPEQUW;
13302 if (dest_mode == V4SImode && op_mode == V4SFmode)
13303 return UNSPEC_VCMPEQFP;
13304 break;
13305 case GE:
13306 if (dest_mode == V4SImode && op_mode == V4SFmode)
13307 return UNSPEC_VCMPGEFP;
13308 case GT:
13309 if (dest_mode == V16QImode && op_mode == V16QImode)
13310 return UNSPEC_VCMPGTSB;
13311 if (dest_mode == V8HImode && op_mode == V8HImode)
13312 return UNSPEC_VCMPGTSH;
13313 if (dest_mode == V4SImode && op_mode == V4SImode)
13314 return UNSPEC_VCMPGTSW;
13315 if (dest_mode == V4SImode && op_mode == V4SFmode)
13316 return UNSPEC_VCMPGTFP;
13317 break;
13318 case GTU:
13319 if (dest_mode == V16QImode && op_mode == V16QImode)
13320 return UNSPEC_VCMPGTUB;
13321 if (dest_mode == V8HImode && op_mode == V8HImode)
13322 return UNSPEC_VCMPGTUH;
13323 if (dest_mode == V4SImode && op_mode == V4SImode)
13324 return UNSPEC_VCMPGTUW;
13325 break;
13326 default:
13327 break;
13328 }
13329 return INSN_NOT_AVAILABLE;
13330}
13331
13332/* Emit vector compare for operands OP0 and OP1 using code RCODE.
13333 DMODE is expected destination mode. This is a recursive function. */
13334
13335static rtx
13336rs6000_emit_vector_compare (enum rtx_code rcode,
13337 rtx op0, rtx op1,
13338 enum machine_mode dmode)
13339{
13340 int vec_cmp_insn;
13341 rtx mask;
13342 enum machine_mode dest_mode;
13343 enum machine_mode op_mode = GET_MODE (op1);
13344
37409796
NS
13345 gcc_assert (TARGET_ALTIVEC);
13346 gcc_assert (GET_MODE (op0) == GET_MODE (op1));
21213b4c
DP
13347
13348 /* Floating point vector compare instructions uses destination V4SImode.
13349 Move destination to appropriate mode later. */
13350 if (dmode == V4SFmode)
13351 dest_mode = V4SImode;
13352 else
13353 dest_mode = dmode;
13354
13355 mask = gen_reg_rtx (dest_mode);
13356 vec_cmp_insn = get_vec_cmp_insn (rcode, dest_mode, op_mode);
13357
13358 if (vec_cmp_insn == INSN_NOT_AVAILABLE)
13359 {
13360 bool swap_operands = false;
13361 bool try_again = false;
13362 switch (rcode)
13363 {
13364 case LT:
13365 rcode = GT;
13366 swap_operands = true;
13367 try_again = true;
13368 break;
13369 case LTU:
13370 rcode = GTU;
13371 swap_operands = true;
13372 try_again = true;
13373 break;
13374 case NE:
370df7db
JC
13375 case UNLE:
13376 case UNLT:
13377 case UNGE:
13378 case UNGT:
13379 /* Invert condition and try again.
13380 e.g., A != B becomes ~(A==B). */
21213b4c 13381 {
370df7db 13382 enum rtx_code rev_code;
21213b4c 13383 enum insn_code nor_code;
d1123cde 13384 rtx eq_rtx;
370df7db
JC
13385
13386 rev_code = reverse_condition_maybe_unordered (rcode);
d1123cde
MS
13387 eq_rtx = rs6000_emit_vector_compare (rev_code, op0, op1,
13388 dest_mode);
94ff898d 13389
166cdb08 13390 nor_code = optab_handler (one_cmpl_optab, (int)dest_mode)->insn_code;
37409796 13391 gcc_assert (nor_code != CODE_FOR_nothing);
21213b4c
DP
13392 emit_insn (GEN_FCN (nor_code) (mask, eq_rtx));
13393
13394 if (dmode != dest_mode)
13395 {
13396 rtx temp = gen_reg_rtx (dest_mode);
13397 convert_move (temp, mask, 0);
13398 return temp;
13399 }
13400 return mask;
13401 }
13402 break;
13403 case GE:
13404 case GEU:
13405 case LE:
13406 case LEU:
13407 /* Try GT/GTU/LT/LTU OR EQ */
13408 {
13409 rtx c_rtx, eq_rtx;
13410 enum insn_code ior_code;
13411 enum rtx_code new_code;
13412
37409796
NS
13413 switch (rcode)
13414 {
13415 case GE:
13416 new_code = GT;
13417 break;
13418
13419 case GEU:
13420 new_code = GTU;
13421 break;
13422
13423 case LE:
13424 new_code = LT;
13425 break;
13426
13427 case LEU:
13428 new_code = LTU;
13429 break;
13430
13431 default:
13432 gcc_unreachable ();
13433 }
21213b4c
DP
13434
13435 c_rtx = rs6000_emit_vector_compare (new_code,
13436 op0, op1, dest_mode);
13437 eq_rtx = rs6000_emit_vector_compare (EQ, op0, op1,
13438 dest_mode);
13439
166cdb08 13440 ior_code = optab_handler (ior_optab, (int)dest_mode)->insn_code;
37409796 13441 gcc_assert (ior_code != CODE_FOR_nothing);
21213b4c
DP
13442 emit_insn (GEN_FCN (ior_code) (mask, c_rtx, eq_rtx));
13443 if (dmode != dest_mode)
13444 {
13445 rtx temp = gen_reg_rtx (dest_mode);
13446 convert_move (temp, mask, 0);
13447 return temp;
13448 }
13449 return mask;
13450 }
13451 break;
13452 default:
37409796 13453 gcc_unreachable ();
21213b4c
DP
13454 }
13455
13456 if (try_again)
13457 {
13458 vec_cmp_insn = get_vec_cmp_insn (rcode, dest_mode, op_mode);
37409796
NS
13459 /* You only get two chances. */
13460 gcc_assert (vec_cmp_insn != INSN_NOT_AVAILABLE);
21213b4c
DP
13461 }
13462
13463 if (swap_operands)
13464 {
13465 rtx tmp;
13466 tmp = op0;
13467 op0 = op1;
13468 op1 = tmp;
13469 }
13470 }
13471
915167f5
GK
13472 emit_insn (gen_rtx_SET (VOIDmode, mask,
13473 gen_rtx_UNSPEC (dest_mode,
13474 gen_rtvec (2, op0, op1),
13475 vec_cmp_insn)));
21213b4c
DP
13476 if (dmode != dest_mode)
13477 {
13478 rtx temp = gen_reg_rtx (dest_mode);
13479 convert_move (temp, mask, 0);
13480 return temp;
13481 }
13482 return mask;
13483}
13484
13485/* Return vector select instruction for MODE. Return INSN_NOT_AVAILABLE, if
13486 valid insn doesn exist for given mode. */
13487
13488static int
13489get_vsel_insn (enum machine_mode mode)
13490{
13491 switch (mode)
13492 {
13493 case V4SImode:
13494 return UNSPEC_VSEL4SI;
13495 break;
13496 case V4SFmode:
13497 return UNSPEC_VSEL4SF;
13498 break;
13499 case V8HImode:
13500 return UNSPEC_VSEL8HI;
13501 break;
13502 case V16QImode:
13503 return UNSPEC_VSEL16QI;
13504 break;
13505 default:
13506 return INSN_NOT_AVAILABLE;
13507 break;
13508 }
13509 return INSN_NOT_AVAILABLE;
13510}
13511
13512/* Emit vector select insn where DEST is destination using
13513 operands OP1, OP2 and MASK. */
13514
13515static void
13516rs6000_emit_vector_select (rtx dest, rtx op1, rtx op2, rtx mask)
13517{
13518 rtx t, temp;
13519 enum machine_mode dest_mode = GET_MODE (dest);
13520 int vsel_insn_index = get_vsel_insn (GET_MODE (dest));
13521
13522 temp = gen_reg_rtx (dest_mode);
94ff898d 13523
bb8df8a6 13524 /* For each vector element, select op1 when mask is 1 otherwise
19f1ebc7 13525 select op2. */
915167f5
GK
13526 t = gen_rtx_SET (VOIDmode, temp,
13527 gen_rtx_UNSPEC (dest_mode,
13528 gen_rtvec (3, op2, op1, mask),
13529 vsel_insn_index));
21213b4c
DP
13530 emit_insn (t);
13531 emit_move_insn (dest, temp);
13532 return;
13533}
13534
94ff898d 13535/* Emit vector conditional expression.
21213b4c
DP
13536 DEST is destination. OP1 and OP2 are two VEC_COND_EXPR operands.
13537 CC_OP0 and CC_OP1 are the two operands for the relation operation COND. */
13538
13539int
13540rs6000_emit_vector_cond_expr (rtx dest, rtx op1, rtx op2,
13541 rtx cond, rtx cc_op0, rtx cc_op1)
13542{
13543 enum machine_mode dest_mode = GET_MODE (dest);
13544 enum rtx_code rcode = GET_CODE (cond);
13545 rtx mask;
13546
13547 if (!TARGET_ALTIVEC)
13548 return 0;
13549
13550 /* Get the vector mask for the given relational operations. */
13551 mask = rs6000_emit_vector_compare (rcode, cc_op0, cc_op1, dest_mode);
13552
13553 rs6000_emit_vector_select (dest, op1, op2, mask);
13554
13555 return 1;
13556}
13557
50a0b056
GK
13558/* Emit a conditional move: move TRUE_COND to DEST if OP of the
13559 operands of the last comparison is nonzero/true, FALSE_COND if it
13560 is zero/false. Return 0 if the hardware has no such operation. */
a4f6c312 13561
50a0b056 13562int
a2369ed3 13563rs6000_emit_cmove (rtx dest, rtx op, rtx true_cond, rtx false_cond)
50a0b056
GK
13564{
13565 enum rtx_code code = GET_CODE (op);
13566 rtx op0 = rs6000_compare_op0;
13567 rtx op1 = rs6000_compare_op1;
13568 REAL_VALUE_TYPE c1;
3148ad6d
DJ
13569 enum machine_mode compare_mode = GET_MODE (op0);
13570 enum machine_mode result_mode = GET_MODE (dest);
50a0b056 13571 rtx temp;
add2402e 13572 bool is_against_zero;
50a0b056 13573
a3c9585f 13574 /* These modes should always match. */
a3170dc6
AH
13575 if (GET_MODE (op1) != compare_mode
13576 /* In the isel case however, we can use a compare immediate, so
13577 op1 may be a small constant. */
13578 && (!TARGET_ISEL || !short_cint_operand (op1, VOIDmode)))
3148ad6d 13579 return 0;
178c3eff 13580 if (GET_MODE (true_cond) != result_mode)
3148ad6d 13581 return 0;
178c3eff 13582 if (GET_MODE (false_cond) != result_mode)
3148ad6d
DJ
13583 return 0;
13584
50a0b056 13585 /* First, work out if the hardware can do this at all, or
a3c9585f 13586 if it's too slow.... */
50a0b056 13587 if (! rs6000_compare_fp_p)
a3170dc6
AH
13588 {
13589 if (TARGET_ISEL)
13590 return rs6000_emit_int_cmove (dest, op, true_cond, false_cond);
13591 return 0;
13592 }
8ef65e3d 13593 else if (TARGET_HARD_FLOAT && !TARGET_FPRS
ebb109ad 13594 && SCALAR_FLOAT_MODE_P (compare_mode))
fef98bf2 13595 return 0;
50a0b056 13596
add2402e 13597 is_against_zero = op1 == CONST0_RTX (compare_mode);
94ff898d 13598
add2402e
GK
13599 /* A floating-point subtract might overflow, underflow, or produce
13600 an inexact result, thus changing the floating-point flags, so it
13601 can't be generated if we care about that. It's safe if one side
13602 of the construct is zero, since then no subtract will be
13603 generated. */
ebb109ad 13604 if (SCALAR_FLOAT_MODE_P (compare_mode)
add2402e
GK
13605 && flag_trapping_math && ! is_against_zero)
13606 return 0;
13607
50a0b056
GK
13608 /* Eliminate half of the comparisons by switching operands, this
13609 makes the remaining code simpler. */
13610 if (code == UNLT || code == UNGT || code == UNORDERED || code == NE
bc9ec0e0 13611 || code == LTGT || code == LT || code == UNLE)
50a0b056
GK
13612 {
13613 code = reverse_condition_maybe_unordered (code);
13614 temp = true_cond;
13615 true_cond = false_cond;
13616 false_cond = temp;
13617 }
13618
13619 /* UNEQ and LTGT take four instructions for a comparison with zero,
13620 it'll probably be faster to use a branch here too. */
bc9ec0e0 13621 if (code == UNEQ && HONOR_NANS (compare_mode))
50a0b056 13622 return 0;
f676971a 13623
50a0b056
GK
13624 if (GET_CODE (op1) == CONST_DOUBLE)
13625 REAL_VALUE_FROM_CONST_DOUBLE (c1, op1);
f676971a 13626
b6d08ca1 13627 /* We're going to try to implement comparisons by performing
50a0b056
GK
13628 a subtract, then comparing against zero. Unfortunately,
13629 Inf - Inf is NaN which is not zero, and so if we don't
27d30956 13630 know that the operand is finite and the comparison
50a0b056 13631 would treat EQ different to UNORDERED, we can't do it. */
bc9ec0e0 13632 if (HONOR_INFINITIES (compare_mode)
50a0b056 13633 && code != GT && code != UNGE
045572c7 13634 && (GET_CODE (op1) != CONST_DOUBLE || real_isinf (&c1))
50a0b056
GK
13635 /* Constructs of the form (a OP b ? a : b) are safe. */
13636 && ((! rtx_equal_p (op0, false_cond) && ! rtx_equal_p (op1, false_cond))
f676971a 13637 || (! rtx_equal_p (op0, true_cond)
50a0b056
GK
13638 && ! rtx_equal_p (op1, true_cond))))
13639 return 0;
add2402e 13640
50a0b056
GK
13641 /* At this point we know we can use fsel. */
13642
13643 /* Reduce the comparison to a comparison against zero. */
add2402e
GK
13644 if (! is_against_zero)
13645 {
13646 temp = gen_reg_rtx (compare_mode);
13647 emit_insn (gen_rtx_SET (VOIDmode, temp,
13648 gen_rtx_MINUS (compare_mode, op0, op1)));
13649 op0 = temp;
13650 op1 = CONST0_RTX (compare_mode);
13651 }
50a0b056
GK
13652
13653 /* If we don't care about NaNs we can reduce some of the comparisons
13654 down to faster ones. */
bc9ec0e0 13655 if (! HONOR_NANS (compare_mode))
50a0b056
GK
13656 switch (code)
13657 {
13658 case GT:
13659 code = LE;
13660 temp = true_cond;
13661 true_cond = false_cond;
13662 false_cond = temp;
13663 break;
13664 case UNGE:
13665 code = GE;
13666 break;
13667 case UNEQ:
13668 code = EQ;
13669 break;
13670 default:
13671 break;
13672 }
13673
13674 /* Now, reduce everything down to a GE. */
13675 switch (code)
13676 {
13677 case GE:
13678 break;
13679
13680 case LE:
3148ad6d
DJ
13681 temp = gen_reg_rtx (compare_mode);
13682 emit_insn (gen_rtx_SET (VOIDmode, temp, gen_rtx_NEG (compare_mode, op0)));
50a0b056
GK
13683 op0 = temp;
13684 break;
13685
13686 case ORDERED:
3148ad6d
DJ
13687 temp = gen_reg_rtx (compare_mode);
13688 emit_insn (gen_rtx_SET (VOIDmode, temp, gen_rtx_ABS (compare_mode, op0)));
50a0b056
GK
13689 op0 = temp;
13690 break;
13691
13692 case EQ:
3148ad6d 13693 temp = gen_reg_rtx (compare_mode);
f676971a 13694 emit_insn (gen_rtx_SET (VOIDmode, temp,
3148ad6d
DJ
13695 gen_rtx_NEG (compare_mode,
13696 gen_rtx_ABS (compare_mode, op0))));
50a0b056
GK
13697 op0 = temp;
13698 break;
13699
13700 case UNGE:
bc9ec0e0 13701 /* a UNGE 0 <-> (a GE 0 || -a UNLT 0) */
3148ad6d 13702 temp = gen_reg_rtx (result_mode);
50a0b056 13703 emit_insn (gen_rtx_SET (VOIDmode, temp,
3148ad6d 13704 gen_rtx_IF_THEN_ELSE (result_mode,
50a0b056
GK
13705 gen_rtx_GE (VOIDmode,
13706 op0, op1),
13707 true_cond, false_cond)));
bc9ec0e0
GK
13708 false_cond = true_cond;
13709 true_cond = temp;
50a0b056 13710
3148ad6d
DJ
13711 temp = gen_reg_rtx (compare_mode);
13712 emit_insn (gen_rtx_SET (VOIDmode, temp, gen_rtx_NEG (compare_mode, op0)));
50a0b056
GK
13713 op0 = temp;
13714 break;
13715
13716 case GT:
bc9ec0e0 13717 /* a GT 0 <-> (a GE 0 && -a UNLT 0) */
3148ad6d 13718 temp = gen_reg_rtx (result_mode);
50a0b056 13719 emit_insn (gen_rtx_SET (VOIDmode, temp,
f676971a 13720 gen_rtx_IF_THEN_ELSE (result_mode,
50a0b056
GK
13721 gen_rtx_GE (VOIDmode,
13722 op0, op1),
13723 true_cond, false_cond)));
bc9ec0e0
GK
13724 true_cond = false_cond;
13725 false_cond = temp;
50a0b056 13726
3148ad6d
DJ
13727 temp = gen_reg_rtx (compare_mode);
13728 emit_insn (gen_rtx_SET (VOIDmode, temp, gen_rtx_NEG (compare_mode, op0)));
50a0b056
GK
13729 op0 = temp;
13730 break;
13731
13732 default:
37409796 13733 gcc_unreachable ();
50a0b056
GK
13734 }
13735
13736 emit_insn (gen_rtx_SET (VOIDmode, dest,
3148ad6d 13737 gen_rtx_IF_THEN_ELSE (result_mode,
50a0b056
GK
13738 gen_rtx_GE (VOIDmode,
13739 op0, op1),
13740 true_cond, false_cond)));
13741 return 1;
13742}
13743
a3170dc6
AH
13744/* Same as above, but for ints (isel). */
13745
13746static int
a2369ed3 13747rs6000_emit_int_cmove (rtx dest, rtx op, rtx true_cond, rtx false_cond)
a3170dc6
AH
13748{
13749 rtx condition_rtx, cr;
13750
13751 /* All isel implementations thus far are 32-bits. */
13752 if (GET_MODE (rs6000_compare_op0) != SImode)
13753 return 0;
13754
13755 /* We still have to do the compare, because isel doesn't do a
13756 compare, it just looks at the CRx bits set by a previous compare
13757 instruction. */
13758 condition_rtx = rs6000_generate_compare (GET_CODE (op));
13759 cr = XEXP (condition_rtx, 0);
13760
13761 if (GET_MODE (cr) == CCmode)
13762 emit_insn (gen_isel_signed (dest, condition_rtx,
13763 true_cond, false_cond, cr));
13764 else
13765 emit_insn (gen_isel_unsigned (dest, condition_rtx,
13766 true_cond, false_cond, cr));
13767
13768 return 1;
13769}
13770
13771const char *
a2369ed3 13772output_isel (rtx *operands)
a3170dc6
AH
13773{
13774 enum rtx_code code;
13775
13776 code = GET_CODE (operands[1]);
13777 if (code == GE || code == GEU || code == LE || code == LEU || code == NE)
13778 {
13779 PUT_CODE (operands[1], reverse_condition (code));
13780 return "isel %0,%3,%2,%j1";
13781 }
13782 else
13783 return "isel %0,%2,%3,%j1";
13784}
13785
50a0b056 13786void
a2369ed3 13787rs6000_emit_minmax (rtx dest, enum rtx_code code, rtx op0, rtx op1)
50a0b056
GK
13788{
13789 enum machine_mode mode = GET_MODE (op0);
5dc8d536 13790 enum rtx_code c;
50a0b056 13791 rtx target;
5dc8d536
AH
13792
13793 if (code == SMAX || code == SMIN)
13794 c = GE;
13795 else
13796 c = GEU;
13797
50a0b056 13798 if (code == SMAX || code == UMAX)
f676971a 13799 target = emit_conditional_move (dest, c, op0, op1, mode,
50a0b056
GK
13800 op0, op1, mode, 0);
13801 else
f676971a 13802 target = emit_conditional_move (dest, c, op0, op1, mode,
50a0b056 13803 op1, op0, mode, 0);
37409796 13804 gcc_assert (target);
50a0b056
GK
13805 if (target != dest)
13806 emit_move_insn (dest, target);
13807}
46c07df8 13808
915167f5
GK
13809/* Emit instructions to perform a load-reserved/store-conditional operation.
13810 The operation performed is an atomic
13811 (set M (CODE:MODE M OP))
13812 If not NULL, BEFORE is atomically set to M before the operation, and
13813 AFTER is set to M after the operation (that is, (CODE:MODE M OP)).
bb8df8a6 13814 If SYNC_P then a memory barrier is emitted before the operation.
915167f5
GK
13815 Either OP or M may be wrapped in a NOT operation. */
13816
13817void
13818rs6000_emit_sync (enum rtx_code code, enum machine_mode mode,
13819 rtx m, rtx op, rtx before_param, rtx after_param,
13820 bool sync_p)
13821{
13822 enum machine_mode used_mode;
13823 rtx the_op, set_before, set_after, set_atomic, cc_scratch, before, after;
13824 rtx used_m;
13825 rtvec vec;
13826 HOST_WIDE_INT imask = GET_MODE_MASK (mode);
13827 rtx shift = NULL_RTX;
bb8df8a6 13828
915167f5 13829 if (sync_p)
a3cb4b82 13830 emit_insn (gen_lwsync ());
bb8df8a6 13831
915167f5
GK
13832 used_m = m;
13833
13834 /* If this is smaller than SImode, we'll have to use SImode with
13835 adjustments. */
13836 if (mode == QImode || mode == HImode)
13837 {
13838 rtx newop, oldop;
13839
13840 if (MEM_ALIGN (used_m) >= 32)
13841 {
13842 int ishift = 0;
13843 if (BYTES_BIG_ENDIAN)
13844 ishift = GET_MODE_BITSIZE (SImode) - GET_MODE_BITSIZE (mode);
bb8df8a6 13845
915167f5 13846 shift = GEN_INT (ishift);
c75c6d11 13847 used_m = change_address (used_m, SImode, 0);
915167f5
GK
13848 }
13849 else
13850 {
13851 rtx addrSI, aligned_addr;
a9c9d3fa 13852 int shift_mask = mode == QImode ? 0x18 : 0x10;
bb8df8a6 13853
c75c6d11
JJ
13854 addrSI = gen_lowpart_common (SImode,
13855 force_reg (Pmode, XEXP (used_m, 0)));
13856 addrSI = force_reg (SImode, addrSI);
915167f5
GK
13857 shift = gen_reg_rtx (SImode);
13858
13859 emit_insn (gen_rlwinm (shift, addrSI, GEN_INT (3),
a9c9d3fa
GK
13860 GEN_INT (shift_mask)));
13861 emit_insn (gen_xorsi3 (shift, shift, GEN_INT (shift_mask)));
915167f5
GK
13862
13863 aligned_addr = expand_binop (Pmode, and_optab,
13864 XEXP (used_m, 0),
13865 GEN_INT (-4), NULL_RTX,
13866 1, OPTAB_LIB_WIDEN);
13867 used_m = change_address (used_m, SImode, aligned_addr);
13868 set_mem_align (used_m, 32);
915167f5 13869 }
c75c6d11
JJ
13870 /* It's safe to keep the old alias set of USED_M, because
13871 the operation is atomic and only affects the original
13872 USED_M. */
f66f9865 13873 m = used_m;
915167f5
GK
13874
13875 if (GET_CODE (op) == NOT)
13876 {
13877 oldop = lowpart_subreg (SImode, XEXP (op, 0), mode);
13878 oldop = gen_rtx_NOT (SImode, oldop);
13879 }
13880 else
13881 oldop = lowpart_subreg (SImode, op, mode);
9f0076e5 13882
915167f5
GK
13883 switch (code)
13884 {
13885 case IOR:
13886 case XOR:
13887 newop = expand_binop (SImode, and_optab,
13888 oldop, GEN_INT (imask), NULL_RTX,
13889 1, OPTAB_LIB_WIDEN);
13890 emit_insn (gen_ashlsi3 (newop, newop, shift));
13891 break;
13892
f66f9865
DE
13893 case NOT: /* NAND */
13894 newop = expand_binop (SImode, ior_optab,
13895 oldop, GEN_INT (~imask), NULL_RTX,
13896 1, OPTAB_LIB_WIDEN);
13897 emit_insn (gen_rotlsi3 (newop, newop, shift));
13898 break;
13899
915167f5
GK
13900 case AND:
13901 newop = expand_binop (SImode, ior_optab,
13902 oldop, GEN_INT (~imask), NULL_RTX,
13903 1, OPTAB_LIB_WIDEN);
a9c9d3fa 13904 emit_insn (gen_rotlsi3 (newop, newop, shift));
915167f5
GK
13905 break;
13906
13907 case PLUS:
9f0076e5 13908 case MINUS:
915167f5
GK
13909 {
13910 rtx mask;
bb8df8a6 13911
915167f5
GK
13912 newop = expand_binop (SImode, and_optab,
13913 oldop, GEN_INT (imask), NULL_RTX,
13914 1, OPTAB_LIB_WIDEN);
13915 emit_insn (gen_ashlsi3 (newop, newop, shift));
13916
13917 mask = gen_reg_rtx (SImode);
13918 emit_move_insn (mask, GEN_INT (imask));
13919 emit_insn (gen_ashlsi3 (mask, mask, shift));
13920
9f0076e5
DE
13921 if (code == PLUS)
13922 newop = gen_rtx_PLUS (SImode, m, newop);
13923 else
13924 newop = gen_rtx_MINUS (SImode, m, newop);
13925 newop = gen_rtx_AND (SImode, newop, mask);
915167f5
GK
13926 newop = gen_rtx_IOR (SImode, newop,
13927 gen_rtx_AND (SImode,
13928 gen_rtx_NOT (SImode, mask),
13929 m));
13930 break;
13931 }
13932
13933 default:
13934 gcc_unreachable ();
13935 }
13936
13937 op = newop;
13938 used_mode = SImode;
13939 before = gen_reg_rtx (used_mode);
13940 after = gen_reg_rtx (used_mode);
13941 }
13942 else
13943 {
13944 used_mode = mode;
13945 before = before_param;
13946 after = after_param;
13947
13948 if (before == NULL_RTX)
13949 before = gen_reg_rtx (used_mode);
13950 if (after == NULL_RTX)
13951 after = gen_reg_rtx (used_mode);
13952 }
bb8df8a6 13953
f66f9865 13954 if ((code == PLUS || code == MINUS)
9f0076e5 13955 && used_mode != mode)
915167f5
GK
13956 the_op = op; /* Computed above. */
13957 else if (GET_CODE (op) == NOT && GET_CODE (m) != NOT)
13958 the_op = gen_rtx_fmt_ee (code, used_mode, op, m);
f66f9865
DE
13959 else if (code == NOT)
13960 the_op = gen_rtx_fmt_ee (IOR, used_mode,
13961 gen_rtx_NOT (used_mode, m),
13962 gen_rtx_NOT (used_mode, op));
915167f5
GK
13963 else
13964 the_op = gen_rtx_fmt_ee (code, used_mode, m, op);
13965
13966 set_after = gen_rtx_SET (VOIDmode, after, the_op);
13967 set_before = gen_rtx_SET (VOIDmode, before, used_m);
13968 set_atomic = gen_rtx_SET (VOIDmode, used_m,
9f0076e5
DE
13969 gen_rtx_UNSPEC (used_mode,
13970 gen_rtvec (1, the_op),
13971 UNSPEC_SYNC_OP));
915167f5
GK
13972 cc_scratch = gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (CCmode));
13973
9f0076e5 13974 if ((code == PLUS || code == MINUS) && used_mode != mode)
915167f5
GK
13975 vec = gen_rtvec (5, set_after, set_before, set_atomic, cc_scratch,
13976 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (SImode)));
13977 else
13978 vec = gen_rtvec (4, set_after, set_before, set_atomic, cc_scratch);
13979 emit_insn (gen_rtx_PARALLEL (VOIDmode, vec));
13980
13981 /* Shift and mask the return values properly. */
13982 if (used_mode != mode && before_param)
13983 {
13984 emit_insn (gen_lshrsi3 (before, before, shift));
13985 convert_move (before_param, before, 1);
13986 }
13987
13988 if (used_mode != mode && after_param)
13989 {
13990 emit_insn (gen_lshrsi3 (after, after, shift));
13991 convert_move (after_param, after, 1);
13992 }
13993
13994 /* The previous sequence will end with a branch that's dependent on
13995 the conditional store, so placing an isync will ensure that no
13996 other instructions (especially, no load or store instructions)
13997 can start before the atomic operation completes. */
13998 if (sync_p)
13999 emit_insn (gen_isync ());
14000}
14001
b52110d4
DE
14002/* A subroutine of the atomic operation splitters. Jump to LABEL if
14003 COND is true. Mark the jump as unlikely to be taken. */
14004
14005static void
14006emit_unlikely_jump (rtx cond, rtx label)
14007{
14008 rtx very_unlikely = GEN_INT (REG_BR_PROB_BASE / 100 - 1);
14009 rtx x;
14010
14011 x = gen_rtx_IF_THEN_ELSE (VOIDmode, cond, label, pc_rtx);
14012 x = emit_jump_insn (gen_rtx_SET (VOIDmode, pc_rtx, x));
14013 REG_NOTES (x) = gen_rtx_EXPR_LIST (REG_BR_PROB, very_unlikely, NULL_RTX);
14014}
14015
14016/* A subroutine of the atomic operation splitters. Emit a load-locked
14017 instruction in MODE. */
14018
14019static void
14020emit_load_locked (enum machine_mode mode, rtx reg, rtx mem)
14021{
14022 rtx (*fn) (rtx, rtx) = NULL;
14023 if (mode == SImode)
14024 fn = gen_load_locked_si;
14025 else if (mode == DImode)
14026 fn = gen_load_locked_di;
14027 emit_insn (fn (reg, mem));
14028}
14029
14030/* A subroutine of the atomic operation splitters. Emit a store-conditional
14031 instruction in MODE. */
14032
14033static void
14034emit_store_conditional (enum machine_mode mode, rtx res, rtx mem, rtx val)
14035{
14036 rtx (*fn) (rtx, rtx, rtx) = NULL;
14037 if (mode == SImode)
14038 fn = gen_store_conditional_si;
14039 else if (mode == DImode)
14040 fn = gen_store_conditional_di;
14041
9f0076e5 14042 /* Emit sync before stwcx. to address PPC405 Erratum. */
b52110d4
DE
14043 if (PPC405_ERRATUM77)
14044 emit_insn (gen_memory_barrier ());
14045
14046 emit_insn (fn (res, mem, val));
14047}
14048
ea2c620c 14049/* Expand an atomic fetch-and-operate pattern. CODE is the binary operation
bb8df8a6 14050 to perform. MEM is the memory on which to operate. VAL is the second
9f0076e5
DE
14051 operand of the binary operator. BEFORE and AFTER are optional locations to
14052 return the value of MEM either before of after the operation. SCRATCH is
14053 a scratch register. */
14054
14055void
14056rs6000_split_atomic_op (enum rtx_code code, rtx mem, rtx val,
14057 rtx before, rtx after, rtx scratch)
14058{
14059 enum machine_mode mode = GET_MODE (mem);
14060 rtx label, x, cond = gen_rtx_REG (CCmode, CR0_REGNO);
14061
a3cb4b82 14062 emit_insn (gen_lwsync ());
9f0076e5
DE
14063
14064 label = gen_label_rtx ();
14065 emit_label (label);
14066 label = gen_rtx_LABEL_REF (VOIDmode, label);
14067
14068 if (before == NULL_RTX)
14069 before = scratch;
14070 emit_load_locked (mode, before, mem);
14071
14072 if (code == NOT)
f66f9865
DE
14073 x = gen_rtx_IOR (mode,
14074 gen_rtx_NOT (mode, before),
14075 gen_rtx_NOT (mode, val));
9f0076e5
DE
14076 else if (code == AND)
14077 x = gen_rtx_UNSPEC (mode, gen_rtvec (2, before, val), UNSPEC_AND);
14078 else
14079 x = gen_rtx_fmt_ee (code, mode, before, val);
14080
14081 if (after != NULL_RTX)
14082 emit_insn (gen_rtx_SET (VOIDmode, after, copy_rtx (x)));
14083 emit_insn (gen_rtx_SET (VOIDmode, scratch, x));
14084
14085 emit_store_conditional (mode, cond, mem, scratch);
14086
14087 x = gen_rtx_NE (VOIDmode, cond, const0_rtx);
14088 emit_unlikely_jump (x, label);
14089
14090 emit_insn (gen_isync ());
14091}
14092
b52110d4
DE
14093/* Expand an atomic compare and swap operation. MEM is the memory on which
14094 to operate. OLDVAL is the old value to be compared. NEWVAL is the new
14095 value to be stored. SCRATCH is a scratch GPR. */
14096
14097void
14098rs6000_split_compare_and_swap (rtx retval, rtx mem, rtx oldval, rtx newval,
14099 rtx scratch)
14100{
14101 enum machine_mode mode = GET_MODE (mem);
14102 rtx label1, label2, x, cond = gen_rtx_REG (CCmode, CR0_REGNO);
14103
a3cb4b82 14104 emit_insn (gen_lwsync ());
b52110d4
DE
14105
14106 label1 = gen_rtx_LABEL_REF (VOIDmode, gen_label_rtx ());
14107 label2 = gen_rtx_LABEL_REF (VOIDmode, gen_label_rtx ());
14108 emit_label (XEXP (label1, 0));
14109
14110 emit_load_locked (mode, retval, mem);
14111
14112 x = gen_rtx_COMPARE (CCmode, retval, oldval);
14113 emit_insn (gen_rtx_SET (VOIDmode, cond, x));
14114
14115 x = gen_rtx_NE (VOIDmode, cond, const0_rtx);
14116 emit_unlikely_jump (x, label2);
14117
14118 emit_move_insn (scratch, newval);
14119 emit_store_conditional (mode, cond, mem, scratch);
14120
14121 x = gen_rtx_NE (VOIDmode, cond, const0_rtx);
14122 emit_unlikely_jump (x, label1);
14123
14124 emit_insn (gen_isync ());
14125 emit_label (XEXP (label2, 0));
14126}
14127
14128/* Expand an atomic test and set operation. MEM is the memory on which
14129 to operate. VAL is the value set. SCRATCH is a scratch GPR. */
14130
14131void
14132rs6000_split_lock_test_and_set (rtx retval, rtx mem, rtx val, rtx scratch)
14133{
14134 enum machine_mode mode = GET_MODE (mem);
14135 rtx label, x, cond = gen_rtx_REG (CCmode, CR0_REGNO);
14136
b52110d4
DE
14137 label = gen_rtx_LABEL_REF (VOIDmode, gen_label_rtx ());
14138 emit_label (XEXP (label, 0));
14139
14140 emit_load_locked (mode, retval, mem);
14141 emit_move_insn (scratch, val);
14142 emit_store_conditional (mode, cond, mem, scratch);
14143
14144 x = gen_rtx_NE (VOIDmode, cond, const0_rtx);
14145 emit_unlikely_jump (x, label);
14146
14147 emit_insn (gen_isync ());
14148}
14149
9fc75b97
DE
14150void
14151rs6000_expand_compare_and_swapqhi (rtx dst, rtx mem, rtx oldval, rtx newval)
14152{
14153 enum machine_mode mode = GET_MODE (mem);
14154 rtx addrSI, align, wdst, shift, mask;
14155 HOST_WIDE_INT shift_mask = mode == QImode ? 0x18 : 0x10;
14156 HOST_WIDE_INT imask = GET_MODE_MASK (mode);
14157
14158 /* Shift amount for subword relative to aligned word. */
4b49d9ce
AP
14159 addrSI = force_reg (GET_MODE (XEXP (mem, 0)), XEXP (mem, 0));
14160 addrSI = force_reg (SImode, gen_lowpart_common (SImode, addrSI));
9fc75b97
DE
14161 shift = gen_reg_rtx (SImode);
14162 emit_insn (gen_rlwinm (shift, addrSI, GEN_INT (3),
14163 GEN_INT (shift_mask)));
14164 emit_insn (gen_xorsi3 (shift, shift, GEN_INT (shift_mask)));
14165
14166 /* Shift and mask old value into position within word. */
14167 oldval = convert_modes (SImode, mode, oldval, 1);
14168 oldval = expand_binop (SImode, and_optab,
14169 oldval, GEN_INT (imask), NULL_RTX,
14170 1, OPTAB_LIB_WIDEN);
14171 emit_insn (gen_ashlsi3 (oldval, oldval, shift));
14172
14173 /* Shift and mask new value into position within word. */
14174 newval = convert_modes (SImode, mode, newval, 1);
14175 newval = expand_binop (SImode, and_optab,
14176 newval, GEN_INT (imask), NULL_RTX,
14177 1, OPTAB_LIB_WIDEN);
14178 emit_insn (gen_ashlsi3 (newval, newval, shift));
14179
14180 /* Mask for insertion. */
14181 mask = gen_reg_rtx (SImode);
14182 emit_move_insn (mask, GEN_INT (imask));
14183 emit_insn (gen_ashlsi3 (mask, mask, shift));
14184
14185 /* Address of aligned word containing subword. */
14186 align = expand_binop (Pmode, and_optab, XEXP (mem, 0), GEN_INT (-4),
14187 NULL_RTX, 1, OPTAB_LIB_WIDEN);
14188 mem = change_address (mem, SImode, align);
14189 set_mem_align (mem, 32);
14190 MEM_VOLATILE_P (mem) = 1;
14191
14192 wdst = gen_reg_rtx (SImode);
14193 emit_insn (gen_sync_compare_and_swapqhi_internal (wdst, mask,
14194 oldval, newval, mem));
14195
2725b75c
JJ
14196 /* Shift the result back. */
14197 emit_insn (gen_lshrsi3 (wdst, wdst, shift));
14198
9fc75b97
DE
14199 emit_move_insn (dst, gen_lowpart (mode, wdst));
14200}
14201
14202void
14203rs6000_split_compare_and_swapqhi (rtx dest, rtx mask,
14204 rtx oldval, rtx newval, rtx mem,
14205 rtx scratch)
14206{
14207 rtx label1, label2, x, cond = gen_rtx_REG (CCmode, CR0_REGNO);
14208
a3cb4b82 14209 emit_insn (gen_lwsync ());
9fc75b97
DE
14210 label1 = gen_rtx_LABEL_REF (VOIDmode, gen_label_rtx ());
14211 label2 = gen_rtx_LABEL_REF (VOIDmode, gen_label_rtx ());
14212 emit_label (XEXP (label1, 0));
14213
14214 emit_load_locked (SImode, scratch, mem);
14215
14216 /* Mask subword within loaded value for comparison with oldval.
14217 Use UNSPEC_AND to avoid clobber.*/
14218 emit_insn (gen_rtx_SET (SImode, dest,
14219 gen_rtx_UNSPEC (SImode,
14220 gen_rtvec (2, scratch, mask),
14221 UNSPEC_AND)));
14222
14223 x = gen_rtx_COMPARE (CCmode, dest, oldval);
14224 emit_insn (gen_rtx_SET (VOIDmode, cond, x));
14225
14226 x = gen_rtx_NE (VOIDmode, cond, const0_rtx);
14227 emit_unlikely_jump (x, label2);
14228
14229 /* Clear subword within loaded value for insertion of new value. */
14230 emit_insn (gen_rtx_SET (SImode, scratch,
14231 gen_rtx_AND (SImode,
14232 gen_rtx_NOT (SImode, mask), scratch)));
14233 emit_insn (gen_iorsi3 (scratch, scratch, newval));
14234 emit_store_conditional (SImode, cond, mem, scratch);
14235
14236 x = gen_rtx_NE (VOIDmode, cond, const0_rtx);
14237 emit_unlikely_jump (x, label1);
14238
14239 emit_insn (gen_isync ());
14240 emit_label (XEXP (label2, 0));
14241}
14242
14243
b52110d4 14244 /* Emit instructions to move SRC to DST. Called by splitters for
a9baceb1
GK
14245 multi-register moves. It will emit at most one instruction for
14246 each register that is accessed; that is, it won't emit li/lis pairs
14247 (or equivalent for 64-bit code). One of SRC or DST must be a hard
14248 register. */
46c07df8 14249
46c07df8 14250void
a9baceb1 14251rs6000_split_multireg_move (rtx dst, rtx src)
46c07df8 14252{
a9baceb1
GK
14253 /* The register number of the first register being moved. */
14254 int reg;
14255 /* The mode that is to be moved. */
14256 enum machine_mode mode;
14257 /* The mode that the move is being done in, and its size. */
14258 enum machine_mode reg_mode;
14259 int reg_mode_size;
14260 /* The number of registers that will be moved. */
14261 int nregs;
14262
14263 reg = REG_P (dst) ? REGNO (dst) : REGNO (src);
14264 mode = GET_MODE (dst);
c8b622ff 14265 nregs = hard_regno_nregs[reg][mode];
a9baceb1 14266 if (FP_REGNO_P (reg))
696e45ba
ME
14267 reg_mode = DECIMAL_FLOAT_MODE_P (mode) ? DDmode :
14268 ((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT) ? DFmode : SFmode);
a9baceb1
GK
14269 else if (ALTIVEC_REGNO_P (reg))
14270 reg_mode = V16QImode;
4f011e1e
JM
14271 else if (TARGET_E500_DOUBLE && mode == TFmode)
14272 reg_mode = DFmode;
a9baceb1
GK
14273 else
14274 reg_mode = word_mode;
14275 reg_mode_size = GET_MODE_SIZE (reg_mode);
f676971a 14276
37409796 14277 gcc_assert (reg_mode_size * nregs == GET_MODE_SIZE (mode));
f676971a 14278
a9baceb1
GK
14279 if (REG_P (src) && REG_P (dst) && (REGNO (src) < REGNO (dst)))
14280 {
14281 /* Move register range backwards, if we might have destructive
14282 overlap. */
14283 int i;
14284 for (i = nregs - 1; i >= 0; i--)
f676971a 14285 emit_insn (gen_rtx_SET (VOIDmode,
a9baceb1
GK
14286 simplify_gen_subreg (reg_mode, dst, mode,
14287 i * reg_mode_size),
14288 simplify_gen_subreg (reg_mode, src, mode,
14289 i * reg_mode_size)));
14290 }
46c07df8
HP
14291 else
14292 {
a9baceb1
GK
14293 int i;
14294 int j = -1;
14295 bool used_update = false;
46c07df8 14296
c1e55850 14297 if (MEM_P (src) && INT_REGNO_P (reg))
c4ad648e
AM
14298 {
14299 rtx breg;
3a1f863f 14300
a9baceb1
GK
14301 if (GET_CODE (XEXP (src, 0)) == PRE_INC
14302 || GET_CODE (XEXP (src, 0)) == PRE_DEC)
3a1f863f
DE
14303 {
14304 rtx delta_rtx;
a9baceb1 14305 breg = XEXP (XEXP (src, 0), 0);
c4ad648e
AM
14306 delta_rtx = (GET_CODE (XEXP (src, 0)) == PRE_INC
14307 ? GEN_INT (GET_MODE_SIZE (GET_MODE (src)))
14308 : GEN_INT (-GET_MODE_SIZE (GET_MODE (src))));
a9baceb1
GK
14309 emit_insn (TARGET_32BIT
14310 ? gen_addsi3 (breg, breg, delta_rtx)
14311 : gen_adddi3 (breg, breg, delta_rtx));
13e2e16e 14312 src = replace_equiv_address (src, breg);
3a1f863f 14313 }
d04b6e6e 14314 else if (! rs6000_offsettable_memref_p (src))
c1e55850 14315 {
13e2e16e 14316 rtx basereg;
c1e55850
GK
14317 basereg = gen_rtx_REG (Pmode, reg);
14318 emit_insn (gen_rtx_SET (VOIDmode, basereg, XEXP (src, 0)));
13e2e16e 14319 src = replace_equiv_address (src, basereg);
c1e55850 14320 }
3a1f863f 14321
0423421f
AM
14322 breg = XEXP (src, 0);
14323 if (GET_CODE (breg) == PLUS || GET_CODE (breg) == LO_SUM)
14324 breg = XEXP (breg, 0);
14325
14326 /* If the base register we are using to address memory is
14327 also a destination reg, then change that register last. */
14328 if (REG_P (breg)
14329 && REGNO (breg) >= REGNO (dst)
3a1f863f
DE
14330 && REGNO (breg) < REGNO (dst) + nregs)
14331 j = REGNO (breg) - REGNO (dst);
c4ad648e 14332 }
46c07df8 14333
a9baceb1 14334 if (GET_CODE (dst) == MEM && INT_REGNO_P (reg))
3a1f863f
DE
14335 {
14336 rtx breg;
14337
a9baceb1
GK
14338 if (GET_CODE (XEXP (dst, 0)) == PRE_INC
14339 || GET_CODE (XEXP (dst, 0)) == PRE_DEC)
3a1f863f
DE
14340 {
14341 rtx delta_rtx;
a9baceb1 14342 breg = XEXP (XEXP (dst, 0), 0);
c4ad648e
AM
14343 delta_rtx = (GET_CODE (XEXP (dst, 0)) == PRE_INC
14344 ? GEN_INT (GET_MODE_SIZE (GET_MODE (dst)))
14345 : GEN_INT (-GET_MODE_SIZE (GET_MODE (dst))));
3a1f863f
DE
14346
14347 /* We have to update the breg before doing the store.
14348 Use store with update, if available. */
14349
14350 if (TARGET_UPDATE)
14351 {
a9baceb1 14352 rtx nsrc = simplify_gen_subreg (reg_mode, src, mode, 0);
c4ad648e
AM
14353 emit_insn (TARGET_32BIT
14354 ? (TARGET_POWERPC64
14355 ? gen_movdi_si_update (breg, breg, delta_rtx, nsrc)
14356 : gen_movsi_update (breg, breg, delta_rtx, nsrc))
14357 : gen_movdi_di_update (breg, breg, delta_rtx, nsrc));
a9baceb1 14358 used_update = true;
3a1f863f
DE
14359 }
14360 else
a9baceb1
GK
14361 emit_insn (TARGET_32BIT
14362 ? gen_addsi3 (breg, breg, delta_rtx)
14363 : gen_adddi3 (breg, breg, delta_rtx));
13e2e16e 14364 dst = replace_equiv_address (dst, breg);
3a1f863f 14365 }
37409796 14366 else
d04b6e6e 14367 gcc_assert (rs6000_offsettable_memref_p (dst));
3a1f863f
DE
14368 }
14369
46c07df8 14370 for (i = 0; i < nregs; i++)
f676971a 14371 {
3a1f863f
DE
14372 /* Calculate index to next subword. */
14373 ++j;
f676971a 14374 if (j == nregs)
3a1f863f 14375 j = 0;
46c07df8 14376
112cdef5 14377 /* If compiler already emitted move of first word by
a9baceb1 14378 store with update, no need to do anything. */
3a1f863f 14379 if (j == 0 && used_update)
a9baceb1 14380 continue;
f676971a 14381
a9baceb1
GK
14382 emit_insn (gen_rtx_SET (VOIDmode,
14383 simplify_gen_subreg (reg_mode, dst, mode,
14384 j * reg_mode_size),
14385 simplify_gen_subreg (reg_mode, src, mode,
14386 j * reg_mode_size)));
3a1f863f 14387 }
46c07df8
HP
14388 }
14389}
14390
12a4e8c5 14391\f
a4f6c312
SS
14392/* This page contains routines that are used to determine what the
14393 function prologue and epilogue code will do and write them out. */
9878760c 14394
a4f6c312
SS
14395/* Return the first fixed-point register that is required to be
14396 saved. 32 if none. */
9878760c
RK
14397
14398int
863d938c 14399first_reg_to_save (void)
9878760c
RK
14400{
14401 int first_reg;
14402
14403 /* Find lowest numbered live register. */
14404 for (first_reg = 13; first_reg <= 31; first_reg++)
6fb5fa3c 14405 if (df_regs_ever_live_p (first_reg)
a38d360d 14406 && (! call_used_regs[first_reg]
1db02437 14407 || (first_reg == RS6000_PIC_OFFSET_TABLE_REGNUM
14f00213 14408 && ((DEFAULT_ABI == ABI_V4 && flag_pic != 0)
b4db40bf
JJ
14409 || (DEFAULT_ABI == ABI_DARWIN && flag_pic)
14410 || (TARGET_TOC && TARGET_MINIMAL_TOC)))))
9878760c
RK
14411 break;
14412
ee890fe2 14413#if TARGET_MACHO
93638d7a 14414 if (flag_pic
e3b5732b 14415 && crtl->uses_pic_offset_table
93638d7a 14416 && first_reg > RS6000_PIC_OFFSET_TABLE_REGNUM)
1db02437 14417 return RS6000_PIC_OFFSET_TABLE_REGNUM;
ee890fe2
SS
14418#endif
14419
9878760c
RK
14420 return first_reg;
14421}
14422
14423/* Similar, for FP regs. */
14424
14425int
863d938c 14426first_fp_reg_to_save (void)
9878760c
RK
14427{
14428 int first_reg;
14429
14430 /* Find lowest numbered live register. */
14431 for (first_reg = 14 + 32; first_reg <= 63; first_reg++)
6fb5fa3c 14432 if (df_regs_ever_live_p (first_reg))
9878760c
RK
14433 break;
14434
14435 return first_reg;
14436}
00b960c7
AH
14437
14438/* Similar, for AltiVec regs. */
14439
14440static int
863d938c 14441first_altivec_reg_to_save (void)
00b960c7
AH
14442{
14443 int i;
14444
14445 /* Stack frame remains as is unless we are in AltiVec ABI. */
14446 if (! TARGET_ALTIVEC_ABI)
14447 return LAST_ALTIVEC_REGNO + 1;
14448
22fa69da 14449 /* On Darwin, the unwind routines are compiled without
982afe02 14450 TARGET_ALTIVEC, and use save_world to save/restore the
22fa69da 14451 altivec registers when necessary. */
e3b5732b 14452 if (DEFAULT_ABI == ABI_DARWIN && crtl->calls_eh_return
22fa69da
GK
14453 && ! TARGET_ALTIVEC)
14454 return FIRST_ALTIVEC_REGNO + 20;
14455
00b960c7
AH
14456 /* Find lowest numbered live register. */
14457 for (i = FIRST_ALTIVEC_REGNO + 20; i <= LAST_ALTIVEC_REGNO; ++i)
6fb5fa3c 14458 if (df_regs_ever_live_p (i))
00b960c7
AH
14459 break;
14460
14461 return i;
14462}
14463
14464/* Return a 32-bit mask of the AltiVec registers we need to set in
14465 VRSAVE. Bit n of the return value is 1 if Vn is live. The MSB in
14466 the 32-bit word is 0. */
14467
14468static unsigned int
863d938c 14469compute_vrsave_mask (void)
00b960c7
AH
14470{
14471 unsigned int i, mask = 0;
14472
22fa69da 14473 /* On Darwin, the unwind routines are compiled without
982afe02 14474 TARGET_ALTIVEC, and use save_world to save/restore the
22fa69da 14475 call-saved altivec registers when necessary. */
e3b5732b 14476 if (DEFAULT_ABI == ABI_DARWIN && crtl->calls_eh_return
22fa69da
GK
14477 && ! TARGET_ALTIVEC)
14478 mask |= 0xFFF;
14479
00b960c7
AH
14480 /* First, find out if we use _any_ altivec registers. */
14481 for (i = FIRST_ALTIVEC_REGNO; i <= LAST_ALTIVEC_REGNO; ++i)
6fb5fa3c 14482 if (df_regs_ever_live_p (i))
00b960c7
AH
14483 mask |= ALTIVEC_REG_BIT (i);
14484
14485 if (mask == 0)
14486 return mask;
14487
00b960c7
AH
14488 /* Next, remove the argument registers from the set. These must
14489 be in the VRSAVE mask set by the caller, so we don't need to add
14490 them in again. More importantly, the mask we compute here is
14491 used to generate CLOBBERs in the set_vrsave insn, and we do not
14492 wish the argument registers to die. */
38173d38 14493 for (i = crtl->args.info.vregno - 1; i >= ALTIVEC_ARG_MIN_REG; --i)
00b960c7
AH
14494 mask &= ~ALTIVEC_REG_BIT (i);
14495
14496 /* Similarly, remove the return value from the set. */
14497 {
14498 bool yes = false;
14499 diddle_return_value (is_altivec_return_reg, &yes);
14500 if (yes)
14501 mask &= ~ALTIVEC_REG_BIT (ALTIVEC_ARG_RETURN);
14502 }
14503
14504 return mask;
14505}
14506
d62294f5 14507/* For a very restricted set of circumstances, we can cut down the
f57fe068
AM
14508 size of prologues/epilogues by calling our own save/restore-the-world
14509 routines. */
d62294f5
FJ
14510
14511static void
f57fe068
AM
14512compute_save_world_info (rs6000_stack_t *info_ptr)
14513{
14514 info_ptr->world_save_p = 1;
14515 info_ptr->world_save_p
14516 = (WORLD_SAVE_P (info_ptr)
14517 && DEFAULT_ABI == ABI_DARWIN
e3b5732b 14518 && ! (cfun->calls_setjmp && flag_exceptions)
f57fe068
AM
14519 && info_ptr->first_fp_reg_save == FIRST_SAVED_FP_REGNO
14520 && info_ptr->first_gp_reg_save == FIRST_SAVED_GP_REGNO
14521 && info_ptr->first_altivec_reg_save == FIRST_SAVED_ALTIVEC_REGNO
14522 && info_ptr->cr_save_p);
f676971a 14523
d62294f5
FJ
14524 /* This will not work in conjunction with sibcalls. Make sure there
14525 are none. (This check is expensive, but seldom executed.) */
f57fe068 14526 if (WORLD_SAVE_P (info_ptr))
f676971a 14527 {
d62294f5
FJ
14528 rtx insn;
14529 for ( insn = get_last_insn_anywhere (); insn; insn = PREV_INSN (insn))
c4ad648e
AM
14530 if ( GET_CODE (insn) == CALL_INSN
14531 && SIBLING_CALL_P (insn))
14532 {
14533 info_ptr->world_save_p = 0;
14534 break;
14535 }
d62294f5 14536 }
f676971a 14537
f57fe068 14538 if (WORLD_SAVE_P (info_ptr))
d62294f5
FJ
14539 {
14540 /* Even if we're not touching VRsave, make sure there's room on the
14541 stack for it, if it looks like we're calling SAVE_WORLD, which
c4ad648e 14542 will attempt to save it. */
d62294f5
FJ
14543 info_ptr->vrsave_size = 4;
14544
298ac1dd
AP
14545 /* If we are going to save the world, we need to save the link register too. */
14546 info_ptr->lr_save_p = 1;
14547
d62294f5
FJ
14548 /* "Save" the VRsave register too if we're saving the world. */
14549 if (info_ptr->vrsave_mask == 0)
c4ad648e 14550 info_ptr->vrsave_mask = compute_vrsave_mask ();
d62294f5
FJ
14551
14552 /* Because the Darwin register save/restore routines only handle
c4ad648e 14553 F14 .. F31 and V20 .. V31 as per the ABI, perform a consistency
992d08b1 14554 check. */
37409796
NS
14555 gcc_assert (info_ptr->first_fp_reg_save >= FIRST_SAVED_FP_REGNO
14556 && (info_ptr->first_altivec_reg_save
14557 >= FIRST_SAVED_ALTIVEC_REGNO));
d62294f5 14558 }
f676971a 14559 return;
d62294f5
FJ
14560}
14561
14562
00b960c7 14563static void
a2369ed3 14564is_altivec_return_reg (rtx reg, void *xyes)
00b960c7
AH
14565{
14566 bool *yes = (bool *) xyes;
14567 if (REGNO (reg) == ALTIVEC_ARG_RETURN)
14568 *yes = true;
14569}
14570
4697a36c
MM
14571\f
14572/* Calculate the stack information for the current function. This is
14573 complicated by having two separate calling sequences, the AIX calling
14574 sequence and the V.4 calling sequence.
14575
592696dd 14576 AIX (and Darwin/Mac OS X) stack frames look like:
a260abc9 14577 32-bit 64-bit
4697a36c 14578 SP----> +---------------------------------------+
a260abc9 14579 | back chain to caller | 0 0
4697a36c 14580 +---------------------------------------+
a260abc9 14581 | saved CR | 4 8 (8-11)
4697a36c 14582 +---------------------------------------+
a260abc9 14583 | saved LR | 8 16
4697a36c 14584 +---------------------------------------+
a260abc9 14585 | reserved for compilers | 12 24
4697a36c 14586 +---------------------------------------+
a260abc9 14587 | reserved for binders | 16 32
4697a36c 14588 +---------------------------------------+
a260abc9 14589 | saved TOC pointer | 20 40
4697a36c 14590 +---------------------------------------+
a260abc9 14591 | Parameter save area (P) | 24 48
4697a36c 14592 +---------------------------------------+
a260abc9 14593 | Alloca space (A) | 24+P etc.
802a0058 14594 +---------------------------------------+
a7df97e6 14595 | Local variable space (L) | 24+P+A
4697a36c 14596 +---------------------------------------+
a7df97e6 14597 | Float/int conversion temporary (X) | 24+P+A+L
4697a36c 14598 +---------------------------------------+
00b960c7
AH
14599 | Save area for AltiVec registers (W) | 24+P+A+L+X
14600 +---------------------------------------+
14601 | AltiVec alignment padding (Y) | 24+P+A+L+X+W
14602 +---------------------------------------+
14603 | Save area for VRSAVE register (Z) | 24+P+A+L+X+W+Y
4697a36c 14604 +---------------------------------------+
00b960c7
AH
14605 | Save area for GP registers (G) | 24+P+A+X+L+X+W+Y+Z
14606 +---------------------------------------+
14607 | Save area for FP registers (F) | 24+P+A+X+L+X+W+Y+Z+G
4697a36c
MM
14608 +---------------------------------------+
14609 old SP->| back chain to caller's caller |
14610 +---------------------------------------+
14611
5376a30c
KR
14612 The required alignment for AIX configurations is two words (i.e., 8
14613 or 16 bytes).
14614
14615
4697a36c
MM
14616 V.4 stack frames look like:
14617
14618 SP----> +---------------------------------------+
14619 | back chain to caller | 0
14620 +---------------------------------------+
5eb387b8 14621 | caller's saved LR | 4
4697a36c
MM
14622 +---------------------------------------+
14623 | Parameter save area (P) | 8
14624 +---------------------------------------+
a7df97e6 14625 | Alloca space (A) | 8+P
f676971a 14626 +---------------------------------------+
a7df97e6 14627 | Varargs save area (V) | 8+P+A
f676971a 14628 +---------------------------------------+
a7df97e6 14629 | Local variable space (L) | 8+P+A+V
f676971a 14630 +---------------------------------------+
a7df97e6 14631 | Float/int conversion temporary (X) | 8+P+A+V+L
4697a36c 14632 +---------------------------------------+
00b960c7
AH
14633 | Save area for AltiVec registers (W) | 8+P+A+V+L+X
14634 +---------------------------------------+
14635 | AltiVec alignment padding (Y) | 8+P+A+V+L+X+W
14636 +---------------------------------------+
14637 | Save area for VRSAVE register (Z) | 8+P+A+V+L+X+W+Y
14638 +---------------------------------------+
c4ad648e
AM
14639 | SPE: area for 64-bit GP registers |
14640 +---------------------------------------+
14641 | SPE alignment padding |
14642 +---------------------------------------+
00b960c7 14643 | saved CR (C) | 8+P+A+V+L+X+W+Y+Z
f676971a 14644 +---------------------------------------+
00b960c7 14645 | Save area for GP registers (G) | 8+P+A+V+L+X+W+Y+Z+C
f676971a 14646 +---------------------------------------+
00b960c7 14647 | Save area for FP registers (F) | 8+P+A+V+L+X+W+Y+Z+C+G
4697a36c
MM
14648 +---------------------------------------+
14649 old SP->| back chain to caller's caller |
14650 +---------------------------------------+
b6c9286a 14651
5376a30c
KR
14652 The required alignment for V.4 is 16 bytes, or 8 bytes if -meabi is
14653 given. (But note below and in sysv4.h that we require only 8 and
14654 may round up the size of our stack frame anyways. The historical
14655 reason is early versions of powerpc-linux which didn't properly
14656 align the stack at program startup. A happy side-effect is that
14657 -mno-eabi libraries can be used with -meabi programs.)
14658
50d440bc 14659 The EABI configuration defaults to the V.4 layout. However,
5376a30c
KR
14660 the stack alignment requirements may differ. If -mno-eabi is not
14661 given, the required stack alignment is 8 bytes; if -mno-eabi is
14662 given, the required alignment is 16 bytes. (But see V.4 comment
14663 above.) */
4697a36c 14664
61b2fbe7
MM
14665#ifndef ABI_STACK_BOUNDARY
14666#define ABI_STACK_BOUNDARY STACK_BOUNDARY
14667#endif
14668
d1d0c603 14669static rs6000_stack_t *
863d938c 14670rs6000_stack_info (void)
4697a36c 14671{
022123e6 14672 static rs6000_stack_t info;
4697a36c 14673 rs6000_stack_t *info_ptr = &info;
327e5343 14674 int reg_size = TARGET_32BIT ? 4 : 8;
83720594 14675 int ehrd_size;
64045029 14676 int save_align;
8070c91a 14677 int first_gp;
44688022 14678 HOST_WIDE_INT non_fixed_size;
4697a36c 14679
022123e6 14680 memset (&info, 0, sizeof (info));
4697a36c 14681
c19de7aa
AH
14682 if (TARGET_SPE)
14683 {
14684 /* Cache value so we don't rescan instruction chain over and over. */
9b7b447f 14685 if (cfun->machine->insn_chain_scanned_p == 0)
b5a5beb9
AH
14686 cfun->machine->insn_chain_scanned_p
14687 = spe_func_has_64bit_regs_p () + 1;
14688 info_ptr->spe_64bit_regs_used = cfun->machine->insn_chain_scanned_p - 1;
c19de7aa
AH
14689 }
14690
a4f6c312 14691 /* Select which calling sequence. */
178274da 14692 info_ptr->abi = DEFAULT_ABI;
9878760c 14693
a4f6c312 14694 /* Calculate which registers need to be saved & save area size. */
4697a36c 14695 info_ptr->first_gp_reg_save = first_reg_to_save ();
f676971a 14696 /* Assume that we will have to save RS6000_PIC_OFFSET_TABLE_REGNUM,
8070c91a
DJ
14697 even if it currently looks like we won't. Reload may need it to
14698 get at a constant; if so, it will have already created a constant
14699 pool entry for it. */
2bfcf297 14700 if (((TARGET_TOC && TARGET_MINIMAL_TOC)
178274da
AM
14701 || (flag_pic == 1 && DEFAULT_ABI == ABI_V4)
14702 || (flag_pic && DEFAULT_ABI == ABI_DARWIN))
e3b5732b 14703 && crtl->uses_const_pool
1db02437 14704 && info_ptr->first_gp_reg_save > RS6000_PIC_OFFSET_TABLE_REGNUM)
8070c91a 14705 first_gp = RS6000_PIC_OFFSET_TABLE_REGNUM;
906fb125 14706 else
8070c91a
DJ
14707 first_gp = info_ptr->first_gp_reg_save;
14708
14709 info_ptr->gp_size = reg_size * (32 - first_gp);
4697a36c 14710
a3170dc6
AH
14711 /* For the SPE, we have an additional upper 32-bits on each GPR.
14712 Ideally we should save the entire 64-bits only when the upper
14713 half is used in SIMD instructions. Since we only record
14714 registers live (not the size they are used in), this proves
14715 difficult because we'd have to traverse the instruction chain at
14716 the right time, taking reload into account. This is a real pain,
c19de7aa
AH
14717 so we opt to save the GPRs in 64-bits always if but one register
14718 gets used in 64-bits. Otherwise, all the registers in the frame
14719 get saved in 32-bits.
a3170dc6 14720
c19de7aa 14721 So... since when we save all GPRs (except the SP) in 64-bits, the
a3170dc6 14722 traditional GP save area will be empty. */
c19de7aa 14723 if (TARGET_SPE_ABI && info_ptr->spe_64bit_regs_used != 0)
a3170dc6
AH
14724 info_ptr->gp_size = 0;
14725
4697a36c
MM
14726 info_ptr->first_fp_reg_save = first_fp_reg_to_save ();
14727 info_ptr->fp_size = 8 * (64 - info_ptr->first_fp_reg_save);
14728
00b960c7
AH
14729 info_ptr->first_altivec_reg_save = first_altivec_reg_to_save ();
14730 info_ptr->altivec_size = 16 * (LAST_ALTIVEC_REGNO + 1
14731 - info_ptr->first_altivec_reg_save);
14732
592696dd 14733 /* Does this function call anything? */
71f123ca
FS
14734 info_ptr->calls_p = (! current_function_is_leaf
14735 || cfun->machine->ra_needs_full_frame);
b6c9286a 14736
a4f6c312 14737 /* Determine if we need to save the link register. */
022123e6 14738 if ((DEFAULT_ABI == ABI_AIX
e3b5732b 14739 && crtl->profile
022123e6 14740 && !TARGET_PROFILE_KERNEL)
4697a36c
MM
14741#ifdef TARGET_RELOCATABLE
14742 || (TARGET_RELOCATABLE && (get_pool_size () != 0))
14743#endif
14744 || (info_ptr->first_fp_reg_save != 64
14745 && !FP_SAVE_INLINE (info_ptr->first_fp_reg_save))
e3b5732b 14746 || (DEFAULT_ABI == ABI_V4 && cfun->calls_alloca)
022123e6
AM
14747 || info_ptr->calls_p
14748 || rs6000_ra_ever_killed ())
4697a36c
MM
14749 {
14750 info_ptr->lr_save_p = 1;
1de43f85 14751 df_set_regs_ever_live (LR_REGNO, true);
4697a36c
MM
14752 }
14753
9ebbca7d 14754 /* Determine if we need to save the condition code registers. */
6fb5fa3c
DB
14755 if (df_regs_ever_live_p (CR2_REGNO)
14756 || df_regs_ever_live_p (CR3_REGNO)
14757 || df_regs_ever_live_p (CR4_REGNO))
4697a36c
MM
14758 {
14759 info_ptr->cr_save_p = 1;
178274da 14760 if (DEFAULT_ABI == ABI_V4)
4697a36c
MM
14761 info_ptr->cr_size = reg_size;
14762 }
14763
83720594
RH
14764 /* If the current function calls __builtin_eh_return, then we need
14765 to allocate stack space for registers that will hold data for
14766 the exception handler. */
e3b5732b 14767 if (crtl->calls_eh_return)
83720594
RH
14768 {
14769 unsigned int i;
14770 for (i = 0; EH_RETURN_DATA_REGNO (i) != INVALID_REGNUM; ++i)
14771 continue;
a3170dc6
AH
14772
14773 /* SPE saves EH registers in 64-bits. */
c19de7aa
AH
14774 ehrd_size = i * (TARGET_SPE_ABI
14775 && info_ptr->spe_64bit_regs_used != 0
14776 ? UNITS_PER_SPE_WORD : UNITS_PER_WORD);
83720594
RH
14777 }
14778 else
14779 ehrd_size = 0;
14780
592696dd 14781 /* Determine various sizes. */
4697a36c
MM
14782 info_ptr->reg_size = reg_size;
14783 info_ptr->fixed_size = RS6000_SAVE_AREA;
189e03e3 14784 info_ptr->vars_size = RS6000_ALIGN (get_frame_size (), 8);
38173d38 14785 info_ptr->parm_size = RS6000_ALIGN (crtl->outgoing_args_size,
03e007d7 14786 TARGET_ALTIVEC ? 16 : 8);
7d5175e1
JJ
14787 if (FRAME_GROWS_DOWNWARD)
14788 info_ptr->vars_size
5b667039
JJ
14789 += RS6000_ALIGN (info_ptr->fixed_size + info_ptr->vars_size
14790 + info_ptr->parm_size,
7d5175e1 14791 ABI_STACK_BOUNDARY / BITS_PER_UNIT)
5b667039
JJ
14792 - (info_ptr->fixed_size + info_ptr->vars_size
14793 + info_ptr->parm_size);
00b960c7 14794
c19de7aa 14795 if (TARGET_SPE_ABI && info_ptr->spe_64bit_regs_used != 0)
8070c91a 14796 info_ptr->spe_gp_size = 8 * (32 - first_gp);
a3170dc6
AH
14797 else
14798 info_ptr->spe_gp_size = 0;
14799
4d774ff8
HP
14800 if (TARGET_ALTIVEC_ABI)
14801 info_ptr->vrsave_mask = compute_vrsave_mask ();
00b960c7 14802 else
4d774ff8
HP
14803 info_ptr->vrsave_mask = 0;
14804
14805 if (TARGET_ALTIVEC_VRSAVE && info_ptr->vrsave_mask)
14806 info_ptr->vrsave_size = 4;
14807 else
14808 info_ptr->vrsave_size = 0;
b6c9286a 14809
d62294f5
FJ
14810 compute_save_world_info (info_ptr);
14811
592696dd 14812 /* Calculate the offsets. */
178274da 14813 switch (DEFAULT_ABI)
4697a36c 14814 {
b6c9286a 14815 case ABI_NONE:
24d304eb 14816 default:
37409796 14817 gcc_unreachable ();
b6c9286a
MM
14818
14819 case ABI_AIX:
ee890fe2 14820 case ABI_DARWIN:
b6c9286a
MM
14821 info_ptr->fp_save_offset = - info_ptr->fp_size;
14822 info_ptr->gp_save_offset = info_ptr->fp_save_offset - info_ptr->gp_size;
00b960c7
AH
14823
14824 if (TARGET_ALTIVEC_ABI)
14825 {
14826 info_ptr->vrsave_save_offset
14827 = info_ptr->gp_save_offset - info_ptr->vrsave_size;
14828
982afe02 14829 /* Align stack so vector save area is on a quadword boundary.
9278121c 14830 The padding goes above the vectors. */
00b960c7
AH
14831 if (info_ptr->altivec_size != 0)
14832 info_ptr->altivec_padding_size
9278121c 14833 = info_ptr->vrsave_save_offset & 0xF;
00b960c7
AH
14834 else
14835 info_ptr->altivec_padding_size = 0;
14836
14837 info_ptr->altivec_save_offset
14838 = info_ptr->vrsave_save_offset
14839 - info_ptr->altivec_padding_size
14840 - info_ptr->altivec_size;
9278121c
GK
14841 gcc_assert (info_ptr->altivec_size == 0
14842 || info_ptr->altivec_save_offset % 16 == 0);
00b960c7
AH
14843
14844 /* Adjust for AltiVec case. */
14845 info_ptr->ehrd_offset = info_ptr->altivec_save_offset - ehrd_size;
14846 }
14847 else
14848 info_ptr->ehrd_offset = info_ptr->gp_save_offset - ehrd_size;
a260abc9
DE
14849 info_ptr->cr_save_offset = reg_size; /* first word when 64-bit. */
14850 info_ptr->lr_save_offset = 2*reg_size;
24d304eb
RK
14851 break;
14852
14853 case ABI_V4:
b6c9286a
MM
14854 info_ptr->fp_save_offset = - info_ptr->fp_size;
14855 info_ptr->gp_save_offset = info_ptr->fp_save_offset - info_ptr->gp_size;
a7df97e6 14856 info_ptr->cr_save_offset = info_ptr->gp_save_offset - info_ptr->cr_size;
00b960c7 14857
c19de7aa 14858 if (TARGET_SPE_ABI && info_ptr->spe_64bit_regs_used != 0)
c4ad648e
AM
14859 {
14860 /* Align stack so SPE GPR save area is aligned on a
14861 double-word boundary. */
f78c3290 14862 if (info_ptr->spe_gp_size != 0 && info_ptr->cr_save_offset != 0)
c4ad648e
AM
14863 info_ptr->spe_padding_size
14864 = 8 - (-info_ptr->cr_save_offset % 8);
14865 else
14866 info_ptr->spe_padding_size = 0;
14867
14868 info_ptr->spe_gp_save_offset
14869 = info_ptr->cr_save_offset
14870 - info_ptr->spe_padding_size
14871 - info_ptr->spe_gp_size;
14872
14873 /* Adjust for SPE case. */
022123e6 14874 info_ptr->ehrd_offset = info_ptr->spe_gp_save_offset;
c4ad648e 14875 }
a3170dc6 14876 else if (TARGET_ALTIVEC_ABI)
00b960c7
AH
14877 {
14878 info_ptr->vrsave_save_offset
14879 = info_ptr->cr_save_offset - info_ptr->vrsave_size;
14880
14881 /* Align stack so vector save area is on a quadword boundary. */
14882 if (info_ptr->altivec_size != 0)
14883 info_ptr->altivec_padding_size
14884 = 16 - (-info_ptr->vrsave_save_offset % 16);
14885 else
14886 info_ptr->altivec_padding_size = 0;
14887
14888 info_ptr->altivec_save_offset
14889 = info_ptr->vrsave_save_offset
14890 - info_ptr->altivec_padding_size
14891 - info_ptr->altivec_size;
14892
14893 /* Adjust for AltiVec case. */
022123e6 14894 info_ptr->ehrd_offset = info_ptr->altivec_save_offset;
00b960c7
AH
14895 }
14896 else
022123e6
AM
14897 info_ptr->ehrd_offset = info_ptr->cr_save_offset;
14898 info_ptr->ehrd_offset -= ehrd_size;
b6c9286a
MM
14899 info_ptr->lr_save_offset = reg_size;
14900 break;
4697a36c
MM
14901 }
14902
64045029 14903 save_align = (TARGET_ALTIVEC_ABI || DEFAULT_ABI == ABI_DARWIN) ? 16 : 8;
00b960c7
AH
14904 info_ptr->save_size = RS6000_ALIGN (info_ptr->fp_size
14905 + info_ptr->gp_size
14906 + info_ptr->altivec_size
14907 + info_ptr->altivec_padding_size
a3170dc6
AH
14908 + info_ptr->spe_gp_size
14909 + info_ptr->spe_padding_size
00b960c7
AH
14910 + ehrd_size
14911 + info_ptr->cr_size
022123e6 14912 + info_ptr->vrsave_size,
64045029 14913 save_align);
00b960c7 14914
44688022 14915 non_fixed_size = (info_ptr->vars_size
ff381587 14916 + info_ptr->parm_size
5b667039 14917 + info_ptr->save_size);
ff381587 14918
44688022
AM
14919 info_ptr->total_size = RS6000_ALIGN (non_fixed_size + info_ptr->fixed_size,
14920 ABI_STACK_BOUNDARY / BITS_PER_UNIT);
ff381587
MM
14921
14922 /* Determine if we need to allocate any stack frame:
14923
a4f6c312
SS
14924 For AIX we need to push the stack if a frame pointer is needed
14925 (because the stack might be dynamically adjusted), if we are
14926 debugging, if we make calls, or if the sum of fp_save, gp_save,
14927 and local variables are more than the space needed to save all
14928 non-volatile registers: 32-bit: 18*8 + 19*4 = 220 or 64-bit: 18*8
14929 + 18*8 = 288 (GPR13 reserved).
ff381587 14930
a4f6c312
SS
14931 For V.4 we don't have the stack cushion that AIX uses, but assume
14932 that the debugger can handle stackless frames. */
ff381587
MM
14933
14934 if (info_ptr->calls_p)
14935 info_ptr->push_p = 1;
14936
178274da 14937 else if (DEFAULT_ABI == ABI_V4)
44688022 14938 info_ptr->push_p = non_fixed_size != 0;
ff381587 14939
178274da
AM
14940 else if (frame_pointer_needed)
14941 info_ptr->push_p = 1;
14942
14943 else if (TARGET_XCOFF && write_symbols != NO_DEBUG)
14944 info_ptr->push_p = 1;
14945
ff381587 14946 else
44688022 14947 info_ptr->push_p = non_fixed_size > (TARGET_32BIT ? 220 : 288);
ff381587 14948
a4f6c312 14949 /* Zero offsets if we're not saving those registers. */
8dda1a21 14950 if (info_ptr->fp_size == 0)
4697a36c
MM
14951 info_ptr->fp_save_offset = 0;
14952
8dda1a21 14953 if (info_ptr->gp_size == 0)
4697a36c
MM
14954 info_ptr->gp_save_offset = 0;
14955
00b960c7
AH
14956 if (! TARGET_ALTIVEC_ABI || info_ptr->altivec_size == 0)
14957 info_ptr->altivec_save_offset = 0;
14958
14959 if (! TARGET_ALTIVEC_ABI || info_ptr->vrsave_mask == 0)
14960 info_ptr->vrsave_save_offset = 0;
14961
c19de7aa
AH
14962 if (! TARGET_SPE_ABI
14963 || info_ptr->spe_64bit_regs_used == 0
14964 || info_ptr->spe_gp_size == 0)
a3170dc6
AH
14965 info_ptr->spe_gp_save_offset = 0;
14966
c81fc13e 14967 if (! info_ptr->lr_save_p)
4697a36c
MM
14968 info_ptr->lr_save_offset = 0;
14969
c81fc13e 14970 if (! info_ptr->cr_save_p)
4697a36c
MM
14971 info_ptr->cr_save_offset = 0;
14972
14973 return info_ptr;
14974}
14975
c19de7aa
AH
14976/* Return true if the current function uses any GPRs in 64-bit SIMD
14977 mode. */
14978
14979static bool
863d938c 14980spe_func_has_64bit_regs_p (void)
c19de7aa
AH
14981{
14982 rtx insns, insn;
14983
14984 /* Functions that save and restore all the call-saved registers will
14985 need to save/restore the registers in 64-bits. */
e3b5732b
JH
14986 if (crtl->calls_eh_return
14987 || cfun->calls_setjmp
14988 || crtl->has_nonlocal_goto)
c19de7aa
AH
14989 return true;
14990
14991 insns = get_insns ();
14992
14993 for (insn = NEXT_INSN (insns); insn != NULL_RTX; insn = NEXT_INSN (insn))
14994 {
14995 if (INSN_P (insn))
14996 {
14997 rtx i;
14998
b5a5beb9
AH
14999 /* FIXME: This should be implemented with attributes...
15000
15001 (set_attr "spe64" "true")....then,
15002 if (get_spe64(insn)) return true;
15003
15004 It's the only reliable way to do the stuff below. */
15005
c19de7aa 15006 i = PATTERN (insn);
f82f556d
AH
15007 if (GET_CODE (i) == SET)
15008 {
15009 enum machine_mode mode = GET_MODE (SET_SRC (i));
15010
15011 if (SPE_VECTOR_MODE (mode))
15012 return true;
4f011e1e 15013 if (TARGET_E500_DOUBLE && (mode == DFmode || mode == TFmode))
f82f556d
AH
15014 return true;
15015 }
c19de7aa
AH
15016 }
15017 }
15018
15019 return false;
15020}
15021
d1d0c603 15022static void
a2369ed3 15023debug_stack_info (rs6000_stack_t *info)
9878760c 15024{
d330fd93 15025 const char *abi_string;
24d304eb 15026
c81fc13e 15027 if (! info)
4697a36c
MM
15028 info = rs6000_stack_info ();
15029
15030 fprintf (stderr, "\nStack information for function %s:\n",
15031 ((current_function_decl && DECL_NAME (current_function_decl))
15032 ? IDENTIFIER_POINTER (DECL_NAME (current_function_decl))
15033 : "<unknown>"));
15034
24d304eb
RK
15035 switch (info->abi)
15036 {
b6c9286a
MM
15037 default: abi_string = "Unknown"; break;
15038 case ABI_NONE: abi_string = "NONE"; break;
50d440bc 15039 case ABI_AIX: abi_string = "AIX"; break;
ee890fe2 15040 case ABI_DARWIN: abi_string = "Darwin"; break;
b6c9286a 15041 case ABI_V4: abi_string = "V.4"; break;
24d304eb
RK
15042 }
15043
15044 fprintf (stderr, "\tABI = %5s\n", abi_string);
15045
00b960c7
AH
15046 if (TARGET_ALTIVEC_ABI)
15047 fprintf (stderr, "\tALTIVEC ABI extensions enabled.\n");
15048
a3170dc6
AH
15049 if (TARGET_SPE_ABI)
15050 fprintf (stderr, "\tSPE ABI extensions enabled.\n");
15051
4697a36c
MM
15052 if (info->first_gp_reg_save != 32)
15053 fprintf (stderr, "\tfirst_gp_reg_save = %5d\n", info->first_gp_reg_save);
15054
15055 if (info->first_fp_reg_save != 64)
15056 fprintf (stderr, "\tfirst_fp_reg_save = %5d\n", info->first_fp_reg_save);
9878760c 15057
00b960c7
AH
15058 if (info->first_altivec_reg_save <= LAST_ALTIVEC_REGNO)
15059 fprintf (stderr, "\tfirst_altivec_reg_save = %5d\n",
15060 info->first_altivec_reg_save);
15061
4697a36c
MM
15062 if (info->lr_save_p)
15063 fprintf (stderr, "\tlr_save_p = %5d\n", info->lr_save_p);
9878760c 15064
4697a36c
MM
15065 if (info->cr_save_p)
15066 fprintf (stderr, "\tcr_save_p = %5d\n", info->cr_save_p);
15067
00b960c7
AH
15068 if (info->vrsave_mask)
15069 fprintf (stderr, "\tvrsave_mask = 0x%x\n", info->vrsave_mask);
15070
4697a36c
MM
15071 if (info->push_p)
15072 fprintf (stderr, "\tpush_p = %5d\n", info->push_p);
15073
15074 if (info->calls_p)
15075 fprintf (stderr, "\tcalls_p = %5d\n", info->calls_p);
15076
4697a36c
MM
15077 if (info->gp_save_offset)
15078 fprintf (stderr, "\tgp_save_offset = %5d\n", info->gp_save_offset);
15079
15080 if (info->fp_save_offset)
15081 fprintf (stderr, "\tfp_save_offset = %5d\n", info->fp_save_offset);
15082
00b960c7
AH
15083 if (info->altivec_save_offset)
15084 fprintf (stderr, "\taltivec_save_offset = %5d\n",
15085 info->altivec_save_offset);
15086
a3170dc6
AH
15087 if (info->spe_gp_save_offset)
15088 fprintf (stderr, "\tspe_gp_save_offset = %5d\n",
15089 info->spe_gp_save_offset);
15090
00b960c7
AH
15091 if (info->vrsave_save_offset)
15092 fprintf (stderr, "\tvrsave_save_offset = %5d\n",
15093 info->vrsave_save_offset);
15094
4697a36c
MM
15095 if (info->lr_save_offset)
15096 fprintf (stderr, "\tlr_save_offset = %5d\n", info->lr_save_offset);
15097
15098 if (info->cr_save_offset)
15099 fprintf (stderr, "\tcr_save_offset = %5d\n", info->cr_save_offset);
15100
15101 if (info->varargs_save_offset)
15102 fprintf (stderr, "\tvarargs_save_offset = %5d\n", info->varargs_save_offset);
15103
15104 if (info->total_size)
d1d0c603
JJ
15105 fprintf (stderr, "\ttotal_size = "HOST_WIDE_INT_PRINT_DEC"\n",
15106 info->total_size);
4697a36c 15107
4697a36c 15108 if (info->vars_size)
d1d0c603
JJ
15109 fprintf (stderr, "\tvars_size = "HOST_WIDE_INT_PRINT_DEC"\n",
15110 info->vars_size);
4697a36c
MM
15111
15112 if (info->parm_size)
15113 fprintf (stderr, "\tparm_size = %5d\n", info->parm_size);
15114
15115 if (info->fixed_size)
15116 fprintf (stderr, "\tfixed_size = %5d\n", info->fixed_size);
15117
15118 if (info->gp_size)
15119 fprintf (stderr, "\tgp_size = %5d\n", info->gp_size);
15120
a3170dc6
AH
15121 if (info->spe_gp_size)
15122 fprintf (stderr, "\tspe_gp_size = %5d\n", info->spe_gp_size);
15123
4697a36c
MM
15124 if (info->fp_size)
15125 fprintf (stderr, "\tfp_size = %5d\n", info->fp_size);
15126
00b960c7
AH
15127 if (info->altivec_size)
15128 fprintf (stderr, "\taltivec_size = %5d\n", info->altivec_size);
15129
15130 if (info->vrsave_size)
15131 fprintf (stderr, "\tvrsave_size = %5d\n", info->vrsave_size);
15132
15133 if (info->altivec_padding_size)
15134 fprintf (stderr, "\taltivec_padding_size= %5d\n",
15135 info->altivec_padding_size);
15136
a3170dc6
AH
15137 if (info->spe_padding_size)
15138 fprintf (stderr, "\tspe_padding_size = %5d\n",
15139 info->spe_padding_size);
15140
4697a36c
MM
15141 if (info->cr_size)
15142 fprintf (stderr, "\tcr_size = %5d\n", info->cr_size);
15143
15144 if (info->save_size)
15145 fprintf (stderr, "\tsave_size = %5d\n", info->save_size);
15146
15147 if (info->reg_size != 4)
15148 fprintf (stderr, "\treg_size = %5d\n", info->reg_size);
15149
15150 fprintf (stderr, "\n");
9878760c 15151}
71f123ca
FS
15152
15153rtx
a2369ed3 15154rs6000_return_addr (int count, rtx frame)
71f123ca 15155{
a4f6c312
SS
15156 /* Currently we don't optimize very well between prolog and body
15157 code and for PIC code the code can be actually quite bad, so
15158 don't try to be too clever here. */
f1384257 15159 if (count != 0 || (DEFAULT_ABI != ABI_AIX && flag_pic))
71f123ca
FS
15160 {
15161 cfun->machine->ra_needs_full_frame = 1;
8ac61af7
RK
15162
15163 return
15164 gen_rtx_MEM
15165 (Pmode,
15166 memory_address
15167 (Pmode,
15168 plus_constant (copy_to_reg
15169 (gen_rtx_MEM (Pmode,
15170 memory_address (Pmode, frame))),
15171 RETURN_ADDRESS_OFFSET)));
71f123ca
FS
15172 }
15173
8c29550d 15174 cfun->machine->ra_need_lr = 1;
1de43f85 15175 return get_hard_reg_initial_val (Pmode, LR_REGNO);
71f123ca
FS
15176}
15177
5e1bf043
DJ
15178/* Say whether a function is a candidate for sibcall handling or not.
15179 We do not allow indirect calls to be optimized into sibling calls.
15180 Also, we can't do it if there are any vector parameters; there's
15181 nowhere to put the VRsave code so it works; note that functions with
15182 vector parameters are required to have a prototype, so the argument
15183 type info must be available here. (The tail recursion case can work
15184 with vector parameters, but there's no way to distinguish here.) */
4977bab6 15185static bool
a2369ed3 15186rs6000_function_ok_for_sibcall (tree decl, tree exp ATTRIBUTE_UNUSED)
5e1bf043
DJ
15187{
15188 tree type;
4977bab6 15189 if (decl)
5e1bf043
DJ
15190 {
15191 if (TARGET_ALTIVEC_VRSAVE)
c4ad648e 15192 {
4977bab6 15193 for (type = TYPE_ARG_TYPES (TREE_TYPE (decl));
5e1bf043
DJ
15194 type; type = TREE_CHAIN (type))
15195 {
c15b529f 15196 if (TREE_CODE (TREE_VALUE (type)) == VECTOR_TYPE)
4977bab6 15197 return false;
5e1bf043 15198 }
c4ad648e 15199 }
5e1bf043 15200 if (DEFAULT_ABI == ABI_DARWIN
8aa19d95
JJ
15201 || ((*targetm.binds_local_p) (decl)
15202 && (DEFAULT_ABI != ABI_AIX || !DECL_EXTERNAL (decl))))
2bcc50d0 15203 {
4977bab6 15204 tree attr_list = TYPE_ATTRIBUTES (TREE_TYPE (decl));
2bcc50d0
AM
15205
15206 if (!lookup_attribute ("longcall", attr_list)
15207 || lookup_attribute ("shortcall", attr_list))
4977bab6 15208 return true;
2bcc50d0 15209 }
5e1bf043 15210 }
4977bab6 15211 return false;
5e1bf043
DJ
15212}
15213
e7e64a25
AS
15214/* NULL if INSN insn is valid within a low-overhead loop.
15215 Otherwise return why doloop cannot be applied.
9419649c
DE
15216 PowerPC uses the COUNT register for branch on table instructions. */
15217
e7e64a25 15218static const char *
3101faab 15219rs6000_invalid_within_doloop (const_rtx insn)
9419649c
DE
15220{
15221 if (CALL_P (insn))
e7e64a25 15222 return "Function call in the loop.";
9419649c
DE
15223
15224 if (JUMP_P (insn)
15225 && (GET_CODE (PATTERN (insn)) == ADDR_DIFF_VEC
15226 || GET_CODE (PATTERN (insn)) == ADDR_VEC))
e7e64a25 15227 return "Computed branch in the loop.";
9419649c 15228
e7e64a25 15229 return NULL;
9419649c
DE
15230}
15231
71f123ca 15232static int
863d938c 15233rs6000_ra_ever_killed (void)
71f123ca
FS
15234{
15235 rtx top;
5e1bf043
DJ
15236 rtx reg;
15237 rtx insn;
71f123ca 15238
e3b5732b 15239 if (crtl->is_thunk)
71f123ca 15240 return 0;
eb0424da 15241
36f7e964
AH
15242 /* regs_ever_live has LR marked as used if any sibcalls are present,
15243 but this should not force saving and restoring in the
15244 pro/epilogue. Likewise, reg_set_between_p thinks a sibcall
a3c9585f 15245 clobbers LR, so that is inappropriate. */
36f7e964 15246
5e1bf043
DJ
15247 /* Also, the prologue can generate a store into LR that
15248 doesn't really count, like this:
36f7e964 15249
5e1bf043
DJ
15250 move LR->R0
15251 bcl to set PIC register
15252 move LR->R31
15253 move R0->LR
36f7e964
AH
15254
15255 When we're called from the epilogue, we need to avoid counting
15256 this as a store. */
f676971a 15257
71f123ca
FS
15258 push_topmost_sequence ();
15259 top = get_insns ();
15260 pop_topmost_sequence ();
1de43f85 15261 reg = gen_rtx_REG (Pmode, LR_REGNO);
71f123ca 15262
5e1bf043
DJ
15263 for (insn = NEXT_INSN (top); insn != NULL_RTX; insn = NEXT_INSN (insn))
15264 {
15265 if (INSN_P (insn))
15266 {
022123e6
AM
15267 if (CALL_P (insn))
15268 {
15269 if (!SIBLING_CALL_P (insn))
15270 return 1;
15271 }
1de43f85 15272 else if (find_regno_note (insn, REG_INC, LR_REGNO))
5e1bf043 15273 return 1;
36f7e964
AH
15274 else if (set_of (reg, insn) != NULL_RTX
15275 && !prologue_epilogue_contains (insn))
5e1bf043
DJ
15276 return 1;
15277 }
15278 }
15279 return 0;
71f123ca 15280}
4697a36c 15281\f
9ebbca7d 15282/* Emit instructions needed to load the TOC register.
c7ca610e 15283 This is only needed when TARGET_TOC, TARGET_MINIMAL_TOC, and there is
9ebbca7d 15284 a constant pool; or for SVR4 -fpic. */
c7ca610e
RK
15285
15286void
a2369ed3 15287rs6000_emit_load_toc_table (int fromprolog)
c7ca610e 15288{
6fb5fa3c 15289 rtx dest;
1db02437 15290 dest = gen_rtx_REG (Pmode, RS6000_PIC_OFFSET_TABLE_REGNUM);
c7ca610e 15291
7f970b70 15292 if (TARGET_ELF && TARGET_SECURE_PLT && DEFAULT_ABI != ABI_AIX && flag_pic)
20b71b17 15293 {
7f970b70 15294 char buf[30];
e65a3857 15295 rtx lab, tmp1, tmp2, got;
7f970b70
AM
15296
15297 ASM_GENERATE_INTERNAL_LABEL (buf, "LCF", rs6000_pic_labelno);
15298 lab = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (buf));
15299 if (flag_pic == 2)
15300 got = gen_rtx_SYMBOL_REF (Pmode, toc_label_name);
15301 else
15302 got = rs6000_got_sym ();
15303 tmp1 = tmp2 = dest;
15304 if (!fromprolog)
15305 {
15306 tmp1 = gen_reg_rtx (Pmode);
15307 tmp2 = gen_reg_rtx (Pmode);
15308 }
6fb5fa3c
DB
15309 emit_insn (gen_load_toc_v4_PIC_1 (lab));
15310 emit_move_insn (tmp1,
1de43f85 15311 gen_rtx_REG (Pmode, LR_REGNO));
6fb5fa3c
DB
15312 emit_insn (gen_load_toc_v4_PIC_3b (tmp2, tmp1, got, lab));
15313 emit_insn (gen_load_toc_v4_PIC_3c (dest, tmp2, got, lab));
7f970b70
AM
15314 }
15315 else if (TARGET_ELF && DEFAULT_ABI == ABI_V4 && flag_pic == 1)
15316 {
6fb5fa3c 15317 emit_insn (gen_load_toc_v4_pic_si ());
1de43f85 15318 emit_move_insn (dest, gen_rtx_REG (Pmode, LR_REGNO));
20b71b17
AM
15319 }
15320 else if (TARGET_ELF && DEFAULT_ABI != ABI_AIX && flag_pic == 2)
15321 {
15322 char buf[30];
20b71b17
AM
15323 rtx temp0 = (fromprolog
15324 ? gen_rtx_REG (Pmode, 0)
15325 : gen_reg_rtx (Pmode));
20b71b17 15326
20b71b17
AM
15327 if (fromprolog)
15328 {
ccbca5e4 15329 rtx symF, symL;
38c1f2d7 15330
20b71b17
AM
15331 ASM_GENERATE_INTERNAL_LABEL (buf, "LCF", rs6000_pic_labelno);
15332 symF = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (buf));
9ebbca7d 15333
20b71b17
AM
15334 ASM_GENERATE_INTERNAL_LABEL (buf, "LCL", rs6000_pic_labelno);
15335 symL = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (buf));
15336
6fb5fa3c
DB
15337 emit_insn (gen_load_toc_v4_PIC_1 (symF));
15338 emit_move_insn (dest,
1de43f85 15339 gen_rtx_REG (Pmode, LR_REGNO));
6fb5fa3c 15340 emit_insn (gen_load_toc_v4_PIC_2 (temp0, dest, symL, symF));
9ebbca7d
GK
15341 }
15342 else
20b71b17
AM
15343 {
15344 rtx tocsym;
20b71b17
AM
15345
15346 tocsym = gen_rtx_SYMBOL_REF (Pmode, toc_label_name);
e65a3857
DE
15347 emit_insn (gen_load_toc_v4_PIC_1b (tocsym));
15348 emit_move_insn (dest,
1de43f85 15349 gen_rtx_REG (Pmode, LR_REGNO));
027fbf43 15350 emit_move_insn (temp0, gen_rtx_MEM (Pmode, dest));
20b71b17 15351 }
6fb5fa3c 15352 emit_insn (gen_addsi3 (dest, temp0, dest));
9ebbca7d 15353 }
20b71b17
AM
15354 else if (TARGET_ELF && !TARGET_AIX && flag_pic == 0 && TARGET_MINIMAL_TOC)
15355 {
15356 /* This is for AIX code running in non-PIC ELF32. */
15357 char buf[30];
15358 rtx realsym;
15359 ASM_GENERATE_INTERNAL_LABEL (buf, "LCTOC", 1);
15360 realsym = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (buf));
15361
6fb5fa3c
DB
15362 emit_insn (gen_elf_high (dest, realsym));
15363 emit_insn (gen_elf_low (dest, dest, realsym));
20b71b17 15364 }
37409796 15365 else
9ebbca7d 15366 {
37409796 15367 gcc_assert (DEFAULT_ABI == ABI_AIX);
bb8df8a6 15368
9ebbca7d 15369 if (TARGET_32BIT)
6fb5fa3c 15370 emit_insn (gen_load_toc_aix_si (dest));
9ebbca7d 15371 else
6fb5fa3c 15372 emit_insn (gen_load_toc_aix_di (dest));
9ebbca7d
GK
15373 }
15374}
15375
d1d0c603
JJ
15376/* Emit instructions to restore the link register after determining where
15377 its value has been stored. */
15378
15379void
15380rs6000_emit_eh_reg_restore (rtx source, rtx scratch)
15381{
15382 rs6000_stack_t *info = rs6000_stack_info ();
15383 rtx operands[2];
15384
15385 operands[0] = source;
15386 operands[1] = scratch;
15387
15388 if (info->lr_save_p)
15389 {
15390 rtx frame_rtx = stack_pointer_rtx;
15391 HOST_WIDE_INT sp_offset = 0;
15392 rtx tmp;
15393
15394 if (frame_pointer_needed
e3b5732b 15395 || cfun->calls_alloca
d1d0c603
JJ
15396 || info->total_size > 32767)
15397 {
0be76840 15398 tmp = gen_frame_mem (Pmode, frame_rtx);
8308679f 15399 emit_move_insn (operands[1], tmp);
d1d0c603
JJ
15400 frame_rtx = operands[1];
15401 }
15402 else if (info->push_p)
15403 sp_offset = info->total_size;
15404
15405 tmp = plus_constant (frame_rtx, info->lr_save_offset + sp_offset);
0be76840 15406 tmp = gen_frame_mem (Pmode, tmp);
d1d0c603
JJ
15407 emit_move_insn (tmp, operands[0]);
15408 }
15409 else
1de43f85 15410 emit_move_insn (gen_rtx_REG (Pmode, LR_REGNO), operands[0]);
d1d0c603
JJ
15411}
15412
4862826d 15413static GTY(()) alias_set_type set = -1;
f103e34d 15414
4862826d 15415alias_set_type
863d938c 15416get_TOC_alias_set (void)
9ebbca7d 15417{
f103e34d
GK
15418 if (set == -1)
15419 set = new_alias_set ();
15420 return set;
f676971a 15421}
9ebbca7d 15422
c1207243 15423/* This returns nonzero if the current function uses the TOC. This is
3c9eb5f4
AM
15424 determined by the presence of (use (unspec ... UNSPEC_TOC)), which
15425 is generated by the ABI_V4 load_toc_* patterns. */
c954844a 15426#if TARGET_ELF
3c9eb5f4 15427static int
f676971a 15428uses_TOC (void)
9ebbca7d 15429{
c4501e62 15430 rtx insn;
38c1f2d7 15431
c4501e62
JJ
15432 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
15433 if (INSN_P (insn))
15434 {
15435 rtx pat = PATTERN (insn);
15436 int i;
9ebbca7d 15437
f676971a 15438 if (GET_CODE (pat) == PARALLEL)
c4501e62
JJ
15439 for (i = 0; i < XVECLEN (pat, 0); i++)
15440 {
15441 rtx sub = XVECEXP (pat, 0, i);
15442 if (GET_CODE (sub) == USE)
15443 {
15444 sub = XEXP (sub, 0);
15445 if (GET_CODE (sub) == UNSPEC
15446 && XINT (sub, 1) == UNSPEC_TOC)
15447 return 1;
15448 }
15449 }
15450 }
15451 return 0;
9ebbca7d 15452}
c954844a 15453#endif
38c1f2d7 15454
9ebbca7d 15455rtx
f676971a 15456create_TOC_reference (rtx symbol)
9ebbca7d 15457{
b3a13419 15458 if (!can_create_pseudo_p ())
6fb5fa3c 15459 df_set_regs_ever_live (TOC_REGISTER, true);
f676971a 15460 return gen_rtx_PLUS (Pmode,
a8a05998 15461 gen_rtx_REG (Pmode, TOC_REGISTER),
f676971a 15462 gen_rtx_CONST (Pmode,
2e4316da 15463 gen_rtx_UNSPEC (Pmode, gen_rtvec (1, symbol), UNSPEC_TOCREL)));
9ebbca7d 15464}
38c1f2d7 15465
fc4767bb
JJ
15466/* If _Unwind_* has been called from within the same module,
15467 toc register is not guaranteed to be saved to 40(1) on function
15468 entry. Save it there in that case. */
c7ca610e 15469
9ebbca7d 15470void
863d938c 15471rs6000_aix_emit_builtin_unwind_init (void)
9ebbca7d
GK
15472{
15473 rtx mem;
15474 rtx stack_top = gen_reg_rtx (Pmode);
15475 rtx opcode_addr = gen_reg_rtx (Pmode);
fc4767bb
JJ
15476 rtx opcode = gen_reg_rtx (SImode);
15477 rtx tocompare = gen_reg_rtx (SImode);
15478 rtx no_toc_save_needed = gen_label_rtx ();
9ebbca7d 15479
8308679f 15480 mem = gen_frame_mem (Pmode, hard_frame_pointer_rtx);
9ebbca7d
GK
15481 emit_move_insn (stack_top, mem);
15482
8308679f
DE
15483 mem = gen_frame_mem (Pmode,
15484 gen_rtx_PLUS (Pmode, stack_top,
15485 GEN_INT (2 * GET_MODE_SIZE (Pmode))));
9ebbca7d 15486 emit_move_insn (opcode_addr, mem);
fc4767bb
JJ
15487 emit_move_insn (opcode, gen_rtx_MEM (SImode, opcode_addr));
15488 emit_move_insn (tocompare, gen_int_mode (TARGET_32BIT ? 0x80410014
2496c7bd 15489 : 0xE8410028, SImode));
9ebbca7d 15490
fc4767bb 15491 do_compare_rtx_and_jump (opcode, tocompare, EQ, 1,
06f4e019 15492 SImode, NULL_RTX, NULL_RTX,
fc4767bb 15493 no_toc_save_needed);
9ebbca7d 15494
8308679f
DE
15495 mem = gen_frame_mem (Pmode,
15496 gen_rtx_PLUS (Pmode, stack_top,
15497 GEN_INT (5 * GET_MODE_SIZE (Pmode))));
fc4767bb
JJ
15498 emit_move_insn (mem, gen_rtx_REG (Pmode, 2));
15499 emit_label (no_toc_save_needed);
9ebbca7d 15500}
38c1f2d7 15501\f
0be76840
DE
15502/* This ties together stack memory (MEM with an alias set of frame_alias_set)
15503 and the change to the stack pointer. */
ba4828e0 15504
9ebbca7d 15505static void
863d938c 15506rs6000_emit_stack_tie (void)
9ebbca7d 15507{
0be76840
DE
15508 rtx mem = gen_frame_mem (BLKmode,
15509 gen_rtx_REG (Pmode, STACK_POINTER_REGNUM));
ba4828e0 15510
9ebbca7d
GK
15511 emit_insn (gen_stack_tie (mem));
15512}
38c1f2d7 15513
9ebbca7d
GK
15514/* Emit the correct code for allocating stack space, as insns.
15515 If COPY_R12, make sure a copy of the old frame is left in r12.
f78c3290
NF
15516 If COPY_R11, make sure a copy of the old frame is left in r11,
15517 in preference to r12 if COPY_R12.
9ebbca7d
GK
15518 The generated code may use hard register 0 as a temporary. */
15519
15520static void
f78c3290 15521rs6000_emit_allocate_stack (HOST_WIDE_INT size, int copy_r12, int copy_r11)
38c1f2d7 15522{
9ebbca7d
GK
15523 rtx insn;
15524 rtx stack_reg = gen_rtx_REG (Pmode, STACK_POINTER_REGNUM);
15525 rtx tmp_reg = gen_rtx_REG (Pmode, 0);
61168ff1
RS
15526 rtx todec = gen_int_mode (-size, Pmode);
15527
15528 if (INTVAL (todec) != -size)
15529 {
d4ee4d25 15530 warning (0, "stack frame too large");
61168ff1
RS
15531 emit_insn (gen_trap ());
15532 return;
15533 }
a157febd 15534
e3b5732b 15535 if (crtl->limit_stack)
a157febd
GK
15536 {
15537 if (REG_P (stack_limit_rtx)
f676971a 15538 && REGNO (stack_limit_rtx) > 1
a157febd
GK
15539 && REGNO (stack_limit_rtx) <= 31)
15540 {
5b71a4e7 15541 emit_insn (TARGET_32BIT
9ebbca7d
GK
15542 ? gen_addsi3 (tmp_reg,
15543 stack_limit_rtx,
15544 GEN_INT (size))
15545 : gen_adddi3 (tmp_reg,
15546 stack_limit_rtx,
15547 GEN_INT (size)));
5b71a4e7 15548
9ebbca7d
GK
15549 emit_insn (gen_cond_trap (LTU, stack_reg, tmp_reg,
15550 const0_rtx));
a157febd
GK
15551 }
15552 else if (GET_CODE (stack_limit_rtx) == SYMBOL_REF
9ebbca7d 15553 && TARGET_32BIT
f607bc57 15554 && DEFAULT_ABI == ABI_V4)
a157febd 15555 {
9ebbca7d 15556 rtx toload = gen_rtx_CONST (VOIDmode,
f676971a
EC
15557 gen_rtx_PLUS (Pmode,
15558 stack_limit_rtx,
9ebbca7d 15559 GEN_INT (size)));
5b71a4e7 15560
9ebbca7d
GK
15561 emit_insn (gen_elf_high (tmp_reg, toload));
15562 emit_insn (gen_elf_low (tmp_reg, tmp_reg, toload));
15563 emit_insn (gen_cond_trap (LTU, stack_reg, tmp_reg,
15564 const0_rtx));
a157febd
GK
15565 }
15566 else
d4ee4d25 15567 warning (0, "stack limit expression is not supported");
a157febd
GK
15568 }
15569
f78c3290
NF
15570 if (copy_r12 || copy_r11 || ! TARGET_UPDATE)
15571 emit_move_insn (copy_r11
15572 ? gen_rtx_REG (Pmode, 11)
15573 : gen_rtx_REG (Pmode, 12),
15574 stack_reg);
9ebbca7d 15575
38c1f2d7
MM
15576 if (TARGET_UPDATE)
15577 {
16044a80
PH
15578 rtx par, set, mem;
15579
9ebbca7d 15580 if (size > 32767)
38c1f2d7 15581 {
9ebbca7d 15582 /* Need a note here so that try_split doesn't get confused. */
9390387d 15583 if (get_last_insn () == NULL_RTX)
2e040219 15584 emit_note (NOTE_INSN_DELETED);
9ebbca7d
GK
15585 insn = emit_move_insn (tmp_reg, todec);
15586 try_split (PATTERN (insn), insn, 0);
15587 todec = tmp_reg;
38c1f2d7 15588 }
5b71a4e7
DE
15589
15590 insn = emit_insn (TARGET_32BIT
15591 ? gen_movsi_update (stack_reg, stack_reg,
15592 todec, stack_reg)
c4ad648e 15593 : gen_movdi_di_update (stack_reg, stack_reg,
9ebbca7d 15594 todec, stack_reg));
16044a80
PH
15595 /* Since we didn't use gen_frame_mem to generate the MEM, grab
15596 it now and set the alias set/attributes. The above gen_*_update
15597 calls will generate a PARALLEL with the MEM set being the first
15598 operation. */
15599 par = PATTERN (insn);
15600 gcc_assert (GET_CODE (par) == PARALLEL);
15601 set = XVECEXP (par, 0, 0);
15602 gcc_assert (GET_CODE (set) == SET);
15603 mem = SET_DEST (set);
15604 gcc_assert (MEM_P (mem));
15605 MEM_NOTRAP_P (mem) = 1;
15606 set_mem_alias_set (mem, get_frame_alias_set ());
38c1f2d7
MM
15607 }
15608 else
15609 {
5b71a4e7
DE
15610 insn = emit_insn (TARGET_32BIT
15611 ? gen_addsi3 (stack_reg, stack_reg, todec)
15612 : gen_adddi3 (stack_reg, stack_reg, todec));
16044a80 15613 emit_move_insn (gen_frame_mem (Pmode, stack_reg),
f78c3290
NF
15614 copy_r11
15615 ? gen_rtx_REG (Pmode, 11)
15616 : gen_rtx_REG (Pmode, 12));
9ebbca7d 15617 }
f676971a 15618
9ebbca7d 15619 RTX_FRAME_RELATED_P (insn) = 1;
f676971a 15620 REG_NOTES (insn) =
9ebbca7d 15621 gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
f676971a 15622 gen_rtx_SET (VOIDmode, stack_reg,
9ebbca7d
GK
15623 gen_rtx_PLUS (Pmode, stack_reg,
15624 GEN_INT (-size))),
15625 REG_NOTES (insn));
15626}
15627
a4f6c312
SS
15628/* Add to 'insn' a note which is PATTERN (INSN) but with REG replaced
15629 with (plus:P (reg 1) VAL), and with REG2 replaced with RREG if REG2
15630 is not NULL. It would be nice if dwarf2out_frame_debug_expr could
15631 deduce these equivalences by itself so it wasn't necessary to hold
15632 its hand so much. */
9ebbca7d
GK
15633
15634static void
f676971a 15635rs6000_frame_related (rtx insn, rtx reg, HOST_WIDE_INT val,
a2369ed3 15636 rtx reg2, rtx rreg)
9ebbca7d
GK
15637{
15638 rtx real, temp;
15639
e56c4463
JL
15640 /* copy_rtx will not make unique copies of registers, so we need to
15641 ensure we don't have unwanted sharing here. */
15642 if (reg == reg2)
15643 reg = gen_raw_REG (GET_MODE (reg), REGNO (reg));
15644
15645 if (reg == rreg)
15646 reg = gen_raw_REG (GET_MODE (reg), REGNO (reg));
15647
9ebbca7d
GK
15648 real = copy_rtx (PATTERN (insn));
15649
89e7058f
AH
15650 if (reg2 != NULL_RTX)
15651 real = replace_rtx (real, reg2, rreg);
f676971a
EC
15652
15653 real = replace_rtx (real, reg,
9ebbca7d
GK
15654 gen_rtx_PLUS (Pmode, gen_rtx_REG (Pmode,
15655 STACK_POINTER_REGNUM),
15656 GEN_INT (val)));
f676971a 15657
9ebbca7d
GK
15658 /* We expect that 'real' is either a SET or a PARALLEL containing
15659 SETs (and possibly other stuff). In a PARALLEL, all the SETs
15660 are important so they all have to be marked RTX_FRAME_RELATED_P. */
15661
15662 if (GET_CODE (real) == SET)
15663 {
15664 rtx set = real;
f676971a 15665
9ebbca7d
GK
15666 temp = simplify_rtx (SET_SRC (set));
15667 if (temp)
15668 SET_SRC (set) = temp;
15669 temp = simplify_rtx (SET_DEST (set));
15670 if (temp)
15671 SET_DEST (set) = temp;
15672 if (GET_CODE (SET_DEST (set)) == MEM)
38c1f2d7 15673 {
9ebbca7d
GK
15674 temp = simplify_rtx (XEXP (SET_DEST (set), 0));
15675 if (temp)
15676 XEXP (SET_DEST (set), 0) = temp;
38c1f2d7 15677 }
38c1f2d7 15678 }
37409796 15679 else
9ebbca7d
GK
15680 {
15681 int i;
37409796
NS
15682
15683 gcc_assert (GET_CODE (real) == PARALLEL);
9ebbca7d
GK
15684 for (i = 0; i < XVECLEN (real, 0); i++)
15685 if (GET_CODE (XVECEXP (real, 0, i)) == SET)
15686 {
15687 rtx set = XVECEXP (real, 0, i);
f676971a 15688
9ebbca7d
GK
15689 temp = simplify_rtx (SET_SRC (set));
15690 if (temp)
15691 SET_SRC (set) = temp;
15692 temp = simplify_rtx (SET_DEST (set));
15693 if (temp)
15694 SET_DEST (set) = temp;
15695 if (GET_CODE (SET_DEST (set)) == MEM)
15696 {
15697 temp = simplify_rtx (XEXP (SET_DEST (set), 0));
15698 if (temp)
15699 XEXP (SET_DEST (set), 0) = temp;
15700 }
15701 RTX_FRAME_RELATED_P (set) = 1;
15702 }
15703 }
c19de7aa 15704
9ebbca7d
GK
15705 RTX_FRAME_RELATED_P (insn) = 1;
15706 REG_NOTES (insn) = gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
15707 real,
15708 REG_NOTES (insn));
38c1f2d7
MM
15709}
15710
00b960c7
AH
15711/* Returns an insn that has a vrsave set operation with the
15712 appropriate CLOBBERs. */
15713
15714static rtx
a2369ed3 15715generate_set_vrsave (rtx reg, rs6000_stack_t *info, int epiloguep)
00b960c7
AH
15716{
15717 int nclobs, i;
15718 rtx insn, clobs[TOTAL_ALTIVEC_REGS + 1];
a004eb82 15719 rtx vrsave = gen_rtx_REG (SImode, VRSAVE_REGNO);
00b960c7 15720
a004eb82
AH
15721 clobs[0]
15722 = gen_rtx_SET (VOIDmode,
15723 vrsave,
15724 gen_rtx_UNSPEC_VOLATILE (SImode,
15725 gen_rtvec (2, reg, vrsave),
3aca4bff 15726 UNSPECV_SET_VRSAVE));
00b960c7
AH
15727
15728 nclobs = 1;
15729
9aa86737
AH
15730 /* We need to clobber the registers in the mask so the scheduler
15731 does not move sets to VRSAVE before sets of AltiVec registers.
15732
15733 However, if the function receives nonlocal gotos, reload will set
15734 all call saved registers live. We will end up with:
15735
15736 (set (reg 999) (mem))
15737 (parallel [ (set (reg vrsave) (unspec blah))
15738 (clobber (reg 999))])
15739
15740 The clobber will cause the store into reg 999 to be dead, and
15741 flow will attempt to delete an epilogue insn. In this case, we
15742 need an unspec use/set of the register. */
00b960c7
AH
15743
15744 for (i = FIRST_ALTIVEC_REGNO; i <= LAST_ALTIVEC_REGNO; ++i)
44688022 15745 if (info->vrsave_mask & ALTIVEC_REG_BIT (i))
9aa86737
AH
15746 {
15747 if (!epiloguep || call_used_regs [i])
15748 clobs[nclobs++] = gen_rtx_CLOBBER (VOIDmode,
15749 gen_rtx_REG (V4SImode, i));
15750 else
15751 {
15752 rtx reg = gen_rtx_REG (V4SImode, i);
9aa86737
AH
15753
15754 clobs[nclobs++]
a004eb82
AH
15755 = gen_rtx_SET (VOIDmode,
15756 reg,
15757 gen_rtx_UNSPEC (V4SImode,
15758 gen_rtvec (1, reg), 27));
9aa86737
AH
15759 }
15760 }
00b960c7
AH
15761
15762 insn = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (nclobs));
15763
15764 for (i = 0; i < nclobs; ++i)
15765 XVECEXP (insn, 0, i) = clobs[i];
15766
15767 return insn;
15768}
15769
89e7058f
AH
15770/* Save a register into the frame, and emit RTX_FRAME_RELATED_P notes.
15771 Save REGNO into [FRAME_REG + OFFSET] in mode MODE. */
15772
15773static void
f676971a 15774emit_frame_save (rtx frame_reg, rtx frame_ptr, enum machine_mode mode,
d1d0c603 15775 unsigned int regno, int offset, HOST_WIDE_INT total_size)
89e7058f
AH
15776{
15777 rtx reg, offset_rtx, insn, mem, addr, int_rtx;
15778 rtx replacea, replaceb;
15779
15780 int_rtx = GEN_INT (offset);
15781
15782 /* Some cases that need register indexed addressing. */
15783 if ((TARGET_ALTIVEC_ABI && ALTIVEC_VECTOR_MODE (mode))
4f011e1e 15784 || (TARGET_E500_DOUBLE && mode == DFmode)
a3170dc6
AH
15785 || (TARGET_SPE_ABI
15786 && SPE_VECTOR_MODE (mode)
15787 && !SPE_CONST_OFFSET_OK (offset)))
89e7058f
AH
15788 {
15789 /* Whomever calls us must make sure r11 is available in the
c4ad648e 15790 flow path of instructions in the prologue. */
89e7058f
AH
15791 offset_rtx = gen_rtx_REG (Pmode, 11);
15792 emit_move_insn (offset_rtx, int_rtx);
15793
15794 replacea = offset_rtx;
15795 replaceb = int_rtx;
15796 }
15797 else
15798 {
15799 offset_rtx = int_rtx;
15800 replacea = NULL_RTX;
15801 replaceb = NULL_RTX;
15802 }
15803
15804 reg = gen_rtx_REG (mode, regno);
15805 addr = gen_rtx_PLUS (Pmode, frame_reg, offset_rtx);
0be76840 15806 mem = gen_frame_mem (mode, addr);
89e7058f
AH
15807
15808 insn = emit_move_insn (mem, reg);
15809
15810 rs6000_frame_related (insn, frame_ptr, total_size, replacea, replaceb);
15811}
15812
a3170dc6
AH
15813/* Emit an offset memory reference suitable for a frame store, while
15814 converting to a valid addressing mode. */
15815
15816static rtx
a2369ed3 15817gen_frame_mem_offset (enum machine_mode mode, rtx reg, int offset)
a3170dc6
AH
15818{
15819 rtx int_rtx, offset_rtx;
15820
15821 int_rtx = GEN_INT (offset);
15822
4d4cbc0e 15823 if ((TARGET_SPE_ABI && SPE_VECTOR_MODE (mode))
4f011e1e 15824 || (TARGET_E500_DOUBLE && mode == DFmode))
a3170dc6
AH
15825 {
15826 offset_rtx = gen_rtx_REG (Pmode, FIXED_SCRATCH);
15827 emit_move_insn (offset_rtx, int_rtx);
15828 }
15829 else
15830 offset_rtx = int_rtx;
15831
0be76840 15832 return gen_frame_mem (mode, gen_rtx_PLUS (Pmode, reg, offset_rtx));
a3170dc6
AH
15833}
15834
6d0a8091
DJ
15835/* Look for user-defined global regs. We should not save and restore these,
15836 and cannot use stmw/lmw if there are any in its range. */
15837
15838static bool
f78c3290 15839no_global_regs_above (int first, bool gpr)
6d0a8091
DJ
15840{
15841 int i;
e1ece9f1 15842 for (i = first; i < gpr ? 32 : 64 ; i++)
f78c3290 15843 if (global_regs[i])
6d0a8091
DJ
15844 return false;
15845 return true;
15846}
15847
699c914a
MS
15848#ifndef TARGET_FIX_AND_CONTINUE
15849#define TARGET_FIX_AND_CONTINUE 0
15850#endif
15851
f78c3290
NF
15852/* It's really GPR 13 and FPR 14, but we need the smaller of the two. */
15853#define FIRST_SAVRES_REGISTER FIRST_SAVED_GP_REGNO
15854#define LAST_SAVRES_REGISTER 31
15855#define N_SAVRES_REGISTERS (LAST_SAVRES_REGISTER - FIRST_SAVRES_REGISTER + 1)
15856
15857static GTY(()) rtx savres_routine_syms[N_SAVRES_REGISTERS][8];
15858
15859/* Return the symbol for an out-of-line register save/restore routine.
15860 We are saving/restoring GPRs if GPR is true. */
15861
15862static rtx
15863rs6000_savres_routine_sym (rs6000_stack_t *info, bool savep, bool gpr, bool exitp)
15864{
15865 int regno = gpr ? info->first_gp_reg_save : (info->first_fp_reg_save - 32);
15866 rtx sym;
15867 int select = ((savep ? 1 : 0) << 2
15868 | (gpr
15869 /* On the SPE, we never have any FPRs, but we do have
15870 32/64-bit versions of the routines. */
15871 ? (TARGET_SPE_ABI && info->spe_64bit_regs_used ? 1 : 0)
15872 : 0) << 1
15873 | (exitp ? 1: 0));
15874
15875 /* Don't generate bogus routine names. */
15876 gcc_assert (FIRST_SAVRES_REGISTER <= regno && regno <= LAST_SAVRES_REGISTER);
15877
15878 sym = savres_routine_syms[regno-FIRST_SAVRES_REGISTER][select];
15879
15880 if (sym == NULL)
15881 {
15882 char name[30];
15883 const char *action;
15884 const char *regkind;
15885 const char *exit_suffix;
15886
15887 action = savep ? "save" : "rest";
15888
15889 /* SPE has slightly different names for its routines depending on
15890 whether we are saving 32-bit or 64-bit registers. */
15891 if (TARGET_SPE_ABI)
15892 {
15893 /* No floating point saves on the SPE. */
15894 gcc_assert (gpr);
15895
15896 regkind = info->spe_64bit_regs_used ? "64gpr" : "32gpr";
15897 }
15898 else
15899 regkind = gpr ? "gpr" : "fpr";
15900
15901 exit_suffix = exitp ? "_x" : "";
15902
15903 sprintf (name, "_%s%s_%d%s", action, regkind, regno, exit_suffix);
15904
15905 sym = savres_routine_syms[regno-FIRST_SAVRES_REGISTER][select]
15906 = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (name));
15907 }
15908
15909 return sym;
15910}
15911
15912/* Emit a sequence of insns, including a stack tie if needed, for
15913 resetting the stack pointer. If SAVRES is true, then don't reset the
15914 stack pointer, but move the base of the frame into r11 for use by
15915 out-of-line register restore routines. */
15916
15917static void
15918rs6000_emit_stack_reset (rs6000_stack_t *info,
15919 rtx sp_reg_rtx, rtx frame_reg_rtx,
15920 int sp_offset, bool savres)
15921{
15922 /* This blockage is needed so that sched doesn't decide to move
15923 the sp change before the register restores. */
15924 if (frame_reg_rtx != sp_reg_rtx
15925 || (TARGET_SPE_ABI
15926 && info->spe_64bit_regs_used != 0
15927 && info->first_gp_reg_save != 32))
15928 rs6000_emit_stack_tie ();
15929
15930 if (frame_reg_rtx != sp_reg_rtx)
15931 {
15932 rs6000_emit_stack_tie ();
15933 if (sp_offset != 0)
15934 emit_insn (gen_addsi3 (sp_reg_rtx, frame_reg_rtx,
15935 GEN_INT (sp_offset)));
15936 else if (!savres)
15937 emit_move_insn (sp_reg_rtx, frame_reg_rtx);
15938 }
15939 else if (sp_offset != 0)
15940 {
15941 /* If we are restoring registers out-of-line, we will be using the
15942 "exit" variants of the restore routines, which will reset the
15943 stack for us. But we do need to point r11 into the right place
15944 for those routines. */
15945 rtx dest_reg = (savres
15946 ? gen_rtx_REG (Pmode, 11)
15947 : sp_reg_rtx);
15948
15949 emit_insn (TARGET_32BIT
15950 ? gen_addsi3 (dest_reg, sp_reg_rtx,
15951 GEN_INT (sp_offset))
15952 : gen_adddi3 (dest_reg, sp_reg_rtx,
15953 GEN_INT (sp_offset)));
15954 }
15955}
15956
15957/* Construct a parallel rtx describing the effect of a call to an
15958 out-of-line register save/restore routine. */
15959
15960static rtx
15961rs6000_make_savres_rtx (rs6000_stack_t *info,
15962 rtx frame_reg_rtx, int save_area_offset,
15963 enum machine_mode reg_mode,
15964 bool savep, bool gpr, bool exitp)
15965{
15966 int i;
15967 int offset, start_reg, end_reg, n_regs;
15968 int reg_size = GET_MODE_SIZE (reg_mode);
15969 rtx sym;
15970 rtvec p;
15971
15972 offset = 0;
15973 start_reg = (gpr
15974 ? info->first_gp_reg_save
15975 : info->first_fp_reg_save);
15976 end_reg = gpr ? 32 : 64;
15977 n_regs = end_reg - start_reg;
15978 p = rtvec_alloc ((exitp ? 4 : 3) + n_regs);
15979
15980 /* If we're saving registers, then we should never say we're exiting. */
15981 gcc_assert ((savep && !exitp) || !savep);
15982
15983 if (exitp)
15984 RTVEC_ELT (p, offset++) = gen_rtx_RETURN (VOIDmode);
15985
15986 RTVEC_ELT (p, offset++)
15987 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, 65));
15988
15989 sym = rs6000_savres_routine_sym (info, savep, gpr, exitp);
15990 RTVEC_ELT (p, offset++) = gen_rtx_USE (VOIDmode, sym);
15991 RTVEC_ELT (p, offset++) = gen_rtx_USE (VOIDmode, gen_rtx_REG (Pmode, 11));
15992
15993 for (i = 0; i < end_reg - start_reg; i++)
15994 {
15995 rtx addr, reg, mem;
15996 reg = gen_rtx_REG (reg_mode, start_reg + i);
15997 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
15998 GEN_INT (save_area_offset + reg_size*i));
15999 mem = gen_frame_mem (reg_mode, addr);
16000
16001 RTVEC_ELT (p, i + offset) = gen_rtx_SET (VOIDmode,
16002 savep ? mem : reg,
16003 savep ? reg : mem);
16004 }
16005
16006 return gen_rtx_PARALLEL (VOIDmode, p);
16007}
16008
52ff33d0
NF
16009/* Determine whether the gp REG is really used. */
16010
16011static bool
16012rs6000_reg_live_or_pic_offset_p (int reg)
16013{
6fb5fa3c 16014 return ((df_regs_ever_live_p (reg)
52ff33d0
NF
16015 && (!call_used_regs[reg]
16016 || (reg == RS6000_PIC_OFFSET_TABLE_REGNUM
16017 && TARGET_TOC && TARGET_MINIMAL_TOC)))
16018 || (reg == RS6000_PIC_OFFSET_TABLE_REGNUM
16019 && ((DEFAULT_ABI == ABI_V4 && flag_pic != 0)
16020 || (DEFAULT_ABI == ABI_DARWIN && flag_pic))));
16021}
16022
f78c3290
NF
16023enum {
16024 SAVRES_MULTIPLE = 0x1,
16025 SAVRES_INLINE_FPRS = 0x2,
16026 SAVRES_INLINE_GPRS = 0x4
16027};
16028
16029/* Determine the strategy for savings/restoring registers. */
16030
16031static int
16032rs6000_savres_strategy (rs6000_stack_t *info, bool savep,
16033 int using_static_chain_p, int sibcall)
16034{
16035 bool using_multiple_p;
16036 bool common;
16037 bool savres_fprs_inline;
16038 bool savres_gprs_inline;
16039 bool noclobber_global_gprs
16040 = no_global_regs_above (info->first_gp_reg_save, /*gpr=*/true);
16041
16042 using_multiple_p = (TARGET_MULTIPLE && ! TARGET_POWERPC64
16043 && (!TARGET_SPE_ABI
16044 || info->spe_64bit_regs_used == 0)
16045 && info->first_gp_reg_save < 31
16046 && noclobber_global_gprs);
16047 /* Don't bother to try to save things out-of-line if r11 is occupied
16048 by the static chain. It would require too much fiddling and the
16049 static chain is rarely used anyway. */
16050 common = (using_static_chain_p
16051 || sibcall
16052 || crtl->calls_eh_return
16053 || !info->lr_save_p
16054 || cfun->machine->ra_need_lr
16055 || info->total_size > 32767);
16056 savres_fprs_inline = (common
16057 || info->first_fp_reg_save == 64
16058 || !no_global_regs_above (info->first_fp_reg_save,
16059 /*gpr=*/false)
16060 || FP_SAVE_INLINE (info->first_fp_reg_save));
16061 savres_gprs_inline = (common
16062 /* Saving CR interferes with the exit routines
16063 used on the SPE, so just punt here. */
16064 || (!savep
16065 && TARGET_SPE_ABI
16066 && info->spe_64bit_regs_used != 0
16067 && info->cr_save_p != 0)
16068 || info->first_gp_reg_save == 32
16069 || !noclobber_global_gprs
16070 || GP_SAVE_INLINE (info->first_gp_reg_save));
16071
16072 if (savep)
16073 /* If we are going to use store multiple, then don't even bother
16074 with the out-of-line routines, since the store-multiple instruction
16075 will always be smaller. */
16076 savres_gprs_inline = savres_gprs_inline || using_multiple_p;
16077 else
16078 {
16079 /* The situation is more complicated with load multiple. We'd
16080 prefer to use the out-of-line routines for restores, since the
16081 "exit" out-of-line routines can handle the restore of LR and
16082 the frame teardown. But we can only use the out-of-line
16083 routines if we know that we've used store multiple or
16084 out-of-line routines in the prologue, i.e. if we've saved all
16085 the registers from first_gp_reg_save. Otherwise, we risk
16086 loading garbage from the stack. Furthermore, we can only use
16087 the "exit" out-of-line gpr restore if we haven't saved any
16088 fprs. */
16089 bool saved_all = !savres_gprs_inline || using_multiple_p;
16090
16091 if (saved_all && info->first_fp_reg_save != 64)
16092 /* We can't use the exit routine; use load multiple if it's
16093 available. */
16094 savres_gprs_inline = savres_gprs_inline || using_multiple_p;
16095 }
16096
16097 return (using_multiple_p
16098 | (savres_fprs_inline << 1)
16099 | (savres_gprs_inline << 2));
16100}
16101
9ebbca7d
GK
16102/* Emit function prologue as insns. */
16103
9878760c 16104void
863d938c 16105rs6000_emit_prologue (void)
9878760c 16106{
4697a36c 16107 rs6000_stack_t *info = rs6000_stack_info ();
0e67400a 16108 enum machine_mode reg_mode = Pmode;
327e5343 16109 int reg_size = TARGET_32BIT ? 4 : 8;
9ebbca7d
GK
16110 rtx sp_reg_rtx = gen_rtx_REG (Pmode, STACK_POINTER_REGNUM);
16111 rtx frame_ptr_rtx = gen_rtx_REG (Pmode, 12);
16112 rtx frame_reg_rtx = sp_reg_rtx;
b78d48dd 16113 rtx cr_save_rtx = NULL_RTX;
9ebbca7d 16114 rtx insn;
f78c3290 16115 int strategy;
9ebbca7d 16116 int saving_FPRs_inline;
f78c3290 16117 int saving_GPRs_inline;
9ebbca7d 16118 int using_store_multiple;
f78c3290
NF
16119 int using_static_chain_p = (cfun->static_chain_decl != NULL_TREE
16120 && df_regs_ever_live_p (STATIC_CHAIN_REGNUM)
e1ece9f1 16121 && !call_used_regs[STATIC_CHAIN_REGNUM]);
9ebbca7d 16122 HOST_WIDE_INT sp_offset = 0;
f676971a 16123
699c914a
MS
16124 if (TARGET_FIX_AND_CONTINUE)
16125 {
16126 /* gdb on darwin arranges to forward a function from the old
de2ab0ca 16127 address by modifying the first 5 instructions of the function
699c914a
MS
16128 to branch to the overriding function. This is necessary to
16129 permit function pointers that point to the old function to
16130 actually forward to the new function. */
16131 emit_insn (gen_nop ());
16132 emit_insn (gen_nop ());
de2ab0ca 16133 emit_insn (gen_nop ());
699c914a
MS
16134 emit_insn (gen_nop ());
16135 emit_insn (gen_nop ());
16136 }
16137
16138 if (TARGET_SPE_ABI && info->spe_64bit_regs_used != 0)
16139 {
16140 reg_mode = V2SImode;
16141 reg_size = 8;
16142 }
a3170dc6 16143
f78c3290
NF
16144 strategy = rs6000_savres_strategy (info, /*savep=*/true,
16145 /*static_chain_p=*/using_static_chain_p,
16146 /*sibcall=*/0);
16147 using_store_multiple = strategy & SAVRES_MULTIPLE;
16148 saving_FPRs_inline = strategy & SAVRES_INLINE_FPRS;
16149 saving_GPRs_inline = strategy & SAVRES_INLINE_GPRS;
9ebbca7d
GK
16150
16151 /* For V.4, update stack before we do any saving and set back pointer. */
22fa69da
GK
16152 if (! WORLD_SAVE_P (info)
16153 && info->push_p
acd0b319 16154 && (DEFAULT_ABI == ABI_V4
e3b5732b 16155 || crtl->calls_eh_return))
9ebbca7d 16156 {
f78c3290
NF
16157 bool need_r11 = (TARGET_SPE
16158 ? (!saving_GPRs_inline
16159 && info->spe_64bit_regs_used == 0)
16160 : (!saving_FPRs_inline || !saving_GPRs_inline));
9ebbca7d
GK
16161 if (info->total_size < 32767)
16162 sp_offset = info->total_size;
16163 else
f78c3290
NF
16164 frame_reg_rtx = (need_r11
16165 ? gen_rtx_REG (Pmode, 11)
16166 : frame_ptr_rtx);
f676971a 16167 rs6000_emit_allocate_stack (info->total_size,
9ebbca7d
GK
16168 (frame_reg_rtx != sp_reg_rtx
16169 && (info->cr_save_p
16170 || info->lr_save_p
16171 || info->first_fp_reg_save < 64
16172 || info->first_gp_reg_save < 32
f78c3290
NF
16173 )),
16174 need_r11);
9ebbca7d
GK
16175 if (frame_reg_rtx != sp_reg_rtx)
16176 rs6000_emit_stack_tie ();
16177 }
16178
d62294f5 16179 /* Handle world saves specially here. */
f57fe068 16180 if (WORLD_SAVE_P (info))
d62294f5
FJ
16181 {
16182 int i, j, sz;
16183 rtx treg;
16184 rtvec p;
22fa69da 16185 rtx reg0;
d62294f5
FJ
16186
16187 /* save_world expects lr in r0. */
22fa69da 16188 reg0 = gen_rtx_REG (Pmode, 0);
d62294f5 16189 if (info->lr_save_p)
c4ad648e 16190 {
22fa69da 16191 insn = emit_move_insn (reg0,
1de43f85 16192 gen_rtx_REG (Pmode, LR_REGNO));
c4ad648e
AM
16193 RTX_FRAME_RELATED_P (insn) = 1;
16194 }
d62294f5
FJ
16195
16196 /* The SAVE_WORLD and RESTORE_WORLD routines make a number of
c4ad648e 16197 assumptions about the offsets of various bits of the stack
992d08b1 16198 frame. */
37409796
NS
16199 gcc_assert (info->gp_save_offset == -220
16200 && info->fp_save_offset == -144
16201 && info->lr_save_offset == 8
16202 && info->cr_save_offset == 4
16203 && info->push_p
16204 && info->lr_save_p
e3b5732b 16205 && (!crtl->calls_eh_return
37409796
NS
16206 || info->ehrd_offset == -432)
16207 && info->vrsave_save_offset == -224
22fa69da 16208 && info->altivec_save_offset == -416);
d62294f5
FJ
16209
16210 treg = gen_rtx_REG (SImode, 11);
16211 emit_move_insn (treg, GEN_INT (-info->total_size));
16212
16213 /* SAVE_WORLD takes the caller's LR in R0 and the frame size
c4ad648e 16214 in R11. It also clobbers R12, so beware! */
d62294f5
FJ
16215
16216 /* Preserve CR2 for save_world prologues */
22fa69da 16217 sz = 5;
d62294f5
FJ
16218 sz += 32 - info->first_gp_reg_save;
16219 sz += 64 - info->first_fp_reg_save;
16220 sz += LAST_ALTIVEC_REGNO - info->first_altivec_reg_save + 1;
16221 p = rtvec_alloc (sz);
16222 j = 0;
16223 RTVEC_ELT (p, j++) = gen_rtx_CLOBBER (VOIDmode,
a5ad2017 16224 gen_rtx_REG (SImode,
1de43f85 16225 LR_REGNO));
d62294f5 16226 RTVEC_ELT (p, j++) = gen_rtx_USE (VOIDmode,
c4ad648e
AM
16227 gen_rtx_SYMBOL_REF (Pmode,
16228 "*save_world"));
d62294f5 16229 /* We do floats first so that the instruction pattern matches
c4ad648e
AM
16230 properly. */
16231 for (i = 0; i < 64 - info->first_fp_reg_save; i++)
16232 {
696e45ba
ME
16233 rtx reg = gen_rtx_REG (((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
16234 ? DFmode : SFmode),
16235 info->first_fp_reg_save + i);
c4ad648e
AM
16236 rtx addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
16237 GEN_INT (info->fp_save_offset
16238 + sp_offset + 8 * i));
696e45ba
ME
16239 rtx mem = gen_frame_mem (((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
16240 ? DFmode : SFmode), addr);
c4ad648e
AM
16241
16242 RTVEC_ELT (p, j++) = gen_rtx_SET (VOIDmode, mem, reg);
16243 }
d62294f5 16244 for (i = 0; info->first_altivec_reg_save + i <= LAST_ALTIVEC_REGNO; i++)
c4ad648e
AM
16245 {
16246 rtx reg = gen_rtx_REG (V4SImode, info->first_altivec_reg_save + i);
16247 rtx addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
16248 GEN_INT (info->altivec_save_offset
16249 + sp_offset + 16 * i));
0be76840 16250 rtx mem = gen_frame_mem (V4SImode, addr);
c4ad648e
AM
16251
16252 RTVEC_ELT (p, j++) = gen_rtx_SET (VOIDmode, mem, reg);
16253 }
d62294f5 16254 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
c4ad648e
AM
16255 {
16256 rtx reg = gen_rtx_REG (reg_mode, info->first_gp_reg_save + i);
16257 rtx addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
16258 GEN_INT (info->gp_save_offset
16259 + sp_offset + reg_size * i));
0be76840 16260 rtx mem = gen_frame_mem (reg_mode, addr);
c4ad648e
AM
16261
16262 RTVEC_ELT (p, j++) = gen_rtx_SET (VOIDmode, mem, reg);
16263 }
16264
16265 {
16266 /* CR register traditionally saved as CR2. */
16267 rtx reg = gen_rtx_REG (reg_mode, CR2_REGNO);
16268 rtx addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
16269 GEN_INT (info->cr_save_offset
16270 + sp_offset));
0be76840 16271 rtx mem = gen_frame_mem (reg_mode, addr);
c4ad648e
AM
16272
16273 RTVEC_ELT (p, j++) = gen_rtx_SET (VOIDmode, mem, reg);
16274 }
22fa69da
GK
16275 /* Explain about use of R0. */
16276 if (info->lr_save_p)
16277 {
16278 rtx addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
16279 GEN_INT (info->lr_save_offset
16280 + sp_offset));
16281 rtx mem = gen_frame_mem (reg_mode, addr);
982afe02 16282
22fa69da
GK
16283 RTVEC_ELT (p, j++) = gen_rtx_SET (VOIDmode, mem, reg0);
16284 }
16285 /* Explain what happens to the stack pointer. */
16286 {
16287 rtx newval = gen_rtx_PLUS (Pmode, sp_reg_rtx, treg);
16288 RTVEC_ELT (p, j++) = gen_rtx_SET (VOIDmode, sp_reg_rtx, newval);
16289 }
d62294f5
FJ
16290
16291 insn = emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
16292 rs6000_frame_related (insn, frame_ptr_rtx, info->total_size,
22fa69da
GK
16293 treg, GEN_INT (-info->total_size));
16294 sp_offset = info->total_size;
d62294f5
FJ
16295 }
16296
9ebbca7d 16297 /* If we use the link register, get it into r0. */
f57fe068 16298 if (!WORLD_SAVE_P (info) && info->lr_save_p)
f8a57be8 16299 {
52ff33d0
NF
16300 rtx addr, reg, mem;
16301
f8a57be8 16302 insn = emit_move_insn (gen_rtx_REG (Pmode, 0),
1de43f85 16303 gen_rtx_REG (Pmode, LR_REGNO));
f8a57be8 16304 RTX_FRAME_RELATED_P (insn) = 1;
52ff33d0
NF
16305
16306 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
16307 GEN_INT (info->lr_save_offset + sp_offset));
16308 reg = gen_rtx_REG (Pmode, 0);
16309 mem = gen_rtx_MEM (Pmode, addr);
16310 /* This should not be of rs6000_sr_alias_set, because of
16311 __builtin_return_address. */
16312
16313 insn = emit_move_insn (mem, reg);
16314 rs6000_frame_related (insn, frame_ptr_rtx, info->total_size,
16315 NULL_RTX, NULL_RTX);
f8a57be8 16316 }
9ebbca7d
GK
16317
16318 /* If we need to save CR, put it into r12. */
f57fe068 16319 if (!WORLD_SAVE_P (info) && info->cr_save_p && frame_reg_rtx != frame_ptr_rtx)
9ebbca7d 16320 {
f8a57be8 16321 rtx set;
f676971a 16322
9ebbca7d 16323 cr_save_rtx = gen_rtx_REG (SImode, 12);
f8a57be8
GK
16324 insn = emit_insn (gen_movesi_from_cr (cr_save_rtx));
16325 RTX_FRAME_RELATED_P (insn) = 1;
16326 /* Now, there's no way that dwarf2out_frame_debug_expr is going
16327 to understand '(unspec:SI [(reg:CC 68) ...] UNSPEC_MOVESI_FROM_CR)'.
16328 But that's OK. All we have to do is specify that _one_ condition
16329 code register is saved in this stack slot. The thrower's epilogue
16330 will then restore all the call-saved registers.
16331 We use CR2_REGNO (70) to be compatible with gcc-2.95 on Linux. */
16332 set = gen_rtx_SET (VOIDmode, cr_save_rtx,
16333 gen_rtx_REG (SImode, CR2_REGNO));
16334 REG_NOTES (insn) = gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
16335 set,
16336 REG_NOTES (insn));
9ebbca7d
GK
16337 }
16338
a4f6c312
SS
16339 /* Do any required saving of fpr's. If only one or two to save, do
16340 it ourselves. Otherwise, call function. */
f57fe068 16341 if (!WORLD_SAVE_P (info) && saving_FPRs_inline)
9ebbca7d
GK
16342 {
16343 int i;
16344 for (i = 0; i < 64 - info->first_fp_reg_save; i++)
6fb5fa3c 16345 if ((df_regs_ever_live_p (info->first_fp_reg_save+i)
9ebbca7d 16346 && ! call_used_regs[info->first_fp_reg_save+i]))
696e45ba
ME
16347 emit_frame_save (frame_reg_rtx, frame_ptr_rtx,
16348 (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
16349 ? DFmode : SFmode,
89e7058f
AH
16350 info->first_fp_reg_save + i,
16351 info->fp_save_offset + sp_offset + 8 * i,
16352 info->total_size);
9ebbca7d 16353 }
f57fe068 16354 else if (!WORLD_SAVE_P (info) && info->first_fp_reg_save != 64)
f78c3290
NF
16355 {
16356 rtx par;
16357
16358 par = rs6000_make_savres_rtx (info, frame_reg_rtx,
16359 info->fp_save_offset + sp_offset,
16360 DFmode,
16361 /*savep=*/true, /*gpr=*/false,
16362 /*exitp=*/false);
16363 insn = emit_insn (par);
16364 rs6000_frame_related (insn, frame_ptr_rtx, info->total_size,
16365 NULL_RTX, NULL_RTX);
16366 }
16367
16368 /* Save GPRs. This is done as a PARALLEL if we are using
16369 the store-multiple instructions. */
16370 if (!WORLD_SAVE_P (info)
16371 && TARGET_SPE_ABI
16372 && info->spe_64bit_regs_used != 0
16373 && info->first_gp_reg_save != 32)
9ebbca7d
GK
16374 {
16375 int i;
f78c3290
NF
16376 rtx spe_save_area_ptr;
16377
16378 /* Determine whether we can address all of the registers that need
16379 to be saved with an offset from the stack pointer that fits in
16380 the small const field for SPE memory instructions. */
16381 int spe_regs_addressable_via_sp
16382 = (SPE_CONST_OFFSET_OK(info->spe_gp_save_offset + sp_offset
16383 + (32 - info->first_gp_reg_save - 1) * reg_size)
16384 && saving_GPRs_inline);
16385 int spe_offset;
16386
16387 if (spe_regs_addressable_via_sp)
16388 {
16389 spe_save_area_ptr = frame_reg_rtx;
16390 spe_offset = info->spe_gp_save_offset + sp_offset;
16391 }
16392 else
16393 {
16394 /* Make r11 point to the start of the SPE save area. We need
16395 to be careful here if r11 is holding the static chain. If
16396 it is, then temporarily save it in r0. We would use r0 as
16397 our base register here, but using r0 as a base register in
16398 loads and stores means something different from what we
16399 would like. */
16400 int ool_adjust = (saving_GPRs_inline
16401 ? 0
16402 : (info->first_gp_reg_save
16403 - (FIRST_SAVRES_REGISTER+1))*8);
16404 HOST_WIDE_INT offset = (info->spe_gp_save_offset
16405 + sp_offset - ool_adjust);
16406
16407 if (using_static_chain_p)
16408 {
16409 rtx r0 = gen_rtx_REG (Pmode, 0);
16410 gcc_assert (info->first_gp_reg_save > 11);
16411
16412 emit_move_insn (r0, gen_rtx_REG (Pmode, 11));
16413 }
16414
16415 spe_save_area_ptr = gen_rtx_REG (Pmode, 11);
16416 insn = emit_insn (gen_addsi3 (spe_save_area_ptr,
16417 frame_reg_rtx,
16418 GEN_INT (offset)));
16419 /* We need to make sure the move to r11 gets noted for
16420 properly outputting unwind information. */
16421 if (!saving_GPRs_inline)
16422 rs6000_frame_related (insn, frame_reg_rtx, offset,
16423 NULL_RTX, NULL_RTX);
16424 spe_offset = 0;
16425 }
16426
16427 if (saving_GPRs_inline)
16428 {
16429 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
16430 if (rs6000_reg_live_or_pic_offset_p (info->first_gp_reg_save + i))
16431 {
16432 rtx reg = gen_rtx_REG (reg_mode, info->first_gp_reg_save + i);
16433 rtx offset, addr, mem;
f676971a 16434
f78c3290
NF
16435 /* We're doing all this to ensure that the offset fits into
16436 the immediate offset of 'evstdd'. */
16437 gcc_assert (SPE_CONST_OFFSET_OK (reg_size * i + spe_offset));
16438
16439 offset = GEN_INT (reg_size * i + spe_offset);
16440 addr = gen_rtx_PLUS (Pmode, spe_save_area_ptr, offset);
16441 mem = gen_rtx_MEM (V2SImode, addr);
16442
16443 insn = emit_move_insn (mem, reg);
16444
16445 rs6000_frame_related (insn, spe_save_area_ptr,
16446 info->spe_gp_save_offset
16447 + sp_offset + reg_size * i,
16448 offset, const0_rtx);
16449 }
16450 }
16451 else
9ebbca7d 16452 {
f78c3290 16453 rtx par;
9ebbca7d 16454
f78c3290
NF
16455 par = rs6000_make_savres_rtx (info, gen_rtx_REG (Pmode, 11),
16456 0, reg_mode,
16457 /*savep=*/true, /*gpr=*/true,
16458 /*exitp=*/false);
16459 insn = emit_insn (par);
16460 rs6000_frame_related (insn, frame_ptr_rtx, info->total_size,
16461 NULL_RTX, NULL_RTX);
9ebbca7d 16462 }
f78c3290
NF
16463
16464
16465 /* Move the static chain pointer back. */
16466 if (using_static_chain_p && !spe_regs_addressable_via_sp)
16467 emit_move_insn (gen_rtx_REG (Pmode, 11), gen_rtx_REG (Pmode, 0));
16468 }
16469 else if (!WORLD_SAVE_P (info) && !saving_GPRs_inline)
16470 {
16471 rtx par;
16472
16473 /* Need to adjust r11 if we saved any FPRs. */
16474 if (info->first_fp_reg_save != 64)
16475 {
16476 rtx r11 = gen_rtx_REG (reg_mode, 11);
16477 rtx offset = GEN_INT (info->total_size
16478 + (-8 * (64-info->first_fp_reg_save)));
16479 rtx ptr_reg = (sp_reg_rtx == frame_reg_rtx
16480 ? sp_reg_rtx : r11);
16481
16482 emit_insn (TARGET_32BIT
16483 ? gen_addsi3 (r11, ptr_reg, offset)
16484 : gen_adddi3 (r11, ptr_reg, offset));
16485 }
16486
16487 par = rs6000_make_savres_rtx (info, frame_reg_rtx,
16488 info->gp_save_offset + sp_offset,
16489 reg_mode,
16490 /*savep=*/true, /*gpr=*/true,
16491 /*exitp=*/false);
16492 insn = emit_insn (par);
f676971a 16493 rs6000_frame_related (insn, frame_ptr_rtx, info->total_size,
9ebbca7d
GK
16494 NULL_RTX, NULL_RTX);
16495 }
f78c3290 16496 else if (!WORLD_SAVE_P (info) && using_store_multiple)
b6c9286a 16497 {
308c142a 16498 rtvec p;
9ebbca7d
GK
16499 int i;
16500 p = rtvec_alloc (32 - info->first_gp_reg_save);
9ebbca7d
GK
16501 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
16502 {
16503 rtx addr, reg, mem;
16504 reg = gen_rtx_REG (reg_mode, info->first_gp_reg_save + i);
f676971a
EC
16505 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
16506 GEN_INT (info->gp_save_offset
16507 + sp_offset
9ebbca7d 16508 + reg_size * i));
0be76840 16509 mem = gen_frame_mem (reg_mode, addr);
9ebbca7d
GK
16510
16511 RTVEC_ELT (p, i) = gen_rtx_SET (VOIDmode, mem, reg);
16512 }
16513 insn = emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
f676971a 16514 rs6000_frame_related (insn, frame_ptr_rtx, info->total_size,
9ebbca7d 16515 NULL_RTX, NULL_RTX);
b6c9286a 16516 }
f57fe068 16517 else if (!WORLD_SAVE_P (info))
b6c9286a 16518 {
9ebbca7d
GK
16519 int i;
16520 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
52ff33d0
NF
16521 if (rs6000_reg_live_or_pic_offset_p (info->first_gp_reg_save + i))
16522 {
16523 rtx addr, reg, mem;
16524 reg = gen_rtx_REG (reg_mode, info->first_gp_reg_save + i);
a3170dc6 16525
52ff33d0
NF
16526 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
16527 GEN_INT (info->gp_save_offset
16528 + sp_offset
16529 + reg_size * i));
16530 mem = gen_frame_mem (reg_mode, addr);
a3170dc6 16531
52ff33d0
NF
16532 insn = emit_move_insn (mem, reg);
16533 rs6000_frame_related (insn, frame_ptr_rtx, info->total_size,
16534 NULL_RTX, NULL_RTX);
16535 }
9ebbca7d
GK
16536 }
16537
83720594
RH
16538 /* ??? There's no need to emit actual instructions here, but it's the
16539 easiest way to get the frame unwind information emitted. */
e3b5732b 16540 if (crtl->calls_eh_return)
83720594 16541 {
78e1b90d
DE
16542 unsigned int i, regno;
16543
fc4767bb
JJ
16544 /* In AIX ABI we need to pretend we save r2 here. */
16545 if (TARGET_AIX)
16546 {
16547 rtx addr, reg, mem;
16548
16549 reg = gen_rtx_REG (reg_mode, 2);
16550 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
16551 GEN_INT (sp_offset + 5 * reg_size));
0be76840 16552 mem = gen_frame_mem (reg_mode, addr);
fc4767bb
JJ
16553
16554 insn = emit_move_insn (mem, reg);
f676971a 16555 rs6000_frame_related (insn, frame_ptr_rtx, info->total_size,
fc4767bb
JJ
16556 NULL_RTX, NULL_RTX);
16557 PATTERN (insn) = gen_blockage ();
16558 }
16559
83720594
RH
16560 for (i = 0; ; ++i)
16561 {
83720594
RH
16562 regno = EH_RETURN_DATA_REGNO (i);
16563 if (regno == INVALID_REGNUM)
16564 break;
16565
89e7058f
AH
16566 emit_frame_save (frame_reg_rtx, frame_ptr_rtx, reg_mode, regno,
16567 info->ehrd_offset + sp_offset
16568 + reg_size * (int) i,
16569 info->total_size);
83720594
RH
16570 }
16571 }
16572
9ebbca7d 16573 /* Save CR if we use any that must be preserved. */
f57fe068 16574 if (!WORLD_SAVE_P (info) && info->cr_save_p)
9ebbca7d
GK
16575 {
16576 rtx addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
16577 GEN_INT (info->cr_save_offset + sp_offset));
0be76840 16578 rtx mem = gen_frame_mem (SImode, addr);
f8a57be8
GK
16579 /* See the large comment above about why CR2_REGNO is used. */
16580 rtx magic_eh_cr_reg = gen_rtx_REG (SImode, CR2_REGNO);
ba4828e0 16581
9ebbca7d
GK
16582 /* If r12 was used to hold the original sp, copy cr into r0 now
16583 that it's free. */
16584 if (REGNO (frame_reg_rtx) == 12)
16585 {
f8a57be8
GK
16586 rtx set;
16587
9ebbca7d 16588 cr_save_rtx = gen_rtx_REG (SImode, 0);
f8a57be8
GK
16589 insn = emit_insn (gen_movesi_from_cr (cr_save_rtx));
16590 RTX_FRAME_RELATED_P (insn) = 1;
16591 set = gen_rtx_SET (VOIDmode, cr_save_rtx, magic_eh_cr_reg);
16592 REG_NOTES (insn) = gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
16593 set,
16594 REG_NOTES (insn));
f676971a 16595
9ebbca7d
GK
16596 }
16597 insn = emit_move_insn (mem, cr_save_rtx);
16598
f676971a 16599 rs6000_frame_related (insn, frame_ptr_rtx, info->total_size,
f8a57be8 16600 NULL_RTX, NULL_RTX);
9ebbca7d
GK
16601 }
16602
f676971a 16603 /* Update stack and set back pointer unless this is V.4,
9ebbca7d 16604 for which it was done previously. */
f57fe068 16605 if (!WORLD_SAVE_P (info) && info->push_p
e3b5732b 16606 && !(DEFAULT_ABI == ABI_V4 || crtl->calls_eh_return))
2b2c2fe5 16607 {
bcb2d701 16608 if (info->total_size < 32767)
2b2c2fe5 16609 sp_offset = info->total_size;
bcb2d701
EC
16610 else
16611 frame_reg_rtx = frame_ptr_rtx;
16612 rs6000_emit_allocate_stack (info->total_size,
16613 (frame_reg_rtx != sp_reg_rtx
16614 && ((info->altivec_size != 0)
16615 || (info->vrsave_mask != 0)
f78c3290
NF
16616 )),
16617 FALSE);
bcb2d701
EC
16618 if (frame_reg_rtx != sp_reg_rtx)
16619 rs6000_emit_stack_tie ();
2b2c2fe5 16620 }
9ebbca7d
GK
16621
16622 /* Set frame pointer, if needed. */
16623 if (frame_pointer_needed)
16624 {
7d5175e1 16625 insn = emit_move_insn (gen_rtx_REG (Pmode, HARD_FRAME_POINTER_REGNUM),
9ebbca7d
GK
16626 sp_reg_rtx);
16627 RTX_FRAME_RELATED_P (insn) = 1;
b6c9286a 16628 }
9878760c 16629
2b2c2fe5
EC
16630 /* Save AltiVec registers if needed. Save here because the red zone does
16631 not include AltiVec registers. */
16632 if (!WORLD_SAVE_P (info) && TARGET_ALTIVEC_ABI && info->altivec_size != 0)
16633 {
16634 int i;
16635
16636 /* There should be a non inline version of this, for when we
16637 are saving lots of vector registers. */
16638 for (i = info->first_altivec_reg_save; i <= LAST_ALTIVEC_REGNO; ++i)
16639 if (info->vrsave_mask & ALTIVEC_REG_BIT (i))
16640 {
16641 rtx areg, savereg, mem;
16642 int offset;
16643
16644 offset = info->altivec_save_offset + sp_offset
16645 + 16 * (i - info->first_altivec_reg_save);
16646
16647 savereg = gen_rtx_REG (V4SImode, i);
16648
16649 areg = gen_rtx_REG (Pmode, 0);
16650 emit_move_insn (areg, GEN_INT (offset));
16651
16652 /* AltiVec addressing mode is [reg+reg]. */
16653 mem = gen_frame_mem (V4SImode,
16654 gen_rtx_PLUS (Pmode, frame_reg_rtx, areg));
16655
16656 insn = emit_move_insn (mem, savereg);
16657
16658 rs6000_frame_related (insn, frame_ptr_rtx, info->total_size,
16659 areg, GEN_INT (offset));
16660 }
16661 }
16662
16663 /* VRSAVE is a bit vector representing which AltiVec registers
16664 are used. The OS uses this to determine which vector
16665 registers to save on a context switch. We need to save
16666 VRSAVE on the stack frame, add whatever AltiVec registers we
16667 used in this function, and do the corresponding magic in the
16668 epilogue. */
16669
16670 if (TARGET_ALTIVEC && TARGET_ALTIVEC_VRSAVE
16671 && info->vrsave_mask != 0)
16672 {
16673 rtx reg, mem, vrsave;
16674 int offset;
16675
16676 /* Get VRSAVE onto a GPR. Note that ABI_V4 might be using r12
16677 as frame_reg_rtx and r11 as the static chain pointer for
16678 nested functions. */
16679 reg = gen_rtx_REG (SImode, 0);
16680 vrsave = gen_rtx_REG (SImode, VRSAVE_REGNO);
16681 if (TARGET_MACHO)
16682 emit_insn (gen_get_vrsave_internal (reg));
16683 else
16684 emit_insn (gen_rtx_SET (VOIDmode, reg, vrsave));
16685
16686 if (!WORLD_SAVE_P (info))
16687 {
16688 /* Save VRSAVE. */
16689 offset = info->vrsave_save_offset + sp_offset;
16690 mem = gen_frame_mem (SImode,
16691 gen_rtx_PLUS (Pmode, frame_reg_rtx,
16692 GEN_INT (offset)));
16693 insn = emit_move_insn (mem, reg);
16694 }
16695
16696 /* Include the registers in the mask. */
16697 emit_insn (gen_iorsi3 (reg, reg, GEN_INT ((int) info->vrsave_mask)));
16698
16699 insn = emit_insn (generate_set_vrsave (reg, info, 0));
16700 }
16701
1db02437 16702 /* If we are using RS6000_PIC_OFFSET_TABLE_REGNUM, we need to set it up. */
9ebbca7d 16703 if ((TARGET_TOC && TARGET_MINIMAL_TOC && get_pool_size () != 0)
7f970b70
AM
16704 || (DEFAULT_ABI == ABI_V4
16705 && (flag_pic == 1 || (flag_pic && TARGET_SECURE_PLT))
6fb5fa3c 16706 && df_regs_ever_live_p (RS6000_PIC_OFFSET_TABLE_REGNUM)))
c4ad648e
AM
16707 {
16708 /* If emit_load_toc_table will use the link register, we need to save
16709 it. We use R12 for this purpose because emit_load_toc_table
16710 can use register 0. This allows us to use a plain 'blr' to return
16711 from the procedure more often. */
16712 int save_LR_around_toc_setup = (TARGET_ELF
16713 && DEFAULT_ABI != ABI_AIX
16714 && flag_pic
16715 && ! info->lr_save_p
16716 && EDGE_COUNT (EXIT_BLOCK_PTR->preds) > 0);
16717 if (save_LR_around_toc_setup)
16718 {
1de43f85 16719 rtx lr = gen_rtx_REG (Pmode, LR_REGNO);
f8a57be8 16720
c4ad648e 16721 insn = emit_move_insn (frame_ptr_rtx, lr);
c4ad648e 16722 RTX_FRAME_RELATED_P (insn) = 1;
f8a57be8 16723
c4ad648e 16724 rs6000_emit_load_toc_table (TRUE);
f8a57be8 16725
c4ad648e 16726 insn = emit_move_insn (lr, frame_ptr_rtx);
c4ad648e
AM
16727 RTX_FRAME_RELATED_P (insn) = 1;
16728 }
16729 else
16730 rs6000_emit_load_toc_table (TRUE);
16731 }
ee890fe2 16732
fcce224d 16733#if TARGET_MACHO
ee890fe2 16734 if (DEFAULT_ABI == ABI_DARWIN
e3b5732b 16735 && flag_pic && crtl->uses_pic_offset_table)
ee890fe2 16736 {
1de43f85 16737 rtx lr = gen_rtx_REG (Pmode, LR_REGNO);
08a6a74b 16738 rtx src = gen_rtx_SYMBOL_REF (Pmode, MACHOPIC_FUNCTION_BASE_NAME);
ee890fe2 16739
6d0a8091
DJ
16740 /* Save and restore LR locally around this call (in R0). */
16741 if (!info->lr_save_p)
6fb5fa3c 16742 emit_move_insn (gen_rtx_REG (Pmode, 0), lr);
6d0a8091 16743
6fb5fa3c 16744 emit_insn (gen_load_macho_picbase (src));
ee890fe2 16745
6fb5fa3c
DB
16746 emit_move_insn (gen_rtx_REG (Pmode,
16747 RS6000_PIC_OFFSET_TABLE_REGNUM),
16748 lr);
6d0a8091
DJ
16749
16750 if (!info->lr_save_p)
6fb5fa3c 16751 emit_move_insn (lr, gen_rtx_REG (Pmode, 0));
ee890fe2 16752 }
fcce224d 16753#endif
9ebbca7d
GK
16754}
16755
9ebbca7d 16756/* Write function prologue. */
a4f6c312 16757
08c148a8 16758static void
f676971a 16759rs6000_output_function_prologue (FILE *file,
a2369ed3 16760 HOST_WIDE_INT size ATTRIBUTE_UNUSED)
9ebbca7d
GK
16761{
16762 rs6000_stack_t *info = rs6000_stack_info ();
16763
4697a36c
MM
16764 if (TARGET_DEBUG_STACK)
16765 debug_stack_info (info);
9878760c 16766
a4f6c312
SS
16767 /* Write .extern for any function we will call to save and restore
16768 fp values. */
16769 if (info->first_fp_reg_save < 64
16770 && !FP_SAVE_INLINE (info->first_fp_reg_save))
4d30c363 16771 fprintf (file, "\t.extern %s%d%s\n\t.extern %s%d%s\n",
4697a36c 16772 SAVE_FP_PREFIX, info->first_fp_reg_save - 32, SAVE_FP_SUFFIX,
f78c3290 16773 RESTORE_FP_PREFIX, info->first_fp_reg_save - 32, RESTORE_FP_SUFFIX);
9878760c 16774
c764f757
RK
16775 /* Write .extern for AIX common mode routines, if needed. */
16776 if (! TARGET_POWER && ! TARGET_POWERPC && ! common_mode_defined)
16777 {
f6709c70
JW
16778 fputs ("\t.extern __mulh\n", file);
16779 fputs ("\t.extern __mull\n", file);
16780 fputs ("\t.extern __divss\n", file);
16781 fputs ("\t.extern __divus\n", file);
16782 fputs ("\t.extern __quoss\n", file);
16783 fputs ("\t.extern __quous\n", file);
c764f757
RK
16784 common_mode_defined = 1;
16785 }
9878760c 16786
9ebbca7d 16787 if (! HAVE_prologue)
979721f8 16788 {
9ebbca7d 16789 start_sequence ();
9dda4cc8 16790
a4f6c312
SS
16791 /* A NOTE_INSN_DELETED is supposed to be at the start and end of
16792 the "toplevel" insn chain. */
2e040219 16793 emit_note (NOTE_INSN_DELETED);
9ebbca7d 16794 rs6000_emit_prologue ();
2e040219 16795 emit_note (NOTE_INSN_DELETED);
178c3eff 16796
a3c9585f 16797 /* Expand INSN_ADDRESSES so final() doesn't crash. */
178c3eff
DJ
16798 {
16799 rtx insn;
16800 unsigned addr = 0;
16801 for (insn = get_insns (); insn != 0; insn = NEXT_INSN (insn))
16802 {
16803 INSN_ADDRESSES_NEW (insn, addr);
16804 addr += 4;
16805 }
16806 }
9dda4cc8 16807
9ebbca7d 16808 if (TARGET_DEBUG_STACK)
a4f6c312 16809 debug_rtx_list (get_insns (), 100);
c9d691e9 16810 final (get_insns (), file, FALSE);
9ebbca7d 16811 end_sequence ();
979721f8
MM
16812 }
16813
9ebbca7d
GK
16814 rs6000_pic_labelno++;
16815}
f676971a 16816
1c9c5e43
AM
16817/* Non-zero if vmx regs are restored before the frame pop, zero if
16818 we restore after the pop when possible. */
16819#define ALWAYS_RESTORE_ALTIVEC_BEFORE_POP 0
16820
f78c3290
NF
16821/* Reload CR from REG. */
16822
16823static void
16824rs6000_restore_saved_cr (rtx reg, int using_mfcr_multiple)
16825{
16826 int count = 0;
16827 int i;
16828
16829 if (using_mfcr_multiple)
16830 {
16831 for (i = 0; i < 8; i++)
16832 if (df_regs_ever_live_p (CR0_REGNO+i) && ! call_used_regs[CR0_REGNO+i])
16833 count++;
16834 gcc_assert (count);
16835 }
16836
16837 if (using_mfcr_multiple && count > 1)
16838 {
16839 rtvec p;
16840 int ndx;
16841
16842 p = rtvec_alloc (count);
16843
16844 ndx = 0;
16845 for (i = 0; i < 8; i++)
16846 if (df_regs_ever_live_p (CR0_REGNO+i) && ! call_used_regs[CR0_REGNO+i])
16847 {
16848 rtvec r = rtvec_alloc (2);
16849 RTVEC_ELT (r, 0) = reg;
16850 RTVEC_ELT (r, 1) = GEN_INT (1 << (7-i));
16851 RTVEC_ELT (p, ndx) =
16852 gen_rtx_SET (VOIDmode, gen_rtx_REG (CCmode, CR0_REGNO+i),
16853 gen_rtx_UNSPEC (CCmode, r, UNSPEC_MOVESI_TO_CR));
16854 ndx++;
16855 }
16856 emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
16857 gcc_assert (ndx == count);
16858 }
16859 else
16860 for (i = 0; i < 8; i++)
16861 if (df_regs_ever_live_p (CR0_REGNO+i) && ! call_used_regs[CR0_REGNO+i])
16862 {
16863 emit_insn (gen_movsi_to_cr_one (gen_rtx_REG (CCmode,
16864 CR0_REGNO+i),
16865 reg));
16866 }
16867}
16868
9ebbca7d 16869/* Emit function epilogue as insns.
9878760c 16870
9ebbca7d
GK
16871 At present, dwarf2out_frame_debug_expr doesn't understand
16872 register restores, so we don't bother setting RTX_FRAME_RELATED_P
16873 anywhere in the epilogue. Most of the insns below would in any case
16874 need special notes to explain where r11 is in relation to the stack. */
9878760c 16875
9ebbca7d 16876void
a2369ed3 16877rs6000_emit_epilogue (int sibcall)
9ebbca7d
GK
16878{
16879 rs6000_stack_t *info;
f78c3290 16880 int restoring_GPRs_inline;
9ebbca7d
GK
16881 int restoring_FPRs_inline;
16882 int using_load_multiple;
d296e02e 16883 int using_mtcr_multiple;
9ebbca7d 16884 int use_backchain_to_restore_sp;
f78c3290
NF
16885 int restore_lr;
16886 int strategy;
9ebbca7d
GK
16887 int sp_offset = 0;
16888 rtx sp_reg_rtx = gen_rtx_REG (Pmode, 1);
16889 rtx frame_reg_rtx = sp_reg_rtx;
0e67400a 16890 enum machine_mode reg_mode = Pmode;
327e5343 16891 int reg_size = TARGET_32BIT ? 4 : 8;
9ebbca7d
GK
16892 int i;
16893
c19de7aa
AH
16894 info = rs6000_stack_info ();
16895
16896 if (TARGET_SPE_ABI && info->spe_64bit_regs_used != 0)
a3170dc6
AH
16897 {
16898 reg_mode = V2SImode;
16899 reg_size = 8;
16900 }
16901
f78c3290
NF
16902 strategy = rs6000_savres_strategy (info, /*savep=*/false,
16903 /*static_chain_p=*/0, sibcall);
16904 using_load_multiple = strategy & SAVRES_MULTIPLE;
16905 restoring_FPRs_inline = strategy & SAVRES_INLINE_FPRS;
16906 restoring_GPRs_inline = strategy & SAVRES_INLINE_GPRS;
d296e02e 16907 using_mtcr_multiple = (rs6000_cpu == PROCESSOR_PPC601
9ebbca7d
GK
16908 || rs6000_cpu == PROCESSOR_PPC603
16909 || rs6000_cpu == PROCESSOR_PPC750
16910 || optimize_size);
1c9c5e43
AM
16911 /* Restore via the backchain when we have a large frame, since this
16912 is more efficient than an addis, addi pair. The second condition
16913 here will not trigger at the moment; We don't actually need a
16914 frame pointer for alloca, but the generic parts of the compiler
16915 give us one anyway. */
16916 use_backchain_to_restore_sp = (info->total_size > 32767
d2492102
AP
16917 || info->total_size
16918 + (info->lr_save_p ? info->lr_save_offset : 0)
16919 > 32767
1c9c5e43
AM
16920 || (cfun->calls_alloca
16921 && !frame_pointer_needed));
f78c3290
NF
16922 restore_lr = (info->lr_save_p
16923 && restoring_GPRs_inline
16924 && restoring_FPRs_inline);
9ebbca7d 16925
f57fe068 16926 if (WORLD_SAVE_P (info))
d62294f5
FJ
16927 {
16928 int i, j;
16929 char rname[30];
16930 const char *alloc_rname;
16931 rtvec p;
16932
16933 /* eh_rest_world_r10 will return to the location saved in the LR
c4ad648e
AM
16934 stack slot (which is not likely to be our caller.)
16935 Input: R10 -- stack adjustment. Clobbers R0, R11, R12, R7, R8.
16936 rest_world is similar, except any R10 parameter is ignored.
16937 The exception-handling stuff that was here in 2.95 is no
16938 longer necessary. */
d62294f5
FJ
16939
16940 p = rtvec_alloc (9
16941 + 1
f676971a 16942 + 32 - info->first_gp_reg_save
c4ad648e
AM
16943 + LAST_ALTIVEC_REGNO + 1 - info->first_altivec_reg_save
16944 + 63 + 1 - info->first_fp_reg_save);
d62294f5 16945
e3b5732b 16946 strcpy (rname, ((crtl->calls_eh_return) ?
c4ad648e 16947 "*eh_rest_world_r10" : "*rest_world"));
d62294f5
FJ
16948 alloc_rname = ggc_strdup (rname);
16949
16950 j = 0;
16951 RTVEC_ELT (p, j++) = gen_rtx_RETURN (VOIDmode);
16952 RTVEC_ELT (p, j++) = gen_rtx_USE (VOIDmode,
c4ad648e 16953 gen_rtx_REG (Pmode,
1de43f85 16954 LR_REGNO));
d62294f5 16955 RTVEC_ELT (p, j++)
c4ad648e 16956 = gen_rtx_USE (VOIDmode, gen_rtx_SYMBOL_REF (Pmode, alloc_rname));
d62294f5 16957 /* The instruction pattern requires a clobber here;
c4ad648e 16958 it is shared with the restVEC helper. */
d62294f5 16959 RTVEC_ELT (p, j++)
c4ad648e 16960 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, 11));
d62294f5
FJ
16961
16962 {
c4ad648e
AM
16963 /* CR register traditionally saved as CR2. */
16964 rtx reg = gen_rtx_REG (reg_mode, CR2_REGNO);
16965 rtx addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
16966 GEN_INT (info->cr_save_offset));
0be76840 16967 rtx mem = gen_frame_mem (reg_mode, addr);
c4ad648e
AM
16968
16969 RTVEC_ELT (p, j++) = gen_rtx_SET (VOIDmode, reg, mem);
d62294f5
FJ
16970 }
16971
16972 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
c4ad648e
AM
16973 {
16974 rtx reg = gen_rtx_REG (reg_mode, info->first_gp_reg_save + i);
16975 rtx addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
16976 GEN_INT (info->gp_save_offset
16977 + reg_size * i));
0be76840 16978 rtx mem = gen_frame_mem (reg_mode, addr);
c4ad648e
AM
16979
16980 RTVEC_ELT (p, j++) = gen_rtx_SET (VOIDmode, reg, mem);
16981 }
d62294f5 16982 for (i = 0; info->first_altivec_reg_save + i <= LAST_ALTIVEC_REGNO; i++)
c4ad648e
AM
16983 {
16984 rtx reg = gen_rtx_REG (V4SImode, info->first_altivec_reg_save + i);
16985 rtx addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
16986 GEN_INT (info->altivec_save_offset
16987 + 16 * i));
0be76840 16988 rtx mem = gen_frame_mem (V4SImode, addr);
c4ad648e
AM
16989
16990 RTVEC_ELT (p, j++) = gen_rtx_SET (VOIDmode, reg, mem);
16991 }
d62294f5 16992 for (i = 0; info->first_fp_reg_save + i <= 63; i++)
c4ad648e 16993 {
696e45ba
ME
16994 rtx reg = gen_rtx_REG (((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
16995 ? DFmode : SFmode),
16996 info->first_fp_reg_save + i);
c4ad648e
AM
16997 rtx addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
16998 GEN_INT (info->fp_save_offset
16999 + 8 * i));
696e45ba
ME
17000 rtx mem = gen_frame_mem (((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
17001 ? DFmode : SFmode), addr);
c4ad648e
AM
17002
17003 RTVEC_ELT (p, j++) = gen_rtx_SET (VOIDmode, reg, mem);
17004 }
d62294f5 17005 RTVEC_ELT (p, j++)
c4ad648e 17006 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, 0));
d62294f5 17007 RTVEC_ELT (p, j++)
c4ad648e 17008 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, 12));
d62294f5 17009 RTVEC_ELT (p, j++)
c4ad648e 17010 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, 7));
d62294f5 17011 RTVEC_ELT (p, j++)
c4ad648e 17012 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, 8));
d62294f5 17013 RTVEC_ELT (p, j++)
c4ad648e 17014 = gen_rtx_USE (VOIDmode, gen_rtx_REG (SImode, 10));
d62294f5
FJ
17015 emit_jump_insn (gen_rtx_PARALLEL (VOIDmode, p));
17016
17017 return;
17018 }
17019
45b194f8
AM
17020 /* frame_reg_rtx + sp_offset points to the top of this stack frame. */
17021 if (info->push_p)
2b2c2fe5 17022 sp_offset = info->total_size;
f676971a 17023
e6477eaa
AM
17024 /* Restore AltiVec registers if we must do so before adjusting the
17025 stack. */
17026 if (TARGET_ALTIVEC_ABI
17027 && info->altivec_size != 0
1c9c5e43
AM
17028 && (ALWAYS_RESTORE_ALTIVEC_BEFORE_POP
17029 || (DEFAULT_ABI != ABI_V4
17030 && info->altivec_save_offset < (TARGET_32BIT ? -220 : -288))))
9aa86737
AH
17031 {
17032 int i;
17033
e6477eaa
AM
17034 if (use_backchain_to_restore_sp)
17035 {
17036 frame_reg_rtx = gen_rtx_REG (Pmode, 11);
17037 emit_move_insn (frame_reg_rtx,
17038 gen_rtx_MEM (Pmode, sp_reg_rtx));
17039 sp_offset = 0;
17040 }
1c9c5e43
AM
17041 else if (frame_pointer_needed)
17042 frame_reg_rtx = hard_frame_pointer_rtx;
e6477eaa 17043
9aa86737
AH
17044 for (i = info->first_altivec_reg_save; i <= LAST_ALTIVEC_REGNO; ++i)
17045 if (info->vrsave_mask & ALTIVEC_REG_BIT (i))
17046 {
17047 rtx addr, areg, mem;
17048
17049 areg = gen_rtx_REG (Pmode, 0);
17050 emit_move_insn
17051 (areg, GEN_INT (info->altivec_save_offset
17052 + sp_offset
17053 + 16 * (i - info->first_altivec_reg_save)));
17054
17055 /* AltiVec addressing mode is [reg+reg]. */
17056 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx, areg);
0be76840 17057 mem = gen_frame_mem (V4SImode, addr);
9aa86737
AH
17058
17059 emit_move_insn (gen_rtx_REG (V4SImode, i), mem);
17060 }
17061 }
17062
e6477eaa
AM
17063 /* Restore VRSAVE if we must do so before adjusting the stack. */
17064 if (TARGET_ALTIVEC
17065 && TARGET_ALTIVEC_VRSAVE
17066 && info->vrsave_mask != 0
1c9c5e43
AM
17067 && (ALWAYS_RESTORE_ALTIVEC_BEFORE_POP
17068 || (DEFAULT_ABI != ABI_V4
17069 && info->vrsave_save_offset < (TARGET_32BIT ? -220 : -288))))
e6477eaa
AM
17070 {
17071 rtx addr, mem, reg;
17072
1c9c5e43 17073 if (frame_reg_rtx == sp_reg_rtx)
e6477eaa 17074 {
1c9c5e43
AM
17075 if (use_backchain_to_restore_sp)
17076 {
17077 frame_reg_rtx = gen_rtx_REG (Pmode, 11);
17078 emit_move_insn (frame_reg_rtx,
17079 gen_rtx_MEM (Pmode, sp_reg_rtx));
17080 sp_offset = 0;
17081 }
17082 else if (frame_pointer_needed)
17083 frame_reg_rtx = hard_frame_pointer_rtx;
e6477eaa
AM
17084 }
17085
17086 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
17087 GEN_INT (info->vrsave_save_offset + sp_offset));
17088 mem = gen_frame_mem (SImode, addr);
17089 reg = gen_rtx_REG (SImode, 12);
17090 emit_move_insn (reg, mem);
17091
17092 emit_insn (generate_set_vrsave (reg, info, 1));
17093 }
17094
1c9c5e43
AM
17095 /* If we have a large stack frame, restore the old stack pointer
17096 using the backchain. */
2b2c2fe5
EC
17097 if (use_backchain_to_restore_sp)
17098 {
1c9c5e43 17099 if (frame_reg_rtx == sp_reg_rtx)
e6477eaa
AM
17100 {
17101 /* Under V.4, don't reset the stack pointer until after we're done
17102 loading the saved registers. */
17103 if (DEFAULT_ABI == ABI_V4)
17104 frame_reg_rtx = gen_rtx_REG (Pmode, 11);
17105
17106 emit_move_insn (frame_reg_rtx,
17107 gen_rtx_MEM (Pmode, sp_reg_rtx));
17108 sp_offset = 0;
17109 }
1c9c5e43
AM
17110 else if (ALWAYS_RESTORE_ALTIVEC_BEFORE_POP
17111 && DEFAULT_ABI == ABI_V4)
17112 /* frame_reg_rtx has been set up by the altivec restore. */
17113 ;
17114 else
17115 {
17116 emit_move_insn (sp_reg_rtx, frame_reg_rtx);
17117 frame_reg_rtx = sp_reg_rtx;
17118 }
17119 }
17120 /* If we have a frame pointer, we can restore the old stack pointer
17121 from it. */
17122 else if (frame_pointer_needed)
17123 {
17124 frame_reg_rtx = sp_reg_rtx;
17125 if (DEFAULT_ABI == ABI_V4)
17126 frame_reg_rtx = gen_rtx_REG (Pmode, 11);
17127
17128 emit_insn (TARGET_32BIT
17129 ? gen_addsi3 (frame_reg_rtx, hard_frame_pointer_rtx,
17130 GEN_INT (info->total_size))
17131 : gen_adddi3 (frame_reg_rtx, hard_frame_pointer_rtx,
17132 GEN_INT (info->total_size)));
17133 sp_offset = 0;
2b2c2fe5 17134 }
45b194f8
AM
17135 else if (info->push_p
17136 && DEFAULT_ABI != ABI_V4
e3b5732b 17137 && !crtl->calls_eh_return)
2b2c2fe5 17138 {
45b194f8
AM
17139 emit_insn (TARGET_32BIT
17140 ? gen_addsi3 (sp_reg_rtx, sp_reg_rtx,
17141 GEN_INT (info->total_size))
17142 : gen_adddi3 (sp_reg_rtx, sp_reg_rtx,
17143 GEN_INT (info->total_size)));
17144 sp_offset = 0;
2b2c2fe5
EC
17145 }
17146
e6477eaa 17147 /* Restore AltiVec registers if we have not done so already. */
1c9c5e43
AM
17148 if (!ALWAYS_RESTORE_ALTIVEC_BEFORE_POP
17149 && TARGET_ALTIVEC_ABI
e6477eaa
AM
17150 && info->altivec_size != 0
17151 && (DEFAULT_ABI == ABI_V4
17152 || info->altivec_save_offset >= (TARGET_32BIT ? -220 : -288)))
17153 {
17154 int i;
17155
17156 for (i = info->first_altivec_reg_save; i <= LAST_ALTIVEC_REGNO; ++i)
17157 if (info->vrsave_mask & ALTIVEC_REG_BIT (i))
17158 {
17159 rtx addr, areg, mem;
17160
17161 areg = gen_rtx_REG (Pmode, 0);
17162 emit_move_insn
17163 (areg, GEN_INT (info->altivec_save_offset
17164 + sp_offset
17165 + 16 * (i - info->first_altivec_reg_save)));
17166
17167 /* AltiVec addressing mode is [reg+reg]. */
17168 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx, areg);
17169 mem = gen_frame_mem (V4SImode, addr);
17170
17171 emit_move_insn (gen_rtx_REG (V4SImode, i), mem);
17172 }
17173 }
17174
17175 /* Restore VRSAVE if we have not done so already. */
1c9c5e43
AM
17176 if (!ALWAYS_RESTORE_ALTIVEC_BEFORE_POP
17177 && TARGET_ALTIVEC
e6477eaa
AM
17178 && TARGET_ALTIVEC_VRSAVE
17179 && info->vrsave_mask != 0
17180 && (DEFAULT_ABI == ABI_V4
17181 || info->vrsave_save_offset >= (TARGET_32BIT ? -220 : -288)))
554c2941
AM
17182 {
17183 rtx addr, mem, reg;
17184
17185 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
17186 GEN_INT (info->vrsave_save_offset + sp_offset));
17187 mem = gen_frame_mem (SImode, addr);
17188 reg = gen_rtx_REG (SImode, 12);
17189 emit_move_insn (reg, mem);
17190
17191 emit_insn (generate_set_vrsave (reg, info, 1));
17192 }
17193
f78c3290
NF
17194 /* Get the old lr if we saved it. If we are restoring registers
17195 out-of-line, then the out-of-line routines can do this for us. */
17196 if (restore_lr)
b6c9286a 17197 {
a3170dc6
AH
17198 rtx mem = gen_frame_mem_offset (Pmode, frame_reg_rtx,
17199 info->lr_save_offset + sp_offset);
ba4828e0 17200
9ebbca7d 17201 emit_move_insn (gen_rtx_REG (Pmode, 0), mem);
b6c9286a 17202 }
f676971a 17203
9ebbca7d
GK
17204 /* Get the old cr if we saved it. */
17205 if (info->cr_save_p)
17206 {
17207 rtx addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
17208 GEN_INT (info->cr_save_offset + sp_offset));
0be76840 17209 rtx mem = gen_frame_mem (SImode, addr);
b6c9286a 17210
9ebbca7d
GK
17211 emit_move_insn (gen_rtx_REG (SImode, 12), mem);
17212 }
f676971a 17213
9ebbca7d 17214 /* Set LR here to try to overlap restores below. */
f78c3290 17215 if (restore_lr)
1de43f85 17216 emit_move_insn (gen_rtx_REG (Pmode, LR_REGNO),
9ebbca7d 17217 gen_rtx_REG (Pmode, 0));
f676971a 17218
83720594 17219 /* Load exception handler data registers, if needed. */
e3b5732b 17220 if (crtl->calls_eh_return)
83720594 17221 {
78e1b90d
DE
17222 unsigned int i, regno;
17223
fc4767bb
JJ
17224 if (TARGET_AIX)
17225 {
17226 rtx addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
17227 GEN_INT (sp_offset + 5 * reg_size));
0be76840 17228 rtx mem = gen_frame_mem (reg_mode, addr);
fc4767bb
JJ
17229
17230 emit_move_insn (gen_rtx_REG (reg_mode, 2), mem);
17231 }
17232
83720594
RH
17233 for (i = 0; ; ++i)
17234 {
a3170dc6 17235 rtx mem;
83720594
RH
17236
17237 regno = EH_RETURN_DATA_REGNO (i);
17238 if (regno == INVALID_REGNUM)
17239 break;
17240
a3170dc6
AH
17241 mem = gen_frame_mem_offset (reg_mode, frame_reg_rtx,
17242 info->ehrd_offset + sp_offset
17243 + reg_size * (int) i);
83720594
RH
17244
17245 emit_move_insn (gen_rtx_REG (reg_mode, regno), mem);
17246 }
17247 }
f676971a 17248
9ebbca7d
GK
17249 /* Restore GPRs. This is done as a PARALLEL if we are using
17250 the load-multiple instructions. */
f78c3290
NF
17251 if (TARGET_SPE_ABI
17252 && info->spe_64bit_regs_used != 0
17253 && info->first_gp_reg_save != 32)
52ff33d0 17254 {
52ff33d0
NF
17255 /* Determine whether we can address all of the registers that need
17256 to be saved with an offset from the stack pointer that fits in
17257 the small const field for SPE memory instructions. */
17258 int spe_regs_addressable_via_sp
f78c3290
NF
17259 = (SPE_CONST_OFFSET_OK(info->spe_gp_save_offset + sp_offset
17260 + (32 - info->first_gp_reg_save - 1) * reg_size)
17261 && restoring_GPRs_inline);
52ff33d0
NF
17262 int spe_offset;
17263
17264 if (spe_regs_addressable_via_sp)
45b194f8 17265 spe_offset = info->spe_gp_save_offset + sp_offset;
52ff33d0
NF
17266 else
17267 {
45b194f8 17268 rtx old_frame_reg_rtx = frame_reg_rtx;
52ff33d0 17269 /* Make r11 point to the start of the SPE save area. We worried about
6ed3da00 17270 not clobbering it when we were saving registers in the prologue.
52ff33d0
NF
17271 There's no need to worry here because the static chain is passed
17272 anew to every function. */
f78c3290
NF
17273 int ool_adjust = (restoring_GPRs_inline
17274 ? 0
17275 : (info->first_gp_reg_save
17276 - (FIRST_SAVRES_REGISTER+1))*8);
17277
45b194f8
AM
17278 if (frame_reg_rtx == sp_reg_rtx)
17279 frame_reg_rtx = gen_rtx_REG (Pmode, 11);
17280 emit_insn (gen_addsi3 (frame_reg_rtx, old_frame_reg_rtx,
f78c3290
NF
17281 GEN_INT (info->spe_gp_save_offset
17282 + sp_offset
17283 - ool_adjust)));
45b194f8
AM
17284 /* Keep the invariant that frame_reg_rtx + sp_offset points
17285 at the top of the stack frame. */
17286 sp_offset = -info->spe_gp_save_offset;
52ff33d0
NF
17287
17288 spe_offset = 0;
17289 }
17290
f78c3290
NF
17291 if (restoring_GPRs_inline)
17292 {
17293 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
17294 if (rs6000_reg_live_or_pic_offset_p (info->first_gp_reg_save + i))
17295 {
17296 rtx offset, addr, mem;
52ff33d0 17297
f78c3290
NF
17298 /* We're doing all this to ensure that the immediate offset
17299 fits into the immediate field of 'evldd'. */
17300 gcc_assert (SPE_CONST_OFFSET_OK (spe_offset + reg_size * i));
52ff33d0 17301
f78c3290
NF
17302 offset = GEN_INT (spe_offset + reg_size * i);
17303 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx, offset);
17304 mem = gen_rtx_MEM (V2SImode, addr);
52ff33d0 17305
f78c3290
NF
17306 emit_move_insn (gen_rtx_REG (reg_mode, info->first_gp_reg_save + i),
17307 mem);
17308 }
17309 }
17310 else
17311 {
17312 rtx par;
17313
17314 par = rs6000_make_savres_rtx (info, gen_rtx_REG (Pmode, 11),
17315 0, reg_mode,
17316 /*savep=*/false, /*gpr=*/true,
17317 /*exitp=*/true);
17318 emit_jump_insn (par);
17319
17320 /* We don't want anybody else emitting things after we jumped
17321 back. */
17322 return;
17323 }
52ff33d0 17324 }
f78c3290
NF
17325 else if (!restoring_GPRs_inline)
17326 {
17327 /* We are jumping to an out-of-line function. */
17328 bool can_use_exit = info->first_fp_reg_save == 64;
17329 rtx par;
17330
17331 /* Emit stack reset code if we need it. */
17332 if (can_use_exit)
17333 rs6000_emit_stack_reset (info, sp_reg_rtx, frame_reg_rtx,
17334 sp_offset, can_use_exit);
17335 else
17336 emit_insn (gen_addsi3 (gen_rtx_REG (Pmode, 11),
17337 sp_reg_rtx,
17338 GEN_INT (sp_offset - info->fp_size)));
17339
17340 par = rs6000_make_savres_rtx (info, frame_reg_rtx,
17341 info->gp_save_offset, reg_mode,
17342 /*savep=*/false, /*gpr=*/true,
17343 /*exitp=*/can_use_exit);
17344
17345 if (can_use_exit)
17346 {
17347 if (info->cr_save_p)
17348 rs6000_restore_saved_cr (gen_rtx_REG (SImode, 12),
17349 using_mtcr_multiple);
17350
17351 emit_jump_insn (par);
17352
17353 /* We don't want anybody else emitting things after we jumped
17354 back. */
17355 return;
17356 }
17357 else
17358 emit_insn (par);
17359 }
17360 else if (using_load_multiple)
17361 {
17362 rtvec p;
17363 p = rtvec_alloc (32 - info->first_gp_reg_save);
17364 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
9ebbca7d 17365 {
f676971a
EC
17366 rtx addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
17367 GEN_INT (info->gp_save_offset
17368 + sp_offset
9ebbca7d 17369 + reg_size * i));
0be76840 17370 rtx mem = gen_frame_mem (reg_mode, addr);
ba4828e0 17371
f78c3290
NF
17372 RTVEC_ELT (p, i) =
17373 gen_rtx_SET (VOIDmode,
17374 gen_rtx_REG (reg_mode, info->first_gp_reg_save + i),
17375 mem);
9ebbca7d 17376 }
f78c3290
NF
17377 emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
17378 }
17379 else
17380 {
17381 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
17382 if (rs6000_reg_live_or_pic_offset_p (info->first_gp_reg_save + i))
17383 {
17384 rtx addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
17385 GEN_INT (info->gp_save_offset
17386 + sp_offset
17387 + reg_size * i));
17388 rtx mem = gen_frame_mem (reg_mode, addr);
17389
17390 emit_move_insn (gen_rtx_REG (reg_mode,
17391 info->first_gp_reg_save + i), mem);
17392 }
17393 }
9878760c 17394
9ebbca7d
GK
17395 /* Restore fpr's if we need to do it without calling a function. */
17396 if (restoring_FPRs_inline)
17397 for (i = 0; i < 64 - info->first_fp_reg_save; i++)
6fb5fa3c 17398 if ((df_regs_ever_live_p (info->first_fp_reg_save+i)
9ebbca7d
GK
17399 && ! call_used_regs[info->first_fp_reg_save+i]))
17400 {
17401 rtx addr, mem;
17402 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
f676971a
EC
17403 GEN_INT (info->fp_save_offset
17404 + sp_offset
a4f6c312 17405 + 8 * i));
696e45ba
ME
17406 mem = gen_frame_mem (((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
17407 ? DFmode : SFmode), addr);
9ebbca7d 17408
696e45ba
ME
17409 emit_move_insn (gen_rtx_REG (((TARGET_HARD_FLOAT
17410 && TARGET_DOUBLE_FLOAT)
17411 ? DFmode : SFmode),
9ebbca7d
GK
17412 info->first_fp_reg_save + i),
17413 mem);
17414 }
8d30c4ee 17415
9ebbca7d
GK
17416 /* If we saved cr, restore it here. Just those that were used. */
17417 if (info->cr_save_p)
f78c3290 17418 rs6000_restore_saved_cr (gen_rtx_REG (SImode, 12), using_mtcr_multiple);
979721f8 17419
9ebbca7d 17420 /* If this is V.4, unwind the stack pointer after all of the loads
022123e6 17421 have been done. */
f78c3290
NF
17422 rs6000_emit_stack_reset (info, sp_reg_rtx, frame_reg_rtx,
17423 sp_offset, !restoring_FPRs_inline);
b6c9286a 17424
e3b5732b 17425 if (crtl->calls_eh_return)
83720594
RH
17426 {
17427 rtx sa = EH_RETURN_STACKADJ_RTX;
5b71a4e7 17428 emit_insn (TARGET_32BIT
83720594
RH
17429 ? gen_addsi3 (sp_reg_rtx, sp_reg_rtx, sa)
17430 : gen_adddi3 (sp_reg_rtx, sp_reg_rtx, sa));
17431 }
17432
9ebbca7d
GK
17433 if (!sibcall)
17434 {
17435 rtvec p;
17436 if (! restoring_FPRs_inline)
f78c3290 17437 p = rtvec_alloc (4 + 64 - info->first_fp_reg_save);
9ebbca7d
GK
17438 else
17439 p = rtvec_alloc (2);
b6c9286a 17440
e35b9579 17441 RTVEC_ELT (p, 0) = gen_rtx_RETURN (VOIDmode);
f78c3290
NF
17442 RTVEC_ELT (p, 1) = (restoring_FPRs_inline
17443 ? gen_rtx_USE (VOIDmode, gen_rtx_REG (Pmode, 65))
17444 : gen_rtx_CLOBBER (VOIDmode,
17445 gen_rtx_REG (Pmode, 65)));
9ebbca7d
GK
17446
17447 /* If we have to restore more than two FP registers, branch to the
17448 restore function. It will return to our caller. */
17449 if (! restoring_FPRs_inline)
17450 {
17451 int i;
f78c3290
NF
17452 rtx sym;
17453
17454 sym = rs6000_savres_routine_sym (info,
17455 /*savep=*/false,
17456 /*gpr=*/false,
17457 /*exitp=*/true);
17458 RTVEC_ELT (p, 2) = gen_rtx_USE (VOIDmode, sym);
17459 RTVEC_ELT (p, 3) = gen_rtx_USE (VOIDmode,
17460 gen_rtx_REG (Pmode, 11));
9ebbca7d
GK
17461 for (i = 0; i < 64 - info->first_fp_reg_save; i++)
17462 {
17463 rtx addr, mem;
17464 addr = gen_rtx_PLUS (Pmode, sp_reg_rtx,
17465 GEN_INT (info->fp_save_offset + 8*i));
0be76840 17466 mem = gen_frame_mem (DFmode, addr);
9ebbca7d 17467
f78c3290 17468 RTVEC_ELT (p, i+4) =
9ebbca7d
GK
17469 gen_rtx_SET (VOIDmode,
17470 gen_rtx_REG (DFmode, info->first_fp_reg_save + i),
17471 mem);
b6c9286a
MM
17472 }
17473 }
f676971a 17474
9ebbca7d 17475 emit_jump_insn (gen_rtx_PARALLEL (VOIDmode, p));
3daf36a4 17476 }
9878760c
RK
17477}
17478
17479/* Write function epilogue. */
17480
08c148a8 17481static void
f676971a 17482rs6000_output_function_epilogue (FILE *file,
a2369ed3 17483 HOST_WIDE_INT size ATTRIBUTE_UNUSED)
9878760c 17484{
9ebbca7d 17485 if (! HAVE_epilogue)
9878760c 17486 {
9ebbca7d
GK
17487 rtx insn = get_last_insn ();
17488 /* If the last insn was a BARRIER, we don't have to write anything except
17489 the trace table. */
17490 if (GET_CODE (insn) == NOTE)
17491 insn = prev_nonnote_insn (insn);
17492 if (insn == 0 || GET_CODE (insn) != BARRIER)
4697a36c 17493 {
9ebbca7d
GK
17494 /* This is slightly ugly, but at least we don't have two
17495 copies of the epilogue-emitting code. */
17496 start_sequence ();
17497
17498 /* A NOTE_INSN_DELETED is supposed to be at the start
17499 and end of the "toplevel" insn chain. */
2e040219 17500 emit_note (NOTE_INSN_DELETED);
9ebbca7d 17501 rs6000_emit_epilogue (FALSE);
2e040219 17502 emit_note (NOTE_INSN_DELETED);
9ebbca7d 17503
a3c9585f 17504 /* Expand INSN_ADDRESSES so final() doesn't crash. */
178c3eff
DJ
17505 {
17506 rtx insn;
17507 unsigned addr = 0;
17508 for (insn = get_insns (); insn != 0; insn = NEXT_INSN (insn))
17509 {
17510 INSN_ADDRESSES_NEW (insn, addr);
17511 addr += 4;
17512 }
17513 }
17514
9ebbca7d 17515 if (TARGET_DEBUG_STACK)
a4f6c312 17516 debug_rtx_list (get_insns (), 100);
c9d691e9 17517 final (get_insns (), file, FALSE);
9ebbca7d 17518 end_sequence ();
4697a36c 17519 }
9878760c 17520 }
b4ac57ab 17521
efdba735
SH
17522#if TARGET_MACHO
17523 macho_branch_islands ();
0e5da0be
GK
17524 /* Mach-O doesn't support labels at the end of objects, so if
17525 it looks like we might want one, insert a NOP. */
17526 {
17527 rtx insn = get_last_insn ();
17528 while (insn
17529 && NOTE_P (insn)
a38e7aa5 17530 && NOTE_KIND (insn) != NOTE_INSN_DELETED_LABEL)
0e5da0be 17531 insn = PREV_INSN (insn);
f676971a
EC
17532 if (insn
17533 && (LABEL_P (insn)
0e5da0be 17534 || (NOTE_P (insn)
a38e7aa5 17535 && NOTE_KIND (insn) == NOTE_INSN_DELETED_LABEL)))
0e5da0be
GK
17536 fputs ("\tnop\n", file);
17537 }
17538#endif
17539
9b30bae2 17540 /* Output a traceback table here. See /usr/include/sys/debug.h for info
314fc5a9
ILT
17541 on its format.
17542
17543 We don't output a traceback table if -finhibit-size-directive was
17544 used. The documentation for -finhibit-size-directive reads
17545 ``don't output a @code{.size} assembler directive, or anything
17546 else that would cause trouble if the function is split in the
17547 middle, and the two halves are placed at locations far apart in
17548 memory.'' The traceback table has this property, since it
17549 includes the offset from the start of the function to the
4d30c363
MM
17550 traceback table itself.
17551
17552 System V.4 Powerpc's (and the embedded ABI derived from it) use a
b6c9286a 17553 different traceback table. */
57ac7be9 17554 if (DEFAULT_ABI == ABI_AIX && ! flag_inhibit_size_directive
e3b5732b 17555 && rs6000_traceback != traceback_none && !crtl->is_thunk)
9b30bae2 17556 {
69c75916 17557 const char *fname = NULL;
3ac88239 17558 const char *language_string = lang_hooks.name;
6041bf2f 17559 int fixed_parms = 0, float_parms = 0, parm_info = 0;
314fc5a9 17560 int i;
57ac7be9 17561 int optional_tbtab;
8097c268 17562 rs6000_stack_t *info = rs6000_stack_info ();
57ac7be9
AM
17563
17564 if (rs6000_traceback == traceback_full)
17565 optional_tbtab = 1;
17566 else if (rs6000_traceback == traceback_part)
17567 optional_tbtab = 0;
17568 else
17569 optional_tbtab = !optimize_size && !TARGET_ELF;
314fc5a9 17570
69c75916
AM
17571 if (optional_tbtab)
17572 {
17573 fname = XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0);
17574 while (*fname == '.') /* V.4 encodes . in the name */
17575 fname++;
17576
17577 /* Need label immediately before tbtab, so we can compute
17578 its offset from the function start. */
17579 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "LT");
17580 ASM_OUTPUT_LABEL (file, fname);
17581 }
314fc5a9
ILT
17582
17583 /* The .tbtab pseudo-op can only be used for the first eight
17584 expressions, since it can't handle the possibly variable
17585 length fields that follow. However, if you omit the optional
17586 fields, the assembler outputs zeros for all optional fields
17587 anyways, giving each variable length field is minimum length
17588 (as defined in sys/debug.h). Thus we can not use the .tbtab
17589 pseudo-op at all. */
17590
17591 /* An all-zero word flags the start of the tbtab, for debuggers
17592 that have to find it by searching forward from the entry
17593 point or from the current pc. */
19d2d16f 17594 fputs ("\t.long 0\n", file);
314fc5a9
ILT
17595
17596 /* Tbtab format type. Use format type 0. */
19d2d16f 17597 fputs ("\t.byte 0,", file);
314fc5a9 17598
5fc921c1
DE
17599 /* Language type. Unfortunately, there does not seem to be any
17600 official way to discover the language being compiled, so we
17601 use language_string.
17602 C is 0. Fortran is 1. Pascal is 2. Ada is 3. C++ is 9.
56438901
AM
17603 Java is 13. Objective-C is 14. Objective-C++ isn't assigned
17604 a number, so for now use 9. */
5fc921c1 17605 if (! strcmp (language_string, "GNU C"))
314fc5a9 17606 i = 0;
6de9cd9a 17607 else if (! strcmp (language_string, "GNU F77")
7f62878c 17608 || ! strcmp (language_string, "GNU Fortran"))
314fc5a9 17609 i = 1;
8b83775b 17610 else if (! strcmp (language_string, "GNU Pascal"))
314fc5a9 17611 i = 2;
5fc921c1
DE
17612 else if (! strcmp (language_string, "GNU Ada"))
17613 i = 3;
56438901
AM
17614 else if (! strcmp (language_string, "GNU C++")
17615 || ! strcmp (language_string, "GNU Objective-C++"))
314fc5a9 17616 i = 9;
9517ead8
AG
17617 else if (! strcmp (language_string, "GNU Java"))
17618 i = 13;
5fc921c1
DE
17619 else if (! strcmp (language_string, "GNU Objective-C"))
17620 i = 14;
314fc5a9 17621 else
37409796 17622 gcc_unreachable ();
314fc5a9
ILT
17623 fprintf (file, "%d,", i);
17624
17625 /* 8 single bit fields: global linkage (not set for C extern linkage,
17626 apparently a PL/I convention?), out-of-line epilogue/prologue, offset
17627 from start of procedure stored in tbtab, internal function, function
17628 has controlled storage, function has no toc, function uses fp,
17629 function logs/aborts fp operations. */
17630 /* Assume that fp operations are used if any fp reg must be saved. */
6041bf2f
DE
17631 fprintf (file, "%d,",
17632 (optional_tbtab << 5) | ((info->first_fp_reg_save != 64) << 1));
314fc5a9
ILT
17633
17634 /* 6 bitfields: function is interrupt handler, name present in
17635 proc table, function calls alloca, on condition directives
17636 (controls stack walks, 3 bits), saves condition reg, saves
17637 link reg. */
17638 /* The `function calls alloca' bit seems to be set whenever reg 31 is
17639 set up as a frame pointer, even when there is no alloca call. */
17640 fprintf (file, "%d,",
6041bf2f
DE
17641 ((optional_tbtab << 6)
17642 | ((optional_tbtab & frame_pointer_needed) << 5)
17643 | (info->cr_save_p << 1)
17644 | (info->lr_save_p)));
314fc5a9 17645
6041bf2f 17646 /* 3 bitfields: saves backchain, fixup code, number of fpr saved
314fc5a9
ILT
17647 (6 bits). */
17648 fprintf (file, "%d,",
4697a36c 17649 (info->push_p << 7) | (64 - info->first_fp_reg_save));
314fc5a9
ILT
17650
17651 /* 2 bitfields: spare bits (2 bits), number of gpr saved (6 bits). */
17652 fprintf (file, "%d,", (32 - first_reg_to_save ()));
17653
6041bf2f
DE
17654 if (optional_tbtab)
17655 {
17656 /* Compute the parameter info from the function decl argument
17657 list. */
17658 tree decl;
17659 int next_parm_info_bit = 31;
314fc5a9 17660
6041bf2f
DE
17661 for (decl = DECL_ARGUMENTS (current_function_decl);
17662 decl; decl = TREE_CHAIN (decl))
17663 {
17664 rtx parameter = DECL_INCOMING_RTL (decl);
17665 enum machine_mode mode = GET_MODE (parameter);
314fc5a9 17666
6041bf2f
DE
17667 if (GET_CODE (parameter) == REG)
17668 {
ebb109ad 17669 if (SCALAR_FLOAT_MODE_P (mode))
6041bf2f
DE
17670 {
17671 int bits;
17672
17673 float_parms++;
17674
37409796
NS
17675 switch (mode)
17676 {
17677 case SFmode:
e41b2a33 17678 case SDmode:
37409796
NS
17679 bits = 0x2;
17680 break;
17681
17682 case DFmode:
7393f7f8 17683 case DDmode:
37409796 17684 case TFmode:
7393f7f8 17685 case TDmode:
37409796
NS
17686 bits = 0x3;
17687 break;
17688
17689 default:
17690 gcc_unreachable ();
17691 }
6041bf2f
DE
17692
17693 /* If only one bit will fit, don't or in this entry. */
17694 if (next_parm_info_bit > 0)
17695 parm_info |= (bits << (next_parm_info_bit - 1));
17696 next_parm_info_bit -= 2;
17697 }
17698 else
17699 {
17700 fixed_parms += ((GET_MODE_SIZE (mode)
17701 + (UNITS_PER_WORD - 1))
17702 / UNITS_PER_WORD);
17703 next_parm_info_bit -= 1;
17704 }
17705 }
17706 }
17707 }
314fc5a9
ILT
17708
17709 /* Number of fixed point parameters. */
17710 /* This is actually the number of words of fixed point parameters; thus
17711 an 8 byte struct counts as 2; and thus the maximum value is 8. */
17712 fprintf (file, "%d,", fixed_parms);
17713
17714 /* 2 bitfields: number of floating point parameters (7 bits), parameters
17715 all on stack. */
17716 /* This is actually the number of fp registers that hold parameters;
17717 and thus the maximum value is 13. */
17718 /* Set parameters on stack bit if parameters are not in their original
17719 registers, regardless of whether they are on the stack? Xlc
17720 seems to set the bit when not optimizing. */
17721 fprintf (file, "%d\n", ((float_parms << 1) | (! optimize)));
17722
6041bf2f
DE
17723 if (! optional_tbtab)
17724 return;
17725
314fc5a9
ILT
17726 /* Optional fields follow. Some are variable length. */
17727
17728 /* Parameter types, left adjusted bit fields: 0 fixed, 10 single float,
17729 11 double float. */
17730 /* There is an entry for each parameter in a register, in the order that
17731 they occur in the parameter list. Any intervening arguments on the
17732 stack are ignored. If the list overflows a long (max possible length
17733 34 bits) then completely leave off all elements that don't fit. */
17734 /* Only emit this long if there was at least one parameter. */
17735 if (fixed_parms || float_parms)
17736 fprintf (file, "\t.long %d\n", parm_info);
17737
17738 /* Offset from start of code to tb table. */
19d2d16f 17739 fputs ("\t.long ", file);
314fc5a9 17740 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "LT");
85b776df
AM
17741 if (TARGET_AIX)
17742 RS6000_OUTPUT_BASENAME (file, fname);
17743 else
17744 assemble_name (file, fname);
17745 putc ('-', file);
17746 rs6000_output_function_entry (file, fname);
19d2d16f 17747 putc ('\n', file);
314fc5a9
ILT
17748
17749 /* Interrupt handler mask. */
17750 /* Omit this long, since we never set the interrupt handler bit
17751 above. */
17752
17753 /* Number of CTL (controlled storage) anchors. */
17754 /* Omit this long, since the has_ctl bit is never set above. */
17755
17756 /* Displacement into stack of each CTL anchor. */
17757 /* Omit this list of longs, because there are no CTL anchors. */
17758
17759 /* Length of function name. */
69c75916
AM
17760 if (*fname == '*')
17761 ++fname;
296b8152 17762 fprintf (file, "\t.short %d\n", (int) strlen (fname));
314fc5a9
ILT
17763
17764 /* Function name. */
17765 assemble_string (fname, strlen (fname));
17766
17767 /* Register for alloca automatic storage; this is always reg 31.
17768 Only emit this if the alloca bit was set above. */
17769 if (frame_pointer_needed)
19d2d16f 17770 fputs ("\t.byte 31\n", file);
b1765bde
DE
17771
17772 fputs ("\t.align 2\n", file);
9b30bae2 17773 }
9878760c 17774}
17167fd8 17775\f
a4f6c312
SS
17776/* A C compound statement that outputs the assembler code for a thunk
17777 function, used to implement C++ virtual function calls with
17778 multiple inheritance. The thunk acts as a wrapper around a virtual
17779 function, adjusting the implicit object parameter before handing
17780 control off to the real function.
17781
17782 First, emit code to add the integer DELTA to the location that
17783 contains the incoming first argument. Assume that this argument
17784 contains a pointer, and is the one used to pass the `this' pointer
17785 in C++. This is the incoming argument *before* the function
17786 prologue, e.g. `%o0' on a sparc. The addition must preserve the
17787 values of all other incoming arguments.
17167fd8
MM
17788
17789 After the addition, emit code to jump to FUNCTION, which is a
a4f6c312
SS
17790 `FUNCTION_DECL'. This is a direct pure jump, not a call, and does
17791 not touch the return address. Hence returning from FUNCTION will
17792 return to whoever called the current `thunk'.
17167fd8 17793
a4f6c312
SS
17794 The effect must be as if FUNCTION had been called directly with the
17795 adjusted first argument. This macro is responsible for emitting
17796 all of the code for a thunk function; output_function_prologue()
17797 and output_function_epilogue() are not invoked.
17167fd8 17798
a4f6c312
SS
17799 The THUNK_FNDECL is redundant. (DELTA and FUNCTION have already
17800 been extracted from it.) It might possibly be useful on some
17801 targets, but probably not.
17167fd8 17802
a4f6c312
SS
17803 If you do not define this macro, the target-independent code in the
17804 C++ frontend will generate a less efficient heavyweight thunk that
17805 calls FUNCTION instead of jumping to it. The generic approach does
17806 not support varargs. */
17167fd8 17807
3961e8fe 17808static void
f676971a
EC
17809rs6000_output_mi_thunk (FILE *file, tree thunk_fndecl ATTRIBUTE_UNUSED,
17810 HOST_WIDE_INT delta, HOST_WIDE_INT vcall_offset,
a2369ed3 17811 tree function)
17167fd8 17812{
0a2aaacc 17813 rtx this_rtx, insn, funexp;
17167fd8 17814
5b71a4e7 17815 reload_completed = 1;
fe3ad572 17816 epilogue_completed = 1;
56a7189a 17817
5b71a4e7 17818 /* Mark the end of the (empty) prologue. */
2e040219 17819 emit_note (NOTE_INSN_PROLOGUE_END);
17167fd8 17820
5b71a4e7
DE
17821 /* Find the "this" pointer. If the function returns a structure,
17822 the structure return pointer is in r3. */
61f71b34 17823 if (aggregate_value_p (TREE_TYPE (TREE_TYPE (function)), function))
0a2aaacc 17824 this_rtx = gen_rtx_REG (Pmode, 4);
56a7189a 17825 else
0a2aaacc 17826 this_rtx = gen_rtx_REG (Pmode, 3);
17167fd8 17827
5b71a4e7
DE
17828 /* Apply the constant offset, if required. */
17829 if (delta)
17830 {
17831 rtx delta_rtx = GEN_INT (delta);
17832 emit_insn (TARGET_32BIT
0a2aaacc
KG
17833 ? gen_addsi3 (this_rtx, this_rtx, delta_rtx)
17834 : gen_adddi3 (this_rtx, this_rtx, delta_rtx));
17167fd8
MM
17835 }
17836
5b71a4e7
DE
17837 /* Apply the offset from the vtable, if required. */
17838 if (vcall_offset)
17167fd8 17839 {
5b71a4e7
DE
17840 rtx vcall_offset_rtx = GEN_INT (vcall_offset);
17841 rtx tmp = gen_rtx_REG (Pmode, 12);
17167fd8 17842
0a2aaacc 17843 emit_move_insn (tmp, gen_rtx_MEM (Pmode, this_rtx));
eeff9307
JJ
17844 if (((unsigned HOST_WIDE_INT) vcall_offset) + 0x8000 >= 0x10000)
17845 {
17846 emit_insn (TARGET_32BIT
17847 ? gen_addsi3 (tmp, tmp, vcall_offset_rtx)
17848 : gen_adddi3 (tmp, tmp, vcall_offset_rtx));
17849 emit_move_insn (tmp, gen_rtx_MEM (Pmode, tmp));
17850 }
17851 else
17852 {
17853 rtx loc = gen_rtx_PLUS (Pmode, tmp, vcall_offset_rtx);
17854
17855 emit_move_insn (tmp, gen_rtx_MEM (Pmode, loc));
17856 }
5b71a4e7 17857 emit_insn (TARGET_32BIT
0a2aaacc
KG
17858 ? gen_addsi3 (this_rtx, this_rtx, tmp)
17859 : gen_adddi3 (this_rtx, this_rtx, tmp));
17167fd8
MM
17860 }
17861
5b71a4e7
DE
17862 /* Generate a tail call to the target function. */
17863 if (!TREE_USED (function))
17864 {
17865 assemble_external (function);
17866 TREE_USED (function) = 1;
17867 }
17868 funexp = XEXP (DECL_RTL (function), 0);
5b71a4e7 17869 funexp = gen_rtx_MEM (FUNCTION_MODE, funexp);
ee890fe2
SS
17870
17871#if TARGET_MACHO
ab82a49f 17872 if (MACHOPIC_INDIRECT)
5b71a4e7 17873 funexp = machopic_indirect_call_target (funexp);
ee890fe2 17874#endif
5b71a4e7
DE
17875
17876 /* gen_sibcall expects reload to convert scratch pseudo to LR so we must
992d08b1 17877 generate sibcall RTL explicitly. */
5b71a4e7
DE
17878 insn = emit_call_insn (
17879 gen_rtx_PARALLEL (VOIDmode,
17880 gen_rtvec (4,
17881 gen_rtx_CALL (VOIDmode,
17882 funexp, const0_rtx),
17883 gen_rtx_USE (VOIDmode, const0_rtx),
17884 gen_rtx_USE (VOIDmode,
17885 gen_rtx_REG (SImode,
1de43f85 17886 LR_REGNO)),
5b71a4e7
DE
17887 gen_rtx_RETURN (VOIDmode))));
17888 SIBLING_CALL_P (insn) = 1;
17889 emit_barrier ();
17890
17891 /* Run just enough of rest_of_compilation to get the insns emitted.
17892 There's not really enough bulk here to make other passes such as
17893 instruction scheduling worth while. Note that use_thunk calls
17894 assemble_start_function and assemble_end_function. */
17895 insn = get_insns ();
55e092c4 17896 insn_locators_alloc ();
5b71a4e7
DE
17897 shorten_branches (insn);
17898 final_start_function (insn, file, 1);
c9d691e9 17899 final (insn, file, 1);
5b71a4e7 17900 final_end_function ();
d7087dd2 17901 free_after_compilation (cfun);
5b71a4e7
DE
17902
17903 reload_completed = 0;
fe3ad572 17904 epilogue_completed = 0;
9ebbca7d 17905}
9ebbca7d
GK
17906\f
17907/* A quick summary of the various types of 'constant-pool tables'
17908 under PowerPC:
17909
f676971a 17910 Target Flags Name One table per
9ebbca7d
GK
17911 AIX (none) AIX TOC object file
17912 AIX -mfull-toc AIX TOC object file
17913 AIX -mminimal-toc AIX minimal TOC translation unit
17914 SVR4/EABI (none) SVR4 SDATA object file
17915 SVR4/EABI -fpic SVR4 pic object file
17916 SVR4/EABI -fPIC SVR4 PIC translation unit
17917 SVR4/EABI -mrelocatable EABI TOC function
17918 SVR4/EABI -maix AIX TOC object file
f676971a 17919 SVR4/EABI -maix -mminimal-toc
9ebbca7d
GK
17920 AIX minimal TOC translation unit
17921
17922 Name Reg. Set by entries contains:
17923 made by addrs? fp? sum?
17924
17925 AIX TOC 2 crt0 as Y option option
17926 AIX minimal TOC 30 prolog gcc Y Y option
17927 SVR4 SDATA 13 crt0 gcc N Y N
17928 SVR4 pic 30 prolog ld Y not yet N
17929 SVR4 PIC 30 prolog gcc Y option option
17930 EABI TOC 30 prolog gcc Y option option
17931
17932*/
17933
9ebbca7d
GK
17934/* Hash functions for the hash table. */
17935
17936static unsigned
a2369ed3 17937rs6000_hash_constant (rtx k)
9ebbca7d 17938{
46b33600
RH
17939 enum rtx_code code = GET_CODE (k);
17940 enum machine_mode mode = GET_MODE (k);
17941 unsigned result = (code << 3) ^ mode;
17942 const char *format;
17943 int flen, fidx;
f676971a 17944
46b33600
RH
17945 format = GET_RTX_FORMAT (code);
17946 flen = strlen (format);
17947 fidx = 0;
9ebbca7d 17948
46b33600
RH
17949 switch (code)
17950 {
17951 case LABEL_REF:
17952 return result * 1231 + (unsigned) INSN_UID (XEXP (k, 0));
17953
17954 case CONST_DOUBLE:
17955 if (mode != VOIDmode)
17956 return real_hash (CONST_DOUBLE_REAL_VALUE (k)) * result;
17957 flen = 2;
17958 break;
17959
17960 case CODE_LABEL:
17961 fidx = 3;
17962 break;
17963
17964 default:
17965 break;
17966 }
9ebbca7d
GK
17967
17968 for (; fidx < flen; fidx++)
17969 switch (format[fidx])
17970 {
17971 case 's':
17972 {
17973 unsigned i, len;
17974 const char *str = XSTR (k, fidx);
17975 len = strlen (str);
17976 result = result * 613 + len;
17977 for (i = 0; i < len; i++)
17978 result = result * 613 + (unsigned) str[i];
17167fd8
MM
17979 break;
17980 }
9ebbca7d
GK
17981 case 'u':
17982 case 'e':
17983 result = result * 1231 + rs6000_hash_constant (XEXP (k, fidx));
17984 break;
17985 case 'i':
17986 case 'n':
17987 result = result * 613 + (unsigned) XINT (k, fidx);
17988 break;
17989 case 'w':
17990 if (sizeof (unsigned) >= sizeof (HOST_WIDE_INT))
17991 result = result * 613 + (unsigned) XWINT (k, fidx);
17992 else
17993 {
17994 size_t i;
9390387d 17995 for (i = 0; i < sizeof (HOST_WIDE_INT) / sizeof (unsigned); i++)
9ebbca7d
GK
17996 result = result * 613 + (unsigned) (XWINT (k, fidx)
17997 >> CHAR_BIT * i);
17998 }
17999 break;
09501938
DE
18000 case '0':
18001 break;
9ebbca7d 18002 default:
37409796 18003 gcc_unreachable ();
9ebbca7d 18004 }
46b33600 18005
9ebbca7d
GK
18006 return result;
18007}
18008
18009static unsigned
a2369ed3 18010toc_hash_function (const void *hash_entry)
9ebbca7d 18011{
f676971a 18012 const struct toc_hash_struct *thc =
a9098fd0
GK
18013 (const struct toc_hash_struct *) hash_entry;
18014 return rs6000_hash_constant (thc->key) ^ thc->key_mode;
9ebbca7d
GK
18015}
18016
18017/* Compare H1 and H2 for equivalence. */
18018
18019static int
a2369ed3 18020toc_hash_eq (const void *h1, const void *h2)
9ebbca7d
GK
18021{
18022 rtx r1 = ((const struct toc_hash_struct *) h1)->key;
18023 rtx r2 = ((const struct toc_hash_struct *) h2)->key;
18024
a9098fd0
GK
18025 if (((const struct toc_hash_struct *) h1)->key_mode
18026 != ((const struct toc_hash_struct *) h2)->key_mode)
18027 return 0;
18028
5692c7bc 18029 return rtx_equal_p (r1, r2);
9ebbca7d
GK
18030}
18031
28e510bd
MM
18032/* These are the names given by the C++ front-end to vtables, and
18033 vtable-like objects. Ideally, this logic should not be here;
18034 instead, there should be some programmatic way of inquiring as
18035 to whether or not an object is a vtable. */
18036
18037#define VTABLE_NAME_P(NAME) \
9390387d 18038 (strncmp ("_vt.", name, strlen ("_vt.")) == 0 \
28e510bd
MM
18039 || strncmp ("_ZTV", name, strlen ("_ZTV")) == 0 \
18040 || strncmp ("_ZTT", name, strlen ("_ZTT")) == 0 \
26be75db 18041 || strncmp ("_ZTI", name, strlen ("_ZTI")) == 0 \
f676971a 18042 || strncmp ("_ZTC", name, strlen ("_ZTC")) == 0)
28e510bd 18043
ee06c6a5
DE
18044#ifdef NO_DOLLAR_IN_LABEL
18045/* Return a GGC-allocated character string translating dollar signs in
18046 input NAME to underscores. Used by XCOFF ASM_OUTPUT_LABELREF. */
18047
18048const char *
18049rs6000_xcoff_strip_dollar (const char *name)
18050{
18051 char *strip, *p;
18052 int len;
18053
18054 p = strchr (name, '$');
18055
18056 if (p == 0 || p == name)
18057 return name;
18058
18059 len = strlen (name);
18060 strip = (char *) alloca (len + 1);
18061 strcpy (strip, name);
18062 p = strchr (strip, '$');
18063 while (p)
18064 {
18065 *p = '_';
18066 p = strchr (p + 1, '$');
18067 }
18068
18069 return ggc_alloc_string (strip, len);
18070}
18071#endif
18072
28e510bd 18073void
a2369ed3 18074rs6000_output_symbol_ref (FILE *file, rtx x)
28e510bd
MM
18075{
18076 /* Currently C++ toc references to vtables can be emitted before it
18077 is decided whether the vtable is public or private. If this is
18078 the case, then the linker will eventually complain that there is
f676971a 18079 a reference to an unknown section. Thus, for vtables only,
28e510bd
MM
18080 we emit the TOC reference to reference the symbol and not the
18081 section. */
18082 const char *name = XSTR (x, 0);
54ee9799 18083
f676971a 18084 if (VTABLE_NAME_P (name))
54ee9799
DE
18085 {
18086 RS6000_OUTPUT_BASENAME (file, name);
18087 }
18088 else
18089 assemble_name (file, name);
28e510bd
MM
18090}
18091
a4f6c312
SS
18092/* Output a TOC entry. We derive the entry name from what is being
18093 written. */
9878760c
RK
18094
18095void
a2369ed3 18096output_toc (FILE *file, rtx x, int labelno, enum machine_mode mode)
9878760c
RK
18097{
18098 char buf[256];
3cce094d 18099 const char *name = buf;
9878760c 18100 rtx base = x;
16fdeb48 18101 HOST_WIDE_INT offset = 0;
9878760c 18102
37409796 18103 gcc_assert (!TARGET_NO_TOC);
4697a36c 18104
9ebbca7d
GK
18105 /* When the linker won't eliminate them, don't output duplicate
18106 TOC entries (this happens on AIX if there is any kind of TOC,
17211ab5
GK
18107 and on SVR4 under -fPIC or -mrelocatable). Don't do this for
18108 CODE_LABELs. */
18109 if (TARGET_TOC && GET_CODE (x) != LABEL_REF)
9ebbca7d
GK
18110 {
18111 struct toc_hash_struct *h;
18112 void * * found;
f676971a 18113
17211ab5 18114 /* Create toc_hash_table. This can't be done at OVERRIDE_OPTIONS
c4ad648e 18115 time because GGC is not initialized at that point. */
17211ab5 18116 if (toc_hash_table == NULL)
f676971a 18117 toc_hash_table = htab_create_ggc (1021, toc_hash_function,
17211ab5
GK
18118 toc_hash_eq, NULL);
18119
5ead67f6 18120 h = GGC_NEW (struct toc_hash_struct);
9ebbca7d 18121 h->key = x;
a9098fd0 18122 h->key_mode = mode;
9ebbca7d 18123 h->labelno = labelno;
f676971a 18124
9ebbca7d
GK
18125 found = htab_find_slot (toc_hash_table, h, 1);
18126 if (*found == NULL)
18127 *found = h;
f676971a 18128 else /* This is indeed a duplicate.
9ebbca7d
GK
18129 Set this label equal to that label. */
18130 {
18131 fputs ("\t.set ", file);
18132 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "LC");
18133 fprintf (file, "%d,", labelno);
18134 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "LC");
f676971a 18135 fprintf (file, "%d\n", ((*(const struct toc_hash_struct **)
9ebbca7d
GK
18136 found)->labelno));
18137 return;
18138 }
18139 }
18140
18141 /* If we're going to put a double constant in the TOC, make sure it's
18142 aligned properly when strict alignment is on. */
ff1720ed
RK
18143 if (GET_CODE (x) == CONST_DOUBLE
18144 && STRICT_ALIGNMENT
a9098fd0 18145 && GET_MODE_BITSIZE (mode) >= 64
ff1720ed
RK
18146 && ! (TARGET_NO_FP_IN_TOC && ! TARGET_MINIMAL_TOC)) {
18147 ASM_OUTPUT_ALIGN (file, 3);
18148 }
18149
4977bab6 18150 (*targetm.asm_out.internal_label) (file, "LC", labelno);
9878760c 18151
37c37a57
RK
18152 /* Handle FP constants specially. Note that if we have a minimal
18153 TOC, things we put here aren't actually in the TOC, so we can allow
18154 FP constants. */
00b79d54
BE
18155 if (GET_CODE (x) == CONST_DOUBLE &&
18156 (GET_MODE (x) == TFmode || GET_MODE (x) == TDmode))
fcce224d
DE
18157 {
18158 REAL_VALUE_TYPE rv;
18159 long k[4];
18160
18161 REAL_VALUE_FROM_CONST_DOUBLE (rv, x);
00b79d54
BE
18162 if (DECIMAL_FLOAT_MODE_P (GET_MODE (x)))
18163 REAL_VALUE_TO_TARGET_DECIMAL128 (rv, k);
18164 else
18165 REAL_VALUE_TO_TARGET_LONG_DOUBLE (rv, k);
fcce224d
DE
18166
18167 if (TARGET_64BIT)
18168 {
18169 if (TARGET_MINIMAL_TOC)
18170 fputs (DOUBLE_INT_ASM_OP, file);
18171 else
18172 fprintf (file, "\t.tc FT_%lx_%lx_%lx_%lx[TC],",
18173 k[0] & 0xffffffff, k[1] & 0xffffffff,
18174 k[2] & 0xffffffff, k[3] & 0xffffffff);
18175 fprintf (file, "0x%lx%08lx,0x%lx%08lx\n",
18176 k[0] & 0xffffffff, k[1] & 0xffffffff,
18177 k[2] & 0xffffffff, k[3] & 0xffffffff);
18178 return;
18179 }
18180 else
18181 {
18182 if (TARGET_MINIMAL_TOC)
18183 fputs ("\t.long ", file);
18184 else
18185 fprintf (file, "\t.tc FT_%lx_%lx_%lx_%lx[TC],",
18186 k[0] & 0xffffffff, k[1] & 0xffffffff,
18187 k[2] & 0xffffffff, k[3] & 0xffffffff);
18188 fprintf (file, "0x%lx,0x%lx,0x%lx,0x%lx\n",
18189 k[0] & 0xffffffff, k[1] & 0xffffffff,
18190 k[2] & 0xffffffff, k[3] & 0xffffffff);
18191 return;
18192 }
18193 }
00b79d54
BE
18194 else if (GET_CODE (x) == CONST_DOUBLE &&
18195 (GET_MODE (x) == DFmode || GET_MODE (x) == DDmode))
9878760c 18196 {
042259f2
DE
18197 REAL_VALUE_TYPE rv;
18198 long k[2];
0adc764e 18199
042259f2 18200 REAL_VALUE_FROM_CONST_DOUBLE (rv, x);
00b79d54
BE
18201
18202 if (DECIMAL_FLOAT_MODE_P (GET_MODE (x)))
18203 REAL_VALUE_TO_TARGET_DECIMAL64 (rv, k);
18204 else
18205 REAL_VALUE_TO_TARGET_DOUBLE (rv, k);
31bfaa0b 18206
13ded975
DE
18207 if (TARGET_64BIT)
18208 {
18209 if (TARGET_MINIMAL_TOC)
2bfcf297 18210 fputs (DOUBLE_INT_ASM_OP, file);
13ded975 18211 else
2f0552b6
AM
18212 fprintf (file, "\t.tc FD_%lx_%lx[TC],",
18213 k[0] & 0xffffffff, k[1] & 0xffffffff);
18214 fprintf (file, "0x%lx%08lx\n",
18215 k[0] & 0xffffffff, k[1] & 0xffffffff);
13ded975
DE
18216 return;
18217 }
1875cc88 18218 else
13ded975
DE
18219 {
18220 if (TARGET_MINIMAL_TOC)
2bfcf297 18221 fputs ("\t.long ", file);
13ded975 18222 else
2f0552b6
AM
18223 fprintf (file, "\t.tc FD_%lx_%lx[TC],",
18224 k[0] & 0xffffffff, k[1] & 0xffffffff);
18225 fprintf (file, "0x%lx,0x%lx\n",
18226 k[0] & 0xffffffff, k[1] & 0xffffffff);
13ded975
DE
18227 return;
18228 }
9878760c 18229 }
00b79d54
BE
18230 else if (GET_CODE (x) == CONST_DOUBLE &&
18231 (GET_MODE (x) == SFmode || GET_MODE (x) == SDmode))
9878760c 18232 {
042259f2
DE
18233 REAL_VALUE_TYPE rv;
18234 long l;
9878760c 18235
042259f2 18236 REAL_VALUE_FROM_CONST_DOUBLE (rv, x);
00b79d54
BE
18237 if (DECIMAL_FLOAT_MODE_P (GET_MODE (x)))
18238 REAL_VALUE_TO_TARGET_DECIMAL32 (rv, l);
18239 else
18240 REAL_VALUE_TO_TARGET_SINGLE (rv, l);
042259f2 18241
31bfaa0b
DE
18242 if (TARGET_64BIT)
18243 {
18244 if (TARGET_MINIMAL_TOC)
2bfcf297 18245 fputs (DOUBLE_INT_ASM_OP, file);
31bfaa0b 18246 else
2f0552b6
AM
18247 fprintf (file, "\t.tc FS_%lx[TC],", l & 0xffffffff);
18248 fprintf (file, "0x%lx00000000\n", l & 0xffffffff);
31bfaa0b
DE
18249 return;
18250 }
042259f2 18251 else
31bfaa0b
DE
18252 {
18253 if (TARGET_MINIMAL_TOC)
2bfcf297 18254 fputs ("\t.long ", file);
31bfaa0b 18255 else
2f0552b6
AM
18256 fprintf (file, "\t.tc FS_%lx[TC],", l & 0xffffffff);
18257 fprintf (file, "0x%lx\n", l & 0xffffffff);
31bfaa0b
DE
18258 return;
18259 }
042259f2 18260 }
f176e826 18261 else if (GET_MODE (x) == VOIDmode
a9098fd0 18262 && (GET_CODE (x) == CONST_INT || GET_CODE (x) == CONST_DOUBLE))
042259f2 18263 {
e2c953b6 18264 unsigned HOST_WIDE_INT low;
042259f2
DE
18265 HOST_WIDE_INT high;
18266
18267 if (GET_CODE (x) == CONST_DOUBLE)
18268 {
18269 low = CONST_DOUBLE_LOW (x);
18270 high = CONST_DOUBLE_HIGH (x);
18271 }
18272 else
18273#if HOST_BITS_PER_WIDE_INT == 32
18274 {
18275 low = INTVAL (x);
0858c623 18276 high = (low & 0x80000000) ? ~0 : 0;
042259f2
DE
18277 }
18278#else
18279 {
c4ad648e
AM
18280 low = INTVAL (x) & 0xffffffff;
18281 high = (HOST_WIDE_INT) INTVAL (x) >> 32;
042259f2
DE
18282 }
18283#endif
9878760c 18284
a9098fd0
GK
18285 /* TOC entries are always Pmode-sized, but since this
18286 is a bigendian machine then if we're putting smaller
18287 integer constants in the TOC we have to pad them.
18288 (This is still a win over putting the constants in
18289 a separate constant pool, because then we'd have
02a4ec28
FS
18290 to have both a TOC entry _and_ the actual constant.)
18291
18292 For a 32-bit target, CONST_INT values are loaded and shifted
18293 entirely within `low' and can be stored in one TOC entry. */
18294
37409796
NS
18295 /* It would be easy to make this work, but it doesn't now. */
18296 gcc_assert (!TARGET_64BIT || POINTER_SIZE >= GET_MODE_BITSIZE (mode));
02a4ec28
FS
18297
18298 if (POINTER_SIZE > GET_MODE_BITSIZE (mode))
fb52d8de
AM
18299 {
18300#if HOST_BITS_PER_WIDE_INT == 32
18301 lshift_double (low, high, POINTER_SIZE - GET_MODE_BITSIZE (mode),
18302 POINTER_SIZE, &low, &high, 0);
18303#else
18304 low |= high << 32;
18305 low <<= POINTER_SIZE - GET_MODE_BITSIZE (mode);
18306 high = (HOST_WIDE_INT) low >> 32;
18307 low &= 0xffffffff;
18308#endif
18309 }
a9098fd0 18310
13ded975
DE
18311 if (TARGET_64BIT)
18312 {
18313 if (TARGET_MINIMAL_TOC)
2bfcf297 18314 fputs (DOUBLE_INT_ASM_OP, file);
13ded975 18315 else
2f0552b6
AM
18316 fprintf (file, "\t.tc ID_%lx_%lx[TC],",
18317 (long) high & 0xffffffff, (long) low & 0xffffffff);
18318 fprintf (file, "0x%lx%08lx\n",
18319 (long) high & 0xffffffff, (long) low & 0xffffffff);
13ded975
DE
18320 return;
18321 }
1875cc88 18322 else
13ded975 18323 {
02a4ec28
FS
18324 if (POINTER_SIZE < GET_MODE_BITSIZE (mode))
18325 {
18326 if (TARGET_MINIMAL_TOC)
2bfcf297 18327 fputs ("\t.long ", file);
02a4ec28 18328 else
2bfcf297 18329 fprintf (file, "\t.tc ID_%lx_%lx[TC],",
2f0552b6
AM
18330 (long) high & 0xffffffff, (long) low & 0xffffffff);
18331 fprintf (file, "0x%lx,0x%lx\n",
18332 (long) high & 0xffffffff, (long) low & 0xffffffff);
02a4ec28 18333 }
13ded975 18334 else
02a4ec28
FS
18335 {
18336 if (TARGET_MINIMAL_TOC)
2bfcf297 18337 fputs ("\t.long ", file);
02a4ec28 18338 else
2f0552b6
AM
18339 fprintf (file, "\t.tc IS_%lx[TC],", (long) low & 0xffffffff);
18340 fprintf (file, "0x%lx\n", (long) low & 0xffffffff);
02a4ec28 18341 }
13ded975
DE
18342 return;
18343 }
9878760c
RK
18344 }
18345
18346 if (GET_CODE (x) == CONST)
18347 {
37409796 18348 gcc_assert (GET_CODE (XEXP (x, 0)) == PLUS);
2bfcf297 18349
9878760c
RK
18350 base = XEXP (XEXP (x, 0), 0);
18351 offset = INTVAL (XEXP (XEXP (x, 0), 1));
18352 }
f676971a 18353
37409796
NS
18354 switch (GET_CODE (base))
18355 {
18356 case SYMBOL_REF:
18357 name = XSTR (base, 0);
18358 break;
18359
18360 case LABEL_REF:
18361 ASM_GENERATE_INTERNAL_LABEL (buf, "L",
18362 CODE_LABEL_NUMBER (XEXP (base, 0)));
18363 break;
18364
18365 case CODE_LABEL:
18366 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (base));
18367 break;
18368
18369 default:
18370 gcc_unreachable ();
18371 }
9878760c 18372
1875cc88 18373 if (TARGET_MINIMAL_TOC)
2bfcf297 18374 fputs (TARGET_32BIT ? "\t.long " : DOUBLE_INT_ASM_OP, file);
1875cc88
JW
18375 else
18376 {
5773a50f
DE
18377 fputs ("\t.tc ", file);
18378 RS6000_OUTPUT_BASENAME (file, name);
9878760c 18379
1875cc88 18380 if (offset < 0)
16fdeb48 18381 fprintf (file, ".N" HOST_WIDE_INT_PRINT_UNSIGNED, - offset);
1875cc88 18382 else if (offset)
16fdeb48 18383 fprintf (file, ".P" HOST_WIDE_INT_PRINT_UNSIGNED, offset);
9878760c 18384
19d2d16f 18385 fputs ("[TC],", file);
1875cc88 18386 }
581bc4de
MM
18387
18388 /* Currently C++ toc references to vtables can be emitted before it
18389 is decided whether the vtable is public or private. If this is
18390 the case, then the linker will eventually complain that there is
18391 a TOC reference to an unknown section. Thus, for vtables only,
18392 we emit the TOC reference to reference the symbol and not the
18393 section. */
28e510bd 18394 if (VTABLE_NAME_P (name))
581bc4de 18395 {
54ee9799 18396 RS6000_OUTPUT_BASENAME (file, name);
581bc4de 18397 if (offset < 0)
16fdeb48 18398 fprintf (file, HOST_WIDE_INT_PRINT_DEC, offset);
581bc4de 18399 else if (offset > 0)
16fdeb48 18400 fprintf (file, "+" HOST_WIDE_INT_PRINT_DEC, offset);
581bc4de
MM
18401 }
18402 else
18403 output_addr_const (file, x);
19d2d16f 18404 putc ('\n', file);
9878760c
RK
18405}
18406\f
18407/* Output an assembler pseudo-op to write an ASCII string of N characters
18408 starting at P to FILE.
18409
18410 On the RS/6000, we have to do this using the .byte operation and
18411 write out special characters outside the quoted string.
18412 Also, the assembler is broken; very long strings are truncated,
a4f6c312 18413 so we must artificially break them up early. */
9878760c
RK
18414
18415void
a2369ed3 18416output_ascii (FILE *file, const char *p, int n)
9878760c
RK
18417{
18418 char c;
18419 int i, count_string;
d330fd93
KG
18420 const char *for_string = "\t.byte \"";
18421 const char *for_decimal = "\t.byte ";
18422 const char *to_close = NULL;
9878760c
RK
18423
18424 count_string = 0;
18425 for (i = 0; i < n; i++)
18426 {
18427 c = *p++;
18428 if (c >= ' ' && c < 0177)
18429 {
18430 if (for_string)
18431 fputs (for_string, file);
18432 putc (c, file);
18433
18434 /* Write two quotes to get one. */
18435 if (c == '"')
18436 {
18437 putc (c, file);
18438 ++count_string;
18439 }
18440
18441 for_string = NULL;
18442 for_decimal = "\"\n\t.byte ";
18443 to_close = "\"\n";
18444 ++count_string;
18445
18446 if (count_string >= 512)
18447 {
18448 fputs (to_close, file);
18449
18450 for_string = "\t.byte \"";
18451 for_decimal = "\t.byte ";
18452 to_close = NULL;
18453 count_string = 0;
18454 }
18455 }
18456 else
18457 {
18458 if (for_decimal)
18459 fputs (for_decimal, file);
18460 fprintf (file, "%d", c);
18461
18462 for_string = "\n\t.byte \"";
18463 for_decimal = ", ";
18464 to_close = "\n";
18465 count_string = 0;
18466 }
18467 }
18468
18469 /* Now close the string if we have written one. Then end the line. */
18470 if (to_close)
9ebbca7d 18471 fputs (to_close, file);
9878760c
RK
18472}
18473\f
18474/* Generate a unique section name for FILENAME for a section type
18475 represented by SECTION_DESC. Output goes into BUF.
18476
18477 SECTION_DESC can be any string, as long as it is different for each
18478 possible section type.
18479
18480 We name the section in the same manner as xlc. The name begins with an
18481 underscore followed by the filename (after stripping any leading directory
11e5fe42
RK
18482 names) with the last period replaced by the string SECTION_DESC. If
18483 FILENAME does not contain a period, SECTION_DESC is appended to the end of
18484 the name. */
9878760c
RK
18485
18486void
f676971a 18487rs6000_gen_section_name (char **buf, const char *filename,
c4ad648e 18488 const char *section_desc)
9878760c 18489{
9ebbca7d 18490 const char *q, *after_last_slash, *last_period = 0;
9878760c
RK
18491 char *p;
18492 int len;
9878760c
RK
18493
18494 after_last_slash = filename;
18495 for (q = filename; *q; q++)
11e5fe42
RK
18496 {
18497 if (*q == '/')
18498 after_last_slash = q + 1;
18499 else if (*q == '.')
18500 last_period = q;
18501 }
9878760c 18502
11e5fe42 18503 len = strlen (after_last_slash) + strlen (section_desc) + 2;
6d9f628e 18504 *buf = (char *) xmalloc (len);
9878760c
RK
18505
18506 p = *buf;
18507 *p++ = '_';
18508
18509 for (q = after_last_slash; *q; q++)
18510 {
11e5fe42 18511 if (q == last_period)
c4ad648e 18512 {
9878760c
RK
18513 strcpy (p, section_desc);
18514 p += strlen (section_desc);
e3981aab 18515 break;
c4ad648e 18516 }
9878760c 18517
e9a780ec 18518 else if (ISALNUM (*q))
c4ad648e 18519 *p++ = *q;
9878760c
RK
18520 }
18521
11e5fe42 18522 if (last_period == 0)
9878760c
RK
18523 strcpy (p, section_desc);
18524 else
18525 *p = '\0';
18526}
e165f3f0 18527\f
a4f6c312 18528/* Emit profile function. */
411707f4 18529
411707f4 18530void
a2369ed3 18531output_profile_hook (int labelno ATTRIBUTE_UNUSED)
411707f4 18532{
858081ad
AH
18533 /* Non-standard profiling for kernels, which just saves LR then calls
18534 _mcount without worrying about arg saves. The idea is to change
18535 the function prologue as little as possible as it isn't easy to
18536 account for arg save/restore code added just for _mcount. */
ffcfcb5f
AM
18537 if (TARGET_PROFILE_KERNEL)
18538 return;
18539
8480e480
CC
18540 if (DEFAULT_ABI == ABI_AIX)
18541 {
9739c90c
JJ
18542#ifndef NO_PROFILE_COUNTERS
18543# define NO_PROFILE_COUNTERS 0
18544#endif
f676971a 18545 if (NO_PROFILE_COUNTERS)
9739c90c
JJ
18546 emit_library_call (init_one_libfunc (RS6000_MCOUNT), 0, VOIDmode, 0);
18547 else
18548 {
18549 char buf[30];
18550 const char *label_name;
18551 rtx fun;
411707f4 18552
9739c90c
JJ
18553 ASM_GENERATE_INTERNAL_LABEL (buf, "LP", labelno);
18554 label_name = (*targetm.strip_name_encoding) (ggc_strdup (buf));
18555 fun = gen_rtx_SYMBOL_REF (Pmode, label_name);
411707f4 18556
9739c90c
JJ
18557 emit_library_call (init_one_libfunc (RS6000_MCOUNT), 0, VOIDmode, 1,
18558 fun, Pmode);
18559 }
8480e480 18560 }
ee890fe2
SS
18561 else if (DEFAULT_ABI == ABI_DARWIN)
18562 {
d5fa86ba 18563 const char *mcount_name = RS6000_MCOUNT;
1de43f85 18564 int caller_addr_regno = LR_REGNO;
ee890fe2
SS
18565
18566 /* Be conservative and always set this, at least for now. */
e3b5732b 18567 crtl->uses_pic_offset_table = 1;
ee890fe2
SS
18568
18569#if TARGET_MACHO
18570 /* For PIC code, set up a stub and collect the caller's address
18571 from r0, which is where the prologue puts it. */
11abc112 18572 if (MACHOPIC_INDIRECT
e3b5732b 18573 && crtl->uses_pic_offset_table)
11abc112 18574 caller_addr_regno = 0;
ee890fe2
SS
18575#endif
18576 emit_library_call (gen_rtx_SYMBOL_REF (Pmode, mcount_name),
18577 0, VOIDmode, 1,
18578 gen_rtx_REG (Pmode, caller_addr_regno), Pmode);
18579 }
411707f4
CC
18580}
18581
a4f6c312 18582/* Write function profiler code. */
e165f3f0
RK
18583
18584void
a2369ed3 18585output_function_profiler (FILE *file, int labelno)
e165f3f0 18586{
3daf36a4 18587 char buf[100];
e165f3f0 18588
38c1f2d7 18589 switch (DEFAULT_ABI)
3daf36a4 18590 {
38c1f2d7 18591 default:
37409796 18592 gcc_unreachable ();
38c1f2d7
MM
18593
18594 case ABI_V4:
09eeeacb
AM
18595 if (!TARGET_32BIT)
18596 {
d4ee4d25 18597 warning (0, "no profiling of 64-bit code for this ABI");
09eeeacb
AM
18598 return;
18599 }
ffcfcb5f 18600 ASM_GENERATE_INTERNAL_LABEL (buf, "LP", labelno);
38c1f2d7 18601 fprintf (file, "\tmflr %s\n", reg_names[0]);
71625f3d
AM
18602 if (NO_PROFILE_COUNTERS)
18603 {
18604 asm_fprintf (file, "\t{st|stw} %s,4(%s)\n",
18605 reg_names[0], reg_names[1]);
18606 }
18607 else if (TARGET_SECURE_PLT && flag_pic)
18608 {
18609 asm_fprintf (file, "\tbcl 20,31,1f\n1:\n\t{st|stw} %s,4(%s)\n",
18610 reg_names[0], reg_names[1]);
18611 asm_fprintf (file, "\tmflr %s\n", reg_names[12]);
18612 asm_fprintf (file, "\t{cau|addis} %s,%s,",
18613 reg_names[12], reg_names[12]);
18614 assemble_name (file, buf);
18615 asm_fprintf (file, "-1b@ha\n\t{cal|la} %s,", reg_names[0]);
18616 assemble_name (file, buf);
18617 asm_fprintf (file, "-1b@l(%s)\n", reg_names[12]);
18618 }
18619 else if (flag_pic == 1)
38c1f2d7 18620 {
dfdfa60f 18621 fputs ("\tbl _GLOBAL_OFFSET_TABLE_@local-4\n", file);
71625f3d
AM
18622 asm_fprintf (file, "\t{st|stw} %s,4(%s)\n",
18623 reg_names[0], reg_names[1]);
17167fd8 18624 asm_fprintf (file, "\tmflr %s\n", reg_names[12]);
dfdfa60f 18625 asm_fprintf (file, "\t{l|lwz} %s,", reg_names[0]);
38c1f2d7 18626 assemble_name (file, buf);
17167fd8 18627 asm_fprintf (file, "@got(%s)\n", reg_names[12]);
38c1f2d7 18628 }
9ebbca7d 18629 else if (flag_pic > 1)
38c1f2d7 18630 {
71625f3d
AM
18631 asm_fprintf (file, "\t{st|stw} %s,4(%s)\n",
18632 reg_names[0], reg_names[1]);
9ebbca7d 18633 /* Now, we need to get the address of the label. */
71625f3d 18634 fputs ("\tbcl 20,31,1f\n\t.long ", file);
034e84c4 18635 assemble_name (file, buf);
9ebbca7d
GK
18636 fputs ("-.\n1:", file);
18637 asm_fprintf (file, "\tmflr %s\n", reg_names[11]);
f676971a 18638 asm_fprintf (file, "\t{l|lwz} %s,0(%s)\n",
9ebbca7d
GK
18639 reg_names[0], reg_names[11]);
18640 asm_fprintf (file, "\t{cax|add} %s,%s,%s\n",
18641 reg_names[0], reg_names[0], reg_names[11]);
38c1f2d7 18642 }
38c1f2d7
MM
18643 else
18644 {
17167fd8 18645 asm_fprintf (file, "\t{liu|lis} %s,", reg_names[12]);
38c1f2d7 18646 assemble_name (file, buf);
dfdfa60f 18647 fputs ("@ha\n", file);
71625f3d
AM
18648 asm_fprintf (file, "\t{st|stw} %s,4(%s)\n",
18649 reg_names[0], reg_names[1]);
a260abc9 18650 asm_fprintf (file, "\t{cal|la} %s,", reg_names[0]);
38c1f2d7 18651 assemble_name (file, buf);
17167fd8 18652 asm_fprintf (file, "@l(%s)\n", reg_names[12]);
38c1f2d7
MM
18653 }
18654
50d440bc 18655 /* ABI_V4 saves the static chain reg with ASM_OUTPUT_REG_PUSH. */
3b6ce0af
DE
18656 fprintf (file, "\tbl %s%s\n",
18657 RS6000_MCOUNT, flag_pic ? "@plt" : "");
38c1f2d7
MM
18658 break;
18659
18660 case ABI_AIX:
ee890fe2 18661 case ABI_DARWIN:
ffcfcb5f
AM
18662 if (!TARGET_PROFILE_KERNEL)
18663 {
a3c9585f 18664 /* Don't do anything, done in output_profile_hook (). */
ffcfcb5f
AM
18665 }
18666 else
18667 {
37409796 18668 gcc_assert (!TARGET_32BIT);
ffcfcb5f
AM
18669
18670 asm_fprintf (file, "\tmflr %s\n", reg_names[0]);
18671 asm_fprintf (file, "\tstd %s,16(%s)\n", reg_names[0], reg_names[1]);
18672
6de9cd9a 18673 if (cfun->static_chain_decl != NULL)
ffcfcb5f
AM
18674 {
18675 asm_fprintf (file, "\tstd %s,24(%s)\n",
18676 reg_names[STATIC_CHAIN_REGNUM], reg_names[1]);
18677 fprintf (file, "\tbl %s\n", RS6000_MCOUNT);
18678 asm_fprintf (file, "\tld %s,24(%s)\n",
18679 reg_names[STATIC_CHAIN_REGNUM], reg_names[1]);
18680 }
18681 else
18682 fprintf (file, "\tbl %s\n", RS6000_MCOUNT);
18683 }
38c1f2d7
MM
18684 break;
18685 }
e165f3f0 18686}
a251ffd0 18687
b54cf83a 18688\f
44cd321e
PS
18689
18690/* The following variable value is the last issued insn. */
18691
18692static rtx last_scheduled_insn;
18693
18694/* The following variable helps to balance issuing of load and
18695 store instructions */
18696
18697static int load_store_pendulum;
18698
b54cf83a
DE
18699/* Power4 load update and store update instructions are cracked into a
18700 load or store and an integer insn which are executed in the same cycle.
18701 Branches have their own dispatch slot which does not count against the
18702 GCC issue rate, but it changes the program flow so there are no other
18703 instructions to issue in this cycle. */
18704
18705static int
f676971a
EC
18706rs6000_variable_issue (FILE *stream ATTRIBUTE_UNUSED,
18707 int verbose ATTRIBUTE_UNUSED,
a2369ed3 18708 rtx insn, int more)
b54cf83a 18709{
44cd321e 18710 last_scheduled_insn = insn;
b54cf83a
DE
18711 if (GET_CODE (PATTERN (insn)) == USE
18712 || GET_CODE (PATTERN (insn)) == CLOBBER)
44cd321e
PS
18713 {
18714 cached_can_issue_more = more;
18715 return cached_can_issue_more;
18716 }
18717
18718 if (insn_terminates_group_p (insn, current_group))
18719 {
18720 cached_can_issue_more = 0;
18721 return cached_can_issue_more;
18722 }
b54cf83a 18723
d296e02e
AP
18724 /* If no reservation, but reach here */
18725 if (recog_memoized (insn) < 0)
18726 return more;
18727
ec507f2d 18728 if (rs6000_sched_groups)
b54cf83a 18729 {
cbe26ab8 18730 if (is_microcoded_insn (insn))
44cd321e 18731 cached_can_issue_more = 0;
cbe26ab8 18732 else if (is_cracked_insn (insn))
44cd321e
PS
18733 cached_can_issue_more = more > 2 ? more - 2 : 0;
18734 else
18735 cached_can_issue_more = more - 1;
18736
18737 return cached_can_issue_more;
b54cf83a 18738 }
165b263e 18739
d296e02e
AP
18740 if (rs6000_cpu_attr == CPU_CELL && is_nonpipeline_insn (insn))
18741 return 0;
18742
44cd321e
PS
18743 cached_can_issue_more = more - 1;
18744 return cached_can_issue_more;
b54cf83a
DE
18745}
18746
a251ffd0
TG
18747/* Adjust the cost of a scheduling dependency. Return the new cost of
18748 a dependency LINK or INSN on DEP_INSN. COST is the current cost. */
18749
c237e94a 18750static int
0a4f0294 18751rs6000_adjust_cost (rtx insn, rtx link, rtx dep_insn, int cost)
a251ffd0 18752{
44cd321e 18753 enum attr_type attr_type;
a251ffd0 18754
44cd321e 18755 if (! recog_memoized (insn))
a251ffd0
TG
18756 return 0;
18757
44cd321e 18758 switch (REG_NOTE_KIND (link))
a251ffd0 18759 {
44cd321e
PS
18760 case REG_DEP_TRUE:
18761 {
18762 /* Data dependency; DEP_INSN writes a register that INSN reads
18763 some cycles later. */
18764
18765 /* Separate a load from a narrower, dependent store. */
18766 if (rs6000_sched_groups
18767 && GET_CODE (PATTERN (insn)) == SET
18768 && GET_CODE (PATTERN (dep_insn)) == SET
18769 && GET_CODE (XEXP (PATTERN (insn), 1)) == MEM
18770 && GET_CODE (XEXP (PATTERN (dep_insn), 0)) == MEM
18771 && (GET_MODE_SIZE (GET_MODE (XEXP (PATTERN (insn), 1)))
18772 > GET_MODE_SIZE (GET_MODE (XEXP (PATTERN (dep_insn), 0)))))
18773 return cost + 14;
18774
18775 attr_type = get_attr_type (insn);
18776
18777 switch (attr_type)
18778 {
18779 case TYPE_JMPREG:
18780 /* Tell the first scheduling pass about the latency between
18781 a mtctr and bctr (and mtlr and br/blr). The first
18782 scheduling pass will not know about this latency since
18783 the mtctr instruction, which has the latency associated
18784 to it, will be generated by reload. */
18785 return TARGET_POWER ? 5 : 4;
18786 case TYPE_BRANCH:
18787 /* Leave some extra cycles between a compare and its
18788 dependent branch, to inhibit expensive mispredicts. */
18789 if ((rs6000_cpu_attr == CPU_PPC603
18790 || rs6000_cpu_attr == CPU_PPC604
18791 || rs6000_cpu_attr == CPU_PPC604E
18792 || rs6000_cpu_attr == CPU_PPC620
18793 || rs6000_cpu_attr == CPU_PPC630
18794 || rs6000_cpu_attr == CPU_PPC750
18795 || rs6000_cpu_attr == CPU_PPC7400
18796 || rs6000_cpu_attr == CPU_PPC7450
18797 || rs6000_cpu_attr == CPU_POWER4
d296e02e
AP
18798 || rs6000_cpu_attr == CPU_POWER5
18799 || rs6000_cpu_attr == CPU_CELL)
44cd321e
PS
18800 && recog_memoized (dep_insn)
18801 && (INSN_CODE (dep_insn) >= 0))
982afe02 18802
44cd321e
PS
18803 switch (get_attr_type (dep_insn))
18804 {
18805 case TYPE_CMP:
18806 case TYPE_COMPARE:
18807 case TYPE_DELAYED_COMPARE:
18808 case TYPE_IMUL_COMPARE:
18809 case TYPE_LMUL_COMPARE:
18810 case TYPE_FPCOMPARE:
18811 case TYPE_CR_LOGICAL:
18812 case TYPE_DELAYED_CR:
18813 return cost + 2;
18814 default:
18815 break;
18816 }
18817 break;
18818
18819 case TYPE_STORE:
18820 case TYPE_STORE_U:
18821 case TYPE_STORE_UX:
18822 case TYPE_FPSTORE:
18823 case TYPE_FPSTORE_U:
18824 case TYPE_FPSTORE_UX:
18825 if ((rs6000_cpu == PROCESSOR_POWER6)
18826 && recog_memoized (dep_insn)
18827 && (INSN_CODE (dep_insn) >= 0))
18828 {
18829
18830 if (GET_CODE (PATTERN (insn)) != SET)
18831 /* If this happens, we have to extend this to schedule
18832 optimally. Return default for now. */
18833 return cost;
18834
18835 /* Adjust the cost for the case where the value written
18836 by a fixed point operation is used as the address
18837 gen value on a store. */
18838 switch (get_attr_type (dep_insn))
18839 {
18840 case TYPE_LOAD:
18841 case TYPE_LOAD_U:
18842 case TYPE_LOAD_UX:
18843 case TYPE_CNTLZ:
18844 {
18845 if (! store_data_bypass_p (dep_insn, insn))
18846 return 4;
18847 break;
18848 }
18849 case TYPE_LOAD_EXT:
18850 case TYPE_LOAD_EXT_U:
18851 case TYPE_LOAD_EXT_UX:
18852 case TYPE_VAR_SHIFT_ROTATE:
18853 case TYPE_VAR_DELAYED_COMPARE:
18854 {
18855 if (! store_data_bypass_p (dep_insn, insn))
18856 return 6;
18857 break;
18858 }
18859 case TYPE_INTEGER:
18860 case TYPE_COMPARE:
18861 case TYPE_FAST_COMPARE:
18862 case TYPE_EXTS:
18863 case TYPE_SHIFT:
18864 case TYPE_INSERT_WORD:
18865 case TYPE_INSERT_DWORD:
18866 case TYPE_FPLOAD_U:
18867 case TYPE_FPLOAD_UX:
18868 case TYPE_STORE_U:
18869 case TYPE_STORE_UX:
18870 case TYPE_FPSTORE_U:
18871 case TYPE_FPSTORE_UX:
18872 {
18873 if (! store_data_bypass_p (dep_insn, insn))
18874 return 3;
18875 break;
18876 }
18877 case TYPE_IMUL:
18878 case TYPE_IMUL2:
18879 case TYPE_IMUL3:
18880 case TYPE_LMUL:
18881 case TYPE_IMUL_COMPARE:
18882 case TYPE_LMUL_COMPARE:
18883 {
18884 if (! store_data_bypass_p (dep_insn, insn))
18885 return 17;
18886 break;
18887 }
18888 case TYPE_IDIV:
18889 {
18890 if (! store_data_bypass_p (dep_insn, insn))
18891 return 45;
18892 break;
18893 }
18894 case TYPE_LDIV:
18895 {
18896 if (! store_data_bypass_p (dep_insn, insn))
18897 return 57;
18898 break;
18899 }
18900 default:
18901 break;
18902 }
18903 }
18904 break;
18905
18906 case TYPE_LOAD:
18907 case TYPE_LOAD_U:
18908 case TYPE_LOAD_UX:
18909 case TYPE_LOAD_EXT:
18910 case TYPE_LOAD_EXT_U:
18911 case TYPE_LOAD_EXT_UX:
18912 if ((rs6000_cpu == PROCESSOR_POWER6)
18913 && recog_memoized (dep_insn)
18914 && (INSN_CODE (dep_insn) >= 0))
18915 {
18916
18917 /* Adjust the cost for the case where the value written
18918 by a fixed point instruction is used within the address
18919 gen portion of a subsequent load(u)(x) */
18920 switch (get_attr_type (dep_insn))
18921 {
18922 case TYPE_LOAD:
18923 case TYPE_LOAD_U:
18924 case TYPE_LOAD_UX:
18925 case TYPE_CNTLZ:
18926 {
18927 if (set_to_load_agen (dep_insn, insn))
18928 return 4;
18929 break;
18930 }
18931 case TYPE_LOAD_EXT:
18932 case TYPE_LOAD_EXT_U:
18933 case TYPE_LOAD_EXT_UX:
18934 case TYPE_VAR_SHIFT_ROTATE:
18935 case TYPE_VAR_DELAYED_COMPARE:
18936 {
18937 if (set_to_load_agen (dep_insn, insn))
18938 return 6;
18939 break;
18940 }
18941 case TYPE_INTEGER:
18942 case TYPE_COMPARE:
18943 case TYPE_FAST_COMPARE:
18944 case TYPE_EXTS:
18945 case TYPE_SHIFT:
18946 case TYPE_INSERT_WORD:
18947 case TYPE_INSERT_DWORD:
18948 case TYPE_FPLOAD_U:
18949 case TYPE_FPLOAD_UX:
18950 case TYPE_STORE_U:
18951 case TYPE_STORE_UX:
18952 case TYPE_FPSTORE_U:
18953 case TYPE_FPSTORE_UX:
18954 {
18955 if (set_to_load_agen (dep_insn, insn))
18956 return 3;
18957 break;
18958 }
18959 case TYPE_IMUL:
18960 case TYPE_IMUL2:
18961 case TYPE_IMUL3:
18962 case TYPE_LMUL:
18963 case TYPE_IMUL_COMPARE:
18964 case TYPE_LMUL_COMPARE:
18965 {
18966 if (set_to_load_agen (dep_insn, insn))
18967 return 17;
18968 break;
18969 }
18970 case TYPE_IDIV:
18971 {
18972 if (set_to_load_agen (dep_insn, insn))
18973 return 45;
18974 break;
18975 }
18976 case TYPE_LDIV:
18977 {
18978 if (set_to_load_agen (dep_insn, insn))
18979 return 57;
18980 break;
18981 }
18982 default:
18983 break;
18984 }
18985 }
18986 break;
18987
18988 case TYPE_FPLOAD:
18989 if ((rs6000_cpu == PROCESSOR_POWER6)
18990 && recog_memoized (dep_insn)
18991 && (INSN_CODE (dep_insn) >= 0)
18992 && (get_attr_type (dep_insn) == TYPE_MFFGPR))
18993 return 2;
18994
18995 default:
18996 break;
18997 }
c9dbf840 18998
a251ffd0 18999 /* Fall out to return default cost. */
44cd321e
PS
19000 }
19001 break;
19002
19003 case REG_DEP_OUTPUT:
19004 /* Output dependency; DEP_INSN writes a register that INSN writes some
19005 cycles later. */
19006 if ((rs6000_cpu == PROCESSOR_POWER6)
19007 && recog_memoized (dep_insn)
19008 && (INSN_CODE (dep_insn) >= 0))
19009 {
19010 attr_type = get_attr_type (insn);
19011
19012 switch (attr_type)
19013 {
19014 case TYPE_FP:
19015 if (get_attr_type (dep_insn) == TYPE_FP)
19016 return 1;
19017 break;
19018 case TYPE_FPLOAD:
19019 if (get_attr_type (dep_insn) == TYPE_MFFGPR)
19020 return 2;
19021 break;
19022 default:
19023 break;
19024 }
19025 }
19026 case REG_DEP_ANTI:
19027 /* Anti dependency; DEP_INSN reads a register that INSN writes some
19028 cycles later. */
19029 return 0;
19030
19031 default:
19032 gcc_unreachable ();
a251ffd0
TG
19033 }
19034
19035 return cost;
19036}
b6c9286a 19037
cbe26ab8 19038/* The function returns a true if INSN is microcoded.
839a4992 19039 Return false otherwise. */
cbe26ab8
DN
19040
19041static bool
19042is_microcoded_insn (rtx insn)
19043{
19044 if (!insn || !INSN_P (insn)
19045 || GET_CODE (PATTERN (insn)) == USE
19046 || GET_CODE (PATTERN (insn)) == CLOBBER)
19047 return false;
19048
d296e02e
AP
19049 if (rs6000_cpu_attr == CPU_CELL)
19050 return get_attr_cell_micro (insn) == CELL_MICRO_ALWAYS;
19051
ec507f2d 19052 if (rs6000_sched_groups)
cbe26ab8
DN
19053 {
19054 enum attr_type type = get_attr_type (insn);
19055 if (type == TYPE_LOAD_EXT_U
19056 || type == TYPE_LOAD_EXT_UX
19057 || type == TYPE_LOAD_UX
19058 || type == TYPE_STORE_UX
19059 || type == TYPE_MFCR)
c4ad648e 19060 return true;
cbe26ab8
DN
19061 }
19062
19063 return false;
19064}
19065
cbe26ab8
DN
19066/* The function returns true if INSN is cracked into 2 instructions
19067 by the processor (and therefore occupies 2 issue slots). */
19068
19069static bool
19070is_cracked_insn (rtx insn)
19071{
19072 if (!insn || !INSN_P (insn)
19073 || GET_CODE (PATTERN (insn)) == USE
19074 || GET_CODE (PATTERN (insn)) == CLOBBER)
19075 return false;
19076
ec507f2d 19077 if (rs6000_sched_groups)
cbe26ab8
DN
19078 {
19079 enum attr_type type = get_attr_type (insn);
19080 if (type == TYPE_LOAD_U || type == TYPE_STORE_U
c4ad648e
AM
19081 || type == TYPE_FPLOAD_U || type == TYPE_FPSTORE_U
19082 || type == TYPE_FPLOAD_UX || type == TYPE_FPSTORE_UX
19083 || type == TYPE_LOAD_EXT || type == TYPE_DELAYED_CR
19084 || type == TYPE_COMPARE || type == TYPE_DELAYED_COMPARE
19085 || type == TYPE_IMUL_COMPARE || type == TYPE_LMUL_COMPARE
19086 || type == TYPE_IDIV || type == TYPE_LDIV
19087 || type == TYPE_INSERT_WORD)
19088 return true;
cbe26ab8
DN
19089 }
19090
19091 return false;
19092}
19093
19094/* The function returns true if INSN can be issued only from
a3c9585f 19095 the branch slot. */
cbe26ab8
DN
19096
19097static bool
19098is_branch_slot_insn (rtx insn)
19099{
19100 if (!insn || !INSN_P (insn)
19101 || GET_CODE (PATTERN (insn)) == USE
19102 || GET_CODE (PATTERN (insn)) == CLOBBER)
19103 return false;
19104
ec507f2d 19105 if (rs6000_sched_groups)
cbe26ab8
DN
19106 {
19107 enum attr_type type = get_attr_type (insn);
19108 if (type == TYPE_BRANCH || type == TYPE_JMPREG)
f676971a 19109 return true;
cbe26ab8
DN
19110 return false;
19111 }
19112
19113 return false;
19114}
79ae11c4 19115
44cd321e
PS
19116/* The function returns true if out_inst sets a value that is
19117 used in the address generation computation of in_insn */
19118static bool
19119set_to_load_agen (rtx out_insn, rtx in_insn)
19120{
19121 rtx out_set, in_set;
19122
19123 /* For performance reasons, only handle the simple case where
19124 both loads are a single_set. */
19125 out_set = single_set (out_insn);
19126 if (out_set)
19127 {
19128 in_set = single_set (in_insn);
19129 if (in_set)
19130 return reg_mentioned_p (SET_DEST (out_set), SET_SRC (in_set));
19131 }
19132
19133 return false;
19134}
19135
19136/* The function returns true if the target storage location of
19137 out_insn is adjacent to the target storage location of in_insn */
19138/* Return 1 if memory locations are adjacent. */
19139
19140static bool
19141adjacent_mem_locations (rtx insn1, rtx insn2)
19142{
19143
e3a0e200
PB
19144 rtx a = get_store_dest (PATTERN (insn1));
19145 rtx b = get_store_dest (PATTERN (insn2));
19146
44cd321e
PS
19147 if ((GET_CODE (XEXP (a, 0)) == REG
19148 || (GET_CODE (XEXP (a, 0)) == PLUS
19149 && GET_CODE (XEXP (XEXP (a, 0), 1)) == CONST_INT))
19150 && (GET_CODE (XEXP (b, 0)) == REG
19151 || (GET_CODE (XEXP (b, 0)) == PLUS
19152 && GET_CODE (XEXP (XEXP (b, 0), 1)) == CONST_INT)))
19153 {
f98e8938 19154 HOST_WIDE_INT val0 = 0, val1 = 0, val_diff;
44cd321e 19155 rtx reg0, reg1;
44cd321e
PS
19156
19157 if (GET_CODE (XEXP (a, 0)) == PLUS)
19158 {
19159 reg0 = XEXP (XEXP (a, 0), 0);
19160 val0 = INTVAL (XEXP (XEXP (a, 0), 1));
19161 }
19162 else
19163 reg0 = XEXP (a, 0);
19164
19165 if (GET_CODE (XEXP (b, 0)) == PLUS)
19166 {
19167 reg1 = XEXP (XEXP (b, 0), 0);
19168 val1 = INTVAL (XEXP (XEXP (b, 0), 1));
19169 }
19170 else
19171 reg1 = XEXP (b, 0);
19172
19173 val_diff = val1 - val0;
19174
19175 return ((REGNO (reg0) == REGNO (reg1))
f98e8938
JJ
19176 && ((MEM_SIZE (a) && val_diff == INTVAL (MEM_SIZE (a)))
19177 || (MEM_SIZE (b) && val_diff == -INTVAL (MEM_SIZE (b)))));
44cd321e
PS
19178 }
19179
19180 return false;
19181}
19182
a4f6c312 19183/* A C statement (sans semicolon) to update the integer scheduling
79ae11c4
DN
19184 priority INSN_PRIORITY (INSN). Increase the priority to execute the
19185 INSN earlier, reduce the priority to execute INSN later. Do not
a4f6c312
SS
19186 define this macro if you do not need to adjust the scheduling
19187 priorities of insns. */
bef84347 19188
c237e94a 19189static int
a2369ed3 19190rs6000_adjust_priority (rtx insn ATTRIBUTE_UNUSED, int priority)
bef84347 19191{
a4f6c312
SS
19192 /* On machines (like the 750) which have asymmetric integer units,
19193 where one integer unit can do multiply and divides and the other
19194 can't, reduce the priority of multiply/divide so it is scheduled
19195 before other integer operations. */
bef84347
VM
19196
19197#if 0
2c3c49de 19198 if (! INSN_P (insn))
bef84347
VM
19199 return priority;
19200
19201 if (GET_CODE (PATTERN (insn)) == USE)
19202 return priority;
19203
19204 switch (rs6000_cpu_attr) {
19205 case CPU_PPC750:
19206 switch (get_attr_type (insn))
19207 {
19208 default:
19209 break;
19210
19211 case TYPE_IMUL:
19212 case TYPE_IDIV:
3cb999d8
DE
19213 fprintf (stderr, "priority was %#x (%d) before adjustment\n",
19214 priority, priority);
bef84347
VM
19215 if (priority >= 0 && priority < 0x01000000)
19216 priority >>= 3;
19217 break;
19218 }
19219 }
19220#endif
19221
44cd321e 19222 if (insn_must_be_first_in_group (insn)
79ae11c4 19223 && reload_completed
f676971a 19224 && current_sched_info->sched_max_insns_priority
79ae11c4
DN
19225 && rs6000_sched_restricted_insns_priority)
19226 {
19227
c4ad648e
AM
19228 /* Prioritize insns that can be dispatched only in the first
19229 dispatch slot. */
79ae11c4 19230 if (rs6000_sched_restricted_insns_priority == 1)
f676971a
EC
19231 /* Attach highest priority to insn. This means that in
19232 haifa-sched.c:ready_sort(), dispatch-slot restriction considerations
79ae11c4 19233 precede 'priority' (critical path) considerations. */
f676971a 19234 return current_sched_info->sched_max_insns_priority;
79ae11c4 19235 else if (rs6000_sched_restricted_insns_priority == 2)
f676971a 19236 /* Increase priority of insn by a minimal amount. This means that in
c4ad648e
AM
19237 haifa-sched.c:ready_sort(), only 'priority' (critical path)
19238 considerations precede dispatch-slot restriction considerations. */
f676971a
EC
19239 return (priority + 1);
19240 }
79ae11c4 19241
44cd321e
PS
19242 if (rs6000_cpu == PROCESSOR_POWER6
19243 && ((load_store_pendulum == -2 && is_load_insn (insn))
19244 || (load_store_pendulum == 2 && is_store_insn (insn))))
19245 /* Attach highest priority to insn if the scheduler has just issued two
19246 stores and this instruction is a load, or two loads and this instruction
19247 is a store. Power6 wants loads and stores scheduled alternately
19248 when possible */
19249 return current_sched_info->sched_max_insns_priority;
19250
bef84347
VM
19251 return priority;
19252}
19253
d296e02e
AP
19254/* Return true if the instruction is nonpipelined on the Cell. */
19255static bool
19256is_nonpipeline_insn (rtx insn)
19257{
19258 enum attr_type type;
19259 if (!insn || !INSN_P (insn)
19260 || GET_CODE (PATTERN (insn)) == USE
19261 || GET_CODE (PATTERN (insn)) == CLOBBER)
19262 return false;
19263
19264 type = get_attr_type (insn);
19265 if (type == TYPE_IMUL
19266 || type == TYPE_IMUL2
19267 || type == TYPE_IMUL3
19268 || type == TYPE_LMUL
19269 || type == TYPE_IDIV
19270 || type == TYPE_LDIV
19271 || type == TYPE_SDIV
19272 || type == TYPE_DDIV
19273 || type == TYPE_SSQRT
19274 || type == TYPE_DSQRT
19275 || type == TYPE_MFCR
19276 || type == TYPE_MFCRF
19277 || type == TYPE_MFJMPR)
19278 {
19279 return true;
19280 }
19281 return false;
19282}
19283
19284
a4f6c312
SS
19285/* Return how many instructions the machine can issue per cycle. */
19286
c237e94a 19287static int
863d938c 19288rs6000_issue_rate (void)
b6c9286a 19289{
3317bab1
DE
19290 /* Use issue rate of 1 for first scheduling pass to decrease degradation. */
19291 if (!reload_completed)
19292 return 1;
19293
b6c9286a 19294 switch (rs6000_cpu_attr) {
3cb999d8
DE
19295 case CPU_RIOS1: /* ? */
19296 case CPU_RS64A:
19297 case CPU_PPC601: /* ? */
ed947a96 19298 case CPU_PPC7450:
3cb999d8 19299 return 3;
b54cf83a 19300 case CPU_PPC440:
b6c9286a 19301 case CPU_PPC603:
bef84347 19302 case CPU_PPC750:
ed947a96 19303 case CPU_PPC7400:
be12c2b0 19304 case CPU_PPC8540:
d296e02e 19305 case CPU_CELL:
fa41c305
EW
19306 case CPU_PPCE300C2:
19307 case CPU_PPCE300C3:
edae5fe3 19308 case CPU_PPCE500MC:
f676971a 19309 return 2;
3cb999d8 19310 case CPU_RIOS2:
b6c9286a 19311 case CPU_PPC604:
19684119 19312 case CPU_PPC604E:
b6c9286a 19313 case CPU_PPC620:
3cb999d8 19314 case CPU_PPC630:
b6c9286a 19315 return 4;
cbe26ab8 19316 case CPU_POWER4:
ec507f2d 19317 case CPU_POWER5:
44cd321e 19318 case CPU_POWER6:
cbe26ab8 19319 return 5;
b6c9286a
MM
19320 default:
19321 return 1;
19322 }
19323}
19324
be12c2b0
VM
19325/* Return how many instructions to look ahead for better insn
19326 scheduling. */
19327
19328static int
863d938c 19329rs6000_use_sched_lookahead (void)
be12c2b0
VM
19330{
19331 if (rs6000_cpu_attr == CPU_PPC8540)
19332 return 4;
d296e02e
AP
19333 if (rs6000_cpu_attr == CPU_CELL)
19334 return (reload_completed ? 8 : 0);
be12c2b0
VM
19335 return 0;
19336}
19337
d296e02e
AP
19338/* We are choosing insn from the ready queue. Return nonzero if INSN can be chosen. */
19339static int
19340rs6000_use_sched_lookahead_guard (rtx insn)
19341{
19342 if (rs6000_cpu_attr != CPU_CELL)
19343 return 1;
19344
19345 if (insn == NULL_RTX || !INSN_P (insn))
19346 abort ();
982afe02 19347
d296e02e
AP
19348 if (!reload_completed
19349 || is_nonpipeline_insn (insn)
19350 || is_microcoded_insn (insn))
19351 return 0;
19352
19353 return 1;
19354}
19355
569fa502
DN
19356/* Determine is PAT refers to memory. */
19357
19358static bool
19359is_mem_ref (rtx pat)
19360{
19361 const char * fmt;
19362 int i, j;
19363 bool ret = false;
19364
1de59bbd
DE
19365 /* stack_tie does not produce any real memory traffic. */
19366 if (GET_CODE (pat) == UNSPEC
19367 && XINT (pat, 1) == UNSPEC_TIE)
19368 return false;
19369
569fa502
DN
19370 if (GET_CODE (pat) == MEM)
19371 return true;
19372
19373 /* Recursively process the pattern. */
19374 fmt = GET_RTX_FORMAT (GET_CODE (pat));
19375
19376 for (i = GET_RTX_LENGTH (GET_CODE (pat)) - 1; i >= 0 && !ret; i--)
19377 {
19378 if (fmt[i] == 'e')
19379 ret |= is_mem_ref (XEXP (pat, i));
19380 else if (fmt[i] == 'E')
19381 for (j = XVECLEN (pat, i) - 1; j >= 0; j--)
19382 ret |= is_mem_ref (XVECEXP (pat, i, j));
19383 }
19384
19385 return ret;
19386}
19387
19388/* Determine if PAT is a PATTERN of a load insn. */
f676971a 19389
569fa502
DN
19390static bool
19391is_load_insn1 (rtx pat)
19392{
19393 if (!pat || pat == NULL_RTX)
19394 return false;
19395
19396 if (GET_CODE (pat) == SET)
19397 return is_mem_ref (SET_SRC (pat));
19398
19399 if (GET_CODE (pat) == PARALLEL)
19400 {
19401 int i;
19402
19403 for (i = 0; i < XVECLEN (pat, 0); i++)
19404 if (is_load_insn1 (XVECEXP (pat, 0, i)))
19405 return true;
19406 }
19407
19408 return false;
19409}
19410
19411/* Determine if INSN loads from memory. */
19412
19413static bool
19414is_load_insn (rtx insn)
19415{
19416 if (!insn || !INSN_P (insn))
19417 return false;
19418
19419 if (GET_CODE (insn) == CALL_INSN)
19420 return false;
19421
19422 return is_load_insn1 (PATTERN (insn));
19423}
19424
19425/* Determine if PAT is a PATTERN of a store insn. */
19426
19427static bool
19428is_store_insn1 (rtx pat)
19429{
19430 if (!pat || pat == NULL_RTX)
19431 return false;
19432
19433 if (GET_CODE (pat) == SET)
19434 return is_mem_ref (SET_DEST (pat));
19435
19436 if (GET_CODE (pat) == PARALLEL)
19437 {
19438 int i;
19439
19440 for (i = 0; i < XVECLEN (pat, 0); i++)
19441 if (is_store_insn1 (XVECEXP (pat, 0, i)))
19442 return true;
19443 }
19444
19445 return false;
19446}
19447
19448/* Determine if INSN stores to memory. */
19449
19450static bool
19451is_store_insn (rtx insn)
19452{
19453 if (!insn || !INSN_P (insn))
19454 return false;
19455
19456 return is_store_insn1 (PATTERN (insn));
19457}
19458
e3a0e200
PB
19459/* Return the dest of a store insn. */
19460
19461static rtx
19462get_store_dest (rtx pat)
19463{
19464 gcc_assert (is_store_insn1 (pat));
19465
19466 if (GET_CODE (pat) == SET)
19467 return SET_DEST (pat);
19468 else if (GET_CODE (pat) == PARALLEL)
19469 {
19470 int i;
19471
19472 for (i = 0; i < XVECLEN (pat, 0); i++)
19473 {
19474 rtx inner_pat = XVECEXP (pat, 0, i);
19475 if (GET_CODE (inner_pat) == SET
19476 && is_mem_ref (SET_DEST (inner_pat)))
19477 return inner_pat;
19478 }
19479 }
19480 /* We shouldn't get here, because we should have either a simple
19481 store insn or a store with update which are covered above. */
19482 gcc_unreachable();
19483}
19484
569fa502
DN
19485/* Returns whether the dependence between INSN and NEXT is considered
19486 costly by the given target. */
19487
19488static bool
b198261f 19489rs6000_is_costly_dependence (dep_t dep, int cost, int distance)
f676971a 19490{
b198261f
MK
19491 rtx insn;
19492 rtx next;
19493
aabcd309 19494 /* If the flag is not enabled - no dependence is considered costly;
f676971a 19495 allow all dependent insns in the same group.
569fa502
DN
19496 This is the most aggressive option. */
19497 if (rs6000_sched_costly_dep == no_dep_costly)
19498 return false;
19499
f676971a 19500 /* If the flag is set to 1 - a dependence is always considered costly;
569fa502
DN
19501 do not allow dependent instructions in the same group.
19502 This is the most conservative option. */
19503 if (rs6000_sched_costly_dep == all_deps_costly)
f676971a 19504 return true;
569fa502 19505
b198261f
MK
19506 insn = DEP_PRO (dep);
19507 next = DEP_CON (dep);
19508
f676971a
EC
19509 if (rs6000_sched_costly_dep == store_to_load_dep_costly
19510 && is_load_insn (next)
569fa502
DN
19511 && is_store_insn (insn))
19512 /* Prevent load after store in the same group. */
19513 return true;
19514
19515 if (rs6000_sched_costly_dep == true_store_to_load_dep_costly
f676971a 19516 && is_load_insn (next)
569fa502 19517 && is_store_insn (insn)
e2f6ff94 19518 && DEP_TYPE (dep) == REG_DEP_TRUE)
c4ad648e
AM
19519 /* Prevent load after store in the same group if it is a true
19520 dependence. */
569fa502 19521 return true;
f676971a
EC
19522
19523 /* The flag is set to X; dependences with latency >= X are considered costly,
569fa502
DN
19524 and will not be scheduled in the same group. */
19525 if (rs6000_sched_costly_dep <= max_dep_latency
19526 && ((cost - distance) >= (int)rs6000_sched_costly_dep))
19527 return true;
19528
19529 return false;
19530}
19531
f676971a 19532/* Return the next insn after INSN that is found before TAIL is reached,
cbe26ab8
DN
19533 skipping any "non-active" insns - insns that will not actually occupy
19534 an issue slot. Return NULL_RTX if such an insn is not found. */
19535
19536static rtx
19537get_next_active_insn (rtx insn, rtx tail)
19538{
f489aff8 19539 if (insn == NULL_RTX || insn == tail)
cbe26ab8
DN
19540 return NULL_RTX;
19541
f489aff8 19542 while (1)
cbe26ab8 19543 {
f489aff8
AM
19544 insn = NEXT_INSN (insn);
19545 if (insn == NULL_RTX || insn == tail)
19546 return NULL_RTX;
cbe26ab8 19547
f489aff8
AM
19548 if (CALL_P (insn)
19549 || JUMP_P (insn)
19550 || (NONJUMP_INSN_P (insn)
19551 && GET_CODE (PATTERN (insn)) != USE
19552 && GET_CODE (PATTERN (insn)) != CLOBBER
309ebcd0 19553 && INSN_CODE (insn) != CODE_FOR_stack_tie))
f489aff8
AM
19554 break;
19555 }
19556 return insn;
cbe26ab8
DN
19557}
19558
44cd321e
PS
19559/* We are about to begin issuing insns for this clock cycle. */
19560
19561static int
19562rs6000_sched_reorder (FILE *dump ATTRIBUTE_UNUSED, int sched_verbose,
19563 rtx *ready ATTRIBUTE_UNUSED,
19564 int *pn_ready ATTRIBUTE_UNUSED,
19565 int clock_var ATTRIBUTE_UNUSED)
19566{
d296e02e
AP
19567 int n_ready = *pn_ready;
19568
44cd321e
PS
19569 if (sched_verbose)
19570 fprintf (dump, "// rs6000_sched_reorder :\n");
19571
d296e02e
AP
19572 /* Reorder the ready list, if the second to last ready insn
19573 is a nonepipeline insn. */
19574 if (rs6000_cpu_attr == CPU_CELL && n_ready > 1)
19575 {
19576 if (is_nonpipeline_insn (ready[n_ready - 1])
19577 && (recog_memoized (ready[n_ready - 2]) > 0))
19578 /* Simply swap first two insns. */
19579 {
19580 rtx tmp = ready[n_ready - 1];
19581 ready[n_ready - 1] = ready[n_ready - 2];
19582 ready[n_ready - 2] = tmp;
19583 }
19584 }
19585
44cd321e
PS
19586 if (rs6000_cpu == PROCESSOR_POWER6)
19587 load_store_pendulum = 0;
19588
19589 return rs6000_issue_rate ();
19590}
19591
19592/* Like rs6000_sched_reorder, but called after issuing each insn. */
19593
19594static int
19595rs6000_sched_reorder2 (FILE *dump, int sched_verbose, rtx *ready,
19596 int *pn_ready, int clock_var ATTRIBUTE_UNUSED)
19597{
19598 if (sched_verbose)
19599 fprintf (dump, "// rs6000_sched_reorder2 :\n");
19600
19601 /* For Power6, we need to handle some special cases to try and keep the
19602 store queue from overflowing and triggering expensive flushes.
19603
19604 This code monitors how load and store instructions are being issued
19605 and skews the ready list one way or the other to increase the likelihood
19606 that a desired instruction is issued at the proper time.
19607
19608 A couple of things are done. First, we maintain a "load_store_pendulum"
19609 to track the current state of load/store issue.
19610
19611 - If the pendulum is at zero, then no loads or stores have been
19612 issued in the current cycle so we do nothing.
19613
19614 - If the pendulum is 1, then a single load has been issued in this
19615 cycle and we attempt to locate another load in the ready list to
19616 issue with it.
19617
2f8e468b 19618 - If the pendulum is -2, then two stores have already been
44cd321e
PS
19619 issued in this cycle, so we increase the priority of the first load
19620 in the ready list to increase it's likelihood of being chosen first
19621 in the next cycle.
19622
19623 - If the pendulum is -1, then a single store has been issued in this
19624 cycle and we attempt to locate another store in the ready list to
19625 issue with it, preferring a store to an adjacent memory location to
19626 facilitate store pairing in the store queue.
19627
19628 - If the pendulum is 2, then two loads have already been
19629 issued in this cycle, so we increase the priority of the first store
19630 in the ready list to increase it's likelihood of being chosen first
19631 in the next cycle.
19632
19633 - If the pendulum < -2 or > 2, then do nothing.
19634
19635 Note: This code covers the most common scenarios. There exist non
19636 load/store instructions which make use of the LSU and which
19637 would need to be accounted for to strictly model the behavior
19638 of the machine. Those instructions are currently unaccounted
19639 for to help minimize compile time overhead of this code.
19640 */
19641 if (rs6000_cpu == PROCESSOR_POWER6 && last_scheduled_insn)
19642 {
19643 int pos;
19644 int i;
19645 rtx tmp;
19646
19647 if (is_store_insn (last_scheduled_insn))
19648 /* Issuing a store, swing the load_store_pendulum to the left */
19649 load_store_pendulum--;
19650 else if (is_load_insn (last_scheduled_insn))
19651 /* Issuing a load, swing the load_store_pendulum to the right */
19652 load_store_pendulum++;
19653 else
19654 return cached_can_issue_more;
19655
19656 /* If the pendulum is balanced, or there is only one instruction on
19657 the ready list, then all is well, so return. */
19658 if ((load_store_pendulum == 0) || (*pn_ready <= 1))
19659 return cached_can_issue_more;
19660
19661 if (load_store_pendulum == 1)
19662 {
19663 /* A load has been issued in this cycle. Scan the ready list
19664 for another load to issue with it */
19665 pos = *pn_ready-1;
19666
19667 while (pos >= 0)
19668 {
19669 if (is_load_insn (ready[pos]))
19670 {
19671 /* Found a load. Move it to the head of the ready list,
19672 and adjust it's priority so that it is more likely to
19673 stay there */
19674 tmp = ready[pos];
19675 for (i=pos; i<*pn_ready-1; i++)
19676 ready[i] = ready[i + 1];
19677 ready[*pn_ready-1] = tmp;
e855c69d
AB
19678
19679 if (!sel_sched_p () && INSN_PRIORITY_KNOWN (tmp))
44cd321e
PS
19680 INSN_PRIORITY (tmp)++;
19681 break;
19682 }
19683 pos--;
19684 }
19685 }
19686 else if (load_store_pendulum == -2)
19687 {
19688 /* Two stores have been issued in this cycle. Increase the
19689 priority of the first load in the ready list to favor it for
19690 issuing in the next cycle. */
19691 pos = *pn_ready-1;
19692
19693 while (pos >= 0)
19694 {
19695 if (is_load_insn (ready[pos])
e855c69d
AB
19696 && !sel_sched_p ()
19697 && INSN_PRIORITY_KNOWN (ready[pos]))
44cd321e
PS
19698 {
19699 INSN_PRIORITY (ready[pos])++;
19700
19701 /* Adjust the pendulum to account for the fact that a load
19702 was found and increased in priority. This is to prevent
19703 increasing the priority of multiple loads */
19704 load_store_pendulum--;
19705
19706 break;
19707 }
19708 pos--;
19709 }
19710 }
19711 else if (load_store_pendulum == -1)
19712 {
19713 /* A store has been issued in this cycle. Scan the ready list for
19714 another store to issue with it, preferring a store to an adjacent
19715 memory location */
19716 int first_store_pos = -1;
19717
19718 pos = *pn_ready-1;
19719
19720 while (pos >= 0)
19721 {
19722 if (is_store_insn (ready[pos]))
19723 {
19724 /* Maintain the index of the first store found on the
19725 list */
19726 if (first_store_pos == -1)
19727 first_store_pos = pos;
19728
19729 if (is_store_insn (last_scheduled_insn)
19730 && adjacent_mem_locations (last_scheduled_insn,ready[pos]))
19731 {
19732 /* Found an adjacent store. Move it to the head of the
19733 ready list, and adjust it's priority so that it is
19734 more likely to stay there */
19735 tmp = ready[pos];
19736 for (i=pos; i<*pn_ready-1; i++)
19737 ready[i] = ready[i + 1];
19738 ready[*pn_ready-1] = tmp;
e855c69d
AB
19739
19740 if (!sel_sched_p () && INSN_PRIORITY_KNOWN (tmp))
44cd321e 19741 INSN_PRIORITY (tmp)++;
e855c69d 19742
44cd321e
PS
19743 first_store_pos = -1;
19744
19745 break;
19746 };
19747 }
19748 pos--;
19749 }
19750
19751 if (first_store_pos >= 0)
19752 {
19753 /* An adjacent store wasn't found, but a non-adjacent store was,
19754 so move the non-adjacent store to the front of the ready
19755 list, and adjust its priority so that it is more likely to
19756 stay there. */
19757 tmp = ready[first_store_pos];
19758 for (i=first_store_pos; i<*pn_ready-1; i++)
19759 ready[i] = ready[i + 1];
19760 ready[*pn_ready-1] = tmp;
e855c69d 19761 if (!sel_sched_p () && INSN_PRIORITY_KNOWN (tmp))
44cd321e
PS
19762 INSN_PRIORITY (tmp)++;
19763 }
19764 }
19765 else if (load_store_pendulum == 2)
19766 {
19767 /* Two loads have been issued in this cycle. Increase the priority
19768 of the first store in the ready list to favor it for issuing in
19769 the next cycle. */
19770 pos = *pn_ready-1;
19771
19772 while (pos >= 0)
19773 {
19774 if (is_store_insn (ready[pos])
e855c69d
AB
19775 && !sel_sched_p ()
19776 && INSN_PRIORITY_KNOWN (ready[pos]))
44cd321e
PS
19777 {
19778 INSN_PRIORITY (ready[pos])++;
19779
19780 /* Adjust the pendulum to account for the fact that a store
19781 was found and increased in priority. This is to prevent
19782 increasing the priority of multiple stores */
19783 load_store_pendulum++;
19784
19785 break;
19786 }
19787 pos--;
19788 }
19789 }
19790 }
19791
19792 return cached_can_issue_more;
19793}
19794
839a4992 19795/* Return whether the presence of INSN causes a dispatch group termination
cbe26ab8
DN
19796 of group WHICH_GROUP.
19797
19798 If WHICH_GROUP == current_group, this function will return true if INSN
19799 causes the termination of the current group (i.e, the dispatch group to
19800 which INSN belongs). This means that INSN will be the last insn in the
19801 group it belongs to.
19802
19803 If WHICH_GROUP == previous_group, this function will return true if INSN
19804 causes the termination of the previous group (i.e, the dispatch group that
19805 precedes the group to which INSN belongs). This means that INSN will be
19806 the first insn in the group it belongs to). */
19807
19808static bool
19809insn_terminates_group_p (rtx insn, enum group_termination which_group)
19810{
44cd321e 19811 bool first, last;
cbe26ab8
DN
19812
19813 if (! insn)
19814 return false;
569fa502 19815
44cd321e
PS
19816 first = insn_must_be_first_in_group (insn);
19817 last = insn_must_be_last_in_group (insn);
cbe26ab8 19818
44cd321e 19819 if (first && last)
cbe26ab8
DN
19820 return true;
19821
19822 if (which_group == current_group)
44cd321e 19823 return last;
cbe26ab8 19824 else if (which_group == previous_group)
44cd321e
PS
19825 return first;
19826
19827 return false;
19828}
19829
19830
19831static bool
19832insn_must_be_first_in_group (rtx insn)
19833{
19834 enum attr_type type;
19835
19836 if (!insn
19837 || insn == NULL_RTX
19838 || GET_CODE (insn) == NOTE
19839 || GET_CODE (PATTERN (insn)) == USE
19840 || GET_CODE (PATTERN (insn)) == CLOBBER)
19841 return false;
19842
19843 switch (rs6000_cpu)
cbe26ab8 19844 {
44cd321e
PS
19845 case PROCESSOR_POWER5:
19846 if (is_cracked_insn (insn))
19847 return true;
19848 case PROCESSOR_POWER4:
19849 if (is_microcoded_insn (insn))
19850 return true;
19851
19852 if (!rs6000_sched_groups)
19853 return false;
19854
19855 type = get_attr_type (insn);
19856
19857 switch (type)
19858 {
19859 case TYPE_MFCR:
19860 case TYPE_MFCRF:
19861 case TYPE_MTCR:
19862 case TYPE_DELAYED_CR:
19863 case TYPE_CR_LOGICAL:
19864 case TYPE_MTJMPR:
19865 case TYPE_MFJMPR:
19866 case TYPE_IDIV:
19867 case TYPE_LDIV:
19868 case TYPE_LOAD_L:
19869 case TYPE_STORE_C:
19870 case TYPE_ISYNC:
19871 case TYPE_SYNC:
19872 return true;
19873 default:
19874 break;
19875 }
19876 break;
19877 case PROCESSOR_POWER6:
19878 type = get_attr_type (insn);
19879
19880 switch (type)
19881 {
19882 case TYPE_INSERT_DWORD:
19883 case TYPE_EXTS:
19884 case TYPE_CNTLZ:
19885 case TYPE_SHIFT:
19886 case TYPE_VAR_SHIFT_ROTATE:
19887 case TYPE_TRAP:
19888 case TYPE_IMUL:
19889 case TYPE_IMUL2:
19890 case TYPE_IMUL3:
19891 case TYPE_LMUL:
19892 case TYPE_IDIV:
19893 case TYPE_INSERT_WORD:
19894 case TYPE_DELAYED_COMPARE:
19895 case TYPE_IMUL_COMPARE:
19896 case TYPE_LMUL_COMPARE:
19897 case TYPE_FPCOMPARE:
19898 case TYPE_MFCR:
19899 case TYPE_MTCR:
19900 case TYPE_MFJMPR:
19901 case TYPE_MTJMPR:
19902 case TYPE_ISYNC:
19903 case TYPE_SYNC:
19904 case TYPE_LOAD_L:
19905 case TYPE_STORE_C:
19906 case TYPE_LOAD_U:
19907 case TYPE_LOAD_UX:
19908 case TYPE_LOAD_EXT_UX:
19909 case TYPE_STORE_U:
19910 case TYPE_STORE_UX:
19911 case TYPE_FPLOAD_U:
19912 case TYPE_FPLOAD_UX:
19913 case TYPE_FPSTORE_U:
19914 case TYPE_FPSTORE_UX:
19915 return true;
19916 default:
19917 break;
19918 }
19919 break;
19920 default:
19921 break;
19922 }
19923
19924 return false;
19925}
19926
19927static bool
19928insn_must_be_last_in_group (rtx insn)
19929{
19930 enum attr_type type;
19931
19932 if (!insn
19933 || insn == NULL_RTX
19934 || GET_CODE (insn) == NOTE
19935 || GET_CODE (PATTERN (insn)) == USE
19936 || GET_CODE (PATTERN (insn)) == CLOBBER)
19937 return false;
19938
19939 switch (rs6000_cpu) {
19940 case PROCESSOR_POWER4:
19941 case PROCESSOR_POWER5:
19942 if (is_microcoded_insn (insn))
19943 return true;
19944
19945 if (is_branch_slot_insn (insn))
19946 return true;
19947
19948 break;
19949 case PROCESSOR_POWER6:
19950 type = get_attr_type (insn);
19951
19952 switch (type)
19953 {
19954 case TYPE_EXTS:
19955 case TYPE_CNTLZ:
19956 case TYPE_SHIFT:
19957 case TYPE_VAR_SHIFT_ROTATE:
19958 case TYPE_TRAP:
19959 case TYPE_IMUL:
19960 case TYPE_IMUL2:
19961 case TYPE_IMUL3:
19962 case TYPE_LMUL:
19963 case TYPE_IDIV:
19964 case TYPE_DELAYED_COMPARE:
19965 case TYPE_IMUL_COMPARE:
19966 case TYPE_LMUL_COMPARE:
19967 case TYPE_FPCOMPARE:
19968 case TYPE_MFCR:
19969 case TYPE_MTCR:
19970 case TYPE_MFJMPR:
19971 case TYPE_MTJMPR:
19972 case TYPE_ISYNC:
19973 case TYPE_SYNC:
19974 case TYPE_LOAD_L:
19975 case TYPE_STORE_C:
19976 return true;
19977 default:
19978 break;
cbe26ab8 19979 }
44cd321e
PS
19980 break;
19981 default:
19982 break;
19983 }
cbe26ab8
DN
19984
19985 return false;
19986}
19987
839a4992 19988/* Return true if it is recommended to keep NEXT_INSN "far" (in a separate
cbe26ab8
DN
19989 dispatch group) from the insns in GROUP_INSNS. Return false otherwise. */
19990
19991static bool
19992is_costly_group (rtx *group_insns, rtx next_insn)
19993{
19994 int i;
cbe26ab8
DN
19995 int issue_rate = rs6000_issue_rate ();
19996
19997 for (i = 0; i < issue_rate; i++)
19998 {
e2f6ff94
MK
19999 sd_iterator_def sd_it;
20000 dep_t dep;
cbe26ab8 20001 rtx insn = group_insns[i];
b198261f 20002
cbe26ab8 20003 if (!insn)
c4ad648e 20004 continue;
b198261f 20005
e2f6ff94 20006 FOR_EACH_DEP (insn, SD_LIST_FORW, sd_it, dep)
c4ad648e 20007 {
b198261f
MK
20008 rtx next = DEP_CON (dep);
20009
20010 if (next == next_insn
20011 && rs6000_is_costly_dependence (dep, dep_cost (dep), 0))
20012 return true;
c4ad648e 20013 }
cbe26ab8
DN
20014 }
20015
20016 return false;
20017}
20018
f676971a 20019/* Utility of the function redefine_groups.
cbe26ab8
DN
20020 Check if it is too costly to schedule NEXT_INSN together with GROUP_INSNS
20021 in the same dispatch group. If so, insert nops before NEXT_INSN, in order
20022 to keep it "far" (in a separate group) from GROUP_INSNS, following
20023 one of the following schemes, depending on the value of the flag
20024 -minsert_sched_nops = X:
20025 (1) X == sched_finish_regroup_exact: insert exactly as many nops as needed
839a4992 20026 in order to force NEXT_INSN into a separate group.
f676971a
EC
20027 (2) X < sched_finish_regroup_exact: insert exactly X nops.
20028 GROUP_END, CAN_ISSUE_MORE and GROUP_COUNT record the state after nop
cbe26ab8
DN
20029 insertion (has a group just ended, how many vacant issue slots remain in the
20030 last group, and how many dispatch groups were encountered so far). */
20031
f676971a 20032static int
c4ad648e
AM
20033force_new_group (int sched_verbose, FILE *dump, rtx *group_insns,
20034 rtx next_insn, bool *group_end, int can_issue_more,
20035 int *group_count)
cbe26ab8
DN
20036{
20037 rtx nop;
20038 bool force;
20039 int issue_rate = rs6000_issue_rate ();
20040 bool end = *group_end;
20041 int i;
20042
20043 if (next_insn == NULL_RTX)
20044 return can_issue_more;
20045
20046 if (rs6000_sched_insert_nops > sched_finish_regroup_exact)
20047 return can_issue_more;
20048
20049 force = is_costly_group (group_insns, next_insn);
20050 if (!force)
20051 return can_issue_more;
20052
20053 if (sched_verbose > 6)
20054 fprintf (dump,"force: group count = %d, can_issue_more = %d\n",
c4ad648e 20055 *group_count ,can_issue_more);
cbe26ab8
DN
20056
20057 if (rs6000_sched_insert_nops == sched_finish_regroup_exact)
20058 {
20059 if (*group_end)
c4ad648e 20060 can_issue_more = 0;
cbe26ab8
DN
20061
20062 /* Since only a branch can be issued in the last issue_slot, it is
20063 sufficient to insert 'can_issue_more - 1' nops if next_insn is not
20064 a branch. If next_insn is a branch, we insert 'can_issue_more' nops;
c4ad648e
AM
20065 in this case the last nop will start a new group and the branch
20066 will be forced to the new group. */
cbe26ab8 20067 if (can_issue_more && !is_branch_slot_insn (next_insn))
c4ad648e 20068 can_issue_more--;
cbe26ab8
DN
20069
20070 while (can_issue_more > 0)
c4ad648e 20071 {
9390387d 20072 nop = gen_nop ();
c4ad648e
AM
20073 emit_insn_before (nop, next_insn);
20074 can_issue_more--;
20075 }
cbe26ab8
DN
20076
20077 *group_end = true;
20078 return 0;
f676971a 20079 }
cbe26ab8
DN
20080
20081 if (rs6000_sched_insert_nops < sched_finish_regroup_exact)
20082 {
20083 int n_nops = rs6000_sched_insert_nops;
20084
f676971a 20085 /* Nops can't be issued from the branch slot, so the effective
c4ad648e 20086 issue_rate for nops is 'issue_rate - 1'. */
cbe26ab8 20087 if (can_issue_more == 0)
c4ad648e 20088 can_issue_more = issue_rate;
cbe26ab8
DN
20089 can_issue_more--;
20090 if (can_issue_more == 0)
c4ad648e
AM
20091 {
20092 can_issue_more = issue_rate - 1;
20093 (*group_count)++;
20094 end = true;
20095 for (i = 0; i < issue_rate; i++)
20096 {
20097 group_insns[i] = 0;
20098 }
20099 }
cbe26ab8
DN
20100
20101 while (n_nops > 0)
c4ad648e
AM
20102 {
20103 nop = gen_nop ();
20104 emit_insn_before (nop, next_insn);
20105 if (can_issue_more == issue_rate - 1) /* new group begins */
20106 end = false;
20107 can_issue_more--;
20108 if (can_issue_more == 0)
20109 {
20110 can_issue_more = issue_rate - 1;
20111 (*group_count)++;
20112 end = true;
20113 for (i = 0; i < issue_rate; i++)
20114 {
20115 group_insns[i] = 0;
20116 }
20117 }
20118 n_nops--;
20119 }
cbe26ab8
DN
20120
20121 /* Scale back relative to 'issue_rate' (instead of 'issue_rate - 1'). */
f676971a 20122 can_issue_more++;
cbe26ab8 20123
c4ad648e
AM
20124 /* Is next_insn going to start a new group? */
20125 *group_end
20126 = (end
cbe26ab8
DN
20127 || (can_issue_more == 1 && !is_branch_slot_insn (next_insn))
20128 || (can_issue_more <= 2 && is_cracked_insn (next_insn))
20129 || (can_issue_more < issue_rate &&
c4ad648e 20130 insn_terminates_group_p (next_insn, previous_group)));
cbe26ab8 20131 if (*group_end && end)
c4ad648e 20132 (*group_count)--;
cbe26ab8
DN
20133
20134 if (sched_verbose > 6)
c4ad648e
AM
20135 fprintf (dump, "done force: group count = %d, can_issue_more = %d\n",
20136 *group_count, can_issue_more);
f676971a
EC
20137 return can_issue_more;
20138 }
cbe26ab8
DN
20139
20140 return can_issue_more;
20141}
20142
20143/* This function tries to synch the dispatch groups that the compiler "sees"
f676971a 20144 with the dispatch groups that the processor dispatcher is expected to
cbe26ab8
DN
20145 form in practice. It tries to achieve this synchronization by forcing the
20146 estimated processor grouping on the compiler (as opposed to the function
20147 'pad_goups' which tries to force the scheduler's grouping on the processor).
20148
20149 The function scans the insn sequence between PREV_HEAD_INSN and TAIL and
20150 examines the (estimated) dispatch groups that will be formed by the processor
20151 dispatcher. It marks these group boundaries to reflect the estimated
20152 processor grouping, overriding the grouping that the scheduler had marked.
20153 Depending on the value of the flag '-minsert-sched-nops' this function can
20154 force certain insns into separate groups or force a certain distance between
20155 them by inserting nops, for example, if there exists a "costly dependence"
20156 between the insns.
20157
20158 The function estimates the group boundaries that the processor will form as
0fa2e4df 20159 follows: It keeps track of how many vacant issue slots are available after
cbe26ab8
DN
20160 each insn. A subsequent insn will start a new group if one of the following
20161 4 cases applies:
20162 - no more vacant issue slots remain in the current dispatch group.
20163 - only the last issue slot, which is the branch slot, is vacant, but the next
20164 insn is not a branch.
20165 - only the last 2 or less issue slots, including the branch slot, are vacant,
20166 which means that a cracked insn (which occupies two issue slots) can't be
20167 issued in this group.
f676971a 20168 - less than 'issue_rate' slots are vacant, and the next insn always needs to
cbe26ab8
DN
20169 start a new group. */
20170
20171static int
20172redefine_groups (FILE *dump, int sched_verbose, rtx prev_head_insn, rtx tail)
20173{
20174 rtx insn, next_insn;
20175 int issue_rate;
20176 int can_issue_more;
20177 int slot, i;
20178 bool group_end;
20179 int group_count = 0;
20180 rtx *group_insns;
20181
20182 /* Initialize. */
20183 issue_rate = rs6000_issue_rate ();
5ead67f6 20184 group_insns = XALLOCAVEC (rtx, issue_rate);
f676971a 20185 for (i = 0; i < issue_rate; i++)
cbe26ab8
DN
20186 {
20187 group_insns[i] = 0;
20188 }
20189 can_issue_more = issue_rate;
20190 slot = 0;
20191 insn = get_next_active_insn (prev_head_insn, tail);
20192 group_end = false;
20193
20194 while (insn != NULL_RTX)
20195 {
20196 slot = (issue_rate - can_issue_more);
20197 group_insns[slot] = insn;
20198 can_issue_more =
c4ad648e 20199 rs6000_variable_issue (dump, sched_verbose, insn, can_issue_more);
cbe26ab8 20200 if (insn_terminates_group_p (insn, current_group))
c4ad648e 20201 can_issue_more = 0;
cbe26ab8
DN
20202
20203 next_insn = get_next_active_insn (insn, tail);
20204 if (next_insn == NULL_RTX)
c4ad648e 20205 return group_count + 1;
cbe26ab8 20206
c4ad648e
AM
20207 /* Is next_insn going to start a new group? */
20208 group_end
20209 = (can_issue_more == 0
20210 || (can_issue_more == 1 && !is_branch_slot_insn (next_insn))
20211 || (can_issue_more <= 2 && is_cracked_insn (next_insn))
20212 || (can_issue_more < issue_rate &&
20213 insn_terminates_group_p (next_insn, previous_group)));
cbe26ab8 20214
f676971a 20215 can_issue_more = force_new_group (sched_verbose, dump, group_insns,
c4ad648e
AM
20216 next_insn, &group_end, can_issue_more,
20217 &group_count);
cbe26ab8
DN
20218
20219 if (group_end)
c4ad648e
AM
20220 {
20221 group_count++;
20222 can_issue_more = 0;
20223 for (i = 0; i < issue_rate; i++)
20224 {
20225 group_insns[i] = 0;
20226 }
20227 }
cbe26ab8
DN
20228
20229 if (GET_MODE (next_insn) == TImode && can_issue_more)
9390387d 20230 PUT_MODE (next_insn, VOIDmode);
cbe26ab8 20231 else if (!can_issue_more && GET_MODE (next_insn) != TImode)
c4ad648e 20232 PUT_MODE (next_insn, TImode);
cbe26ab8
DN
20233
20234 insn = next_insn;
20235 if (can_issue_more == 0)
c4ad648e
AM
20236 can_issue_more = issue_rate;
20237 } /* while */
cbe26ab8
DN
20238
20239 return group_count;
20240}
20241
20242/* Scan the insn sequence between PREV_HEAD_INSN and TAIL and examine the
20243 dispatch group boundaries that the scheduler had marked. Pad with nops
20244 any dispatch groups which have vacant issue slots, in order to force the
20245 scheduler's grouping on the processor dispatcher. The function
20246 returns the number of dispatch groups found. */
20247
20248static int
20249pad_groups (FILE *dump, int sched_verbose, rtx prev_head_insn, rtx tail)
20250{
20251 rtx insn, next_insn;
20252 rtx nop;
20253 int issue_rate;
20254 int can_issue_more;
20255 int group_end;
20256 int group_count = 0;
20257
20258 /* Initialize issue_rate. */
20259 issue_rate = rs6000_issue_rate ();
20260 can_issue_more = issue_rate;
20261
20262 insn = get_next_active_insn (prev_head_insn, tail);
20263 next_insn = get_next_active_insn (insn, tail);
20264
20265 while (insn != NULL_RTX)
20266 {
20267 can_issue_more =
20268 rs6000_variable_issue (dump, sched_verbose, insn, can_issue_more);
20269
20270 group_end = (next_insn == NULL_RTX || GET_MODE (next_insn) == TImode);
20271
20272 if (next_insn == NULL_RTX)
c4ad648e 20273 break;
cbe26ab8
DN
20274
20275 if (group_end)
c4ad648e
AM
20276 {
20277 /* If the scheduler had marked group termination at this location
e855c69d 20278 (between insn and next_insn), and neither insn nor next_insn will
c4ad648e
AM
20279 force group termination, pad the group with nops to force group
20280 termination. */
20281 if (can_issue_more
20282 && (rs6000_sched_insert_nops == sched_finish_pad_groups)
20283 && !insn_terminates_group_p (insn, current_group)
20284 && !insn_terminates_group_p (next_insn, previous_group))
20285 {
9390387d 20286 if (!is_branch_slot_insn (next_insn))
c4ad648e
AM
20287 can_issue_more--;
20288
20289 while (can_issue_more)
20290 {
20291 nop = gen_nop ();
20292 emit_insn_before (nop, next_insn);
20293 can_issue_more--;
20294 }
20295 }
20296
20297 can_issue_more = issue_rate;
20298 group_count++;
20299 }
cbe26ab8
DN
20300
20301 insn = next_insn;
20302 next_insn = get_next_active_insn (insn, tail);
20303 }
20304
20305 return group_count;
20306}
20307
44cd321e
PS
20308/* We're beginning a new block. Initialize data structures as necessary. */
20309
20310static void
20311rs6000_sched_init (FILE *dump ATTRIBUTE_UNUSED,
20312 int sched_verbose ATTRIBUTE_UNUSED,
20313 int max_ready ATTRIBUTE_UNUSED)
982afe02 20314{
44cd321e
PS
20315 last_scheduled_insn = NULL_RTX;
20316 load_store_pendulum = 0;
20317}
20318
cbe26ab8
DN
20319/* The following function is called at the end of scheduling BB.
20320 After reload, it inserts nops at insn group bundling. */
20321
20322static void
38f391a5 20323rs6000_sched_finish (FILE *dump, int sched_verbose)
cbe26ab8
DN
20324{
20325 int n_groups;
20326
20327 if (sched_verbose)
20328 fprintf (dump, "=== Finishing schedule.\n");
20329
ec507f2d 20330 if (reload_completed && rs6000_sched_groups)
cbe26ab8 20331 {
e855c69d
AB
20332 /* Do not run sched_finish hook when selective scheduling enabled. */
20333 if (sel_sched_p ())
20334 return;
20335
cbe26ab8 20336 if (rs6000_sched_insert_nops == sched_finish_none)
c4ad648e 20337 return;
cbe26ab8
DN
20338
20339 if (rs6000_sched_insert_nops == sched_finish_pad_groups)
c4ad648e
AM
20340 n_groups = pad_groups (dump, sched_verbose,
20341 current_sched_info->prev_head,
20342 current_sched_info->next_tail);
cbe26ab8 20343 else
c4ad648e
AM
20344 n_groups = redefine_groups (dump, sched_verbose,
20345 current_sched_info->prev_head,
20346 current_sched_info->next_tail);
cbe26ab8
DN
20347
20348 if (sched_verbose >= 6)
20349 {
20350 fprintf (dump, "ngroups = %d\n", n_groups);
20351 print_rtl (dump, current_sched_info->prev_head);
20352 fprintf (dump, "Done finish_sched\n");
20353 }
20354 }
20355}
e855c69d
AB
20356
20357struct _rs6000_sched_context
20358{
20359 short cached_can_issue_more;
20360 rtx last_scheduled_insn;
20361 int load_store_pendulum;
20362};
20363
20364typedef struct _rs6000_sched_context rs6000_sched_context_def;
20365typedef rs6000_sched_context_def *rs6000_sched_context_t;
20366
20367/* Allocate store for new scheduling context. */
20368static void *
20369rs6000_alloc_sched_context (void)
20370{
20371 return xmalloc (sizeof (rs6000_sched_context_def));
20372}
20373
20374/* If CLEAN_P is true then initializes _SC with clean data,
20375 and from the global context otherwise. */
20376static void
20377rs6000_init_sched_context (void *_sc, bool clean_p)
20378{
20379 rs6000_sched_context_t sc = (rs6000_sched_context_t) _sc;
20380
20381 if (clean_p)
20382 {
20383 sc->cached_can_issue_more = 0;
20384 sc->last_scheduled_insn = NULL_RTX;
20385 sc->load_store_pendulum = 0;
20386 }
20387 else
20388 {
20389 sc->cached_can_issue_more = cached_can_issue_more;
20390 sc->last_scheduled_insn = last_scheduled_insn;
20391 sc->load_store_pendulum = load_store_pendulum;
20392 }
20393}
20394
20395/* Sets the global scheduling context to the one pointed to by _SC. */
20396static void
20397rs6000_set_sched_context (void *_sc)
20398{
20399 rs6000_sched_context_t sc = (rs6000_sched_context_t) _sc;
20400
20401 gcc_assert (sc != NULL);
20402
20403 cached_can_issue_more = sc->cached_can_issue_more;
20404 last_scheduled_insn = sc->last_scheduled_insn;
20405 load_store_pendulum = sc->load_store_pendulum;
20406}
20407
20408/* Free _SC. */
20409static void
20410rs6000_free_sched_context (void *_sc)
20411{
20412 gcc_assert (_sc != NULL);
20413
20414 free (_sc);
20415}
20416
b6c9286a 20417\f
b6c9286a
MM
20418/* Length in units of the trampoline for entering a nested function. */
20419
20420int
863d938c 20421rs6000_trampoline_size (void)
b6c9286a
MM
20422{
20423 int ret = 0;
20424
20425 switch (DEFAULT_ABI)
20426 {
20427 default:
37409796 20428 gcc_unreachable ();
b6c9286a
MM
20429
20430 case ABI_AIX:
8f802bfb 20431 ret = (TARGET_32BIT) ? 12 : 24;
b6c9286a
MM
20432 break;
20433
4dabc42d 20434 case ABI_DARWIN:
b6c9286a 20435 case ABI_V4:
03a7e1a5 20436 ret = (TARGET_32BIT) ? 40 : 48;
b6c9286a 20437 break;
b6c9286a
MM
20438 }
20439
20440 return ret;
20441}
20442
20443/* Emit RTL insns to initialize the variable parts of a trampoline.
20444 FNADDR is an RTX for the address of the function's pure code.
20445 CXT is an RTX for the static chain value for the function. */
20446
20447void
a2369ed3 20448rs6000_initialize_trampoline (rtx addr, rtx fnaddr, rtx cxt)
b6c9286a 20449{
8bd04c56 20450 int regsize = (TARGET_32BIT) ? 4 : 8;
9613eaff 20451 rtx ctx_reg = force_reg (Pmode, cxt);
b6c9286a
MM
20452
20453 switch (DEFAULT_ABI)
20454 {
20455 default:
37409796 20456 gcc_unreachable ();
b6c9286a 20457
8bd04c56 20458/* Macros to shorten the code expansions below. */
9613eaff 20459#define MEM_DEREF(addr) gen_rtx_MEM (Pmode, memory_address (Pmode, addr))
c5c76735 20460#define MEM_PLUS(addr,offset) \
9613eaff 20461 gen_rtx_MEM (Pmode, memory_address (Pmode, plus_constant (addr, offset)))
7c59dc5d 20462
b6c9286a
MM
20463 /* Under AIX, just build the 3 word function descriptor */
20464 case ABI_AIX:
8bd04c56 20465 {
9613eaff
SH
20466 rtx fn_reg = gen_reg_rtx (Pmode);
20467 rtx toc_reg = gen_reg_rtx (Pmode);
8bd04c56 20468 emit_move_insn (fn_reg, MEM_DEREF (fnaddr));
1cb18e3c 20469 emit_move_insn (toc_reg, MEM_PLUS (fnaddr, regsize));
8bd04c56
MM
20470 emit_move_insn (MEM_DEREF (addr), fn_reg);
20471 emit_move_insn (MEM_PLUS (addr, regsize), toc_reg);
20472 emit_move_insn (MEM_PLUS (addr, 2*regsize), ctx_reg);
20473 }
b6c9286a
MM
20474 break;
20475
4dabc42d
TC
20476 /* Under V.4/eabi/darwin, __trampoline_setup does the real work. */
20477 case ABI_DARWIN:
b6c9286a 20478 case ABI_V4:
9613eaff 20479 emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "__trampoline_setup"),
eaf1bcf1 20480 FALSE, VOIDmode, 4,
9613eaff 20481 addr, Pmode,
eaf1bcf1 20482 GEN_INT (rs6000_trampoline_size ()), SImode,
9613eaff
SH
20483 fnaddr, Pmode,
20484 ctx_reg, Pmode);
b6c9286a 20485 break;
b6c9286a
MM
20486 }
20487
20488 return;
20489}
7509c759
MM
20490
20491\f
91d231cb 20492/* Table of valid machine attributes. */
a4f6c312 20493
91d231cb 20494const struct attribute_spec rs6000_attribute_table[] =
7509c759 20495{
91d231cb 20496 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler } */
8bb418a3 20497 { "altivec", 1, 1, false, true, false, rs6000_handle_altivec_attribute },
a5c76ee6
ZW
20498 { "longcall", 0, 0, false, true, true, rs6000_handle_longcall_attribute },
20499 { "shortcall", 0, 0, false, true, true, rs6000_handle_longcall_attribute },
77ccdfed
EC
20500 { "ms_struct", 0, 0, false, false, false, rs6000_handle_struct_attribute },
20501 { "gcc_struct", 0, 0, false, false, false, rs6000_handle_struct_attribute },
005c1a13
GK
20502#ifdef SUBTARGET_ATTRIBUTE_TABLE
20503 SUBTARGET_ATTRIBUTE_TABLE,
20504#endif
a5c76ee6 20505 { NULL, 0, 0, false, false, false, NULL }
91d231cb 20506};
7509c759 20507
8bb418a3
ZL
20508/* Handle the "altivec" attribute. The attribute may have
20509 arguments as follows:
f676971a 20510
8bb418a3
ZL
20511 __attribute__((altivec(vector__)))
20512 __attribute__((altivec(pixel__))) (always followed by 'unsigned short')
20513 __attribute__((altivec(bool__))) (always followed by 'unsigned')
20514
20515 and may appear more than once (e.g., 'vector bool char') in a
20516 given declaration. */
20517
20518static tree
f90ac3f0
UP
20519rs6000_handle_altivec_attribute (tree *node,
20520 tree name ATTRIBUTE_UNUSED,
20521 tree args,
8bb418a3
ZL
20522 int flags ATTRIBUTE_UNUSED,
20523 bool *no_add_attrs)
20524{
20525 tree type = *node, result = NULL_TREE;
20526 enum machine_mode mode;
20527 int unsigned_p;
20528 char altivec_type
20529 = ((args && TREE_CODE (args) == TREE_LIST && TREE_VALUE (args)
20530 && TREE_CODE (TREE_VALUE (args)) == IDENTIFIER_NODE)
20531 ? *IDENTIFIER_POINTER (TREE_VALUE (args))
f676971a 20532 : '?');
8bb418a3
ZL
20533
20534 while (POINTER_TYPE_P (type)
20535 || TREE_CODE (type) == FUNCTION_TYPE
20536 || TREE_CODE (type) == METHOD_TYPE
20537 || TREE_CODE (type) == ARRAY_TYPE)
20538 type = TREE_TYPE (type);
20539
20540 mode = TYPE_MODE (type);
20541
f90ac3f0
UP
20542 /* Check for invalid AltiVec type qualifiers. */
20543 if (type == long_unsigned_type_node || type == long_integer_type_node)
20544 {
20545 if (TARGET_64BIT)
20546 error ("use of %<long%> in AltiVec types is invalid for 64-bit code");
20547 else if (rs6000_warn_altivec_long)
d4ee4d25 20548 warning (0, "use of %<long%> in AltiVec types is deprecated; use %<int%>");
f90ac3f0
UP
20549 }
20550 else if (type == long_long_unsigned_type_node
20551 || type == long_long_integer_type_node)
20552 error ("use of %<long long%> in AltiVec types is invalid");
20553 else if (type == double_type_node)
20554 error ("use of %<double%> in AltiVec types is invalid");
20555 else if (type == long_double_type_node)
20556 error ("use of %<long double%> in AltiVec types is invalid");
20557 else if (type == boolean_type_node)
20558 error ("use of boolean types in AltiVec types is invalid");
20559 else if (TREE_CODE (type) == COMPLEX_TYPE)
20560 error ("use of %<complex%> in AltiVec types is invalid");
00b79d54
BE
20561 else if (DECIMAL_FLOAT_MODE_P (mode))
20562 error ("use of decimal floating point types in AltiVec types is invalid");
8bb418a3
ZL
20563
20564 switch (altivec_type)
20565 {
20566 case 'v':
8df83eae 20567 unsigned_p = TYPE_UNSIGNED (type);
8bb418a3
ZL
20568 switch (mode)
20569 {
c4ad648e
AM
20570 case SImode:
20571 result = (unsigned_p ? unsigned_V4SI_type_node : V4SI_type_node);
20572 break;
20573 case HImode:
20574 result = (unsigned_p ? unsigned_V8HI_type_node : V8HI_type_node);
20575 break;
20576 case QImode:
20577 result = (unsigned_p ? unsigned_V16QI_type_node : V16QI_type_node);
20578 break;
20579 case SFmode: result = V4SF_type_node; break;
20580 /* If the user says 'vector int bool', we may be handed the 'bool'
20581 attribute _before_ the 'vector' attribute, and so select the
20582 proper type in the 'b' case below. */
20583 case V4SImode: case V8HImode: case V16QImode: case V4SFmode:
20584 result = type;
20585 default: break;
8bb418a3
ZL
20586 }
20587 break;
20588 case 'b':
20589 switch (mode)
20590 {
c4ad648e
AM
20591 case SImode: case V4SImode: result = bool_V4SI_type_node; break;
20592 case HImode: case V8HImode: result = bool_V8HI_type_node; break;
20593 case QImode: case V16QImode: result = bool_V16QI_type_node;
20594 default: break;
8bb418a3
ZL
20595 }
20596 break;
20597 case 'p':
20598 switch (mode)
20599 {
c4ad648e
AM
20600 case V8HImode: result = pixel_V8HI_type_node;
20601 default: break;
8bb418a3
ZL
20602 }
20603 default: break;
20604 }
20605
4f538d42
UW
20606 /* Propagate qualifiers attached to the element type
20607 onto the vector type. */
20608 if (result && result != type && TYPE_QUALS (type))
20609 result = build_qualified_type (result, TYPE_QUALS (type));
7958a2a6 20610
8bb418a3
ZL
20611 *no_add_attrs = true; /* No need to hang on to the attribute. */
20612
f90ac3f0 20613 if (result)
5dc11954 20614 *node = lang_hooks.types.reconstruct_complex_type (*node, result);
8bb418a3
ZL
20615
20616 return NULL_TREE;
20617}
20618
f18eca82
ZL
20619/* AltiVec defines four built-in scalar types that serve as vector
20620 elements; we must teach the compiler how to mangle them. */
20621
20622static const char *
3101faab 20623rs6000_mangle_type (const_tree type)
f18eca82 20624{
608063c3
JB
20625 type = TYPE_MAIN_VARIANT (type);
20626
20627 if (TREE_CODE (type) != VOID_TYPE && TREE_CODE (type) != BOOLEAN_TYPE
20628 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
20629 return NULL;
20630
f18eca82
ZL
20631 if (type == bool_char_type_node) return "U6__boolc";
20632 if (type == bool_short_type_node) return "U6__bools";
20633 if (type == pixel_type_node) return "u7__pixel";
20634 if (type == bool_int_type_node) return "U6__booli";
20635
337bde91
DE
20636 /* Mangle IBM extended float long double as `g' (__float128) on
20637 powerpc*-linux where long-double-64 previously was the default. */
20638 if (TYPE_MAIN_VARIANT (type) == long_double_type_node
20639 && TARGET_ELF
20640 && TARGET_LONG_DOUBLE_128
20641 && !TARGET_IEEEQUAD)
20642 return "g";
20643
f18eca82
ZL
20644 /* For all other types, use normal C++ mangling. */
20645 return NULL;
20646}
20647
a5c76ee6
ZW
20648/* Handle a "longcall" or "shortcall" attribute; arguments as in
20649 struct attribute_spec.handler. */
a4f6c312 20650
91d231cb 20651static tree
f676971a
EC
20652rs6000_handle_longcall_attribute (tree *node, tree name,
20653 tree args ATTRIBUTE_UNUSED,
20654 int flags ATTRIBUTE_UNUSED,
a2369ed3 20655 bool *no_add_attrs)
91d231cb
JM
20656{
20657 if (TREE_CODE (*node) != FUNCTION_TYPE
20658 && TREE_CODE (*node) != FIELD_DECL
20659 && TREE_CODE (*node) != TYPE_DECL)
20660 {
5c498b10 20661 warning (OPT_Wattributes, "%qs attribute only applies to functions",
91d231cb
JM
20662 IDENTIFIER_POINTER (name));
20663 *no_add_attrs = true;
20664 }
6a4cee5f 20665
91d231cb 20666 return NULL_TREE;
7509c759
MM
20667}
20668
a5c76ee6
ZW
20669/* Set longcall attributes on all functions declared when
20670 rs6000_default_long_calls is true. */
20671static void
a2369ed3 20672rs6000_set_default_type_attributes (tree type)
a5c76ee6
ZW
20673{
20674 if (rs6000_default_long_calls
20675 && (TREE_CODE (type) == FUNCTION_TYPE
20676 || TREE_CODE (type) == METHOD_TYPE))
20677 TYPE_ATTRIBUTES (type) = tree_cons (get_identifier ("longcall"),
20678 NULL_TREE,
20679 TYPE_ATTRIBUTES (type));
16d6f994
EC
20680
20681#if TARGET_MACHO
20682 darwin_set_default_type_attributes (type);
20683#endif
a5c76ee6
ZW
20684}
20685
3cb999d8
DE
20686/* Return a reference suitable for calling a function with the
20687 longcall attribute. */
a4f6c312 20688
9390387d 20689rtx
a2369ed3 20690rs6000_longcall_ref (rtx call_ref)
6a4cee5f 20691{
d330fd93 20692 const char *call_name;
6a4cee5f
MM
20693 tree node;
20694
20695 if (GET_CODE (call_ref) != SYMBOL_REF)
20696 return call_ref;
20697
20698 /* System V adds '.' to the internal name, so skip them. */
20699 call_name = XSTR (call_ref, 0);
20700 if (*call_name == '.')
20701 {
20702 while (*call_name == '.')
20703 call_name++;
20704
20705 node = get_identifier (call_name);
39403d82 20706 call_ref = gen_rtx_SYMBOL_REF (VOIDmode, IDENTIFIER_POINTER (node));
6a4cee5f
MM
20707 }
20708
20709 return force_reg (Pmode, call_ref);
20710}
7509c759 20711\f
77ccdfed
EC
20712#ifndef TARGET_USE_MS_BITFIELD_LAYOUT
20713#define TARGET_USE_MS_BITFIELD_LAYOUT 0
20714#endif
20715
20716/* Handle a "ms_struct" or "gcc_struct" attribute; arguments as in
20717 struct attribute_spec.handler. */
20718static tree
20719rs6000_handle_struct_attribute (tree *node, tree name,
20720 tree args ATTRIBUTE_UNUSED,
20721 int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
20722{
20723 tree *type = NULL;
20724 if (DECL_P (*node))
20725 {
20726 if (TREE_CODE (*node) == TYPE_DECL)
20727 type = &TREE_TYPE (*node);
20728 }
20729 else
20730 type = node;
20731
20732 if (!(type && (TREE_CODE (*type) == RECORD_TYPE
20733 || TREE_CODE (*type) == UNION_TYPE)))
20734 {
20735 warning (OPT_Wattributes, "%qs attribute ignored", IDENTIFIER_POINTER (name));
20736 *no_add_attrs = true;
20737 }
20738
20739 else if ((is_attribute_p ("ms_struct", name)
20740 && lookup_attribute ("gcc_struct", TYPE_ATTRIBUTES (*type)))
20741 || ((is_attribute_p ("gcc_struct", name)
20742 && lookup_attribute ("ms_struct", TYPE_ATTRIBUTES (*type)))))
20743 {
20744 warning (OPT_Wattributes, "%qs incompatible attribute ignored",
20745 IDENTIFIER_POINTER (name));
20746 *no_add_attrs = true;
20747 }
20748
20749 return NULL_TREE;
20750}
20751
20752static bool
3101faab 20753rs6000_ms_bitfield_layout_p (const_tree record_type)
77ccdfed
EC
20754{
20755 return (TARGET_USE_MS_BITFIELD_LAYOUT &&
20756 !lookup_attribute ("gcc_struct", TYPE_ATTRIBUTES (record_type)))
20757 || lookup_attribute ("ms_struct", TYPE_ATTRIBUTES (record_type));
20758}
20759\f
b64a1b53
RH
20760#ifdef USING_ELFOS_H
20761
d6b5193b 20762/* A get_unnamed_section callback, used for switching to toc_section. */
7509c759 20763
d6b5193b
RS
20764static void
20765rs6000_elf_output_toc_section_asm_op (const void *data ATTRIBUTE_UNUSED)
20766{
20767 if (DEFAULT_ABI == ABI_AIX
20768 && TARGET_MINIMAL_TOC
20769 && !TARGET_RELOCATABLE)
20770 {
20771 if (!toc_initialized)
20772 {
20773 toc_initialized = 1;
20774 fprintf (asm_out_file, "%s\n", TOC_SECTION_ASM_OP);
20775 (*targetm.asm_out.internal_label) (asm_out_file, "LCTOC", 0);
20776 fprintf (asm_out_file, "\t.tc ");
20777 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1[TC],");
20778 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1");
20779 fprintf (asm_out_file, "\n");
20780
20781 fprintf (asm_out_file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);
20782 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1");
20783 fprintf (asm_out_file, " = .+32768\n");
20784 }
20785 else
20786 fprintf (asm_out_file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);
20787 }
20788 else if (DEFAULT_ABI == ABI_AIX && !TARGET_RELOCATABLE)
20789 fprintf (asm_out_file, "%s\n", TOC_SECTION_ASM_OP);
20790 else
20791 {
20792 fprintf (asm_out_file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);
20793 if (!toc_initialized)
20794 {
20795 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1");
20796 fprintf (asm_out_file, " = .+32768\n");
20797 toc_initialized = 1;
20798 }
20799 }
20800}
20801
20802/* Implement TARGET_ASM_INIT_SECTIONS. */
7509c759 20803
b64a1b53 20804static void
d6b5193b
RS
20805rs6000_elf_asm_init_sections (void)
20806{
20807 toc_section
20808 = get_unnamed_section (0, rs6000_elf_output_toc_section_asm_op, NULL);
20809
20810 sdata2_section
20811 = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
20812 SDATA2_SECTION_ASM_OP);
20813}
20814
20815/* Implement TARGET_SELECT_RTX_SECTION. */
20816
20817static section *
f676971a 20818rs6000_elf_select_rtx_section (enum machine_mode mode, rtx x,
a2369ed3 20819 unsigned HOST_WIDE_INT align)
7509c759 20820{
a9098fd0 20821 if (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (x, mode))
d6b5193b 20822 return toc_section;
7509c759 20823 else
d6b5193b 20824 return default_elf_select_rtx_section (mode, x, align);
7509c759 20825}
d9407988 20826\f
d1908feb
JJ
20827/* For a SYMBOL_REF, set generic flags and then perform some
20828 target-specific processing.
20829
d1908feb
JJ
20830 When the AIX ABI is requested on a non-AIX system, replace the
20831 function name with the real name (with a leading .) rather than the
20832 function descriptor name. This saves a lot of overriding code to
20833 read the prefixes. */
d9407988 20834
fb49053f 20835static void
a2369ed3 20836rs6000_elf_encode_section_info (tree decl, rtx rtl, int first)
d9407988 20837{
d1908feb 20838 default_encode_section_info (decl, rtl, first);
b2003250 20839
d1908feb
JJ
20840 if (first
20841 && TREE_CODE (decl) == FUNCTION_DECL
20842 && !TARGET_AIX
20843 && DEFAULT_ABI == ABI_AIX)
d9407988 20844 {
c6a2438a 20845 rtx sym_ref = XEXP (rtl, 0);
d1908feb 20846 size_t len = strlen (XSTR (sym_ref, 0));
5ead67f6 20847 char *str = XALLOCAVEC (char, len + 2);
d1908feb
JJ
20848 str[0] = '.';
20849 memcpy (str + 1, XSTR (sym_ref, 0), len + 1);
20850 XSTR (sym_ref, 0) = ggc_alloc_string (str, len + 1);
d9407988 20851 }
d9407988
MM
20852}
20853
21d9bb3f 20854static inline bool
0a2aaacc 20855compare_section_name (const char *section, const char *templ)
21d9bb3f
PB
20856{
20857 int len;
20858
0a2aaacc
KG
20859 len = strlen (templ);
20860 return (strncmp (section, templ, len) == 0
21d9bb3f
PB
20861 && (section[len] == 0 || section[len] == '.'));
20862}
20863
c1b7d95a 20864bool
3101faab 20865rs6000_elf_in_small_data_p (const_tree decl)
0e5dbd9b
DE
20866{
20867 if (rs6000_sdata == SDATA_NONE)
20868 return false;
20869
7482ad25
AF
20870 /* We want to merge strings, so we never consider them small data. */
20871 if (TREE_CODE (decl) == STRING_CST)
20872 return false;
20873
20874 /* Functions are never in the small data area. */
20875 if (TREE_CODE (decl) == FUNCTION_DECL)
20876 return false;
20877
0e5dbd9b
DE
20878 if (TREE_CODE (decl) == VAR_DECL && DECL_SECTION_NAME (decl))
20879 {
20880 const char *section = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
ca2ba153
JJ
20881 if (compare_section_name (section, ".sdata")
20882 || compare_section_name (section, ".sdata2")
20883 || compare_section_name (section, ".gnu.linkonce.s")
20884 || compare_section_name (section, ".sbss")
20885 || compare_section_name (section, ".sbss2")
20886 || compare_section_name (section, ".gnu.linkonce.sb")
20bfcd69
GK
20887 || strcmp (section, ".PPC.EMB.sdata0") == 0
20888 || strcmp (section, ".PPC.EMB.sbss0") == 0)
0e5dbd9b
DE
20889 return true;
20890 }
20891 else
20892 {
20893 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (decl));
20894
20895 if (size > 0
307b599c 20896 && (unsigned HOST_WIDE_INT) size <= g_switch_value
20bfcd69
GK
20897 /* If it's not public, and we're not going to reference it there,
20898 there's no need to put it in the small data section. */
0e5dbd9b
DE
20899 && (rs6000_sdata != SDATA_DATA || TREE_PUBLIC (decl)))
20900 return true;
20901 }
20902
20903 return false;
20904}
20905
b91da81f 20906#endif /* USING_ELFOS_H */
aacd3885
RS
20907\f
20908/* Implement TARGET_USE_BLOCKS_FOR_CONSTANT_P. */
000034eb 20909
aacd3885 20910static bool
3101faab 20911rs6000_use_blocks_for_constant_p (enum machine_mode mode, const_rtx x)
aacd3885
RS
20912{
20913 return !ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (x, mode);
20914}
a6c2a102 20915\f
000034eb 20916/* Return a REG that occurs in ADDR with coefficient 1.
02441cd6
JL
20917 ADDR can be effectively incremented by incrementing REG.
20918
20919 r0 is special and we must not select it as an address
20920 register by this routine since our caller will try to
20921 increment the returned register via an "la" instruction. */
000034eb 20922
9390387d 20923rtx
a2369ed3 20924find_addr_reg (rtx addr)
000034eb
DE
20925{
20926 while (GET_CODE (addr) == PLUS)
20927 {
02441cd6
JL
20928 if (GET_CODE (XEXP (addr, 0)) == REG
20929 && REGNO (XEXP (addr, 0)) != 0)
000034eb 20930 addr = XEXP (addr, 0);
02441cd6
JL
20931 else if (GET_CODE (XEXP (addr, 1)) == REG
20932 && REGNO (XEXP (addr, 1)) != 0)
000034eb
DE
20933 addr = XEXP (addr, 1);
20934 else if (CONSTANT_P (XEXP (addr, 0)))
20935 addr = XEXP (addr, 1);
20936 else if (CONSTANT_P (XEXP (addr, 1)))
20937 addr = XEXP (addr, 0);
20938 else
37409796 20939 gcc_unreachable ();
000034eb 20940 }
37409796
NS
20941 gcc_assert (GET_CODE (addr) == REG && REGNO (addr) != 0);
20942 return addr;
000034eb
DE
20943}
20944
a6c2a102 20945void
a2369ed3 20946rs6000_fatal_bad_address (rtx op)
a6c2a102
DE
20947{
20948 fatal_insn ("bad address", op);
20949}
c8023011 20950
ee890fe2
SS
20951#if TARGET_MACHO
20952
efdba735 20953static tree branch_island_list = 0;
ee890fe2 20954
efdba735
SH
20955/* Remember to generate a branch island for far calls to the given
20956 function. */
ee890fe2 20957
f676971a 20958static void
c4ad648e
AM
20959add_compiler_branch_island (tree label_name, tree function_name,
20960 int line_number)
ee890fe2 20961{
efdba735 20962 tree branch_island = build_tree_list (function_name, label_name);
7d60be94 20963 TREE_TYPE (branch_island) = build_int_cst (NULL_TREE, line_number);
efdba735
SH
20964 TREE_CHAIN (branch_island) = branch_island_list;
20965 branch_island_list = branch_island;
ee890fe2
SS
20966}
20967
efdba735
SH
20968#define BRANCH_ISLAND_LABEL_NAME(BRANCH_ISLAND) TREE_VALUE (BRANCH_ISLAND)
20969#define BRANCH_ISLAND_FUNCTION_NAME(BRANCH_ISLAND) TREE_PURPOSE (BRANCH_ISLAND)
20970#define BRANCH_ISLAND_LINE_NUMBER(BRANCH_ISLAND) \
20971 TREE_INT_CST_LOW (TREE_TYPE (BRANCH_ISLAND))
ee890fe2 20972
efdba735
SH
20973/* Generate far-jump branch islands for everything on the
20974 branch_island_list. Invoked immediately after the last instruction
20975 of the epilogue has been emitted; the branch-islands must be
20976 appended to, and contiguous with, the function body. Mach-O stubs
20977 are generated in machopic_output_stub(). */
ee890fe2 20978
efdba735
SH
20979static void
20980macho_branch_islands (void)
20981{
20982 char tmp_buf[512];
20983 tree branch_island;
20984
20985 for (branch_island = branch_island_list;
20986 branch_island;
20987 branch_island = TREE_CHAIN (branch_island))
20988 {
20989 const char *label =
20990 IDENTIFIER_POINTER (BRANCH_ISLAND_LABEL_NAME (branch_island));
20991 const char *name =
11abc112 20992 IDENTIFIER_POINTER (BRANCH_ISLAND_FUNCTION_NAME (branch_island));
efdba735
SH
20993 char name_buf[512];
20994 /* Cheap copy of the details from the Darwin ASM_OUTPUT_LABELREF(). */
20995 if (name[0] == '*' || name[0] == '&')
20996 strcpy (name_buf, name+1);
20997 else
20998 {
20999 name_buf[0] = '_';
21000 strcpy (name_buf+1, name);
21001 }
21002 strcpy (tmp_buf, "\n");
21003 strcat (tmp_buf, label);
ee890fe2 21004#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
efdba735 21005 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
93a27b7b 21006 dbxout_stabd (N_SLINE, BRANCH_ISLAND_LINE_NUMBER (branch_island));
ee890fe2 21007#endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
efdba735
SH
21008 if (flag_pic)
21009 {
21010 strcat (tmp_buf, ":\n\tmflr r0\n\tbcl 20,31,");
21011 strcat (tmp_buf, label);
21012 strcat (tmp_buf, "_pic\n");
21013 strcat (tmp_buf, label);
21014 strcat (tmp_buf, "_pic:\n\tmflr r11\n");
f676971a 21015
efdba735
SH
21016 strcat (tmp_buf, "\taddis r11,r11,ha16(");
21017 strcat (tmp_buf, name_buf);
21018 strcat (tmp_buf, " - ");
21019 strcat (tmp_buf, label);
21020 strcat (tmp_buf, "_pic)\n");
f676971a 21021
efdba735 21022 strcat (tmp_buf, "\tmtlr r0\n");
f676971a 21023
efdba735
SH
21024 strcat (tmp_buf, "\taddi r12,r11,lo16(");
21025 strcat (tmp_buf, name_buf);
21026 strcat (tmp_buf, " - ");
21027 strcat (tmp_buf, label);
21028 strcat (tmp_buf, "_pic)\n");
f676971a 21029
efdba735
SH
21030 strcat (tmp_buf, "\tmtctr r12\n\tbctr\n");
21031 }
21032 else
21033 {
21034 strcat (tmp_buf, ":\nlis r12,hi16(");
21035 strcat (tmp_buf, name_buf);
21036 strcat (tmp_buf, ")\n\tori r12,r12,lo16(");
21037 strcat (tmp_buf, name_buf);
21038 strcat (tmp_buf, ")\n\tmtctr r12\n\tbctr");
21039 }
21040 output_asm_insn (tmp_buf, 0);
ee890fe2 21041#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
efdba735 21042 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
93a27b7b 21043 dbxout_stabd (N_SLINE, BRANCH_ISLAND_LINE_NUMBER (branch_island));
ee890fe2 21044#endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
efdba735 21045 }
ee890fe2 21046
efdba735 21047 branch_island_list = 0;
ee890fe2
SS
21048}
21049
21050/* NO_PREVIOUS_DEF checks in the link list whether the function name is
21051 already there or not. */
21052
efdba735 21053static int
a2369ed3 21054no_previous_def (tree function_name)
ee890fe2 21055{
efdba735
SH
21056 tree branch_island;
21057 for (branch_island = branch_island_list;
21058 branch_island;
21059 branch_island = TREE_CHAIN (branch_island))
21060 if (function_name == BRANCH_ISLAND_FUNCTION_NAME (branch_island))
ee890fe2
SS
21061 return 0;
21062 return 1;
21063}
21064
21065/* GET_PREV_LABEL gets the label name from the previous definition of
21066 the function. */
21067
efdba735 21068static tree
a2369ed3 21069get_prev_label (tree function_name)
ee890fe2 21070{
efdba735
SH
21071 tree branch_island;
21072 for (branch_island = branch_island_list;
21073 branch_island;
21074 branch_island = TREE_CHAIN (branch_island))
21075 if (function_name == BRANCH_ISLAND_FUNCTION_NAME (branch_island))
21076 return BRANCH_ISLAND_LABEL_NAME (branch_island);
ee890fe2
SS
21077 return 0;
21078}
21079
75b1b789
MS
21080#ifndef DARWIN_LINKER_GENERATES_ISLANDS
21081#define DARWIN_LINKER_GENERATES_ISLANDS 0
21082#endif
21083
21084/* KEXTs still need branch islands. */
21085#define DARWIN_GENERATE_ISLANDS (!DARWIN_LINKER_GENERATES_ISLANDS \
21086 || flag_mkernel || flag_apple_kext)
21087
ee890fe2 21088/* INSN is either a function call or a millicode call. It may have an
f676971a 21089 unconditional jump in its delay slot.
ee890fe2
SS
21090
21091 CALL_DEST is the routine we are calling. */
21092
21093char *
c4ad648e
AM
21094output_call (rtx insn, rtx *operands, int dest_operand_number,
21095 int cookie_operand_number)
ee890fe2
SS
21096{
21097 static char buf[256];
75b1b789
MS
21098 if (DARWIN_GENERATE_ISLANDS
21099 && GET_CODE (operands[dest_operand_number]) == SYMBOL_REF
efdba735 21100 && (INTVAL (operands[cookie_operand_number]) & CALL_LONG))
ee890fe2
SS
21101 {
21102 tree labelname;
efdba735 21103 tree funname = get_identifier (XSTR (operands[dest_operand_number], 0));
f676971a 21104
ee890fe2
SS
21105 if (no_previous_def (funname))
21106 {
ee890fe2
SS
21107 rtx label_rtx = gen_label_rtx ();
21108 char *label_buf, temp_buf[256];
21109 ASM_GENERATE_INTERNAL_LABEL (temp_buf, "L",
21110 CODE_LABEL_NUMBER (label_rtx));
21111 label_buf = temp_buf[0] == '*' ? temp_buf + 1 : temp_buf;
21112 labelname = get_identifier (label_buf);
a38e7aa5 21113 add_compiler_branch_island (labelname, funname, insn_line (insn));
ee890fe2
SS
21114 }
21115 else
21116 labelname = get_prev_label (funname);
21117
efdba735
SH
21118 /* "jbsr foo, L42" is Mach-O for "Link as 'bl foo' if a 'bl'
21119 instruction will reach 'foo', otherwise link as 'bl L42'".
21120 "L42" should be a 'branch island', that will do a far jump to
21121 'foo'. Branch islands are generated in
21122 macho_branch_islands(). */
ee890fe2 21123 sprintf (buf, "jbsr %%z%d,%.246s",
efdba735 21124 dest_operand_number, IDENTIFIER_POINTER (labelname));
ee890fe2
SS
21125 }
21126 else
efdba735
SH
21127 sprintf (buf, "bl %%z%d", dest_operand_number);
21128 return buf;
ee890fe2
SS
21129}
21130
ee890fe2
SS
21131/* Generate PIC and indirect symbol stubs. */
21132
21133void
a2369ed3 21134machopic_output_stub (FILE *file, const char *symb, const char *stub)
ee890fe2
SS
21135{
21136 unsigned int length;
a4f6c312
SS
21137 char *symbol_name, *lazy_ptr_name;
21138 char *local_label_0;
ee890fe2
SS
21139 static int label = 0;
21140
df56a27f 21141 /* Lose our funky encoding stuff so it doesn't contaminate the stub. */
772c5265 21142 symb = (*targetm.strip_name_encoding) (symb);
df56a27f 21143
ee890fe2 21144
ee890fe2 21145 length = strlen (symb);
5ead67f6 21146 symbol_name = XALLOCAVEC (char, length + 32);
ee890fe2
SS
21147 GEN_SYMBOL_NAME_FOR_SYMBOL (symbol_name, symb, length);
21148
5ead67f6 21149 lazy_ptr_name = XALLOCAVEC (char, length + 32);
ee890fe2
SS
21150 GEN_LAZY_PTR_NAME_FOR_SYMBOL (lazy_ptr_name, symb, length);
21151
ee890fe2 21152 if (flag_pic == 2)
56c779bc 21153 switch_to_section (darwin_sections[machopic_picsymbol_stub1_section]);
ee890fe2 21154 else
56c779bc 21155 switch_to_section (darwin_sections[machopic_symbol_stub1_section]);
ee890fe2
SS
21156
21157 if (flag_pic == 2)
21158 {
d974312d
DJ
21159 fprintf (file, "\t.align 5\n");
21160
21161 fprintf (file, "%s:\n", stub);
21162 fprintf (file, "\t.indirect_symbol %s\n", symbol_name);
21163
876455fa 21164 label++;
5ead67f6 21165 local_label_0 = XALLOCAVEC (char, sizeof ("\"L00000000000$spb\""));
876455fa 21166 sprintf (local_label_0, "\"L%011d$spb\"", label);
f676971a 21167
ee890fe2
SS
21168 fprintf (file, "\tmflr r0\n");
21169 fprintf (file, "\tbcl 20,31,%s\n", local_label_0);
21170 fprintf (file, "%s:\n\tmflr r11\n", local_label_0);
21171 fprintf (file, "\taddis r11,r11,ha16(%s-%s)\n",
21172 lazy_ptr_name, local_label_0);
21173 fprintf (file, "\tmtlr r0\n");
3d0e2d58
SS
21174 fprintf (file, "\t%s r12,lo16(%s-%s)(r11)\n",
21175 (TARGET_64BIT ? "ldu" : "lwzu"),
ee890fe2
SS
21176 lazy_ptr_name, local_label_0);
21177 fprintf (file, "\tmtctr r12\n");
ee890fe2
SS
21178 fprintf (file, "\tbctr\n");
21179 }
21180 else
d974312d
DJ
21181 {
21182 fprintf (file, "\t.align 4\n");
21183
21184 fprintf (file, "%s:\n", stub);
21185 fprintf (file, "\t.indirect_symbol %s\n", symbol_name);
21186
21187 fprintf (file, "\tlis r11,ha16(%s)\n", lazy_ptr_name);
d9e4e4f5
SS
21188 fprintf (file, "\t%s r12,lo16(%s)(r11)\n",
21189 (TARGET_64BIT ? "ldu" : "lwzu"),
21190 lazy_ptr_name);
d974312d
DJ
21191 fprintf (file, "\tmtctr r12\n");
21192 fprintf (file, "\tbctr\n");
21193 }
f676971a 21194
56c779bc 21195 switch_to_section (darwin_sections[machopic_lazy_symbol_ptr_section]);
ee890fe2
SS
21196 fprintf (file, "%s:\n", lazy_ptr_name);
21197 fprintf (file, "\t.indirect_symbol %s\n", symbol_name);
49bd1d27
SS
21198 fprintf (file, "%sdyld_stub_binding_helper\n",
21199 (TARGET_64BIT ? DOUBLE_INT_ASM_OP : "\t.long\t"));
ee890fe2
SS
21200}
21201
21202/* Legitimize PIC addresses. If the address is already
21203 position-independent, we return ORIG. Newly generated
21204 position-independent addresses go into a reg. This is REG if non
21205 zero, otherwise we allocate register(s) as necessary. */
21206
4fbbe694 21207#define SMALL_INT(X) ((UINTVAL (X) + 0x8000) < 0x10000)
ee890fe2
SS
21208
21209rtx
f676971a 21210rs6000_machopic_legitimize_pic_address (rtx orig, enum machine_mode mode,
a2369ed3 21211 rtx reg)
ee890fe2
SS
21212{
21213 rtx base, offset;
21214
21215 if (reg == NULL && ! reload_in_progress && ! reload_completed)
21216 reg = gen_reg_rtx (Pmode);
21217
21218 if (GET_CODE (orig) == CONST)
21219 {
37409796
NS
21220 rtx reg_temp;
21221
ee890fe2
SS
21222 if (GET_CODE (XEXP (orig, 0)) == PLUS
21223 && XEXP (XEXP (orig, 0), 0) == pic_offset_table_rtx)
21224 return orig;
21225
37409796 21226 gcc_assert (GET_CODE (XEXP (orig, 0)) == PLUS);
bb8df8a6 21227
37409796
NS
21228 /* Use a different reg for the intermediate value, as
21229 it will be marked UNCHANGING. */
b3a13419 21230 reg_temp = !can_create_pseudo_p () ? reg : gen_reg_rtx (Pmode);
37409796
NS
21231 base = rs6000_machopic_legitimize_pic_address (XEXP (XEXP (orig, 0), 0),
21232 Pmode, reg_temp);
21233 offset =
21234 rs6000_machopic_legitimize_pic_address (XEXP (XEXP (orig, 0), 1),
21235 Pmode, reg);
bb8df8a6 21236
ee890fe2
SS
21237 if (GET_CODE (offset) == CONST_INT)
21238 {
21239 if (SMALL_INT (offset))
ed8908e7 21240 return plus_constant (base, INTVAL (offset));
ee890fe2
SS
21241 else if (! reload_in_progress && ! reload_completed)
21242 offset = force_reg (Pmode, offset);
21243 else
c859cda6
DJ
21244 {
21245 rtx mem = force_const_mem (Pmode, orig);
21246 return machopic_legitimize_pic_address (mem, Pmode, reg);
21247 }
ee890fe2 21248 }
f1c25d3b 21249 return gen_rtx_PLUS (Pmode, base, offset);
ee890fe2
SS
21250 }
21251
21252 /* Fall back on generic machopic code. */
21253 return machopic_legitimize_pic_address (orig, mode, reg);
21254}
21255
c4e18b1c
GK
21256/* Output a .machine directive for the Darwin assembler, and call
21257 the generic start_file routine. */
21258
21259static void
21260rs6000_darwin_file_start (void)
21261{
94ff898d 21262 static const struct
c4e18b1c
GK
21263 {
21264 const char *arg;
21265 const char *name;
21266 int if_set;
21267 } mapping[] = {
55dbfb48 21268 { "ppc64", "ppc64", MASK_64BIT },
c4e18b1c
GK
21269 { "970", "ppc970", MASK_PPC_GPOPT | MASK_MFCRF | MASK_POWERPC64 },
21270 { "power4", "ppc970", 0 },
21271 { "G5", "ppc970", 0 },
21272 { "7450", "ppc7450", 0 },
21273 { "7400", "ppc7400", MASK_ALTIVEC },
21274 { "G4", "ppc7400", 0 },
21275 { "750", "ppc750", 0 },
21276 { "740", "ppc750", 0 },
21277 { "G3", "ppc750", 0 },
21278 { "604e", "ppc604e", 0 },
21279 { "604", "ppc604", 0 },
21280 { "603e", "ppc603", 0 },
21281 { "603", "ppc603", 0 },
21282 { "601", "ppc601", 0 },
21283 { NULL, "ppc", 0 } };
21284 const char *cpu_id = "";
21285 size_t i;
94ff898d 21286
9390387d 21287 rs6000_file_start ();
192d0f89 21288 darwin_file_start ();
c4e18b1c
GK
21289
21290 /* Determine the argument to -mcpu=. Default to G3 if not specified. */
21291 for (i = 0; i < ARRAY_SIZE (rs6000_select); i++)
21292 if (rs6000_select[i].set_arch_p && rs6000_select[i].string
21293 && rs6000_select[i].string[0] != '\0')
21294 cpu_id = rs6000_select[i].string;
21295
21296 /* Look through the mapping array. Pick the first name that either
21297 matches the argument, has a bit set in IF_SET that is also set
21298 in the target flags, or has a NULL name. */
21299
21300 i = 0;
21301 while (mapping[i].arg != NULL
21302 && strcmp (mapping[i].arg, cpu_id) != 0
21303 && (mapping[i].if_set & target_flags) == 0)
21304 i++;
21305
21306 fprintf (asm_out_file, "\t.machine %s\n", mapping[i].name);
21307}
21308
ee890fe2 21309#endif /* TARGET_MACHO */
7c262518
RH
21310
21311#if TARGET_ELF
9b580a0b
RH
21312static int
21313rs6000_elf_reloc_rw_mask (void)
7c262518 21314{
9b580a0b
RH
21315 if (flag_pic)
21316 return 3;
21317 else if (DEFAULT_ABI == ABI_AIX)
21318 return 2;
21319 else
21320 return 0;
7c262518 21321}
d9f6800d
RH
21322
21323/* Record an element in the table of global constructors. SYMBOL is
21324 a SYMBOL_REF of the function to be called; PRIORITY is a number
21325 between 0 and MAX_INIT_PRIORITY.
21326
21327 This differs from default_named_section_asm_out_constructor in
21328 that we have special handling for -mrelocatable. */
21329
21330static void
a2369ed3 21331rs6000_elf_asm_out_constructor (rtx symbol, int priority)
d9f6800d
RH
21332{
21333 const char *section = ".ctors";
21334 char buf[16];
21335
21336 if (priority != DEFAULT_INIT_PRIORITY)
21337 {
21338 sprintf (buf, ".ctors.%.5u",
c4ad648e
AM
21339 /* Invert the numbering so the linker puts us in the proper
21340 order; constructors are run from right to left, and the
21341 linker sorts in increasing order. */
21342 MAX_INIT_PRIORITY - priority);
d9f6800d
RH
21343 section = buf;
21344 }
21345
d6b5193b 21346 switch_to_section (get_section (section, SECTION_WRITE, NULL));
715bdd29 21347 assemble_align (POINTER_SIZE);
d9f6800d
RH
21348
21349 if (TARGET_RELOCATABLE)
21350 {
21351 fputs ("\t.long (", asm_out_file);
21352 output_addr_const (asm_out_file, symbol);
21353 fputs (")@fixup\n", asm_out_file);
21354 }
21355 else
c8af3574 21356 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
d9f6800d
RH
21357}
21358
21359static void
a2369ed3 21360rs6000_elf_asm_out_destructor (rtx symbol, int priority)
d9f6800d
RH
21361{
21362 const char *section = ".dtors";
21363 char buf[16];
21364
21365 if (priority != DEFAULT_INIT_PRIORITY)
21366 {
21367 sprintf (buf, ".dtors.%.5u",
c4ad648e
AM
21368 /* Invert the numbering so the linker puts us in the proper
21369 order; constructors are run from right to left, and the
21370 linker sorts in increasing order. */
21371 MAX_INIT_PRIORITY - priority);
d9f6800d
RH
21372 section = buf;
21373 }
21374
d6b5193b 21375 switch_to_section (get_section (section, SECTION_WRITE, NULL));
715bdd29 21376 assemble_align (POINTER_SIZE);
d9f6800d
RH
21377
21378 if (TARGET_RELOCATABLE)
21379 {
21380 fputs ("\t.long (", asm_out_file);
21381 output_addr_const (asm_out_file, symbol);
21382 fputs (")@fixup\n", asm_out_file);
21383 }
21384 else
c8af3574 21385 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
d9f6800d 21386}
9739c90c
JJ
21387
21388void
a2369ed3 21389rs6000_elf_declare_function_name (FILE *file, const char *name, tree decl)
9739c90c
JJ
21390{
21391 if (TARGET_64BIT)
21392 {
21393 fputs ("\t.section\t\".opd\",\"aw\"\n\t.align 3\n", file);
21394 ASM_OUTPUT_LABEL (file, name);
21395 fputs (DOUBLE_INT_ASM_OP, file);
85b776df
AM
21396 rs6000_output_function_entry (file, name);
21397 fputs (",.TOC.@tocbase,0\n\t.previous\n", file);
21398 if (DOT_SYMBOLS)
9739c90c 21399 {
85b776df 21400 fputs ("\t.size\t", file);
9739c90c 21401 assemble_name (file, name);
85b776df
AM
21402 fputs (",24\n\t.type\t.", file);
21403 assemble_name (file, name);
21404 fputs (",@function\n", file);
21405 if (TREE_PUBLIC (decl) && ! DECL_WEAK (decl))
21406 {
21407 fputs ("\t.globl\t.", file);
21408 assemble_name (file, name);
21409 putc ('\n', file);
21410 }
9739c90c 21411 }
85b776df
AM
21412 else
21413 ASM_OUTPUT_TYPE_DIRECTIVE (file, name, "function");
9739c90c 21414 ASM_DECLARE_RESULT (file, DECL_RESULT (decl));
85b776df
AM
21415 rs6000_output_function_entry (file, name);
21416 fputs (":\n", file);
9739c90c
JJ
21417 return;
21418 }
21419
21420 if (TARGET_RELOCATABLE
7f970b70 21421 && !TARGET_SECURE_PLT
e3b5732b 21422 && (get_pool_size () != 0 || crtl->profile)
3c9eb5f4 21423 && uses_TOC ())
9739c90c
JJ
21424 {
21425 char buf[256];
21426
21427 (*targetm.asm_out.internal_label) (file, "LCL", rs6000_pic_labelno);
21428
21429 ASM_GENERATE_INTERNAL_LABEL (buf, "LCTOC", 1);
21430 fprintf (file, "\t.long ");
21431 assemble_name (file, buf);
21432 putc ('-', file);
21433 ASM_GENERATE_INTERNAL_LABEL (buf, "LCF", rs6000_pic_labelno);
21434 assemble_name (file, buf);
21435 putc ('\n', file);
21436 }
21437
21438 ASM_OUTPUT_TYPE_DIRECTIVE (file, name, "function");
21439 ASM_DECLARE_RESULT (file, DECL_RESULT (decl));
21440
21441 if (DEFAULT_ABI == ABI_AIX)
21442 {
21443 const char *desc_name, *orig_name;
21444
21445 orig_name = (*targetm.strip_name_encoding) (name);
21446 desc_name = orig_name;
21447 while (*desc_name == '.')
21448 desc_name++;
21449
21450 if (TREE_PUBLIC (decl))
21451 fprintf (file, "\t.globl %s\n", desc_name);
21452
21453 fprintf (file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);
21454 fprintf (file, "%s:\n", desc_name);
21455 fprintf (file, "\t.long %s\n", orig_name);
21456 fputs ("\t.long _GLOBAL_OFFSET_TABLE_\n", file);
21457 if (DEFAULT_ABI == ABI_AIX)
21458 fputs ("\t.long 0\n", file);
21459 fprintf (file, "\t.previous\n");
21460 }
21461 ASM_OUTPUT_LABEL (file, name);
21462}
1334b570
AM
21463
21464static void
21465rs6000_elf_end_indicate_exec_stack (void)
21466{
21467 if (TARGET_32BIT)
21468 file_end_indicate_exec_stack ();
21469}
7c262518
RH
21470#endif
21471
cbaaba19 21472#if TARGET_XCOFF
0d5817b2
DE
21473static void
21474rs6000_xcoff_asm_output_anchor (rtx symbol)
21475{
21476 char buffer[100];
21477
21478 sprintf (buffer, "$ + " HOST_WIDE_INT_PRINT_DEC,
21479 SYMBOL_REF_BLOCK_OFFSET (symbol));
21480 ASM_OUTPUT_DEF (asm_out_file, XSTR (symbol, 0), buffer);
21481}
21482
7c262518 21483static void
a2369ed3 21484rs6000_xcoff_asm_globalize_label (FILE *stream, const char *name)
b275d088
DE
21485{
21486 fputs (GLOBAL_ASM_OP, stream);
21487 RS6000_OUTPUT_BASENAME (stream, name);
21488 putc ('\n', stream);
21489}
21490
d6b5193b
RS
21491/* A get_unnamed_decl callback, used for read-only sections. PTR
21492 points to the section string variable. */
21493
21494static void
21495rs6000_xcoff_output_readonly_section_asm_op (const void *directive)
21496{
890f9edf
OH
21497 fprintf (asm_out_file, "\t.csect %s[RO],%s\n",
21498 *(const char *const *) directive,
21499 XCOFF_CSECT_DEFAULT_ALIGNMENT_STR);
d6b5193b
RS
21500}
21501
21502/* Likewise for read-write sections. */
21503
21504static void
21505rs6000_xcoff_output_readwrite_section_asm_op (const void *directive)
21506{
890f9edf
OH
21507 fprintf (asm_out_file, "\t.csect %s[RW],%s\n",
21508 *(const char *const *) directive,
21509 XCOFF_CSECT_DEFAULT_ALIGNMENT_STR);
d6b5193b
RS
21510}
21511
21512/* A get_unnamed_section callback, used for switching to toc_section. */
21513
21514static void
21515rs6000_xcoff_output_toc_section_asm_op (const void *data ATTRIBUTE_UNUSED)
21516{
21517 if (TARGET_MINIMAL_TOC)
21518 {
21519 /* toc_section is always selected at least once from
21520 rs6000_xcoff_file_start, so this is guaranteed to
21521 always be defined once and only once in each file. */
21522 if (!toc_initialized)
21523 {
21524 fputs ("\t.toc\nLCTOC..1:\n", asm_out_file);
21525 fputs ("\t.tc toc_table[TC],toc_table[RW]\n", asm_out_file);
21526 toc_initialized = 1;
21527 }
21528 fprintf (asm_out_file, "\t.csect toc_table[RW]%s\n",
21529 (TARGET_32BIT ? "" : ",3"));
21530 }
21531 else
21532 fputs ("\t.toc\n", asm_out_file);
21533}
21534
21535/* Implement TARGET_ASM_INIT_SECTIONS. */
21536
21537static void
21538rs6000_xcoff_asm_init_sections (void)
21539{
21540 read_only_data_section
21541 = get_unnamed_section (0, rs6000_xcoff_output_readonly_section_asm_op,
21542 &xcoff_read_only_section_name);
21543
21544 private_data_section
21545 = get_unnamed_section (SECTION_WRITE,
21546 rs6000_xcoff_output_readwrite_section_asm_op,
21547 &xcoff_private_data_section_name);
21548
21549 read_only_private_data_section
21550 = get_unnamed_section (0, rs6000_xcoff_output_readonly_section_asm_op,
21551 &xcoff_private_data_section_name);
21552
21553 toc_section
21554 = get_unnamed_section (0, rs6000_xcoff_output_toc_section_asm_op, NULL);
21555
21556 readonly_data_section = read_only_data_section;
21557 exception_section = data_section;
21558}
21559
9b580a0b
RH
21560static int
21561rs6000_xcoff_reloc_rw_mask (void)
21562{
21563 return 3;
21564}
21565
b275d088 21566static void
c18a5b6c
MM
21567rs6000_xcoff_asm_named_section (const char *name, unsigned int flags,
21568 tree decl ATTRIBUTE_UNUSED)
7c262518 21569{
0e5dbd9b
DE
21570 int smclass;
21571 static const char * const suffix[3] = { "PR", "RO", "RW" };
21572
21573 if (flags & SECTION_CODE)
21574 smclass = 0;
21575 else if (flags & SECTION_WRITE)
21576 smclass = 2;
21577 else
21578 smclass = 1;
21579
5b5198f7 21580 fprintf (asm_out_file, "\t.csect %s%s[%s],%u\n",
0e5dbd9b 21581 (flags & SECTION_CODE) ? "." : "",
5b5198f7 21582 name, suffix[smclass], flags & SECTION_ENTSIZE);
7c262518 21583}
ae46c4e0 21584
d6b5193b 21585static section *
f676971a 21586rs6000_xcoff_select_section (tree decl, int reloc,
c4ad648e 21587 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
ae46c4e0 21588{
9b580a0b 21589 if (decl_readonly_section (decl, reloc))
ae46c4e0 21590 {
0e5dbd9b 21591 if (TREE_PUBLIC (decl))
d6b5193b 21592 return read_only_data_section;
ae46c4e0 21593 else
d6b5193b 21594 return read_only_private_data_section;
ae46c4e0
RH
21595 }
21596 else
21597 {
0e5dbd9b 21598 if (TREE_PUBLIC (decl))
d6b5193b 21599 return data_section;
ae46c4e0 21600 else
d6b5193b 21601 return private_data_section;
ae46c4e0
RH
21602 }
21603}
21604
21605static void
a2369ed3 21606rs6000_xcoff_unique_section (tree decl, int reloc ATTRIBUTE_UNUSED)
ae46c4e0
RH
21607{
21608 const char *name;
ae46c4e0 21609
5b5198f7
DE
21610 /* Use select_section for private and uninitialized data. */
21611 if (!TREE_PUBLIC (decl)
21612 || DECL_COMMON (decl)
0e5dbd9b
DE
21613 || DECL_INITIAL (decl) == NULL_TREE
21614 || DECL_INITIAL (decl) == error_mark_node
21615 || (flag_zero_initialized_in_bss
21616 && initializer_zerop (DECL_INITIAL (decl))))
21617 return;
21618
21619 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
21620 name = (*targetm.strip_name_encoding) (name);
21621 DECL_SECTION_NAME (decl) = build_string (strlen (name), name);
ae46c4e0 21622}
b64a1b53 21623
fb49053f
RH
21624/* Select section for constant in constant pool.
21625
21626 On RS/6000, all constants are in the private read-only data area.
21627 However, if this is being placed in the TOC it must be output as a
21628 toc entry. */
21629
d6b5193b 21630static section *
f676971a 21631rs6000_xcoff_select_rtx_section (enum machine_mode mode, rtx x,
c4ad648e 21632 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
b64a1b53
RH
21633{
21634 if (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (x, mode))
d6b5193b 21635 return toc_section;
b64a1b53 21636 else
d6b5193b 21637 return read_only_private_data_section;
b64a1b53 21638}
772c5265
RH
21639
21640/* Remove any trailing [DS] or the like from the symbol name. */
21641
21642static const char *
a2369ed3 21643rs6000_xcoff_strip_name_encoding (const char *name)
772c5265
RH
21644{
21645 size_t len;
21646 if (*name == '*')
21647 name++;
21648 len = strlen (name);
21649 if (name[len - 1] == ']')
21650 return ggc_alloc_string (name, len - 4);
21651 else
21652 return name;
21653}
21654
5add3202
DE
21655/* Section attributes. AIX is always PIC. */
21656
21657static unsigned int
a2369ed3 21658rs6000_xcoff_section_type_flags (tree decl, const char *name, int reloc)
5add3202 21659{
5b5198f7 21660 unsigned int align;
9b580a0b 21661 unsigned int flags = default_section_type_flags (decl, name, reloc);
5b5198f7
DE
21662
21663 /* Align to at least UNIT size. */
21664 if (flags & SECTION_CODE)
21665 align = MIN_UNITS_PER_WORD;
21666 else
21667 /* Increase alignment of large objects if not already stricter. */
21668 align = MAX ((DECL_ALIGN (decl) / BITS_PER_UNIT),
21669 int_size_in_bytes (TREE_TYPE (decl)) > MIN_UNITS_PER_WORD
21670 ? UNITS_PER_FP_WORD : MIN_UNITS_PER_WORD);
21671
21672 return flags | (exact_log2 (align) & SECTION_ENTSIZE);
5add3202 21673}
a5fe455b 21674
1bc7c5b6
ZW
21675/* Output at beginning of assembler file.
21676
21677 Initialize the section names for the RS/6000 at this point.
21678
21679 Specify filename, including full path, to assembler.
21680
21681 We want to go into the TOC section so at least one .toc will be emitted.
21682 Also, in order to output proper .bs/.es pairs, we need at least one static
21683 [RW] section emitted.
21684
21685 Finally, declare mcount when profiling to make the assembler happy. */
21686
21687static void
863d938c 21688rs6000_xcoff_file_start (void)
1bc7c5b6
ZW
21689{
21690 rs6000_gen_section_name (&xcoff_bss_section_name,
21691 main_input_filename, ".bss_");
21692 rs6000_gen_section_name (&xcoff_private_data_section_name,
21693 main_input_filename, ".rw_");
21694 rs6000_gen_section_name (&xcoff_read_only_section_name,
21695 main_input_filename, ".ro_");
21696
21697 fputs ("\t.file\t", asm_out_file);
21698 output_quoted_string (asm_out_file, main_input_filename);
21699 fputc ('\n', asm_out_file);
1bc7c5b6 21700 if (write_symbols != NO_DEBUG)
d6b5193b
RS
21701 switch_to_section (private_data_section);
21702 switch_to_section (text_section);
1bc7c5b6
ZW
21703 if (profile_flag)
21704 fprintf (asm_out_file, "\t.extern %s\n", RS6000_MCOUNT);
21705 rs6000_file_start ();
21706}
21707
a5fe455b
ZW
21708/* Output at end of assembler file.
21709 On the RS/6000, referencing data should automatically pull in text. */
21710
21711static void
863d938c 21712rs6000_xcoff_file_end (void)
a5fe455b 21713{
d6b5193b 21714 switch_to_section (text_section);
a5fe455b 21715 fputs ("_section_.text:\n", asm_out_file);
d6b5193b 21716 switch_to_section (data_section);
a5fe455b
ZW
21717 fputs (TARGET_32BIT
21718 ? "\t.long _section_.text\n" : "\t.llong _section_.text\n",
21719 asm_out_file);
21720}
f1384257 21721#endif /* TARGET_XCOFF */
0e5dbd9b 21722
3c50106f
RH
21723/* Compute a (partial) cost for rtx X. Return true if the complete
21724 cost has been computed, and false if subexpressions should be
21725 scanned. In either case, *TOTAL contains the cost result. */
21726
21727static bool
f40751dd
JH
21728rs6000_rtx_costs (rtx x, int code, int outer_code, int *total,
21729 bool speed)
3c50106f 21730{
f0517163
RS
21731 enum machine_mode mode = GET_MODE (x);
21732
3c50106f
RH
21733 switch (code)
21734 {
30a555d9 21735 /* On the RS/6000, if it is valid in the insn, it is free. */
3c50106f 21736 case CONST_INT:
066cd967
DE
21737 if (((outer_code == SET
21738 || outer_code == PLUS
21739 || outer_code == MINUS)
279bb624
DE
21740 && (satisfies_constraint_I (x)
21741 || satisfies_constraint_L (x)))
066cd967 21742 || (outer_code == AND
279bb624
DE
21743 && (satisfies_constraint_K (x)
21744 || (mode == SImode
21745 ? satisfies_constraint_L (x)
21746 : satisfies_constraint_J (x))
1990cd79
AM
21747 || mask_operand (x, mode)
21748 || (mode == DImode
21749 && mask64_operand (x, DImode))))
22e54023 21750 || ((outer_code == IOR || outer_code == XOR)
279bb624
DE
21751 && (satisfies_constraint_K (x)
21752 || (mode == SImode
21753 ? satisfies_constraint_L (x)
21754 : satisfies_constraint_J (x))))
066cd967
DE
21755 || outer_code == ASHIFT
21756 || outer_code == ASHIFTRT
21757 || outer_code == LSHIFTRT
21758 || outer_code == ROTATE
21759 || outer_code == ROTATERT
d5861a7a 21760 || outer_code == ZERO_EXTRACT
066cd967 21761 || (outer_code == MULT
279bb624 21762 && satisfies_constraint_I (x))
22e54023
DE
21763 || ((outer_code == DIV || outer_code == UDIV
21764 || outer_code == MOD || outer_code == UMOD)
21765 && exact_log2 (INTVAL (x)) >= 0)
066cd967 21766 || (outer_code == COMPARE
279bb624
DE
21767 && (satisfies_constraint_I (x)
21768 || satisfies_constraint_K (x)))
22e54023 21769 || (outer_code == EQ
279bb624
DE
21770 && (satisfies_constraint_I (x)
21771 || satisfies_constraint_K (x)
21772 || (mode == SImode
21773 ? satisfies_constraint_L (x)
21774 : satisfies_constraint_J (x))))
22e54023 21775 || (outer_code == GTU
279bb624 21776 && satisfies_constraint_I (x))
22e54023 21777 || (outer_code == LTU
279bb624 21778 && satisfies_constraint_P (x)))
066cd967
DE
21779 {
21780 *total = 0;
21781 return true;
21782 }
21783 else if ((outer_code == PLUS
4ae234b0 21784 && reg_or_add_cint_operand (x, VOIDmode))
066cd967 21785 || (outer_code == MINUS
4ae234b0 21786 && reg_or_sub_cint_operand (x, VOIDmode))
066cd967
DE
21787 || ((outer_code == SET
21788 || outer_code == IOR
21789 || outer_code == XOR)
21790 && (INTVAL (x)
21791 & ~ (unsigned HOST_WIDE_INT) 0xffffffff) == 0))
21792 {
21793 *total = COSTS_N_INSNS (1);
21794 return true;
21795 }
21796 /* FALLTHRU */
21797
21798 case CONST_DOUBLE:
f6fe3a22 21799 if (mode == DImode && code == CONST_DOUBLE)
066cd967 21800 {
f6fe3a22
DE
21801 if ((outer_code == IOR || outer_code == XOR)
21802 && CONST_DOUBLE_HIGH (x) == 0
21803 && (CONST_DOUBLE_LOW (x)
21804 & ~ (unsigned HOST_WIDE_INT) 0xffff) == 0)
21805 {
21806 *total = 0;
21807 return true;
21808 }
21809 else if ((outer_code == AND && and64_2_operand (x, DImode))
21810 || ((outer_code == SET
21811 || outer_code == IOR
21812 || outer_code == XOR)
21813 && CONST_DOUBLE_HIGH (x) == 0))
21814 {
21815 *total = COSTS_N_INSNS (1);
21816 return true;
21817 }
066cd967
DE
21818 }
21819 /* FALLTHRU */
21820
3c50106f 21821 case CONST:
066cd967 21822 case HIGH:
3c50106f 21823 case SYMBOL_REF:
066cd967
DE
21824 case MEM:
21825 /* When optimizing for size, MEM should be slightly more expensive
21826 than generating address, e.g., (plus (reg) (const)).
c112cf2b 21827 L1 cache latency is about two instructions. */
f40751dd 21828 *total = !speed ? COSTS_N_INSNS (1) + 1 : COSTS_N_INSNS (2);
3c50106f
RH
21829 return true;
21830
30a555d9
DE
21831 case LABEL_REF:
21832 *total = 0;
21833 return true;
21834
3c50106f 21835 case PLUS:
f0517163 21836 if (mode == DFmode)
066cd967
DE
21837 {
21838 if (GET_CODE (XEXP (x, 0)) == MULT)
21839 {
21840 /* FNMA accounted in outer NEG. */
21841 if (outer_code == NEG)
21842 *total = rs6000_cost->dmul - rs6000_cost->fp;
21843 else
21844 *total = rs6000_cost->dmul;
21845 }
21846 else
21847 *total = rs6000_cost->fp;
21848 }
f0517163 21849 else if (mode == SFmode)
066cd967
DE
21850 {
21851 /* FNMA accounted in outer NEG. */
21852 if (outer_code == NEG && GET_CODE (XEXP (x, 0)) == MULT)
21853 *total = 0;
21854 else
21855 *total = rs6000_cost->fp;
21856 }
f0517163 21857 else
066cd967
DE
21858 *total = COSTS_N_INSNS (1);
21859 return false;
3c50106f 21860
52190329 21861 case MINUS:
f0517163 21862 if (mode == DFmode)
066cd967 21863 {
762c919f
JM
21864 if (GET_CODE (XEXP (x, 0)) == MULT
21865 || GET_CODE (XEXP (x, 1)) == MULT)
066cd967
DE
21866 {
21867 /* FNMA accounted in outer NEG. */
21868 if (outer_code == NEG)
762c919f 21869 *total = rs6000_cost->dmul - rs6000_cost->fp;
066cd967
DE
21870 else
21871 *total = rs6000_cost->dmul;
21872 }
21873 else
21874 *total = rs6000_cost->fp;
21875 }
f0517163 21876 else if (mode == SFmode)
066cd967
DE
21877 {
21878 /* FNMA accounted in outer NEG. */
21879 if (outer_code == NEG && GET_CODE (XEXP (x, 0)) == MULT)
21880 *total = 0;
21881 else
21882 *total = rs6000_cost->fp;
21883 }
f0517163 21884 else
c4ad648e 21885 *total = COSTS_N_INSNS (1);
066cd967 21886 return false;
3c50106f
RH
21887
21888 case MULT:
c9dbf840 21889 if (GET_CODE (XEXP (x, 1)) == CONST_INT
279bb624 21890 && satisfies_constraint_I (XEXP (x, 1)))
3c50106f 21891 {
8b897cfa
RS
21892 if (INTVAL (XEXP (x, 1)) >= -256
21893 && INTVAL (XEXP (x, 1)) <= 255)
06a67bdd 21894 *total = rs6000_cost->mulsi_const9;
8b897cfa 21895 else
06a67bdd 21896 *total = rs6000_cost->mulsi_const;
3c50106f 21897 }
066cd967
DE
21898 /* FMA accounted in outer PLUS/MINUS. */
21899 else if ((mode == DFmode || mode == SFmode)
21900 && (outer_code == PLUS || outer_code == MINUS))
21901 *total = 0;
f0517163 21902 else if (mode == DFmode)
06a67bdd 21903 *total = rs6000_cost->dmul;
f0517163 21904 else if (mode == SFmode)
06a67bdd 21905 *total = rs6000_cost->fp;
f0517163 21906 else if (mode == DImode)
06a67bdd 21907 *total = rs6000_cost->muldi;
8b897cfa 21908 else
06a67bdd 21909 *total = rs6000_cost->mulsi;
066cd967 21910 return false;
3c50106f
RH
21911
21912 case DIV:
21913 case MOD:
f0517163
RS
21914 if (FLOAT_MODE_P (mode))
21915 {
06a67bdd
RS
21916 *total = mode == DFmode ? rs6000_cost->ddiv
21917 : rs6000_cost->sdiv;
066cd967 21918 return false;
f0517163 21919 }
5efb1046 21920 /* FALLTHRU */
3c50106f
RH
21921
21922 case UDIV:
21923 case UMOD:
627b6fe2
DJ
21924 if (GET_CODE (XEXP (x, 1)) == CONST_INT
21925 && exact_log2 (INTVAL (XEXP (x, 1))) >= 0)
21926 {
21927 if (code == DIV || code == MOD)
21928 /* Shift, addze */
21929 *total = COSTS_N_INSNS (2);
21930 else
21931 /* Shift */
21932 *total = COSTS_N_INSNS (1);
21933 }
c4ad648e 21934 else
627b6fe2
DJ
21935 {
21936 if (GET_MODE (XEXP (x, 1)) == DImode)
21937 *total = rs6000_cost->divdi;
21938 else
21939 *total = rs6000_cost->divsi;
21940 }
21941 /* Add in shift and subtract for MOD. */
21942 if (code == MOD || code == UMOD)
21943 *total += COSTS_N_INSNS (2);
066cd967 21944 return false;
3c50106f 21945
32f56aad 21946 case CTZ:
3c50106f
RH
21947 case FFS:
21948 *total = COSTS_N_INSNS (4);
066cd967 21949 return false;
3c50106f 21950
32f56aad
DE
21951 case POPCOUNT:
21952 *total = COSTS_N_INSNS (6);
21953 return false;
21954
06a67bdd 21955 case NOT:
066cd967
DE
21956 if (outer_code == AND || outer_code == IOR || outer_code == XOR)
21957 {
21958 *total = 0;
21959 return false;
21960 }
21961 /* FALLTHRU */
21962
21963 case AND:
32f56aad 21964 case CLZ:
066cd967
DE
21965 case IOR:
21966 case XOR:
d5861a7a
DE
21967 case ZERO_EXTRACT:
21968 *total = COSTS_N_INSNS (1);
21969 return false;
21970
066cd967
DE
21971 case ASHIFT:
21972 case ASHIFTRT:
21973 case LSHIFTRT:
21974 case ROTATE:
21975 case ROTATERT:
d5861a7a 21976 /* Handle mul_highpart. */
066cd967
DE
21977 if (outer_code == TRUNCATE
21978 && GET_CODE (XEXP (x, 0)) == MULT)
21979 {
21980 if (mode == DImode)
21981 *total = rs6000_cost->muldi;
21982 else
21983 *total = rs6000_cost->mulsi;
21984 return true;
21985 }
d5861a7a
DE
21986 else if (outer_code == AND)
21987 *total = 0;
21988 else
21989 *total = COSTS_N_INSNS (1);
21990 return false;
21991
21992 case SIGN_EXTEND:
21993 case ZERO_EXTEND:
21994 if (GET_CODE (XEXP (x, 0)) == MEM)
21995 *total = 0;
21996 else
21997 *total = COSTS_N_INSNS (1);
066cd967 21998 return false;
06a67bdd 21999
066cd967
DE
22000 case COMPARE:
22001 case NEG:
22002 case ABS:
22003 if (!FLOAT_MODE_P (mode))
22004 {
22005 *total = COSTS_N_INSNS (1);
22006 return false;
22007 }
22008 /* FALLTHRU */
22009
22010 case FLOAT:
22011 case UNSIGNED_FLOAT:
22012 case FIX:
22013 case UNSIGNED_FIX:
06a67bdd
RS
22014 case FLOAT_TRUNCATE:
22015 *total = rs6000_cost->fp;
066cd967 22016 return false;
06a67bdd 22017
a2af5043
DJ
22018 case FLOAT_EXTEND:
22019 if (mode == DFmode)
22020 *total = 0;
22021 else
22022 *total = rs6000_cost->fp;
22023 return false;
22024
06a67bdd
RS
22025 case UNSPEC:
22026 switch (XINT (x, 1))
22027 {
22028 case UNSPEC_FRSP:
22029 *total = rs6000_cost->fp;
22030 return true;
22031
22032 default:
22033 break;
22034 }
22035 break;
22036
22037 case CALL:
22038 case IF_THEN_ELSE:
f40751dd 22039 if (!speed)
06a67bdd
RS
22040 {
22041 *total = COSTS_N_INSNS (1);
22042 return true;
22043 }
066cd967
DE
22044 else if (FLOAT_MODE_P (mode)
22045 && TARGET_PPC_GFXOPT && TARGET_HARD_FLOAT && TARGET_FPRS)
22046 {
22047 *total = rs6000_cost->fp;
22048 return false;
22049 }
06a67bdd
RS
22050 break;
22051
c0600ecd
DE
22052 case EQ:
22053 case GTU:
22054 case LTU:
22e54023
DE
22055 /* Carry bit requires mode == Pmode.
22056 NEG or PLUS already counted so only add one. */
22057 if (mode == Pmode
22058 && (outer_code == NEG || outer_code == PLUS))
c0600ecd 22059 {
22e54023
DE
22060 *total = COSTS_N_INSNS (1);
22061 return true;
22062 }
22063 if (outer_code == SET)
22064 {
22065 if (XEXP (x, 1) == const0_rtx)
c0600ecd 22066 {
22e54023 22067 *total = COSTS_N_INSNS (2);
c0600ecd 22068 return true;
c0600ecd 22069 }
22e54023
DE
22070 else if (mode == Pmode)
22071 {
22072 *total = COSTS_N_INSNS (3);
22073 return false;
22074 }
22075 }
22076 /* FALLTHRU */
22077
22078 case GT:
22079 case LT:
22080 case UNORDERED:
22081 if (outer_code == SET && (XEXP (x, 1) == const0_rtx))
22082 {
22083 *total = COSTS_N_INSNS (2);
22084 return true;
c0600ecd 22085 }
22e54023
DE
22086 /* CC COMPARE. */
22087 if (outer_code == COMPARE)
22088 {
22089 *total = 0;
22090 return true;
22091 }
22092 break;
c0600ecd 22093
3c50106f 22094 default:
06a67bdd 22095 break;
3c50106f 22096 }
06a67bdd
RS
22097
22098 return false;
3c50106f
RH
22099}
22100
34bb030a
DE
22101/* A C expression returning the cost of moving data from a register of class
22102 CLASS1 to one of CLASS2. */
22103
22104int
f676971a 22105rs6000_register_move_cost (enum machine_mode mode,
a2369ed3 22106 enum reg_class from, enum reg_class to)
34bb030a
DE
22107{
22108 /* Moves from/to GENERAL_REGS. */
22109 if (reg_classes_intersect_p (to, GENERAL_REGS)
22110 || reg_classes_intersect_p (from, GENERAL_REGS))
22111 {
22112 if (! reg_classes_intersect_p (to, GENERAL_REGS))
22113 from = to;
22114
22115 if (from == FLOAT_REGS || from == ALTIVEC_REGS)
22116 return (rs6000_memory_move_cost (mode, from, 0)
22117 + rs6000_memory_move_cost (mode, GENERAL_REGS, 0));
22118
c4ad648e
AM
22119 /* It's more expensive to move CR_REGS than CR0_REGS because of the
22120 shift. */
34bb030a
DE
22121 else if (from == CR_REGS)
22122 return 4;
22123
aafc759a
PH
22124 /* Power6 has slower LR/CTR moves so make them more expensive than
22125 memory in order to bias spills to memory .*/
22126 else if (rs6000_cpu == PROCESSOR_POWER6
22127 && reg_classes_intersect_p (from, LINK_OR_CTR_REGS))
22128 return 6 * hard_regno_nregs[0][mode];
22129
34bb030a 22130 else
c4ad648e 22131 /* A move will cost one instruction per GPR moved. */
c8b622ff 22132 return 2 * hard_regno_nregs[0][mode];
34bb030a
DE
22133 }
22134
c4ad648e 22135 /* Moving between two similar registers is just one instruction. */
34bb030a 22136 else if (reg_classes_intersect_p (to, from))
7393f7f8 22137 return (mode == TFmode || mode == TDmode) ? 4 : 2;
34bb030a 22138
c4ad648e 22139 /* Everything else has to go through GENERAL_REGS. */
34bb030a 22140 else
f676971a 22141 return (rs6000_register_move_cost (mode, GENERAL_REGS, to)
34bb030a
DE
22142 + rs6000_register_move_cost (mode, from, GENERAL_REGS));
22143}
22144
22145/* A C expressions returning the cost of moving data of MODE from a register to
22146 or from memory. */
22147
22148int
0a2aaacc 22149rs6000_memory_move_cost (enum machine_mode mode, enum reg_class rclass,
a2369ed3 22150 int in ATTRIBUTE_UNUSED)
34bb030a 22151{
0a2aaacc 22152 if (reg_classes_intersect_p (rclass, GENERAL_REGS))
c8b622ff 22153 return 4 * hard_regno_nregs[0][mode];
0a2aaacc 22154 else if (reg_classes_intersect_p (rclass, FLOAT_REGS))
c8b622ff 22155 return 4 * hard_regno_nregs[32][mode];
0a2aaacc 22156 else if (reg_classes_intersect_p (rclass, ALTIVEC_REGS))
c8b622ff 22157 return 4 * hard_regno_nregs[FIRST_ALTIVEC_REGNO][mode];
34bb030a 22158 else
0a2aaacc 22159 return 4 + rs6000_register_move_cost (mode, rclass, GENERAL_REGS);
34bb030a
DE
22160}
22161
9c78b944
DE
22162/* Returns a code for a target-specific builtin that implements
22163 reciprocal of the function, or NULL_TREE if not available. */
22164
22165static tree
22166rs6000_builtin_reciprocal (unsigned int fn, bool md_fn,
22167 bool sqrt ATTRIBUTE_UNUSED)
22168{
22169 if (! (TARGET_RECIP && TARGET_PPC_GFXOPT && !optimize_size
22170 && flag_finite_math_only && !flag_trapping_math
22171 && flag_unsafe_math_optimizations))
22172 return NULL_TREE;
22173
22174 if (md_fn)
22175 return NULL_TREE;
22176 else
22177 switch (fn)
22178 {
22179 case BUILT_IN_SQRTF:
22180 return rs6000_builtin_decls[RS6000_BUILTIN_RSQRTF];
22181
22182 default:
22183 return NULL_TREE;
22184 }
22185}
22186
ef765ea9
DE
22187/* Newton-Raphson approximation of single-precision floating point divide n/d.
22188 Assumes no trapping math and finite arguments. */
22189
22190void
9c78b944 22191rs6000_emit_swdivsf (rtx dst, rtx n, rtx d)
ef765ea9
DE
22192{
22193 rtx x0, e0, e1, y1, u0, v0, one;
22194
22195 x0 = gen_reg_rtx (SFmode);
22196 e0 = gen_reg_rtx (SFmode);
22197 e1 = gen_reg_rtx (SFmode);
22198 y1 = gen_reg_rtx (SFmode);
22199 u0 = gen_reg_rtx (SFmode);
22200 v0 = gen_reg_rtx (SFmode);
22201 one = force_reg (SFmode, CONST_DOUBLE_FROM_REAL_VALUE (dconst1, SFmode));
22202
22203 /* x0 = 1./d estimate */
22204 emit_insn (gen_rtx_SET (VOIDmode, x0,
22205 gen_rtx_UNSPEC (SFmode, gen_rtvec (1, d),
22206 UNSPEC_FRES)));
22207 /* e0 = 1. - d * x0 */
22208 emit_insn (gen_rtx_SET (VOIDmode, e0,
22209 gen_rtx_MINUS (SFmode, one,
22210 gen_rtx_MULT (SFmode, d, x0))));
22211 /* e1 = e0 + e0 * e0 */
22212 emit_insn (gen_rtx_SET (VOIDmode, e1,
22213 gen_rtx_PLUS (SFmode,
22214 gen_rtx_MULT (SFmode, e0, e0), e0)));
22215 /* y1 = x0 + e1 * x0 */
22216 emit_insn (gen_rtx_SET (VOIDmode, y1,
22217 gen_rtx_PLUS (SFmode,
22218 gen_rtx_MULT (SFmode, e1, x0), x0)));
22219 /* u0 = n * y1 */
22220 emit_insn (gen_rtx_SET (VOIDmode, u0,
22221 gen_rtx_MULT (SFmode, n, y1)));
22222 /* v0 = n - d * u0 */
22223 emit_insn (gen_rtx_SET (VOIDmode, v0,
22224 gen_rtx_MINUS (SFmode, n,
22225 gen_rtx_MULT (SFmode, d, u0))));
9c78b944
DE
22226 /* dst = u0 + v0 * y1 */
22227 emit_insn (gen_rtx_SET (VOIDmode, dst,
ef765ea9
DE
22228 gen_rtx_PLUS (SFmode,
22229 gen_rtx_MULT (SFmode, v0, y1), u0)));
22230}
22231
22232/* Newton-Raphson approximation of double-precision floating point divide n/d.
22233 Assumes no trapping math and finite arguments. */
22234
22235void
9c78b944 22236rs6000_emit_swdivdf (rtx dst, rtx n, rtx d)
ef765ea9
DE
22237{
22238 rtx x0, e0, e1, e2, y1, y2, y3, u0, v0, one;
22239
22240 x0 = gen_reg_rtx (DFmode);
22241 e0 = gen_reg_rtx (DFmode);
22242 e1 = gen_reg_rtx (DFmode);
22243 e2 = gen_reg_rtx (DFmode);
22244 y1 = gen_reg_rtx (DFmode);
22245 y2 = gen_reg_rtx (DFmode);
22246 y3 = gen_reg_rtx (DFmode);
22247 u0 = gen_reg_rtx (DFmode);
22248 v0 = gen_reg_rtx (DFmode);
22249 one = force_reg (DFmode, CONST_DOUBLE_FROM_REAL_VALUE (dconst1, DFmode));
22250
22251 /* x0 = 1./d estimate */
22252 emit_insn (gen_rtx_SET (VOIDmode, x0,
22253 gen_rtx_UNSPEC (DFmode, gen_rtvec (1, d),
22254 UNSPEC_FRES)));
22255 /* e0 = 1. - d * x0 */
22256 emit_insn (gen_rtx_SET (VOIDmode, e0,
22257 gen_rtx_MINUS (DFmode, one,
22258 gen_rtx_MULT (SFmode, d, x0))));
22259 /* y1 = x0 + e0 * x0 */
22260 emit_insn (gen_rtx_SET (VOIDmode, y1,
22261 gen_rtx_PLUS (DFmode,
22262 gen_rtx_MULT (DFmode, e0, x0), x0)));
22263 /* e1 = e0 * e0 */
22264 emit_insn (gen_rtx_SET (VOIDmode, e1,
22265 gen_rtx_MULT (DFmode, e0, e0)));
22266 /* y2 = y1 + e1 * y1 */
22267 emit_insn (gen_rtx_SET (VOIDmode, y2,
22268 gen_rtx_PLUS (DFmode,
22269 gen_rtx_MULT (DFmode, e1, y1), y1)));
22270 /* e2 = e1 * e1 */
22271 emit_insn (gen_rtx_SET (VOIDmode, e2,
22272 gen_rtx_MULT (DFmode, e1, e1)));
22273 /* y3 = y2 + e2 * y2 */
22274 emit_insn (gen_rtx_SET (VOIDmode, y3,
22275 gen_rtx_PLUS (DFmode,
22276 gen_rtx_MULT (DFmode, e2, y2), y2)));
22277 /* u0 = n * y3 */
22278 emit_insn (gen_rtx_SET (VOIDmode, u0,
22279 gen_rtx_MULT (DFmode, n, y3)));
22280 /* v0 = n - d * u0 */
22281 emit_insn (gen_rtx_SET (VOIDmode, v0,
22282 gen_rtx_MINUS (DFmode, n,
22283 gen_rtx_MULT (DFmode, d, u0))));
9c78b944
DE
22284 /* dst = u0 + v0 * y3 */
22285 emit_insn (gen_rtx_SET (VOIDmode, dst,
ef765ea9
DE
22286 gen_rtx_PLUS (DFmode,
22287 gen_rtx_MULT (DFmode, v0, y3), u0)));
22288}
22289
565ef4ba 22290
9c78b944
DE
22291/* Newton-Raphson approximation of single-precision floating point rsqrt.
22292 Assumes no trapping math and finite arguments. */
22293
22294void
22295rs6000_emit_swrsqrtsf (rtx dst, rtx src)
22296{
22297 rtx x0, x1, x2, y1, u0, u1, u2, v0, v1, v2, t0,
22298 half, one, halfthree, c1, cond, label;
22299
22300 x0 = gen_reg_rtx (SFmode);
22301 x1 = gen_reg_rtx (SFmode);
22302 x2 = gen_reg_rtx (SFmode);
22303 y1 = gen_reg_rtx (SFmode);
22304 u0 = gen_reg_rtx (SFmode);
22305 u1 = gen_reg_rtx (SFmode);
22306 u2 = gen_reg_rtx (SFmode);
22307 v0 = gen_reg_rtx (SFmode);
22308 v1 = gen_reg_rtx (SFmode);
22309 v2 = gen_reg_rtx (SFmode);
22310 t0 = gen_reg_rtx (SFmode);
22311 halfthree = gen_reg_rtx (SFmode);
22312 cond = gen_rtx_REG (CCFPmode, CR1_REGNO);
22313 label = gen_rtx_LABEL_REF (VOIDmode, gen_label_rtx ());
22314
22315 /* check 0.0, 1.0, NaN, Inf by testing src * src = src */
22316 emit_insn (gen_rtx_SET (VOIDmode, t0,
22317 gen_rtx_MULT (SFmode, src, src)));
22318
22319 emit_insn (gen_rtx_SET (VOIDmode, cond,
22320 gen_rtx_COMPARE (CCFPmode, t0, src)));
22321 c1 = gen_rtx_EQ (VOIDmode, cond, const0_rtx);
22322 emit_unlikely_jump (c1, label);
22323
22324 half = force_reg (SFmode, CONST_DOUBLE_FROM_REAL_VALUE (dconsthalf, SFmode));
22325 one = force_reg (SFmode, CONST_DOUBLE_FROM_REAL_VALUE (dconst1, SFmode));
22326
22327 /* halfthree = 1.5 = 1.0 + 0.5 */
22328 emit_insn (gen_rtx_SET (VOIDmode, halfthree,
22329 gen_rtx_PLUS (SFmode, one, half)));
22330
22331 /* x0 = rsqrt estimate */
22332 emit_insn (gen_rtx_SET (VOIDmode, x0,
22333 gen_rtx_UNSPEC (SFmode, gen_rtvec (1, src),
22334 UNSPEC_RSQRT)));
22335
22336 /* y1 = 0.5 * src = 1.5 * src - src -> fewer constants */
22337 emit_insn (gen_rtx_SET (VOIDmode, y1,
22338 gen_rtx_MINUS (SFmode,
22339 gen_rtx_MULT (SFmode, src, halfthree),
22340 src)));
22341
22342 /* x1 = x0 * (1.5 - y1 * (x0 * x0)) */
22343 emit_insn (gen_rtx_SET (VOIDmode, u0,
22344 gen_rtx_MULT (SFmode, x0, x0)));
22345 emit_insn (gen_rtx_SET (VOIDmode, v0,
22346 gen_rtx_MINUS (SFmode,
22347 halfthree,
22348 gen_rtx_MULT (SFmode, y1, u0))));
22349 emit_insn (gen_rtx_SET (VOIDmode, x1,
22350 gen_rtx_MULT (SFmode, x0, v0)));
22351
22352 /* x2 = x1 * (1.5 - y1 * (x1 * x1)) */
22353 emit_insn (gen_rtx_SET (VOIDmode, u1,
22354 gen_rtx_MULT (SFmode, x1, x1)));
22355 emit_insn (gen_rtx_SET (VOIDmode, v1,
22356 gen_rtx_MINUS (SFmode,
22357 halfthree,
22358 gen_rtx_MULT (SFmode, y1, u1))));
22359 emit_insn (gen_rtx_SET (VOIDmode, x2,
22360 gen_rtx_MULT (SFmode, x1, v1)));
22361
22362 /* dst = x2 * (1.5 - y1 * (x2 * x2)) */
22363 emit_insn (gen_rtx_SET (VOIDmode, u2,
22364 gen_rtx_MULT (SFmode, x2, x2)));
22365 emit_insn (gen_rtx_SET (VOIDmode, v2,
22366 gen_rtx_MINUS (SFmode,
22367 halfthree,
22368 gen_rtx_MULT (SFmode, y1, u2))));
22369 emit_insn (gen_rtx_SET (VOIDmode, dst,
22370 gen_rtx_MULT (SFmode, x2, v2)));
22371
22372 emit_label (XEXP (label, 0));
22373}
22374
565ef4ba
RS
22375/* Emit popcount intrinsic on TARGET_POPCNTB targets. DST is the
22376 target, and SRC is the argument operand. */
22377
22378void
22379rs6000_emit_popcount (rtx dst, rtx src)
22380{
22381 enum machine_mode mode = GET_MODE (dst);
22382 rtx tmp1, tmp2;
22383
22384 tmp1 = gen_reg_rtx (mode);
22385
22386 if (mode == SImode)
22387 {
22388 emit_insn (gen_popcntbsi2 (tmp1, src));
22389 tmp2 = expand_mult (SImode, tmp1, GEN_INT (0x01010101),
22390 NULL_RTX, 0);
22391 tmp2 = force_reg (SImode, tmp2);
22392 emit_insn (gen_lshrsi3 (dst, tmp2, GEN_INT (24)));
22393 }
22394 else
22395 {
22396 emit_insn (gen_popcntbdi2 (tmp1, src));
22397 tmp2 = expand_mult (DImode, tmp1,
22398 GEN_INT ((HOST_WIDE_INT)
22399 0x01010101 << 32 | 0x01010101),
22400 NULL_RTX, 0);
22401 tmp2 = force_reg (DImode, tmp2);
22402 emit_insn (gen_lshrdi3 (dst, tmp2, GEN_INT (56)));
22403 }
22404}
22405
22406
22407/* Emit parity intrinsic on TARGET_POPCNTB targets. DST is the
22408 target, and SRC is the argument operand. */
22409
22410void
22411rs6000_emit_parity (rtx dst, rtx src)
22412{
22413 enum machine_mode mode = GET_MODE (dst);
22414 rtx tmp;
22415
22416 tmp = gen_reg_rtx (mode);
22417 if (mode == SImode)
22418 {
22419 /* Is mult+shift >= shift+xor+shift+xor? */
22420 if (rs6000_cost->mulsi_const >= COSTS_N_INSNS (3))
22421 {
22422 rtx tmp1, tmp2, tmp3, tmp4;
22423
22424 tmp1 = gen_reg_rtx (SImode);
22425 emit_insn (gen_popcntbsi2 (tmp1, src));
22426
22427 tmp2 = gen_reg_rtx (SImode);
22428 emit_insn (gen_lshrsi3 (tmp2, tmp1, GEN_INT (16)));
22429 tmp3 = gen_reg_rtx (SImode);
22430 emit_insn (gen_xorsi3 (tmp3, tmp1, tmp2));
22431
22432 tmp4 = gen_reg_rtx (SImode);
22433 emit_insn (gen_lshrsi3 (tmp4, tmp3, GEN_INT (8)));
22434 emit_insn (gen_xorsi3 (tmp, tmp3, tmp4));
22435 }
22436 else
22437 rs6000_emit_popcount (tmp, src);
22438 emit_insn (gen_andsi3 (dst, tmp, const1_rtx));
22439 }
22440 else
22441 {
22442 /* Is mult+shift >= shift+xor+shift+xor+shift+xor? */
22443 if (rs6000_cost->muldi >= COSTS_N_INSNS (5))
22444 {
22445 rtx tmp1, tmp2, tmp3, tmp4, tmp5, tmp6;
22446
22447 tmp1 = gen_reg_rtx (DImode);
22448 emit_insn (gen_popcntbdi2 (tmp1, src));
22449
22450 tmp2 = gen_reg_rtx (DImode);
22451 emit_insn (gen_lshrdi3 (tmp2, tmp1, GEN_INT (32)));
22452 tmp3 = gen_reg_rtx (DImode);
22453 emit_insn (gen_xordi3 (tmp3, tmp1, tmp2));
22454
22455 tmp4 = gen_reg_rtx (DImode);
22456 emit_insn (gen_lshrdi3 (tmp4, tmp3, GEN_INT (16)));
22457 tmp5 = gen_reg_rtx (DImode);
22458 emit_insn (gen_xordi3 (tmp5, tmp3, tmp4));
22459
22460 tmp6 = gen_reg_rtx (DImode);
22461 emit_insn (gen_lshrdi3 (tmp6, tmp5, GEN_INT (8)));
22462 emit_insn (gen_xordi3 (tmp, tmp5, tmp6));
22463 }
22464 else
22465 rs6000_emit_popcount (tmp, src);
22466 emit_insn (gen_anddi3 (dst, tmp, const1_rtx));
22467 }
22468}
22469
ded9bf77
AH
22470/* Return an RTX representing where to find the function value of a
22471 function returning MODE. */
22472static rtx
22473rs6000_complex_function_value (enum machine_mode mode)
22474{
22475 unsigned int regno;
22476 rtx r1, r2;
22477 enum machine_mode inner = GET_MODE_INNER (mode);
fb7e4164 22478 unsigned int inner_bytes = GET_MODE_SIZE (inner);
ded9bf77 22479
18f63bfa
AH
22480 if (FLOAT_MODE_P (mode) && TARGET_HARD_FLOAT && TARGET_FPRS)
22481 regno = FP_ARG_RETURN;
354ed18f
AH
22482 else
22483 {
18f63bfa 22484 regno = GP_ARG_RETURN;
ded9bf77 22485
18f63bfa
AH
22486 /* 32-bit is OK since it'll go in r3/r4. */
22487 if (TARGET_32BIT && inner_bytes >= 4)
ded9bf77
AH
22488 return gen_rtx_REG (mode, regno);
22489 }
22490
18f63bfa
AH
22491 if (inner_bytes >= 8)
22492 return gen_rtx_REG (mode, regno);
22493
ded9bf77
AH
22494 r1 = gen_rtx_EXPR_LIST (inner, gen_rtx_REG (inner, regno),
22495 const0_rtx);
22496 r2 = gen_rtx_EXPR_LIST (inner, gen_rtx_REG (inner, regno + 1),
fb7e4164 22497 GEN_INT (inner_bytes));
ded9bf77
AH
22498 return gen_rtx_PARALLEL (mode, gen_rtvec (2, r1, r2));
22499}
22500
a6ebc39a
AH
22501/* Define how to find the value returned by a function.
22502 VALTYPE is the data type of the value (as a tree).
22503 If the precise function being called is known, FUNC is its FUNCTION_DECL;
22504 otherwise, FUNC is 0.
22505
22506 On the SPE, both FPs and vectors are returned in r3.
22507
22508 On RS/6000 an integer value is in r3 and a floating-point value is in
22509 fp1, unless -msoft-float. */
22510
22511rtx
586de218 22512rs6000_function_value (const_tree valtype, const_tree func ATTRIBUTE_UNUSED)
a6ebc39a
AH
22513{
22514 enum machine_mode mode;
2a8fa26c 22515 unsigned int regno;
a6ebc39a 22516
594a51fe
SS
22517 /* Special handling for structs in darwin64. */
22518 if (rs6000_darwin64_abi
22519 && TYPE_MODE (valtype) == BLKmode
0b5383eb
DJ
22520 && TREE_CODE (valtype) == RECORD_TYPE
22521 && int_size_in_bytes (valtype) > 0)
594a51fe
SS
22522 {
22523 CUMULATIVE_ARGS valcum;
22524 rtx valret;
22525
0b5383eb 22526 valcum.words = 0;
594a51fe
SS
22527 valcum.fregno = FP_ARG_MIN_REG;
22528 valcum.vregno = ALTIVEC_ARG_MIN_REG;
0b5383eb
DJ
22529 /* Do a trial code generation as if this were going to be passed as
22530 an argument; if any part goes in memory, we return NULL. */
22531 valret = rs6000_darwin64_record_arg (&valcum, valtype, 1, true);
594a51fe
SS
22532 if (valret)
22533 return valret;
22534 /* Otherwise fall through to standard ABI rules. */
22535 }
22536
0e67400a
FJ
22537 if (TARGET_32BIT && TARGET_POWERPC64 && TYPE_MODE (valtype) == DImode)
22538 {
22539 /* Long long return value need be split in -mpowerpc64, 32bit ABI. */
22540 return gen_rtx_PARALLEL (DImode,
22541 gen_rtvec (2,
22542 gen_rtx_EXPR_LIST (VOIDmode,
22543 gen_rtx_REG (SImode, GP_ARG_RETURN),
22544 const0_rtx),
22545 gen_rtx_EXPR_LIST (VOIDmode,
22546 gen_rtx_REG (SImode,
22547 GP_ARG_RETURN + 1),
22548 GEN_INT (4))));
22549 }
0f086e42
FJ
22550 if (TARGET_32BIT && TARGET_POWERPC64 && TYPE_MODE (valtype) == DCmode)
22551 {
22552 return gen_rtx_PARALLEL (DCmode,
22553 gen_rtvec (4,
22554 gen_rtx_EXPR_LIST (VOIDmode,
22555 gen_rtx_REG (SImode, GP_ARG_RETURN),
22556 const0_rtx),
22557 gen_rtx_EXPR_LIST (VOIDmode,
22558 gen_rtx_REG (SImode,
22559 GP_ARG_RETURN + 1),
22560 GEN_INT (4)),
22561 gen_rtx_EXPR_LIST (VOIDmode,
22562 gen_rtx_REG (SImode,
22563 GP_ARG_RETURN + 2),
22564 GEN_INT (8)),
22565 gen_rtx_EXPR_LIST (VOIDmode,
22566 gen_rtx_REG (SImode,
22567 GP_ARG_RETURN + 3),
22568 GEN_INT (12))));
22569 }
602ea4d3 22570
7348aa7f
FXC
22571 mode = TYPE_MODE (valtype);
22572 if ((INTEGRAL_TYPE_P (valtype) && GET_MODE_BITSIZE (mode) < BITS_PER_WORD)
a6ebc39a 22573 || POINTER_TYPE_P (valtype))
b78d48dd 22574 mode = TARGET_32BIT ? SImode : DImode;
a6ebc39a 22575
e41b2a33
PB
22576 if (DECIMAL_FLOAT_MODE_P (mode) && TARGET_HARD_FLOAT && TARGET_FPRS)
22577 /* _Decimal128 must use an even/odd register pair. */
22578 regno = (mode == TDmode) ? FP_ARG_RETURN + 1 : FP_ARG_RETURN;
56f4cc04 22579 else if (SCALAR_FLOAT_TYPE_P (valtype) && TARGET_HARD_FLOAT && TARGET_FPRS)
2a8fa26c 22580 regno = FP_ARG_RETURN;
ded9bf77 22581 else if (TREE_CODE (valtype) == COMPLEX_TYPE
42ba5130 22582 && targetm.calls.split_complex_arg)
ded9bf77 22583 return rs6000_complex_function_value (mode);
44688022 22584 else if (TREE_CODE (valtype) == VECTOR_TYPE
d0b2079e 22585 && TARGET_ALTIVEC && TARGET_ALTIVEC_ABI
23ba09f0 22586 && ALTIVEC_VECTOR_MODE (mode))
a6ebc39a 22587 regno = ALTIVEC_ARG_RETURN;
18f63bfa 22588 else if (TARGET_E500_DOUBLE && TARGET_HARD_FLOAT
4f011e1e
JM
22589 && (mode == DFmode || mode == DCmode
22590 || mode == TFmode || mode == TCmode))
18f63bfa 22591 return spe_build_register_parallel (mode, GP_ARG_RETURN);
a6ebc39a
AH
22592 else
22593 regno = GP_ARG_RETURN;
22594
22595 return gen_rtx_REG (mode, regno);
22596}
22597
ded9bf77
AH
22598/* Define how to find the value returned by a library function
22599 assuming the value has mode MODE. */
22600rtx
22601rs6000_libcall_value (enum machine_mode mode)
22602{
22603 unsigned int regno;
22604
2e6c9641
FJ
22605 if (TARGET_32BIT && TARGET_POWERPC64 && mode == DImode)
22606 {
22607 /* Long long return value need be split in -mpowerpc64, 32bit ABI. */
22608 return gen_rtx_PARALLEL (DImode,
22609 gen_rtvec (2,
22610 gen_rtx_EXPR_LIST (VOIDmode,
22611 gen_rtx_REG (SImode, GP_ARG_RETURN),
22612 const0_rtx),
22613 gen_rtx_EXPR_LIST (VOIDmode,
22614 gen_rtx_REG (SImode,
22615 GP_ARG_RETURN + 1),
22616 GEN_INT (4))));
22617 }
22618
e41b2a33
PB
22619 if (DECIMAL_FLOAT_MODE_P (mode) && TARGET_HARD_FLOAT && TARGET_FPRS)
22620 /* _Decimal128 must use an even/odd register pair. */
22621 regno = (mode == TDmode) ? FP_ARG_RETURN + 1 : FP_ARG_RETURN;
00b79d54 22622 else if (SCALAR_FLOAT_MODE_P (mode)
ded9bf77
AH
22623 && TARGET_HARD_FLOAT && TARGET_FPRS)
22624 regno = FP_ARG_RETURN;
44688022
AM
22625 else if (ALTIVEC_VECTOR_MODE (mode)
22626 && TARGET_ALTIVEC && TARGET_ALTIVEC_ABI)
ded9bf77 22627 regno = ALTIVEC_ARG_RETURN;
42ba5130 22628 else if (COMPLEX_MODE_P (mode) && targetm.calls.split_complex_arg)
ded9bf77 22629 return rs6000_complex_function_value (mode);
18f63bfa 22630 else if (TARGET_E500_DOUBLE && TARGET_HARD_FLOAT
4f011e1e
JM
22631 && (mode == DFmode || mode == DCmode
22632 || mode == TFmode || mode == TCmode))
18f63bfa 22633 return spe_build_register_parallel (mode, GP_ARG_RETURN);
ded9bf77
AH
22634 else
22635 regno = GP_ARG_RETURN;
22636
22637 return gen_rtx_REG (mode, regno);
22638}
22639
d1d0c603
JJ
22640/* Define the offset between two registers, FROM to be eliminated and its
22641 replacement TO, at the start of a routine. */
22642HOST_WIDE_INT
22643rs6000_initial_elimination_offset (int from, int to)
22644{
22645 rs6000_stack_t *info = rs6000_stack_info ();
22646 HOST_WIDE_INT offset;
22647
7d5175e1 22648 if (from == HARD_FRAME_POINTER_REGNUM && to == STACK_POINTER_REGNUM)
d1d0c603 22649 offset = info->push_p ? 0 : -info->total_size;
7d5175e1
JJ
22650 else if (from == FRAME_POINTER_REGNUM && to == STACK_POINTER_REGNUM)
22651 {
22652 offset = info->push_p ? 0 : -info->total_size;
22653 if (FRAME_GROWS_DOWNWARD)
5b667039 22654 offset += info->fixed_size + info->vars_size + info->parm_size;
7d5175e1
JJ
22655 }
22656 else if (from == FRAME_POINTER_REGNUM && to == HARD_FRAME_POINTER_REGNUM)
22657 offset = FRAME_GROWS_DOWNWARD
5b667039 22658 ? info->fixed_size + info->vars_size + info->parm_size
7d5175e1
JJ
22659 : 0;
22660 else if (from == ARG_POINTER_REGNUM && to == HARD_FRAME_POINTER_REGNUM)
d1d0c603
JJ
22661 offset = info->total_size;
22662 else if (from == ARG_POINTER_REGNUM && to == STACK_POINTER_REGNUM)
22663 offset = info->push_p ? info->total_size : 0;
22664 else if (from == RS6000_PIC_OFFSET_TABLE_REGNUM)
22665 offset = 0;
22666 else
37409796 22667 gcc_unreachable ();
d1d0c603
JJ
22668
22669 return offset;
22670}
22671
58646b77 22672/* Return true if TYPE is a SPE or AltiVec opaque type. */
62e1dfcf 22673
c8e4f0e9 22674static bool
3101faab 22675rs6000_is_opaque_type (const_tree type)
62e1dfcf 22676{
58646b77 22677 return (type == opaque_V2SI_type_node
2abe3e28 22678 || type == opaque_V2SF_type_node
58646b77 22679 || type == opaque_V4SI_type_node);
62e1dfcf
NC
22680}
22681
96714395 22682static rtx
a2369ed3 22683rs6000_dwarf_register_span (rtx reg)
96714395
AH
22684{
22685 unsigned regno;
22686
4d4cbc0e
AH
22687 if (TARGET_SPE
22688 && (SPE_VECTOR_MODE (GET_MODE (reg))
4d4447b5
PB
22689 || (TARGET_E500_DOUBLE
22690 && (GET_MODE (reg) == DFmode || GET_MODE (reg) == DDmode))))
4d4cbc0e
AH
22691 ;
22692 else
96714395
AH
22693 return NULL_RTX;
22694
22695 regno = REGNO (reg);
22696
22697 /* The duality of the SPE register size wreaks all kinds of havoc.
22698 This is a way of distinguishing r0 in 32-bits from r0 in
22699 64-bits. */
22700 return
22701 gen_rtx_PARALLEL (VOIDmode,
3bd104d1
AH
22702 BYTES_BIG_ENDIAN
22703 ? gen_rtvec (2,
22704 gen_rtx_REG (SImode, regno + 1200),
22705 gen_rtx_REG (SImode, regno))
22706 : gen_rtvec (2,
22707 gen_rtx_REG (SImode, regno),
22708 gen_rtx_REG (SImode, regno + 1200)));
96714395
AH
22709}
22710
37ea0b7e
JM
22711/* Fill in sizes for SPE register high parts in table used by unwinder. */
22712
22713static void
22714rs6000_init_dwarf_reg_sizes_extra (tree address)
22715{
22716 if (TARGET_SPE)
22717 {
22718 int i;
22719 enum machine_mode mode = TYPE_MODE (char_type_node);
22720 rtx addr = expand_expr (address, NULL_RTX, VOIDmode, 0);
22721 rtx mem = gen_rtx_MEM (BLKmode, addr);
22722 rtx value = gen_int_mode (4, mode);
22723
22724 for (i = 1201; i < 1232; i++)
22725 {
22726 int column = DWARF_REG_TO_UNWIND_COLUMN (i);
22727 HOST_WIDE_INT offset
22728 = DWARF_FRAME_REGNUM (column) * GET_MODE_SIZE (mode);
22729
22730 emit_move_insn (adjust_address (mem, mode, offset), value);
22731 }
22732 }
22733}
22734
93c9d1ba
AM
22735/* Map internal gcc register numbers to DWARF2 register numbers. */
22736
22737unsigned int
22738rs6000_dbx_register_number (unsigned int regno)
22739{
22740 if (regno <= 63 || write_symbols != DWARF2_DEBUG)
22741 return regno;
22742 if (regno == MQ_REGNO)
22743 return 100;
1de43f85 22744 if (regno == LR_REGNO)
93c9d1ba 22745 return 108;
1de43f85 22746 if (regno == CTR_REGNO)
93c9d1ba
AM
22747 return 109;
22748 if (CR_REGNO_P (regno))
22749 return regno - CR0_REGNO + 86;
22750 if (regno == XER_REGNO)
22751 return 101;
22752 if (ALTIVEC_REGNO_P (regno))
22753 return regno - FIRST_ALTIVEC_REGNO + 1124;
22754 if (regno == VRSAVE_REGNO)
22755 return 356;
22756 if (regno == VSCR_REGNO)
22757 return 67;
22758 if (regno == SPE_ACC_REGNO)
22759 return 99;
22760 if (regno == SPEFSCR_REGNO)
22761 return 612;
22762 /* SPE high reg number. We get these values of regno from
22763 rs6000_dwarf_register_span. */
37409796
NS
22764 gcc_assert (regno >= 1200 && regno < 1232);
22765 return regno;
93c9d1ba
AM
22766}
22767
93f90be6 22768/* target hook eh_return_filter_mode */
f676971a 22769static enum machine_mode
93f90be6
FJ
22770rs6000_eh_return_filter_mode (void)
22771{
22772 return TARGET_32BIT ? SImode : word_mode;
22773}
22774
00b79d54
BE
22775/* Target hook for scalar_mode_supported_p. */
22776static bool
22777rs6000_scalar_mode_supported_p (enum machine_mode mode)
22778{
22779 if (DECIMAL_FLOAT_MODE_P (mode))
22780 return true;
22781 else
22782 return default_scalar_mode_supported_p (mode);
22783}
22784
f676971a
EC
22785/* Target hook for vector_mode_supported_p. */
22786static bool
22787rs6000_vector_mode_supported_p (enum machine_mode mode)
22788{
22789
96038623
DE
22790 if (TARGET_PAIRED_FLOAT && PAIRED_VECTOR_MODE (mode))
22791 return true;
22792
f676971a
EC
22793 if (TARGET_SPE && SPE_VECTOR_MODE (mode))
22794 return true;
22795
22796 else if (TARGET_ALTIVEC && ALTIVEC_VECTOR_MODE (mode))
22797 return true;
22798
22799 else
22800 return false;
22801}
22802
bb8df8a6
EC
22803/* Target hook for invalid_arg_for_unprototyped_fn. */
22804static const char *
3101faab 22805invalid_arg_for_unprototyped_fn (const_tree typelist, const_tree funcdecl, const_tree val)
4d3e6fae
FJ
22806{
22807 return (!rs6000_darwin64_abi
22808 && typelist == 0
22809 && TREE_CODE (TREE_TYPE (val)) == VECTOR_TYPE
22810 && (funcdecl == NULL_TREE
22811 || (TREE_CODE (funcdecl) == FUNCTION_DECL
22812 && DECL_BUILT_IN_CLASS (funcdecl) != BUILT_IN_MD)))
22813 ? N_("AltiVec argument passed to unprototyped function")
22814 : NULL;
22815}
22816
3aebbe5f
JJ
22817/* For TARGET_SECURE_PLT 32-bit PIC code we can save PIC register
22818 setup by using __stack_chk_fail_local hidden function instead of
22819 calling __stack_chk_fail directly. Otherwise it is better to call
22820 __stack_chk_fail directly. */
22821
22822static tree
22823rs6000_stack_protect_fail (void)
22824{
22825 return (DEFAULT_ABI == ABI_V4 && TARGET_SECURE_PLT && flag_pic)
22826 ? default_hidden_stack_protect_fail ()
22827 : default_external_stack_protect_fail ();
22828}
22829
c921bad8
AP
22830void
22831rs6000_final_prescan_insn (rtx insn, rtx *operand ATTRIBUTE_UNUSED,
22832 int num_operands ATTRIBUTE_UNUSED)
22833{
22834 if (rs6000_warn_cell_microcode)
22835 {
22836 const char *temp;
22837 int insn_code_number = recog_memoized (insn);
22838 location_t location = locator_location (INSN_LOCATOR (insn));
22839
22840 /* Punt on insns we cannot recognize. */
22841 if (insn_code_number < 0)
22842 return;
22843
22844 temp = get_insn_template (insn_code_number, insn);
22845
22846 if (get_attr_cell_micro (insn) == CELL_MICRO_ALWAYS)
22847 warning_at (location, OPT_mwarn_cell_microcode,
22848 "emitting microcode insn %s\t[%s] #%d",
22849 temp, insn_data[INSN_CODE (insn)].name, INSN_UID (insn));
22850 else if (get_attr_cell_micro (insn) == CELL_MICRO_CONDITIONAL)
22851 warning_at (location, OPT_mwarn_cell_microcode,
22852 "emitting conditional microcode insn %s\t[%s] #%d",
22853 temp, insn_data[INSN_CODE (insn)].name, INSN_UID (insn));
22854 }
22855}
22856
17211ab5 22857#include "gt-rs6000.h"