re PR target/60737 (rs6000 expand_block_clear uses word stores on double word pointer)
[official-gcc.git] / gcc / config / rs6000 / rs6000.c
blob7b19b422662eed24f29f55c4c7520147bd18d0af
1 /* Subroutines used for code generation on IBM RS/6000.
2 Copyright (C) 1991-2014 Free Software Foundation, Inc.
3 Contributed by Richard Kenner (kenner@vlsi1.ultra.nyu.edu)
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published
9 by the Free Software Foundation; either version 3, or (at your
10 option) any later version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "rtl.h"
26 #include "regs.h"
27 #include "hard-reg-set.h"
28 #include "insn-config.h"
29 #include "conditions.h"
30 #include "insn-attr.h"
31 #include "flags.h"
32 #include "recog.h"
33 #include "obstack.h"
34 #include "tree.h"
35 #include "stringpool.h"
36 #include "stor-layout.h"
37 #include "calls.h"
38 #include "print-tree.h"
39 #include "varasm.h"
40 #include "expr.h"
41 #include "optabs.h"
42 #include "except.h"
43 #include "function.h"
44 #include "output.h"
45 #include "dbxout.h"
46 #include "basic-block.h"
47 #include "diagnostic-core.h"
48 #include "toplev.h"
49 #include "ggc.h"
50 #include "hashtab.h"
51 #include "tm_p.h"
52 #include "target.h"
53 #include "target-def.h"
54 #include "common/common-target.h"
55 #include "langhooks.h"
56 #include "reload.h"
57 #include "cfgloop.h"
58 #include "sched-int.h"
59 #include "pointer-set.h"
60 #include "hash-table.h"
61 #include "vec.h"
62 #include "basic-block.h"
63 #include "tree-ssa-alias.h"
64 #include "internal-fn.h"
65 #include "gimple-fold.h"
66 #include "tree-eh.h"
67 #include "gimple-expr.h"
68 #include "is-a.h"
69 #include "gimple.h"
70 #include "gimplify.h"
71 #include "gimple-iterator.h"
72 #include "gimple-walk.h"
73 #include "intl.h"
74 #include "params.h"
75 #include "tm-constrs.h"
76 #include "ira.h"
77 #include "opts.h"
78 #include "tree-vectorizer.h"
79 #include "dumpfile.h"
80 #include "cgraph.h"
81 #include "target-globals.h"
82 #if TARGET_XCOFF
83 #include "xcoffout.h" /* get declarations of xcoff_*_section_name */
84 #endif
85 #if TARGET_MACHO
86 #include "gstab.h" /* for N_SLINE */
87 #endif
89 #ifndef TARGET_NO_PROTOTYPE
90 #define TARGET_NO_PROTOTYPE 0
91 #endif
93 #define min(A,B) ((A) < (B) ? (A) : (B))
94 #define max(A,B) ((A) > (B) ? (A) : (B))
96 /* Structure used to define the rs6000 stack */
97 typedef struct rs6000_stack {
98 int reload_completed; /* stack info won't change from here on */
99 int first_gp_reg_save; /* first callee saved GP register used */
100 int first_fp_reg_save; /* first callee saved FP register used */
101 int first_altivec_reg_save; /* first callee saved AltiVec register used */
102 int lr_save_p; /* true if the link reg needs to be saved */
103 int cr_save_p; /* true if the CR reg needs to be saved */
104 unsigned int vrsave_mask; /* mask of vec registers to save */
105 int push_p; /* true if we need to allocate stack space */
106 int calls_p; /* true if the function makes any calls */
107 int world_save_p; /* true if we're saving *everything*:
108 r13-r31, cr, f14-f31, vrsave, v20-v31 */
109 enum rs6000_abi abi; /* which ABI to use */
110 int gp_save_offset; /* offset to save GP regs from initial SP */
111 int fp_save_offset; /* offset to save FP regs from initial SP */
112 int altivec_save_offset; /* offset to save AltiVec regs from initial SP */
113 int lr_save_offset; /* offset to save LR from initial SP */
114 int cr_save_offset; /* offset to save CR from initial SP */
115 int vrsave_save_offset; /* offset to save VRSAVE from initial SP */
116 int spe_gp_save_offset; /* offset to save spe 64-bit gprs */
117 int varargs_save_offset; /* offset to save the varargs registers */
118 int ehrd_offset; /* offset to EH return data */
119 int ehcr_offset; /* offset to EH CR field data */
120 int reg_size; /* register size (4 or 8) */
121 HOST_WIDE_INT vars_size; /* variable save area size */
122 int parm_size; /* outgoing parameter size */
123 int save_size; /* save area size */
124 int fixed_size; /* fixed size of stack frame */
125 int gp_size; /* size of saved GP registers */
126 int fp_size; /* size of saved FP registers */
127 int altivec_size; /* size of saved AltiVec registers */
128 int cr_size; /* size to hold CR if not in save_size */
129 int vrsave_size; /* size to hold VRSAVE if not in save_size */
130 int altivec_padding_size; /* size of altivec alignment padding if
131 not in save_size */
132 int spe_gp_size; /* size of 64-bit GPR save size for SPE */
133 int spe_padding_size;
134 HOST_WIDE_INT total_size; /* total bytes allocated for stack */
135 int spe_64bit_regs_used;
136 int savres_strategy;
137 } rs6000_stack_t;
139 /* A C structure for machine-specific, per-function data.
140 This is added to the cfun structure. */
141 typedef struct GTY(()) machine_function
143 /* Some local-dynamic symbol. */
144 const char *some_ld_name;
145 /* Whether the instruction chain has been scanned already. */
146 int insn_chain_scanned_p;
147 /* Flags if __builtin_return_address (n) with n >= 1 was used. */
148 int ra_needs_full_frame;
149 /* Flags if __builtin_return_address (0) was used. */
150 int ra_need_lr;
151 /* Cache lr_save_p after expansion of builtin_eh_return. */
152 int lr_save_state;
153 /* Whether we need to save the TOC to the reserved stack location in the
154 function prologue. */
155 bool save_toc_in_prologue;
156 /* Offset from virtual_stack_vars_rtx to the start of the ABI_V4
157 varargs save area. */
158 HOST_WIDE_INT varargs_save_offset;
159 /* Temporary stack slot to use for SDmode copies. This slot is
160 64-bits wide and is allocated early enough so that the offset
161 does not overflow the 16-bit load/store offset field. */
162 rtx sdmode_stack_slot;
163 /* Flag if r2 setup is needed with ELFv2 ABI. */
164 bool r2_setup_needed;
165 } machine_function;
167 /* Support targetm.vectorize.builtin_mask_for_load. */
168 static GTY(()) tree altivec_builtin_mask_for_load;
170 /* Set to nonzero once AIX common-mode calls have been defined. */
171 static GTY(()) int common_mode_defined;
173 /* Label number of label created for -mrelocatable, to call to so we can
174 get the address of the GOT section */
175 static int rs6000_pic_labelno;
177 #ifdef USING_ELFOS_H
178 /* Counter for labels which are to be placed in .fixup. */
179 int fixuplabelno = 0;
180 #endif
182 /* Whether to use variant of AIX ABI for PowerPC64 Linux. */
183 int dot_symbols;
185 /* Specify the machine mode that pointers have. After generation of rtl, the
186 compiler makes no further distinction between pointers and any other objects
187 of this machine mode. The type is unsigned since not all things that
188 include rs6000.h also include machmode.h. */
189 unsigned rs6000_pmode;
191 /* Width in bits of a pointer. */
192 unsigned rs6000_pointer_size;
194 #ifdef HAVE_AS_GNU_ATTRIBUTE
195 /* Flag whether floating point values have been passed/returned. */
196 static bool rs6000_passes_float;
197 /* Flag whether vector values have been passed/returned. */
198 static bool rs6000_passes_vector;
199 /* Flag whether small (<= 8 byte) structures have been returned. */
200 static bool rs6000_returns_struct;
201 #endif
203 /* Value is TRUE if register/mode pair is acceptable. */
204 bool rs6000_hard_regno_mode_ok_p[NUM_MACHINE_MODES][FIRST_PSEUDO_REGISTER];
206 /* Maximum number of registers needed for a given register class and mode. */
207 unsigned char rs6000_class_max_nregs[NUM_MACHINE_MODES][LIM_REG_CLASSES];
209 /* How many registers are needed for a given register and mode. */
210 unsigned char rs6000_hard_regno_nregs[NUM_MACHINE_MODES][FIRST_PSEUDO_REGISTER];
212 /* Map register number to register class. */
213 enum reg_class rs6000_regno_regclass[FIRST_PSEUDO_REGISTER];
215 static int dbg_cost_ctrl;
217 /* Built in types. */
218 tree rs6000_builtin_types[RS6000_BTI_MAX];
219 tree rs6000_builtin_decls[RS6000_BUILTIN_COUNT];
221 /* Flag to say the TOC is initialized */
222 int toc_initialized;
223 char toc_label_name[10];
225 /* Cached value of rs6000_variable_issue. This is cached in
226 rs6000_variable_issue hook and returned from rs6000_sched_reorder2. */
227 static short cached_can_issue_more;
229 static GTY(()) section *read_only_data_section;
230 static GTY(()) section *private_data_section;
231 static GTY(()) section *tls_data_section;
232 static GTY(()) section *tls_private_data_section;
233 static GTY(()) section *read_only_private_data_section;
234 static GTY(()) section *sdata2_section;
235 static GTY(()) section *toc_section;
237 struct builtin_description
239 const HOST_WIDE_INT mask;
240 const enum insn_code icode;
241 const char *const name;
242 const enum rs6000_builtins code;
245 /* Describe the vector unit used for modes. */
246 enum rs6000_vector rs6000_vector_unit[NUM_MACHINE_MODES];
247 enum rs6000_vector rs6000_vector_mem[NUM_MACHINE_MODES];
249 /* Register classes for various constraints that are based on the target
250 switches. */
251 enum reg_class rs6000_constraints[RS6000_CONSTRAINT_MAX];
253 /* Describe the alignment of a vector. */
254 int rs6000_vector_align[NUM_MACHINE_MODES];
256 /* Map selected modes to types for builtins. */
257 static GTY(()) tree builtin_mode_to_type[MAX_MACHINE_MODE][2];
259 /* What modes to automatically generate reciprocal divide estimate (fre) and
260 reciprocal sqrt (frsqrte) for. */
261 unsigned char rs6000_recip_bits[MAX_MACHINE_MODE];
263 /* Masks to determine which reciprocal esitmate instructions to generate
264 automatically. */
265 enum rs6000_recip_mask {
266 RECIP_SF_DIV = 0x001, /* Use divide estimate */
267 RECIP_DF_DIV = 0x002,
268 RECIP_V4SF_DIV = 0x004,
269 RECIP_V2DF_DIV = 0x008,
271 RECIP_SF_RSQRT = 0x010, /* Use reciprocal sqrt estimate. */
272 RECIP_DF_RSQRT = 0x020,
273 RECIP_V4SF_RSQRT = 0x040,
274 RECIP_V2DF_RSQRT = 0x080,
276 /* Various combination of flags for -mrecip=xxx. */
277 RECIP_NONE = 0,
278 RECIP_ALL = (RECIP_SF_DIV | RECIP_DF_DIV | RECIP_V4SF_DIV
279 | RECIP_V2DF_DIV | RECIP_SF_RSQRT | RECIP_DF_RSQRT
280 | RECIP_V4SF_RSQRT | RECIP_V2DF_RSQRT),
282 RECIP_HIGH_PRECISION = RECIP_ALL,
284 /* On low precision machines like the power5, don't enable double precision
285 reciprocal square root estimate, since it isn't accurate enough. */
286 RECIP_LOW_PRECISION = (RECIP_ALL & ~(RECIP_DF_RSQRT | RECIP_V2DF_RSQRT))
289 /* -mrecip options. */
290 static struct
292 const char *string; /* option name */
293 unsigned int mask; /* mask bits to set */
294 } recip_options[] = {
295 { "all", RECIP_ALL },
296 { "none", RECIP_NONE },
297 { "div", (RECIP_SF_DIV | RECIP_DF_DIV | RECIP_V4SF_DIV
298 | RECIP_V2DF_DIV) },
299 { "divf", (RECIP_SF_DIV | RECIP_V4SF_DIV) },
300 { "divd", (RECIP_DF_DIV | RECIP_V2DF_DIV) },
301 { "rsqrt", (RECIP_SF_RSQRT | RECIP_DF_RSQRT | RECIP_V4SF_RSQRT
302 | RECIP_V2DF_RSQRT) },
303 { "rsqrtf", (RECIP_SF_RSQRT | RECIP_V4SF_RSQRT) },
304 { "rsqrtd", (RECIP_DF_RSQRT | RECIP_V2DF_RSQRT) },
307 /* Pointer to function (in rs6000-c.c) that can define or undefine target
308 macros that have changed. Languages that don't support the preprocessor
309 don't link in rs6000-c.c, so we can't call it directly. */
310 void (*rs6000_target_modify_macros_ptr) (bool, HOST_WIDE_INT, HOST_WIDE_INT);
312 /* Simplfy register classes into simpler classifications. We assume
313 GPR_REG_TYPE - FPR_REG_TYPE are ordered so that we can use a simple range
314 check for standard register classes (gpr/floating/altivec/vsx) and
315 floating/vector classes (float/altivec/vsx). */
317 enum rs6000_reg_type {
318 NO_REG_TYPE,
319 PSEUDO_REG_TYPE,
320 GPR_REG_TYPE,
321 VSX_REG_TYPE,
322 ALTIVEC_REG_TYPE,
323 FPR_REG_TYPE,
324 SPR_REG_TYPE,
325 CR_REG_TYPE,
326 SPE_ACC_TYPE,
327 SPEFSCR_REG_TYPE
330 /* Map register class to register type. */
331 static enum rs6000_reg_type reg_class_to_reg_type[N_REG_CLASSES];
333 /* First/last register type for the 'normal' register types (i.e. general
334 purpose, floating point, altivec, and VSX registers). */
335 #define IS_STD_REG_TYPE(RTYPE) IN_RANGE(RTYPE, GPR_REG_TYPE, FPR_REG_TYPE)
337 #define IS_FP_VECT_REG_TYPE(RTYPE) IN_RANGE(RTYPE, VSX_REG_TYPE, FPR_REG_TYPE)
340 /* Register classes we care about in secondary reload or go if legitimate
341 address. We only need to worry about GPR, FPR, and Altivec registers here,
342 along an ANY field that is the OR of the 3 register classes. */
344 enum rs6000_reload_reg_type {
345 RELOAD_REG_GPR, /* General purpose registers. */
346 RELOAD_REG_FPR, /* Traditional floating point regs. */
347 RELOAD_REG_VMX, /* Altivec (VMX) registers. */
348 RELOAD_REG_ANY, /* OR of GPR, FPR, Altivec masks. */
349 N_RELOAD_REG
352 /* For setting up register classes, loop through the 3 register classes mapping
353 into real registers, and skip the ANY class, which is just an OR of the
354 bits. */
355 #define FIRST_RELOAD_REG_CLASS RELOAD_REG_GPR
356 #define LAST_RELOAD_REG_CLASS RELOAD_REG_VMX
358 /* Map reload register type to a register in the register class. */
359 struct reload_reg_map_type {
360 const char *name; /* Register class name. */
361 int reg; /* Register in the register class. */
364 static const struct reload_reg_map_type reload_reg_map[N_RELOAD_REG] = {
365 { "Gpr", FIRST_GPR_REGNO }, /* RELOAD_REG_GPR. */
366 { "Fpr", FIRST_FPR_REGNO }, /* RELOAD_REG_FPR. */
367 { "VMX", FIRST_ALTIVEC_REGNO }, /* RELOAD_REG_VMX. */
368 { "Any", -1 }, /* RELOAD_REG_ANY. */
371 /* Mask bits for each register class, indexed per mode. Historically the
372 compiler has been more restrictive which types can do PRE_MODIFY instead of
373 PRE_INC and PRE_DEC, so keep track of sepaate bits for these two. */
374 typedef unsigned char addr_mask_type;
376 #define RELOAD_REG_VALID 0x01 /* Mode valid in register.. */
377 #define RELOAD_REG_MULTIPLE 0x02 /* Mode takes multiple registers. */
378 #define RELOAD_REG_INDEXED 0x04 /* Reg+reg addressing. */
379 #define RELOAD_REG_OFFSET 0x08 /* Reg+offset addressing. */
380 #define RELOAD_REG_PRE_INCDEC 0x10 /* PRE_INC/PRE_DEC valid. */
381 #define RELOAD_REG_PRE_MODIFY 0x20 /* PRE_MODIFY valid. */
383 /* Register type masks based on the type, of valid addressing modes. */
384 struct rs6000_reg_addr {
385 enum insn_code reload_load; /* INSN to reload for loading. */
386 enum insn_code reload_store; /* INSN to reload for storing. */
387 enum insn_code reload_fpr_gpr; /* INSN to move from FPR to GPR. */
388 enum insn_code reload_gpr_vsx; /* INSN to move from GPR to VSX. */
389 enum insn_code reload_vsx_gpr; /* INSN to move from VSX to GPR. */
390 addr_mask_type addr_mask[(int)N_RELOAD_REG]; /* Valid address masks. */
393 static struct rs6000_reg_addr reg_addr[NUM_MACHINE_MODES];
395 /* Helper function to say whether a mode supports PRE_INC or PRE_DEC. */
396 static inline bool
397 mode_supports_pre_incdec_p (enum machine_mode mode)
399 return ((reg_addr[mode].addr_mask[RELOAD_REG_ANY] & RELOAD_REG_PRE_INCDEC)
400 != 0);
403 /* Helper function to say whether a mode supports PRE_MODIFY. */
404 static inline bool
405 mode_supports_pre_modify_p (enum machine_mode mode)
407 return ((reg_addr[mode].addr_mask[RELOAD_REG_ANY] & RELOAD_REG_PRE_MODIFY)
408 != 0);
412 /* Target cpu costs. */
414 struct processor_costs {
415 const int mulsi; /* cost of SImode multiplication. */
416 const int mulsi_const; /* cost of SImode multiplication by constant. */
417 const int mulsi_const9; /* cost of SImode mult by short constant. */
418 const int muldi; /* cost of DImode multiplication. */
419 const int divsi; /* cost of SImode division. */
420 const int divdi; /* cost of DImode division. */
421 const int fp; /* cost of simple SFmode and DFmode insns. */
422 const int dmul; /* cost of DFmode multiplication (and fmadd). */
423 const int sdiv; /* cost of SFmode division (fdivs). */
424 const int ddiv; /* cost of DFmode division (fdiv). */
425 const int cache_line_size; /* cache line size in bytes. */
426 const int l1_cache_size; /* size of l1 cache, in kilobytes. */
427 const int l2_cache_size; /* size of l2 cache, in kilobytes. */
428 const int simultaneous_prefetches; /* number of parallel prefetch
429 operations. */
432 const struct processor_costs *rs6000_cost;
434 /* Processor costs (relative to an add) */
436 /* Instruction size costs on 32bit processors. */
437 static const
438 struct processor_costs size32_cost = {
439 COSTS_N_INSNS (1), /* mulsi */
440 COSTS_N_INSNS (1), /* mulsi_const */
441 COSTS_N_INSNS (1), /* mulsi_const9 */
442 COSTS_N_INSNS (1), /* muldi */
443 COSTS_N_INSNS (1), /* divsi */
444 COSTS_N_INSNS (1), /* divdi */
445 COSTS_N_INSNS (1), /* fp */
446 COSTS_N_INSNS (1), /* dmul */
447 COSTS_N_INSNS (1), /* sdiv */
448 COSTS_N_INSNS (1), /* ddiv */
455 /* Instruction size costs on 64bit processors. */
456 static const
457 struct processor_costs size64_cost = {
458 COSTS_N_INSNS (1), /* mulsi */
459 COSTS_N_INSNS (1), /* mulsi_const */
460 COSTS_N_INSNS (1), /* mulsi_const9 */
461 COSTS_N_INSNS (1), /* muldi */
462 COSTS_N_INSNS (1), /* divsi */
463 COSTS_N_INSNS (1), /* divdi */
464 COSTS_N_INSNS (1), /* fp */
465 COSTS_N_INSNS (1), /* dmul */
466 COSTS_N_INSNS (1), /* sdiv */
467 COSTS_N_INSNS (1), /* ddiv */
468 128,
474 /* Instruction costs on RS64A processors. */
475 static const
476 struct processor_costs rs64a_cost = {
477 COSTS_N_INSNS (20), /* mulsi */
478 COSTS_N_INSNS (12), /* mulsi_const */
479 COSTS_N_INSNS (8), /* mulsi_const9 */
480 COSTS_N_INSNS (34), /* muldi */
481 COSTS_N_INSNS (65), /* divsi */
482 COSTS_N_INSNS (67), /* divdi */
483 COSTS_N_INSNS (4), /* fp */
484 COSTS_N_INSNS (4), /* dmul */
485 COSTS_N_INSNS (31), /* sdiv */
486 COSTS_N_INSNS (31), /* ddiv */
487 128, /* cache line size */
488 128, /* l1 cache */
489 2048, /* l2 cache */
490 1, /* streams */
493 /* Instruction costs on MPCCORE processors. */
494 static const
495 struct processor_costs mpccore_cost = {
496 COSTS_N_INSNS (2), /* mulsi */
497 COSTS_N_INSNS (2), /* mulsi_const */
498 COSTS_N_INSNS (2), /* mulsi_const9 */
499 COSTS_N_INSNS (2), /* muldi */
500 COSTS_N_INSNS (6), /* divsi */
501 COSTS_N_INSNS (6), /* divdi */
502 COSTS_N_INSNS (4), /* fp */
503 COSTS_N_INSNS (5), /* dmul */
504 COSTS_N_INSNS (10), /* sdiv */
505 COSTS_N_INSNS (17), /* ddiv */
506 32, /* cache line size */
507 4, /* l1 cache */
508 16, /* l2 cache */
509 1, /* streams */
512 /* Instruction costs on PPC403 processors. */
513 static const
514 struct processor_costs ppc403_cost = {
515 COSTS_N_INSNS (4), /* mulsi */
516 COSTS_N_INSNS (4), /* mulsi_const */
517 COSTS_N_INSNS (4), /* mulsi_const9 */
518 COSTS_N_INSNS (4), /* muldi */
519 COSTS_N_INSNS (33), /* divsi */
520 COSTS_N_INSNS (33), /* divdi */
521 COSTS_N_INSNS (11), /* fp */
522 COSTS_N_INSNS (11), /* dmul */
523 COSTS_N_INSNS (11), /* sdiv */
524 COSTS_N_INSNS (11), /* ddiv */
525 32, /* cache line size */
526 4, /* l1 cache */
527 16, /* l2 cache */
528 1, /* streams */
531 /* Instruction costs on PPC405 processors. */
532 static const
533 struct processor_costs ppc405_cost = {
534 COSTS_N_INSNS (5), /* mulsi */
535 COSTS_N_INSNS (4), /* mulsi_const */
536 COSTS_N_INSNS (3), /* mulsi_const9 */
537 COSTS_N_INSNS (5), /* muldi */
538 COSTS_N_INSNS (35), /* divsi */
539 COSTS_N_INSNS (35), /* divdi */
540 COSTS_N_INSNS (11), /* fp */
541 COSTS_N_INSNS (11), /* dmul */
542 COSTS_N_INSNS (11), /* sdiv */
543 COSTS_N_INSNS (11), /* ddiv */
544 32, /* cache line size */
545 16, /* l1 cache */
546 128, /* l2 cache */
547 1, /* streams */
550 /* Instruction costs on PPC440 processors. */
551 static const
552 struct processor_costs ppc440_cost = {
553 COSTS_N_INSNS (3), /* mulsi */
554 COSTS_N_INSNS (2), /* mulsi_const */
555 COSTS_N_INSNS (2), /* mulsi_const9 */
556 COSTS_N_INSNS (3), /* muldi */
557 COSTS_N_INSNS (34), /* divsi */
558 COSTS_N_INSNS (34), /* divdi */
559 COSTS_N_INSNS (5), /* fp */
560 COSTS_N_INSNS (5), /* dmul */
561 COSTS_N_INSNS (19), /* sdiv */
562 COSTS_N_INSNS (33), /* ddiv */
563 32, /* cache line size */
564 32, /* l1 cache */
565 256, /* l2 cache */
566 1, /* streams */
569 /* Instruction costs on PPC476 processors. */
570 static const
571 struct processor_costs ppc476_cost = {
572 COSTS_N_INSNS (4), /* mulsi */
573 COSTS_N_INSNS (4), /* mulsi_const */
574 COSTS_N_INSNS (4), /* mulsi_const9 */
575 COSTS_N_INSNS (4), /* muldi */
576 COSTS_N_INSNS (11), /* divsi */
577 COSTS_N_INSNS (11), /* divdi */
578 COSTS_N_INSNS (6), /* fp */
579 COSTS_N_INSNS (6), /* dmul */
580 COSTS_N_INSNS (19), /* sdiv */
581 COSTS_N_INSNS (33), /* ddiv */
582 32, /* l1 cache line size */
583 32, /* l1 cache */
584 512, /* l2 cache */
585 1, /* streams */
588 /* Instruction costs on PPC601 processors. */
589 static const
590 struct processor_costs ppc601_cost = {
591 COSTS_N_INSNS (5), /* mulsi */
592 COSTS_N_INSNS (5), /* mulsi_const */
593 COSTS_N_INSNS (5), /* mulsi_const9 */
594 COSTS_N_INSNS (5), /* muldi */
595 COSTS_N_INSNS (36), /* divsi */
596 COSTS_N_INSNS (36), /* divdi */
597 COSTS_N_INSNS (4), /* fp */
598 COSTS_N_INSNS (5), /* dmul */
599 COSTS_N_INSNS (17), /* sdiv */
600 COSTS_N_INSNS (31), /* ddiv */
601 32, /* cache line size */
602 32, /* l1 cache */
603 256, /* l2 cache */
604 1, /* streams */
607 /* Instruction costs on PPC603 processors. */
608 static const
609 struct processor_costs ppc603_cost = {
610 COSTS_N_INSNS (5), /* mulsi */
611 COSTS_N_INSNS (3), /* mulsi_const */
612 COSTS_N_INSNS (2), /* mulsi_const9 */
613 COSTS_N_INSNS (5), /* muldi */
614 COSTS_N_INSNS (37), /* divsi */
615 COSTS_N_INSNS (37), /* divdi */
616 COSTS_N_INSNS (3), /* fp */
617 COSTS_N_INSNS (4), /* dmul */
618 COSTS_N_INSNS (18), /* sdiv */
619 COSTS_N_INSNS (33), /* ddiv */
620 32, /* cache line size */
621 8, /* l1 cache */
622 64, /* l2 cache */
623 1, /* streams */
626 /* Instruction costs on PPC604 processors. */
627 static const
628 struct processor_costs ppc604_cost = {
629 COSTS_N_INSNS (4), /* mulsi */
630 COSTS_N_INSNS (4), /* mulsi_const */
631 COSTS_N_INSNS (4), /* mulsi_const9 */
632 COSTS_N_INSNS (4), /* muldi */
633 COSTS_N_INSNS (20), /* divsi */
634 COSTS_N_INSNS (20), /* divdi */
635 COSTS_N_INSNS (3), /* fp */
636 COSTS_N_INSNS (3), /* dmul */
637 COSTS_N_INSNS (18), /* sdiv */
638 COSTS_N_INSNS (32), /* ddiv */
639 32, /* cache line size */
640 16, /* l1 cache */
641 512, /* l2 cache */
642 1, /* streams */
645 /* Instruction costs on PPC604e processors. */
646 static const
647 struct processor_costs ppc604e_cost = {
648 COSTS_N_INSNS (2), /* mulsi */
649 COSTS_N_INSNS (2), /* mulsi_const */
650 COSTS_N_INSNS (2), /* mulsi_const9 */
651 COSTS_N_INSNS (2), /* muldi */
652 COSTS_N_INSNS (20), /* divsi */
653 COSTS_N_INSNS (20), /* divdi */
654 COSTS_N_INSNS (3), /* fp */
655 COSTS_N_INSNS (3), /* dmul */
656 COSTS_N_INSNS (18), /* sdiv */
657 COSTS_N_INSNS (32), /* ddiv */
658 32, /* cache line size */
659 32, /* l1 cache */
660 1024, /* l2 cache */
661 1, /* streams */
664 /* Instruction costs on PPC620 processors. */
665 static const
666 struct processor_costs ppc620_cost = {
667 COSTS_N_INSNS (5), /* mulsi */
668 COSTS_N_INSNS (4), /* mulsi_const */
669 COSTS_N_INSNS (3), /* mulsi_const9 */
670 COSTS_N_INSNS (7), /* muldi */
671 COSTS_N_INSNS (21), /* divsi */
672 COSTS_N_INSNS (37), /* divdi */
673 COSTS_N_INSNS (3), /* fp */
674 COSTS_N_INSNS (3), /* dmul */
675 COSTS_N_INSNS (18), /* sdiv */
676 COSTS_N_INSNS (32), /* ddiv */
677 128, /* cache line size */
678 32, /* l1 cache */
679 1024, /* l2 cache */
680 1, /* streams */
683 /* Instruction costs on PPC630 processors. */
684 static const
685 struct processor_costs ppc630_cost = {
686 COSTS_N_INSNS (5), /* mulsi */
687 COSTS_N_INSNS (4), /* mulsi_const */
688 COSTS_N_INSNS (3), /* mulsi_const9 */
689 COSTS_N_INSNS (7), /* muldi */
690 COSTS_N_INSNS (21), /* divsi */
691 COSTS_N_INSNS (37), /* divdi */
692 COSTS_N_INSNS (3), /* fp */
693 COSTS_N_INSNS (3), /* dmul */
694 COSTS_N_INSNS (17), /* sdiv */
695 COSTS_N_INSNS (21), /* ddiv */
696 128, /* cache line size */
697 64, /* l1 cache */
698 1024, /* l2 cache */
699 1, /* streams */
702 /* Instruction costs on Cell processor. */
703 /* COSTS_N_INSNS (1) ~ one add. */
704 static const
705 struct processor_costs ppccell_cost = {
706 COSTS_N_INSNS (9/2)+2, /* mulsi */
707 COSTS_N_INSNS (6/2), /* mulsi_const */
708 COSTS_N_INSNS (6/2), /* mulsi_const9 */
709 COSTS_N_INSNS (15/2)+2, /* muldi */
710 COSTS_N_INSNS (38/2), /* divsi */
711 COSTS_N_INSNS (70/2), /* divdi */
712 COSTS_N_INSNS (10/2), /* fp */
713 COSTS_N_INSNS (10/2), /* dmul */
714 COSTS_N_INSNS (74/2), /* sdiv */
715 COSTS_N_INSNS (74/2), /* ddiv */
716 128, /* cache line size */
717 32, /* l1 cache */
718 512, /* l2 cache */
719 6, /* streams */
722 /* Instruction costs on PPC750 and PPC7400 processors. */
723 static const
724 struct processor_costs ppc750_cost = {
725 COSTS_N_INSNS (5), /* mulsi */
726 COSTS_N_INSNS (3), /* mulsi_const */
727 COSTS_N_INSNS (2), /* mulsi_const9 */
728 COSTS_N_INSNS (5), /* muldi */
729 COSTS_N_INSNS (17), /* divsi */
730 COSTS_N_INSNS (17), /* divdi */
731 COSTS_N_INSNS (3), /* fp */
732 COSTS_N_INSNS (3), /* dmul */
733 COSTS_N_INSNS (17), /* sdiv */
734 COSTS_N_INSNS (31), /* ddiv */
735 32, /* cache line size */
736 32, /* l1 cache */
737 512, /* l2 cache */
738 1, /* streams */
741 /* Instruction costs on PPC7450 processors. */
742 static const
743 struct processor_costs ppc7450_cost = {
744 COSTS_N_INSNS (4), /* mulsi */
745 COSTS_N_INSNS (3), /* mulsi_const */
746 COSTS_N_INSNS (3), /* mulsi_const9 */
747 COSTS_N_INSNS (4), /* muldi */
748 COSTS_N_INSNS (23), /* divsi */
749 COSTS_N_INSNS (23), /* divdi */
750 COSTS_N_INSNS (5), /* fp */
751 COSTS_N_INSNS (5), /* dmul */
752 COSTS_N_INSNS (21), /* sdiv */
753 COSTS_N_INSNS (35), /* ddiv */
754 32, /* cache line size */
755 32, /* l1 cache */
756 1024, /* l2 cache */
757 1, /* streams */
760 /* Instruction costs on PPC8540 processors. */
761 static const
762 struct processor_costs ppc8540_cost = {
763 COSTS_N_INSNS (4), /* mulsi */
764 COSTS_N_INSNS (4), /* mulsi_const */
765 COSTS_N_INSNS (4), /* mulsi_const9 */
766 COSTS_N_INSNS (4), /* muldi */
767 COSTS_N_INSNS (19), /* divsi */
768 COSTS_N_INSNS (19), /* divdi */
769 COSTS_N_INSNS (4), /* fp */
770 COSTS_N_INSNS (4), /* dmul */
771 COSTS_N_INSNS (29), /* sdiv */
772 COSTS_N_INSNS (29), /* ddiv */
773 32, /* cache line size */
774 32, /* l1 cache */
775 256, /* l2 cache */
776 1, /* prefetch streams /*/
779 /* Instruction costs on E300C2 and E300C3 cores. */
780 static const
781 struct processor_costs ppce300c2c3_cost = {
782 COSTS_N_INSNS (4), /* mulsi */
783 COSTS_N_INSNS (4), /* mulsi_const */
784 COSTS_N_INSNS (4), /* mulsi_const9 */
785 COSTS_N_INSNS (4), /* muldi */
786 COSTS_N_INSNS (19), /* divsi */
787 COSTS_N_INSNS (19), /* divdi */
788 COSTS_N_INSNS (3), /* fp */
789 COSTS_N_INSNS (4), /* dmul */
790 COSTS_N_INSNS (18), /* sdiv */
791 COSTS_N_INSNS (33), /* ddiv */
793 16, /* l1 cache */
794 16, /* l2 cache */
795 1, /* prefetch streams /*/
798 /* Instruction costs on PPCE500MC processors. */
799 static const
800 struct processor_costs ppce500mc_cost = {
801 COSTS_N_INSNS (4), /* mulsi */
802 COSTS_N_INSNS (4), /* mulsi_const */
803 COSTS_N_INSNS (4), /* mulsi_const9 */
804 COSTS_N_INSNS (4), /* muldi */
805 COSTS_N_INSNS (14), /* divsi */
806 COSTS_N_INSNS (14), /* divdi */
807 COSTS_N_INSNS (8), /* fp */
808 COSTS_N_INSNS (10), /* dmul */
809 COSTS_N_INSNS (36), /* sdiv */
810 COSTS_N_INSNS (66), /* ddiv */
811 64, /* cache line size */
812 32, /* l1 cache */
813 128, /* l2 cache */
814 1, /* prefetch streams /*/
817 /* Instruction costs on PPCE500MC64 processors. */
818 static const
819 struct processor_costs ppce500mc64_cost = {
820 COSTS_N_INSNS (4), /* mulsi */
821 COSTS_N_INSNS (4), /* mulsi_const */
822 COSTS_N_INSNS (4), /* mulsi_const9 */
823 COSTS_N_INSNS (4), /* muldi */
824 COSTS_N_INSNS (14), /* divsi */
825 COSTS_N_INSNS (14), /* divdi */
826 COSTS_N_INSNS (4), /* fp */
827 COSTS_N_INSNS (10), /* dmul */
828 COSTS_N_INSNS (36), /* sdiv */
829 COSTS_N_INSNS (66), /* ddiv */
830 64, /* cache line size */
831 32, /* l1 cache */
832 128, /* l2 cache */
833 1, /* prefetch streams /*/
836 /* Instruction costs on PPCE5500 processors. */
837 static const
838 struct processor_costs ppce5500_cost = {
839 COSTS_N_INSNS (5), /* mulsi */
840 COSTS_N_INSNS (5), /* mulsi_const */
841 COSTS_N_INSNS (4), /* mulsi_const9 */
842 COSTS_N_INSNS (5), /* muldi */
843 COSTS_N_INSNS (14), /* divsi */
844 COSTS_N_INSNS (14), /* divdi */
845 COSTS_N_INSNS (7), /* fp */
846 COSTS_N_INSNS (10), /* dmul */
847 COSTS_N_INSNS (36), /* sdiv */
848 COSTS_N_INSNS (66), /* ddiv */
849 64, /* cache line size */
850 32, /* l1 cache */
851 128, /* l2 cache */
852 1, /* prefetch streams /*/
855 /* Instruction costs on PPCE6500 processors. */
856 static const
857 struct processor_costs ppce6500_cost = {
858 COSTS_N_INSNS (5), /* mulsi */
859 COSTS_N_INSNS (5), /* mulsi_const */
860 COSTS_N_INSNS (4), /* mulsi_const9 */
861 COSTS_N_INSNS (5), /* muldi */
862 COSTS_N_INSNS (14), /* divsi */
863 COSTS_N_INSNS (14), /* divdi */
864 COSTS_N_INSNS (7), /* fp */
865 COSTS_N_INSNS (10), /* dmul */
866 COSTS_N_INSNS (36), /* sdiv */
867 COSTS_N_INSNS (66), /* ddiv */
868 64, /* cache line size */
869 32, /* l1 cache */
870 128, /* l2 cache */
871 1, /* prefetch streams /*/
874 /* Instruction costs on AppliedMicro Titan processors. */
875 static const
876 struct processor_costs titan_cost = {
877 COSTS_N_INSNS (5), /* mulsi */
878 COSTS_N_INSNS (5), /* mulsi_const */
879 COSTS_N_INSNS (5), /* mulsi_const9 */
880 COSTS_N_INSNS (5), /* muldi */
881 COSTS_N_INSNS (18), /* divsi */
882 COSTS_N_INSNS (18), /* divdi */
883 COSTS_N_INSNS (10), /* fp */
884 COSTS_N_INSNS (10), /* dmul */
885 COSTS_N_INSNS (46), /* sdiv */
886 COSTS_N_INSNS (72), /* ddiv */
887 32, /* cache line size */
888 32, /* l1 cache */
889 512, /* l2 cache */
890 1, /* prefetch streams /*/
893 /* Instruction costs on POWER4 and POWER5 processors. */
894 static const
895 struct processor_costs power4_cost = {
896 COSTS_N_INSNS (3), /* mulsi */
897 COSTS_N_INSNS (2), /* mulsi_const */
898 COSTS_N_INSNS (2), /* mulsi_const9 */
899 COSTS_N_INSNS (4), /* muldi */
900 COSTS_N_INSNS (18), /* divsi */
901 COSTS_N_INSNS (34), /* divdi */
902 COSTS_N_INSNS (3), /* fp */
903 COSTS_N_INSNS (3), /* dmul */
904 COSTS_N_INSNS (17), /* sdiv */
905 COSTS_N_INSNS (17), /* ddiv */
906 128, /* cache line size */
907 32, /* l1 cache */
908 1024, /* l2 cache */
909 8, /* prefetch streams /*/
912 /* Instruction costs on POWER6 processors. */
913 static const
914 struct processor_costs power6_cost = {
915 COSTS_N_INSNS (8), /* mulsi */
916 COSTS_N_INSNS (8), /* mulsi_const */
917 COSTS_N_INSNS (8), /* mulsi_const9 */
918 COSTS_N_INSNS (8), /* muldi */
919 COSTS_N_INSNS (22), /* divsi */
920 COSTS_N_INSNS (28), /* divdi */
921 COSTS_N_INSNS (3), /* fp */
922 COSTS_N_INSNS (3), /* dmul */
923 COSTS_N_INSNS (13), /* sdiv */
924 COSTS_N_INSNS (16), /* ddiv */
925 128, /* cache line size */
926 64, /* l1 cache */
927 2048, /* l2 cache */
928 16, /* prefetch streams */
931 /* Instruction costs on POWER7 processors. */
932 static const
933 struct processor_costs power7_cost = {
934 COSTS_N_INSNS (2), /* mulsi */
935 COSTS_N_INSNS (2), /* mulsi_const */
936 COSTS_N_INSNS (2), /* mulsi_const9 */
937 COSTS_N_INSNS (2), /* muldi */
938 COSTS_N_INSNS (18), /* divsi */
939 COSTS_N_INSNS (34), /* divdi */
940 COSTS_N_INSNS (3), /* fp */
941 COSTS_N_INSNS (3), /* dmul */
942 COSTS_N_INSNS (13), /* sdiv */
943 COSTS_N_INSNS (16), /* ddiv */
944 128, /* cache line size */
945 32, /* l1 cache */
946 256, /* l2 cache */
947 12, /* prefetch streams */
950 /* Instruction costs on POWER8 processors. */
951 static const
952 struct processor_costs power8_cost = {
953 COSTS_N_INSNS (3), /* mulsi */
954 COSTS_N_INSNS (3), /* mulsi_const */
955 COSTS_N_INSNS (3), /* mulsi_const9 */
956 COSTS_N_INSNS (3), /* muldi */
957 COSTS_N_INSNS (19), /* divsi */
958 COSTS_N_INSNS (35), /* divdi */
959 COSTS_N_INSNS (3), /* fp */
960 COSTS_N_INSNS (3), /* dmul */
961 COSTS_N_INSNS (14), /* sdiv */
962 COSTS_N_INSNS (17), /* ddiv */
963 128, /* cache line size */
964 32, /* l1 cache */
965 256, /* l2 cache */
966 12, /* prefetch streams */
969 /* Instruction costs on POWER A2 processors. */
970 static const
971 struct processor_costs ppca2_cost = {
972 COSTS_N_INSNS (16), /* mulsi */
973 COSTS_N_INSNS (16), /* mulsi_const */
974 COSTS_N_INSNS (16), /* mulsi_const9 */
975 COSTS_N_INSNS (16), /* muldi */
976 COSTS_N_INSNS (22), /* divsi */
977 COSTS_N_INSNS (28), /* divdi */
978 COSTS_N_INSNS (3), /* fp */
979 COSTS_N_INSNS (3), /* dmul */
980 COSTS_N_INSNS (59), /* sdiv */
981 COSTS_N_INSNS (72), /* ddiv */
983 16, /* l1 cache */
984 2048, /* l2 cache */
985 16, /* prefetch streams */
989 /* Table that classifies rs6000 builtin functions (pure, const, etc.). */
990 #undef RS6000_BUILTIN_1
991 #undef RS6000_BUILTIN_2
992 #undef RS6000_BUILTIN_3
993 #undef RS6000_BUILTIN_A
994 #undef RS6000_BUILTIN_D
995 #undef RS6000_BUILTIN_E
996 #undef RS6000_BUILTIN_H
997 #undef RS6000_BUILTIN_P
998 #undef RS6000_BUILTIN_Q
999 #undef RS6000_BUILTIN_S
1000 #undef RS6000_BUILTIN_X
1002 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE) \
1003 { NAME, ICODE, MASK, ATTR },
1005 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE) \
1006 { NAME, ICODE, MASK, ATTR },
1008 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE) \
1009 { NAME, ICODE, MASK, ATTR },
1011 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE) \
1012 { NAME, ICODE, MASK, ATTR },
1014 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE) \
1015 { NAME, ICODE, MASK, ATTR },
1017 #define RS6000_BUILTIN_E(ENUM, NAME, MASK, ATTR, ICODE) \
1018 { NAME, ICODE, MASK, ATTR },
1020 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE) \
1021 { NAME, ICODE, MASK, ATTR },
1023 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE) \
1024 { NAME, ICODE, MASK, ATTR },
1026 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE) \
1027 { NAME, ICODE, MASK, ATTR },
1029 #define RS6000_BUILTIN_S(ENUM, NAME, MASK, ATTR, ICODE) \
1030 { NAME, ICODE, MASK, ATTR },
1032 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE) \
1033 { NAME, ICODE, MASK, ATTR },
1035 struct rs6000_builtin_info_type {
1036 const char *name;
1037 const enum insn_code icode;
1038 const HOST_WIDE_INT mask;
1039 const unsigned attr;
1042 static const struct rs6000_builtin_info_type rs6000_builtin_info[] =
1044 #include "rs6000-builtin.def"
1047 #undef RS6000_BUILTIN_1
1048 #undef RS6000_BUILTIN_2
1049 #undef RS6000_BUILTIN_3
1050 #undef RS6000_BUILTIN_A
1051 #undef RS6000_BUILTIN_D
1052 #undef RS6000_BUILTIN_E
1053 #undef RS6000_BUILTIN_H
1054 #undef RS6000_BUILTIN_P
1055 #undef RS6000_BUILTIN_Q
1056 #undef RS6000_BUILTIN_S
1057 #undef RS6000_BUILTIN_X
1059 /* Support for -mveclibabi=<xxx> to control which vector library to use. */
1060 static tree (*rs6000_veclib_handler) (tree, tree, tree);
1063 static bool rs6000_debug_legitimate_address_p (enum machine_mode, rtx, bool);
1064 static bool spe_func_has_64bit_regs_p (void);
1065 static struct machine_function * rs6000_init_machine_status (void);
1066 static int rs6000_ra_ever_killed (void);
1067 static tree rs6000_handle_longcall_attribute (tree *, tree, tree, int, bool *);
1068 static tree rs6000_handle_altivec_attribute (tree *, tree, tree, int, bool *);
1069 static tree rs6000_handle_struct_attribute (tree *, tree, tree, int, bool *);
1070 static tree rs6000_builtin_vectorized_libmass (tree, tree, tree);
1071 static rtx rs6000_emit_set_long_const (rtx, HOST_WIDE_INT, HOST_WIDE_INT);
1072 static int rs6000_memory_move_cost (enum machine_mode, reg_class_t, bool);
1073 static bool rs6000_debug_rtx_costs (rtx, int, int, int, int *, bool);
1074 static int rs6000_debug_address_cost (rtx, enum machine_mode, addr_space_t,
1075 bool);
1076 static int rs6000_debug_adjust_cost (rtx, rtx, rtx, int);
1077 static bool is_microcoded_insn (rtx);
1078 static bool is_nonpipeline_insn (rtx);
1079 static bool is_cracked_insn (rtx);
1080 static bool is_load_insn (rtx, rtx *);
1081 static bool is_store_insn (rtx, rtx *);
1082 static bool set_to_load_agen (rtx,rtx);
1083 static bool insn_terminates_group_p (rtx , enum group_termination);
1084 static bool insn_must_be_first_in_group (rtx);
1085 static bool insn_must_be_last_in_group (rtx);
1086 static void altivec_init_builtins (void);
1087 static tree builtin_function_type (enum machine_mode, enum machine_mode,
1088 enum machine_mode, enum machine_mode,
1089 enum rs6000_builtins, const char *name);
1090 static void rs6000_common_init_builtins (void);
1091 static void paired_init_builtins (void);
1092 static rtx paired_expand_predicate_builtin (enum insn_code, tree, rtx);
1093 static void spe_init_builtins (void);
1094 static void htm_init_builtins (void);
1095 static rtx spe_expand_predicate_builtin (enum insn_code, tree, rtx);
1096 static rtx spe_expand_evsel_builtin (enum insn_code, tree, rtx);
1097 static int rs6000_emit_int_cmove (rtx, rtx, rtx, rtx);
1098 static rs6000_stack_t *rs6000_stack_info (void);
1099 static void is_altivec_return_reg (rtx, void *);
1100 int easy_vector_constant (rtx, enum machine_mode);
1101 static rtx rs6000_debug_legitimize_address (rtx, rtx, enum machine_mode);
1102 static rtx rs6000_legitimize_tls_address (rtx, enum tls_model);
1103 static int rs6000_tls_symbol_ref_1 (rtx *, void *);
1104 static int rs6000_get_some_local_dynamic_name_1 (rtx *, void *);
1105 static rtx rs6000_darwin64_record_arg (CUMULATIVE_ARGS *, const_tree,
1106 bool, bool);
1107 #if TARGET_MACHO
1108 static void macho_branch_islands (void);
1109 #endif
1110 static rtx rs6000_legitimize_reload_address (rtx, enum machine_mode, int, int,
1111 int, int *);
1112 static rtx rs6000_debug_legitimize_reload_address (rtx, enum machine_mode, int,
1113 int, int, int *);
1114 static bool rs6000_mode_dependent_address (const_rtx);
1115 static bool rs6000_debug_mode_dependent_address (const_rtx);
1116 static enum reg_class rs6000_secondary_reload_class (enum reg_class,
1117 enum machine_mode, rtx);
1118 static enum reg_class rs6000_debug_secondary_reload_class (enum reg_class,
1119 enum machine_mode,
1120 rtx);
1121 static enum reg_class rs6000_preferred_reload_class (rtx, enum reg_class);
1122 static enum reg_class rs6000_debug_preferred_reload_class (rtx,
1123 enum reg_class);
1124 static bool rs6000_secondary_memory_needed (enum reg_class, enum reg_class,
1125 enum machine_mode);
1126 static bool rs6000_debug_secondary_memory_needed (enum reg_class,
1127 enum reg_class,
1128 enum machine_mode);
1129 static bool rs6000_cannot_change_mode_class (enum machine_mode,
1130 enum machine_mode,
1131 enum reg_class);
1132 static bool rs6000_debug_cannot_change_mode_class (enum machine_mode,
1133 enum machine_mode,
1134 enum reg_class);
1135 static bool rs6000_save_toc_in_prologue_p (void);
1137 rtx (*rs6000_legitimize_reload_address_ptr) (rtx, enum machine_mode, int, int,
1138 int, int *)
1139 = rs6000_legitimize_reload_address;
1141 static bool (*rs6000_mode_dependent_address_ptr) (const_rtx)
1142 = rs6000_mode_dependent_address;
1144 enum reg_class (*rs6000_secondary_reload_class_ptr) (enum reg_class,
1145 enum machine_mode, rtx)
1146 = rs6000_secondary_reload_class;
1148 enum reg_class (*rs6000_preferred_reload_class_ptr) (rtx, enum reg_class)
1149 = rs6000_preferred_reload_class;
1151 bool (*rs6000_secondary_memory_needed_ptr) (enum reg_class, enum reg_class,
1152 enum machine_mode)
1153 = rs6000_secondary_memory_needed;
1155 bool (*rs6000_cannot_change_mode_class_ptr) (enum machine_mode,
1156 enum machine_mode,
1157 enum reg_class)
1158 = rs6000_cannot_change_mode_class;
1160 const int INSN_NOT_AVAILABLE = -1;
1162 static void rs6000_print_isa_options (FILE *, int, const char *,
1163 HOST_WIDE_INT);
1164 static void rs6000_print_builtin_options (FILE *, int, const char *,
1165 HOST_WIDE_INT);
1167 static enum rs6000_reg_type register_to_reg_type (rtx, bool *);
1168 static bool rs6000_secondary_reload_move (enum rs6000_reg_type,
1169 enum rs6000_reg_type,
1170 enum machine_mode,
1171 secondary_reload_info *,
1172 bool);
1174 /* Hash table stuff for keeping track of TOC entries. */
1176 struct GTY(()) toc_hash_struct
1178 /* `key' will satisfy CONSTANT_P; in fact, it will satisfy
1179 ASM_OUTPUT_SPECIAL_POOL_ENTRY_P. */
1180 rtx key;
1181 enum machine_mode key_mode;
1182 int labelno;
1185 static GTY ((param_is (struct toc_hash_struct))) htab_t toc_hash_table;
1187 /* Hash table to keep track of the argument types for builtin functions. */
1189 struct GTY(()) builtin_hash_struct
1191 tree type;
1192 enum machine_mode mode[4]; /* return value + 3 arguments. */
1193 unsigned char uns_p[4]; /* and whether the types are unsigned. */
1196 static GTY ((param_is (struct builtin_hash_struct))) htab_t builtin_hash_table;
1199 /* Default register names. */
1200 char rs6000_reg_names[][8] =
1202 "0", "1", "2", "3", "4", "5", "6", "7",
1203 "8", "9", "10", "11", "12", "13", "14", "15",
1204 "16", "17", "18", "19", "20", "21", "22", "23",
1205 "24", "25", "26", "27", "28", "29", "30", "31",
1206 "0", "1", "2", "3", "4", "5", "6", "7",
1207 "8", "9", "10", "11", "12", "13", "14", "15",
1208 "16", "17", "18", "19", "20", "21", "22", "23",
1209 "24", "25", "26", "27", "28", "29", "30", "31",
1210 "mq", "lr", "ctr","ap",
1211 "0", "1", "2", "3", "4", "5", "6", "7",
1212 "ca",
1213 /* AltiVec registers. */
1214 "0", "1", "2", "3", "4", "5", "6", "7",
1215 "8", "9", "10", "11", "12", "13", "14", "15",
1216 "16", "17", "18", "19", "20", "21", "22", "23",
1217 "24", "25", "26", "27", "28", "29", "30", "31",
1218 "vrsave", "vscr",
1219 /* SPE registers. */
1220 "spe_acc", "spefscr",
1221 /* Soft frame pointer. */
1222 "sfp",
1223 /* HTM SPR registers. */
1224 "tfhar", "tfiar", "texasr"
1227 #ifdef TARGET_REGNAMES
1228 static const char alt_reg_names[][8] =
1230 "%r0", "%r1", "%r2", "%r3", "%r4", "%r5", "%r6", "%r7",
1231 "%r8", "%r9", "%r10", "%r11", "%r12", "%r13", "%r14", "%r15",
1232 "%r16", "%r17", "%r18", "%r19", "%r20", "%r21", "%r22", "%r23",
1233 "%r24", "%r25", "%r26", "%r27", "%r28", "%r29", "%r30", "%r31",
1234 "%f0", "%f1", "%f2", "%f3", "%f4", "%f5", "%f6", "%f7",
1235 "%f8", "%f9", "%f10", "%f11", "%f12", "%f13", "%f14", "%f15",
1236 "%f16", "%f17", "%f18", "%f19", "%f20", "%f21", "%f22", "%f23",
1237 "%f24", "%f25", "%f26", "%f27", "%f28", "%f29", "%f30", "%f31",
1238 "mq", "lr", "ctr", "ap",
1239 "%cr0", "%cr1", "%cr2", "%cr3", "%cr4", "%cr5", "%cr6", "%cr7",
1240 "ca",
1241 /* AltiVec registers. */
1242 "%v0", "%v1", "%v2", "%v3", "%v4", "%v5", "%v6", "%v7",
1243 "%v8", "%v9", "%v10", "%v11", "%v12", "%v13", "%v14", "%v15",
1244 "%v16", "%v17", "%v18", "%v19", "%v20", "%v21", "%v22", "%v23",
1245 "%v24", "%v25", "%v26", "%v27", "%v28", "%v29", "%v30", "%v31",
1246 "vrsave", "vscr",
1247 /* SPE registers. */
1248 "spe_acc", "spefscr",
1249 /* Soft frame pointer. */
1250 "sfp",
1251 /* HTM SPR registers. */
1252 "tfhar", "tfiar", "texasr"
1254 #endif
1256 /* Table of valid machine attributes. */
1258 static const struct attribute_spec rs6000_attribute_table[] =
1260 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler,
1261 affects_type_identity } */
1262 { "altivec", 1, 1, false, true, false, rs6000_handle_altivec_attribute,
1263 false },
1264 { "longcall", 0, 0, false, true, true, rs6000_handle_longcall_attribute,
1265 false },
1266 { "shortcall", 0, 0, false, true, true, rs6000_handle_longcall_attribute,
1267 false },
1268 { "ms_struct", 0, 0, false, false, false, rs6000_handle_struct_attribute,
1269 false },
1270 { "gcc_struct", 0, 0, false, false, false, rs6000_handle_struct_attribute,
1271 false },
1272 #ifdef SUBTARGET_ATTRIBUTE_TABLE
1273 SUBTARGET_ATTRIBUTE_TABLE,
1274 #endif
1275 { NULL, 0, 0, false, false, false, NULL, false }
1278 #ifndef TARGET_PROFILE_KERNEL
1279 #define TARGET_PROFILE_KERNEL 0
1280 #endif
1282 /* The VRSAVE bitmask puts bit %v0 as the most significant bit. */
1283 #define ALTIVEC_REG_BIT(REGNO) (0x80000000 >> ((REGNO) - FIRST_ALTIVEC_REGNO))
1285 /* Initialize the GCC target structure. */
1286 #undef TARGET_ATTRIBUTE_TABLE
1287 #define TARGET_ATTRIBUTE_TABLE rs6000_attribute_table
1288 #undef TARGET_SET_DEFAULT_TYPE_ATTRIBUTES
1289 #define TARGET_SET_DEFAULT_TYPE_ATTRIBUTES rs6000_set_default_type_attributes
1290 #undef TARGET_ATTRIBUTE_TAKES_IDENTIFIER_P
1291 #define TARGET_ATTRIBUTE_TAKES_IDENTIFIER_P rs6000_attribute_takes_identifier_p
1293 #undef TARGET_ASM_ALIGNED_DI_OP
1294 #define TARGET_ASM_ALIGNED_DI_OP DOUBLE_INT_ASM_OP
1296 /* Default unaligned ops are only provided for ELF. Find the ops needed
1297 for non-ELF systems. */
1298 #ifndef OBJECT_FORMAT_ELF
1299 #if TARGET_XCOFF
1300 /* For XCOFF. rs6000_assemble_integer will handle unaligned DIs on
1301 64-bit targets. */
1302 #undef TARGET_ASM_UNALIGNED_HI_OP
1303 #define TARGET_ASM_UNALIGNED_HI_OP "\t.vbyte\t2,"
1304 #undef TARGET_ASM_UNALIGNED_SI_OP
1305 #define TARGET_ASM_UNALIGNED_SI_OP "\t.vbyte\t4,"
1306 #undef TARGET_ASM_UNALIGNED_DI_OP
1307 #define TARGET_ASM_UNALIGNED_DI_OP "\t.vbyte\t8,"
1308 #else
1309 /* For Darwin. */
1310 #undef TARGET_ASM_UNALIGNED_HI_OP
1311 #define TARGET_ASM_UNALIGNED_HI_OP "\t.short\t"
1312 #undef TARGET_ASM_UNALIGNED_SI_OP
1313 #define TARGET_ASM_UNALIGNED_SI_OP "\t.long\t"
1314 #undef TARGET_ASM_UNALIGNED_DI_OP
1315 #define TARGET_ASM_UNALIGNED_DI_OP "\t.quad\t"
1316 #undef TARGET_ASM_ALIGNED_DI_OP
1317 #define TARGET_ASM_ALIGNED_DI_OP "\t.quad\t"
1318 #endif
1319 #endif
1321 /* This hook deals with fixups for relocatable code and DI-mode objects
1322 in 64-bit code. */
1323 #undef TARGET_ASM_INTEGER
1324 #define TARGET_ASM_INTEGER rs6000_assemble_integer
1326 #if defined (HAVE_GAS_HIDDEN) && !TARGET_MACHO
1327 #undef TARGET_ASM_ASSEMBLE_VISIBILITY
1328 #define TARGET_ASM_ASSEMBLE_VISIBILITY rs6000_assemble_visibility
1329 #endif
1331 #undef TARGET_SET_UP_BY_PROLOGUE
1332 #define TARGET_SET_UP_BY_PROLOGUE rs6000_set_up_by_prologue
1334 #undef TARGET_HAVE_TLS
1335 #define TARGET_HAVE_TLS HAVE_AS_TLS
1337 #undef TARGET_CANNOT_FORCE_CONST_MEM
1338 #define TARGET_CANNOT_FORCE_CONST_MEM rs6000_cannot_force_const_mem
1340 #undef TARGET_DELEGITIMIZE_ADDRESS
1341 #define TARGET_DELEGITIMIZE_ADDRESS rs6000_delegitimize_address
1343 #undef TARGET_CONST_NOT_OK_FOR_DEBUG_P
1344 #define TARGET_CONST_NOT_OK_FOR_DEBUG_P rs6000_const_not_ok_for_debug_p
1346 #undef TARGET_ASM_FUNCTION_PROLOGUE
1347 #define TARGET_ASM_FUNCTION_PROLOGUE rs6000_output_function_prologue
1348 #undef TARGET_ASM_FUNCTION_EPILOGUE
1349 #define TARGET_ASM_FUNCTION_EPILOGUE rs6000_output_function_epilogue
1351 #undef TARGET_ASM_OUTPUT_ADDR_CONST_EXTRA
1352 #define TARGET_ASM_OUTPUT_ADDR_CONST_EXTRA rs6000_output_addr_const_extra
1354 #undef TARGET_LEGITIMIZE_ADDRESS
1355 #define TARGET_LEGITIMIZE_ADDRESS rs6000_legitimize_address
1357 #undef TARGET_SCHED_VARIABLE_ISSUE
1358 #define TARGET_SCHED_VARIABLE_ISSUE rs6000_variable_issue
1360 #undef TARGET_SCHED_ISSUE_RATE
1361 #define TARGET_SCHED_ISSUE_RATE rs6000_issue_rate
1362 #undef TARGET_SCHED_ADJUST_COST
1363 #define TARGET_SCHED_ADJUST_COST rs6000_adjust_cost
1364 #undef TARGET_SCHED_ADJUST_PRIORITY
1365 #define TARGET_SCHED_ADJUST_PRIORITY rs6000_adjust_priority
1366 #undef TARGET_SCHED_IS_COSTLY_DEPENDENCE
1367 #define TARGET_SCHED_IS_COSTLY_DEPENDENCE rs6000_is_costly_dependence
1368 #undef TARGET_SCHED_INIT
1369 #define TARGET_SCHED_INIT rs6000_sched_init
1370 #undef TARGET_SCHED_FINISH
1371 #define TARGET_SCHED_FINISH rs6000_sched_finish
1372 #undef TARGET_SCHED_REORDER
1373 #define TARGET_SCHED_REORDER rs6000_sched_reorder
1374 #undef TARGET_SCHED_REORDER2
1375 #define TARGET_SCHED_REORDER2 rs6000_sched_reorder2
1377 #undef TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD
1378 #define TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD rs6000_use_sched_lookahead
1380 #undef TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD
1381 #define TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD rs6000_use_sched_lookahead_guard
1383 #undef TARGET_SCHED_ALLOC_SCHED_CONTEXT
1384 #define TARGET_SCHED_ALLOC_SCHED_CONTEXT rs6000_alloc_sched_context
1385 #undef TARGET_SCHED_INIT_SCHED_CONTEXT
1386 #define TARGET_SCHED_INIT_SCHED_CONTEXT rs6000_init_sched_context
1387 #undef TARGET_SCHED_SET_SCHED_CONTEXT
1388 #define TARGET_SCHED_SET_SCHED_CONTEXT rs6000_set_sched_context
1389 #undef TARGET_SCHED_FREE_SCHED_CONTEXT
1390 #define TARGET_SCHED_FREE_SCHED_CONTEXT rs6000_free_sched_context
1392 #undef TARGET_VECTORIZE_BUILTIN_MASK_FOR_LOAD
1393 #define TARGET_VECTORIZE_BUILTIN_MASK_FOR_LOAD rs6000_builtin_mask_for_load
1394 #undef TARGET_VECTORIZE_SUPPORT_VECTOR_MISALIGNMENT
1395 #define TARGET_VECTORIZE_SUPPORT_VECTOR_MISALIGNMENT \
1396 rs6000_builtin_support_vector_misalignment
1397 #undef TARGET_VECTORIZE_VECTOR_ALIGNMENT_REACHABLE
1398 #define TARGET_VECTORIZE_VECTOR_ALIGNMENT_REACHABLE rs6000_vector_alignment_reachable
1399 #undef TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST
1400 #define TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST \
1401 rs6000_builtin_vectorization_cost
1402 #undef TARGET_VECTORIZE_PREFERRED_SIMD_MODE
1403 #define TARGET_VECTORIZE_PREFERRED_SIMD_MODE \
1404 rs6000_preferred_simd_mode
1405 #undef TARGET_VECTORIZE_INIT_COST
1406 #define TARGET_VECTORIZE_INIT_COST rs6000_init_cost
1407 #undef TARGET_VECTORIZE_ADD_STMT_COST
1408 #define TARGET_VECTORIZE_ADD_STMT_COST rs6000_add_stmt_cost
1409 #undef TARGET_VECTORIZE_FINISH_COST
1410 #define TARGET_VECTORIZE_FINISH_COST rs6000_finish_cost
1411 #undef TARGET_VECTORIZE_DESTROY_COST_DATA
1412 #define TARGET_VECTORIZE_DESTROY_COST_DATA rs6000_destroy_cost_data
1414 #undef TARGET_INIT_BUILTINS
1415 #define TARGET_INIT_BUILTINS rs6000_init_builtins
1416 #undef TARGET_BUILTIN_DECL
1417 #define TARGET_BUILTIN_DECL rs6000_builtin_decl
1419 #undef TARGET_EXPAND_BUILTIN
1420 #define TARGET_EXPAND_BUILTIN rs6000_expand_builtin
1422 #undef TARGET_MANGLE_TYPE
1423 #define TARGET_MANGLE_TYPE rs6000_mangle_type
1425 #undef TARGET_INIT_LIBFUNCS
1426 #define TARGET_INIT_LIBFUNCS rs6000_init_libfuncs
1428 #if TARGET_MACHO
1429 #undef TARGET_BINDS_LOCAL_P
1430 #define TARGET_BINDS_LOCAL_P darwin_binds_local_p
1431 #endif
1433 #undef TARGET_MS_BITFIELD_LAYOUT_P
1434 #define TARGET_MS_BITFIELD_LAYOUT_P rs6000_ms_bitfield_layout_p
1436 #undef TARGET_ASM_OUTPUT_MI_THUNK
1437 #define TARGET_ASM_OUTPUT_MI_THUNK rs6000_output_mi_thunk
1439 #undef TARGET_ASM_CAN_OUTPUT_MI_THUNK
1440 #define TARGET_ASM_CAN_OUTPUT_MI_THUNK hook_bool_const_tree_hwi_hwi_const_tree_true
1442 #undef TARGET_FUNCTION_OK_FOR_SIBCALL
1443 #define TARGET_FUNCTION_OK_FOR_SIBCALL rs6000_function_ok_for_sibcall
1445 #undef TARGET_REGISTER_MOVE_COST
1446 #define TARGET_REGISTER_MOVE_COST rs6000_register_move_cost
1447 #undef TARGET_MEMORY_MOVE_COST
1448 #define TARGET_MEMORY_MOVE_COST rs6000_memory_move_cost
1449 #undef TARGET_RTX_COSTS
1450 #define TARGET_RTX_COSTS rs6000_rtx_costs
1451 #undef TARGET_ADDRESS_COST
1452 #define TARGET_ADDRESS_COST hook_int_rtx_mode_as_bool_0
1454 #undef TARGET_DWARF_REGISTER_SPAN
1455 #define TARGET_DWARF_REGISTER_SPAN rs6000_dwarf_register_span
1457 #undef TARGET_INIT_DWARF_REG_SIZES_EXTRA
1458 #define TARGET_INIT_DWARF_REG_SIZES_EXTRA rs6000_init_dwarf_reg_sizes_extra
1460 #undef TARGET_MEMBER_TYPE_FORCES_BLK
1461 #define TARGET_MEMBER_TYPE_FORCES_BLK rs6000_member_type_forces_blk
1463 /* On rs6000, function arguments are promoted, as are function return
1464 values. */
1465 #undef TARGET_PROMOTE_FUNCTION_MODE
1466 #define TARGET_PROMOTE_FUNCTION_MODE default_promote_function_mode_always_promote
1468 #undef TARGET_RETURN_IN_MEMORY
1469 #define TARGET_RETURN_IN_MEMORY rs6000_return_in_memory
1471 #undef TARGET_RETURN_IN_MSB
1472 #define TARGET_RETURN_IN_MSB rs6000_return_in_msb
1474 #undef TARGET_SETUP_INCOMING_VARARGS
1475 #define TARGET_SETUP_INCOMING_VARARGS setup_incoming_varargs
1477 /* Always strict argument naming on rs6000. */
1478 #undef TARGET_STRICT_ARGUMENT_NAMING
1479 #define TARGET_STRICT_ARGUMENT_NAMING hook_bool_CUMULATIVE_ARGS_true
1480 #undef TARGET_PRETEND_OUTGOING_VARARGS_NAMED
1481 #define TARGET_PRETEND_OUTGOING_VARARGS_NAMED hook_bool_CUMULATIVE_ARGS_true
1482 #undef TARGET_SPLIT_COMPLEX_ARG
1483 #define TARGET_SPLIT_COMPLEX_ARG hook_bool_const_tree_true
1484 #undef TARGET_MUST_PASS_IN_STACK
1485 #define TARGET_MUST_PASS_IN_STACK rs6000_must_pass_in_stack
1486 #undef TARGET_PASS_BY_REFERENCE
1487 #define TARGET_PASS_BY_REFERENCE rs6000_pass_by_reference
1488 #undef TARGET_ARG_PARTIAL_BYTES
1489 #define TARGET_ARG_PARTIAL_BYTES rs6000_arg_partial_bytes
1490 #undef TARGET_FUNCTION_ARG_ADVANCE
1491 #define TARGET_FUNCTION_ARG_ADVANCE rs6000_function_arg_advance
1492 #undef TARGET_FUNCTION_ARG
1493 #define TARGET_FUNCTION_ARG rs6000_function_arg
1494 #undef TARGET_FUNCTION_ARG_BOUNDARY
1495 #define TARGET_FUNCTION_ARG_BOUNDARY rs6000_function_arg_boundary
1497 #undef TARGET_BUILD_BUILTIN_VA_LIST
1498 #define TARGET_BUILD_BUILTIN_VA_LIST rs6000_build_builtin_va_list
1500 #undef TARGET_EXPAND_BUILTIN_VA_START
1501 #define TARGET_EXPAND_BUILTIN_VA_START rs6000_va_start
1503 #undef TARGET_GIMPLIFY_VA_ARG_EXPR
1504 #define TARGET_GIMPLIFY_VA_ARG_EXPR rs6000_gimplify_va_arg
1506 #undef TARGET_EH_RETURN_FILTER_MODE
1507 #define TARGET_EH_RETURN_FILTER_MODE rs6000_eh_return_filter_mode
1509 #undef TARGET_SCALAR_MODE_SUPPORTED_P
1510 #define TARGET_SCALAR_MODE_SUPPORTED_P rs6000_scalar_mode_supported_p
1512 #undef TARGET_VECTOR_MODE_SUPPORTED_P
1513 #define TARGET_VECTOR_MODE_SUPPORTED_P rs6000_vector_mode_supported_p
1515 #undef TARGET_INVALID_ARG_FOR_UNPROTOTYPED_FN
1516 #define TARGET_INVALID_ARG_FOR_UNPROTOTYPED_FN invalid_arg_for_unprototyped_fn
1518 #undef TARGET_ASM_LOOP_ALIGN_MAX_SKIP
1519 #define TARGET_ASM_LOOP_ALIGN_MAX_SKIP rs6000_loop_align_max_skip
1521 #undef TARGET_OPTION_OVERRIDE
1522 #define TARGET_OPTION_OVERRIDE rs6000_option_override
1524 #undef TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION
1525 #define TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION \
1526 rs6000_builtin_vectorized_function
1528 #if !TARGET_MACHO
1529 #undef TARGET_STACK_PROTECT_FAIL
1530 #define TARGET_STACK_PROTECT_FAIL rs6000_stack_protect_fail
1531 #endif
1533 /* MPC604EUM 3.5.2 Weak Consistency between Multiple Processors
1534 The PowerPC architecture requires only weak consistency among
1535 processors--that is, memory accesses between processors need not be
1536 sequentially consistent and memory accesses among processors can occur
1537 in any order. The ability to order memory accesses weakly provides
1538 opportunities for more efficient use of the system bus. Unless a
1539 dependency exists, the 604e allows read operations to precede store
1540 operations. */
1541 #undef TARGET_RELAXED_ORDERING
1542 #define TARGET_RELAXED_ORDERING true
1544 #ifdef HAVE_AS_TLS
1545 #undef TARGET_ASM_OUTPUT_DWARF_DTPREL
1546 #define TARGET_ASM_OUTPUT_DWARF_DTPREL rs6000_output_dwarf_dtprel
1547 #endif
1549 /* Use a 32-bit anchor range. This leads to sequences like:
1551 addis tmp,anchor,high
1552 add dest,tmp,low
1554 where tmp itself acts as an anchor, and can be shared between
1555 accesses to the same 64k page. */
1556 #undef TARGET_MIN_ANCHOR_OFFSET
1557 #define TARGET_MIN_ANCHOR_OFFSET -0x7fffffff - 1
1558 #undef TARGET_MAX_ANCHOR_OFFSET
1559 #define TARGET_MAX_ANCHOR_OFFSET 0x7fffffff
1560 #undef TARGET_USE_BLOCKS_FOR_CONSTANT_P
1561 #define TARGET_USE_BLOCKS_FOR_CONSTANT_P rs6000_use_blocks_for_constant_p
1562 #undef TARGET_USE_BLOCKS_FOR_DECL_P
1563 #define TARGET_USE_BLOCKS_FOR_DECL_P rs6000_use_blocks_for_decl_p
1565 #undef TARGET_BUILTIN_RECIPROCAL
1566 #define TARGET_BUILTIN_RECIPROCAL rs6000_builtin_reciprocal
1568 #undef TARGET_EXPAND_TO_RTL_HOOK
1569 #define TARGET_EXPAND_TO_RTL_HOOK rs6000_alloc_sdmode_stack_slot
1571 #undef TARGET_INSTANTIATE_DECLS
1572 #define TARGET_INSTANTIATE_DECLS rs6000_instantiate_decls
1574 #undef TARGET_SECONDARY_RELOAD
1575 #define TARGET_SECONDARY_RELOAD rs6000_secondary_reload
1577 #undef TARGET_LEGITIMATE_ADDRESS_P
1578 #define TARGET_LEGITIMATE_ADDRESS_P rs6000_legitimate_address_p
1580 #undef TARGET_MODE_DEPENDENT_ADDRESS_P
1581 #define TARGET_MODE_DEPENDENT_ADDRESS_P rs6000_mode_dependent_address_p
1583 #undef TARGET_LRA_P
1584 #define TARGET_LRA_P rs6000_lra_p
1586 #undef TARGET_CAN_ELIMINATE
1587 #define TARGET_CAN_ELIMINATE rs6000_can_eliminate
1589 #undef TARGET_CONDITIONAL_REGISTER_USAGE
1590 #define TARGET_CONDITIONAL_REGISTER_USAGE rs6000_conditional_register_usage
1592 #undef TARGET_TRAMPOLINE_INIT
1593 #define TARGET_TRAMPOLINE_INIT rs6000_trampoline_init
1595 #undef TARGET_FUNCTION_VALUE
1596 #define TARGET_FUNCTION_VALUE rs6000_function_value
1598 #undef TARGET_OPTION_VALID_ATTRIBUTE_P
1599 #define TARGET_OPTION_VALID_ATTRIBUTE_P rs6000_valid_attribute_p
1601 #undef TARGET_OPTION_SAVE
1602 #define TARGET_OPTION_SAVE rs6000_function_specific_save
1604 #undef TARGET_OPTION_RESTORE
1605 #define TARGET_OPTION_RESTORE rs6000_function_specific_restore
1607 #undef TARGET_OPTION_PRINT
1608 #define TARGET_OPTION_PRINT rs6000_function_specific_print
1610 #undef TARGET_CAN_INLINE_P
1611 #define TARGET_CAN_INLINE_P rs6000_can_inline_p
1613 #undef TARGET_SET_CURRENT_FUNCTION
1614 #define TARGET_SET_CURRENT_FUNCTION rs6000_set_current_function
1616 #undef TARGET_LEGITIMATE_CONSTANT_P
1617 #define TARGET_LEGITIMATE_CONSTANT_P rs6000_legitimate_constant_p
1619 #undef TARGET_VECTORIZE_VEC_PERM_CONST_OK
1620 #define TARGET_VECTORIZE_VEC_PERM_CONST_OK rs6000_vectorize_vec_perm_const_ok
1622 #undef TARGET_CAN_USE_DOLOOP_P
1623 #define TARGET_CAN_USE_DOLOOP_P can_use_doloop_if_innermost
1626 /* Processor table. */
1627 struct rs6000_ptt
1629 const char *const name; /* Canonical processor name. */
1630 const enum processor_type processor; /* Processor type enum value. */
1631 const HOST_WIDE_INT target_enable; /* Target flags to enable. */
1634 static struct rs6000_ptt const processor_target_table[] =
1636 #define RS6000_CPU(NAME, CPU, FLAGS) { NAME, CPU, FLAGS },
1637 #include "rs6000-cpus.def"
1638 #undef RS6000_CPU
1641 /* Look up a processor name for -mcpu=xxx and -mtune=xxx. Return -1 if the
1642 name is invalid. */
1644 static int
1645 rs6000_cpu_name_lookup (const char *name)
1647 size_t i;
1649 if (name != NULL)
1651 for (i = 0; i < ARRAY_SIZE (processor_target_table); i++)
1652 if (! strcmp (name, processor_target_table[i].name))
1653 return (int)i;
1656 return -1;
1660 /* Return number of consecutive hard regs needed starting at reg REGNO
1661 to hold something of mode MODE.
1662 This is ordinarily the length in words of a value of mode MODE
1663 but can be less for certain modes in special long registers.
1665 For the SPE, GPRs are 64 bits but only 32 bits are visible in
1666 scalar instructions. The upper 32 bits are only available to the
1667 SIMD instructions.
1669 POWER and PowerPC GPRs hold 32 bits worth;
1670 PowerPC64 GPRs and FPRs point register holds 64 bits worth. */
1672 static int
1673 rs6000_hard_regno_nregs_internal (int regno, enum machine_mode mode)
1675 unsigned HOST_WIDE_INT reg_size;
1677 /* TF/TD modes are special in that they always take 2 registers. */
1678 if (FP_REGNO_P (regno))
1679 reg_size = ((VECTOR_MEM_VSX_P (mode) && mode != TDmode && mode != TFmode)
1680 ? UNITS_PER_VSX_WORD
1681 : UNITS_PER_FP_WORD);
1683 else if (SPE_SIMD_REGNO_P (regno) && TARGET_SPE && SPE_VECTOR_MODE (mode))
1684 reg_size = UNITS_PER_SPE_WORD;
1686 else if (ALTIVEC_REGNO_P (regno))
1687 reg_size = UNITS_PER_ALTIVEC_WORD;
1689 /* The value returned for SCmode in the E500 double case is 2 for
1690 ABI compatibility; storing an SCmode value in a single register
1691 would require function_arg and rs6000_spe_function_arg to handle
1692 SCmode so as to pass the value correctly in a pair of
1693 registers. */
1694 else if (TARGET_E500_DOUBLE && FLOAT_MODE_P (mode) && mode != SCmode
1695 && !DECIMAL_FLOAT_MODE_P (mode))
1696 reg_size = UNITS_PER_FP_WORD;
1698 else
1699 reg_size = UNITS_PER_WORD;
1701 return (GET_MODE_SIZE (mode) + reg_size - 1) / reg_size;
1704 /* Value is 1 if hard register REGNO can hold a value of machine-mode
1705 MODE. */
1706 static int
1707 rs6000_hard_regno_mode_ok (int regno, enum machine_mode mode)
1709 int last_regno = regno + rs6000_hard_regno_nregs[mode][regno] - 1;
1711 /* PTImode can only go in GPRs. Quad word memory operations require even/odd
1712 register combinations, and use PTImode where we need to deal with quad
1713 word memory operations. Don't allow quad words in the argument or frame
1714 pointer registers, just registers 0..31. */
1715 if (mode == PTImode)
1716 return (IN_RANGE (regno, FIRST_GPR_REGNO, LAST_GPR_REGNO)
1717 && IN_RANGE (last_regno, FIRST_GPR_REGNO, LAST_GPR_REGNO)
1718 && ((regno & 1) == 0));
1720 /* VSX registers that overlap the FPR registers are larger than for non-VSX
1721 implementations. Don't allow an item to be split between a FP register
1722 and an Altivec register. Allow TImode in all VSX registers if the user
1723 asked for it. */
1724 if (TARGET_VSX && VSX_REGNO_P (regno)
1725 && (VECTOR_MEM_VSX_P (mode)
1726 || (TARGET_VSX_SCALAR_FLOAT && mode == SFmode)
1727 || (TARGET_VSX_SCALAR_DOUBLE && (mode == DFmode || mode == DImode))
1728 || (TARGET_VSX_TIMODE && mode == TImode)
1729 || (TARGET_VADDUQM && mode == V1TImode)))
1731 if (FP_REGNO_P (regno))
1732 return FP_REGNO_P (last_regno);
1734 if (ALTIVEC_REGNO_P (regno))
1736 if (mode == SFmode && !TARGET_UPPER_REGS_SF)
1737 return 0;
1739 if ((mode == DFmode || mode == DImode) && !TARGET_UPPER_REGS_DF)
1740 return 0;
1742 return ALTIVEC_REGNO_P (last_regno);
1746 /* The GPRs can hold any mode, but values bigger than one register
1747 cannot go past R31. */
1748 if (INT_REGNO_P (regno))
1749 return INT_REGNO_P (last_regno);
1751 /* The float registers (except for VSX vector modes) can only hold floating
1752 modes and DImode. */
1753 if (FP_REGNO_P (regno))
1755 if (SCALAR_FLOAT_MODE_P (mode)
1756 && (mode != TDmode || (regno % 2) == 0)
1757 && FP_REGNO_P (last_regno))
1758 return 1;
1760 if (GET_MODE_CLASS (mode) == MODE_INT
1761 && GET_MODE_SIZE (mode) == UNITS_PER_FP_WORD)
1762 return 1;
1764 if (PAIRED_SIMD_REGNO_P (regno) && TARGET_PAIRED_FLOAT
1765 && PAIRED_VECTOR_MODE (mode))
1766 return 1;
1768 return 0;
1771 /* The CR register can only hold CC modes. */
1772 if (CR_REGNO_P (regno))
1773 return GET_MODE_CLASS (mode) == MODE_CC;
1775 if (CA_REGNO_P (regno))
1776 return mode == BImode;
1778 /* AltiVec only in AldyVec registers. */
1779 if (ALTIVEC_REGNO_P (regno))
1780 return (VECTOR_MEM_ALTIVEC_OR_VSX_P (mode)
1781 || mode == V1TImode);
1783 /* ...but GPRs can hold SIMD data on the SPE in one register. */
1784 if (SPE_SIMD_REGNO_P (regno) && TARGET_SPE && SPE_VECTOR_MODE (mode))
1785 return 1;
1787 /* We cannot put non-VSX TImode or PTImode anywhere except general register
1788 and it must be able to fit within the register set. */
1790 return GET_MODE_SIZE (mode) <= UNITS_PER_WORD;
1793 /* Print interesting facts about registers. */
1794 static void
1795 rs6000_debug_reg_print (int first_regno, int last_regno, const char *reg_name)
1797 int r, m;
1799 for (r = first_regno; r <= last_regno; ++r)
1801 const char *comma = "";
1802 int len;
1804 if (first_regno == last_regno)
1805 fprintf (stderr, "%s:\t", reg_name);
1806 else
1807 fprintf (stderr, "%s%d:\t", reg_name, r - first_regno);
1809 len = 8;
1810 for (m = 0; m < NUM_MACHINE_MODES; ++m)
1811 if (rs6000_hard_regno_mode_ok_p[m][r] && rs6000_hard_regno_nregs[m][r])
1813 if (len > 70)
1815 fprintf (stderr, ",\n\t");
1816 len = 8;
1817 comma = "";
1820 if (rs6000_hard_regno_nregs[m][r] > 1)
1821 len += fprintf (stderr, "%s%s/%d", comma, GET_MODE_NAME (m),
1822 rs6000_hard_regno_nregs[m][r]);
1823 else
1824 len += fprintf (stderr, "%s%s", comma, GET_MODE_NAME (m));
1826 comma = ", ";
1829 if (call_used_regs[r])
1831 if (len > 70)
1833 fprintf (stderr, ",\n\t");
1834 len = 8;
1835 comma = "";
1838 len += fprintf (stderr, "%s%s", comma, "call-used");
1839 comma = ", ";
1842 if (fixed_regs[r])
1844 if (len > 70)
1846 fprintf (stderr, ",\n\t");
1847 len = 8;
1848 comma = "";
1851 len += fprintf (stderr, "%s%s", comma, "fixed");
1852 comma = ", ";
1855 if (len > 70)
1857 fprintf (stderr, ",\n\t");
1858 comma = "";
1861 len += fprintf (stderr, "%sreg-class = %s", comma,
1862 reg_class_names[(int)rs6000_regno_regclass[r]]);
1863 comma = ", ";
1865 if (len > 70)
1867 fprintf (stderr, ",\n\t");
1868 comma = "";
1871 fprintf (stderr, "%sregno = %d\n", comma, r);
1875 static const char *
1876 rs6000_debug_vector_unit (enum rs6000_vector v)
1878 const char *ret;
1880 switch (v)
1882 case VECTOR_NONE: ret = "none"; break;
1883 case VECTOR_ALTIVEC: ret = "altivec"; break;
1884 case VECTOR_VSX: ret = "vsx"; break;
1885 case VECTOR_P8_VECTOR: ret = "p8_vector"; break;
1886 case VECTOR_PAIRED: ret = "paired"; break;
1887 case VECTOR_SPE: ret = "spe"; break;
1888 case VECTOR_OTHER: ret = "other"; break;
1889 default: ret = "unknown"; break;
1892 return ret;
1895 /* Print the address masks in a human readble fashion. */
1896 DEBUG_FUNCTION void
1897 rs6000_debug_print_mode (ssize_t m)
1899 ssize_t rc;
1901 fprintf (stderr, "Mode: %-5s", GET_MODE_NAME (m));
1902 for (rc = 0; rc < N_RELOAD_REG; rc++)
1904 addr_mask_type mask = reg_addr[m].addr_mask[rc];
1905 fprintf (stderr,
1906 " %s: %c%c%c%c%c%c",
1907 reload_reg_map[rc].name,
1908 (mask & RELOAD_REG_VALID) != 0 ? 'v' : ' ',
1909 (mask & RELOAD_REG_MULTIPLE) != 0 ? 'm' : ' ',
1910 (mask & RELOAD_REG_INDEXED) != 0 ? 'i' : ' ',
1911 (mask & RELOAD_REG_OFFSET) != 0 ? 'o' : ' ',
1912 (mask & RELOAD_REG_PRE_INCDEC) != 0 ? '+' : ' ',
1913 (mask & RELOAD_REG_PRE_MODIFY) != 0 ? '+' : ' ');
1916 if (rs6000_vector_unit[m] != VECTOR_NONE
1917 || rs6000_vector_mem[m] != VECTOR_NONE
1918 || (reg_addr[m].reload_store != CODE_FOR_nothing)
1919 || (reg_addr[m].reload_load != CODE_FOR_nothing))
1921 fprintf (stderr,
1922 " Vector-arith=%-10s Vector-mem=%-10s Reload=%c%c",
1923 rs6000_debug_vector_unit (rs6000_vector_unit[m]),
1924 rs6000_debug_vector_unit (rs6000_vector_mem[m]),
1925 (reg_addr[m].reload_store != CODE_FOR_nothing) ? 's' : '*',
1926 (reg_addr[m].reload_load != CODE_FOR_nothing) ? 'l' : '*');
1929 fputs ("\n", stderr);
1932 #define DEBUG_FMT_ID "%-32s= "
1933 #define DEBUG_FMT_D DEBUG_FMT_ID "%d\n"
1934 #define DEBUG_FMT_WX DEBUG_FMT_ID "%#.12" HOST_WIDE_INT_PRINT "x: "
1935 #define DEBUG_FMT_S DEBUG_FMT_ID "%s\n"
1937 /* Print various interesting information with -mdebug=reg. */
1938 static void
1939 rs6000_debug_reg_global (void)
1941 static const char *const tf[2] = { "false", "true" };
1942 const char *nl = (const char *)0;
1943 int m;
1944 size_t m1, m2, v;
1945 char costly_num[20];
1946 char nop_num[20];
1947 char flags_buffer[40];
1948 const char *costly_str;
1949 const char *nop_str;
1950 const char *trace_str;
1951 const char *abi_str;
1952 const char *cmodel_str;
1953 struct cl_target_option cl_opts;
1955 /* Modes we want tieable information on. */
1956 static const enum machine_mode print_tieable_modes[] = {
1957 QImode,
1958 HImode,
1959 SImode,
1960 DImode,
1961 TImode,
1962 PTImode,
1963 SFmode,
1964 DFmode,
1965 TFmode,
1966 SDmode,
1967 DDmode,
1968 TDmode,
1969 V8QImode,
1970 V4HImode,
1971 V2SImode,
1972 V16QImode,
1973 V8HImode,
1974 V4SImode,
1975 V2DImode,
1976 V1TImode,
1977 V32QImode,
1978 V16HImode,
1979 V8SImode,
1980 V4DImode,
1981 V2TImode,
1982 V2SFmode,
1983 V4SFmode,
1984 V2DFmode,
1985 V8SFmode,
1986 V4DFmode,
1987 CCmode,
1988 CCUNSmode,
1989 CCEQmode,
1992 /* Virtual regs we are interested in. */
1993 const static struct {
1994 int regno; /* register number. */
1995 const char *name; /* register name. */
1996 } virtual_regs[] = {
1997 { STACK_POINTER_REGNUM, "stack pointer:" },
1998 { TOC_REGNUM, "toc: " },
1999 { STATIC_CHAIN_REGNUM, "static chain: " },
2000 { RS6000_PIC_OFFSET_TABLE_REGNUM, "pic offset: " },
2001 { HARD_FRAME_POINTER_REGNUM, "hard frame: " },
2002 { ARG_POINTER_REGNUM, "arg pointer: " },
2003 { FRAME_POINTER_REGNUM, "frame pointer:" },
2004 { FIRST_PSEUDO_REGISTER, "first pseudo: " },
2005 { FIRST_VIRTUAL_REGISTER, "first virtual:" },
2006 { VIRTUAL_INCOMING_ARGS_REGNUM, "incoming_args:" },
2007 { VIRTUAL_STACK_VARS_REGNUM, "stack_vars: " },
2008 { VIRTUAL_STACK_DYNAMIC_REGNUM, "stack_dynamic:" },
2009 { VIRTUAL_OUTGOING_ARGS_REGNUM, "outgoing_args:" },
2010 { VIRTUAL_CFA_REGNUM, "cfa (frame): " },
2011 { VIRTUAL_PREFERRED_STACK_BOUNDARY_REGNUM, "stack boundry:" },
2012 { LAST_VIRTUAL_REGISTER, "last virtual: " },
2015 fputs ("\nHard register information:\n", stderr);
2016 rs6000_debug_reg_print (FIRST_GPR_REGNO, LAST_GPR_REGNO, "gr");
2017 rs6000_debug_reg_print (FIRST_FPR_REGNO, LAST_FPR_REGNO, "fp");
2018 rs6000_debug_reg_print (FIRST_ALTIVEC_REGNO,
2019 LAST_ALTIVEC_REGNO,
2020 "vs");
2021 rs6000_debug_reg_print (LR_REGNO, LR_REGNO, "lr");
2022 rs6000_debug_reg_print (CTR_REGNO, CTR_REGNO, "ctr");
2023 rs6000_debug_reg_print (CR0_REGNO, CR7_REGNO, "cr");
2024 rs6000_debug_reg_print (CA_REGNO, CA_REGNO, "ca");
2025 rs6000_debug_reg_print (VRSAVE_REGNO, VRSAVE_REGNO, "vrsave");
2026 rs6000_debug_reg_print (VSCR_REGNO, VSCR_REGNO, "vscr");
2027 rs6000_debug_reg_print (SPE_ACC_REGNO, SPE_ACC_REGNO, "spe_a");
2028 rs6000_debug_reg_print (SPEFSCR_REGNO, SPEFSCR_REGNO, "spe_f");
2030 fputs ("\nVirtual/stack/frame registers:\n", stderr);
2031 for (v = 0; v < ARRAY_SIZE (virtual_regs); v++)
2032 fprintf (stderr, "%s regno = %3d\n", virtual_regs[v].name, virtual_regs[v].regno);
2034 fprintf (stderr,
2035 "\n"
2036 "d reg_class = %s\n"
2037 "f reg_class = %s\n"
2038 "v reg_class = %s\n"
2039 "wa reg_class = %s\n"
2040 "wd reg_class = %s\n"
2041 "wf reg_class = %s\n"
2042 "wg reg_class = %s\n"
2043 "wl reg_class = %s\n"
2044 "wm reg_class = %s\n"
2045 "wr reg_class = %s\n"
2046 "ws reg_class = %s\n"
2047 "wt reg_class = %s\n"
2048 "wu reg_class = %s\n"
2049 "wv reg_class = %s\n"
2050 "ww reg_class = %s\n"
2051 "wx reg_class = %s\n"
2052 "wy reg_class = %s\n"
2053 "wz reg_class = %s\n"
2054 "\n",
2055 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_d]],
2056 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_f]],
2057 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_v]],
2058 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wa]],
2059 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wd]],
2060 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wf]],
2061 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wg]],
2062 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wl]],
2063 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wm]],
2064 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wr]],
2065 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_ws]],
2066 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wt]],
2067 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wu]],
2068 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wv]],
2069 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_ww]],
2070 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wx]],
2071 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wy]],
2072 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wz]]);
2074 nl = "\n";
2075 for (m = 0; m < NUM_MACHINE_MODES; ++m)
2076 rs6000_debug_print_mode (m);
2078 fputs ("\n", stderr);
2080 for (m1 = 0; m1 < ARRAY_SIZE (print_tieable_modes); m1++)
2082 enum machine_mode mode1 = print_tieable_modes[m1];
2083 bool first_time = true;
2085 nl = (const char *)0;
2086 for (m2 = 0; m2 < ARRAY_SIZE (print_tieable_modes); m2++)
2088 enum machine_mode mode2 = print_tieable_modes[m2];
2089 if (mode1 != mode2 && MODES_TIEABLE_P (mode1, mode2))
2091 if (first_time)
2093 fprintf (stderr, "Tieable modes %s:", GET_MODE_NAME (mode1));
2094 nl = "\n";
2095 first_time = false;
2098 fprintf (stderr, " %s", GET_MODE_NAME (mode2));
2102 if (!first_time)
2103 fputs ("\n", stderr);
2106 if (nl)
2107 fputs (nl, stderr);
2109 if (rs6000_recip_control)
2111 fprintf (stderr, "\nReciprocal mask = 0x%x\n", rs6000_recip_control);
2113 for (m = 0; m < NUM_MACHINE_MODES; ++m)
2114 if (rs6000_recip_bits[m])
2116 fprintf (stderr,
2117 "Reciprocal estimate mode: %-5s divide: %s rsqrt: %s\n",
2118 GET_MODE_NAME (m),
2119 (RS6000_RECIP_AUTO_RE_P (m)
2120 ? "auto"
2121 : (RS6000_RECIP_HAVE_RE_P (m) ? "have" : "none")),
2122 (RS6000_RECIP_AUTO_RSQRTE_P (m)
2123 ? "auto"
2124 : (RS6000_RECIP_HAVE_RSQRTE_P (m) ? "have" : "none")));
2127 fputs ("\n", stderr);
2130 if (rs6000_cpu_index >= 0)
2132 const char *name = processor_target_table[rs6000_cpu_index].name;
2133 HOST_WIDE_INT flags
2134 = processor_target_table[rs6000_cpu_index].target_enable;
2136 sprintf (flags_buffer, "-mcpu=%s flags", name);
2137 rs6000_print_isa_options (stderr, 0, flags_buffer, flags);
2139 else
2140 fprintf (stderr, DEBUG_FMT_S, "cpu", "<none>");
2142 if (rs6000_tune_index >= 0)
2144 const char *name = processor_target_table[rs6000_tune_index].name;
2145 HOST_WIDE_INT flags
2146 = processor_target_table[rs6000_tune_index].target_enable;
2148 sprintf (flags_buffer, "-mtune=%s flags", name);
2149 rs6000_print_isa_options (stderr, 0, flags_buffer, flags);
2151 else
2152 fprintf (stderr, DEBUG_FMT_S, "tune", "<none>");
2154 cl_target_option_save (&cl_opts, &global_options);
2155 rs6000_print_isa_options (stderr, 0, "rs6000_isa_flags",
2156 rs6000_isa_flags);
2158 rs6000_print_isa_options (stderr, 0, "rs6000_isa_flags_explicit",
2159 rs6000_isa_flags_explicit);
2161 rs6000_print_builtin_options (stderr, 0, "rs6000_builtin_mask",
2162 rs6000_builtin_mask);
2164 rs6000_print_isa_options (stderr, 0, "TARGET_DEFAULT", TARGET_DEFAULT);
2166 fprintf (stderr, DEBUG_FMT_S, "--with-cpu default",
2167 OPTION_TARGET_CPU_DEFAULT ? OPTION_TARGET_CPU_DEFAULT : "<none>");
2169 switch (rs6000_sched_costly_dep)
2171 case max_dep_latency:
2172 costly_str = "max_dep_latency";
2173 break;
2175 case no_dep_costly:
2176 costly_str = "no_dep_costly";
2177 break;
2179 case all_deps_costly:
2180 costly_str = "all_deps_costly";
2181 break;
2183 case true_store_to_load_dep_costly:
2184 costly_str = "true_store_to_load_dep_costly";
2185 break;
2187 case store_to_load_dep_costly:
2188 costly_str = "store_to_load_dep_costly";
2189 break;
2191 default:
2192 costly_str = costly_num;
2193 sprintf (costly_num, "%d", (int)rs6000_sched_costly_dep);
2194 break;
2197 fprintf (stderr, DEBUG_FMT_S, "sched_costly_dep", costly_str);
2199 switch (rs6000_sched_insert_nops)
2201 case sched_finish_regroup_exact:
2202 nop_str = "sched_finish_regroup_exact";
2203 break;
2205 case sched_finish_pad_groups:
2206 nop_str = "sched_finish_pad_groups";
2207 break;
2209 case sched_finish_none:
2210 nop_str = "sched_finish_none";
2211 break;
2213 default:
2214 nop_str = nop_num;
2215 sprintf (nop_num, "%d", (int)rs6000_sched_insert_nops);
2216 break;
2219 fprintf (stderr, DEBUG_FMT_S, "sched_insert_nops", nop_str);
2221 switch (rs6000_sdata)
2223 default:
2224 case SDATA_NONE:
2225 break;
2227 case SDATA_DATA:
2228 fprintf (stderr, DEBUG_FMT_S, "sdata", "data");
2229 break;
2231 case SDATA_SYSV:
2232 fprintf (stderr, DEBUG_FMT_S, "sdata", "sysv");
2233 break;
2235 case SDATA_EABI:
2236 fprintf (stderr, DEBUG_FMT_S, "sdata", "eabi");
2237 break;
2241 switch (rs6000_traceback)
2243 case traceback_default: trace_str = "default"; break;
2244 case traceback_none: trace_str = "none"; break;
2245 case traceback_part: trace_str = "part"; break;
2246 case traceback_full: trace_str = "full"; break;
2247 default: trace_str = "unknown"; break;
2250 fprintf (stderr, DEBUG_FMT_S, "traceback", trace_str);
2252 switch (rs6000_current_cmodel)
2254 case CMODEL_SMALL: cmodel_str = "small"; break;
2255 case CMODEL_MEDIUM: cmodel_str = "medium"; break;
2256 case CMODEL_LARGE: cmodel_str = "large"; break;
2257 default: cmodel_str = "unknown"; break;
2260 fprintf (stderr, DEBUG_FMT_S, "cmodel", cmodel_str);
2262 switch (rs6000_current_abi)
2264 case ABI_NONE: abi_str = "none"; break;
2265 case ABI_AIX: abi_str = "aix"; break;
2266 case ABI_ELFv2: abi_str = "ELFv2"; break;
2267 case ABI_V4: abi_str = "V4"; break;
2268 case ABI_DARWIN: abi_str = "darwin"; break;
2269 default: abi_str = "unknown"; break;
2272 fprintf (stderr, DEBUG_FMT_S, "abi", abi_str);
2274 if (rs6000_altivec_abi)
2275 fprintf (stderr, DEBUG_FMT_S, "altivec_abi", "true");
2277 if (rs6000_spe_abi)
2278 fprintf (stderr, DEBUG_FMT_S, "spe_abi", "true");
2280 if (rs6000_darwin64_abi)
2281 fprintf (stderr, DEBUG_FMT_S, "darwin64_abi", "true");
2283 if (rs6000_float_gprs)
2284 fprintf (stderr, DEBUG_FMT_S, "float_gprs", "true");
2286 fprintf (stderr, DEBUG_FMT_S, "fprs",
2287 (TARGET_FPRS ? "true" : "false"));
2289 fprintf (stderr, DEBUG_FMT_S, "single_float",
2290 (TARGET_SINGLE_FLOAT ? "true" : "false"));
2292 fprintf (stderr, DEBUG_FMT_S, "double_float",
2293 (TARGET_DOUBLE_FLOAT ? "true" : "false"));
2295 fprintf (stderr, DEBUG_FMT_S, "soft_float",
2296 (TARGET_SOFT_FLOAT ? "true" : "false"));
2298 fprintf (stderr, DEBUG_FMT_S, "e500_single",
2299 (TARGET_E500_SINGLE ? "true" : "false"));
2301 fprintf (stderr, DEBUG_FMT_S, "e500_double",
2302 (TARGET_E500_DOUBLE ? "true" : "false"));
2304 if (TARGET_LINK_STACK)
2305 fprintf (stderr, DEBUG_FMT_S, "link_stack", "true");
2307 if (targetm.lra_p ())
2308 fprintf (stderr, DEBUG_FMT_S, "lra", "true");
2310 if (TARGET_P8_FUSION)
2311 fprintf (stderr, DEBUG_FMT_S, "p8 fusion",
2312 (TARGET_P8_FUSION_SIGN) ? "zero+sign" : "zero");
2314 fprintf (stderr, DEBUG_FMT_S, "plt-format",
2315 TARGET_SECURE_PLT ? "secure" : "bss");
2316 fprintf (stderr, DEBUG_FMT_S, "struct-return",
2317 aix_struct_return ? "aix" : "sysv");
2318 fprintf (stderr, DEBUG_FMT_S, "always_hint", tf[!!rs6000_always_hint]);
2319 fprintf (stderr, DEBUG_FMT_S, "sched_groups", tf[!!rs6000_sched_groups]);
2320 fprintf (stderr, DEBUG_FMT_S, "align_branch",
2321 tf[!!rs6000_align_branch_targets]);
2322 fprintf (stderr, DEBUG_FMT_D, "tls_size", rs6000_tls_size);
2323 fprintf (stderr, DEBUG_FMT_D, "long_double_size",
2324 rs6000_long_double_type_size);
2325 fprintf (stderr, DEBUG_FMT_D, "sched_restricted_insns_priority",
2326 (int)rs6000_sched_restricted_insns_priority);
2327 fprintf (stderr, DEBUG_FMT_D, "Number of standard builtins",
2328 (int)END_BUILTINS);
2329 fprintf (stderr, DEBUG_FMT_D, "Number of rs6000 builtins",
2330 (int)RS6000_BUILTIN_COUNT);
2332 if (TARGET_VSX)
2333 fprintf (stderr, DEBUG_FMT_D, "VSX easy 64-bit scalar element",
2334 (int)VECTOR_ELEMENT_SCALAR_64BIT);
2338 /* Update the addr mask bits in reg_addr to help secondary reload and go if
2339 legitimate address support to figure out the appropriate addressing to
2340 use. */
2342 static void
2343 rs6000_setup_reg_addr_masks (void)
2345 ssize_t rc, reg, m, nregs;
2346 addr_mask_type any_addr_mask, addr_mask;
2348 for (m = 0; m < NUM_MACHINE_MODES; ++m)
2350 enum machine_mode m2 = (enum machine_mode)m;
2352 /* SDmode is special in that we want to access it only via REG+REG
2353 addressing on power7 and above, since we want to use the LFIWZX and
2354 STFIWZX instructions to load it. */
2355 bool indexed_only_p = (m == SDmode && TARGET_NO_SDMODE_STACK);
2357 any_addr_mask = 0;
2358 for (rc = FIRST_RELOAD_REG_CLASS; rc <= LAST_RELOAD_REG_CLASS; rc++)
2360 addr_mask = 0;
2361 reg = reload_reg_map[rc].reg;
2363 /* Can mode values go in the GPR/FPR/Altivec registers? */
2364 if (reg >= 0 && rs6000_hard_regno_mode_ok_p[m][reg])
2366 nregs = rs6000_hard_regno_nregs[m][reg];
2367 addr_mask |= RELOAD_REG_VALID;
2369 /* Indicate if the mode takes more than 1 physical register. If
2370 it takes a single register, indicate it can do REG+REG
2371 addressing. */
2372 if (nregs > 1 || m == BLKmode)
2373 addr_mask |= RELOAD_REG_MULTIPLE;
2374 else
2375 addr_mask |= RELOAD_REG_INDEXED;
2377 /* Figure out if we can do PRE_INC, PRE_DEC, or PRE_MODIFY
2378 addressing. Restrict addressing on SPE for 64-bit types
2379 because of the SUBREG hackery used to address 64-bit floats in
2380 '32-bit' GPRs. To simplify secondary reload, don't allow
2381 update forms on scalar floating point types that can go in the
2382 upper registers. */
2384 if (TARGET_UPDATE
2385 && (rc == RELOAD_REG_GPR || rc == RELOAD_REG_FPR)
2386 && GET_MODE_SIZE (m2) <= 8
2387 && !VECTOR_MODE_P (m2)
2388 && !COMPLEX_MODE_P (m2)
2389 && !indexed_only_p
2390 && !(TARGET_E500_DOUBLE && GET_MODE_SIZE (m2) == 8)
2391 && !(m2 == DFmode && TARGET_UPPER_REGS_DF)
2392 && !(m2 == SFmode && TARGET_UPPER_REGS_SF))
2394 addr_mask |= RELOAD_REG_PRE_INCDEC;
2396 /* PRE_MODIFY is more restricted than PRE_INC/PRE_DEC in that
2397 we don't allow PRE_MODIFY for some multi-register
2398 operations. */
2399 switch (m)
2401 default:
2402 addr_mask |= RELOAD_REG_PRE_MODIFY;
2403 break;
2405 case DImode:
2406 if (TARGET_POWERPC64)
2407 addr_mask |= RELOAD_REG_PRE_MODIFY;
2408 break;
2410 case DFmode:
2411 case DDmode:
2412 if (TARGET_DF_INSN)
2413 addr_mask |= RELOAD_REG_PRE_MODIFY;
2414 break;
2419 /* GPR and FPR registers can do REG+OFFSET addressing, except
2420 possibly for SDmode. */
2421 if ((addr_mask != 0) && !indexed_only_p
2422 && (rc == RELOAD_REG_GPR || rc == RELOAD_REG_FPR))
2423 addr_mask |= RELOAD_REG_OFFSET;
2425 reg_addr[m].addr_mask[rc] = addr_mask;
2426 any_addr_mask |= addr_mask;
2429 reg_addr[m].addr_mask[RELOAD_REG_ANY] = any_addr_mask;
2434 /* Initialize the various global tables that are based on register size. */
2435 static void
2436 rs6000_init_hard_regno_mode_ok (bool global_init_p)
2438 ssize_t r, m, c;
2439 int align64;
2440 int align32;
2442 /* Precalculate REGNO_REG_CLASS. */
2443 rs6000_regno_regclass[0] = GENERAL_REGS;
2444 for (r = 1; r < 32; ++r)
2445 rs6000_regno_regclass[r] = BASE_REGS;
2447 for (r = 32; r < 64; ++r)
2448 rs6000_regno_regclass[r] = FLOAT_REGS;
2450 for (r = 64; r < FIRST_PSEUDO_REGISTER; ++r)
2451 rs6000_regno_regclass[r] = NO_REGS;
2453 for (r = FIRST_ALTIVEC_REGNO; r <= LAST_ALTIVEC_REGNO; ++r)
2454 rs6000_regno_regclass[r] = ALTIVEC_REGS;
2456 rs6000_regno_regclass[CR0_REGNO] = CR0_REGS;
2457 for (r = CR1_REGNO; r <= CR7_REGNO; ++r)
2458 rs6000_regno_regclass[r] = CR_REGS;
2460 rs6000_regno_regclass[LR_REGNO] = LINK_REGS;
2461 rs6000_regno_regclass[CTR_REGNO] = CTR_REGS;
2462 rs6000_regno_regclass[CA_REGNO] = CA_REGS;
2463 rs6000_regno_regclass[VRSAVE_REGNO] = VRSAVE_REGS;
2464 rs6000_regno_regclass[VSCR_REGNO] = VRSAVE_REGS;
2465 rs6000_regno_regclass[SPE_ACC_REGNO] = SPE_ACC_REGS;
2466 rs6000_regno_regclass[SPEFSCR_REGNO] = SPEFSCR_REGS;
2467 rs6000_regno_regclass[TFHAR_REGNO] = SPR_REGS;
2468 rs6000_regno_regclass[TFIAR_REGNO] = SPR_REGS;
2469 rs6000_regno_regclass[TEXASR_REGNO] = SPR_REGS;
2470 rs6000_regno_regclass[ARG_POINTER_REGNUM] = BASE_REGS;
2471 rs6000_regno_regclass[FRAME_POINTER_REGNUM] = BASE_REGS;
2473 /* Precalculate register class to simpler reload register class. We don't
2474 need all of the register classes that are combinations of different
2475 classes, just the simple ones that have constraint letters. */
2476 for (c = 0; c < N_REG_CLASSES; c++)
2477 reg_class_to_reg_type[c] = NO_REG_TYPE;
2479 reg_class_to_reg_type[(int)GENERAL_REGS] = GPR_REG_TYPE;
2480 reg_class_to_reg_type[(int)BASE_REGS] = GPR_REG_TYPE;
2481 reg_class_to_reg_type[(int)VSX_REGS] = VSX_REG_TYPE;
2482 reg_class_to_reg_type[(int)VRSAVE_REGS] = SPR_REG_TYPE;
2483 reg_class_to_reg_type[(int)VSCR_REGS] = SPR_REG_TYPE;
2484 reg_class_to_reg_type[(int)LINK_REGS] = SPR_REG_TYPE;
2485 reg_class_to_reg_type[(int)CTR_REGS] = SPR_REG_TYPE;
2486 reg_class_to_reg_type[(int)LINK_OR_CTR_REGS] = SPR_REG_TYPE;
2487 reg_class_to_reg_type[(int)CR_REGS] = CR_REG_TYPE;
2488 reg_class_to_reg_type[(int)CR0_REGS] = CR_REG_TYPE;
2489 reg_class_to_reg_type[(int)SPE_ACC_REGS] = SPE_ACC_TYPE;
2490 reg_class_to_reg_type[(int)SPEFSCR_REGS] = SPEFSCR_REG_TYPE;
2492 if (TARGET_VSX)
2494 reg_class_to_reg_type[(int)FLOAT_REGS] = VSX_REG_TYPE;
2495 reg_class_to_reg_type[(int)ALTIVEC_REGS] = VSX_REG_TYPE;
2497 else
2499 reg_class_to_reg_type[(int)FLOAT_REGS] = FPR_REG_TYPE;
2500 reg_class_to_reg_type[(int)ALTIVEC_REGS] = ALTIVEC_REG_TYPE;
2503 /* Precalculate the valid memory formats as well as the vector information,
2504 this must be set up before the rs6000_hard_regno_nregs_internal calls
2505 below. */
2506 gcc_assert ((int)VECTOR_NONE == 0);
2507 memset ((void *) &rs6000_vector_unit[0], '\0', sizeof (rs6000_vector_unit));
2508 memset ((void *) &rs6000_vector_mem[0], '\0', sizeof (rs6000_vector_unit));
2510 gcc_assert ((int)CODE_FOR_nothing == 0);
2511 memset ((void *) &reg_addr[0], '\0', sizeof (reg_addr));
2513 gcc_assert ((int)NO_REGS == 0);
2514 memset ((void *) &rs6000_constraints[0], '\0', sizeof (rs6000_constraints));
2516 /* The VSX hardware allows native alignment for vectors, but control whether the compiler
2517 believes it can use native alignment or still uses 128-bit alignment. */
2518 if (TARGET_VSX && !TARGET_VSX_ALIGN_128)
2520 align64 = 64;
2521 align32 = 32;
2523 else
2525 align64 = 128;
2526 align32 = 128;
2529 /* V2DF mode, VSX only. */
2530 if (TARGET_VSX)
2532 rs6000_vector_unit[V2DFmode] = VECTOR_VSX;
2533 rs6000_vector_mem[V2DFmode] = VECTOR_VSX;
2534 rs6000_vector_align[V2DFmode] = align64;
2537 /* V4SF mode, either VSX or Altivec. */
2538 if (TARGET_VSX)
2540 rs6000_vector_unit[V4SFmode] = VECTOR_VSX;
2541 rs6000_vector_mem[V4SFmode] = VECTOR_VSX;
2542 rs6000_vector_align[V4SFmode] = align32;
2544 else if (TARGET_ALTIVEC)
2546 rs6000_vector_unit[V4SFmode] = VECTOR_ALTIVEC;
2547 rs6000_vector_mem[V4SFmode] = VECTOR_ALTIVEC;
2548 rs6000_vector_align[V4SFmode] = align32;
2551 /* V16QImode, V8HImode, V4SImode are Altivec only, but possibly do VSX loads
2552 and stores. */
2553 if (TARGET_ALTIVEC)
2555 rs6000_vector_unit[V4SImode] = VECTOR_ALTIVEC;
2556 rs6000_vector_unit[V8HImode] = VECTOR_ALTIVEC;
2557 rs6000_vector_unit[V16QImode] = VECTOR_ALTIVEC;
2558 rs6000_vector_align[V4SImode] = align32;
2559 rs6000_vector_align[V8HImode] = align32;
2560 rs6000_vector_align[V16QImode] = align32;
2562 if (TARGET_VSX)
2564 rs6000_vector_mem[V4SImode] = VECTOR_VSX;
2565 rs6000_vector_mem[V8HImode] = VECTOR_VSX;
2566 rs6000_vector_mem[V16QImode] = VECTOR_VSX;
2568 else
2570 rs6000_vector_mem[V4SImode] = VECTOR_ALTIVEC;
2571 rs6000_vector_mem[V8HImode] = VECTOR_ALTIVEC;
2572 rs6000_vector_mem[V16QImode] = VECTOR_ALTIVEC;
2576 /* V2DImode, full mode depends on ISA 2.07 vector mode. Allow under VSX to
2577 do insert/splat/extract. Altivec doesn't have 64-bit integer support. */
2578 if (TARGET_VSX)
2580 rs6000_vector_mem[V2DImode] = VECTOR_VSX;
2581 rs6000_vector_unit[V2DImode]
2582 = (TARGET_P8_VECTOR) ? VECTOR_P8_VECTOR : VECTOR_NONE;
2583 rs6000_vector_align[V2DImode] = align64;
2585 rs6000_vector_mem[V1TImode] = VECTOR_VSX;
2586 rs6000_vector_unit[V1TImode]
2587 = (TARGET_P8_VECTOR) ? VECTOR_P8_VECTOR : VECTOR_NONE;
2588 rs6000_vector_align[V1TImode] = 128;
2591 /* DFmode, see if we want to use the VSX unit. */
2592 if (TARGET_VSX && TARGET_VSX_SCALAR_DOUBLE)
2594 rs6000_vector_unit[DFmode] = VECTOR_VSX;
2595 rs6000_vector_mem[DFmode]
2596 = (TARGET_UPPER_REGS_DF ? VECTOR_VSX : VECTOR_NONE);
2597 rs6000_vector_align[DFmode] = align64;
2600 /* Allow TImode in VSX register and set the VSX memory macros. */
2601 if (TARGET_VSX && TARGET_VSX_TIMODE)
2603 rs6000_vector_mem[TImode] = VECTOR_VSX;
2604 rs6000_vector_align[TImode] = align64;
2607 /* TODO add SPE and paired floating point vector support. */
2609 /* Register class constraints for the constraints that depend on compile
2610 switches. When the VSX code was added, different constraints were added
2611 based on the type (DFmode, V2DFmode, V4SFmode). For the vector types, all
2612 of the VSX registers are used. The register classes for scalar floating
2613 point types is set, based on whether we allow that type into the upper
2614 (Altivec) registers. GCC has register classes to target the Altivec
2615 registers for load/store operations, to select using a VSX memory
2616 operation instead of the traditional floating point operation. The
2617 constraints are:
2619 d - Register class to use with traditional DFmode instructions.
2620 f - Register class to use with traditional SFmode instructions.
2621 v - Altivec register.
2622 wa - Any VSX register.
2623 wd - Preferred register class for V2DFmode.
2624 wf - Preferred register class for V4SFmode.
2625 wg - Float register for power6x move insns.
2626 wl - Float register if we can do 32-bit signed int loads.
2627 wm - VSX register for ISA 2.07 direct move operations.
2628 wr - GPR if 64-bit mode is permitted.
2629 ws - Register class to do ISA 2.06 DF operations.
2630 wu - Altivec register for ISA 2.07 VSX SF/SI load/stores.
2631 wv - Altivec register for ISA 2.06 VSX DF/DI load/stores.
2632 wt - VSX register for TImode in VSX registers.
2633 ww - Register class to do SF conversions in with VSX operations.
2634 wx - Float register if we can do 32-bit int stores.
2635 wy - Register class to do ISA 2.07 SF operations.
2636 wz - Float register if we can do 32-bit unsigned int loads. */
2638 if (TARGET_HARD_FLOAT && TARGET_FPRS)
2639 rs6000_constraints[RS6000_CONSTRAINT_f] = FLOAT_REGS;
2641 if (TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_DOUBLE_FLOAT)
2642 rs6000_constraints[RS6000_CONSTRAINT_d] = FLOAT_REGS;
2644 if (TARGET_VSX)
2646 rs6000_constraints[RS6000_CONSTRAINT_wa] = VSX_REGS;
2647 rs6000_constraints[RS6000_CONSTRAINT_wd] = VSX_REGS;
2648 rs6000_constraints[RS6000_CONSTRAINT_wf] = VSX_REGS;
2650 if (TARGET_VSX_TIMODE)
2651 rs6000_constraints[RS6000_CONSTRAINT_wt] = VSX_REGS;
2653 if (TARGET_UPPER_REGS_DF)
2655 rs6000_constraints[RS6000_CONSTRAINT_ws] = VSX_REGS;
2656 rs6000_constraints[RS6000_CONSTRAINT_wv] = ALTIVEC_REGS;
2658 else
2659 rs6000_constraints[RS6000_CONSTRAINT_ws] = FLOAT_REGS;
2662 /* Add conditional constraints based on various options, to allow us to
2663 collapse multiple insn patterns. */
2664 if (TARGET_ALTIVEC)
2665 rs6000_constraints[RS6000_CONSTRAINT_v] = ALTIVEC_REGS;
2667 if (TARGET_MFPGPR)
2668 rs6000_constraints[RS6000_CONSTRAINT_wg] = FLOAT_REGS;
2670 if (TARGET_LFIWAX)
2671 rs6000_constraints[RS6000_CONSTRAINT_wl] = FLOAT_REGS;
2673 if (TARGET_DIRECT_MOVE)
2674 rs6000_constraints[RS6000_CONSTRAINT_wm] = VSX_REGS;
2676 if (TARGET_POWERPC64)
2677 rs6000_constraints[RS6000_CONSTRAINT_wr] = GENERAL_REGS;
2679 if (TARGET_P8_VECTOR && TARGET_UPPER_REGS_SF)
2681 rs6000_constraints[RS6000_CONSTRAINT_wu] = ALTIVEC_REGS;
2682 rs6000_constraints[RS6000_CONSTRAINT_wy] = VSX_REGS;
2683 rs6000_constraints[RS6000_CONSTRAINT_ww] = VSX_REGS;
2685 else if (TARGET_P8_VECTOR)
2687 rs6000_constraints[RS6000_CONSTRAINT_wy] = FLOAT_REGS;
2688 rs6000_constraints[RS6000_CONSTRAINT_ww] = FLOAT_REGS;
2690 else if (TARGET_VSX)
2691 rs6000_constraints[RS6000_CONSTRAINT_ww] = FLOAT_REGS;
2693 if (TARGET_STFIWX)
2694 rs6000_constraints[RS6000_CONSTRAINT_wx] = FLOAT_REGS;
2696 if (TARGET_LFIWZX)
2697 rs6000_constraints[RS6000_CONSTRAINT_wz] = FLOAT_REGS;
2699 /* Set up the reload helper and direct move functions. */
2700 if (TARGET_VSX || TARGET_ALTIVEC)
2702 if (TARGET_64BIT)
2704 reg_addr[V16QImode].reload_store = CODE_FOR_reload_v16qi_di_store;
2705 reg_addr[V16QImode].reload_load = CODE_FOR_reload_v16qi_di_load;
2706 reg_addr[V8HImode].reload_store = CODE_FOR_reload_v8hi_di_store;
2707 reg_addr[V8HImode].reload_load = CODE_FOR_reload_v8hi_di_load;
2708 reg_addr[V4SImode].reload_store = CODE_FOR_reload_v4si_di_store;
2709 reg_addr[V4SImode].reload_load = CODE_FOR_reload_v4si_di_load;
2710 reg_addr[V2DImode].reload_store = CODE_FOR_reload_v2di_di_store;
2711 reg_addr[V2DImode].reload_load = CODE_FOR_reload_v2di_di_load;
2712 reg_addr[V1TImode].reload_store = CODE_FOR_reload_v1ti_di_store;
2713 reg_addr[V1TImode].reload_load = CODE_FOR_reload_v1ti_di_load;
2714 reg_addr[V4SFmode].reload_store = CODE_FOR_reload_v4sf_di_store;
2715 reg_addr[V4SFmode].reload_load = CODE_FOR_reload_v4sf_di_load;
2716 reg_addr[V2DFmode].reload_store = CODE_FOR_reload_v2df_di_store;
2717 reg_addr[V2DFmode].reload_load = CODE_FOR_reload_v2df_di_load;
2718 if (TARGET_VSX && TARGET_UPPER_REGS_DF)
2720 reg_addr[DFmode].reload_store = CODE_FOR_reload_df_di_store;
2721 reg_addr[DFmode].reload_load = CODE_FOR_reload_df_di_load;
2722 reg_addr[DDmode].reload_store = CODE_FOR_reload_dd_di_store;
2723 reg_addr[DDmode].reload_load = CODE_FOR_reload_dd_di_load;
2725 if (TARGET_P8_VECTOR)
2727 reg_addr[SFmode].reload_store = CODE_FOR_reload_sf_di_store;
2728 reg_addr[SFmode].reload_load = CODE_FOR_reload_sf_di_load;
2729 reg_addr[SDmode].reload_store = CODE_FOR_reload_sd_di_store;
2730 reg_addr[SDmode].reload_load = CODE_FOR_reload_sd_di_load;
2732 if (TARGET_VSX_TIMODE)
2734 reg_addr[TImode].reload_store = CODE_FOR_reload_ti_di_store;
2735 reg_addr[TImode].reload_load = CODE_FOR_reload_ti_di_load;
2737 if (TARGET_DIRECT_MOVE)
2739 if (TARGET_POWERPC64)
2741 reg_addr[TImode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxti;
2742 reg_addr[V1TImode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxv1ti;
2743 reg_addr[V2DFmode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxv2df;
2744 reg_addr[V2DImode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxv2di;
2745 reg_addr[V4SFmode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxv4sf;
2746 reg_addr[V4SImode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxv4si;
2747 reg_addr[V8HImode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxv8hi;
2748 reg_addr[V16QImode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxv16qi;
2749 reg_addr[SFmode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxsf;
2751 reg_addr[TImode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprti;
2752 reg_addr[V1TImode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprv1ti;
2753 reg_addr[V2DFmode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprv2df;
2754 reg_addr[V2DImode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprv2di;
2755 reg_addr[V4SFmode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprv4sf;
2756 reg_addr[V4SImode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprv4si;
2757 reg_addr[V8HImode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprv8hi;
2758 reg_addr[V16QImode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprv16qi;
2759 reg_addr[SFmode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprsf;
2761 else
2763 reg_addr[DImode].reload_fpr_gpr = CODE_FOR_reload_fpr_from_gprdi;
2764 reg_addr[DDmode].reload_fpr_gpr = CODE_FOR_reload_fpr_from_gprdd;
2765 reg_addr[DFmode].reload_fpr_gpr = CODE_FOR_reload_fpr_from_gprdf;
2769 else
2771 reg_addr[V16QImode].reload_store = CODE_FOR_reload_v16qi_si_store;
2772 reg_addr[V16QImode].reload_load = CODE_FOR_reload_v16qi_si_load;
2773 reg_addr[V8HImode].reload_store = CODE_FOR_reload_v8hi_si_store;
2774 reg_addr[V8HImode].reload_load = CODE_FOR_reload_v8hi_si_load;
2775 reg_addr[V4SImode].reload_store = CODE_FOR_reload_v4si_si_store;
2776 reg_addr[V4SImode].reload_load = CODE_FOR_reload_v4si_si_load;
2777 reg_addr[V2DImode].reload_store = CODE_FOR_reload_v2di_si_store;
2778 reg_addr[V2DImode].reload_load = CODE_FOR_reload_v2di_si_load;
2779 reg_addr[V1TImode].reload_store = CODE_FOR_reload_v1ti_si_store;
2780 reg_addr[V1TImode].reload_load = CODE_FOR_reload_v1ti_si_load;
2781 reg_addr[V4SFmode].reload_store = CODE_FOR_reload_v4sf_si_store;
2782 reg_addr[V4SFmode].reload_load = CODE_FOR_reload_v4sf_si_load;
2783 reg_addr[V2DFmode].reload_store = CODE_FOR_reload_v2df_si_store;
2784 reg_addr[V2DFmode].reload_load = CODE_FOR_reload_v2df_si_load;
2785 if (TARGET_VSX && TARGET_UPPER_REGS_DF)
2787 reg_addr[DFmode].reload_store = CODE_FOR_reload_df_si_store;
2788 reg_addr[DFmode].reload_load = CODE_FOR_reload_df_si_load;
2789 reg_addr[DDmode].reload_store = CODE_FOR_reload_dd_si_store;
2790 reg_addr[DDmode].reload_load = CODE_FOR_reload_dd_si_load;
2792 if (TARGET_P8_VECTOR)
2794 reg_addr[SFmode].reload_store = CODE_FOR_reload_sf_si_store;
2795 reg_addr[SFmode].reload_load = CODE_FOR_reload_sf_si_load;
2796 reg_addr[SDmode].reload_store = CODE_FOR_reload_sd_si_store;
2797 reg_addr[SDmode].reload_load = CODE_FOR_reload_sd_si_load;
2799 if (TARGET_VSX_TIMODE)
2801 reg_addr[TImode].reload_store = CODE_FOR_reload_ti_si_store;
2802 reg_addr[TImode].reload_load = CODE_FOR_reload_ti_si_load;
2807 /* Precalculate HARD_REGNO_NREGS. */
2808 for (r = 0; r < FIRST_PSEUDO_REGISTER; ++r)
2809 for (m = 0; m < NUM_MACHINE_MODES; ++m)
2810 rs6000_hard_regno_nregs[m][r]
2811 = rs6000_hard_regno_nregs_internal (r, (enum machine_mode)m);
2813 /* Precalculate HARD_REGNO_MODE_OK. */
2814 for (r = 0; r < FIRST_PSEUDO_REGISTER; ++r)
2815 for (m = 0; m < NUM_MACHINE_MODES; ++m)
2816 if (rs6000_hard_regno_mode_ok (r, (enum machine_mode)m))
2817 rs6000_hard_regno_mode_ok_p[m][r] = true;
2819 /* Precalculate CLASS_MAX_NREGS sizes. */
2820 for (c = 0; c < LIM_REG_CLASSES; ++c)
2822 int reg_size;
2824 if (TARGET_VSX && VSX_REG_CLASS_P (c))
2825 reg_size = UNITS_PER_VSX_WORD;
2827 else if (c == ALTIVEC_REGS)
2828 reg_size = UNITS_PER_ALTIVEC_WORD;
2830 else if (c == FLOAT_REGS)
2831 reg_size = UNITS_PER_FP_WORD;
2833 else
2834 reg_size = UNITS_PER_WORD;
2836 for (m = 0; m < NUM_MACHINE_MODES; ++m)
2838 enum machine_mode m2 = (enum machine_mode)m;
2839 int reg_size2 = reg_size;
2841 /* TFmode/TDmode always takes 2 registers, even in VSX. */
2842 if (TARGET_VSX && VSX_REG_CLASS_P (c)
2843 && (m == TDmode || m == TFmode))
2844 reg_size2 = UNITS_PER_FP_WORD;
2846 rs6000_class_max_nregs[m][c]
2847 = (GET_MODE_SIZE (m2) + reg_size2 - 1) / reg_size2;
2851 if (TARGET_E500_DOUBLE)
2852 rs6000_class_max_nregs[DFmode][GENERAL_REGS] = 1;
2854 /* Calculate which modes to automatically generate code to use a the
2855 reciprocal divide and square root instructions. In the future, possibly
2856 automatically generate the instructions even if the user did not specify
2857 -mrecip. The older machines double precision reciprocal sqrt estimate is
2858 not accurate enough. */
2859 memset (rs6000_recip_bits, 0, sizeof (rs6000_recip_bits));
2860 if (TARGET_FRES)
2861 rs6000_recip_bits[SFmode] = RS6000_RECIP_MASK_HAVE_RE;
2862 if (TARGET_FRE)
2863 rs6000_recip_bits[DFmode] = RS6000_RECIP_MASK_HAVE_RE;
2864 if (VECTOR_UNIT_ALTIVEC_OR_VSX_P (V4SFmode))
2865 rs6000_recip_bits[V4SFmode] = RS6000_RECIP_MASK_HAVE_RE;
2866 if (VECTOR_UNIT_VSX_P (V2DFmode))
2867 rs6000_recip_bits[V2DFmode] = RS6000_RECIP_MASK_HAVE_RE;
2869 if (TARGET_FRSQRTES)
2870 rs6000_recip_bits[SFmode] |= RS6000_RECIP_MASK_HAVE_RSQRTE;
2871 if (TARGET_FRSQRTE)
2872 rs6000_recip_bits[DFmode] |= RS6000_RECIP_MASK_HAVE_RSQRTE;
2873 if (VECTOR_UNIT_ALTIVEC_OR_VSX_P (V4SFmode))
2874 rs6000_recip_bits[V4SFmode] |= RS6000_RECIP_MASK_HAVE_RSQRTE;
2875 if (VECTOR_UNIT_VSX_P (V2DFmode))
2876 rs6000_recip_bits[V2DFmode] |= RS6000_RECIP_MASK_HAVE_RSQRTE;
2878 if (rs6000_recip_control)
2880 if (!flag_finite_math_only)
2881 warning (0, "-mrecip requires -ffinite-math or -ffast-math");
2882 if (flag_trapping_math)
2883 warning (0, "-mrecip requires -fno-trapping-math or -ffast-math");
2884 if (!flag_reciprocal_math)
2885 warning (0, "-mrecip requires -freciprocal-math or -ffast-math");
2886 if (flag_finite_math_only && !flag_trapping_math && flag_reciprocal_math)
2888 if (RS6000_RECIP_HAVE_RE_P (SFmode)
2889 && (rs6000_recip_control & RECIP_SF_DIV) != 0)
2890 rs6000_recip_bits[SFmode] |= RS6000_RECIP_MASK_AUTO_RE;
2892 if (RS6000_RECIP_HAVE_RE_P (DFmode)
2893 && (rs6000_recip_control & RECIP_DF_DIV) != 0)
2894 rs6000_recip_bits[DFmode] |= RS6000_RECIP_MASK_AUTO_RE;
2896 if (RS6000_RECIP_HAVE_RE_P (V4SFmode)
2897 && (rs6000_recip_control & RECIP_V4SF_DIV) != 0)
2898 rs6000_recip_bits[V4SFmode] |= RS6000_RECIP_MASK_AUTO_RE;
2900 if (RS6000_RECIP_HAVE_RE_P (V2DFmode)
2901 && (rs6000_recip_control & RECIP_V2DF_DIV) != 0)
2902 rs6000_recip_bits[V2DFmode] |= RS6000_RECIP_MASK_AUTO_RE;
2904 if (RS6000_RECIP_HAVE_RSQRTE_P (SFmode)
2905 && (rs6000_recip_control & RECIP_SF_RSQRT) != 0)
2906 rs6000_recip_bits[SFmode] |= RS6000_RECIP_MASK_AUTO_RSQRTE;
2908 if (RS6000_RECIP_HAVE_RSQRTE_P (DFmode)
2909 && (rs6000_recip_control & RECIP_DF_RSQRT) != 0)
2910 rs6000_recip_bits[DFmode] |= RS6000_RECIP_MASK_AUTO_RSQRTE;
2912 if (RS6000_RECIP_HAVE_RSQRTE_P (V4SFmode)
2913 && (rs6000_recip_control & RECIP_V4SF_RSQRT) != 0)
2914 rs6000_recip_bits[V4SFmode] |= RS6000_RECIP_MASK_AUTO_RSQRTE;
2916 if (RS6000_RECIP_HAVE_RSQRTE_P (V2DFmode)
2917 && (rs6000_recip_control & RECIP_V2DF_RSQRT) != 0)
2918 rs6000_recip_bits[V2DFmode] |= RS6000_RECIP_MASK_AUTO_RSQRTE;
2922 /* Update the addr mask bits in reg_addr to help secondary reload and go if
2923 legitimate address support to figure out the appropriate addressing to
2924 use. */
2925 rs6000_setup_reg_addr_masks ();
2927 if (global_init_p || TARGET_DEBUG_TARGET)
2929 if (TARGET_DEBUG_REG)
2930 rs6000_debug_reg_global ();
2932 if (TARGET_DEBUG_COST || TARGET_DEBUG_REG)
2933 fprintf (stderr,
2934 "SImode variable mult cost = %d\n"
2935 "SImode constant mult cost = %d\n"
2936 "SImode short constant mult cost = %d\n"
2937 "DImode multipliciation cost = %d\n"
2938 "SImode division cost = %d\n"
2939 "DImode division cost = %d\n"
2940 "Simple fp operation cost = %d\n"
2941 "DFmode multiplication cost = %d\n"
2942 "SFmode division cost = %d\n"
2943 "DFmode division cost = %d\n"
2944 "cache line size = %d\n"
2945 "l1 cache size = %d\n"
2946 "l2 cache size = %d\n"
2947 "simultaneous prefetches = %d\n"
2948 "\n",
2949 rs6000_cost->mulsi,
2950 rs6000_cost->mulsi_const,
2951 rs6000_cost->mulsi_const9,
2952 rs6000_cost->muldi,
2953 rs6000_cost->divsi,
2954 rs6000_cost->divdi,
2955 rs6000_cost->fp,
2956 rs6000_cost->dmul,
2957 rs6000_cost->sdiv,
2958 rs6000_cost->ddiv,
2959 rs6000_cost->cache_line_size,
2960 rs6000_cost->l1_cache_size,
2961 rs6000_cost->l2_cache_size,
2962 rs6000_cost->simultaneous_prefetches);
2966 #if TARGET_MACHO
2967 /* The Darwin version of SUBTARGET_OVERRIDE_OPTIONS. */
2969 static void
2970 darwin_rs6000_override_options (void)
2972 /* The Darwin ABI always includes AltiVec, can't be (validly) turned
2973 off. */
2974 rs6000_altivec_abi = 1;
2975 TARGET_ALTIVEC_VRSAVE = 1;
2976 rs6000_current_abi = ABI_DARWIN;
2978 if (DEFAULT_ABI == ABI_DARWIN
2979 && TARGET_64BIT)
2980 darwin_one_byte_bool = 1;
2982 if (TARGET_64BIT && ! TARGET_POWERPC64)
2984 rs6000_isa_flags |= OPTION_MASK_POWERPC64;
2985 warning (0, "-m64 requires PowerPC64 architecture, enabling");
2987 if (flag_mkernel)
2989 rs6000_default_long_calls = 1;
2990 rs6000_isa_flags |= OPTION_MASK_SOFT_FLOAT;
2993 /* Make -m64 imply -maltivec. Darwin's 64-bit ABI includes
2994 Altivec. */
2995 if (!flag_mkernel && !flag_apple_kext
2996 && TARGET_64BIT
2997 && ! (rs6000_isa_flags_explicit & OPTION_MASK_ALTIVEC))
2998 rs6000_isa_flags |= OPTION_MASK_ALTIVEC;
3000 /* Unless the user (not the configurer) has explicitly overridden
3001 it with -mcpu=G3 or -mno-altivec, then 10.5+ targets default to
3002 G4 unless targeting the kernel. */
3003 if (!flag_mkernel
3004 && !flag_apple_kext
3005 && strverscmp (darwin_macosx_version_min, "10.5") >= 0
3006 && ! (rs6000_isa_flags_explicit & OPTION_MASK_ALTIVEC)
3007 && ! global_options_set.x_rs6000_cpu_index)
3009 rs6000_isa_flags |= OPTION_MASK_ALTIVEC;
3012 #endif
3014 /* If not otherwise specified by a target, make 'long double' equivalent to
3015 'double'. */
3017 #ifndef RS6000_DEFAULT_LONG_DOUBLE_SIZE
3018 #define RS6000_DEFAULT_LONG_DOUBLE_SIZE 64
3019 #endif
3021 /* Return the builtin mask of the various options used that could affect which
3022 builtins were used. In the past we used target_flags, but we've run out of
3023 bits, and some options like SPE and PAIRED are no longer in
3024 target_flags. */
3026 HOST_WIDE_INT
3027 rs6000_builtin_mask_calculate (void)
3029 return (((TARGET_ALTIVEC) ? RS6000_BTM_ALTIVEC : 0)
3030 | ((TARGET_VSX) ? RS6000_BTM_VSX : 0)
3031 | ((TARGET_SPE) ? RS6000_BTM_SPE : 0)
3032 | ((TARGET_PAIRED_FLOAT) ? RS6000_BTM_PAIRED : 0)
3033 | ((TARGET_FRE) ? RS6000_BTM_FRE : 0)
3034 | ((TARGET_FRES) ? RS6000_BTM_FRES : 0)
3035 | ((TARGET_FRSQRTE) ? RS6000_BTM_FRSQRTE : 0)
3036 | ((TARGET_FRSQRTES) ? RS6000_BTM_FRSQRTES : 0)
3037 | ((TARGET_POPCNTD) ? RS6000_BTM_POPCNTD : 0)
3038 | ((rs6000_cpu == PROCESSOR_CELL) ? RS6000_BTM_CELL : 0)
3039 | ((TARGET_P8_VECTOR) ? RS6000_BTM_P8_VECTOR : 0)
3040 | ((TARGET_CRYPTO) ? RS6000_BTM_CRYPTO : 0)
3041 | ((TARGET_HTM) ? RS6000_BTM_HTM : 0)
3042 | ((TARGET_DFP) ? RS6000_BTM_DFP : 0)
3043 | ((TARGET_HARD_FLOAT) ? RS6000_BTM_HARD_FLOAT : 0));
3046 /* Override command line options. Mostly we process the processor type and
3047 sometimes adjust other TARGET_ options. */
3049 static bool
3050 rs6000_option_override_internal (bool global_init_p)
3052 bool ret = true;
3053 bool have_cpu = false;
3055 /* The default cpu requested at configure time, if any. */
3056 const char *implicit_cpu = OPTION_TARGET_CPU_DEFAULT;
3058 HOST_WIDE_INT set_masks;
3059 int cpu_index;
3060 int tune_index;
3061 struct cl_target_option *main_target_opt
3062 = ((global_init_p || target_option_default_node == NULL)
3063 ? NULL : TREE_TARGET_OPTION (target_option_default_node));
3065 /* Remember the explicit arguments. */
3066 if (global_init_p)
3067 rs6000_isa_flags_explicit = global_options_set.x_rs6000_isa_flags;
3069 /* On 64-bit Darwin, power alignment is ABI-incompatible with some C
3070 library functions, so warn about it. The flag may be useful for
3071 performance studies from time to time though, so don't disable it
3072 entirely. */
3073 if (global_options_set.x_rs6000_alignment_flags
3074 && rs6000_alignment_flags == MASK_ALIGN_POWER
3075 && DEFAULT_ABI == ABI_DARWIN
3076 && TARGET_64BIT)
3077 warning (0, "-malign-power is not supported for 64-bit Darwin;"
3078 " it is incompatible with the installed C and C++ libraries");
3080 /* Numerous experiment shows that IRA based loop pressure
3081 calculation works better for RTL loop invariant motion on targets
3082 with enough (>= 32) registers. It is an expensive optimization.
3083 So it is on only for peak performance. */
3084 if (optimize >= 3 && global_init_p
3085 && !global_options_set.x_flag_ira_loop_pressure)
3086 flag_ira_loop_pressure = 1;
3088 /* Set the pointer size. */
3089 if (TARGET_64BIT)
3091 rs6000_pmode = (int)DImode;
3092 rs6000_pointer_size = 64;
3094 else
3096 rs6000_pmode = (int)SImode;
3097 rs6000_pointer_size = 32;
3100 /* Some OSs don't support saving the high part of 64-bit registers on context
3101 switch. Other OSs don't support saving Altivec registers. On those OSs,
3102 we don't touch the OPTION_MASK_POWERPC64 or OPTION_MASK_ALTIVEC settings;
3103 if the user wants either, the user must explicitly specify them and we
3104 won't interfere with the user's specification. */
3106 set_masks = POWERPC_MASKS;
3107 #ifdef OS_MISSING_POWERPC64
3108 if (OS_MISSING_POWERPC64)
3109 set_masks &= ~OPTION_MASK_POWERPC64;
3110 #endif
3111 #ifdef OS_MISSING_ALTIVEC
3112 if (OS_MISSING_ALTIVEC)
3113 set_masks &= ~(OPTION_MASK_ALTIVEC | OPTION_MASK_VSX);
3114 #endif
3116 /* Don't override by the processor default if given explicitly. */
3117 set_masks &= ~rs6000_isa_flags_explicit;
3119 /* Process the -mcpu=<xxx> and -mtune=<xxx> argument. If the user changed
3120 the cpu in a target attribute or pragma, but did not specify a tuning
3121 option, use the cpu for the tuning option rather than the option specified
3122 with -mtune on the command line. Process a '--with-cpu' configuration
3123 request as an implicit --cpu. */
3124 if (rs6000_cpu_index >= 0)
3126 cpu_index = rs6000_cpu_index;
3127 have_cpu = true;
3129 else if (main_target_opt != NULL && main_target_opt->x_rs6000_cpu_index >= 0)
3131 rs6000_cpu_index = cpu_index = main_target_opt->x_rs6000_cpu_index;
3132 have_cpu = true;
3134 else if (implicit_cpu)
3136 rs6000_cpu_index = cpu_index = rs6000_cpu_name_lookup (implicit_cpu);
3137 have_cpu = true;
3139 else
3141 const char *default_cpu = (TARGET_POWERPC64 ? "powerpc64" : "powerpc");
3142 rs6000_cpu_index = cpu_index = rs6000_cpu_name_lookup (default_cpu);
3143 have_cpu = false;
3146 gcc_assert (cpu_index >= 0);
3148 /* If we have a cpu, either through an explicit -mcpu=<xxx> or if the
3149 compiler was configured with --with-cpu=<xxx>, replace all of the ISA bits
3150 with those from the cpu, except for options that were explicitly set. If
3151 we don't have a cpu, do not override the target bits set in
3152 TARGET_DEFAULT. */
3153 if (have_cpu)
3155 rs6000_isa_flags &= ~set_masks;
3156 rs6000_isa_flags |= (processor_target_table[cpu_index].target_enable
3157 & set_masks);
3159 else
3160 rs6000_isa_flags |= (processor_target_table[cpu_index].target_enable
3161 & ~rs6000_isa_flags_explicit);
3163 /* If no -mcpu=<xxx>, inherit any default options that were cleared via
3164 POWERPC_MASKS. Originally, TARGET_DEFAULT was used to initialize
3165 target_flags via the TARGET_DEFAULT_TARGET_FLAGS hook. When we switched
3166 to using rs6000_isa_flags, we need to do the initialization here. */
3167 if (!have_cpu)
3168 rs6000_isa_flags |= (TARGET_DEFAULT & ~rs6000_isa_flags_explicit);
3170 if (rs6000_tune_index >= 0)
3171 tune_index = rs6000_tune_index;
3172 else if (have_cpu)
3173 rs6000_tune_index = tune_index = cpu_index;
3174 else
3176 size_t i;
3177 enum processor_type tune_proc
3178 = (TARGET_POWERPC64 ? PROCESSOR_DEFAULT64 : PROCESSOR_DEFAULT);
3180 tune_index = -1;
3181 for (i = 0; i < ARRAY_SIZE (processor_target_table); i++)
3182 if (processor_target_table[i].processor == tune_proc)
3184 rs6000_tune_index = tune_index = i;
3185 break;
3189 gcc_assert (tune_index >= 0);
3190 rs6000_cpu = processor_target_table[tune_index].processor;
3192 /* Pick defaults for SPE related control flags. Do this early to make sure
3193 that the TARGET_ macros are representative ASAP. */
3195 int spe_capable_cpu =
3196 (rs6000_cpu == PROCESSOR_PPC8540
3197 || rs6000_cpu == PROCESSOR_PPC8548);
3199 if (!global_options_set.x_rs6000_spe_abi)
3200 rs6000_spe_abi = spe_capable_cpu;
3202 if (!global_options_set.x_rs6000_spe)
3203 rs6000_spe = spe_capable_cpu;
3205 if (!global_options_set.x_rs6000_float_gprs)
3206 rs6000_float_gprs =
3207 (rs6000_cpu == PROCESSOR_PPC8540 ? 1
3208 : rs6000_cpu == PROCESSOR_PPC8548 ? 2
3209 : 0);
3212 if (global_options_set.x_rs6000_spe_abi
3213 && rs6000_spe_abi
3214 && !TARGET_SPE_ABI)
3215 error ("not configured for SPE ABI");
3217 if (global_options_set.x_rs6000_spe
3218 && rs6000_spe
3219 && !TARGET_SPE)
3220 error ("not configured for SPE instruction set");
3222 if (main_target_opt != NULL
3223 && ((main_target_opt->x_rs6000_spe_abi != rs6000_spe_abi)
3224 || (main_target_opt->x_rs6000_spe != rs6000_spe)
3225 || (main_target_opt->x_rs6000_float_gprs != rs6000_float_gprs)))
3226 error ("target attribute or pragma changes SPE ABI");
3228 if (rs6000_cpu == PROCESSOR_PPCE300C2 || rs6000_cpu == PROCESSOR_PPCE300C3
3229 || rs6000_cpu == PROCESSOR_PPCE500MC || rs6000_cpu == PROCESSOR_PPCE500MC64
3230 || rs6000_cpu == PROCESSOR_PPCE5500)
3232 if (TARGET_ALTIVEC)
3233 error ("AltiVec not supported in this target");
3234 if (TARGET_SPE)
3235 error ("SPE not supported in this target");
3237 if (rs6000_cpu == PROCESSOR_PPCE6500)
3239 if (TARGET_SPE)
3240 error ("SPE not supported in this target");
3243 /* Disable Cell microcode if we are optimizing for the Cell
3244 and not optimizing for size. */
3245 if (rs6000_gen_cell_microcode == -1)
3246 rs6000_gen_cell_microcode = !(rs6000_cpu == PROCESSOR_CELL
3247 && !optimize_size);
3249 /* If we are optimizing big endian systems for space and it's OK to
3250 use instructions that would be microcoded on the Cell, use the
3251 load/store multiple and string instructions. */
3252 if (BYTES_BIG_ENDIAN && optimize_size && rs6000_gen_cell_microcode)
3253 rs6000_isa_flags |= ~rs6000_isa_flags_explicit & (OPTION_MASK_MULTIPLE
3254 | OPTION_MASK_STRING);
3256 /* Don't allow -mmultiple or -mstring on little endian systems
3257 unless the cpu is a 750, because the hardware doesn't support the
3258 instructions used in little endian mode, and causes an alignment
3259 trap. The 750 does not cause an alignment trap (except when the
3260 target is unaligned). */
3262 if (!BYTES_BIG_ENDIAN && rs6000_cpu != PROCESSOR_PPC750)
3264 if (TARGET_MULTIPLE)
3266 rs6000_isa_flags &= ~OPTION_MASK_MULTIPLE;
3267 if ((rs6000_isa_flags_explicit & OPTION_MASK_MULTIPLE) != 0)
3268 warning (0, "-mmultiple is not supported on little endian systems");
3271 if (TARGET_STRING)
3273 rs6000_isa_flags &= ~OPTION_MASK_STRING;
3274 if ((rs6000_isa_flags_explicit & OPTION_MASK_STRING) != 0)
3275 warning (0, "-mstring is not supported on little endian systems");
3279 /* If little-endian, default to -mstrict-align on older processors.
3280 Testing for htm matches power8 and later. */
3281 if (!BYTES_BIG_ENDIAN
3282 && !(processor_target_table[tune_index].target_enable & OPTION_MASK_HTM))
3283 rs6000_isa_flags |= ~rs6000_isa_flags_explicit & OPTION_MASK_STRICT_ALIGN;
3285 /* -maltivec={le,be} implies -maltivec. */
3286 if (rs6000_altivec_element_order != 0)
3287 rs6000_isa_flags |= OPTION_MASK_ALTIVEC;
3289 /* Disallow -maltivec=le in big endian mode for now. This is not
3290 known to be useful for anyone. */
3291 if (BYTES_BIG_ENDIAN && rs6000_altivec_element_order == 1)
3293 warning (0, N_("-maltivec=le not allowed for big-endian targets"));
3294 rs6000_altivec_element_order = 0;
3297 /* Add some warnings for VSX. */
3298 if (TARGET_VSX)
3300 const char *msg = NULL;
3301 if (!TARGET_HARD_FLOAT || !TARGET_FPRS
3302 || !TARGET_SINGLE_FLOAT || !TARGET_DOUBLE_FLOAT)
3304 if (rs6000_isa_flags_explicit & OPTION_MASK_VSX)
3305 msg = N_("-mvsx requires hardware floating point");
3306 else
3308 rs6000_isa_flags &= ~ OPTION_MASK_VSX;
3309 rs6000_isa_flags_explicit |= OPTION_MASK_VSX;
3312 else if (TARGET_PAIRED_FLOAT)
3313 msg = N_("-mvsx and -mpaired are incompatible");
3314 else if (TARGET_AVOID_XFORM > 0)
3315 msg = N_("-mvsx needs indexed addressing");
3316 else if (!TARGET_ALTIVEC && (rs6000_isa_flags_explicit
3317 & OPTION_MASK_ALTIVEC))
3319 if (rs6000_isa_flags_explicit & OPTION_MASK_VSX)
3320 msg = N_("-mvsx and -mno-altivec are incompatible");
3321 else
3322 msg = N_("-mno-altivec disables vsx");
3325 if (msg)
3327 warning (0, msg);
3328 rs6000_isa_flags &= ~ OPTION_MASK_VSX;
3329 rs6000_isa_flags_explicit |= OPTION_MASK_VSX;
3333 /* If hard-float/altivec/vsx were explicitly turned off then don't allow
3334 the -mcpu setting to enable options that conflict. */
3335 if ((!TARGET_HARD_FLOAT || !TARGET_ALTIVEC || !TARGET_VSX)
3336 && (rs6000_isa_flags_explicit & (OPTION_MASK_SOFT_FLOAT
3337 | OPTION_MASK_ALTIVEC
3338 | OPTION_MASK_VSX)) != 0)
3339 rs6000_isa_flags &= ~((OPTION_MASK_P8_VECTOR | OPTION_MASK_CRYPTO
3340 | OPTION_MASK_DIRECT_MOVE)
3341 & ~rs6000_isa_flags_explicit);
3343 if (TARGET_DEBUG_REG || TARGET_DEBUG_TARGET)
3344 rs6000_print_isa_options (stderr, 0, "before defaults", rs6000_isa_flags);
3346 /* For the newer switches (vsx, dfp, etc.) set some of the older options,
3347 unless the user explicitly used the -mno-<option> to disable the code. */
3348 if (TARGET_P8_VECTOR || TARGET_DIRECT_MOVE || TARGET_CRYPTO)
3349 rs6000_isa_flags |= (ISA_2_7_MASKS_SERVER & ~rs6000_isa_flags_explicit);
3350 else if (TARGET_VSX)
3351 rs6000_isa_flags |= (ISA_2_6_MASKS_SERVER & ~rs6000_isa_flags_explicit);
3352 else if (TARGET_POPCNTD)
3353 rs6000_isa_flags |= (ISA_2_6_MASKS_EMBEDDED & ~rs6000_isa_flags_explicit);
3354 else if (TARGET_DFP)
3355 rs6000_isa_flags |= (ISA_2_5_MASKS_SERVER & ~rs6000_isa_flags_explicit);
3356 else if (TARGET_CMPB)
3357 rs6000_isa_flags |= (ISA_2_5_MASKS_EMBEDDED & ~rs6000_isa_flags_explicit);
3358 else if (TARGET_FPRND)
3359 rs6000_isa_flags |= (ISA_2_4_MASKS & ~rs6000_isa_flags_explicit);
3360 else if (TARGET_POPCNTB)
3361 rs6000_isa_flags |= (ISA_2_2_MASKS & ~rs6000_isa_flags_explicit);
3362 else if (TARGET_ALTIVEC)
3363 rs6000_isa_flags |= (OPTION_MASK_PPC_GFXOPT & ~rs6000_isa_flags_explicit);
3365 if (TARGET_CRYPTO && !TARGET_ALTIVEC)
3367 if (rs6000_isa_flags_explicit & OPTION_MASK_CRYPTO)
3368 error ("-mcrypto requires -maltivec");
3369 rs6000_isa_flags &= ~OPTION_MASK_CRYPTO;
3372 if (TARGET_DIRECT_MOVE && !TARGET_VSX)
3374 if (rs6000_isa_flags_explicit & OPTION_MASK_DIRECT_MOVE)
3375 error ("-mdirect-move requires -mvsx");
3376 rs6000_isa_flags &= ~OPTION_MASK_DIRECT_MOVE;
3379 if (TARGET_P8_VECTOR && !TARGET_ALTIVEC)
3381 if (rs6000_isa_flags_explicit & OPTION_MASK_P8_VECTOR)
3382 error ("-mpower8-vector requires -maltivec");
3383 rs6000_isa_flags &= ~OPTION_MASK_P8_VECTOR;
3386 if (TARGET_P8_VECTOR && !TARGET_VSX)
3388 if (rs6000_isa_flags_explicit & OPTION_MASK_P8_VECTOR)
3389 error ("-mpower8-vector requires -mvsx");
3390 rs6000_isa_flags &= ~OPTION_MASK_P8_VECTOR;
3393 if (TARGET_VSX_TIMODE && !TARGET_VSX)
3395 if (rs6000_isa_flags_explicit & OPTION_MASK_VSX_TIMODE)
3396 error ("-mvsx-timode requires -mvsx");
3397 rs6000_isa_flags &= ~OPTION_MASK_VSX_TIMODE;
3400 if (TARGET_DFP && !TARGET_HARD_FLOAT)
3402 if (rs6000_isa_flags_explicit & OPTION_MASK_DFP)
3403 error ("-mhard-dfp requires -mhard-float");
3404 rs6000_isa_flags &= ~OPTION_MASK_DFP;
3407 /* The quad memory instructions only works in 64-bit mode. In 32-bit mode,
3408 silently turn off quad memory mode. */
3409 if ((TARGET_QUAD_MEMORY || TARGET_QUAD_MEMORY_ATOMIC) && !TARGET_POWERPC64)
3411 if ((rs6000_isa_flags_explicit & OPTION_MASK_QUAD_MEMORY) != 0)
3412 warning (0, N_("-mquad-memory requires 64-bit mode"));
3414 if ((rs6000_isa_flags_explicit & OPTION_MASK_QUAD_MEMORY_ATOMIC) != 0)
3415 warning (0, N_("-mquad-memory-atomic requires 64-bit mode"));
3417 rs6000_isa_flags &= ~(OPTION_MASK_QUAD_MEMORY
3418 | OPTION_MASK_QUAD_MEMORY_ATOMIC);
3421 /* Non-atomic quad memory load/store are disabled for little endian, since
3422 the words are reversed, but atomic operations can still be done by
3423 swapping the words. */
3424 if (TARGET_QUAD_MEMORY && !WORDS_BIG_ENDIAN)
3426 if ((rs6000_isa_flags_explicit & OPTION_MASK_QUAD_MEMORY) != 0)
3427 warning (0, N_("-mquad-memory is not available in little endian mode"));
3429 rs6000_isa_flags &= ~OPTION_MASK_QUAD_MEMORY;
3432 /* Assume if the user asked for normal quad memory instructions, they want
3433 the atomic versions as well, unless they explicity told us not to use quad
3434 word atomic instructions. */
3435 if (TARGET_QUAD_MEMORY
3436 && !TARGET_QUAD_MEMORY_ATOMIC
3437 && ((rs6000_isa_flags_explicit & OPTION_MASK_QUAD_MEMORY_ATOMIC) == 0))
3438 rs6000_isa_flags |= OPTION_MASK_QUAD_MEMORY_ATOMIC;
3440 /* Enable power8 fusion if we are tuning for power8, even if we aren't
3441 generating power8 instructions. */
3442 if (!(rs6000_isa_flags_explicit & OPTION_MASK_P8_FUSION))
3443 rs6000_isa_flags |= (processor_target_table[tune_index].target_enable
3444 & OPTION_MASK_P8_FUSION);
3446 /* Power8 does not fuse sign extended loads with the addis. If we are
3447 optimizing at high levels for speed, convert a sign extended load into a
3448 zero extending load, and an explicit sign extension. */
3449 if (TARGET_P8_FUSION
3450 && !(rs6000_isa_flags_explicit & OPTION_MASK_P8_FUSION_SIGN)
3451 && optimize_function_for_speed_p (cfun)
3452 && optimize >= 3)
3453 rs6000_isa_flags |= OPTION_MASK_P8_FUSION_SIGN;
3455 if (TARGET_DEBUG_REG || TARGET_DEBUG_TARGET)
3456 rs6000_print_isa_options (stderr, 0, "after defaults", rs6000_isa_flags);
3458 /* E500mc does "better" if we inline more aggressively. Respect the
3459 user's opinion, though. */
3460 if (rs6000_block_move_inline_limit == 0
3461 && (rs6000_cpu == PROCESSOR_PPCE500MC
3462 || rs6000_cpu == PROCESSOR_PPCE500MC64
3463 || rs6000_cpu == PROCESSOR_PPCE5500
3464 || rs6000_cpu == PROCESSOR_PPCE6500))
3465 rs6000_block_move_inline_limit = 128;
3467 /* store_one_arg depends on expand_block_move to handle at least the
3468 size of reg_parm_stack_space. */
3469 if (rs6000_block_move_inline_limit < (TARGET_POWERPC64 ? 64 : 32))
3470 rs6000_block_move_inline_limit = (TARGET_POWERPC64 ? 64 : 32);
3472 if (global_init_p)
3474 /* If the appropriate debug option is enabled, replace the target hooks
3475 with debug versions that call the real version and then prints
3476 debugging information. */
3477 if (TARGET_DEBUG_COST)
3479 targetm.rtx_costs = rs6000_debug_rtx_costs;
3480 targetm.address_cost = rs6000_debug_address_cost;
3481 targetm.sched.adjust_cost = rs6000_debug_adjust_cost;
3484 if (TARGET_DEBUG_ADDR)
3486 targetm.legitimate_address_p = rs6000_debug_legitimate_address_p;
3487 targetm.legitimize_address = rs6000_debug_legitimize_address;
3488 rs6000_secondary_reload_class_ptr
3489 = rs6000_debug_secondary_reload_class;
3490 rs6000_secondary_memory_needed_ptr
3491 = rs6000_debug_secondary_memory_needed;
3492 rs6000_cannot_change_mode_class_ptr
3493 = rs6000_debug_cannot_change_mode_class;
3494 rs6000_preferred_reload_class_ptr
3495 = rs6000_debug_preferred_reload_class;
3496 rs6000_legitimize_reload_address_ptr
3497 = rs6000_debug_legitimize_reload_address;
3498 rs6000_mode_dependent_address_ptr
3499 = rs6000_debug_mode_dependent_address;
3502 if (rs6000_veclibabi_name)
3504 if (strcmp (rs6000_veclibabi_name, "mass") == 0)
3505 rs6000_veclib_handler = rs6000_builtin_vectorized_libmass;
3506 else
3508 error ("unknown vectorization library ABI type (%s) for "
3509 "-mveclibabi= switch", rs6000_veclibabi_name);
3510 ret = false;
3515 if (!global_options_set.x_rs6000_long_double_type_size)
3517 if (main_target_opt != NULL
3518 && (main_target_opt->x_rs6000_long_double_type_size
3519 != RS6000_DEFAULT_LONG_DOUBLE_SIZE))
3520 error ("target attribute or pragma changes long double size");
3521 else
3522 rs6000_long_double_type_size = RS6000_DEFAULT_LONG_DOUBLE_SIZE;
3525 #if !defined (POWERPC_LINUX) && !defined (POWERPC_FREEBSD)
3526 if (!global_options_set.x_rs6000_ieeequad)
3527 rs6000_ieeequad = 1;
3528 #endif
3530 /* Disable VSX and Altivec silently if the user switched cpus to power7 in a
3531 target attribute or pragma which automatically enables both options,
3532 unless the altivec ABI was set. This is set by default for 64-bit, but
3533 not for 32-bit. */
3534 if (main_target_opt != NULL && !main_target_opt->x_rs6000_altivec_abi)
3535 rs6000_isa_flags &= ~((OPTION_MASK_VSX | OPTION_MASK_ALTIVEC)
3536 & ~rs6000_isa_flags_explicit);
3538 /* Enable Altivec ABI for AIX -maltivec. */
3539 if (TARGET_XCOFF && (TARGET_ALTIVEC || TARGET_VSX))
3541 if (main_target_opt != NULL && !main_target_opt->x_rs6000_altivec_abi)
3542 error ("target attribute or pragma changes AltiVec ABI");
3543 else
3544 rs6000_altivec_abi = 1;
3547 /* The AltiVec ABI is the default for PowerPC-64 GNU/Linux. For
3548 PowerPC-32 GNU/Linux, -maltivec implies the AltiVec ABI. It can
3549 be explicitly overridden in either case. */
3550 if (TARGET_ELF)
3552 if (!global_options_set.x_rs6000_altivec_abi
3553 && (TARGET_64BIT || TARGET_ALTIVEC || TARGET_VSX))
3555 if (main_target_opt != NULL &&
3556 !main_target_opt->x_rs6000_altivec_abi)
3557 error ("target attribute or pragma changes AltiVec ABI");
3558 else
3559 rs6000_altivec_abi = 1;
3563 /* Set the Darwin64 ABI as default for 64-bit Darwin.
3564 So far, the only darwin64 targets are also MACH-O. */
3565 if (TARGET_MACHO
3566 && DEFAULT_ABI == ABI_DARWIN
3567 && TARGET_64BIT)
3569 if (main_target_opt != NULL && !main_target_opt->x_rs6000_darwin64_abi)
3570 error ("target attribute or pragma changes darwin64 ABI");
3571 else
3573 rs6000_darwin64_abi = 1;
3574 /* Default to natural alignment, for better performance. */
3575 rs6000_alignment_flags = MASK_ALIGN_NATURAL;
3579 /* Place FP constants in the constant pool instead of TOC
3580 if section anchors enabled. */
3581 if (flag_section_anchors
3582 && !global_options_set.x_TARGET_NO_FP_IN_TOC)
3583 TARGET_NO_FP_IN_TOC = 1;
3585 if (TARGET_DEBUG_REG || TARGET_DEBUG_TARGET)
3586 rs6000_print_isa_options (stderr, 0, "before subtarget", rs6000_isa_flags);
3588 #ifdef SUBTARGET_OVERRIDE_OPTIONS
3589 SUBTARGET_OVERRIDE_OPTIONS;
3590 #endif
3591 #ifdef SUBSUBTARGET_OVERRIDE_OPTIONS
3592 SUBSUBTARGET_OVERRIDE_OPTIONS;
3593 #endif
3594 #ifdef SUB3TARGET_OVERRIDE_OPTIONS
3595 SUB3TARGET_OVERRIDE_OPTIONS;
3596 #endif
3598 if (TARGET_DEBUG_REG || TARGET_DEBUG_TARGET)
3599 rs6000_print_isa_options (stderr, 0, "after subtarget", rs6000_isa_flags);
3601 /* For the E500 family of cores, reset the single/double FP flags to let us
3602 check that they remain constant across attributes or pragmas. Also,
3603 clear a possible request for string instructions, not supported and which
3604 we might have silently queried above for -Os.
3606 For other families, clear ISEL in case it was set implicitly.
3609 switch (rs6000_cpu)
3611 case PROCESSOR_PPC8540:
3612 case PROCESSOR_PPC8548:
3613 case PROCESSOR_PPCE500MC:
3614 case PROCESSOR_PPCE500MC64:
3615 case PROCESSOR_PPCE5500:
3616 case PROCESSOR_PPCE6500:
3618 rs6000_single_float = TARGET_E500_SINGLE || TARGET_E500_DOUBLE;
3619 rs6000_double_float = TARGET_E500_DOUBLE;
3621 rs6000_isa_flags &= ~OPTION_MASK_STRING;
3623 break;
3625 default:
3627 if (have_cpu && !(rs6000_isa_flags_explicit & OPTION_MASK_ISEL))
3628 rs6000_isa_flags &= ~OPTION_MASK_ISEL;
3630 break;
3633 if (main_target_opt)
3635 if (main_target_opt->x_rs6000_single_float != rs6000_single_float)
3636 error ("target attribute or pragma changes single precision floating "
3637 "point");
3638 if (main_target_opt->x_rs6000_double_float != rs6000_double_float)
3639 error ("target attribute or pragma changes double precision floating "
3640 "point");
3643 /* Detect invalid option combinations with E500. */
3644 CHECK_E500_OPTIONS;
3646 rs6000_always_hint = (rs6000_cpu != PROCESSOR_POWER4
3647 && rs6000_cpu != PROCESSOR_POWER5
3648 && rs6000_cpu != PROCESSOR_POWER6
3649 && rs6000_cpu != PROCESSOR_POWER7
3650 && rs6000_cpu != PROCESSOR_POWER8
3651 && rs6000_cpu != PROCESSOR_PPCA2
3652 && rs6000_cpu != PROCESSOR_CELL
3653 && rs6000_cpu != PROCESSOR_PPC476);
3654 rs6000_sched_groups = (rs6000_cpu == PROCESSOR_POWER4
3655 || rs6000_cpu == PROCESSOR_POWER5
3656 || rs6000_cpu == PROCESSOR_POWER7
3657 || rs6000_cpu == PROCESSOR_POWER8);
3658 rs6000_align_branch_targets = (rs6000_cpu == PROCESSOR_POWER4
3659 || rs6000_cpu == PROCESSOR_POWER5
3660 || rs6000_cpu == PROCESSOR_POWER6
3661 || rs6000_cpu == PROCESSOR_POWER7
3662 || rs6000_cpu == PROCESSOR_POWER8
3663 || rs6000_cpu == PROCESSOR_PPCE500MC
3664 || rs6000_cpu == PROCESSOR_PPCE500MC64
3665 || rs6000_cpu == PROCESSOR_PPCE5500
3666 || rs6000_cpu == PROCESSOR_PPCE6500);
3668 /* Allow debug switches to override the above settings. These are set to -1
3669 in rs6000.opt to indicate the user hasn't directly set the switch. */
3670 if (TARGET_ALWAYS_HINT >= 0)
3671 rs6000_always_hint = TARGET_ALWAYS_HINT;
3673 if (TARGET_SCHED_GROUPS >= 0)
3674 rs6000_sched_groups = TARGET_SCHED_GROUPS;
3676 if (TARGET_ALIGN_BRANCH_TARGETS >= 0)
3677 rs6000_align_branch_targets = TARGET_ALIGN_BRANCH_TARGETS;
3679 rs6000_sched_restricted_insns_priority
3680 = (rs6000_sched_groups ? 1 : 0);
3682 /* Handle -msched-costly-dep option. */
3683 rs6000_sched_costly_dep
3684 = (rs6000_sched_groups ? true_store_to_load_dep_costly : no_dep_costly);
3686 if (rs6000_sched_costly_dep_str)
3688 if (! strcmp (rs6000_sched_costly_dep_str, "no"))
3689 rs6000_sched_costly_dep = no_dep_costly;
3690 else if (! strcmp (rs6000_sched_costly_dep_str, "all"))
3691 rs6000_sched_costly_dep = all_deps_costly;
3692 else if (! strcmp (rs6000_sched_costly_dep_str, "true_store_to_load"))
3693 rs6000_sched_costly_dep = true_store_to_load_dep_costly;
3694 else if (! strcmp (rs6000_sched_costly_dep_str, "store_to_load"))
3695 rs6000_sched_costly_dep = store_to_load_dep_costly;
3696 else
3697 rs6000_sched_costly_dep = ((enum rs6000_dependence_cost)
3698 atoi (rs6000_sched_costly_dep_str));
3701 /* Handle -minsert-sched-nops option. */
3702 rs6000_sched_insert_nops
3703 = (rs6000_sched_groups ? sched_finish_regroup_exact : sched_finish_none);
3705 if (rs6000_sched_insert_nops_str)
3707 if (! strcmp (rs6000_sched_insert_nops_str, "no"))
3708 rs6000_sched_insert_nops = sched_finish_none;
3709 else if (! strcmp (rs6000_sched_insert_nops_str, "pad"))
3710 rs6000_sched_insert_nops = sched_finish_pad_groups;
3711 else if (! strcmp (rs6000_sched_insert_nops_str, "regroup_exact"))
3712 rs6000_sched_insert_nops = sched_finish_regroup_exact;
3713 else
3714 rs6000_sched_insert_nops = ((enum rs6000_nop_insertion)
3715 atoi (rs6000_sched_insert_nops_str));
3718 if (global_init_p)
3720 #ifdef TARGET_REGNAMES
3721 /* If the user desires alternate register names, copy in the
3722 alternate names now. */
3723 if (TARGET_REGNAMES)
3724 memcpy (rs6000_reg_names, alt_reg_names, sizeof (rs6000_reg_names));
3725 #endif
3727 /* Set aix_struct_return last, after the ABI is determined.
3728 If -maix-struct-return or -msvr4-struct-return was explicitly
3729 used, don't override with the ABI default. */
3730 if (!global_options_set.x_aix_struct_return)
3731 aix_struct_return = (DEFAULT_ABI != ABI_V4 || DRAFT_V4_STRUCT_RET);
3733 #if 0
3734 /* IBM XL compiler defaults to unsigned bitfields. */
3735 if (TARGET_XL_COMPAT)
3736 flag_signed_bitfields = 0;
3737 #endif
3739 if (TARGET_LONG_DOUBLE_128 && !TARGET_IEEEQUAD)
3740 REAL_MODE_FORMAT (TFmode) = &ibm_extended_format;
3742 if (TARGET_TOC)
3743 ASM_GENERATE_INTERNAL_LABEL (toc_label_name, "LCTOC", 1);
3745 /* We can only guarantee the availability of DI pseudo-ops when
3746 assembling for 64-bit targets. */
3747 if (!TARGET_64BIT)
3749 targetm.asm_out.aligned_op.di = NULL;
3750 targetm.asm_out.unaligned_op.di = NULL;
3754 /* Set branch target alignment, if not optimizing for size. */
3755 if (!optimize_size)
3757 /* Cell wants to be aligned 8byte for dual issue. Titan wants to be
3758 aligned 8byte to avoid misprediction by the branch predictor. */
3759 if (rs6000_cpu == PROCESSOR_TITAN
3760 || rs6000_cpu == PROCESSOR_CELL)
3762 if (align_functions <= 0)
3763 align_functions = 8;
3764 if (align_jumps <= 0)
3765 align_jumps = 8;
3766 if (align_loops <= 0)
3767 align_loops = 8;
3769 if (rs6000_align_branch_targets)
3771 if (align_functions <= 0)
3772 align_functions = 16;
3773 if (align_jumps <= 0)
3774 align_jumps = 16;
3775 if (align_loops <= 0)
3777 can_override_loop_align = 1;
3778 align_loops = 16;
3781 if (align_jumps_max_skip <= 0)
3782 align_jumps_max_skip = 15;
3783 if (align_loops_max_skip <= 0)
3784 align_loops_max_skip = 15;
3787 /* Arrange to save and restore machine status around nested functions. */
3788 init_machine_status = rs6000_init_machine_status;
3790 /* We should always be splitting complex arguments, but we can't break
3791 Linux and Darwin ABIs at the moment. For now, only AIX is fixed. */
3792 if (DEFAULT_ABI == ABI_V4 || DEFAULT_ABI == ABI_DARWIN)
3793 targetm.calls.split_complex_arg = NULL;
3796 /* Initialize rs6000_cost with the appropriate target costs. */
3797 if (optimize_size)
3798 rs6000_cost = TARGET_POWERPC64 ? &size64_cost : &size32_cost;
3799 else
3800 switch (rs6000_cpu)
3802 case PROCESSOR_RS64A:
3803 rs6000_cost = &rs64a_cost;
3804 break;
3806 case PROCESSOR_MPCCORE:
3807 rs6000_cost = &mpccore_cost;
3808 break;
3810 case PROCESSOR_PPC403:
3811 rs6000_cost = &ppc403_cost;
3812 break;
3814 case PROCESSOR_PPC405:
3815 rs6000_cost = &ppc405_cost;
3816 break;
3818 case PROCESSOR_PPC440:
3819 rs6000_cost = &ppc440_cost;
3820 break;
3822 case PROCESSOR_PPC476:
3823 rs6000_cost = &ppc476_cost;
3824 break;
3826 case PROCESSOR_PPC601:
3827 rs6000_cost = &ppc601_cost;
3828 break;
3830 case PROCESSOR_PPC603:
3831 rs6000_cost = &ppc603_cost;
3832 break;
3834 case PROCESSOR_PPC604:
3835 rs6000_cost = &ppc604_cost;
3836 break;
3838 case PROCESSOR_PPC604e:
3839 rs6000_cost = &ppc604e_cost;
3840 break;
3842 case PROCESSOR_PPC620:
3843 rs6000_cost = &ppc620_cost;
3844 break;
3846 case PROCESSOR_PPC630:
3847 rs6000_cost = &ppc630_cost;
3848 break;
3850 case PROCESSOR_CELL:
3851 rs6000_cost = &ppccell_cost;
3852 break;
3854 case PROCESSOR_PPC750:
3855 case PROCESSOR_PPC7400:
3856 rs6000_cost = &ppc750_cost;
3857 break;
3859 case PROCESSOR_PPC7450:
3860 rs6000_cost = &ppc7450_cost;
3861 break;
3863 case PROCESSOR_PPC8540:
3864 case PROCESSOR_PPC8548:
3865 rs6000_cost = &ppc8540_cost;
3866 break;
3868 case PROCESSOR_PPCE300C2:
3869 case PROCESSOR_PPCE300C3:
3870 rs6000_cost = &ppce300c2c3_cost;
3871 break;
3873 case PROCESSOR_PPCE500MC:
3874 rs6000_cost = &ppce500mc_cost;
3875 break;
3877 case PROCESSOR_PPCE500MC64:
3878 rs6000_cost = &ppce500mc64_cost;
3879 break;
3881 case PROCESSOR_PPCE5500:
3882 rs6000_cost = &ppce5500_cost;
3883 break;
3885 case PROCESSOR_PPCE6500:
3886 rs6000_cost = &ppce6500_cost;
3887 break;
3889 case PROCESSOR_TITAN:
3890 rs6000_cost = &titan_cost;
3891 break;
3893 case PROCESSOR_POWER4:
3894 case PROCESSOR_POWER5:
3895 rs6000_cost = &power4_cost;
3896 break;
3898 case PROCESSOR_POWER6:
3899 rs6000_cost = &power6_cost;
3900 break;
3902 case PROCESSOR_POWER7:
3903 rs6000_cost = &power7_cost;
3904 break;
3906 case PROCESSOR_POWER8:
3907 rs6000_cost = &power8_cost;
3908 break;
3910 case PROCESSOR_PPCA2:
3911 rs6000_cost = &ppca2_cost;
3912 break;
3914 default:
3915 gcc_unreachable ();
3918 if (global_init_p)
3920 maybe_set_param_value (PARAM_SIMULTANEOUS_PREFETCHES,
3921 rs6000_cost->simultaneous_prefetches,
3922 global_options.x_param_values,
3923 global_options_set.x_param_values);
3924 maybe_set_param_value (PARAM_L1_CACHE_SIZE, rs6000_cost->l1_cache_size,
3925 global_options.x_param_values,
3926 global_options_set.x_param_values);
3927 maybe_set_param_value (PARAM_L1_CACHE_LINE_SIZE,
3928 rs6000_cost->cache_line_size,
3929 global_options.x_param_values,
3930 global_options_set.x_param_values);
3931 maybe_set_param_value (PARAM_L2_CACHE_SIZE, rs6000_cost->l2_cache_size,
3932 global_options.x_param_values,
3933 global_options_set.x_param_values);
3935 /* Increase loop peeling limits based on performance analysis. */
3936 maybe_set_param_value (PARAM_MAX_PEELED_INSNS, 400,
3937 global_options.x_param_values,
3938 global_options_set.x_param_values);
3939 maybe_set_param_value (PARAM_MAX_COMPLETELY_PEELED_INSNS, 400,
3940 global_options.x_param_values,
3941 global_options_set.x_param_values);
3943 /* If using typedef char *va_list, signal that
3944 __builtin_va_start (&ap, 0) can be optimized to
3945 ap = __builtin_next_arg (0). */
3946 if (DEFAULT_ABI != ABI_V4)
3947 targetm.expand_builtin_va_start = NULL;
3950 /* Set up single/double float flags.
3951 If TARGET_HARD_FLOAT is set, but neither single or double is set,
3952 then set both flags. */
3953 if (TARGET_HARD_FLOAT && TARGET_FPRS
3954 && rs6000_single_float == 0 && rs6000_double_float == 0)
3955 rs6000_single_float = rs6000_double_float = 1;
3957 /* If not explicitly specified via option, decide whether to generate indexed
3958 load/store instructions. */
3959 if (TARGET_AVOID_XFORM == -1)
3960 /* Avoid indexed addressing when targeting Power6 in order to avoid the
3961 DERAT mispredict penalty. However the LVE and STVE altivec instructions
3962 need indexed accesses and the type used is the scalar type of the element
3963 being loaded or stored. */
3964 TARGET_AVOID_XFORM = (rs6000_cpu == PROCESSOR_POWER6 && TARGET_CMPB
3965 && !TARGET_ALTIVEC);
3967 /* Set the -mrecip options. */
3968 if (rs6000_recip_name)
3970 char *p = ASTRDUP (rs6000_recip_name);
3971 char *q;
3972 unsigned int mask, i;
3973 bool invert;
3975 while ((q = strtok (p, ",")) != NULL)
3977 p = NULL;
3978 if (*q == '!')
3980 invert = true;
3981 q++;
3983 else
3984 invert = false;
3986 if (!strcmp (q, "default"))
3987 mask = ((TARGET_RECIP_PRECISION)
3988 ? RECIP_HIGH_PRECISION : RECIP_LOW_PRECISION);
3989 else
3991 for (i = 0; i < ARRAY_SIZE (recip_options); i++)
3992 if (!strcmp (q, recip_options[i].string))
3994 mask = recip_options[i].mask;
3995 break;
3998 if (i == ARRAY_SIZE (recip_options))
4000 error ("unknown option for -mrecip=%s", q);
4001 invert = false;
4002 mask = 0;
4003 ret = false;
4007 if (invert)
4008 rs6000_recip_control &= ~mask;
4009 else
4010 rs6000_recip_control |= mask;
4014 /* Set the builtin mask of the various options used that could affect which
4015 builtins were used. In the past we used target_flags, but we've run out
4016 of bits, and some options like SPE and PAIRED are no longer in
4017 target_flags. */
4018 rs6000_builtin_mask = rs6000_builtin_mask_calculate ();
4019 if (TARGET_DEBUG_BUILTIN || TARGET_DEBUG_TARGET)
4021 fprintf (stderr,
4022 "new builtin mask = " HOST_WIDE_INT_PRINT_HEX ", ",
4023 rs6000_builtin_mask);
4024 rs6000_print_builtin_options (stderr, 0, NULL, rs6000_builtin_mask);
4027 /* Initialize all of the registers. */
4028 rs6000_init_hard_regno_mode_ok (global_init_p);
4030 /* Save the initial options in case the user does function specific options */
4031 if (global_init_p)
4032 target_option_default_node = target_option_current_node
4033 = build_target_option_node (&global_options);
4035 /* If not explicitly specified via option, decide whether to generate the
4036 extra blr's required to preserve the link stack on some cpus (eg, 476). */
4037 if (TARGET_LINK_STACK == -1)
4038 SET_TARGET_LINK_STACK (rs6000_cpu == PROCESSOR_PPC476 && flag_pic);
4040 return ret;
4043 /* Implement TARGET_OPTION_OVERRIDE. On the RS/6000 this is used to
4044 define the target cpu type. */
4046 static void
4047 rs6000_option_override (void)
4049 (void) rs6000_option_override_internal (true);
4053 /* Implement targetm.vectorize.builtin_mask_for_load. */
4054 static tree
4055 rs6000_builtin_mask_for_load (void)
4057 if (TARGET_ALTIVEC || TARGET_VSX)
4058 return altivec_builtin_mask_for_load;
4059 else
4060 return 0;
4063 /* Implement LOOP_ALIGN. */
4065 rs6000_loop_align (rtx label)
4067 basic_block bb;
4068 int ninsns;
4070 /* Don't override loop alignment if -falign-loops was specified. */
4071 if (!can_override_loop_align)
4072 return align_loops_log;
4074 bb = BLOCK_FOR_INSN (label);
4075 ninsns = num_loop_insns(bb->loop_father);
4077 /* Align small loops to 32 bytes to fit in an icache sector, otherwise return default. */
4078 if (ninsns > 4 && ninsns <= 8
4079 && (rs6000_cpu == PROCESSOR_POWER4
4080 || rs6000_cpu == PROCESSOR_POWER5
4081 || rs6000_cpu == PROCESSOR_POWER6
4082 || rs6000_cpu == PROCESSOR_POWER7
4083 || rs6000_cpu == PROCESSOR_POWER8))
4084 return 5;
4085 else
4086 return align_loops_log;
4089 /* Implement TARGET_LOOP_ALIGN_MAX_SKIP. */
4090 static int
4091 rs6000_loop_align_max_skip (rtx label)
4093 return (1 << rs6000_loop_align (label)) - 1;
4096 /* Return true iff, data reference of TYPE can reach vector alignment (16)
4097 after applying N number of iterations. This routine does not determine
4098 how may iterations are required to reach desired alignment. */
4100 static bool
4101 rs6000_vector_alignment_reachable (const_tree type ATTRIBUTE_UNUSED, bool is_packed)
4103 if (is_packed)
4104 return false;
4106 if (TARGET_32BIT)
4108 if (rs6000_alignment_flags == MASK_ALIGN_NATURAL)
4109 return true;
4111 if (rs6000_alignment_flags == MASK_ALIGN_POWER)
4112 return true;
4114 return false;
4116 else
4118 if (TARGET_MACHO)
4119 return false;
4121 /* Assuming that all other types are naturally aligned. CHECKME! */
4122 return true;
4126 /* Return true if the vector misalignment factor is supported by the
4127 target. */
4128 static bool
4129 rs6000_builtin_support_vector_misalignment (enum machine_mode mode,
4130 const_tree type,
4131 int misalignment,
4132 bool is_packed)
4134 if (TARGET_VSX)
4136 /* Return if movmisalign pattern is not supported for this mode. */
4137 if (optab_handler (movmisalign_optab, mode) == CODE_FOR_nothing)
4138 return false;
4140 if (misalignment == -1)
4142 /* Misalignment factor is unknown at compile time but we know
4143 it's word aligned. */
4144 if (rs6000_vector_alignment_reachable (type, is_packed))
4146 int element_size = TREE_INT_CST_LOW (TYPE_SIZE (type));
4148 if (element_size == 64 || element_size == 32)
4149 return true;
4152 return false;
4155 /* VSX supports word-aligned vector. */
4156 if (misalignment % 4 == 0)
4157 return true;
4159 return false;
4162 /* Implement targetm.vectorize.builtin_vectorization_cost. */
4163 static int
4164 rs6000_builtin_vectorization_cost (enum vect_cost_for_stmt type_of_cost,
4165 tree vectype, int misalign)
4167 unsigned elements;
4168 tree elem_type;
4170 switch (type_of_cost)
4172 case scalar_stmt:
4173 case scalar_load:
4174 case scalar_store:
4175 case vector_stmt:
4176 case vector_load:
4177 case vector_store:
4178 case vec_to_scalar:
4179 case scalar_to_vec:
4180 case cond_branch_not_taken:
4181 return 1;
4183 case vec_perm:
4184 if (TARGET_VSX)
4185 return 3;
4186 else
4187 return 1;
4189 case vec_promote_demote:
4190 if (TARGET_VSX)
4191 return 4;
4192 else
4193 return 1;
4195 case cond_branch_taken:
4196 return 3;
4198 case unaligned_load:
4199 if (TARGET_VSX && TARGET_ALLOW_MOVMISALIGN)
4201 elements = TYPE_VECTOR_SUBPARTS (vectype);
4202 if (elements == 2)
4203 /* Double word aligned. */
4204 return 2;
4206 if (elements == 4)
4208 switch (misalign)
4210 case 8:
4211 /* Double word aligned. */
4212 return 2;
4214 case -1:
4215 /* Unknown misalignment. */
4216 case 4:
4217 case 12:
4218 /* Word aligned. */
4219 return 22;
4221 default:
4222 gcc_unreachable ();
4227 if (TARGET_ALTIVEC)
4228 /* Misaligned loads are not supported. */
4229 gcc_unreachable ();
4231 return 2;
4233 case unaligned_store:
4234 if (TARGET_VSX && TARGET_ALLOW_MOVMISALIGN)
4236 elements = TYPE_VECTOR_SUBPARTS (vectype);
4237 if (elements == 2)
4238 /* Double word aligned. */
4239 return 2;
4241 if (elements == 4)
4243 switch (misalign)
4245 case 8:
4246 /* Double word aligned. */
4247 return 2;
4249 case -1:
4250 /* Unknown misalignment. */
4251 case 4:
4252 case 12:
4253 /* Word aligned. */
4254 return 23;
4256 default:
4257 gcc_unreachable ();
4262 if (TARGET_ALTIVEC)
4263 /* Misaligned stores are not supported. */
4264 gcc_unreachable ();
4266 return 2;
4268 case vec_construct:
4269 elements = TYPE_VECTOR_SUBPARTS (vectype);
4270 elem_type = TREE_TYPE (vectype);
4271 /* 32-bit vectors loaded into registers are stored as double
4272 precision, so we need n/2 converts in addition to the usual
4273 n/2 merges to construct a vector of short floats from them. */
4274 if (SCALAR_FLOAT_TYPE_P (elem_type)
4275 && TYPE_PRECISION (elem_type) == 32)
4276 return elements + 1;
4277 else
4278 return elements / 2 + 1;
4280 default:
4281 gcc_unreachable ();
4285 /* Implement targetm.vectorize.preferred_simd_mode. */
4287 static enum machine_mode
4288 rs6000_preferred_simd_mode (enum machine_mode mode)
4290 if (TARGET_VSX)
4291 switch (mode)
4293 case DFmode:
4294 return V2DFmode;
4295 default:;
4297 if (TARGET_ALTIVEC || TARGET_VSX)
4298 switch (mode)
4300 case SFmode:
4301 return V4SFmode;
4302 case TImode:
4303 return V1TImode;
4304 case DImode:
4305 return V2DImode;
4306 case SImode:
4307 return V4SImode;
4308 case HImode:
4309 return V8HImode;
4310 case QImode:
4311 return V16QImode;
4312 default:;
4314 if (TARGET_SPE)
4315 switch (mode)
4317 case SFmode:
4318 return V2SFmode;
4319 case SImode:
4320 return V2SImode;
4321 default:;
4323 if (TARGET_PAIRED_FLOAT
4324 && mode == SFmode)
4325 return V2SFmode;
4326 return word_mode;
4329 typedef struct _rs6000_cost_data
4331 struct loop *loop_info;
4332 unsigned cost[3];
4333 } rs6000_cost_data;
4335 /* Test for likely overcommitment of vector hardware resources. If a
4336 loop iteration is relatively large, and too large a percentage of
4337 instructions in the loop are vectorized, the cost model may not
4338 adequately reflect delays from unavailable vector resources.
4339 Penalize the loop body cost for this case. */
4341 static void
4342 rs6000_density_test (rs6000_cost_data *data)
4344 const int DENSITY_PCT_THRESHOLD = 85;
4345 const int DENSITY_SIZE_THRESHOLD = 70;
4346 const int DENSITY_PENALTY = 10;
4347 struct loop *loop = data->loop_info;
4348 basic_block *bbs = get_loop_body (loop);
4349 int nbbs = loop->num_nodes;
4350 int vec_cost = data->cost[vect_body], not_vec_cost = 0;
4351 int i, density_pct;
4353 for (i = 0; i < nbbs; i++)
4355 basic_block bb = bbs[i];
4356 gimple_stmt_iterator gsi;
4358 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
4360 gimple stmt = gsi_stmt (gsi);
4361 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
4363 if (!STMT_VINFO_RELEVANT_P (stmt_info)
4364 && !STMT_VINFO_IN_PATTERN_P (stmt_info))
4365 not_vec_cost++;
4369 free (bbs);
4370 density_pct = (vec_cost * 100) / (vec_cost + not_vec_cost);
4372 if (density_pct > DENSITY_PCT_THRESHOLD
4373 && vec_cost + not_vec_cost > DENSITY_SIZE_THRESHOLD)
4375 data->cost[vect_body] = vec_cost * (100 + DENSITY_PENALTY) / 100;
4376 if (dump_enabled_p ())
4377 dump_printf_loc (MSG_NOTE, vect_location,
4378 "density %d%%, cost %d exceeds threshold, penalizing "
4379 "loop body cost by %d%%", density_pct,
4380 vec_cost + not_vec_cost, DENSITY_PENALTY);
4384 /* Implement targetm.vectorize.init_cost. */
4386 static void *
4387 rs6000_init_cost (struct loop *loop_info)
4389 rs6000_cost_data *data = XNEW (struct _rs6000_cost_data);
4390 data->loop_info = loop_info;
4391 data->cost[vect_prologue] = 0;
4392 data->cost[vect_body] = 0;
4393 data->cost[vect_epilogue] = 0;
4394 return data;
4397 /* Implement targetm.vectorize.add_stmt_cost. */
4399 static unsigned
4400 rs6000_add_stmt_cost (void *data, int count, enum vect_cost_for_stmt kind,
4401 struct _stmt_vec_info *stmt_info, int misalign,
4402 enum vect_cost_model_location where)
4404 rs6000_cost_data *cost_data = (rs6000_cost_data*) data;
4405 unsigned retval = 0;
4407 if (flag_vect_cost_model)
4409 tree vectype = stmt_info ? stmt_vectype (stmt_info) : NULL_TREE;
4410 int stmt_cost = rs6000_builtin_vectorization_cost (kind, vectype,
4411 misalign);
4412 /* Statements in an inner loop relative to the loop being
4413 vectorized are weighted more heavily. The value here is
4414 arbitrary and could potentially be improved with analysis. */
4415 if (where == vect_body && stmt_info && stmt_in_inner_loop_p (stmt_info))
4416 count *= 50; /* FIXME. */
4418 retval = (unsigned) (count * stmt_cost);
4419 cost_data->cost[where] += retval;
4422 return retval;
4425 /* Implement targetm.vectorize.finish_cost. */
4427 static void
4428 rs6000_finish_cost (void *data, unsigned *prologue_cost,
4429 unsigned *body_cost, unsigned *epilogue_cost)
4431 rs6000_cost_data *cost_data = (rs6000_cost_data*) data;
4433 if (cost_data->loop_info)
4434 rs6000_density_test (cost_data);
4436 *prologue_cost = cost_data->cost[vect_prologue];
4437 *body_cost = cost_data->cost[vect_body];
4438 *epilogue_cost = cost_data->cost[vect_epilogue];
4441 /* Implement targetm.vectorize.destroy_cost_data. */
4443 static void
4444 rs6000_destroy_cost_data (void *data)
4446 free (data);
4449 /* Handler for the Mathematical Acceleration Subsystem (mass) interface to a
4450 library with vectorized intrinsics. */
4452 static tree
4453 rs6000_builtin_vectorized_libmass (tree fndecl, tree type_out, tree type_in)
4455 char name[32];
4456 const char *suffix = NULL;
4457 tree fntype, new_fndecl, bdecl = NULL_TREE;
4458 int n_args = 1;
4459 const char *bname;
4460 enum machine_mode el_mode, in_mode;
4461 int n, in_n;
4463 /* Libmass is suitable for unsafe math only as it does not correctly support
4464 parts of IEEE with the required precision such as denormals. Only support
4465 it if we have VSX to use the simd d2 or f4 functions.
4466 XXX: Add variable length support. */
4467 if (!flag_unsafe_math_optimizations || !TARGET_VSX)
4468 return NULL_TREE;
4470 el_mode = TYPE_MODE (TREE_TYPE (type_out));
4471 n = TYPE_VECTOR_SUBPARTS (type_out);
4472 in_mode = TYPE_MODE (TREE_TYPE (type_in));
4473 in_n = TYPE_VECTOR_SUBPARTS (type_in);
4474 if (el_mode != in_mode
4475 || n != in_n)
4476 return NULL_TREE;
4478 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
4480 enum built_in_function fn = DECL_FUNCTION_CODE (fndecl);
4481 switch (fn)
4483 case BUILT_IN_ATAN2:
4484 case BUILT_IN_HYPOT:
4485 case BUILT_IN_POW:
4486 n_args = 2;
4487 /* fall through */
4489 case BUILT_IN_ACOS:
4490 case BUILT_IN_ACOSH:
4491 case BUILT_IN_ASIN:
4492 case BUILT_IN_ASINH:
4493 case BUILT_IN_ATAN:
4494 case BUILT_IN_ATANH:
4495 case BUILT_IN_CBRT:
4496 case BUILT_IN_COS:
4497 case BUILT_IN_COSH:
4498 case BUILT_IN_ERF:
4499 case BUILT_IN_ERFC:
4500 case BUILT_IN_EXP2:
4501 case BUILT_IN_EXP:
4502 case BUILT_IN_EXPM1:
4503 case BUILT_IN_LGAMMA:
4504 case BUILT_IN_LOG10:
4505 case BUILT_IN_LOG1P:
4506 case BUILT_IN_LOG2:
4507 case BUILT_IN_LOG:
4508 case BUILT_IN_SIN:
4509 case BUILT_IN_SINH:
4510 case BUILT_IN_SQRT:
4511 case BUILT_IN_TAN:
4512 case BUILT_IN_TANH:
4513 bdecl = builtin_decl_implicit (fn);
4514 suffix = "d2"; /* pow -> powd2 */
4515 if (el_mode != DFmode
4516 || n != 2
4517 || !bdecl)
4518 return NULL_TREE;
4519 break;
4521 case BUILT_IN_ATAN2F:
4522 case BUILT_IN_HYPOTF:
4523 case BUILT_IN_POWF:
4524 n_args = 2;
4525 /* fall through */
4527 case BUILT_IN_ACOSF:
4528 case BUILT_IN_ACOSHF:
4529 case BUILT_IN_ASINF:
4530 case BUILT_IN_ASINHF:
4531 case BUILT_IN_ATANF:
4532 case BUILT_IN_ATANHF:
4533 case BUILT_IN_CBRTF:
4534 case BUILT_IN_COSF:
4535 case BUILT_IN_COSHF:
4536 case BUILT_IN_ERFF:
4537 case BUILT_IN_ERFCF:
4538 case BUILT_IN_EXP2F:
4539 case BUILT_IN_EXPF:
4540 case BUILT_IN_EXPM1F:
4541 case BUILT_IN_LGAMMAF:
4542 case BUILT_IN_LOG10F:
4543 case BUILT_IN_LOG1PF:
4544 case BUILT_IN_LOG2F:
4545 case BUILT_IN_LOGF:
4546 case BUILT_IN_SINF:
4547 case BUILT_IN_SINHF:
4548 case BUILT_IN_SQRTF:
4549 case BUILT_IN_TANF:
4550 case BUILT_IN_TANHF:
4551 bdecl = builtin_decl_implicit (fn);
4552 suffix = "4"; /* powf -> powf4 */
4553 if (el_mode != SFmode
4554 || n != 4
4555 || !bdecl)
4556 return NULL_TREE;
4557 break;
4559 default:
4560 return NULL_TREE;
4563 else
4564 return NULL_TREE;
4566 gcc_assert (suffix != NULL);
4567 bname = IDENTIFIER_POINTER (DECL_NAME (bdecl));
4568 if (!bname)
4569 return NULL_TREE;
4571 strcpy (name, bname + sizeof ("__builtin_") - 1);
4572 strcat (name, suffix);
4574 if (n_args == 1)
4575 fntype = build_function_type_list (type_out, type_in, NULL);
4576 else if (n_args == 2)
4577 fntype = build_function_type_list (type_out, type_in, type_in, NULL);
4578 else
4579 gcc_unreachable ();
4581 /* Build a function declaration for the vectorized function. */
4582 new_fndecl = build_decl (BUILTINS_LOCATION,
4583 FUNCTION_DECL, get_identifier (name), fntype);
4584 TREE_PUBLIC (new_fndecl) = 1;
4585 DECL_EXTERNAL (new_fndecl) = 1;
4586 DECL_IS_NOVOPS (new_fndecl) = 1;
4587 TREE_READONLY (new_fndecl) = 1;
4589 return new_fndecl;
4592 /* Returns a function decl for a vectorized version of the builtin function
4593 with builtin function code FN and the result vector type TYPE, or NULL_TREE
4594 if it is not available. */
4596 static tree
4597 rs6000_builtin_vectorized_function (tree fndecl, tree type_out,
4598 tree type_in)
4600 enum machine_mode in_mode, out_mode;
4601 int in_n, out_n;
4603 if (TARGET_DEBUG_BUILTIN)
4604 fprintf (stderr, "rs6000_builtin_vectorized_function (%s, %s, %s)\n",
4605 IDENTIFIER_POINTER (DECL_NAME (fndecl)),
4606 GET_MODE_NAME (TYPE_MODE (type_out)),
4607 GET_MODE_NAME (TYPE_MODE (type_in)));
4609 if (TREE_CODE (type_out) != VECTOR_TYPE
4610 || TREE_CODE (type_in) != VECTOR_TYPE
4611 || !TARGET_VECTORIZE_BUILTINS)
4612 return NULL_TREE;
4614 out_mode = TYPE_MODE (TREE_TYPE (type_out));
4615 out_n = TYPE_VECTOR_SUBPARTS (type_out);
4616 in_mode = TYPE_MODE (TREE_TYPE (type_in));
4617 in_n = TYPE_VECTOR_SUBPARTS (type_in);
4619 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
4621 enum built_in_function fn = DECL_FUNCTION_CODE (fndecl);
4622 switch (fn)
4624 case BUILT_IN_CLZIMAX:
4625 case BUILT_IN_CLZLL:
4626 case BUILT_IN_CLZL:
4627 case BUILT_IN_CLZ:
4628 if (TARGET_P8_VECTOR && in_mode == out_mode && out_n == in_n)
4630 if (out_mode == QImode && out_n == 16)
4631 return rs6000_builtin_decls[P8V_BUILTIN_VCLZB];
4632 else if (out_mode == HImode && out_n == 8)
4633 return rs6000_builtin_decls[P8V_BUILTIN_VCLZH];
4634 else if (out_mode == SImode && out_n == 4)
4635 return rs6000_builtin_decls[P8V_BUILTIN_VCLZW];
4636 else if (out_mode == DImode && out_n == 2)
4637 return rs6000_builtin_decls[P8V_BUILTIN_VCLZD];
4639 break;
4640 case BUILT_IN_COPYSIGN:
4641 if (VECTOR_UNIT_VSX_P (V2DFmode)
4642 && out_mode == DFmode && out_n == 2
4643 && in_mode == DFmode && in_n == 2)
4644 return rs6000_builtin_decls[VSX_BUILTIN_CPSGNDP];
4645 break;
4646 case BUILT_IN_COPYSIGNF:
4647 if (out_mode != SFmode || out_n != 4
4648 || in_mode != SFmode || in_n != 4)
4649 break;
4650 if (VECTOR_UNIT_VSX_P (V4SFmode))
4651 return rs6000_builtin_decls[VSX_BUILTIN_CPSGNSP];
4652 if (VECTOR_UNIT_ALTIVEC_P (V4SFmode))
4653 return rs6000_builtin_decls[ALTIVEC_BUILTIN_COPYSIGN_V4SF];
4654 break;
4655 case BUILT_IN_POPCOUNTIMAX:
4656 case BUILT_IN_POPCOUNTLL:
4657 case BUILT_IN_POPCOUNTL:
4658 case BUILT_IN_POPCOUNT:
4659 if (TARGET_P8_VECTOR && in_mode == out_mode && out_n == in_n)
4661 if (out_mode == QImode && out_n == 16)
4662 return rs6000_builtin_decls[P8V_BUILTIN_VPOPCNTB];
4663 else if (out_mode == HImode && out_n == 8)
4664 return rs6000_builtin_decls[P8V_BUILTIN_VPOPCNTH];
4665 else if (out_mode == SImode && out_n == 4)
4666 return rs6000_builtin_decls[P8V_BUILTIN_VPOPCNTW];
4667 else if (out_mode == DImode && out_n == 2)
4668 return rs6000_builtin_decls[P8V_BUILTIN_VPOPCNTD];
4670 break;
4671 case BUILT_IN_SQRT:
4672 if (VECTOR_UNIT_VSX_P (V2DFmode)
4673 && out_mode == DFmode && out_n == 2
4674 && in_mode == DFmode && in_n == 2)
4675 return rs6000_builtin_decls[VSX_BUILTIN_XVSQRTDP];
4676 break;
4677 case BUILT_IN_SQRTF:
4678 if (VECTOR_UNIT_VSX_P (V4SFmode)
4679 && out_mode == SFmode && out_n == 4
4680 && in_mode == SFmode && in_n == 4)
4681 return rs6000_builtin_decls[VSX_BUILTIN_XVSQRTSP];
4682 break;
4683 case BUILT_IN_CEIL:
4684 if (VECTOR_UNIT_VSX_P (V2DFmode)
4685 && out_mode == DFmode && out_n == 2
4686 && in_mode == DFmode && in_n == 2)
4687 return rs6000_builtin_decls[VSX_BUILTIN_XVRDPIP];
4688 break;
4689 case BUILT_IN_CEILF:
4690 if (out_mode != SFmode || out_n != 4
4691 || in_mode != SFmode || in_n != 4)
4692 break;
4693 if (VECTOR_UNIT_VSX_P (V4SFmode))
4694 return rs6000_builtin_decls[VSX_BUILTIN_XVRSPIP];
4695 if (VECTOR_UNIT_ALTIVEC_P (V4SFmode))
4696 return rs6000_builtin_decls[ALTIVEC_BUILTIN_VRFIP];
4697 break;
4698 case BUILT_IN_FLOOR:
4699 if (VECTOR_UNIT_VSX_P (V2DFmode)
4700 && out_mode == DFmode && out_n == 2
4701 && in_mode == DFmode && in_n == 2)
4702 return rs6000_builtin_decls[VSX_BUILTIN_XVRDPIM];
4703 break;
4704 case BUILT_IN_FLOORF:
4705 if (out_mode != SFmode || out_n != 4
4706 || in_mode != SFmode || in_n != 4)
4707 break;
4708 if (VECTOR_UNIT_VSX_P (V4SFmode))
4709 return rs6000_builtin_decls[VSX_BUILTIN_XVRSPIM];
4710 if (VECTOR_UNIT_ALTIVEC_P (V4SFmode))
4711 return rs6000_builtin_decls[ALTIVEC_BUILTIN_VRFIM];
4712 break;
4713 case BUILT_IN_FMA:
4714 if (VECTOR_UNIT_VSX_P (V2DFmode)
4715 && out_mode == DFmode && out_n == 2
4716 && in_mode == DFmode && in_n == 2)
4717 return rs6000_builtin_decls[VSX_BUILTIN_XVMADDDP];
4718 break;
4719 case BUILT_IN_FMAF:
4720 if (VECTOR_UNIT_VSX_P (V4SFmode)
4721 && out_mode == SFmode && out_n == 4
4722 && in_mode == SFmode && in_n == 4)
4723 return rs6000_builtin_decls[VSX_BUILTIN_XVMADDSP];
4724 else if (VECTOR_UNIT_ALTIVEC_P (V4SFmode)
4725 && out_mode == SFmode && out_n == 4
4726 && in_mode == SFmode && in_n == 4)
4727 return rs6000_builtin_decls[ALTIVEC_BUILTIN_VMADDFP];
4728 break;
4729 case BUILT_IN_TRUNC:
4730 if (VECTOR_UNIT_VSX_P (V2DFmode)
4731 && out_mode == DFmode && out_n == 2
4732 && in_mode == DFmode && in_n == 2)
4733 return rs6000_builtin_decls[VSX_BUILTIN_XVRDPIZ];
4734 break;
4735 case BUILT_IN_TRUNCF:
4736 if (out_mode != SFmode || out_n != 4
4737 || in_mode != SFmode || in_n != 4)
4738 break;
4739 if (VECTOR_UNIT_VSX_P (V4SFmode))
4740 return rs6000_builtin_decls[VSX_BUILTIN_XVRSPIZ];
4741 if (VECTOR_UNIT_ALTIVEC_P (V4SFmode))
4742 return rs6000_builtin_decls[ALTIVEC_BUILTIN_VRFIZ];
4743 break;
4744 case BUILT_IN_NEARBYINT:
4745 if (VECTOR_UNIT_VSX_P (V2DFmode)
4746 && flag_unsafe_math_optimizations
4747 && out_mode == DFmode && out_n == 2
4748 && in_mode == DFmode && in_n == 2)
4749 return rs6000_builtin_decls[VSX_BUILTIN_XVRDPI];
4750 break;
4751 case BUILT_IN_NEARBYINTF:
4752 if (VECTOR_UNIT_VSX_P (V4SFmode)
4753 && flag_unsafe_math_optimizations
4754 && out_mode == SFmode && out_n == 4
4755 && in_mode == SFmode && in_n == 4)
4756 return rs6000_builtin_decls[VSX_BUILTIN_XVRSPI];
4757 break;
4758 case BUILT_IN_RINT:
4759 if (VECTOR_UNIT_VSX_P (V2DFmode)
4760 && !flag_trapping_math
4761 && out_mode == DFmode && out_n == 2
4762 && in_mode == DFmode && in_n == 2)
4763 return rs6000_builtin_decls[VSX_BUILTIN_XVRDPIC];
4764 break;
4765 case BUILT_IN_RINTF:
4766 if (VECTOR_UNIT_VSX_P (V4SFmode)
4767 && !flag_trapping_math
4768 && out_mode == SFmode && out_n == 4
4769 && in_mode == SFmode && in_n == 4)
4770 return rs6000_builtin_decls[VSX_BUILTIN_XVRSPIC];
4771 break;
4772 default:
4773 break;
4777 else if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD)
4779 enum rs6000_builtins fn
4780 = (enum rs6000_builtins)DECL_FUNCTION_CODE (fndecl);
4781 switch (fn)
4783 case RS6000_BUILTIN_RSQRTF:
4784 if (VECTOR_UNIT_ALTIVEC_OR_VSX_P (V4SFmode)
4785 && out_mode == SFmode && out_n == 4
4786 && in_mode == SFmode && in_n == 4)
4787 return rs6000_builtin_decls[ALTIVEC_BUILTIN_VRSQRTFP];
4788 break;
4789 case RS6000_BUILTIN_RSQRT:
4790 if (VECTOR_UNIT_VSX_P (V2DFmode)
4791 && out_mode == DFmode && out_n == 2
4792 && in_mode == DFmode && in_n == 2)
4793 return rs6000_builtin_decls[VSX_BUILTIN_RSQRT_2DF];
4794 break;
4795 case RS6000_BUILTIN_RECIPF:
4796 if (VECTOR_UNIT_ALTIVEC_OR_VSX_P (V4SFmode)
4797 && out_mode == SFmode && out_n == 4
4798 && in_mode == SFmode && in_n == 4)
4799 return rs6000_builtin_decls[ALTIVEC_BUILTIN_VRECIPFP];
4800 break;
4801 case RS6000_BUILTIN_RECIP:
4802 if (VECTOR_UNIT_VSX_P (V2DFmode)
4803 && out_mode == DFmode && out_n == 2
4804 && in_mode == DFmode && in_n == 2)
4805 return rs6000_builtin_decls[VSX_BUILTIN_RECIP_V2DF];
4806 break;
4807 default:
4808 break;
4812 /* Generate calls to libmass if appropriate. */
4813 if (rs6000_veclib_handler)
4814 return rs6000_veclib_handler (fndecl, type_out, type_in);
4816 return NULL_TREE;
4819 /* Default CPU string for rs6000*_file_start functions. */
4820 static const char *rs6000_default_cpu;
4822 /* Do anything needed at the start of the asm file. */
4824 static void
4825 rs6000_file_start (void)
4827 char buffer[80];
4828 const char *start = buffer;
4829 FILE *file = asm_out_file;
4831 rs6000_default_cpu = TARGET_CPU_DEFAULT;
4833 default_file_start ();
4835 if (flag_verbose_asm)
4837 sprintf (buffer, "\n%s rs6000/powerpc options:", ASM_COMMENT_START);
4839 if (rs6000_default_cpu != 0 && rs6000_default_cpu[0] != '\0')
4841 fprintf (file, "%s --with-cpu=%s", start, rs6000_default_cpu);
4842 start = "";
4845 if (global_options_set.x_rs6000_cpu_index)
4847 fprintf (file, "%s -mcpu=%s", start,
4848 processor_target_table[rs6000_cpu_index].name);
4849 start = "";
4852 if (global_options_set.x_rs6000_tune_index)
4854 fprintf (file, "%s -mtune=%s", start,
4855 processor_target_table[rs6000_tune_index].name);
4856 start = "";
4859 if (PPC405_ERRATUM77)
4861 fprintf (file, "%s PPC405CR_ERRATUM77", start);
4862 start = "";
4865 #ifdef USING_ELFOS_H
4866 switch (rs6000_sdata)
4868 case SDATA_NONE: fprintf (file, "%s -msdata=none", start); start = ""; break;
4869 case SDATA_DATA: fprintf (file, "%s -msdata=data", start); start = ""; break;
4870 case SDATA_SYSV: fprintf (file, "%s -msdata=sysv", start); start = ""; break;
4871 case SDATA_EABI: fprintf (file, "%s -msdata=eabi", start); start = ""; break;
4874 if (rs6000_sdata && g_switch_value)
4876 fprintf (file, "%s -G %d", start,
4877 g_switch_value);
4878 start = "";
4880 #endif
4882 if (*start == '\0')
4883 putc ('\n', file);
4886 if (DEFAULT_ABI == ABI_ELFv2)
4887 fprintf (file, "\t.abiversion 2\n");
4889 if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2
4890 || (TARGET_ELF && flag_pic == 2))
4892 switch_to_section (toc_section);
4893 switch_to_section (text_section);
4898 /* Return nonzero if this function is known to have a null epilogue. */
4901 direct_return (void)
4903 if (reload_completed)
4905 rs6000_stack_t *info = rs6000_stack_info ();
4907 if (info->first_gp_reg_save == 32
4908 && info->first_fp_reg_save == 64
4909 && info->first_altivec_reg_save == LAST_ALTIVEC_REGNO + 1
4910 && ! info->lr_save_p
4911 && ! info->cr_save_p
4912 && info->vrsave_mask == 0
4913 && ! info->push_p)
4914 return 1;
4917 return 0;
4920 /* Return the number of instructions it takes to form a constant in an
4921 integer register. */
4924 num_insns_constant_wide (HOST_WIDE_INT value)
4926 /* signed constant loadable with addi */
4927 if ((unsigned HOST_WIDE_INT) (value + 0x8000) < 0x10000)
4928 return 1;
4930 /* constant loadable with addis */
4931 else if ((value & 0xffff) == 0
4932 && (value >> 31 == -1 || value >> 31 == 0))
4933 return 1;
4935 else if (TARGET_POWERPC64)
4937 HOST_WIDE_INT low = ((value & 0xffffffff) ^ 0x80000000) - 0x80000000;
4938 HOST_WIDE_INT high = value >> 31;
4940 if (high == 0 || high == -1)
4941 return 2;
4943 high >>= 1;
4945 if (low == 0)
4946 return num_insns_constant_wide (high) + 1;
4947 else if (high == 0)
4948 return num_insns_constant_wide (low) + 1;
4949 else
4950 return (num_insns_constant_wide (high)
4951 + num_insns_constant_wide (low) + 1);
4954 else
4955 return 2;
4959 num_insns_constant (rtx op, enum machine_mode mode)
4961 HOST_WIDE_INT low, high;
4963 switch (GET_CODE (op))
4965 case CONST_INT:
4966 if ((INTVAL (op) >> 31) != 0 && (INTVAL (op) >> 31) != -1
4967 && mask64_operand (op, mode))
4968 return 2;
4969 else
4970 return num_insns_constant_wide (INTVAL (op));
4972 case CONST_WIDE_INT:
4974 int i;
4975 int ins = CONST_WIDE_INT_NUNITS (op) - 1;
4976 for (i = 0; i < CONST_WIDE_INT_NUNITS (op); i++)
4977 ins += num_insns_constant_wide (CONST_WIDE_INT_ELT (op, i));
4978 return ins;
4981 case CONST_DOUBLE:
4982 if (mode == SFmode || mode == SDmode)
4984 long l;
4985 REAL_VALUE_TYPE rv;
4987 REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
4988 if (DECIMAL_FLOAT_MODE_P (mode))
4989 REAL_VALUE_TO_TARGET_DECIMAL32 (rv, l);
4990 else
4991 REAL_VALUE_TO_TARGET_SINGLE (rv, l);
4992 return num_insns_constant_wide ((HOST_WIDE_INT) l);
4995 long l[2];
4996 REAL_VALUE_TYPE rv;
4998 REAL_VALUE_FROM_CONST_DOUBLE (rv, op);
4999 if (DECIMAL_FLOAT_MODE_P (mode))
5000 REAL_VALUE_TO_TARGET_DECIMAL64 (rv, l);
5001 else
5002 REAL_VALUE_TO_TARGET_DOUBLE (rv, l);
5003 high = l[WORDS_BIG_ENDIAN == 0];
5004 low = l[WORDS_BIG_ENDIAN != 0];
5006 if (TARGET_32BIT)
5007 return (num_insns_constant_wide (low)
5008 + num_insns_constant_wide (high));
5009 else
5011 if ((high == 0 && low >= 0)
5012 || (high == -1 && low < 0))
5013 return num_insns_constant_wide (low);
5015 else if (mask64_operand (op, mode))
5016 return 2;
5018 else if (low == 0)
5019 return num_insns_constant_wide (high) + 1;
5021 else
5022 return (num_insns_constant_wide (high)
5023 + num_insns_constant_wide (low) + 1);
5026 default:
5027 gcc_unreachable ();
5031 /* Interpret element ELT of the CONST_VECTOR OP as an integer value.
5032 If the mode of OP is MODE_VECTOR_INT, this simply returns the
5033 corresponding element of the vector, but for V4SFmode and V2SFmode,
5034 the corresponding "float" is interpreted as an SImode integer. */
5036 HOST_WIDE_INT
5037 const_vector_elt_as_int (rtx op, unsigned int elt)
5039 rtx tmp;
5041 /* We can't handle V2DImode and V2DFmode vector constants here yet. */
5042 gcc_assert (GET_MODE (op) != V2DImode
5043 && GET_MODE (op) != V2DFmode);
5045 tmp = CONST_VECTOR_ELT (op, elt);
5046 if (GET_MODE (op) == V4SFmode
5047 || GET_MODE (op) == V2SFmode)
5048 tmp = gen_lowpart (SImode, tmp);
5049 return INTVAL (tmp);
5052 /* Return true if OP can be synthesized with a particular vspltisb, vspltish
5053 or vspltisw instruction. OP is a CONST_VECTOR. Which instruction is used
5054 depends on STEP and COPIES, one of which will be 1. If COPIES > 1,
5055 all items are set to the same value and contain COPIES replicas of the
5056 vsplt's operand; if STEP > 1, one in STEP elements is set to the vsplt's
5057 operand and the others are set to the value of the operand's msb. */
5059 static bool
5060 vspltis_constant (rtx op, unsigned step, unsigned copies)
5062 enum machine_mode mode = GET_MODE (op);
5063 enum machine_mode inner = GET_MODE_INNER (mode);
5065 unsigned i;
5066 unsigned nunits;
5067 unsigned bitsize;
5068 unsigned mask;
5070 HOST_WIDE_INT val;
5071 HOST_WIDE_INT splat_val;
5072 HOST_WIDE_INT msb_val;
5074 if (mode == V2DImode || mode == V2DFmode || mode == V1TImode)
5075 return false;
5077 nunits = GET_MODE_NUNITS (mode);
5078 bitsize = GET_MODE_BITSIZE (inner);
5079 mask = GET_MODE_MASK (inner);
5081 val = const_vector_elt_as_int (op, BYTES_BIG_ENDIAN ? nunits - 1 : 0);
5082 splat_val = val;
5083 msb_val = val >= 0 ? 0 : -1;
5085 /* Construct the value to be splatted, if possible. If not, return 0. */
5086 for (i = 2; i <= copies; i *= 2)
5088 HOST_WIDE_INT small_val;
5089 bitsize /= 2;
5090 small_val = splat_val >> bitsize;
5091 mask >>= bitsize;
5092 if (splat_val != ((small_val << bitsize) | (small_val & mask)))
5093 return false;
5094 splat_val = small_val;
5097 /* Check if SPLAT_VAL can really be the operand of a vspltis[bhw]. */
5098 if (EASY_VECTOR_15 (splat_val))
5101 /* Also check if we can splat, and then add the result to itself. Do so if
5102 the value is positive, of if the splat instruction is using OP's mode;
5103 for splat_val < 0, the splat and the add should use the same mode. */
5104 else if (EASY_VECTOR_15_ADD_SELF (splat_val)
5105 && (splat_val >= 0 || (step == 1 && copies == 1)))
5108 /* Also check if are loading up the most significant bit which can be done by
5109 loading up -1 and shifting the value left by -1. */
5110 else if (EASY_VECTOR_MSB (splat_val, inner))
5113 else
5114 return false;
5116 /* Check if VAL is present in every STEP-th element, and the
5117 other elements are filled with its most significant bit. */
5118 for (i = 1; i < nunits; ++i)
5120 HOST_WIDE_INT desired_val;
5121 unsigned elt = BYTES_BIG_ENDIAN ? nunits - 1 - i : i;
5122 if ((i & (step - 1)) == 0)
5123 desired_val = val;
5124 else
5125 desired_val = msb_val;
5127 if (desired_val != const_vector_elt_as_int (op, elt))
5128 return false;
5131 return true;
5135 /* Return true if OP is of the given MODE and can be synthesized
5136 with a vspltisb, vspltish or vspltisw. */
5138 bool
5139 easy_altivec_constant (rtx op, enum machine_mode mode)
5141 unsigned step, copies;
5143 if (mode == VOIDmode)
5144 mode = GET_MODE (op);
5145 else if (mode != GET_MODE (op))
5146 return false;
5148 /* V2DI/V2DF was added with VSX. Only allow 0 and all 1's as easy
5149 constants. */
5150 if (mode == V2DFmode)
5151 return zero_constant (op, mode);
5153 else if (mode == V2DImode)
5155 if (GET_CODE (CONST_VECTOR_ELT (op, 0)) != CONST_INT
5156 || GET_CODE (CONST_VECTOR_ELT (op, 1)) != CONST_INT)
5157 return false;
5159 if (zero_constant (op, mode))
5160 return true;
5162 if (INTVAL (CONST_VECTOR_ELT (op, 0)) == -1
5163 && INTVAL (CONST_VECTOR_ELT (op, 1)) == -1)
5164 return true;
5166 return false;
5169 /* V1TImode is a special container for TImode. Ignore for now. */
5170 else if (mode == V1TImode)
5171 return false;
5173 /* Start with a vspltisw. */
5174 step = GET_MODE_NUNITS (mode) / 4;
5175 copies = 1;
5177 if (vspltis_constant (op, step, copies))
5178 return true;
5180 /* Then try with a vspltish. */
5181 if (step == 1)
5182 copies <<= 1;
5183 else
5184 step >>= 1;
5186 if (vspltis_constant (op, step, copies))
5187 return true;
5189 /* And finally a vspltisb. */
5190 if (step == 1)
5191 copies <<= 1;
5192 else
5193 step >>= 1;
5195 if (vspltis_constant (op, step, copies))
5196 return true;
5198 return false;
5201 /* Generate a VEC_DUPLICATE representing a vspltis[bhw] instruction whose
5202 result is OP. Abort if it is not possible. */
5205 gen_easy_altivec_constant (rtx op)
5207 enum machine_mode mode = GET_MODE (op);
5208 int nunits = GET_MODE_NUNITS (mode);
5209 rtx val = CONST_VECTOR_ELT (op, BYTES_BIG_ENDIAN ? nunits - 1 : 0);
5210 unsigned step = nunits / 4;
5211 unsigned copies = 1;
5213 /* Start with a vspltisw. */
5214 if (vspltis_constant (op, step, copies))
5215 return gen_rtx_VEC_DUPLICATE (V4SImode, gen_lowpart (SImode, val));
5217 /* Then try with a vspltish. */
5218 if (step == 1)
5219 copies <<= 1;
5220 else
5221 step >>= 1;
5223 if (vspltis_constant (op, step, copies))
5224 return gen_rtx_VEC_DUPLICATE (V8HImode, gen_lowpart (HImode, val));
5226 /* And finally a vspltisb. */
5227 if (step == 1)
5228 copies <<= 1;
5229 else
5230 step >>= 1;
5232 if (vspltis_constant (op, step, copies))
5233 return gen_rtx_VEC_DUPLICATE (V16QImode, gen_lowpart (QImode, val));
5235 gcc_unreachable ();
5238 const char *
5239 output_vec_const_move (rtx *operands)
5241 int cst, cst2;
5242 enum machine_mode mode;
5243 rtx dest, vec;
5245 dest = operands[0];
5246 vec = operands[1];
5247 mode = GET_MODE (dest);
5249 if (TARGET_VSX)
5251 if (zero_constant (vec, mode))
5252 return "xxlxor %x0,%x0,%x0";
5254 if ((mode == V2DImode || mode == V1TImode)
5255 && INTVAL (CONST_VECTOR_ELT (vec, 0)) == -1
5256 && INTVAL (CONST_VECTOR_ELT (vec, 1)) == -1)
5257 return "vspltisw %0,-1";
5260 if (TARGET_ALTIVEC)
5262 rtx splat_vec;
5263 if (zero_constant (vec, mode))
5264 return "vxor %0,%0,%0";
5266 splat_vec = gen_easy_altivec_constant (vec);
5267 gcc_assert (GET_CODE (splat_vec) == VEC_DUPLICATE);
5268 operands[1] = XEXP (splat_vec, 0);
5269 if (!EASY_VECTOR_15 (INTVAL (operands[1])))
5270 return "#";
5272 switch (GET_MODE (splat_vec))
5274 case V4SImode:
5275 return "vspltisw %0,%1";
5277 case V8HImode:
5278 return "vspltish %0,%1";
5280 case V16QImode:
5281 return "vspltisb %0,%1";
5283 default:
5284 gcc_unreachable ();
5288 gcc_assert (TARGET_SPE);
5290 /* Vector constant 0 is handled as a splitter of V2SI, and in the
5291 pattern of V1DI, V4HI, and V2SF.
5293 FIXME: We should probably return # and add post reload
5294 splitters for these, but this way is so easy ;-). */
5295 cst = INTVAL (CONST_VECTOR_ELT (vec, 0));
5296 cst2 = INTVAL (CONST_VECTOR_ELT (vec, 1));
5297 operands[1] = CONST_VECTOR_ELT (vec, 0);
5298 operands[2] = CONST_VECTOR_ELT (vec, 1);
5299 if (cst == cst2)
5300 return "li %0,%1\n\tevmergelo %0,%0,%0";
5301 else
5302 return "li %0,%1\n\tevmergelo %0,%0,%0\n\tli %0,%2";
5305 /* Initialize TARGET of vector PAIRED to VALS. */
5307 void
5308 paired_expand_vector_init (rtx target, rtx vals)
5310 enum machine_mode mode = GET_MODE (target);
5311 int n_elts = GET_MODE_NUNITS (mode);
5312 int n_var = 0;
5313 rtx x, new_rtx, tmp, constant_op, op1, op2;
5314 int i;
5316 for (i = 0; i < n_elts; ++i)
5318 x = XVECEXP (vals, 0, i);
5319 if (!CONSTANT_P (x))
5320 ++n_var;
5322 if (n_var == 0)
5324 /* Load from constant pool. */
5325 emit_move_insn (target, gen_rtx_CONST_VECTOR (mode, XVEC (vals, 0)));
5326 return;
5329 if (n_var == 2)
5331 /* The vector is initialized only with non-constants. */
5332 new_rtx = gen_rtx_VEC_CONCAT (V2SFmode, XVECEXP (vals, 0, 0),
5333 XVECEXP (vals, 0, 1));
5335 emit_move_insn (target, new_rtx);
5336 return;
5339 /* One field is non-constant and the other one is a constant. Load the
5340 constant from the constant pool and use ps_merge instruction to
5341 construct the whole vector. */
5342 op1 = XVECEXP (vals, 0, 0);
5343 op2 = XVECEXP (vals, 0, 1);
5345 constant_op = (CONSTANT_P (op1)) ? op1 : op2;
5347 tmp = gen_reg_rtx (GET_MODE (constant_op));
5348 emit_move_insn (tmp, constant_op);
5350 if (CONSTANT_P (op1))
5351 new_rtx = gen_rtx_VEC_CONCAT (V2SFmode, tmp, op2);
5352 else
5353 new_rtx = gen_rtx_VEC_CONCAT (V2SFmode, op1, tmp);
5355 emit_move_insn (target, new_rtx);
5358 void
5359 paired_expand_vector_move (rtx operands[])
5361 rtx op0 = operands[0], op1 = operands[1];
5363 emit_move_insn (op0, op1);
5366 /* Emit vector compare for code RCODE. DEST is destination, OP1 and
5367 OP2 are two VEC_COND_EXPR operands, CC_OP0 and CC_OP1 are the two
5368 operands for the relation operation COND. This is a recursive
5369 function. */
5371 static void
5372 paired_emit_vector_compare (enum rtx_code rcode,
5373 rtx dest, rtx op0, rtx op1,
5374 rtx cc_op0, rtx cc_op1)
5376 rtx tmp = gen_reg_rtx (V2SFmode);
5377 rtx tmp1, max, min;
5379 gcc_assert (TARGET_PAIRED_FLOAT);
5380 gcc_assert (GET_MODE (op0) == GET_MODE (op1));
5382 switch (rcode)
5384 case LT:
5385 case LTU:
5386 paired_emit_vector_compare (GE, dest, op1, op0, cc_op0, cc_op1);
5387 return;
5388 case GE:
5389 case GEU:
5390 emit_insn (gen_subv2sf3 (tmp, cc_op0, cc_op1));
5391 emit_insn (gen_selv2sf4 (dest, tmp, op0, op1, CONST0_RTX (SFmode)));
5392 return;
5393 case LE:
5394 case LEU:
5395 paired_emit_vector_compare (GE, dest, op0, op1, cc_op1, cc_op0);
5396 return;
5397 case GT:
5398 paired_emit_vector_compare (LE, dest, op1, op0, cc_op0, cc_op1);
5399 return;
5400 case EQ:
5401 tmp1 = gen_reg_rtx (V2SFmode);
5402 max = gen_reg_rtx (V2SFmode);
5403 min = gen_reg_rtx (V2SFmode);
5404 gen_reg_rtx (V2SFmode);
5406 emit_insn (gen_subv2sf3 (tmp, cc_op0, cc_op1));
5407 emit_insn (gen_selv2sf4
5408 (max, tmp, cc_op0, cc_op1, CONST0_RTX (SFmode)));
5409 emit_insn (gen_subv2sf3 (tmp, cc_op1, cc_op0));
5410 emit_insn (gen_selv2sf4
5411 (min, tmp, cc_op0, cc_op1, CONST0_RTX (SFmode)));
5412 emit_insn (gen_subv2sf3 (tmp1, min, max));
5413 emit_insn (gen_selv2sf4 (dest, tmp1, op0, op1, CONST0_RTX (SFmode)));
5414 return;
5415 case NE:
5416 paired_emit_vector_compare (EQ, dest, op1, op0, cc_op0, cc_op1);
5417 return;
5418 case UNLE:
5419 paired_emit_vector_compare (LE, dest, op1, op0, cc_op0, cc_op1);
5420 return;
5421 case UNLT:
5422 paired_emit_vector_compare (LT, dest, op1, op0, cc_op0, cc_op1);
5423 return;
5424 case UNGE:
5425 paired_emit_vector_compare (GE, dest, op1, op0, cc_op0, cc_op1);
5426 return;
5427 case UNGT:
5428 paired_emit_vector_compare (GT, dest, op1, op0, cc_op0, cc_op1);
5429 return;
5430 default:
5431 gcc_unreachable ();
5434 return;
5437 /* Emit vector conditional expression.
5438 DEST is destination. OP1 and OP2 are two VEC_COND_EXPR operands.
5439 CC_OP0 and CC_OP1 are the two operands for the relation operation COND. */
5442 paired_emit_vector_cond_expr (rtx dest, rtx op1, rtx op2,
5443 rtx cond, rtx cc_op0, rtx cc_op1)
5445 enum rtx_code rcode = GET_CODE (cond);
5447 if (!TARGET_PAIRED_FLOAT)
5448 return 0;
5450 paired_emit_vector_compare (rcode, dest, op1, op2, cc_op0, cc_op1);
5452 return 1;
5455 /* Initialize vector TARGET to VALS. */
5457 void
5458 rs6000_expand_vector_init (rtx target, rtx vals)
5460 enum machine_mode mode = GET_MODE (target);
5461 enum machine_mode inner_mode = GET_MODE_INNER (mode);
5462 int n_elts = GET_MODE_NUNITS (mode);
5463 int n_var = 0, one_var = -1;
5464 bool all_same = true, all_const_zero = true;
5465 rtx x, mem;
5466 int i;
5468 for (i = 0; i < n_elts; ++i)
5470 x = XVECEXP (vals, 0, i);
5471 if (!CONSTANT_P (x))
5472 ++n_var, one_var = i;
5473 else if (x != CONST0_RTX (inner_mode))
5474 all_const_zero = false;
5476 if (i > 0 && !rtx_equal_p (x, XVECEXP (vals, 0, 0)))
5477 all_same = false;
5480 if (n_var == 0)
5482 rtx const_vec = gen_rtx_CONST_VECTOR (mode, XVEC (vals, 0));
5483 bool int_vector_p = (GET_MODE_CLASS (mode) == MODE_VECTOR_INT);
5484 if ((int_vector_p || TARGET_VSX) && all_const_zero)
5486 /* Zero register. */
5487 emit_insn (gen_rtx_SET (VOIDmode, target,
5488 gen_rtx_XOR (mode, target, target)));
5489 return;
5491 else if (int_vector_p && easy_vector_constant (const_vec, mode))
5493 /* Splat immediate. */
5494 emit_insn (gen_rtx_SET (VOIDmode, target, const_vec));
5495 return;
5497 else
5499 /* Load from constant pool. */
5500 emit_move_insn (target, const_vec);
5501 return;
5505 /* Double word values on VSX can use xxpermdi or lxvdsx. */
5506 if (VECTOR_MEM_VSX_P (mode) && (mode == V2DFmode || mode == V2DImode))
5508 rtx op0 = XVECEXP (vals, 0, 0);
5509 rtx op1 = XVECEXP (vals, 0, 1);
5510 if (all_same)
5512 if (!MEM_P (op0) && !REG_P (op0))
5513 op0 = force_reg (inner_mode, op0);
5514 if (mode == V2DFmode)
5515 emit_insn (gen_vsx_splat_v2df (target, op0));
5516 else
5517 emit_insn (gen_vsx_splat_v2di (target, op0));
5519 else
5521 op0 = force_reg (inner_mode, op0);
5522 op1 = force_reg (inner_mode, op1);
5523 if (mode == V2DFmode)
5524 emit_insn (gen_vsx_concat_v2df (target, op0, op1));
5525 else
5526 emit_insn (gen_vsx_concat_v2di (target, op0, op1));
5528 return;
5531 /* With single precision floating point on VSX, know that internally single
5532 precision is actually represented as a double, and either make 2 V2DF
5533 vectors, and convert these vectors to single precision, or do one
5534 conversion, and splat the result to the other elements. */
5535 if (mode == V4SFmode && VECTOR_MEM_VSX_P (mode))
5537 if (all_same)
5539 rtx freg = gen_reg_rtx (V4SFmode);
5540 rtx sreg = force_reg (SFmode, XVECEXP (vals, 0, 0));
5541 rtx cvt = ((TARGET_XSCVDPSPN)
5542 ? gen_vsx_xscvdpspn_scalar (freg, sreg)
5543 : gen_vsx_xscvdpsp_scalar (freg, sreg));
5545 emit_insn (cvt);
5546 emit_insn (gen_vsx_xxspltw_v4sf_direct (target, freg, const0_rtx));
5548 else
5550 rtx dbl_even = gen_reg_rtx (V2DFmode);
5551 rtx dbl_odd = gen_reg_rtx (V2DFmode);
5552 rtx flt_even = gen_reg_rtx (V4SFmode);
5553 rtx flt_odd = gen_reg_rtx (V4SFmode);
5554 rtx op0 = force_reg (SFmode, XVECEXP (vals, 0, 0));
5555 rtx op1 = force_reg (SFmode, XVECEXP (vals, 0, 1));
5556 rtx op2 = force_reg (SFmode, XVECEXP (vals, 0, 2));
5557 rtx op3 = force_reg (SFmode, XVECEXP (vals, 0, 3));
5559 emit_insn (gen_vsx_concat_v2sf (dbl_even, op0, op1));
5560 emit_insn (gen_vsx_concat_v2sf (dbl_odd, op2, op3));
5561 emit_insn (gen_vsx_xvcvdpsp (flt_even, dbl_even));
5562 emit_insn (gen_vsx_xvcvdpsp (flt_odd, dbl_odd));
5563 rs6000_expand_extract_even (target, flt_even, flt_odd);
5565 return;
5568 /* Store value to stack temp. Load vector element. Splat. However, splat
5569 of 64-bit items is not supported on Altivec. */
5570 if (all_same && GET_MODE_SIZE (inner_mode) <= 4)
5572 mem = assign_stack_temp (mode, GET_MODE_SIZE (inner_mode));
5573 emit_move_insn (adjust_address_nv (mem, inner_mode, 0),
5574 XVECEXP (vals, 0, 0));
5575 x = gen_rtx_UNSPEC (VOIDmode,
5576 gen_rtvec (1, const0_rtx), UNSPEC_LVE);
5577 emit_insn (gen_rtx_PARALLEL (VOIDmode,
5578 gen_rtvec (2,
5579 gen_rtx_SET (VOIDmode,
5580 target, mem),
5581 x)));
5582 x = gen_rtx_VEC_SELECT (inner_mode, target,
5583 gen_rtx_PARALLEL (VOIDmode,
5584 gen_rtvec (1, const0_rtx)));
5585 emit_insn (gen_rtx_SET (VOIDmode, target,
5586 gen_rtx_VEC_DUPLICATE (mode, x)));
5587 return;
5590 /* One field is non-constant. Load constant then overwrite
5591 varying field. */
5592 if (n_var == 1)
5594 rtx copy = copy_rtx (vals);
5596 /* Load constant part of vector, substitute neighboring value for
5597 varying element. */
5598 XVECEXP (copy, 0, one_var) = XVECEXP (vals, 0, (one_var + 1) % n_elts);
5599 rs6000_expand_vector_init (target, copy);
5601 /* Insert variable. */
5602 rs6000_expand_vector_set (target, XVECEXP (vals, 0, one_var), one_var);
5603 return;
5606 /* Construct the vector in memory one field at a time
5607 and load the whole vector. */
5608 mem = assign_stack_temp (mode, GET_MODE_SIZE (mode));
5609 for (i = 0; i < n_elts; i++)
5610 emit_move_insn (adjust_address_nv (mem, inner_mode,
5611 i * GET_MODE_SIZE (inner_mode)),
5612 XVECEXP (vals, 0, i));
5613 emit_move_insn (target, mem);
5616 /* Set field ELT of TARGET to VAL. */
5618 void
5619 rs6000_expand_vector_set (rtx target, rtx val, int elt)
5621 enum machine_mode mode = GET_MODE (target);
5622 enum machine_mode inner_mode = GET_MODE_INNER (mode);
5623 rtx reg = gen_reg_rtx (mode);
5624 rtx mask, mem, x;
5625 int width = GET_MODE_SIZE (inner_mode);
5626 int i;
5628 if (VECTOR_MEM_VSX_P (mode) && (mode == V2DFmode || mode == V2DImode))
5630 rtx (*set_func) (rtx, rtx, rtx, rtx)
5631 = ((mode == V2DFmode) ? gen_vsx_set_v2df : gen_vsx_set_v2di);
5632 emit_insn (set_func (target, target, val, GEN_INT (elt)));
5633 return;
5636 /* Simplify setting single element vectors like V1TImode. */
5637 if (GET_MODE_SIZE (mode) == GET_MODE_SIZE (inner_mode) && elt == 0)
5639 emit_move_insn (target, gen_lowpart (mode, val));
5640 return;
5643 /* Load single variable value. */
5644 mem = assign_stack_temp (mode, GET_MODE_SIZE (inner_mode));
5645 emit_move_insn (adjust_address_nv (mem, inner_mode, 0), val);
5646 x = gen_rtx_UNSPEC (VOIDmode,
5647 gen_rtvec (1, const0_rtx), UNSPEC_LVE);
5648 emit_insn (gen_rtx_PARALLEL (VOIDmode,
5649 gen_rtvec (2,
5650 gen_rtx_SET (VOIDmode,
5651 reg, mem),
5652 x)));
5654 /* Linear sequence. */
5655 mask = gen_rtx_PARALLEL (V16QImode, rtvec_alloc (16));
5656 for (i = 0; i < 16; ++i)
5657 XVECEXP (mask, 0, i) = GEN_INT (i);
5659 /* Set permute mask to insert element into target. */
5660 for (i = 0; i < width; ++i)
5661 XVECEXP (mask, 0, elt*width + i)
5662 = GEN_INT (i + 0x10);
5663 x = gen_rtx_CONST_VECTOR (V16QImode, XVEC (mask, 0));
5665 if (BYTES_BIG_ENDIAN)
5666 x = gen_rtx_UNSPEC (mode,
5667 gen_rtvec (3, target, reg,
5668 force_reg (V16QImode, x)),
5669 UNSPEC_VPERM);
5670 else
5672 /* Invert selector. We prefer to generate VNAND on P8 so
5673 that future fusion opportunities can kick in, but must
5674 generate VNOR elsewhere. */
5675 rtx notx = gen_rtx_NOT (V16QImode, force_reg (V16QImode, x));
5676 rtx iorx = (TARGET_P8_VECTOR
5677 ? gen_rtx_IOR (V16QImode, notx, notx)
5678 : gen_rtx_AND (V16QImode, notx, notx));
5679 rtx tmp = gen_reg_rtx (V16QImode);
5680 emit_insn (gen_rtx_SET (VOIDmode, tmp, iorx));
5682 /* Permute with operands reversed and adjusted selector. */
5683 x = gen_rtx_UNSPEC (mode, gen_rtvec (3, reg, target, tmp),
5684 UNSPEC_VPERM);
5687 emit_insn (gen_rtx_SET (VOIDmode, target, x));
5690 /* Extract field ELT from VEC into TARGET. */
5692 void
5693 rs6000_expand_vector_extract (rtx target, rtx vec, int elt)
5695 enum machine_mode mode = GET_MODE (vec);
5696 enum machine_mode inner_mode = GET_MODE_INNER (mode);
5697 rtx mem;
5699 if (VECTOR_MEM_VSX_P (mode))
5701 switch (mode)
5703 default:
5704 break;
5705 case V1TImode:
5706 gcc_assert (elt == 0 && inner_mode == TImode);
5707 emit_move_insn (target, gen_lowpart (TImode, vec));
5708 break;
5709 case V2DFmode:
5710 emit_insn (gen_vsx_extract_v2df (target, vec, GEN_INT (elt)));
5711 return;
5712 case V2DImode:
5713 emit_insn (gen_vsx_extract_v2di (target, vec, GEN_INT (elt)));
5714 return;
5715 case V4SFmode:
5716 emit_insn (gen_vsx_extract_v4sf (target, vec, GEN_INT (elt)));
5717 return;
5721 /* Allocate mode-sized buffer. */
5722 mem = assign_stack_temp (mode, GET_MODE_SIZE (mode));
5724 emit_move_insn (mem, vec);
5726 /* Add offset to field within buffer matching vector element. */
5727 mem = adjust_address_nv (mem, inner_mode, elt * GET_MODE_SIZE (inner_mode));
5729 emit_move_insn (target, adjust_address_nv (mem, inner_mode, 0));
5732 /* Generates shifts and masks for a pair of rldicl or rldicr insns to
5733 implement ANDing by the mask IN. */
5734 void
5735 build_mask64_2_operands (rtx in, rtx *out)
5737 unsigned HOST_WIDE_INT c, lsb, m1, m2;
5738 int shift;
5740 gcc_assert (GET_CODE (in) == CONST_INT);
5742 c = INTVAL (in);
5743 if (c & 1)
5745 /* Assume c initially something like 0x00fff000000fffff. The idea
5746 is to rotate the word so that the middle ^^^^^^ group of zeros
5747 is at the MS end and can be cleared with an rldicl mask. We then
5748 rotate back and clear off the MS ^^ group of zeros with a
5749 second rldicl. */
5750 c = ~c; /* c == 0xff000ffffff00000 */
5751 lsb = c & -c; /* lsb == 0x0000000000100000 */
5752 m1 = -lsb; /* m1 == 0xfffffffffff00000 */
5753 c = ~c; /* c == 0x00fff000000fffff */
5754 c &= -lsb; /* c == 0x00fff00000000000 */
5755 lsb = c & -c; /* lsb == 0x0000100000000000 */
5756 c = ~c; /* c == 0xff000fffffffffff */
5757 c &= -lsb; /* c == 0xff00000000000000 */
5758 shift = 0;
5759 while ((lsb >>= 1) != 0)
5760 shift++; /* shift == 44 on exit from loop */
5761 m1 <<= 64 - shift; /* m1 == 0xffffff0000000000 */
5762 m1 = ~m1; /* m1 == 0x000000ffffffffff */
5763 m2 = ~c; /* m2 == 0x00ffffffffffffff */
5765 else
5767 /* Assume c initially something like 0xff000f0000000000. The idea
5768 is to rotate the word so that the ^^^ middle group of zeros
5769 is at the LS end and can be cleared with an rldicr mask. We then
5770 rotate back and clear off the LS group of ^^^^^^^^^^ zeros with
5771 a second rldicr. */
5772 lsb = c & -c; /* lsb == 0x0000010000000000 */
5773 m2 = -lsb; /* m2 == 0xffffff0000000000 */
5774 c = ~c; /* c == 0x00fff0ffffffffff */
5775 c &= -lsb; /* c == 0x00fff00000000000 */
5776 lsb = c & -c; /* lsb == 0x0000100000000000 */
5777 c = ~c; /* c == 0xff000fffffffffff */
5778 c &= -lsb; /* c == 0xff00000000000000 */
5779 shift = 0;
5780 while ((lsb >>= 1) != 0)
5781 shift++; /* shift == 44 on exit from loop */
5782 m1 = ~c; /* m1 == 0x00ffffffffffffff */
5783 m1 >>= shift; /* m1 == 0x0000000000000fff */
5784 m1 = ~m1; /* m1 == 0xfffffffffffff000 */
5787 /* Note that when we only have two 0->1 and 1->0 transitions, one of the
5788 masks will be all 1's. We are guaranteed more than one transition. */
5789 out[0] = GEN_INT (64 - shift);
5790 out[1] = GEN_INT (m1);
5791 out[2] = GEN_INT (shift);
5792 out[3] = GEN_INT (m2);
5795 /* Return TRUE if OP is an invalid SUBREG operation on the e500. */
5797 bool
5798 invalid_e500_subreg (rtx op, enum machine_mode mode)
5800 if (TARGET_E500_DOUBLE)
5802 /* Reject (subreg:SI (reg:DF)); likewise with subreg:DI or
5803 subreg:TI and reg:TF. Decimal float modes are like integer
5804 modes (only low part of each register used) for this
5805 purpose. */
5806 if (GET_CODE (op) == SUBREG
5807 && (mode == SImode || mode == DImode || mode == TImode
5808 || mode == DDmode || mode == TDmode || mode == PTImode)
5809 && REG_P (SUBREG_REG (op))
5810 && (GET_MODE (SUBREG_REG (op)) == DFmode
5811 || GET_MODE (SUBREG_REG (op)) == TFmode))
5812 return true;
5814 /* Reject (subreg:DF (reg:DI)); likewise with subreg:TF and
5815 reg:TI. */
5816 if (GET_CODE (op) == SUBREG
5817 && (mode == DFmode || mode == TFmode)
5818 && REG_P (SUBREG_REG (op))
5819 && (GET_MODE (SUBREG_REG (op)) == DImode
5820 || GET_MODE (SUBREG_REG (op)) == TImode
5821 || GET_MODE (SUBREG_REG (op)) == PTImode
5822 || GET_MODE (SUBREG_REG (op)) == DDmode
5823 || GET_MODE (SUBREG_REG (op)) == TDmode))
5824 return true;
5827 if (TARGET_SPE
5828 && GET_CODE (op) == SUBREG
5829 && mode == SImode
5830 && REG_P (SUBREG_REG (op))
5831 && SPE_VECTOR_MODE (GET_MODE (SUBREG_REG (op))))
5832 return true;
5834 return false;
5837 /* Return alignment of TYPE. Existing alignment is ALIGN. HOW
5838 selects whether the alignment is abi mandated, optional, or
5839 both abi and optional alignment. */
5841 unsigned int
5842 rs6000_data_alignment (tree type, unsigned int align, enum data_align how)
5844 if (how != align_opt)
5846 if (TREE_CODE (type) == VECTOR_TYPE)
5848 if ((TARGET_SPE && SPE_VECTOR_MODE (TYPE_MODE (type)))
5849 || (TARGET_PAIRED_FLOAT && PAIRED_VECTOR_MODE (TYPE_MODE (type))))
5851 if (align < 64)
5852 align = 64;
5854 else if (align < 128)
5855 align = 128;
5857 else if (TARGET_E500_DOUBLE
5858 && TREE_CODE (type) == REAL_TYPE
5859 && TYPE_MODE (type) == DFmode)
5861 if (align < 64)
5862 align = 64;
5866 if (how != align_abi)
5868 if (TREE_CODE (type) == ARRAY_TYPE
5869 && TYPE_MODE (TREE_TYPE (type)) == QImode)
5871 if (align < BITS_PER_WORD)
5872 align = BITS_PER_WORD;
5876 return align;
5879 /* AIX increases natural record alignment to doubleword if the first
5880 field is an FP double while the FP fields remain word aligned. */
5882 unsigned int
5883 rs6000_special_round_type_align (tree type, unsigned int computed,
5884 unsigned int specified)
5886 unsigned int align = MAX (computed, specified);
5887 tree field = TYPE_FIELDS (type);
5889 /* Skip all non field decls */
5890 while (field != NULL && TREE_CODE (field) != FIELD_DECL)
5891 field = DECL_CHAIN (field);
5893 if (field != NULL && field != type)
5895 type = TREE_TYPE (field);
5896 while (TREE_CODE (type) == ARRAY_TYPE)
5897 type = TREE_TYPE (type);
5899 if (type != error_mark_node && TYPE_MODE (type) == DFmode)
5900 align = MAX (align, 64);
5903 return align;
5906 /* Darwin increases record alignment to the natural alignment of
5907 the first field. */
5909 unsigned int
5910 darwin_rs6000_special_round_type_align (tree type, unsigned int computed,
5911 unsigned int specified)
5913 unsigned int align = MAX (computed, specified);
5915 if (TYPE_PACKED (type))
5916 return align;
5918 /* Find the first field, looking down into aggregates. */
5919 do {
5920 tree field = TYPE_FIELDS (type);
5921 /* Skip all non field decls */
5922 while (field != NULL && TREE_CODE (field) != FIELD_DECL)
5923 field = DECL_CHAIN (field);
5924 if (! field)
5925 break;
5926 /* A packed field does not contribute any extra alignment. */
5927 if (DECL_PACKED (field))
5928 return align;
5929 type = TREE_TYPE (field);
5930 while (TREE_CODE (type) == ARRAY_TYPE)
5931 type = TREE_TYPE (type);
5932 } while (AGGREGATE_TYPE_P (type));
5934 if (! AGGREGATE_TYPE_P (type) && type != error_mark_node)
5935 align = MAX (align, TYPE_ALIGN (type));
5937 return align;
5940 /* Return 1 for an operand in small memory on V.4/eabi. */
5943 small_data_operand (rtx op ATTRIBUTE_UNUSED,
5944 enum machine_mode mode ATTRIBUTE_UNUSED)
5946 #if TARGET_ELF
5947 rtx sym_ref;
5949 if (rs6000_sdata == SDATA_NONE || rs6000_sdata == SDATA_DATA)
5950 return 0;
5952 if (DEFAULT_ABI != ABI_V4)
5953 return 0;
5955 /* Vector and float memory instructions have a limited offset on the
5956 SPE, so using a vector or float variable directly as an operand is
5957 not useful. */
5958 if (TARGET_SPE
5959 && (SPE_VECTOR_MODE (mode) || FLOAT_MODE_P (mode)))
5960 return 0;
5962 if (GET_CODE (op) == SYMBOL_REF)
5963 sym_ref = op;
5965 else if (GET_CODE (op) != CONST
5966 || GET_CODE (XEXP (op, 0)) != PLUS
5967 || GET_CODE (XEXP (XEXP (op, 0), 0)) != SYMBOL_REF
5968 || GET_CODE (XEXP (XEXP (op, 0), 1)) != CONST_INT)
5969 return 0;
5971 else
5973 rtx sum = XEXP (op, 0);
5974 HOST_WIDE_INT summand;
5976 /* We have to be careful here, because it is the referenced address
5977 that must be 32k from _SDA_BASE_, not just the symbol. */
5978 summand = INTVAL (XEXP (sum, 1));
5979 if (summand < 0 || summand > g_switch_value)
5980 return 0;
5982 sym_ref = XEXP (sum, 0);
5985 return SYMBOL_REF_SMALL_P (sym_ref);
5986 #else
5987 return 0;
5988 #endif
5991 /* Return true if either operand is a general purpose register. */
5993 bool
5994 gpr_or_gpr_p (rtx op0, rtx op1)
5996 return ((REG_P (op0) && INT_REGNO_P (REGNO (op0)))
5997 || (REG_P (op1) && INT_REGNO_P (REGNO (op1))));
6000 /* Return true if this is a move direct operation between GPR registers and
6001 floating point/VSX registers. */
6003 bool
6004 direct_move_p (rtx op0, rtx op1)
6006 int regno0, regno1;
6008 if (!REG_P (op0) || !REG_P (op1))
6009 return false;
6011 if (!TARGET_DIRECT_MOVE && !TARGET_MFPGPR)
6012 return false;
6014 regno0 = REGNO (op0);
6015 regno1 = REGNO (op1);
6016 if (regno0 >= FIRST_PSEUDO_REGISTER || regno1 >= FIRST_PSEUDO_REGISTER)
6017 return false;
6019 if (INT_REGNO_P (regno0))
6020 return (TARGET_DIRECT_MOVE) ? VSX_REGNO_P (regno1) : FP_REGNO_P (regno1);
6022 else if (INT_REGNO_P (regno1))
6024 if (TARGET_MFPGPR && FP_REGNO_P (regno0))
6025 return true;
6027 else if (TARGET_DIRECT_MOVE && VSX_REGNO_P (regno0))
6028 return true;
6031 return false;
6034 /* Return true if this is a load or store quad operation. This function does
6035 not handle the atomic quad memory instructions. */
6037 bool
6038 quad_load_store_p (rtx op0, rtx op1)
6040 bool ret;
6042 if (!TARGET_QUAD_MEMORY)
6043 ret = false;
6045 else if (REG_P (op0) && MEM_P (op1))
6046 ret = (quad_int_reg_operand (op0, GET_MODE (op0))
6047 && quad_memory_operand (op1, GET_MODE (op1))
6048 && !reg_overlap_mentioned_p (op0, op1));
6050 else if (MEM_P (op0) && REG_P (op1))
6051 ret = (quad_memory_operand (op0, GET_MODE (op0))
6052 && quad_int_reg_operand (op1, GET_MODE (op1)));
6054 else
6055 ret = false;
6057 if (TARGET_DEBUG_ADDR)
6059 fprintf (stderr, "\n========== quad_load_store, return %s\n",
6060 ret ? "true" : "false");
6061 debug_rtx (gen_rtx_SET (VOIDmode, op0, op1));
6064 return ret;
6067 /* Given an address, return a constant offset term if one exists. */
6069 static rtx
6070 address_offset (rtx op)
6072 if (GET_CODE (op) == PRE_INC
6073 || GET_CODE (op) == PRE_DEC)
6074 op = XEXP (op, 0);
6075 else if (GET_CODE (op) == PRE_MODIFY
6076 || GET_CODE (op) == LO_SUM)
6077 op = XEXP (op, 1);
6079 if (GET_CODE (op) == CONST)
6080 op = XEXP (op, 0);
6082 if (GET_CODE (op) == PLUS)
6083 op = XEXP (op, 1);
6085 if (CONST_INT_P (op))
6086 return op;
6088 return NULL_RTX;
6091 /* Return true if the MEM operand is a memory operand suitable for use
6092 with a (full width, possibly multiple) gpr load/store. On
6093 powerpc64 this means the offset must be divisible by 4.
6094 Implements 'Y' constraint.
6096 Accept direct, indexed, offset, lo_sum and tocref. Since this is
6097 a constraint function we know the operand has satisfied a suitable
6098 memory predicate. Also accept some odd rtl generated by reload
6099 (see rs6000_legitimize_reload_address for various forms). It is
6100 important that reload rtl be accepted by appropriate constraints
6101 but not by the operand predicate.
6103 Offsetting a lo_sum should not be allowed, except where we know by
6104 alignment that a 32k boundary is not crossed, but see the ???
6105 comment in rs6000_legitimize_reload_address. Note that by
6106 "offsetting" here we mean a further offset to access parts of the
6107 MEM. It's fine to have a lo_sum where the inner address is offset
6108 from a sym, since the same sym+offset will appear in the high part
6109 of the address calculation. */
6111 bool
6112 mem_operand_gpr (rtx op, enum machine_mode mode)
6114 unsigned HOST_WIDE_INT offset;
6115 int extra;
6116 rtx addr = XEXP (op, 0);
6118 op = address_offset (addr);
6119 if (op == NULL_RTX)
6120 return true;
6122 offset = INTVAL (op);
6123 if (TARGET_POWERPC64 && (offset & 3) != 0)
6124 return false;
6126 extra = GET_MODE_SIZE (mode) - UNITS_PER_WORD;
6127 gcc_assert (extra >= 0);
6129 if (GET_CODE (addr) == LO_SUM)
6130 /* For lo_sum addresses, we must allow any offset except one that
6131 causes a wrap, so test only the low 16 bits. */
6132 offset = ((offset & 0xffff) ^ 0x8000) - 0x8000;
6134 return offset + 0x8000 < 0x10000u - extra;
6137 /* Subroutines of rs6000_legitimize_address and rs6000_legitimate_address_p. */
6139 static bool
6140 reg_offset_addressing_ok_p (enum machine_mode mode)
6142 switch (mode)
6144 case V16QImode:
6145 case V8HImode:
6146 case V4SFmode:
6147 case V4SImode:
6148 case V2DFmode:
6149 case V2DImode:
6150 case V1TImode:
6151 case TImode:
6152 /* AltiVec/VSX vector modes. Only reg+reg addressing is valid. While
6153 TImode is not a vector mode, if we want to use the VSX registers to
6154 move it around, we need to restrict ourselves to reg+reg
6155 addressing. */
6156 if (VECTOR_MEM_ALTIVEC_OR_VSX_P (mode))
6157 return false;
6158 break;
6160 case V4HImode:
6161 case V2SImode:
6162 case V1DImode:
6163 case V2SFmode:
6164 /* Paired vector modes. Only reg+reg addressing is valid. */
6165 if (TARGET_PAIRED_FLOAT)
6166 return false;
6167 break;
6169 case SDmode:
6170 /* If we can do direct load/stores of SDmode, restrict it to reg+reg
6171 addressing for the LFIWZX and STFIWX instructions. */
6172 if (TARGET_NO_SDMODE_STACK)
6173 return false;
6174 break;
6176 default:
6177 break;
6180 return true;
6183 static bool
6184 virtual_stack_registers_memory_p (rtx op)
6186 int regnum;
6188 if (GET_CODE (op) == REG)
6189 regnum = REGNO (op);
6191 else if (GET_CODE (op) == PLUS
6192 && GET_CODE (XEXP (op, 0)) == REG
6193 && GET_CODE (XEXP (op, 1)) == CONST_INT)
6194 regnum = REGNO (XEXP (op, 0));
6196 else
6197 return false;
6199 return (regnum >= FIRST_VIRTUAL_REGISTER
6200 && regnum <= LAST_VIRTUAL_POINTER_REGISTER);
6203 /* Return true if a MODE sized memory accesses to OP plus OFFSET
6204 is known to not straddle a 32k boundary. */
6206 static bool
6207 offsettable_ok_by_alignment (rtx op, HOST_WIDE_INT offset,
6208 enum machine_mode mode)
6210 tree decl, type;
6211 unsigned HOST_WIDE_INT dsize, dalign, lsb, mask;
6213 if (GET_CODE (op) != SYMBOL_REF)
6214 return false;
6216 dsize = GET_MODE_SIZE (mode);
6217 decl = SYMBOL_REF_DECL (op);
6218 if (!decl)
6220 if (dsize == 0)
6221 return false;
6223 /* -fsection-anchors loses the original SYMBOL_REF_DECL when
6224 replacing memory addresses with an anchor plus offset. We
6225 could find the decl by rummaging around in the block->objects
6226 VEC for the given offset but that seems like too much work. */
6227 dalign = BITS_PER_UNIT;
6228 if (SYMBOL_REF_HAS_BLOCK_INFO_P (op)
6229 && SYMBOL_REF_ANCHOR_P (op)
6230 && SYMBOL_REF_BLOCK (op) != NULL)
6232 struct object_block *block = SYMBOL_REF_BLOCK (op);
6234 dalign = block->alignment;
6235 offset += SYMBOL_REF_BLOCK_OFFSET (op);
6237 else if (CONSTANT_POOL_ADDRESS_P (op))
6239 /* It would be nice to have get_pool_align().. */
6240 enum machine_mode cmode = get_pool_mode (op);
6242 dalign = GET_MODE_ALIGNMENT (cmode);
6245 else if (DECL_P (decl))
6247 dalign = DECL_ALIGN (decl);
6249 if (dsize == 0)
6251 /* Allow BLKmode when the entire object is known to not
6252 cross a 32k boundary. */
6253 if (!DECL_SIZE_UNIT (decl))
6254 return false;
6256 if (!tree_fits_uhwi_p (DECL_SIZE_UNIT (decl)))
6257 return false;
6259 dsize = tree_to_uhwi (DECL_SIZE_UNIT (decl));
6260 if (dsize > 32768)
6261 return false;
6263 return dalign / BITS_PER_UNIT >= dsize;
6266 else
6268 type = TREE_TYPE (decl);
6270 dalign = TYPE_ALIGN (type);
6271 if (CONSTANT_CLASS_P (decl))
6272 dalign = CONSTANT_ALIGNMENT (decl, dalign);
6273 else
6274 dalign = DATA_ALIGNMENT (decl, dalign);
6276 if (dsize == 0)
6278 /* BLKmode, check the entire object. */
6279 if (TREE_CODE (decl) == STRING_CST)
6280 dsize = TREE_STRING_LENGTH (decl);
6281 else if (TYPE_SIZE_UNIT (type)
6282 && tree_fits_uhwi_p (TYPE_SIZE_UNIT (type)))
6283 dsize = tree_to_uhwi (TYPE_SIZE_UNIT (type));
6284 else
6285 return false;
6286 if (dsize > 32768)
6287 return false;
6289 return dalign / BITS_PER_UNIT >= dsize;
6293 /* Find how many bits of the alignment we know for this access. */
6294 mask = dalign / BITS_PER_UNIT - 1;
6295 lsb = offset & -offset;
6296 mask &= lsb - 1;
6297 dalign = mask + 1;
6299 return dalign >= dsize;
6302 static bool
6303 constant_pool_expr_p (rtx op)
6305 rtx base, offset;
6307 split_const (op, &base, &offset);
6308 return (GET_CODE (base) == SYMBOL_REF
6309 && CONSTANT_POOL_ADDRESS_P (base)
6310 && ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (get_pool_constant (base), Pmode));
6313 static const_rtx tocrel_base, tocrel_offset;
6315 /* Return true if OP is a toc pointer relative address (the output
6316 of create_TOC_reference). If STRICT, do not match high part or
6317 non-split -mcmodel=large/medium toc pointer relative addresses. */
6319 bool
6320 toc_relative_expr_p (const_rtx op, bool strict)
6322 if (!TARGET_TOC)
6323 return false;
6325 if (TARGET_CMODEL != CMODEL_SMALL)
6327 /* Only match the low part. */
6328 if (GET_CODE (op) == LO_SUM
6329 && REG_P (XEXP (op, 0))
6330 && INT_REG_OK_FOR_BASE_P (XEXP (op, 0), strict))
6331 op = XEXP (op, 1);
6332 else if (strict)
6333 return false;
6336 tocrel_base = op;
6337 tocrel_offset = const0_rtx;
6338 if (GET_CODE (op) == PLUS && add_cint_operand (XEXP (op, 1), GET_MODE (op)))
6340 tocrel_base = XEXP (op, 0);
6341 tocrel_offset = XEXP (op, 1);
6344 return (GET_CODE (tocrel_base) == UNSPEC
6345 && XINT (tocrel_base, 1) == UNSPEC_TOCREL);
6348 /* Return true if X is a constant pool address, and also for cmodel=medium
6349 if X is a toc-relative address known to be offsettable within MODE. */
6351 bool
6352 legitimate_constant_pool_address_p (const_rtx x, enum machine_mode mode,
6353 bool strict)
6355 return (toc_relative_expr_p (x, strict)
6356 && (TARGET_CMODEL != CMODEL_MEDIUM
6357 || constant_pool_expr_p (XVECEXP (tocrel_base, 0, 0))
6358 || mode == QImode
6359 || offsettable_ok_by_alignment (XVECEXP (tocrel_base, 0, 0),
6360 INTVAL (tocrel_offset), mode)));
6363 static bool
6364 legitimate_small_data_p (enum machine_mode mode, rtx x)
6366 return (DEFAULT_ABI == ABI_V4
6367 && !flag_pic && !TARGET_TOC
6368 && (GET_CODE (x) == SYMBOL_REF || GET_CODE (x) == CONST)
6369 && small_data_operand (x, mode));
6372 /* SPE offset addressing is limited to 5-bits worth of double words. */
6373 #define SPE_CONST_OFFSET_OK(x) (((x) & ~0xf8) == 0)
6375 bool
6376 rs6000_legitimate_offset_address_p (enum machine_mode mode, rtx x,
6377 bool strict, bool worst_case)
6379 unsigned HOST_WIDE_INT offset;
6380 unsigned int extra;
6382 if (GET_CODE (x) != PLUS)
6383 return false;
6384 if (!REG_P (XEXP (x, 0)))
6385 return false;
6386 if (!INT_REG_OK_FOR_BASE_P (XEXP (x, 0), strict))
6387 return false;
6388 if (!reg_offset_addressing_ok_p (mode))
6389 return virtual_stack_registers_memory_p (x);
6390 if (legitimate_constant_pool_address_p (x, mode, strict || lra_in_progress))
6391 return true;
6392 if (GET_CODE (XEXP (x, 1)) != CONST_INT)
6393 return false;
6395 offset = INTVAL (XEXP (x, 1));
6396 extra = 0;
6397 switch (mode)
6399 case V4HImode:
6400 case V2SImode:
6401 case V1DImode:
6402 case V2SFmode:
6403 /* SPE vector modes. */
6404 return SPE_CONST_OFFSET_OK (offset);
6406 case DFmode:
6407 case DDmode:
6408 case DImode:
6409 /* On e500v2, we may have:
6411 (subreg:DF (mem:DI (plus (reg) (const_int))) 0).
6413 Which gets addressed with evldd instructions. */
6414 if (TARGET_E500_DOUBLE)
6415 return SPE_CONST_OFFSET_OK (offset);
6417 /* If we are using VSX scalar loads, restrict ourselves to reg+reg
6418 addressing. */
6419 if (VECTOR_MEM_VSX_P (mode))
6420 return false;
6422 if (!worst_case)
6423 break;
6424 if (!TARGET_POWERPC64)
6425 extra = 4;
6426 else if (offset & 3)
6427 return false;
6428 break;
6430 case TFmode:
6431 if (TARGET_E500_DOUBLE)
6432 return (SPE_CONST_OFFSET_OK (offset)
6433 && SPE_CONST_OFFSET_OK (offset + 8));
6434 /* fall through */
6436 case TDmode:
6437 case TImode:
6438 case PTImode:
6439 extra = 8;
6440 if (!worst_case)
6441 break;
6442 if (!TARGET_POWERPC64)
6443 extra = 12;
6444 else if (offset & 3)
6445 return false;
6446 break;
6448 default:
6449 break;
6452 offset += 0x8000;
6453 return offset < 0x10000 - extra;
6456 bool
6457 legitimate_indexed_address_p (rtx x, int strict)
6459 rtx op0, op1;
6461 if (GET_CODE (x) != PLUS)
6462 return false;
6464 op0 = XEXP (x, 0);
6465 op1 = XEXP (x, 1);
6467 /* Recognize the rtl generated by reload which we know will later be
6468 replaced with proper base and index regs. */
6469 if (!strict
6470 && reload_in_progress
6471 && (REG_P (op0) || GET_CODE (op0) == PLUS)
6472 && REG_P (op1))
6473 return true;
6475 return (REG_P (op0) && REG_P (op1)
6476 && ((INT_REG_OK_FOR_BASE_P (op0, strict)
6477 && INT_REG_OK_FOR_INDEX_P (op1, strict))
6478 || (INT_REG_OK_FOR_BASE_P (op1, strict)
6479 && INT_REG_OK_FOR_INDEX_P (op0, strict))));
6482 bool
6483 avoiding_indexed_address_p (enum machine_mode mode)
6485 /* Avoid indexed addressing for modes that have non-indexed
6486 load/store instruction forms. */
6487 return (TARGET_AVOID_XFORM && VECTOR_MEM_NONE_P (mode));
6490 bool
6491 legitimate_indirect_address_p (rtx x, int strict)
6493 return GET_CODE (x) == REG && INT_REG_OK_FOR_BASE_P (x, strict);
6496 bool
6497 macho_lo_sum_memory_operand (rtx x, enum machine_mode mode)
6499 if (!TARGET_MACHO || !flag_pic
6500 || mode != SImode || GET_CODE (x) != MEM)
6501 return false;
6502 x = XEXP (x, 0);
6504 if (GET_CODE (x) != LO_SUM)
6505 return false;
6506 if (GET_CODE (XEXP (x, 0)) != REG)
6507 return false;
6508 if (!INT_REG_OK_FOR_BASE_P (XEXP (x, 0), 0))
6509 return false;
6510 x = XEXP (x, 1);
6512 return CONSTANT_P (x);
6515 static bool
6516 legitimate_lo_sum_address_p (enum machine_mode mode, rtx x, int strict)
6518 if (GET_CODE (x) != LO_SUM)
6519 return false;
6520 if (GET_CODE (XEXP (x, 0)) != REG)
6521 return false;
6522 if (!INT_REG_OK_FOR_BASE_P (XEXP (x, 0), strict))
6523 return false;
6524 /* Restrict addressing for DI because of our SUBREG hackery. */
6525 if (TARGET_E500_DOUBLE && GET_MODE_SIZE (mode) > UNITS_PER_WORD)
6526 return false;
6527 x = XEXP (x, 1);
6529 if (TARGET_ELF || TARGET_MACHO)
6531 bool large_toc_ok;
6533 if (DEFAULT_ABI == ABI_V4 && flag_pic)
6534 return false;
6535 /* LRA don't use LEGITIMIZE_RELOAD_ADDRESS as it usually calls
6536 push_reload from reload pass code. LEGITIMIZE_RELOAD_ADDRESS
6537 recognizes some LO_SUM addresses as valid although this
6538 function says opposite. In most cases, LRA through different
6539 transformations can generate correct code for address reloads.
6540 It can not manage only some LO_SUM cases. So we need to add
6541 code analogous to one in rs6000_legitimize_reload_address for
6542 LOW_SUM here saying that some addresses are still valid. */
6543 large_toc_ok = (lra_in_progress && TARGET_CMODEL != CMODEL_SMALL
6544 && small_toc_ref (x, VOIDmode));
6545 if (TARGET_TOC && ! large_toc_ok)
6546 return false;
6547 if (GET_MODE_NUNITS (mode) != 1)
6548 return false;
6549 if (GET_MODE_SIZE (mode) > UNITS_PER_WORD
6550 && !(/* ??? Assume floating point reg based on mode? */
6551 TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_DOUBLE_FLOAT
6552 && (mode == DFmode || mode == DDmode)))
6553 return false;
6555 return CONSTANT_P (x) || large_toc_ok;
6558 return false;
6562 /* Try machine-dependent ways of modifying an illegitimate address
6563 to be legitimate. If we find one, return the new, valid address.
6564 This is used from only one place: `memory_address' in explow.c.
6566 OLDX is the address as it was before break_out_memory_refs was
6567 called. In some cases it is useful to look at this to decide what
6568 needs to be done.
6570 It is always safe for this function to do nothing. It exists to
6571 recognize opportunities to optimize the output.
6573 On RS/6000, first check for the sum of a register with a constant
6574 integer that is out of range. If so, generate code to add the
6575 constant with the low-order 16 bits masked to the register and force
6576 this result into another register (this can be done with `cau').
6577 Then generate an address of REG+(CONST&0xffff), allowing for the
6578 possibility of bit 16 being a one.
6580 Then check for the sum of a register and something not constant, try to
6581 load the other things into a register and return the sum. */
6583 static rtx
6584 rs6000_legitimize_address (rtx x, rtx oldx ATTRIBUTE_UNUSED,
6585 enum machine_mode mode)
6587 unsigned int extra;
6589 if (!reg_offset_addressing_ok_p (mode))
6591 if (virtual_stack_registers_memory_p (x))
6592 return x;
6594 /* In theory we should not be seeing addresses of the form reg+0,
6595 but just in case it is generated, optimize it away. */
6596 if (GET_CODE (x) == PLUS && XEXP (x, 1) == const0_rtx)
6597 return force_reg (Pmode, XEXP (x, 0));
6599 /* For TImode with load/store quad, restrict addresses to just a single
6600 pointer, so it works with both GPRs and VSX registers. */
6601 /* Make sure both operands are registers. */
6602 else if (GET_CODE (x) == PLUS
6603 && (mode != TImode || !TARGET_QUAD_MEMORY))
6604 return gen_rtx_PLUS (Pmode,
6605 force_reg (Pmode, XEXP (x, 0)),
6606 force_reg (Pmode, XEXP (x, 1)));
6607 else
6608 return force_reg (Pmode, x);
6610 if (GET_CODE (x) == SYMBOL_REF)
6612 enum tls_model model = SYMBOL_REF_TLS_MODEL (x);
6613 if (model != 0)
6614 return rs6000_legitimize_tls_address (x, model);
6617 extra = 0;
6618 switch (mode)
6620 case TFmode:
6621 case TDmode:
6622 case TImode:
6623 case PTImode:
6624 /* As in legitimate_offset_address_p we do not assume
6625 worst-case. The mode here is just a hint as to the registers
6626 used. A TImode is usually in gprs, but may actually be in
6627 fprs. Leave worst-case scenario for reload to handle via
6628 insn constraints. PTImode is only GPRs. */
6629 extra = 8;
6630 break;
6631 default:
6632 break;
6635 if (GET_CODE (x) == PLUS
6636 && GET_CODE (XEXP (x, 0)) == REG
6637 && GET_CODE (XEXP (x, 1)) == CONST_INT
6638 && ((unsigned HOST_WIDE_INT) (INTVAL (XEXP (x, 1)) + 0x8000)
6639 >= 0x10000 - extra)
6640 && !(SPE_VECTOR_MODE (mode)
6641 || (TARGET_E500_DOUBLE && GET_MODE_SIZE (mode) > UNITS_PER_WORD)))
6643 HOST_WIDE_INT high_int, low_int;
6644 rtx sum;
6645 low_int = ((INTVAL (XEXP (x, 1)) & 0xffff) ^ 0x8000) - 0x8000;
6646 if (low_int >= 0x8000 - extra)
6647 low_int = 0;
6648 high_int = INTVAL (XEXP (x, 1)) - low_int;
6649 sum = force_operand (gen_rtx_PLUS (Pmode, XEXP (x, 0),
6650 GEN_INT (high_int)), 0);
6651 return plus_constant (Pmode, sum, low_int);
6653 else if (GET_CODE (x) == PLUS
6654 && GET_CODE (XEXP (x, 0)) == REG
6655 && GET_CODE (XEXP (x, 1)) != CONST_INT
6656 && GET_MODE_NUNITS (mode) == 1
6657 && (GET_MODE_SIZE (mode) <= UNITS_PER_WORD
6658 || (/* ??? Assume floating point reg based on mode? */
6659 (TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_DOUBLE_FLOAT)
6660 && (mode == DFmode || mode == DDmode)))
6661 && !avoiding_indexed_address_p (mode))
6663 return gen_rtx_PLUS (Pmode, XEXP (x, 0),
6664 force_reg (Pmode, force_operand (XEXP (x, 1), 0)));
6666 else if (SPE_VECTOR_MODE (mode)
6667 || (TARGET_E500_DOUBLE && GET_MODE_SIZE (mode) > UNITS_PER_WORD))
6669 if (mode == DImode)
6670 return x;
6671 /* We accept [reg + reg] and [reg + OFFSET]. */
6673 if (GET_CODE (x) == PLUS)
6675 rtx op1 = XEXP (x, 0);
6676 rtx op2 = XEXP (x, 1);
6677 rtx y;
6679 op1 = force_reg (Pmode, op1);
6681 if (GET_CODE (op2) != REG
6682 && (GET_CODE (op2) != CONST_INT
6683 || !SPE_CONST_OFFSET_OK (INTVAL (op2))
6684 || (GET_MODE_SIZE (mode) > 8
6685 && !SPE_CONST_OFFSET_OK (INTVAL (op2) + 8))))
6686 op2 = force_reg (Pmode, op2);
6688 /* We can't always do [reg + reg] for these, because [reg +
6689 reg + offset] is not a legitimate addressing mode. */
6690 y = gen_rtx_PLUS (Pmode, op1, op2);
6692 if ((GET_MODE_SIZE (mode) > 8 || mode == DDmode) && REG_P (op2))
6693 return force_reg (Pmode, y);
6694 else
6695 return y;
6698 return force_reg (Pmode, x);
6700 else if ((TARGET_ELF
6701 #if TARGET_MACHO
6702 || !MACHO_DYNAMIC_NO_PIC_P
6703 #endif
6705 && TARGET_32BIT
6706 && TARGET_NO_TOC
6707 && ! flag_pic
6708 && GET_CODE (x) != CONST_INT
6709 && GET_CODE (x) != CONST_WIDE_INT
6710 && GET_CODE (x) != CONST_DOUBLE
6711 && CONSTANT_P (x)
6712 && GET_MODE_NUNITS (mode) == 1
6713 && (GET_MODE_SIZE (mode) <= UNITS_PER_WORD
6714 || (/* ??? Assume floating point reg based on mode? */
6715 (TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_DOUBLE_FLOAT)
6716 && (mode == DFmode || mode == DDmode))))
6718 rtx reg = gen_reg_rtx (Pmode);
6719 if (TARGET_ELF)
6720 emit_insn (gen_elf_high (reg, x));
6721 else
6722 emit_insn (gen_macho_high (reg, x));
6723 return gen_rtx_LO_SUM (Pmode, reg, x);
6725 else if (TARGET_TOC
6726 && GET_CODE (x) == SYMBOL_REF
6727 && constant_pool_expr_p (x)
6728 && ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (get_pool_constant (x), Pmode))
6729 return create_TOC_reference (x, NULL_RTX);
6730 else
6731 return x;
6734 /* Debug version of rs6000_legitimize_address. */
6735 static rtx
6736 rs6000_debug_legitimize_address (rtx x, rtx oldx, enum machine_mode mode)
6738 rtx ret;
6739 rtx insns;
6741 start_sequence ();
6742 ret = rs6000_legitimize_address (x, oldx, mode);
6743 insns = get_insns ();
6744 end_sequence ();
6746 if (ret != x)
6748 fprintf (stderr,
6749 "\nrs6000_legitimize_address: mode %s, old code %s, "
6750 "new code %s, modified\n",
6751 GET_MODE_NAME (mode), GET_RTX_NAME (GET_CODE (x)),
6752 GET_RTX_NAME (GET_CODE (ret)));
6754 fprintf (stderr, "Original address:\n");
6755 debug_rtx (x);
6757 fprintf (stderr, "oldx:\n");
6758 debug_rtx (oldx);
6760 fprintf (stderr, "New address:\n");
6761 debug_rtx (ret);
6763 if (insns)
6765 fprintf (stderr, "Insns added:\n");
6766 debug_rtx_list (insns, 20);
6769 else
6771 fprintf (stderr,
6772 "\nrs6000_legitimize_address: mode %s, code %s, no change:\n",
6773 GET_MODE_NAME (mode), GET_RTX_NAME (GET_CODE (x)));
6775 debug_rtx (x);
6778 if (insns)
6779 emit_insn (insns);
6781 return ret;
6784 /* This is called from dwarf2out.c via TARGET_ASM_OUTPUT_DWARF_DTPREL.
6785 We need to emit DTP-relative relocations. */
6787 static void rs6000_output_dwarf_dtprel (FILE *, int, rtx) ATTRIBUTE_UNUSED;
6788 static void
6789 rs6000_output_dwarf_dtprel (FILE *file, int size, rtx x)
6791 switch (size)
6793 case 4:
6794 fputs ("\t.long\t", file);
6795 break;
6796 case 8:
6797 fputs (DOUBLE_INT_ASM_OP, file);
6798 break;
6799 default:
6800 gcc_unreachable ();
6802 output_addr_const (file, x);
6803 fputs ("@dtprel+0x8000", file);
6806 /* In the name of slightly smaller debug output, and to cater to
6807 general assembler lossage, recognize various UNSPEC sequences
6808 and turn them back into a direct symbol reference. */
6810 static rtx
6811 rs6000_delegitimize_address (rtx orig_x)
6813 rtx x, y, offset;
6815 orig_x = delegitimize_mem_from_attrs (orig_x);
6816 x = orig_x;
6817 if (MEM_P (x))
6818 x = XEXP (x, 0);
6820 y = x;
6821 if (TARGET_CMODEL != CMODEL_SMALL
6822 && GET_CODE (y) == LO_SUM)
6823 y = XEXP (y, 1);
6825 offset = NULL_RTX;
6826 if (GET_CODE (y) == PLUS
6827 && GET_MODE (y) == Pmode
6828 && CONST_INT_P (XEXP (y, 1)))
6830 offset = XEXP (y, 1);
6831 y = XEXP (y, 0);
6834 if (GET_CODE (y) == UNSPEC
6835 && XINT (y, 1) == UNSPEC_TOCREL)
6837 #ifdef ENABLE_CHECKING
6838 if (REG_P (XVECEXP (y, 0, 1))
6839 && REGNO (XVECEXP (y, 0, 1)) == TOC_REGISTER)
6841 /* All good. */
6843 else if (GET_CODE (XVECEXP (y, 0, 1)) == DEBUG_EXPR)
6845 /* Weirdness alert. df_note_compute can replace r2 with a
6846 debug_expr when this unspec is in a debug_insn.
6847 Seen in gcc.dg/pr51957-1.c */
6849 else
6851 debug_rtx (orig_x);
6852 abort ();
6854 #endif
6855 y = XVECEXP (y, 0, 0);
6857 #ifdef HAVE_AS_TLS
6858 /* Do not associate thread-local symbols with the original
6859 constant pool symbol. */
6860 if (TARGET_XCOFF
6861 && GET_CODE (y) == SYMBOL_REF
6862 && CONSTANT_POOL_ADDRESS_P (y)
6863 && SYMBOL_REF_TLS_MODEL (get_pool_constant (y)) >= TLS_MODEL_REAL)
6864 return orig_x;
6865 #endif
6867 if (offset != NULL_RTX)
6868 y = gen_rtx_PLUS (Pmode, y, offset);
6869 if (!MEM_P (orig_x))
6870 return y;
6871 else
6872 return replace_equiv_address_nv (orig_x, y);
6875 if (TARGET_MACHO
6876 && GET_CODE (orig_x) == LO_SUM
6877 && GET_CODE (XEXP (orig_x, 1)) == CONST)
6879 y = XEXP (XEXP (orig_x, 1), 0);
6880 if (GET_CODE (y) == UNSPEC
6881 && XINT (y, 1) == UNSPEC_MACHOPIC_OFFSET)
6882 return XVECEXP (y, 0, 0);
6885 return orig_x;
6888 /* Return true if X shouldn't be emitted into the debug info.
6889 The linker doesn't like .toc section references from
6890 .debug_* sections, so reject .toc section symbols. */
6892 static bool
6893 rs6000_const_not_ok_for_debug_p (rtx x)
6895 if (GET_CODE (x) == SYMBOL_REF
6896 && CONSTANT_POOL_ADDRESS_P (x))
6898 rtx c = get_pool_constant (x);
6899 enum machine_mode cmode = get_pool_mode (x);
6900 if (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (c, cmode))
6901 return true;
6904 return false;
6907 /* Construct the SYMBOL_REF for the tls_get_addr function. */
6909 static GTY(()) rtx rs6000_tls_symbol;
6910 static rtx
6911 rs6000_tls_get_addr (void)
6913 if (!rs6000_tls_symbol)
6914 rs6000_tls_symbol = init_one_libfunc ("__tls_get_addr");
6916 return rs6000_tls_symbol;
6919 /* Construct the SYMBOL_REF for TLS GOT references. */
6921 static GTY(()) rtx rs6000_got_symbol;
6922 static rtx
6923 rs6000_got_sym (void)
6925 if (!rs6000_got_symbol)
6927 rs6000_got_symbol = gen_rtx_SYMBOL_REF (Pmode, "_GLOBAL_OFFSET_TABLE_");
6928 SYMBOL_REF_FLAGS (rs6000_got_symbol) |= SYMBOL_FLAG_LOCAL;
6929 SYMBOL_REF_FLAGS (rs6000_got_symbol) |= SYMBOL_FLAG_EXTERNAL;
6932 return rs6000_got_symbol;
6935 /* AIX Thread-Local Address support. */
6937 static rtx
6938 rs6000_legitimize_tls_address_aix (rtx addr, enum tls_model model)
6940 rtx sym, mem, tocref, tlsreg, tmpreg, dest, tlsaddr;
6941 const char *name;
6942 char *tlsname;
6944 name = XSTR (addr, 0);
6945 /* Append TLS CSECT qualifier, unless the symbol already is qualified
6946 or the symbol will be in TLS private data section. */
6947 if (name[strlen (name) - 1] != ']'
6948 && (TREE_PUBLIC (SYMBOL_REF_DECL (addr))
6949 || bss_initializer_p (SYMBOL_REF_DECL (addr))))
6951 tlsname = XALLOCAVEC (char, strlen (name) + 4);
6952 strcpy (tlsname, name);
6953 strcat (tlsname,
6954 bss_initializer_p (SYMBOL_REF_DECL (addr)) ? "[UL]" : "[TL]");
6955 tlsaddr = copy_rtx (addr);
6956 XSTR (tlsaddr, 0) = ggc_strdup (tlsname);
6958 else
6959 tlsaddr = addr;
6961 /* Place addr into TOC constant pool. */
6962 sym = force_const_mem (GET_MODE (tlsaddr), tlsaddr);
6964 /* Output the TOC entry and create the MEM referencing the value. */
6965 if (constant_pool_expr_p (XEXP (sym, 0))
6966 && ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (get_pool_constant (XEXP (sym, 0)), Pmode))
6968 tocref = create_TOC_reference (XEXP (sym, 0), NULL_RTX);
6969 mem = gen_const_mem (Pmode, tocref);
6970 set_mem_alias_set (mem, get_TOC_alias_set ());
6972 else
6973 return sym;
6975 /* Use global-dynamic for local-dynamic. */
6976 if (model == TLS_MODEL_GLOBAL_DYNAMIC
6977 || model == TLS_MODEL_LOCAL_DYNAMIC)
6979 /* Create new TOC reference for @m symbol. */
6980 name = XSTR (XVECEXP (XEXP (mem, 0), 0, 0), 0);
6981 tlsname = XALLOCAVEC (char, strlen (name) + 1);
6982 strcpy (tlsname, "*LCM");
6983 strcat (tlsname, name + 3);
6984 rtx modaddr = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (tlsname));
6985 SYMBOL_REF_FLAGS (modaddr) |= SYMBOL_FLAG_LOCAL;
6986 tocref = create_TOC_reference (modaddr, NULL_RTX);
6987 rtx modmem = gen_const_mem (Pmode, tocref);
6988 set_mem_alias_set (modmem, get_TOC_alias_set ());
6990 rtx modreg = gen_reg_rtx (Pmode);
6991 emit_insn (gen_rtx_SET (VOIDmode, modreg, modmem));
6993 tmpreg = gen_reg_rtx (Pmode);
6994 emit_insn (gen_rtx_SET (VOIDmode, tmpreg, mem));
6996 dest = gen_reg_rtx (Pmode);
6997 if (TARGET_32BIT)
6998 emit_insn (gen_tls_get_addrsi (dest, modreg, tmpreg));
6999 else
7000 emit_insn (gen_tls_get_addrdi (dest, modreg, tmpreg));
7001 return dest;
7003 /* Obtain TLS pointer: 32 bit call or 64 bit GPR 13. */
7004 else if (TARGET_32BIT)
7006 tlsreg = gen_reg_rtx (SImode);
7007 emit_insn (gen_tls_get_tpointer (tlsreg));
7009 else
7010 tlsreg = gen_rtx_REG (DImode, 13);
7012 /* Load the TOC value into temporary register. */
7013 tmpreg = gen_reg_rtx (Pmode);
7014 emit_insn (gen_rtx_SET (VOIDmode, tmpreg, mem));
7015 set_unique_reg_note (get_last_insn (), REG_EQUAL,
7016 gen_rtx_MINUS (Pmode, addr, tlsreg));
7018 /* Add TOC symbol value to TLS pointer. */
7019 dest = force_reg (Pmode, gen_rtx_PLUS (Pmode, tmpreg, tlsreg));
7021 return dest;
7024 /* ADDR contains a thread-local SYMBOL_REF. Generate code to compute
7025 this (thread-local) address. */
7027 static rtx
7028 rs6000_legitimize_tls_address (rtx addr, enum tls_model model)
7030 rtx dest, insn;
7032 if (TARGET_XCOFF)
7033 return rs6000_legitimize_tls_address_aix (addr, model);
7035 dest = gen_reg_rtx (Pmode);
7036 if (model == TLS_MODEL_LOCAL_EXEC && rs6000_tls_size == 16)
7038 rtx tlsreg;
7040 if (TARGET_64BIT)
7042 tlsreg = gen_rtx_REG (Pmode, 13);
7043 insn = gen_tls_tprel_64 (dest, tlsreg, addr);
7045 else
7047 tlsreg = gen_rtx_REG (Pmode, 2);
7048 insn = gen_tls_tprel_32 (dest, tlsreg, addr);
7050 emit_insn (insn);
7052 else if (model == TLS_MODEL_LOCAL_EXEC && rs6000_tls_size == 32)
7054 rtx tlsreg, tmp;
7056 tmp = gen_reg_rtx (Pmode);
7057 if (TARGET_64BIT)
7059 tlsreg = gen_rtx_REG (Pmode, 13);
7060 insn = gen_tls_tprel_ha_64 (tmp, tlsreg, addr);
7062 else
7064 tlsreg = gen_rtx_REG (Pmode, 2);
7065 insn = gen_tls_tprel_ha_32 (tmp, tlsreg, addr);
7067 emit_insn (insn);
7068 if (TARGET_64BIT)
7069 insn = gen_tls_tprel_lo_64 (dest, tmp, addr);
7070 else
7071 insn = gen_tls_tprel_lo_32 (dest, tmp, addr);
7072 emit_insn (insn);
7074 else
7076 rtx r3, got, tga, tmp1, tmp2, call_insn;
7078 /* We currently use relocations like @got@tlsgd for tls, which
7079 means the linker will handle allocation of tls entries, placing
7080 them in the .got section. So use a pointer to the .got section,
7081 not one to secondary TOC sections used by 64-bit -mminimal-toc,
7082 or to secondary GOT sections used by 32-bit -fPIC. */
7083 if (TARGET_64BIT)
7084 got = gen_rtx_REG (Pmode, 2);
7085 else
7087 if (flag_pic == 1)
7088 got = gen_rtx_REG (Pmode, RS6000_PIC_OFFSET_TABLE_REGNUM);
7089 else
7091 rtx gsym = rs6000_got_sym ();
7092 got = gen_reg_rtx (Pmode);
7093 if (flag_pic == 0)
7094 rs6000_emit_move (got, gsym, Pmode);
7095 else
7097 rtx mem, lab, last;
7099 tmp1 = gen_reg_rtx (Pmode);
7100 tmp2 = gen_reg_rtx (Pmode);
7101 mem = gen_const_mem (Pmode, tmp1);
7102 lab = gen_label_rtx ();
7103 emit_insn (gen_load_toc_v4_PIC_1b (gsym, lab));
7104 emit_move_insn (tmp1, gen_rtx_REG (Pmode, LR_REGNO));
7105 if (TARGET_LINK_STACK)
7106 emit_insn (gen_addsi3 (tmp1, tmp1, GEN_INT (4)));
7107 emit_move_insn (tmp2, mem);
7108 last = emit_insn (gen_addsi3 (got, tmp1, tmp2));
7109 set_unique_reg_note (last, REG_EQUAL, gsym);
7114 if (model == TLS_MODEL_GLOBAL_DYNAMIC)
7116 tga = rs6000_tls_get_addr ();
7117 emit_library_call_value (tga, dest, LCT_CONST, Pmode,
7118 1, const0_rtx, Pmode);
7120 r3 = gen_rtx_REG (Pmode, 3);
7121 if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
7123 if (TARGET_64BIT)
7124 insn = gen_tls_gd_aix64 (r3, got, addr, tga, const0_rtx);
7125 else
7126 insn = gen_tls_gd_aix32 (r3, got, addr, tga, const0_rtx);
7128 else if (DEFAULT_ABI == ABI_V4)
7129 insn = gen_tls_gd_sysvsi (r3, got, addr, tga, const0_rtx);
7130 else
7131 gcc_unreachable ();
7132 call_insn = last_call_insn ();
7133 PATTERN (call_insn) = insn;
7134 if (DEFAULT_ABI == ABI_V4 && TARGET_SECURE_PLT && flag_pic)
7135 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn),
7136 pic_offset_table_rtx);
7138 else if (model == TLS_MODEL_LOCAL_DYNAMIC)
7140 tga = rs6000_tls_get_addr ();
7141 tmp1 = gen_reg_rtx (Pmode);
7142 emit_library_call_value (tga, tmp1, LCT_CONST, Pmode,
7143 1, const0_rtx, Pmode);
7145 r3 = gen_rtx_REG (Pmode, 3);
7146 if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
7148 if (TARGET_64BIT)
7149 insn = gen_tls_ld_aix64 (r3, got, tga, const0_rtx);
7150 else
7151 insn = gen_tls_ld_aix32 (r3, got, tga, const0_rtx);
7153 else if (DEFAULT_ABI == ABI_V4)
7154 insn = gen_tls_ld_sysvsi (r3, got, tga, const0_rtx);
7155 else
7156 gcc_unreachable ();
7157 call_insn = last_call_insn ();
7158 PATTERN (call_insn) = insn;
7159 if (DEFAULT_ABI == ABI_V4 && TARGET_SECURE_PLT && flag_pic)
7160 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn),
7161 pic_offset_table_rtx);
7163 if (rs6000_tls_size == 16)
7165 if (TARGET_64BIT)
7166 insn = gen_tls_dtprel_64 (dest, tmp1, addr);
7167 else
7168 insn = gen_tls_dtprel_32 (dest, tmp1, addr);
7170 else if (rs6000_tls_size == 32)
7172 tmp2 = gen_reg_rtx (Pmode);
7173 if (TARGET_64BIT)
7174 insn = gen_tls_dtprel_ha_64 (tmp2, tmp1, addr);
7175 else
7176 insn = gen_tls_dtprel_ha_32 (tmp2, tmp1, addr);
7177 emit_insn (insn);
7178 if (TARGET_64BIT)
7179 insn = gen_tls_dtprel_lo_64 (dest, tmp2, addr);
7180 else
7181 insn = gen_tls_dtprel_lo_32 (dest, tmp2, addr);
7183 else
7185 tmp2 = gen_reg_rtx (Pmode);
7186 if (TARGET_64BIT)
7187 insn = gen_tls_got_dtprel_64 (tmp2, got, addr);
7188 else
7189 insn = gen_tls_got_dtprel_32 (tmp2, got, addr);
7190 emit_insn (insn);
7191 insn = gen_rtx_SET (Pmode, dest,
7192 gen_rtx_PLUS (Pmode, tmp2, tmp1));
7194 emit_insn (insn);
7196 else
7198 /* IE, or 64-bit offset LE. */
7199 tmp2 = gen_reg_rtx (Pmode);
7200 if (TARGET_64BIT)
7201 insn = gen_tls_got_tprel_64 (tmp2, got, addr);
7202 else
7203 insn = gen_tls_got_tprel_32 (tmp2, got, addr);
7204 emit_insn (insn);
7205 if (TARGET_64BIT)
7206 insn = gen_tls_tls_64 (dest, tmp2, addr);
7207 else
7208 insn = gen_tls_tls_32 (dest, tmp2, addr);
7209 emit_insn (insn);
7213 return dest;
7216 /* Return 1 if X contains a thread-local symbol. */
7218 static bool
7219 rs6000_tls_referenced_p (rtx x)
7221 if (! TARGET_HAVE_TLS)
7222 return false;
7224 return for_each_rtx (&x, &rs6000_tls_symbol_ref_1, 0);
7227 /* Implement TARGET_CANNOT_FORCE_CONST_MEM. */
7229 static bool
7230 rs6000_cannot_force_const_mem (enum machine_mode mode ATTRIBUTE_UNUSED, rtx x)
7232 if (GET_CODE (x) == HIGH
7233 && GET_CODE (XEXP (x, 0)) == UNSPEC)
7234 return true;
7236 /* A TLS symbol in the TOC cannot contain a sum. */
7237 if (GET_CODE (x) == CONST
7238 && GET_CODE (XEXP (x, 0)) == PLUS
7239 && GET_CODE (XEXP (XEXP (x, 0), 0)) == SYMBOL_REF
7240 && SYMBOL_REF_TLS_MODEL (XEXP (XEXP (x, 0), 0)) != 0)
7241 return true;
7243 /* Do not place an ELF TLS symbol in the constant pool. */
7244 return TARGET_ELF && rs6000_tls_referenced_p (x);
7247 /* Return 1 if *X is a thread-local symbol. This is the same as
7248 rs6000_tls_symbol_ref except for the type of the unused argument. */
7250 static int
7251 rs6000_tls_symbol_ref_1 (rtx *x, void *data ATTRIBUTE_UNUSED)
7253 return RS6000_SYMBOL_REF_TLS_P (*x);
7256 /* Return true iff the given SYMBOL_REF refers to a constant pool entry
7257 that we have put in the TOC, or for cmodel=medium, if the SYMBOL_REF
7258 can be addressed relative to the toc pointer. */
7260 static bool
7261 use_toc_relative_ref (rtx sym)
7263 return ((constant_pool_expr_p (sym)
7264 && ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (get_pool_constant (sym),
7265 get_pool_mode (sym)))
7266 || (TARGET_CMODEL == CMODEL_MEDIUM
7267 && SYMBOL_REF_LOCAL_P (sym)));
7270 /* Our implementation of LEGITIMIZE_RELOAD_ADDRESS. Returns a value to
7271 replace the input X, or the original X if no replacement is called for.
7272 The output parameter *WIN is 1 if the calling macro should goto WIN,
7273 0 if it should not.
7275 For RS/6000, we wish to handle large displacements off a base
7276 register by splitting the addend across an addiu/addis and the mem insn.
7277 This cuts number of extra insns needed from 3 to 1.
7279 On Darwin, we use this to generate code for floating point constants.
7280 A movsf_low is generated so we wind up with 2 instructions rather than 3.
7281 The Darwin code is inside #if TARGET_MACHO because only then are the
7282 machopic_* functions defined. */
7283 static rtx
7284 rs6000_legitimize_reload_address (rtx x, enum machine_mode mode,
7285 int opnum, int type,
7286 int ind_levels ATTRIBUTE_UNUSED, int *win)
7288 bool reg_offset_p = reg_offset_addressing_ok_p (mode);
7290 /* Nasty hack for vsx_splat_V2DF/V2DI load from mem, which takes a
7291 DFmode/DImode MEM. */
7292 if (reg_offset_p
7293 && opnum == 1
7294 && ((mode == DFmode && recog_data.operand_mode[0] == V2DFmode)
7295 || (mode == DImode && recog_data.operand_mode[0] == V2DImode)))
7296 reg_offset_p = false;
7298 /* We must recognize output that we have already generated ourselves. */
7299 if (GET_CODE (x) == PLUS
7300 && GET_CODE (XEXP (x, 0)) == PLUS
7301 && GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
7302 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
7303 && GET_CODE (XEXP (x, 1)) == CONST_INT)
7305 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
7306 BASE_REG_CLASS, GET_MODE (x), VOIDmode, 0, 0,
7307 opnum, (enum reload_type) type);
7308 *win = 1;
7309 return x;
7312 /* Likewise for (lo_sum (high ...) ...) output we have generated. */
7313 if (GET_CODE (x) == LO_SUM
7314 && GET_CODE (XEXP (x, 0)) == HIGH)
7316 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
7317 BASE_REG_CLASS, Pmode, VOIDmode, 0, 0,
7318 opnum, (enum reload_type) type);
7319 *win = 1;
7320 return x;
7323 #if TARGET_MACHO
7324 if (DEFAULT_ABI == ABI_DARWIN && flag_pic
7325 && GET_CODE (x) == LO_SUM
7326 && GET_CODE (XEXP (x, 0)) == PLUS
7327 && XEXP (XEXP (x, 0), 0) == pic_offset_table_rtx
7328 && GET_CODE (XEXP (XEXP (x, 0), 1)) == HIGH
7329 && XEXP (XEXP (XEXP (x, 0), 1), 0) == XEXP (x, 1)
7330 && machopic_operand_p (XEXP (x, 1)))
7332 /* Result of previous invocation of this function on Darwin
7333 floating point constant. */
7334 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
7335 BASE_REG_CLASS, Pmode, VOIDmode, 0, 0,
7336 opnum, (enum reload_type) type);
7337 *win = 1;
7338 return x;
7340 #endif
7342 if (TARGET_CMODEL != CMODEL_SMALL
7343 && reg_offset_p
7344 && small_toc_ref (x, VOIDmode))
7346 rtx hi = gen_rtx_HIGH (Pmode, copy_rtx (x));
7347 x = gen_rtx_LO_SUM (Pmode, hi, x);
7348 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
7349 BASE_REG_CLASS, Pmode, VOIDmode, 0, 0,
7350 opnum, (enum reload_type) type);
7351 *win = 1;
7352 return x;
7355 if (GET_CODE (x) == PLUS
7356 && GET_CODE (XEXP (x, 0)) == REG
7357 && REGNO (XEXP (x, 0)) < FIRST_PSEUDO_REGISTER
7358 && INT_REG_OK_FOR_BASE_P (XEXP (x, 0), 1)
7359 && GET_CODE (XEXP (x, 1)) == CONST_INT
7360 && reg_offset_p
7361 && !SPE_VECTOR_MODE (mode)
7362 && !(TARGET_E500_DOUBLE && GET_MODE_SIZE (mode) > UNITS_PER_WORD)
7363 && (!VECTOR_MODE_P (mode) || VECTOR_MEM_NONE_P (mode)))
7365 HOST_WIDE_INT val = INTVAL (XEXP (x, 1));
7366 HOST_WIDE_INT low = ((val & 0xffff) ^ 0x8000) - 0x8000;
7367 HOST_WIDE_INT high
7368 = (((val - low) & 0xffffffff) ^ 0x80000000) - 0x80000000;
7370 /* Check for 32-bit overflow. */
7371 if (high + low != val)
7373 *win = 0;
7374 return x;
7377 /* Reload the high part into a base reg; leave the low part
7378 in the mem directly. */
7380 x = gen_rtx_PLUS (GET_MODE (x),
7381 gen_rtx_PLUS (GET_MODE (x), XEXP (x, 0),
7382 GEN_INT (high)),
7383 GEN_INT (low));
7385 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
7386 BASE_REG_CLASS, GET_MODE (x), VOIDmode, 0, 0,
7387 opnum, (enum reload_type) type);
7388 *win = 1;
7389 return x;
7392 if (GET_CODE (x) == SYMBOL_REF
7393 && reg_offset_p
7394 && (!VECTOR_MODE_P (mode) || VECTOR_MEM_NONE_P (mode))
7395 && !SPE_VECTOR_MODE (mode)
7396 #if TARGET_MACHO
7397 && DEFAULT_ABI == ABI_DARWIN
7398 && (flag_pic || MACHO_DYNAMIC_NO_PIC_P)
7399 && machopic_symbol_defined_p (x)
7400 #else
7401 && DEFAULT_ABI == ABI_V4
7402 && !flag_pic
7403 #endif
7404 /* Don't do this for TFmode or TDmode, since the result isn't offsettable.
7405 The same goes for DImode without 64-bit gprs and DFmode and DDmode
7406 without fprs.
7407 ??? Assume floating point reg based on mode? This assumption is
7408 violated by eg. powerpc-linux -m32 compile of gcc.dg/pr28796-2.c
7409 where reload ends up doing a DFmode load of a constant from
7410 mem using two gprs. Unfortunately, at this point reload
7411 hasn't yet selected regs so poking around in reload data
7412 won't help and even if we could figure out the regs reliably,
7413 we'd still want to allow this transformation when the mem is
7414 naturally aligned. Since we say the address is good here, we
7415 can't disable offsets from LO_SUMs in mem_operand_gpr.
7416 FIXME: Allow offset from lo_sum for other modes too, when
7417 mem is sufficiently aligned. */
7418 && mode != TFmode
7419 && mode != TDmode
7420 && (mode != TImode || !TARGET_VSX_TIMODE)
7421 && mode != PTImode
7422 && (mode != DImode || TARGET_POWERPC64)
7423 && ((mode != DFmode && mode != DDmode) || TARGET_POWERPC64
7424 || (TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_DOUBLE_FLOAT)))
7426 #if TARGET_MACHO
7427 if (flag_pic)
7429 rtx offset = machopic_gen_offset (x);
7430 x = gen_rtx_LO_SUM (GET_MODE (x),
7431 gen_rtx_PLUS (Pmode, pic_offset_table_rtx,
7432 gen_rtx_HIGH (Pmode, offset)), offset);
7434 else
7435 #endif
7436 x = gen_rtx_LO_SUM (GET_MODE (x),
7437 gen_rtx_HIGH (Pmode, x), x);
7439 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
7440 BASE_REG_CLASS, Pmode, VOIDmode, 0, 0,
7441 opnum, (enum reload_type) type);
7442 *win = 1;
7443 return x;
7446 /* Reload an offset address wrapped by an AND that represents the
7447 masking of the lower bits. Strip the outer AND and let reload
7448 convert the offset address into an indirect address. For VSX,
7449 force reload to create the address with an AND in a separate
7450 register, because we can't guarantee an altivec register will
7451 be used. */
7452 if (VECTOR_MEM_ALTIVEC_P (mode)
7453 && GET_CODE (x) == AND
7454 && GET_CODE (XEXP (x, 0)) == PLUS
7455 && GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
7456 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
7457 && GET_CODE (XEXP (x, 1)) == CONST_INT
7458 && INTVAL (XEXP (x, 1)) == -16)
7460 x = XEXP (x, 0);
7461 *win = 1;
7462 return x;
7465 if (TARGET_TOC
7466 && reg_offset_p
7467 && GET_CODE (x) == SYMBOL_REF
7468 && use_toc_relative_ref (x))
7470 x = create_TOC_reference (x, NULL_RTX);
7471 if (TARGET_CMODEL != CMODEL_SMALL)
7472 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
7473 BASE_REG_CLASS, Pmode, VOIDmode, 0, 0,
7474 opnum, (enum reload_type) type);
7475 *win = 1;
7476 return x;
7478 *win = 0;
7479 return x;
7482 /* Debug version of rs6000_legitimize_reload_address. */
7483 static rtx
7484 rs6000_debug_legitimize_reload_address (rtx x, enum machine_mode mode,
7485 int opnum, int type,
7486 int ind_levels, int *win)
7488 rtx ret = rs6000_legitimize_reload_address (x, mode, opnum, type,
7489 ind_levels, win);
7490 fprintf (stderr,
7491 "\nrs6000_legitimize_reload_address: mode = %s, opnum = %d, "
7492 "type = %d, ind_levels = %d, win = %d, original addr:\n",
7493 GET_MODE_NAME (mode), opnum, type, ind_levels, *win);
7494 debug_rtx (x);
7496 if (x == ret)
7497 fprintf (stderr, "Same address returned\n");
7498 else if (!ret)
7499 fprintf (stderr, "NULL returned\n");
7500 else
7502 fprintf (stderr, "New address:\n");
7503 debug_rtx (ret);
7506 return ret;
7509 /* TARGET_LEGITIMATE_ADDRESS_P recognizes an RTL expression
7510 that is a valid memory address for an instruction.
7511 The MODE argument is the machine mode for the MEM expression
7512 that wants to use this address.
7514 On the RS/6000, there are four valid address: a SYMBOL_REF that
7515 refers to a constant pool entry of an address (or the sum of it
7516 plus a constant), a short (16-bit signed) constant plus a register,
7517 the sum of two registers, or a register indirect, possibly with an
7518 auto-increment. For DFmode, DDmode and DImode with a constant plus
7519 register, we must ensure that both words are addressable or PowerPC64
7520 with offset word aligned.
7522 For modes spanning multiple registers (DFmode and DDmode in 32-bit GPRs,
7523 32-bit DImode, TImode, TFmode, TDmode), indexed addressing cannot be used
7524 because adjacent memory cells are accessed by adding word-sized offsets
7525 during assembly output. */
7526 static bool
7527 rs6000_legitimate_address_p (enum machine_mode mode, rtx x, bool reg_ok_strict)
7529 bool reg_offset_p = reg_offset_addressing_ok_p (mode);
7531 /* If this is an unaligned stvx/ldvx type address, discard the outer AND. */
7532 if (VECTOR_MEM_ALTIVEC_P (mode)
7533 && GET_CODE (x) == AND
7534 && GET_CODE (XEXP (x, 1)) == CONST_INT
7535 && INTVAL (XEXP (x, 1)) == -16)
7536 x = XEXP (x, 0);
7538 if (TARGET_ELF && RS6000_SYMBOL_REF_TLS_P (x))
7539 return 0;
7540 if (legitimate_indirect_address_p (x, reg_ok_strict))
7541 return 1;
7542 if (TARGET_UPDATE
7543 && (GET_CODE (x) == PRE_INC || GET_CODE (x) == PRE_DEC)
7544 && mode_supports_pre_incdec_p (mode)
7545 && legitimate_indirect_address_p (XEXP (x, 0), reg_ok_strict))
7546 return 1;
7547 if (virtual_stack_registers_memory_p (x))
7548 return 1;
7549 if (reg_offset_p && legitimate_small_data_p (mode, x))
7550 return 1;
7551 if (reg_offset_p
7552 && legitimate_constant_pool_address_p (x, mode,
7553 reg_ok_strict || lra_in_progress))
7554 return 1;
7555 /* For TImode, if we have load/store quad and TImode in VSX registers, only
7556 allow register indirect addresses. This will allow the values to go in
7557 either GPRs or VSX registers without reloading. The vector types would
7558 tend to go into VSX registers, so we allow REG+REG, while TImode seems
7559 somewhat split, in that some uses are GPR based, and some VSX based. */
7560 if (mode == TImode && TARGET_QUAD_MEMORY && TARGET_VSX_TIMODE)
7561 return 0;
7562 /* If not REG_OK_STRICT (before reload) let pass any stack offset. */
7563 if (! reg_ok_strict
7564 && reg_offset_p
7565 && GET_CODE (x) == PLUS
7566 && GET_CODE (XEXP (x, 0)) == REG
7567 && (XEXP (x, 0) == virtual_stack_vars_rtx
7568 || XEXP (x, 0) == arg_pointer_rtx)
7569 && GET_CODE (XEXP (x, 1)) == CONST_INT)
7570 return 1;
7571 if (rs6000_legitimate_offset_address_p (mode, x, reg_ok_strict, false))
7572 return 1;
7573 if (mode != TFmode
7574 && mode != TDmode
7575 && ((TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_DOUBLE_FLOAT)
7576 || TARGET_POWERPC64
7577 || (mode != DFmode && mode != DDmode)
7578 || (TARGET_E500_DOUBLE && mode != DDmode))
7579 && (TARGET_POWERPC64 || mode != DImode)
7580 && (mode != TImode || VECTOR_MEM_VSX_P (TImode))
7581 && mode != PTImode
7582 && !avoiding_indexed_address_p (mode)
7583 && legitimate_indexed_address_p (x, reg_ok_strict))
7584 return 1;
7585 if (TARGET_UPDATE && GET_CODE (x) == PRE_MODIFY
7586 && mode_supports_pre_modify_p (mode)
7587 && legitimate_indirect_address_p (XEXP (x, 0), reg_ok_strict)
7588 && (rs6000_legitimate_offset_address_p (mode, XEXP (x, 1),
7589 reg_ok_strict, false)
7590 || (!avoiding_indexed_address_p (mode)
7591 && legitimate_indexed_address_p (XEXP (x, 1), reg_ok_strict)))
7592 && rtx_equal_p (XEXP (XEXP (x, 1), 0), XEXP (x, 0)))
7593 return 1;
7594 if (reg_offset_p && legitimate_lo_sum_address_p (mode, x, reg_ok_strict))
7595 return 1;
7596 return 0;
7599 /* Debug version of rs6000_legitimate_address_p. */
7600 static bool
7601 rs6000_debug_legitimate_address_p (enum machine_mode mode, rtx x,
7602 bool reg_ok_strict)
7604 bool ret = rs6000_legitimate_address_p (mode, x, reg_ok_strict);
7605 fprintf (stderr,
7606 "\nrs6000_legitimate_address_p: return = %s, mode = %s, "
7607 "strict = %d, reload = %s, code = %s\n",
7608 ret ? "true" : "false",
7609 GET_MODE_NAME (mode),
7610 reg_ok_strict,
7611 (reload_completed
7612 ? "after"
7613 : (reload_in_progress ? "progress" : "before")),
7614 GET_RTX_NAME (GET_CODE (x)));
7615 debug_rtx (x);
7617 return ret;
7620 /* Implement TARGET_MODE_DEPENDENT_ADDRESS_P. */
7622 static bool
7623 rs6000_mode_dependent_address_p (const_rtx addr,
7624 addr_space_t as ATTRIBUTE_UNUSED)
7626 return rs6000_mode_dependent_address_ptr (addr);
7629 /* Go to LABEL if ADDR (a legitimate address expression)
7630 has an effect that depends on the machine mode it is used for.
7632 On the RS/6000 this is true of all integral offsets (since AltiVec
7633 and VSX modes don't allow them) or is a pre-increment or decrement.
7635 ??? Except that due to conceptual problems in offsettable_address_p
7636 we can't really report the problems of integral offsets. So leave
7637 this assuming that the adjustable offset must be valid for the
7638 sub-words of a TFmode operand, which is what we had before. */
7640 static bool
7641 rs6000_mode_dependent_address (const_rtx addr)
7643 switch (GET_CODE (addr))
7645 case PLUS:
7646 /* Any offset from virtual_stack_vars_rtx and arg_pointer_rtx
7647 is considered a legitimate address before reload, so there
7648 are no offset restrictions in that case. Note that this
7649 condition is safe in strict mode because any address involving
7650 virtual_stack_vars_rtx or arg_pointer_rtx would already have
7651 been rejected as illegitimate. */
7652 if (XEXP (addr, 0) != virtual_stack_vars_rtx
7653 && XEXP (addr, 0) != arg_pointer_rtx
7654 && GET_CODE (XEXP (addr, 1)) == CONST_INT)
7656 unsigned HOST_WIDE_INT val = INTVAL (XEXP (addr, 1));
7657 return val + 0x8000 >= 0x10000 - (TARGET_POWERPC64 ? 8 : 12);
7659 break;
7661 case LO_SUM:
7662 /* Anything in the constant pool is sufficiently aligned that
7663 all bytes have the same high part address. */
7664 return !legitimate_constant_pool_address_p (addr, QImode, false);
7666 /* Auto-increment cases are now treated generically in recog.c. */
7667 case PRE_MODIFY:
7668 return TARGET_UPDATE;
7670 /* AND is only allowed in Altivec loads. */
7671 case AND:
7672 return true;
7674 default:
7675 break;
7678 return false;
7681 /* Debug version of rs6000_mode_dependent_address. */
7682 static bool
7683 rs6000_debug_mode_dependent_address (const_rtx addr)
7685 bool ret = rs6000_mode_dependent_address (addr);
7687 fprintf (stderr, "\nrs6000_mode_dependent_address: ret = %s\n",
7688 ret ? "true" : "false");
7689 debug_rtx (addr);
7691 return ret;
7694 /* Implement FIND_BASE_TERM. */
7697 rs6000_find_base_term (rtx op)
7699 rtx base;
7701 base = op;
7702 if (GET_CODE (base) == CONST)
7703 base = XEXP (base, 0);
7704 if (GET_CODE (base) == PLUS)
7705 base = XEXP (base, 0);
7706 if (GET_CODE (base) == UNSPEC)
7707 switch (XINT (base, 1))
7709 case UNSPEC_TOCREL:
7710 case UNSPEC_MACHOPIC_OFFSET:
7711 /* OP represents SYM [+ OFFSET] - ANCHOR. SYM is the base term
7712 for aliasing purposes. */
7713 return XVECEXP (base, 0, 0);
7716 return op;
7719 /* More elaborate version of recog's offsettable_memref_p predicate
7720 that works around the ??? note of rs6000_mode_dependent_address.
7721 In particular it accepts
7723 (mem:DI (plus:SI (reg/f:SI 31 31) (const_int 32760 [0x7ff8])))
7725 in 32-bit mode, that the recog predicate rejects. */
7727 static bool
7728 rs6000_offsettable_memref_p (rtx op, enum machine_mode reg_mode)
7730 bool worst_case;
7732 if (!MEM_P (op))
7733 return false;
7735 /* First mimic offsettable_memref_p. */
7736 if (offsettable_address_p (true, GET_MODE (op), XEXP (op, 0)))
7737 return true;
7739 /* offsettable_address_p invokes rs6000_mode_dependent_address, but
7740 the latter predicate knows nothing about the mode of the memory
7741 reference and, therefore, assumes that it is the largest supported
7742 mode (TFmode). As a consequence, legitimate offsettable memory
7743 references are rejected. rs6000_legitimate_offset_address_p contains
7744 the correct logic for the PLUS case of rs6000_mode_dependent_address,
7745 at least with a little bit of help here given that we know the
7746 actual registers used. */
7747 worst_case = ((TARGET_POWERPC64 && GET_MODE_CLASS (reg_mode) == MODE_INT)
7748 || GET_MODE_SIZE (reg_mode) == 4);
7749 return rs6000_legitimate_offset_address_p (GET_MODE (op), XEXP (op, 0),
7750 true, worst_case);
7753 /* Change register usage conditional on target flags. */
7754 static void
7755 rs6000_conditional_register_usage (void)
7757 int i;
7759 if (TARGET_DEBUG_TARGET)
7760 fprintf (stderr, "rs6000_conditional_register_usage called\n");
7762 /* Set MQ register fixed (already call_used) so that it will not be
7763 allocated. */
7764 fixed_regs[64] = 1;
7766 /* 64-bit AIX and Linux reserve GPR13 for thread-private data. */
7767 if (TARGET_64BIT)
7768 fixed_regs[13] = call_used_regs[13]
7769 = call_really_used_regs[13] = 1;
7771 /* Conditionally disable FPRs. */
7772 if (TARGET_SOFT_FLOAT || !TARGET_FPRS)
7773 for (i = 32; i < 64; i++)
7774 fixed_regs[i] = call_used_regs[i]
7775 = call_really_used_regs[i] = 1;
7777 /* The TOC register is not killed across calls in a way that is
7778 visible to the compiler. */
7779 if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
7780 call_really_used_regs[2] = 0;
7782 if (DEFAULT_ABI == ABI_V4
7783 && PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM
7784 && flag_pic == 2)
7785 fixed_regs[RS6000_PIC_OFFSET_TABLE_REGNUM] = 1;
7787 if (DEFAULT_ABI == ABI_V4
7788 && PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM
7789 && flag_pic == 1)
7790 fixed_regs[RS6000_PIC_OFFSET_TABLE_REGNUM]
7791 = call_used_regs[RS6000_PIC_OFFSET_TABLE_REGNUM]
7792 = call_really_used_regs[RS6000_PIC_OFFSET_TABLE_REGNUM] = 1;
7794 if (DEFAULT_ABI == ABI_DARWIN
7795 && PIC_OFFSET_TABLE_REGNUM != INVALID_REGNUM)
7796 fixed_regs[RS6000_PIC_OFFSET_TABLE_REGNUM]
7797 = call_used_regs[RS6000_PIC_OFFSET_TABLE_REGNUM]
7798 = call_really_used_regs[RS6000_PIC_OFFSET_TABLE_REGNUM] = 1;
7800 if (TARGET_TOC && TARGET_MINIMAL_TOC)
7801 fixed_regs[RS6000_PIC_OFFSET_TABLE_REGNUM]
7802 = call_used_regs[RS6000_PIC_OFFSET_TABLE_REGNUM] = 1;
7804 if (TARGET_SPE)
7806 global_regs[SPEFSCR_REGNO] = 1;
7807 /* We used to use r14 as FIXED_SCRATCH to address SPE 64-bit
7808 registers in prologues and epilogues. We no longer use r14
7809 for FIXED_SCRATCH, but we're keeping r14 out of the allocation
7810 pool for link-compatibility with older versions of GCC. Once
7811 "old" code has died out, we can return r14 to the allocation
7812 pool. */
7813 fixed_regs[14]
7814 = call_used_regs[14]
7815 = call_really_used_regs[14] = 1;
7818 if (!TARGET_ALTIVEC && !TARGET_VSX)
7820 for (i = FIRST_ALTIVEC_REGNO; i <= LAST_ALTIVEC_REGNO; ++i)
7821 fixed_regs[i] = call_used_regs[i] = call_really_used_regs[i] = 1;
7822 call_really_used_regs[VRSAVE_REGNO] = 1;
7825 if (TARGET_ALTIVEC || TARGET_VSX)
7826 global_regs[VSCR_REGNO] = 1;
7828 if (TARGET_ALTIVEC_ABI)
7830 for (i = FIRST_ALTIVEC_REGNO; i < FIRST_ALTIVEC_REGNO + 20; ++i)
7831 call_used_regs[i] = call_really_used_regs[i] = 1;
7833 /* AIX reserves VR20:31 in non-extended ABI mode. */
7834 if (TARGET_XCOFF)
7835 for (i = FIRST_ALTIVEC_REGNO + 20; i < FIRST_ALTIVEC_REGNO + 32; ++i)
7836 fixed_regs[i] = call_used_regs[i] = call_really_used_regs[i] = 1;
7841 /* Try to output insns to set TARGET equal to the constant C if it can
7842 be done in less than N insns. Do all computations in MODE.
7843 Returns the place where the output has been placed if it can be
7844 done and the insns have been emitted. If it would take more than N
7845 insns, zero is returned and no insns and emitted. */
7848 rs6000_emit_set_const (rtx dest, enum machine_mode mode,
7849 rtx source, int n ATTRIBUTE_UNUSED)
7851 rtx result, insn, set;
7852 HOST_WIDE_INT c0, c1;
7854 switch (mode)
7856 case QImode:
7857 case HImode:
7858 if (dest == NULL)
7859 dest = gen_reg_rtx (mode);
7860 emit_insn (gen_rtx_SET (VOIDmode, dest, source));
7861 return dest;
7863 case SImode:
7864 result = !can_create_pseudo_p () ? dest : gen_reg_rtx (SImode);
7866 emit_insn (gen_rtx_SET (VOIDmode, copy_rtx (result),
7867 GEN_INT (INTVAL (source)
7868 & (~ (HOST_WIDE_INT) 0xffff))));
7869 emit_insn (gen_rtx_SET (VOIDmode, dest,
7870 gen_rtx_IOR (SImode, copy_rtx (result),
7871 GEN_INT (INTVAL (source) & 0xffff))));
7872 result = dest;
7873 break;
7875 case DImode:
7876 switch (GET_CODE (source))
7878 case CONST_INT:
7879 c0 = INTVAL (source);
7880 c1 = -(c0 < 0);
7881 break;
7883 default:
7884 gcc_unreachable ();
7887 result = rs6000_emit_set_long_const (dest, c0, c1);
7888 break;
7890 default:
7891 gcc_unreachable ();
7894 insn = get_last_insn ();
7895 set = single_set (insn);
7896 if (! CONSTANT_P (SET_SRC (set)))
7897 set_unique_reg_note (insn, REG_EQUAL, source);
7899 return result;
7902 /* Having failed to find a 3 insn sequence in rs6000_emit_set_const,
7903 fall back to a straight forward decomposition. We do this to avoid
7904 exponential run times encountered when looking for longer sequences
7905 with rs6000_emit_set_const. */
7906 static rtx
7907 rs6000_emit_set_long_const (rtx dest, HOST_WIDE_INT c1, HOST_WIDE_INT c2)
7909 if (!TARGET_POWERPC64)
7911 rtx operand1, operand2;
7913 operand1 = operand_subword_force (dest, WORDS_BIG_ENDIAN == 0,
7914 DImode);
7915 operand2 = operand_subword_force (copy_rtx (dest), WORDS_BIG_ENDIAN != 0,
7916 DImode);
7917 emit_move_insn (operand1, GEN_INT (c1));
7918 emit_move_insn (operand2, GEN_INT (c2));
7920 else
7922 HOST_WIDE_INT ud1, ud2, ud3, ud4;
7924 ud1 = c1 & 0xffff;
7925 ud2 = (c1 & 0xffff0000) >> 16;
7926 c2 = c1 >> 32;
7927 ud3 = c2 & 0xffff;
7928 ud4 = (c2 & 0xffff0000) >> 16;
7930 if ((ud4 == 0xffff && ud3 == 0xffff && ud2 == 0xffff && (ud1 & 0x8000))
7931 || (ud4 == 0 && ud3 == 0 && ud2 == 0 && ! (ud1 & 0x8000)))
7932 emit_move_insn (dest, GEN_INT ((ud1 ^ 0x8000) - 0x8000));
7934 else if ((ud4 == 0xffff && ud3 == 0xffff && (ud2 & 0x8000))
7935 || (ud4 == 0 && ud3 == 0 && ! (ud2 & 0x8000)))
7937 emit_move_insn (dest, GEN_INT (((ud2 << 16) ^ 0x80000000)
7938 - 0x80000000));
7939 if (ud1 != 0)
7940 emit_move_insn (copy_rtx (dest),
7941 gen_rtx_IOR (DImode, copy_rtx (dest),
7942 GEN_INT (ud1)));
7944 else if (ud3 == 0 && ud4 == 0)
7946 gcc_assert (ud2 & 0x8000);
7947 emit_move_insn (dest, GEN_INT (((ud2 << 16) ^ 0x80000000)
7948 - 0x80000000));
7949 if (ud1 != 0)
7950 emit_move_insn (copy_rtx (dest),
7951 gen_rtx_IOR (DImode, copy_rtx (dest),
7952 GEN_INT (ud1)));
7953 emit_move_insn (copy_rtx (dest),
7954 gen_rtx_ZERO_EXTEND (DImode,
7955 gen_lowpart (SImode,
7956 copy_rtx (dest))));
7958 else if ((ud4 == 0xffff && (ud3 & 0x8000))
7959 || (ud4 == 0 && ! (ud3 & 0x8000)))
7961 emit_move_insn (dest, GEN_INT (((ud3 << 16) ^ 0x80000000)
7962 - 0x80000000));
7963 if (ud2 != 0)
7964 emit_move_insn (copy_rtx (dest),
7965 gen_rtx_IOR (DImode, copy_rtx (dest),
7966 GEN_INT (ud2)));
7967 emit_move_insn (copy_rtx (dest),
7968 gen_rtx_ASHIFT (DImode, copy_rtx (dest),
7969 GEN_INT (16)));
7970 if (ud1 != 0)
7971 emit_move_insn (copy_rtx (dest),
7972 gen_rtx_IOR (DImode, copy_rtx (dest),
7973 GEN_INT (ud1)));
7975 else
7977 emit_move_insn (dest, GEN_INT (((ud4 << 16) ^ 0x80000000)
7978 - 0x80000000));
7979 if (ud3 != 0)
7980 emit_move_insn (copy_rtx (dest),
7981 gen_rtx_IOR (DImode, copy_rtx (dest),
7982 GEN_INT (ud3)));
7984 emit_move_insn (copy_rtx (dest),
7985 gen_rtx_ASHIFT (DImode, copy_rtx (dest),
7986 GEN_INT (32)));
7987 if (ud2 != 0)
7988 emit_move_insn (copy_rtx (dest),
7989 gen_rtx_IOR (DImode, copy_rtx (dest),
7990 GEN_INT (ud2 << 16)));
7991 if (ud1 != 0)
7992 emit_move_insn (copy_rtx (dest),
7993 gen_rtx_IOR (DImode, copy_rtx (dest),
7994 GEN_INT (ud1)));
7997 return dest;
8000 /* Helper for the following. Get rid of [r+r] memory refs
8001 in cases where it won't work (TImode, TFmode, TDmode, PTImode). */
8003 static void
8004 rs6000_eliminate_indexed_memrefs (rtx operands[2])
8006 if (reload_in_progress)
8007 return;
8009 if (GET_CODE (operands[0]) == MEM
8010 && GET_CODE (XEXP (operands[0], 0)) != REG
8011 && ! legitimate_constant_pool_address_p (XEXP (operands[0], 0),
8012 GET_MODE (operands[0]), false))
8013 operands[0]
8014 = replace_equiv_address (operands[0],
8015 copy_addr_to_reg (XEXP (operands[0], 0)));
8017 if (GET_CODE (operands[1]) == MEM
8018 && GET_CODE (XEXP (operands[1], 0)) != REG
8019 && ! legitimate_constant_pool_address_p (XEXP (operands[1], 0),
8020 GET_MODE (operands[1]), false))
8021 operands[1]
8022 = replace_equiv_address (operands[1],
8023 copy_addr_to_reg (XEXP (operands[1], 0)));
8026 /* Generate a vector of constants to permute MODE for a little-endian
8027 storage operation by swapping the two halves of a vector. */
8028 static rtvec
8029 rs6000_const_vec (enum machine_mode mode)
8031 int i, subparts;
8032 rtvec v;
8034 switch (mode)
8036 case V1TImode:
8037 subparts = 1;
8038 break;
8039 case V2DFmode:
8040 case V2DImode:
8041 subparts = 2;
8042 break;
8043 case V4SFmode:
8044 case V4SImode:
8045 subparts = 4;
8046 break;
8047 case V8HImode:
8048 subparts = 8;
8049 break;
8050 case V16QImode:
8051 subparts = 16;
8052 break;
8053 default:
8054 gcc_unreachable();
8057 v = rtvec_alloc (subparts);
8059 for (i = 0; i < subparts / 2; ++i)
8060 RTVEC_ELT (v, i) = gen_rtx_CONST_INT (DImode, i + subparts / 2);
8061 for (i = subparts / 2; i < subparts; ++i)
8062 RTVEC_ELT (v, i) = gen_rtx_CONST_INT (DImode, i - subparts / 2);
8064 return v;
8067 /* Generate a permute rtx that represents an lxvd2x, stxvd2x, or xxpermdi
8068 for a VSX load or store operation. */
8070 rs6000_gen_le_vsx_permute (rtx source, enum machine_mode mode)
8072 rtx par = gen_rtx_PARALLEL (VOIDmode, rs6000_const_vec (mode));
8073 return gen_rtx_VEC_SELECT (mode, source, par);
8076 /* Emit a little-endian load from vector memory location SOURCE to VSX
8077 register DEST in mode MODE. The load is done with two permuting
8078 insn's that represent an lxvd2x and xxpermdi. */
8079 void
8080 rs6000_emit_le_vsx_load (rtx dest, rtx source, enum machine_mode mode)
8082 rtx tmp, permute_mem, permute_reg;
8084 /* Use V2DImode to do swaps of types with 128-bit scalare parts (TImode,
8085 V1TImode). */
8086 if (mode == TImode || mode == V1TImode)
8088 mode = V2DImode;
8089 dest = gen_lowpart (V2DImode, dest);
8090 source = adjust_address (source, V2DImode, 0);
8093 tmp = can_create_pseudo_p () ? gen_reg_rtx_and_attrs (dest) : dest;
8094 permute_mem = rs6000_gen_le_vsx_permute (source, mode);
8095 permute_reg = rs6000_gen_le_vsx_permute (tmp, mode);
8096 emit_insn (gen_rtx_SET (VOIDmode, tmp, permute_mem));
8097 emit_insn (gen_rtx_SET (VOIDmode, dest, permute_reg));
8100 /* Emit a little-endian store to vector memory location DEST from VSX
8101 register SOURCE in mode MODE. The store is done with two permuting
8102 insn's that represent an xxpermdi and an stxvd2x. */
8103 void
8104 rs6000_emit_le_vsx_store (rtx dest, rtx source, enum machine_mode mode)
8106 rtx tmp, permute_src, permute_tmp;
8108 /* Use V2DImode to do swaps of types with 128-bit scalare parts (TImode,
8109 V1TImode). */
8110 if (mode == TImode || mode == V1TImode)
8112 mode = V2DImode;
8113 dest = adjust_address (dest, V2DImode, 0);
8114 source = gen_lowpart (V2DImode, source);
8117 tmp = can_create_pseudo_p () ? gen_reg_rtx_and_attrs (source) : source;
8118 permute_src = rs6000_gen_le_vsx_permute (source, mode);
8119 permute_tmp = rs6000_gen_le_vsx_permute (tmp, mode);
8120 emit_insn (gen_rtx_SET (VOIDmode, tmp, permute_src));
8121 emit_insn (gen_rtx_SET (VOIDmode, dest, permute_tmp));
8124 /* Emit a sequence representing a little-endian VSX load or store,
8125 moving data from SOURCE to DEST in mode MODE. This is done
8126 separately from rs6000_emit_move to ensure it is called only
8127 during expand. LE VSX loads and stores introduced later are
8128 handled with a split. The expand-time RTL generation allows
8129 us to optimize away redundant pairs of register-permutes. */
8130 void
8131 rs6000_emit_le_vsx_move (rtx dest, rtx source, enum machine_mode mode)
8133 gcc_assert (!BYTES_BIG_ENDIAN
8134 && VECTOR_MEM_VSX_P (mode)
8135 && !gpr_or_gpr_p (dest, source)
8136 && (MEM_P (source) ^ MEM_P (dest)));
8138 if (MEM_P (source))
8140 gcc_assert (REG_P (dest) || GET_CODE (dest) == SUBREG);
8141 rs6000_emit_le_vsx_load (dest, source, mode);
8143 else
8145 if (!REG_P (source))
8146 source = force_reg (mode, source);
8147 rs6000_emit_le_vsx_store (dest, source, mode);
8151 /* Emit a move from SOURCE to DEST in mode MODE. */
8152 void
8153 rs6000_emit_move (rtx dest, rtx source, enum machine_mode mode)
8155 rtx operands[2];
8156 operands[0] = dest;
8157 operands[1] = source;
8159 if (TARGET_DEBUG_ADDR)
8161 fprintf (stderr,
8162 "\nrs6000_emit_move: mode = %s, reload_in_progress = %d, "
8163 "reload_completed = %d, can_create_pseudos = %d.\ndest:\n",
8164 GET_MODE_NAME (mode),
8165 reload_in_progress,
8166 reload_completed,
8167 can_create_pseudo_p ());
8168 debug_rtx (dest);
8169 fprintf (stderr, "source:\n");
8170 debug_rtx (source);
8173 /* Sanity checks. Check that we get CONST_DOUBLE only when we should. */
8174 if (CONST_WIDE_INT_P (operands[1])
8175 && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
8177 /* This should be fixed with the introduction of CONST_WIDE_INT. */
8178 gcc_unreachable ();
8181 /* Check if GCC is setting up a block move that will end up using FP
8182 registers as temporaries. We must make sure this is acceptable. */
8183 if (GET_CODE (operands[0]) == MEM
8184 && GET_CODE (operands[1]) == MEM
8185 && mode == DImode
8186 && (SLOW_UNALIGNED_ACCESS (DImode, MEM_ALIGN (operands[0]))
8187 || SLOW_UNALIGNED_ACCESS (DImode, MEM_ALIGN (operands[1])))
8188 && ! (SLOW_UNALIGNED_ACCESS (SImode, (MEM_ALIGN (operands[0]) > 32
8189 ? 32 : MEM_ALIGN (operands[0])))
8190 || SLOW_UNALIGNED_ACCESS (SImode, (MEM_ALIGN (operands[1]) > 32
8191 ? 32
8192 : MEM_ALIGN (operands[1]))))
8193 && ! MEM_VOLATILE_P (operands [0])
8194 && ! MEM_VOLATILE_P (operands [1]))
8196 emit_move_insn (adjust_address (operands[0], SImode, 0),
8197 adjust_address (operands[1], SImode, 0));
8198 emit_move_insn (adjust_address (copy_rtx (operands[0]), SImode, 4),
8199 adjust_address (copy_rtx (operands[1]), SImode, 4));
8200 return;
8203 if (can_create_pseudo_p () && GET_CODE (operands[0]) == MEM
8204 && !gpc_reg_operand (operands[1], mode))
8205 operands[1] = force_reg (mode, operands[1]);
8207 /* Recognize the case where operand[1] is a reference to thread-local
8208 data and load its address to a register. */
8209 if (rs6000_tls_referenced_p (operands[1]))
8211 enum tls_model model;
8212 rtx tmp = operands[1];
8213 rtx addend = NULL;
8215 if (GET_CODE (tmp) == CONST && GET_CODE (XEXP (tmp, 0)) == PLUS)
8217 addend = XEXP (XEXP (tmp, 0), 1);
8218 tmp = XEXP (XEXP (tmp, 0), 0);
8221 gcc_assert (GET_CODE (tmp) == SYMBOL_REF);
8222 model = SYMBOL_REF_TLS_MODEL (tmp);
8223 gcc_assert (model != 0);
8225 tmp = rs6000_legitimize_tls_address (tmp, model);
8226 if (addend)
8228 tmp = gen_rtx_PLUS (mode, tmp, addend);
8229 tmp = force_operand (tmp, operands[0]);
8231 operands[1] = tmp;
8234 /* Handle the case where reload calls us with an invalid address. */
8235 if (reload_in_progress && mode == Pmode
8236 && (! general_operand (operands[1], mode)
8237 || ! nonimmediate_operand (operands[0], mode)))
8238 goto emit_set;
8240 /* 128-bit constant floating-point values on Darwin should really be
8241 loaded as two parts. */
8242 if (!TARGET_IEEEQUAD && TARGET_LONG_DOUBLE_128
8243 && mode == TFmode && GET_CODE (operands[1]) == CONST_DOUBLE)
8245 rs6000_emit_move (simplify_gen_subreg (DFmode, operands[0], mode, 0),
8246 simplify_gen_subreg (DFmode, operands[1], mode, 0),
8247 DFmode);
8248 rs6000_emit_move (simplify_gen_subreg (DFmode, operands[0], mode,
8249 GET_MODE_SIZE (DFmode)),
8250 simplify_gen_subreg (DFmode, operands[1], mode,
8251 GET_MODE_SIZE (DFmode)),
8252 DFmode);
8253 return;
8256 if (reload_in_progress && cfun->machine->sdmode_stack_slot != NULL_RTX)
8257 cfun->machine->sdmode_stack_slot =
8258 eliminate_regs (cfun->machine->sdmode_stack_slot, VOIDmode, NULL_RTX);
8261 if (lra_in_progress
8262 && mode == SDmode
8263 && REG_P (operands[0]) && REGNO (operands[0]) >= FIRST_PSEUDO_REGISTER
8264 && reg_preferred_class (REGNO (operands[0])) == NO_REGS
8265 && (REG_P (operands[1])
8266 || (GET_CODE (operands[1]) == SUBREG
8267 && REG_P (SUBREG_REG (operands[1])))))
8269 int regno = REGNO (GET_CODE (operands[1]) == SUBREG
8270 ? SUBREG_REG (operands[1]) : operands[1]);
8271 enum reg_class cl;
8273 if (regno >= FIRST_PSEUDO_REGISTER)
8275 cl = reg_preferred_class (regno);
8276 gcc_assert (cl != NO_REGS);
8277 regno = ira_class_hard_regs[cl][0];
8279 if (FP_REGNO_P (regno))
8281 if (GET_MODE (operands[0]) != DDmode)
8282 operands[0] = gen_rtx_SUBREG (DDmode, operands[0], 0);
8283 emit_insn (gen_movsd_store (operands[0], operands[1]));
8285 else if (INT_REGNO_P (regno))
8286 emit_insn (gen_movsd_hardfloat (operands[0], operands[1]));
8287 else
8288 gcc_unreachable();
8289 return;
8291 if (lra_in_progress
8292 && mode == SDmode
8293 && (REG_P (operands[0])
8294 || (GET_CODE (operands[0]) == SUBREG
8295 && REG_P (SUBREG_REG (operands[0]))))
8296 && REG_P (operands[1]) && REGNO (operands[1]) >= FIRST_PSEUDO_REGISTER
8297 && reg_preferred_class (REGNO (operands[1])) == NO_REGS)
8299 int regno = REGNO (GET_CODE (operands[0]) == SUBREG
8300 ? SUBREG_REG (operands[0]) : operands[0]);
8301 enum reg_class cl;
8303 if (regno >= FIRST_PSEUDO_REGISTER)
8305 cl = reg_preferred_class (regno);
8306 gcc_assert (cl != NO_REGS);
8307 regno = ira_class_hard_regs[cl][0];
8309 if (FP_REGNO_P (regno))
8311 if (GET_MODE (operands[1]) != DDmode)
8312 operands[1] = gen_rtx_SUBREG (DDmode, operands[1], 0);
8313 emit_insn (gen_movsd_load (operands[0], operands[1]));
8315 else if (INT_REGNO_P (regno))
8316 emit_insn (gen_movsd_hardfloat (operands[0], operands[1]));
8317 else
8318 gcc_unreachable();
8319 return;
8322 if (reload_in_progress
8323 && mode == SDmode
8324 && cfun->machine->sdmode_stack_slot != NULL_RTX
8325 && MEM_P (operands[0])
8326 && rtx_equal_p (operands[0], cfun->machine->sdmode_stack_slot)
8327 && REG_P (operands[1]))
8329 if (FP_REGNO_P (REGNO (operands[1])))
8331 rtx mem = adjust_address_nv (operands[0], DDmode, 0);
8332 mem = eliminate_regs (mem, VOIDmode, NULL_RTX);
8333 emit_insn (gen_movsd_store (mem, operands[1]));
8335 else if (INT_REGNO_P (REGNO (operands[1])))
8337 rtx mem = operands[0];
8338 if (BYTES_BIG_ENDIAN)
8339 mem = adjust_address_nv (mem, mode, 4);
8340 mem = eliminate_regs (mem, VOIDmode, NULL_RTX);
8341 emit_insn (gen_movsd_hardfloat (mem, operands[1]));
8343 else
8344 gcc_unreachable();
8345 return;
8347 if (reload_in_progress
8348 && mode == SDmode
8349 && REG_P (operands[0])
8350 && MEM_P (operands[1])
8351 && cfun->machine->sdmode_stack_slot != NULL_RTX
8352 && rtx_equal_p (operands[1], cfun->machine->sdmode_stack_slot))
8354 if (FP_REGNO_P (REGNO (operands[0])))
8356 rtx mem = adjust_address_nv (operands[1], DDmode, 0);
8357 mem = eliminate_regs (mem, VOIDmode, NULL_RTX);
8358 emit_insn (gen_movsd_load (operands[0], mem));
8360 else if (INT_REGNO_P (REGNO (operands[0])))
8362 rtx mem = operands[1];
8363 if (BYTES_BIG_ENDIAN)
8364 mem = adjust_address_nv (mem, mode, 4);
8365 mem = eliminate_regs (mem, VOIDmode, NULL_RTX);
8366 emit_insn (gen_movsd_hardfloat (operands[0], mem));
8368 else
8369 gcc_unreachable();
8370 return;
8373 /* FIXME: In the long term, this switch statement should go away
8374 and be replaced by a sequence of tests based on things like
8375 mode == Pmode. */
8376 switch (mode)
8378 case HImode:
8379 case QImode:
8380 if (CONSTANT_P (operands[1])
8381 && GET_CODE (operands[1]) != CONST_INT)
8382 operands[1] = force_const_mem (mode, operands[1]);
8383 break;
8385 case TFmode:
8386 case TDmode:
8387 rs6000_eliminate_indexed_memrefs (operands);
8388 /* fall through */
8390 case DFmode:
8391 case DDmode:
8392 case SFmode:
8393 case SDmode:
8394 if (CONSTANT_P (operands[1])
8395 && ! easy_fp_constant (operands[1], mode))
8396 operands[1] = force_const_mem (mode, operands[1]);
8397 break;
8399 case V16QImode:
8400 case V8HImode:
8401 case V4SFmode:
8402 case V4SImode:
8403 case V4HImode:
8404 case V2SFmode:
8405 case V2SImode:
8406 case V1DImode:
8407 case V2DFmode:
8408 case V2DImode:
8409 case V1TImode:
8410 if (CONSTANT_P (operands[1])
8411 && !easy_vector_constant (operands[1], mode))
8412 operands[1] = force_const_mem (mode, operands[1]);
8413 break;
8415 case SImode:
8416 case DImode:
8417 /* Use default pattern for address of ELF small data */
8418 if (TARGET_ELF
8419 && mode == Pmode
8420 && DEFAULT_ABI == ABI_V4
8421 && (GET_CODE (operands[1]) == SYMBOL_REF
8422 || GET_CODE (operands[1]) == CONST)
8423 && small_data_operand (operands[1], mode))
8425 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
8426 return;
8429 if (DEFAULT_ABI == ABI_V4
8430 && mode == Pmode && mode == SImode
8431 && flag_pic == 1 && got_operand (operands[1], mode))
8433 emit_insn (gen_movsi_got (operands[0], operands[1]));
8434 return;
8437 if ((TARGET_ELF || DEFAULT_ABI == ABI_DARWIN)
8438 && TARGET_NO_TOC
8439 && ! flag_pic
8440 && mode == Pmode
8441 && CONSTANT_P (operands[1])
8442 && GET_CODE (operands[1]) != HIGH
8443 && GET_CODE (operands[1]) != CONST_INT)
8445 rtx target = (!can_create_pseudo_p ()
8446 ? operands[0]
8447 : gen_reg_rtx (mode));
8449 /* If this is a function address on -mcall-aixdesc,
8450 convert it to the address of the descriptor. */
8451 if (DEFAULT_ABI == ABI_AIX
8452 && GET_CODE (operands[1]) == SYMBOL_REF
8453 && XSTR (operands[1], 0)[0] == '.')
8455 const char *name = XSTR (operands[1], 0);
8456 rtx new_ref;
8457 while (*name == '.')
8458 name++;
8459 new_ref = gen_rtx_SYMBOL_REF (Pmode, name);
8460 CONSTANT_POOL_ADDRESS_P (new_ref)
8461 = CONSTANT_POOL_ADDRESS_P (operands[1]);
8462 SYMBOL_REF_FLAGS (new_ref) = SYMBOL_REF_FLAGS (operands[1]);
8463 SYMBOL_REF_USED (new_ref) = SYMBOL_REF_USED (operands[1]);
8464 SYMBOL_REF_DATA (new_ref) = SYMBOL_REF_DATA (operands[1]);
8465 operands[1] = new_ref;
8468 if (DEFAULT_ABI == ABI_DARWIN)
8470 #if TARGET_MACHO
8471 if (MACHO_DYNAMIC_NO_PIC_P)
8473 /* Take care of any required data indirection. */
8474 operands[1] = rs6000_machopic_legitimize_pic_address (
8475 operands[1], mode, operands[0]);
8476 if (operands[0] != operands[1])
8477 emit_insn (gen_rtx_SET (VOIDmode,
8478 operands[0], operands[1]));
8479 return;
8481 #endif
8482 emit_insn (gen_macho_high (target, operands[1]));
8483 emit_insn (gen_macho_low (operands[0], target, operands[1]));
8484 return;
8487 emit_insn (gen_elf_high (target, operands[1]));
8488 emit_insn (gen_elf_low (operands[0], target, operands[1]));
8489 return;
8492 /* If this is a SYMBOL_REF that refers to a constant pool entry,
8493 and we have put it in the TOC, we just need to make a TOC-relative
8494 reference to it. */
8495 if (TARGET_TOC
8496 && GET_CODE (operands[1]) == SYMBOL_REF
8497 && use_toc_relative_ref (operands[1]))
8498 operands[1] = create_TOC_reference (operands[1], operands[0]);
8499 else if (mode == Pmode
8500 && CONSTANT_P (operands[1])
8501 && GET_CODE (operands[1]) != HIGH
8502 && ((GET_CODE (operands[1]) != CONST_INT
8503 && ! easy_fp_constant (operands[1], mode))
8504 || (GET_CODE (operands[1]) == CONST_INT
8505 && (num_insns_constant (operands[1], mode)
8506 > (TARGET_CMODEL != CMODEL_SMALL ? 3 : 2)))
8507 || (GET_CODE (operands[0]) == REG
8508 && FP_REGNO_P (REGNO (operands[0]))))
8509 && !toc_relative_expr_p (operands[1], false)
8510 && (TARGET_CMODEL == CMODEL_SMALL
8511 || can_create_pseudo_p ()
8512 || (REG_P (operands[0])
8513 && INT_REG_OK_FOR_BASE_P (operands[0], true))))
8516 #if TARGET_MACHO
8517 /* Darwin uses a special PIC legitimizer. */
8518 if (DEFAULT_ABI == ABI_DARWIN && MACHOPIC_INDIRECT)
8520 operands[1] =
8521 rs6000_machopic_legitimize_pic_address (operands[1], mode,
8522 operands[0]);
8523 if (operands[0] != operands[1])
8524 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
8525 return;
8527 #endif
8529 /* If we are to limit the number of things we put in the TOC and
8530 this is a symbol plus a constant we can add in one insn,
8531 just put the symbol in the TOC and add the constant. Don't do
8532 this if reload is in progress. */
8533 if (GET_CODE (operands[1]) == CONST
8534 && TARGET_NO_SUM_IN_TOC && ! reload_in_progress
8535 && GET_CODE (XEXP (operands[1], 0)) == PLUS
8536 && add_operand (XEXP (XEXP (operands[1], 0), 1), mode)
8537 && (GET_CODE (XEXP (XEXP (operands[1], 0), 0)) == LABEL_REF
8538 || GET_CODE (XEXP (XEXP (operands[1], 0), 0)) == SYMBOL_REF)
8539 && ! side_effects_p (operands[0]))
8541 rtx sym =
8542 force_const_mem (mode, XEXP (XEXP (operands[1], 0), 0));
8543 rtx other = XEXP (XEXP (operands[1], 0), 1);
8545 sym = force_reg (mode, sym);
8546 emit_insn (gen_add3_insn (operands[0], sym, other));
8547 return;
8550 operands[1] = force_const_mem (mode, operands[1]);
8552 if (TARGET_TOC
8553 && GET_CODE (XEXP (operands[1], 0)) == SYMBOL_REF
8554 && constant_pool_expr_p (XEXP (operands[1], 0))
8555 && ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (
8556 get_pool_constant (XEXP (operands[1], 0)),
8557 get_pool_mode (XEXP (operands[1], 0))))
8559 rtx tocref = create_TOC_reference (XEXP (operands[1], 0),
8560 operands[0]);
8561 operands[1] = gen_const_mem (mode, tocref);
8562 set_mem_alias_set (operands[1], get_TOC_alias_set ());
8565 break;
8567 case TImode:
8568 if (!VECTOR_MEM_VSX_P (TImode))
8569 rs6000_eliminate_indexed_memrefs (operands);
8570 break;
8572 case PTImode:
8573 rs6000_eliminate_indexed_memrefs (operands);
8574 break;
8576 default:
8577 fatal_insn ("bad move", gen_rtx_SET (VOIDmode, dest, source));
8580 /* Above, we may have called force_const_mem which may have returned
8581 an invalid address. If we can, fix this up; otherwise, reload will
8582 have to deal with it. */
8583 if (GET_CODE (operands[1]) == MEM && ! reload_in_progress)
8584 operands[1] = validize_mem (operands[1]);
8586 emit_set:
8587 emit_insn (gen_rtx_SET (VOIDmode, operands[0], operands[1]));
8590 /* Return true if a structure, union or array containing FIELD should be
8591 accessed using `BLKMODE'.
8593 For the SPE, simd types are V2SI, and gcc can be tempted to put the
8594 entire thing in a DI and use subregs to access the internals.
8595 store_bit_field() will force (subreg:DI (reg:V2SI x))'s to the
8596 back-end. Because a single GPR can hold a V2SI, but not a DI, the
8597 best thing to do is set structs to BLKmode and avoid Severe Tire
8598 Damage.
8600 On e500 v2, DF and DI modes suffer from the same anomaly. DF can
8601 fit into 1, whereas DI still needs two. */
8603 static bool
8604 rs6000_member_type_forces_blk (const_tree field, enum machine_mode mode)
8606 return ((TARGET_SPE && TREE_CODE (TREE_TYPE (field)) == VECTOR_TYPE)
8607 || (TARGET_E500_DOUBLE && mode == DFmode));
8610 /* Nonzero if we can use a floating-point register to pass this arg. */
8611 #define USE_FP_FOR_ARG_P(CUM,MODE) \
8612 (SCALAR_FLOAT_MODE_P (MODE) \
8613 && (CUM)->fregno <= FP_ARG_MAX_REG \
8614 && TARGET_HARD_FLOAT && TARGET_FPRS)
8616 /* Nonzero if we can use an AltiVec register to pass this arg. */
8617 #define USE_ALTIVEC_FOR_ARG_P(CUM,MODE,NAMED) \
8618 (ALTIVEC_OR_VSX_VECTOR_MODE (MODE) \
8619 && (CUM)->vregno <= ALTIVEC_ARG_MAX_REG \
8620 && TARGET_ALTIVEC_ABI \
8621 && (NAMED))
8623 /* Walk down the type tree of TYPE counting consecutive base elements.
8624 If *MODEP is VOIDmode, then set it to the first valid floating point
8625 or vector type. If a non-floating point or vector type is found, or
8626 if a floating point or vector type that doesn't match a non-VOIDmode
8627 *MODEP is found, then return -1, otherwise return the count in the
8628 sub-tree. */
8630 static int
8631 rs6000_aggregate_candidate (const_tree type, enum machine_mode *modep)
8633 enum machine_mode mode;
8634 HOST_WIDE_INT size;
8636 switch (TREE_CODE (type))
8638 case REAL_TYPE:
8639 mode = TYPE_MODE (type);
8640 if (!SCALAR_FLOAT_MODE_P (mode))
8641 return -1;
8643 if (*modep == VOIDmode)
8644 *modep = mode;
8646 if (*modep == mode)
8647 return 1;
8649 break;
8651 case COMPLEX_TYPE:
8652 mode = TYPE_MODE (TREE_TYPE (type));
8653 if (!SCALAR_FLOAT_MODE_P (mode))
8654 return -1;
8656 if (*modep == VOIDmode)
8657 *modep = mode;
8659 if (*modep == mode)
8660 return 2;
8662 break;
8664 case VECTOR_TYPE:
8665 if (!TARGET_ALTIVEC_ABI || !TARGET_ALTIVEC)
8666 return -1;
8668 /* Use V4SImode as representative of all 128-bit vector types. */
8669 size = int_size_in_bytes (type);
8670 switch (size)
8672 case 16:
8673 mode = V4SImode;
8674 break;
8675 default:
8676 return -1;
8679 if (*modep == VOIDmode)
8680 *modep = mode;
8682 /* Vector modes are considered to be opaque: two vectors are
8683 equivalent for the purposes of being homogeneous aggregates
8684 if they are the same size. */
8685 if (*modep == mode)
8686 return 1;
8688 break;
8690 case ARRAY_TYPE:
8692 int count;
8693 tree index = TYPE_DOMAIN (type);
8695 /* Can't handle incomplete types nor sizes that are not
8696 fixed. */
8697 if (!COMPLETE_TYPE_P (type)
8698 || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
8699 return -1;
8701 count = rs6000_aggregate_candidate (TREE_TYPE (type), modep);
8702 if (count == -1
8703 || !index
8704 || !TYPE_MAX_VALUE (index)
8705 || !tree_fits_uhwi_p (TYPE_MAX_VALUE (index))
8706 || !TYPE_MIN_VALUE (index)
8707 || !tree_fits_uhwi_p (TYPE_MIN_VALUE (index))
8708 || count < 0)
8709 return -1;
8711 count *= (1 + tree_to_uhwi (TYPE_MAX_VALUE (index))
8712 - tree_to_uhwi (TYPE_MIN_VALUE (index)));
8714 /* There must be no padding. */
8715 if (wi::ne_p (TYPE_SIZE (type), count * GET_MODE_BITSIZE (*modep)))
8716 return -1;
8718 return count;
8721 case RECORD_TYPE:
8723 int count = 0;
8724 int sub_count;
8725 tree field;
8727 /* Can't handle incomplete types nor sizes that are not
8728 fixed. */
8729 if (!COMPLETE_TYPE_P (type)
8730 || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
8731 return -1;
8733 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
8735 if (TREE_CODE (field) != FIELD_DECL)
8736 continue;
8738 sub_count = rs6000_aggregate_candidate (TREE_TYPE (field), modep);
8739 if (sub_count < 0)
8740 return -1;
8741 count += sub_count;
8744 /* There must be no padding. */
8745 if (wi::ne_p (TYPE_SIZE (type), count * GET_MODE_BITSIZE (*modep)))
8746 return -1;
8748 return count;
8751 case UNION_TYPE:
8752 case QUAL_UNION_TYPE:
8754 /* These aren't very interesting except in a degenerate case. */
8755 int count = 0;
8756 int sub_count;
8757 tree field;
8759 /* Can't handle incomplete types nor sizes that are not
8760 fixed. */
8761 if (!COMPLETE_TYPE_P (type)
8762 || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
8764 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
8766 if (TREE_CODE (field) != FIELD_DECL)
8767 continue;
8769 sub_count = rs6000_aggregate_candidate (TREE_TYPE (field), modep);
8770 if (sub_count < 0)
8771 return -1;
8772 count = count > sub_count ? count : sub_count;
8775 /* There must be no padding. */
8776 if (wi::ne_p (TYPE_SIZE (type), count * GET_MODE_BITSIZE (*modep)))
8777 return -1;
8779 return count;
8782 default:
8783 break;
8786 return -1;
8789 /* If an argument, whose type is described by TYPE and MODE, is a homogeneous
8790 float or vector aggregate that shall be passed in FP/vector registers
8791 according to the ELFv2 ABI, return the homogeneous element mode in
8792 *ELT_MODE and the number of elements in *N_ELTS, and return TRUE.
8794 Otherwise, set *ELT_MODE to MODE and *N_ELTS to 1, and return FALSE. */
8796 static bool
8797 rs6000_discover_homogeneous_aggregate (enum machine_mode mode, const_tree type,
8798 enum machine_mode *elt_mode,
8799 int *n_elts)
8801 /* Note that we do not accept complex types at the top level as
8802 homogeneous aggregates; these types are handled via the
8803 targetm.calls.split_complex_arg mechanism. Complex types
8804 can be elements of homogeneous aggregates, however. */
8805 if (DEFAULT_ABI == ABI_ELFv2 && type && AGGREGATE_TYPE_P (type))
8807 enum machine_mode field_mode = VOIDmode;
8808 int field_count = rs6000_aggregate_candidate (type, &field_mode);
8810 if (field_count > 0)
8812 int n_regs = (SCALAR_FLOAT_MODE_P (field_mode)?
8813 (GET_MODE_SIZE (field_mode) + 7) >> 3 : 1);
8815 /* The ELFv2 ABI allows homogeneous aggregates to occupy
8816 up to AGGR_ARG_NUM_REG registers. */
8817 if (field_count * n_regs <= AGGR_ARG_NUM_REG)
8819 if (elt_mode)
8820 *elt_mode = field_mode;
8821 if (n_elts)
8822 *n_elts = field_count;
8823 return true;
8828 if (elt_mode)
8829 *elt_mode = mode;
8830 if (n_elts)
8831 *n_elts = 1;
8832 return false;
8835 /* Return a nonzero value to say to return the function value in
8836 memory, just as large structures are always returned. TYPE will be
8837 the data type of the value, and FNTYPE will be the type of the
8838 function doing the returning, or @code{NULL} for libcalls.
8840 The AIX ABI for the RS/6000 specifies that all structures are
8841 returned in memory. The Darwin ABI does the same.
8843 For the Darwin 64 Bit ABI, a function result can be returned in
8844 registers or in memory, depending on the size of the return data
8845 type. If it is returned in registers, the value occupies the same
8846 registers as it would if it were the first and only function
8847 argument. Otherwise, the function places its result in memory at
8848 the location pointed to by GPR3.
8850 The SVR4 ABI specifies that structures <= 8 bytes are returned in r3/r4,
8851 but a draft put them in memory, and GCC used to implement the draft
8852 instead of the final standard. Therefore, aix_struct_return
8853 controls this instead of DEFAULT_ABI; V.4 targets needing backward
8854 compatibility can change DRAFT_V4_STRUCT_RET to override the
8855 default, and -m switches get the final word. See
8856 rs6000_option_override_internal for more details.
8858 The PPC32 SVR4 ABI uses IEEE double extended for long double, if 128-bit
8859 long double support is enabled. These values are returned in memory.
8861 int_size_in_bytes returns -1 for variable size objects, which go in
8862 memory always. The cast to unsigned makes -1 > 8. */
8864 static bool
8865 rs6000_return_in_memory (const_tree type, const_tree fntype ATTRIBUTE_UNUSED)
8867 /* For the Darwin64 ABI, test if we can fit the return value in regs. */
8868 if (TARGET_MACHO
8869 && rs6000_darwin64_abi
8870 && TREE_CODE (type) == RECORD_TYPE
8871 && int_size_in_bytes (type) > 0)
8873 CUMULATIVE_ARGS valcum;
8874 rtx valret;
8876 valcum.words = 0;
8877 valcum.fregno = FP_ARG_MIN_REG;
8878 valcum.vregno = ALTIVEC_ARG_MIN_REG;
8879 /* Do a trial code generation as if this were going to be passed
8880 as an argument; if any part goes in memory, we return NULL. */
8881 valret = rs6000_darwin64_record_arg (&valcum, type, true, true);
8882 if (valret)
8883 return false;
8884 /* Otherwise fall through to more conventional ABI rules. */
8887 /* The ELFv2 ABI returns homogeneous VFP aggregates in registers */
8888 if (rs6000_discover_homogeneous_aggregate (TYPE_MODE (type), type,
8889 NULL, NULL))
8890 return false;
8892 /* The ELFv2 ABI returns aggregates up to 16B in registers */
8893 if (DEFAULT_ABI == ABI_ELFv2 && AGGREGATE_TYPE_P (type)
8894 && (unsigned HOST_WIDE_INT) int_size_in_bytes (type) <= 16)
8895 return false;
8897 if (AGGREGATE_TYPE_P (type)
8898 && (aix_struct_return
8899 || (unsigned HOST_WIDE_INT) int_size_in_bytes (type) > 8))
8900 return true;
8902 /* Allow -maltivec -mabi=no-altivec without warning. Altivec vector
8903 modes only exist for GCC vector types if -maltivec. */
8904 if (TARGET_32BIT && !TARGET_ALTIVEC_ABI
8905 && ALTIVEC_VECTOR_MODE (TYPE_MODE (type)))
8906 return false;
8908 /* Return synthetic vectors in memory. */
8909 if (TREE_CODE (type) == VECTOR_TYPE
8910 && int_size_in_bytes (type) > (TARGET_ALTIVEC_ABI ? 16 : 8))
8912 static bool warned_for_return_big_vectors = false;
8913 if (!warned_for_return_big_vectors)
8915 warning (0, "GCC vector returned by reference: "
8916 "non-standard ABI extension with no compatibility guarantee");
8917 warned_for_return_big_vectors = true;
8919 return true;
8922 if (DEFAULT_ABI == ABI_V4 && TARGET_IEEEQUAD && TYPE_MODE (type) == TFmode)
8923 return true;
8925 return false;
8928 /* Specify whether values returned in registers should be at the most
8929 significant end of a register. We want aggregates returned by
8930 value to match the way aggregates are passed to functions. */
8932 static bool
8933 rs6000_return_in_msb (const_tree valtype)
8935 return (DEFAULT_ABI == ABI_ELFv2
8936 && BYTES_BIG_ENDIAN
8937 && AGGREGATE_TYPE_P (valtype)
8938 && FUNCTION_ARG_PADDING (TYPE_MODE (valtype), valtype) == upward);
8941 #ifdef HAVE_AS_GNU_ATTRIBUTE
8942 /* Return TRUE if a call to function FNDECL may be one that
8943 potentially affects the function calling ABI of the object file. */
8945 static bool
8946 call_ABI_of_interest (tree fndecl)
8948 if (cgraph_state == CGRAPH_STATE_EXPANSION)
8950 struct cgraph_node *c_node;
8952 /* Libcalls are always interesting. */
8953 if (fndecl == NULL_TREE)
8954 return true;
8956 /* Any call to an external function is interesting. */
8957 if (DECL_EXTERNAL (fndecl))
8958 return true;
8960 /* Interesting functions that we are emitting in this object file. */
8961 c_node = cgraph_get_node (fndecl);
8962 c_node = cgraph_function_or_thunk_node (c_node, NULL);
8963 return !cgraph_only_called_directly_p (c_node);
8965 return false;
8967 #endif
8969 /* Initialize a variable CUM of type CUMULATIVE_ARGS
8970 for a call to a function whose data type is FNTYPE.
8971 For a library call, FNTYPE is 0 and RETURN_MODE the return value mode.
8973 For incoming args we set the number of arguments in the prototype large
8974 so we never return a PARALLEL. */
8976 void
8977 init_cumulative_args (CUMULATIVE_ARGS *cum, tree fntype,
8978 rtx libname ATTRIBUTE_UNUSED, int incoming,
8979 int libcall, int n_named_args,
8980 tree fndecl ATTRIBUTE_UNUSED,
8981 enum machine_mode return_mode ATTRIBUTE_UNUSED)
8983 static CUMULATIVE_ARGS zero_cumulative;
8985 *cum = zero_cumulative;
8986 cum->words = 0;
8987 cum->fregno = FP_ARG_MIN_REG;
8988 cum->vregno = ALTIVEC_ARG_MIN_REG;
8989 cum->prototype = (fntype && prototype_p (fntype));
8990 cum->call_cookie = ((DEFAULT_ABI == ABI_V4 && libcall)
8991 ? CALL_LIBCALL : CALL_NORMAL);
8992 cum->sysv_gregno = GP_ARG_MIN_REG;
8993 cum->stdarg = stdarg_p (fntype);
8995 cum->nargs_prototype = 0;
8996 if (incoming || cum->prototype)
8997 cum->nargs_prototype = n_named_args;
8999 /* Check for a longcall attribute. */
9000 if ((!fntype && rs6000_default_long_calls)
9001 || (fntype
9002 && lookup_attribute ("longcall", TYPE_ATTRIBUTES (fntype))
9003 && !lookup_attribute ("shortcall", TYPE_ATTRIBUTES (fntype))))
9004 cum->call_cookie |= CALL_LONG;
9006 if (TARGET_DEBUG_ARG)
9008 fprintf (stderr, "\ninit_cumulative_args:");
9009 if (fntype)
9011 tree ret_type = TREE_TYPE (fntype);
9012 fprintf (stderr, " ret code = %s,",
9013 get_tree_code_name (TREE_CODE (ret_type)));
9016 if (cum->call_cookie & CALL_LONG)
9017 fprintf (stderr, " longcall,");
9019 fprintf (stderr, " proto = %d, nargs = %d\n",
9020 cum->prototype, cum->nargs_prototype);
9023 #ifdef HAVE_AS_GNU_ATTRIBUTE
9024 if (DEFAULT_ABI == ABI_V4)
9026 cum->escapes = call_ABI_of_interest (fndecl);
9027 if (cum->escapes)
9029 tree return_type;
9031 if (fntype)
9033 return_type = TREE_TYPE (fntype);
9034 return_mode = TYPE_MODE (return_type);
9036 else
9037 return_type = lang_hooks.types.type_for_mode (return_mode, 0);
9039 if (return_type != NULL)
9041 if (TREE_CODE (return_type) == RECORD_TYPE
9042 && TYPE_TRANSPARENT_AGGR (return_type))
9044 return_type = TREE_TYPE (first_field (return_type));
9045 return_mode = TYPE_MODE (return_type);
9047 if (AGGREGATE_TYPE_P (return_type)
9048 && ((unsigned HOST_WIDE_INT) int_size_in_bytes (return_type)
9049 <= 8))
9050 rs6000_returns_struct = true;
9052 if (SCALAR_FLOAT_MODE_P (return_mode))
9053 rs6000_passes_float = true;
9054 else if (ALTIVEC_OR_VSX_VECTOR_MODE (return_mode)
9055 || SPE_VECTOR_MODE (return_mode))
9056 rs6000_passes_vector = true;
9059 #endif
9061 if (fntype
9062 && !TARGET_ALTIVEC
9063 && TARGET_ALTIVEC_ABI
9064 && ALTIVEC_VECTOR_MODE (TYPE_MODE (TREE_TYPE (fntype))))
9066 error ("cannot return value in vector register because"
9067 " altivec instructions are disabled, use -maltivec"
9068 " to enable them");
9072 /* Return true if TYPE must be passed on the stack and not in registers. */
9074 static bool
9075 rs6000_must_pass_in_stack (enum machine_mode mode, const_tree type)
9077 if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2 || TARGET_64BIT)
9078 return must_pass_in_stack_var_size (mode, type);
9079 else
9080 return must_pass_in_stack_var_size_or_pad (mode, type);
9083 /* If defined, a C expression which determines whether, and in which
9084 direction, to pad out an argument with extra space. The value
9085 should be of type `enum direction': either `upward' to pad above
9086 the argument, `downward' to pad below, or `none' to inhibit
9087 padding.
9089 For the AIX ABI structs are always stored left shifted in their
9090 argument slot. */
9092 enum direction
9093 function_arg_padding (enum machine_mode mode, const_tree type)
9095 #ifndef AGGREGATE_PADDING_FIXED
9096 #define AGGREGATE_PADDING_FIXED 0
9097 #endif
9098 #ifndef AGGREGATES_PAD_UPWARD_ALWAYS
9099 #define AGGREGATES_PAD_UPWARD_ALWAYS 0
9100 #endif
9102 if (!AGGREGATE_PADDING_FIXED)
9104 /* GCC used to pass structures of the same size as integer types as
9105 if they were in fact integers, ignoring FUNCTION_ARG_PADDING.
9106 i.e. Structures of size 1 or 2 (or 4 when TARGET_64BIT) were
9107 passed padded downward, except that -mstrict-align further
9108 muddied the water in that multi-component structures of 2 and 4
9109 bytes in size were passed padded upward.
9111 The following arranges for best compatibility with previous
9112 versions of gcc, but removes the -mstrict-align dependency. */
9113 if (BYTES_BIG_ENDIAN)
9115 HOST_WIDE_INT size = 0;
9117 if (mode == BLKmode)
9119 if (type && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST)
9120 size = int_size_in_bytes (type);
9122 else
9123 size = GET_MODE_SIZE (mode);
9125 if (size == 1 || size == 2 || size == 4)
9126 return downward;
9128 return upward;
9131 if (AGGREGATES_PAD_UPWARD_ALWAYS)
9133 if (type != 0 && AGGREGATE_TYPE_P (type))
9134 return upward;
9137 /* Fall back to the default. */
9138 return DEFAULT_FUNCTION_ARG_PADDING (mode, type);
9141 /* If defined, a C expression that gives the alignment boundary, in bits,
9142 of an argument with the specified mode and type. If it is not defined,
9143 PARM_BOUNDARY is used for all arguments.
9145 V.4 wants long longs and doubles to be double word aligned. Just
9146 testing the mode size is a boneheaded way to do this as it means
9147 that other types such as complex int are also double word aligned.
9148 However, we're stuck with this because changing the ABI might break
9149 existing library interfaces.
9151 Doubleword align SPE vectors.
9152 Quadword align Altivec/VSX vectors.
9153 Quadword align large synthetic vector types. */
9155 static unsigned int
9156 rs6000_function_arg_boundary (enum machine_mode mode, const_tree type)
9158 enum machine_mode elt_mode;
9159 int n_elts;
9161 rs6000_discover_homogeneous_aggregate (mode, type, &elt_mode, &n_elts);
9163 if (DEFAULT_ABI == ABI_V4
9164 && (GET_MODE_SIZE (mode) == 8
9165 || (TARGET_HARD_FLOAT
9166 && TARGET_FPRS
9167 && (mode == TFmode || mode == TDmode))))
9168 return 64;
9169 else if (SPE_VECTOR_MODE (mode)
9170 || (type && TREE_CODE (type) == VECTOR_TYPE
9171 && int_size_in_bytes (type) >= 8
9172 && int_size_in_bytes (type) < 16))
9173 return 64;
9174 else if (ALTIVEC_OR_VSX_VECTOR_MODE (elt_mode)
9175 || (type && TREE_CODE (type) == VECTOR_TYPE
9176 && int_size_in_bytes (type) >= 16))
9177 return 128;
9178 else if (((TARGET_MACHO && rs6000_darwin64_abi)
9179 || DEFAULT_ABI == ABI_ELFv2
9180 || (DEFAULT_ABI == ABI_AIX && !rs6000_compat_align_parm))
9181 && mode == BLKmode
9182 && type && TYPE_ALIGN (type) > 64)
9183 return 128;
9184 else
9185 return PARM_BOUNDARY;
9188 /* The offset in words to the start of the parameter save area. */
9190 static unsigned int
9191 rs6000_parm_offset (void)
9193 return (DEFAULT_ABI == ABI_V4 ? 2
9194 : DEFAULT_ABI == ABI_ELFv2 ? 4
9195 : 6);
9198 /* For a function parm of MODE and TYPE, return the starting word in
9199 the parameter area. NWORDS of the parameter area are already used. */
9201 static unsigned int
9202 rs6000_parm_start (enum machine_mode mode, const_tree type,
9203 unsigned int nwords)
9205 unsigned int align;
9207 align = rs6000_function_arg_boundary (mode, type) / PARM_BOUNDARY - 1;
9208 return nwords + (-(rs6000_parm_offset () + nwords) & align);
9211 /* Compute the size (in words) of a function argument. */
9213 static unsigned long
9214 rs6000_arg_size (enum machine_mode mode, const_tree type)
9216 unsigned long size;
9218 if (mode != BLKmode)
9219 size = GET_MODE_SIZE (mode);
9220 else
9221 size = int_size_in_bytes (type);
9223 if (TARGET_32BIT)
9224 return (size + 3) >> 2;
9225 else
9226 return (size + 7) >> 3;
9229 /* Use this to flush pending int fields. */
9231 static void
9232 rs6000_darwin64_record_arg_advance_flush (CUMULATIVE_ARGS *cum,
9233 HOST_WIDE_INT bitpos, int final)
9235 unsigned int startbit, endbit;
9236 int intregs, intoffset;
9237 enum machine_mode mode;
9239 /* Handle the situations where a float is taking up the first half
9240 of the GPR, and the other half is empty (typically due to
9241 alignment restrictions). We can detect this by a 8-byte-aligned
9242 int field, or by seeing that this is the final flush for this
9243 argument. Count the word and continue on. */
9244 if (cum->floats_in_gpr == 1
9245 && (cum->intoffset % 64 == 0
9246 || (cum->intoffset == -1 && final)))
9248 cum->words++;
9249 cum->floats_in_gpr = 0;
9252 if (cum->intoffset == -1)
9253 return;
9255 intoffset = cum->intoffset;
9256 cum->intoffset = -1;
9257 cum->floats_in_gpr = 0;
9259 if (intoffset % BITS_PER_WORD != 0)
9261 mode = mode_for_size (BITS_PER_WORD - intoffset % BITS_PER_WORD,
9262 MODE_INT, 0);
9263 if (mode == BLKmode)
9265 /* We couldn't find an appropriate mode, which happens,
9266 e.g., in packed structs when there are 3 bytes to load.
9267 Back intoffset back to the beginning of the word in this
9268 case. */
9269 intoffset = intoffset & -BITS_PER_WORD;
9273 startbit = intoffset & -BITS_PER_WORD;
9274 endbit = (bitpos + BITS_PER_WORD - 1) & -BITS_PER_WORD;
9275 intregs = (endbit - startbit) / BITS_PER_WORD;
9276 cum->words += intregs;
9277 /* words should be unsigned. */
9278 if ((unsigned)cum->words < (endbit/BITS_PER_WORD))
9280 int pad = (endbit/BITS_PER_WORD) - cum->words;
9281 cum->words += pad;
9285 /* The darwin64 ABI calls for us to recurse down through structs,
9286 looking for elements passed in registers. Unfortunately, we have
9287 to track int register count here also because of misalignments
9288 in powerpc alignment mode. */
9290 static void
9291 rs6000_darwin64_record_arg_advance_recurse (CUMULATIVE_ARGS *cum,
9292 const_tree type,
9293 HOST_WIDE_INT startbitpos)
9295 tree f;
9297 for (f = TYPE_FIELDS (type); f ; f = DECL_CHAIN (f))
9298 if (TREE_CODE (f) == FIELD_DECL)
9300 HOST_WIDE_INT bitpos = startbitpos;
9301 tree ftype = TREE_TYPE (f);
9302 enum machine_mode mode;
9303 if (ftype == error_mark_node)
9304 continue;
9305 mode = TYPE_MODE (ftype);
9307 if (DECL_SIZE (f) != 0
9308 && tree_fits_uhwi_p (bit_position (f)))
9309 bitpos += int_bit_position (f);
9311 /* ??? FIXME: else assume zero offset. */
9313 if (TREE_CODE (ftype) == RECORD_TYPE)
9314 rs6000_darwin64_record_arg_advance_recurse (cum, ftype, bitpos);
9315 else if (USE_FP_FOR_ARG_P (cum, mode))
9317 unsigned n_fpregs = (GET_MODE_SIZE (mode) + 7) >> 3;
9318 rs6000_darwin64_record_arg_advance_flush (cum, bitpos, 0);
9319 cum->fregno += n_fpregs;
9320 /* Single-precision floats present a special problem for
9321 us, because they are smaller than an 8-byte GPR, and so
9322 the structure-packing rules combined with the standard
9323 varargs behavior mean that we want to pack float/float
9324 and float/int combinations into a single register's
9325 space. This is complicated by the arg advance flushing,
9326 which works on arbitrarily large groups of int-type
9327 fields. */
9328 if (mode == SFmode)
9330 if (cum->floats_in_gpr == 1)
9332 /* Two floats in a word; count the word and reset
9333 the float count. */
9334 cum->words++;
9335 cum->floats_in_gpr = 0;
9337 else if (bitpos % 64 == 0)
9339 /* A float at the beginning of an 8-byte word;
9340 count it and put off adjusting cum->words until
9341 we see if a arg advance flush is going to do it
9342 for us. */
9343 cum->floats_in_gpr++;
9345 else
9347 /* The float is at the end of a word, preceded
9348 by integer fields, so the arg advance flush
9349 just above has already set cum->words and
9350 everything is taken care of. */
9353 else
9354 cum->words += n_fpregs;
9356 else if (USE_ALTIVEC_FOR_ARG_P (cum, mode, 1))
9358 rs6000_darwin64_record_arg_advance_flush (cum, bitpos, 0);
9359 cum->vregno++;
9360 cum->words += 2;
9362 else if (cum->intoffset == -1)
9363 cum->intoffset = bitpos;
9367 /* Check for an item that needs to be considered specially under the darwin 64
9368 bit ABI. These are record types where the mode is BLK or the structure is
9369 8 bytes in size. */
9370 static int
9371 rs6000_darwin64_struct_check_p (enum machine_mode mode, const_tree type)
9373 return rs6000_darwin64_abi
9374 && ((mode == BLKmode
9375 && TREE_CODE (type) == RECORD_TYPE
9376 && int_size_in_bytes (type) > 0)
9377 || (type && TREE_CODE (type) == RECORD_TYPE
9378 && int_size_in_bytes (type) == 8)) ? 1 : 0;
9381 /* Update the data in CUM to advance over an argument
9382 of mode MODE and data type TYPE.
9383 (TYPE is null for libcalls where that information may not be available.)
9385 Note that for args passed by reference, function_arg will be called
9386 with MODE and TYPE set to that of the pointer to the arg, not the arg
9387 itself. */
9389 static void
9390 rs6000_function_arg_advance_1 (CUMULATIVE_ARGS *cum, enum machine_mode mode,
9391 const_tree type, bool named, int depth)
9393 enum machine_mode elt_mode;
9394 int n_elts;
9396 rs6000_discover_homogeneous_aggregate (mode, type, &elt_mode, &n_elts);
9398 /* Only tick off an argument if we're not recursing. */
9399 if (depth == 0)
9400 cum->nargs_prototype--;
9402 #ifdef HAVE_AS_GNU_ATTRIBUTE
9403 if (DEFAULT_ABI == ABI_V4
9404 && cum->escapes)
9406 if (SCALAR_FLOAT_MODE_P (mode))
9407 rs6000_passes_float = true;
9408 else if (named && ALTIVEC_OR_VSX_VECTOR_MODE (mode))
9409 rs6000_passes_vector = true;
9410 else if (SPE_VECTOR_MODE (mode)
9411 && !cum->stdarg
9412 && cum->sysv_gregno <= GP_ARG_MAX_REG)
9413 rs6000_passes_vector = true;
9415 #endif
9417 if (TARGET_ALTIVEC_ABI
9418 && (ALTIVEC_OR_VSX_VECTOR_MODE (elt_mode)
9419 || (type && TREE_CODE (type) == VECTOR_TYPE
9420 && int_size_in_bytes (type) == 16)))
9422 bool stack = false;
9424 if (USE_ALTIVEC_FOR_ARG_P (cum, elt_mode, named))
9426 cum->vregno += n_elts;
9428 if (!TARGET_ALTIVEC)
9429 error ("cannot pass argument in vector register because"
9430 " altivec instructions are disabled, use -maltivec"
9431 " to enable them");
9433 /* PowerPC64 Linux and AIX allocate GPRs for a vector argument
9434 even if it is going to be passed in a vector register.
9435 Darwin does the same for variable-argument functions. */
9436 if (((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
9437 && TARGET_64BIT)
9438 || (cum->stdarg && DEFAULT_ABI != ABI_V4))
9439 stack = true;
9441 else
9442 stack = true;
9444 if (stack)
9446 int align;
9448 /* Vector parameters must be 16-byte aligned. In 32-bit
9449 mode this means we need to take into account the offset
9450 to the parameter save area. In 64-bit mode, they just
9451 have to start on an even word, since the parameter save
9452 area is 16-byte aligned. */
9453 if (TARGET_32BIT)
9454 align = -(rs6000_parm_offset () + cum->words) & 3;
9455 else
9456 align = cum->words & 1;
9457 cum->words += align + rs6000_arg_size (mode, type);
9459 if (TARGET_DEBUG_ARG)
9461 fprintf (stderr, "function_adv: words = %2d, align=%d, ",
9462 cum->words, align);
9463 fprintf (stderr, "nargs = %4d, proto = %d, mode = %4s\n",
9464 cum->nargs_prototype, cum->prototype,
9465 GET_MODE_NAME (mode));
9469 else if (TARGET_SPE_ABI && TARGET_SPE && SPE_VECTOR_MODE (mode)
9470 && !cum->stdarg
9471 && cum->sysv_gregno <= GP_ARG_MAX_REG)
9472 cum->sysv_gregno++;
9474 else if (TARGET_MACHO && rs6000_darwin64_struct_check_p (mode, type))
9476 int size = int_size_in_bytes (type);
9477 /* Variable sized types have size == -1 and are
9478 treated as if consisting entirely of ints.
9479 Pad to 16 byte boundary if needed. */
9480 if (TYPE_ALIGN (type) >= 2 * BITS_PER_WORD
9481 && (cum->words % 2) != 0)
9482 cum->words++;
9483 /* For varargs, we can just go up by the size of the struct. */
9484 if (!named)
9485 cum->words += (size + 7) / 8;
9486 else
9488 /* It is tempting to say int register count just goes up by
9489 sizeof(type)/8, but this is wrong in a case such as
9490 { int; double; int; } [powerpc alignment]. We have to
9491 grovel through the fields for these too. */
9492 cum->intoffset = 0;
9493 cum->floats_in_gpr = 0;
9494 rs6000_darwin64_record_arg_advance_recurse (cum, type, 0);
9495 rs6000_darwin64_record_arg_advance_flush (cum,
9496 size * BITS_PER_UNIT, 1);
9498 if (TARGET_DEBUG_ARG)
9500 fprintf (stderr, "function_adv: words = %2d, align=%d, size=%d",
9501 cum->words, TYPE_ALIGN (type), size);
9502 fprintf (stderr,
9503 "nargs = %4d, proto = %d, mode = %4s (darwin64 abi)\n",
9504 cum->nargs_prototype, cum->prototype,
9505 GET_MODE_NAME (mode));
9508 else if (DEFAULT_ABI == ABI_V4)
9510 if (TARGET_HARD_FLOAT && TARGET_FPRS
9511 && ((TARGET_SINGLE_FLOAT && mode == SFmode)
9512 || (TARGET_DOUBLE_FLOAT && mode == DFmode)
9513 || (mode == TFmode && !TARGET_IEEEQUAD)
9514 || mode == SDmode || mode == DDmode || mode == TDmode))
9516 /* _Decimal128 must use an even/odd register pair. This assumes
9517 that the register number is odd when fregno is odd. */
9518 if (mode == TDmode && (cum->fregno % 2) == 1)
9519 cum->fregno++;
9521 if (cum->fregno + (mode == TFmode || mode == TDmode ? 1 : 0)
9522 <= FP_ARG_V4_MAX_REG)
9523 cum->fregno += (GET_MODE_SIZE (mode) + 7) >> 3;
9524 else
9526 cum->fregno = FP_ARG_V4_MAX_REG + 1;
9527 if (mode == DFmode || mode == TFmode
9528 || mode == DDmode || mode == TDmode)
9529 cum->words += cum->words & 1;
9530 cum->words += rs6000_arg_size (mode, type);
9533 else
9535 int n_words = rs6000_arg_size (mode, type);
9536 int gregno = cum->sysv_gregno;
9538 /* Long long and SPE vectors are put in (r3,r4), (r5,r6),
9539 (r7,r8) or (r9,r10). As does any other 2 word item such
9540 as complex int due to a historical mistake. */
9541 if (n_words == 2)
9542 gregno += (1 - gregno) & 1;
9544 /* Multi-reg args are not split between registers and stack. */
9545 if (gregno + n_words - 1 > GP_ARG_MAX_REG)
9547 /* Long long and SPE vectors are aligned on the stack.
9548 So are other 2 word items such as complex int due to
9549 a historical mistake. */
9550 if (n_words == 2)
9551 cum->words += cum->words & 1;
9552 cum->words += n_words;
9555 /* Note: continuing to accumulate gregno past when we've started
9556 spilling to the stack indicates the fact that we've started
9557 spilling to the stack to expand_builtin_saveregs. */
9558 cum->sysv_gregno = gregno + n_words;
9561 if (TARGET_DEBUG_ARG)
9563 fprintf (stderr, "function_adv: words = %2d, fregno = %2d, ",
9564 cum->words, cum->fregno);
9565 fprintf (stderr, "gregno = %2d, nargs = %4d, proto = %d, ",
9566 cum->sysv_gregno, cum->nargs_prototype, cum->prototype);
9567 fprintf (stderr, "mode = %4s, named = %d\n",
9568 GET_MODE_NAME (mode), named);
9571 else
9573 int n_words = rs6000_arg_size (mode, type);
9574 int start_words = cum->words;
9575 int align_words = rs6000_parm_start (mode, type, start_words);
9577 cum->words = align_words + n_words;
9579 if (SCALAR_FLOAT_MODE_P (elt_mode)
9580 && TARGET_HARD_FLOAT && TARGET_FPRS)
9582 /* _Decimal128 must be passed in an even/odd float register pair.
9583 This assumes that the register number is odd when fregno is
9584 odd. */
9585 if (elt_mode == TDmode && (cum->fregno % 2) == 1)
9586 cum->fregno++;
9587 cum->fregno += n_elts * ((GET_MODE_SIZE (elt_mode) + 7) >> 3);
9590 if (TARGET_DEBUG_ARG)
9592 fprintf (stderr, "function_adv: words = %2d, fregno = %2d, ",
9593 cum->words, cum->fregno);
9594 fprintf (stderr, "nargs = %4d, proto = %d, mode = %4s, ",
9595 cum->nargs_prototype, cum->prototype, GET_MODE_NAME (mode));
9596 fprintf (stderr, "named = %d, align = %d, depth = %d\n",
9597 named, align_words - start_words, depth);
9602 static void
9603 rs6000_function_arg_advance (cumulative_args_t cum, enum machine_mode mode,
9604 const_tree type, bool named)
9606 rs6000_function_arg_advance_1 (get_cumulative_args (cum), mode, type, named,
9610 static rtx
9611 spe_build_register_parallel (enum machine_mode mode, int gregno)
9613 rtx r1, r3, r5, r7;
9615 switch (mode)
9617 case DFmode:
9618 r1 = gen_rtx_REG (DImode, gregno);
9619 r1 = gen_rtx_EXPR_LIST (VOIDmode, r1, const0_rtx);
9620 return gen_rtx_PARALLEL (mode, gen_rtvec (1, r1));
9622 case DCmode:
9623 case TFmode:
9624 r1 = gen_rtx_REG (DImode, gregno);
9625 r1 = gen_rtx_EXPR_LIST (VOIDmode, r1, const0_rtx);
9626 r3 = gen_rtx_REG (DImode, gregno + 2);
9627 r3 = gen_rtx_EXPR_LIST (VOIDmode, r3, GEN_INT (8));
9628 return gen_rtx_PARALLEL (mode, gen_rtvec (2, r1, r3));
9630 case TCmode:
9631 r1 = gen_rtx_REG (DImode, gregno);
9632 r1 = gen_rtx_EXPR_LIST (VOIDmode, r1, const0_rtx);
9633 r3 = gen_rtx_REG (DImode, gregno + 2);
9634 r3 = gen_rtx_EXPR_LIST (VOIDmode, r3, GEN_INT (8));
9635 r5 = gen_rtx_REG (DImode, gregno + 4);
9636 r5 = gen_rtx_EXPR_LIST (VOIDmode, r5, GEN_INT (16));
9637 r7 = gen_rtx_REG (DImode, gregno + 6);
9638 r7 = gen_rtx_EXPR_LIST (VOIDmode, r7, GEN_INT (24));
9639 return gen_rtx_PARALLEL (mode, gen_rtvec (4, r1, r3, r5, r7));
9641 default:
9642 gcc_unreachable ();
9646 /* Determine where to put a SIMD argument on the SPE. */
9647 static rtx
9648 rs6000_spe_function_arg (const CUMULATIVE_ARGS *cum, enum machine_mode mode,
9649 const_tree type)
9651 int gregno = cum->sysv_gregno;
9653 /* On E500 v2, double arithmetic is done on the full 64-bit GPR, but
9654 are passed and returned in a pair of GPRs for ABI compatibility. */
9655 if (TARGET_E500_DOUBLE && (mode == DFmode || mode == TFmode
9656 || mode == DCmode || mode == TCmode))
9658 int n_words = rs6000_arg_size (mode, type);
9660 /* Doubles go in an odd/even register pair (r5/r6, etc). */
9661 if (mode == DFmode)
9662 gregno += (1 - gregno) & 1;
9664 /* Multi-reg args are not split between registers and stack. */
9665 if (gregno + n_words - 1 > GP_ARG_MAX_REG)
9666 return NULL_RTX;
9668 return spe_build_register_parallel (mode, gregno);
9670 if (cum->stdarg)
9672 int n_words = rs6000_arg_size (mode, type);
9674 /* SPE vectors are put in odd registers. */
9675 if (n_words == 2 && (gregno & 1) == 0)
9676 gregno += 1;
9678 if (gregno + n_words - 1 <= GP_ARG_MAX_REG)
9680 rtx r1, r2;
9681 enum machine_mode m = SImode;
9683 r1 = gen_rtx_REG (m, gregno);
9684 r1 = gen_rtx_EXPR_LIST (m, r1, const0_rtx);
9685 r2 = gen_rtx_REG (m, gregno + 1);
9686 r2 = gen_rtx_EXPR_LIST (m, r2, GEN_INT (4));
9687 return gen_rtx_PARALLEL (mode, gen_rtvec (2, r1, r2));
9689 else
9690 return NULL_RTX;
9692 else
9694 if (gregno <= GP_ARG_MAX_REG)
9695 return gen_rtx_REG (mode, gregno);
9696 else
9697 return NULL_RTX;
9701 /* A subroutine of rs6000_darwin64_record_arg. Assign the bits of the
9702 structure between cum->intoffset and bitpos to integer registers. */
9704 static void
9705 rs6000_darwin64_record_arg_flush (CUMULATIVE_ARGS *cum,
9706 HOST_WIDE_INT bitpos, rtx rvec[], int *k)
9708 enum machine_mode mode;
9709 unsigned int regno;
9710 unsigned int startbit, endbit;
9711 int this_regno, intregs, intoffset;
9712 rtx reg;
9714 if (cum->intoffset == -1)
9715 return;
9717 intoffset = cum->intoffset;
9718 cum->intoffset = -1;
9720 /* If this is the trailing part of a word, try to only load that
9721 much into the register. Otherwise load the whole register. Note
9722 that in the latter case we may pick up unwanted bits. It's not a
9723 problem at the moment but may wish to revisit. */
9725 if (intoffset % BITS_PER_WORD != 0)
9727 mode = mode_for_size (BITS_PER_WORD - intoffset % BITS_PER_WORD,
9728 MODE_INT, 0);
9729 if (mode == BLKmode)
9731 /* We couldn't find an appropriate mode, which happens,
9732 e.g., in packed structs when there are 3 bytes to load.
9733 Back intoffset back to the beginning of the word in this
9734 case. */
9735 intoffset = intoffset & -BITS_PER_WORD;
9736 mode = word_mode;
9739 else
9740 mode = word_mode;
9742 startbit = intoffset & -BITS_PER_WORD;
9743 endbit = (bitpos + BITS_PER_WORD - 1) & -BITS_PER_WORD;
9744 intregs = (endbit - startbit) / BITS_PER_WORD;
9745 this_regno = cum->words + intoffset / BITS_PER_WORD;
9747 if (intregs > 0 && intregs > GP_ARG_NUM_REG - this_regno)
9748 cum->use_stack = 1;
9750 intregs = MIN (intregs, GP_ARG_NUM_REG - this_regno);
9751 if (intregs <= 0)
9752 return;
9754 intoffset /= BITS_PER_UNIT;
9757 regno = GP_ARG_MIN_REG + this_regno;
9758 reg = gen_rtx_REG (mode, regno);
9759 rvec[(*k)++] =
9760 gen_rtx_EXPR_LIST (VOIDmode, reg, GEN_INT (intoffset));
9762 this_regno += 1;
9763 intoffset = (intoffset | (UNITS_PER_WORD-1)) + 1;
9764 mode = word_mode;
9765 intregs -= 1;
9767 while (intregs > 0);
9770 /* Recursive workhorse for the following. */
9772 static void
9773 rs6000_darwin64_record_arg_recurse (CUMULATIVE_ARGS *cum, const_tree type,
9774 HOST_WIDE_INT startbitpos, rtx rvec[],
9775 int *k)
9777 tree f;
9779 for (f = TYPE_FIELDS (type); f ; f = DECL_CHAIN (f))
9780 if (TREE_CODE (f) == FIELD_DECL)
9782 HOST_WIDE_INT bitpos = startbitpos;
9783 tree ftype = TREE_TYPE (f);
9784 enum machine_mode mode;
9785 if (ftype == error_mark_node)
9786 continue;
9787 mode = TYPE_MODE (ftype);
9789 if (DECL_SIZE (f) != 0
9790 && tree_fits_uhwi_p (bit_position (f)))
9791 bitpos += int_bit_position (f);
9793 /* ??? FIXME: else assume zero offset. */
9795 if (TREE_CODE (ftype) == RECORD_TYPE)
9796 rs6000_darwin64_record_arg_recurse (cum, ftype, bitpos, rvec, k);
9797 else if (cum->named && USE_FP_FOR_ARG_P (cum, mode))
9799 unsigned n_fpreg = (GET_MODE_SIZE (mode) + 7) >> 3;
9800 #if 0
9801 switch (mode)
9803 case SCmode: mode = SFmode; break;
9804 case DCmode: mode = DFmode; break;
9805 case TCmode: mode = TFmode; break;
9806 default: break;
9808 #endif
9809 rs6000_darwin64_record_arg_flush (cum, bitpos, rvec, k);
9810 if (cum->fregno + n_fpreg > FP_ARG_MAX_REG + 1)
9812 gcc_assert (cum->fregno == FP_ARG_MAX_REG
9813 && (mode == TFmode || mode == TDmode));
9814 /* Long double or _Decimal128 split over regs and memory. */
9815 mode = DECIMAL_FLOAT_MODE_P (mode) ? DDmode : DFmode;
9816 cum->use_stack=1;
9818 rvec[(*k)++]
9819 = gen_rtx_EXPR_LIST (VOIDmode,
9820 gen_rtx_REG (mode, cum->fregno++),
9821 GEN_INT (bitpos / BITS_PER_UNIT));
9822 if (mode == TFmode || mode == TDmode)
9823 cum->fregno++;
9825 else if (cum->named && USE_ALTIVEC_FOR_ARG_P (cum, mode, 1))
9827 rs6000_darwin64_record_arg_flush (cum, bitpos, rvec, k);
9828 rvec[(*k)++]
9829 = gen_rtx_EXPR_LIST (VOIDmode,
9830 gen_rtx_REG (mode, cum->vregno++),
9831 GEN_INT (bitpos / BITS_PER_UNIT));
9833 else if (cum->intoffset == -1)
9834 cum->intoffset = bitpos;
9838 /* For the darwin64 ABI, we want to construct a PARALLEL consisting of
9839 the register(s) to be used for each field and subfield of a struct
9840 being passed by value, along with the offset of where the
9841 register's value may be found in the block. FP fields go in FP
9842 register, vector fields go in vector registers, and everything
9843 else goes in int registers, packed as in memory.
9845 This code is also used for function return values. RETVAL indicates
9846 whether this is the case.
9848 Much of this is taken from the SPARC V9 port, which has a similar
9849 calling convention. */
9851 static rtx
9852 rs6000_darwin64_record_arg (CUMULATIVE_ARGS *orig_cum, const_tree type,
9853 bool named, bool retval)
9855 rtx rvec[FIRST_PSEUDO_REGISTER];
9856 int k = 1, kbase = 1;
9857 HOST_WIDE_INT typesize = int_size_in_bytes (type);
9858 /* This is a copy; modifications are not visible to our caller. */
9859 CUMULATIVE_ARGS copy_cum = *orig_cum;
9860 CUMULATIVE_ARGS *cum = &copy_cum;
9862 /* Pad to 16 byte boundary if needed. */
9863 if (!retval && TYPE_ALIGN (type) >= 2 * BITS_PER_WORD
9864 && (cum->words % 2) != 0)
9865 cum->words++;
9867 cum->intoffset = 0;
9868 cum->use_stack = 0;
9869 cum->named = named;
9871 /* Put entries into rvec[] for individual FP and vector fields, and
9872 for the chunks of memory that go in int regs. Note we start at
9873 element 1; 0 is reserved for an indication of using memory, and
9874 may or may not be filled in below. */
9875 rs6000_darwin64_record_arg_recurse (cum, type, /* startbit pos= */ 0, rvec, &k);
9876 rs6000_darwin64_record_arg_flush (cum, typesize * BITS_PER_UNIT, rvec, &k);
9878 /* If any part of the struct went on the stack put all of it there.
9879 This hack is because the generic code for
9880 FUNCTION_ARG_PARTIAL_NREGS cannot handle cases where the register
9881 parts of the struct are not at the beginning. */
9882 if (cum->use_stack)
9884 if (retval)
9885 return NULL_RTX; /* doesn't go in registers at all */
9886 kbase = 0;
9887 rvec[0] = gen_rtx_EXPR_LIST (VOIDmode, NULL_RTX, const0_rtx);
9889 if (k > 1 || cum->use_stack)
9890 return gen_rtx_PARALLEL (BLKmode, gen_rtvec_v (k - kbase, &rvec[kbase]));
9891 else
9892 return NULL_RTX;
9895 /* Determine where to place an argument in 64-bit mode with 32-bit ABI. */
9897 static rtx
9898 rs6000_mixed_function_arg (enum machine_mode mode, const_tree type,
9899 int align_words)
9901 int n_units;
9902 int i, k;
9903 rtx rvec[GP_ARG_NUM_REG + 1];
9905 if (align_words >= GP_ARG_NUM_REG)
9906 return NULL_RTX;
9908 n_units = rs6000_arg_size (mode, type);
9910 /* Optimize the simple case where the arg fits in one gpr, except in
9911 the case of BLKmode due to assign_parms assuming that registers are
9912 BITS_PER_WORD wide. */
9913 if (n_units == 0
9914 || (n_units == 1 && mode != BLKmode))
9915 return gen_rtx_REG (mode, GP_ARG_MIN_REG + align_words);
9917 k = 0;
9918 if (align_words + n_units > GP_ARG_NUM_REG)
9919 /* Not all of the arg fits in gprs. Say that it goes in memory too,
9920 using a magic NULL_RTX component.
9921 This is not strictly correct. Only some of the arg belongs in
9922 memory, not all of it. However, the normal scheme using
9923 function_arg_partial_nregs can result in unusual subregs, eg.
9924 (subreg:SI (reg:DF) 4), which are not handled well. The code to
9925 store the whole arg to memory is often more efficient than code
9926 to store pieces, and we know that space is available in the right
9927 place for the whole arg. */
9928 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, NULL_RTX, const0_rtx);
9930 i = 0;
9933 rtx r = gen_rtx_REG (SImode, GP_ARG_MIN_REG + align_words);
9934 rtx off = GEN_INT (i++ * 4);
9935 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, r, off);
9937 while (++align_words < GP_ARG_NUM_REG && --n_units != 0);
9939 return gen_rtx_PARALLEL (mode, gen_rtvec_v (k, rvec));
9942 /* We have an argument of MODE and TYPE that goes into FPRs or VRs,
9943 but must also be copied into the parameter save area starting at
9944 offset ALIGN_WORDS. Fill in RVEC with the elements corresponding
9945 to the GPRs and/or memory. Return the number of elements used. */
9947 static int
9948 rs6000_psave_function_arg (enum machine_mode mode, const_tree type,
9949 int align_words, rtx *rvec)
9951 int k = 0;
9953 if (align_words < GP_ARG_NUM_REG)
9955 int n_words = rs6000_arg_size (mode, type);
9957 if (align_words + n_words > GP_ARG_NUM_REG
9958 || mode == BLKmode
9959 || (TARGET_32BIT && TARGET_POWERPC64))
9961 /* If this is partially on the stack, then we only
9962 include the portion actually in registers here. */
9963 enum machine_mode rmode = TARGET_32BIT ? SImode : DImode;
9964 int i = 0;
9966 if (align_words + n_words > GP_ARG_NUM_REG)
9968 /* Not all of the arg fits in gprs. Say that it goes in memory
9969 too, using a magic NULL_RTX component. Also see comment in
9970 rs6000_mixed_function_arg for why the normal
9971 function_arg_partial_nregs scheme doesn't work in this case. */
9972 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, NULL_RTX, const0_rtx);
9977 rtx r = gen_rtx_REG (rmode, GP_ARG_MIN_REG + align_words);
9978 rtx off = GEN_INT (i++ * GET_MODE_SIZE (rmode));
9979 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, r, off);
9981 while (++align_words < GP_ARG_NUM_REG && --n_words != 0);
9983 else
9985 /* The whole arg fits in gprs. */
9986 rtx r = gen_rtx_REG (mode, GP_ARG_MIN_REG + align_words);
9987 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, r, const0_rtx);
9990 else
9992 /* It's entirely in memory. */
9993 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, NULL_RTX, const0_rtx);
9996 return k;
9999 /* RVEC is a vector of K components of an argument of mode MODE.
10000 Construct the final function_arg return value from it. */
10002 static rtx
10003 rs6000_finish_function_arg (enum machine_mode mode, rtx *rvec, int k)
10005 gcc_assert (k >= 1);
10007 /* Avoid returning a PARALLEL in the trivial cases. */
10008 if (k == 1)
10010 if (XEXP (rvec[0], 0) == NULL_RTX)
10011 return NULL_RTX;
10013 if (GET_MODE (XEXP (rvec[0], 0)) == mode)
10014 return XEXP (rvec[0], 0);
10017 return gen_rtx_PARALLEL (mode, gen_rtvec_v (k, rvec));
10020 /* Determine where to put an argument to a function.
10021 Value is zero to push the argument on the stack,
10022 or a hard register in which to store the argument.
10024 MODE is the argument's machine mode.
10025 TYPE is the data type of the argument (as a tree).
10026 This is null for libcalls where that information may
10027 not be available.
10028 CUM is a variable of type CUMULATIVE_ARGS which gives info about
10029 the preceding args and about the function being called. It is
10030 not modified in this routine.
10031 NAMED is nonzero if this argument is a named parameter
10032 (otherwise it is an extra parameter matching an ellipsis).
10034 On RS/6000 the first eight words of non-FP are normally in registers
10035 and the rest are pushed. Under AIX, the first 13 FP args are in registers.
10036 Under V.4, the first 8 FP args are in registers.
10038 If this is floating-point and no prototype is specified, we use
10039 both an FP and integer register (or possibly FP reg and stack). Library
10040 functions (when CALL_LIBCALL is set) always have the proper types for args,
10041 so we can pass the FP value just in one register. emit_library_function
10042 doesn't support PARALLEL anyway.
10044 Note that for args passed by reference, function_arg will be called
10045 with MODE and TYPE set to that of the pointer to the arg, not the arg
10046 itself. */
10048 static rtx
10049 rs6000_function_arg (cumulative_args_t cum_v, enum machine_mode mode,
10050 const_tree type, bool named)
10052 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
10053 enum rs6000_abi abi = DEFAULT_ABI;
10054 enum machine_mode elt_mode;
10055 int n_elts;
10057 /* Return a marker to indicate whether CR1 needs to set or clear the
10058 bit that V.4 uses to say fp args were passed in registers.
10059 Assume that we don't need the marker for software floating point,
10060 or compiler generated library calls. */
10061 if (mode == VOIDmode)
10063 if (abi == ABI_V4
10064 && (cum->call_cookie & CALL_LIBCALL) == 0
10065 && (cum->stdarg
10066 || (cum->nargs_prototype < 0
10067 && (cum->prototype || TARGET_NO_PROTOTYPE))))
10069 /* For the SPE, we need to crxor CR6 always. */
10070 if (TARGET_SPE_ABI)
10071 return GEN_INT (cum->call_cookie | CALL_V4_SET_FP_ARGS);
10072 else if (TARGET_HARD_FLOAT && TARGET_FPRS)
10073 return GEN_INT (cum->call_cookie
10074 | ((cum->fregno == FP_ARG_MIN_REG)
10075 ? CALL_V4_SET_FP_ARGS
10076 : CALL_V4_CLEAR_FP_ARGS));
10079 return GEN_INT (cum->call_cookie & ~CALL_LIBCALL);
10082 rs6000_discover_homogeneous_aggregate (mode, type, &elt_mode, &n_elts);
10084 if (TARGET_MACHO && rs6000_darwin64_struct_check_p (mode, type))
10086 rtx rslt = rs6000_darwin64_record_arg (cum, type, named, /*retval= */false);
10087 if (rslt != NULL_RTX)
10088 return rslt;
10089 /* Else fall through to usual handling. */
10092 if (USE_ALTIVEC_FOR_ARG_P (cum, elt_mode, named))
10094 rtx rvec[GP_ARG_NUM_REG + AGGR_ARG_NUM_REG + 1];
10095 rtx r, off;
10096 int i, k = 0;
10098 /* Do we also need to pass this argument in the parameter
10099 save area? */
10100 if (TARGET_64BIT && ! cum->prototype)
10102 int align_words = (cum->words + 1) & ~1;
10103 k = rs6000_psave_function_arg (mode, type, align_words, rvec);
10106 /* Describe where this argument goes in the vector registers. */
10107 for (i = 0; i < n_elts && cum->vregno + i <= ALTIVEC_ARG_MAX_REG; i++)
10109 r = gen_rtx_REG (elt_mode, cum->vregno + i);
10110 off = GEN_INT (i * GET_MODE_SIZE (elt_mode));
10111 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, r, off);
10114 return rs6000_finish_function_arg (mode, rvec, k);
10116 else if (TARGET_ALTIVEC_ABI
10117 && (ALTIVEC_OR_VSX_VECTOR_MODE (mode)
10118 || (type && TREE_CODE (type) == VECTOR_TYPE
10119 && int_size_in_bytes (type) == 16)))
10121 if (named || abi == ABI_V4)
10122 return NULL_RTX;
10123 else
10125 /* Vector parameters to varargs functions under AIX or Darwin
10126 get passed in memory and possibly also in GPRs. */
10127 int align, align_words, n_words;
10128 enum machine_mode part_mode;
10130 /* Vector parameters must be 16-byte aligned. In 32-bit
10131 mode this means we need to take into account the offset
10132 to the parameter save area. In 64-bit mode, they just
10133 have to start on an even word, since the parameter save
10134 area is 16-byte aligned. */
10135 if (TARGET_32BIT)
10136 align = -(rs6000_parm_offset () + cum->words) & 3;
10137 else
10138 align = cum->words & 1;
10139 align_words = cum->words + align;
10141 /* Out of registers? Memory, then. */
10142 if (align_words >= GP_ARG_NUM_REG)
10143 return NULL_RTX;
10145 if (TARGET_32BIT && TARGET_POWERPC64)
10146 return rs6000_mixed_function_arg (mode, type, align_words);
10148 /* The vector value goes in GPRs. Only the part of the
10149 value in GPRs is reported here. */
10150 part_mode = mode;
10151 n_words = rs6000_arg_size (mode, type);
10152 if (align_words + n_words > GP_ARG_NUM_REG)
10153 /* Fortunately, there are only two possibilities, the value
10154 is either wholly in GPRs or half in GPRs and half not. */
10155 part_mode = DImode;
10157 return gen_rtx_REG (part_mode, GP_ARG_MIN_REG + align_words);
10160 else if (TARGET_SPE_ABI && TARGET_SPE
10161 && (SPE_VECTOR_MODE (mode)
10162 || (TARGET_E500_DOUBLE && (mode == DFmode
10163 || mode == DCmode
10164 || mode == TFmode
10165 || mode == TCmode))))
10166 return rs6000_spe_function_arg (cum, mode, type);
10168 else if (abi == ABI_V4)
10170 if (TARGET_HARD_FLOAT && TARGET_FPRS
10171 && ((TARGET_SINGLE_FLOAT && mode == SFmode)
10172 || (TARGET_DOUBLE_FLOAT && mode == DFmode)
10173 || (mode == TFmode && !TARGET_IEEEQUAD)
10174 || mode == SDmode || mode == DDmode || mode == TDmode))
10176 /* _Decimal128 must use an even/odd register pair. This assumes
10177 that the register number is odd when fregno is odd. */
10178 if (mode == TDmode && (cum->fregno % 2) == 1)
10179 cum->fregno++;
10181 if (cum->fregno + (mode == TFmode || mode == TDmode ? 1 : 0)
10182 <= FP_ARG_V4_MAX_REG)
10183 return gen_rtx_REG (mode, cum->fregno);
10184 else
10185 return NULL_RTX;
10187 else
10189 int n_words = rs6000_arg_size (mode, type);
10190 int gregno = cum->sysv_gregno;
10192 /* Long long and SPE vectors are put in (r3,r4), (r5,r6),
10193 (r7,r8) or (r9,r10). As does any other 2 word item such
10194 as complex int due to a historical mistake. */
10195 if (n_words == 2)
10196 gregno += (1 - gregno) & 1;
10198 /* Multi-reg args are not split between registers and stack. */
10199 if (gregno + n_words - 1 > GP_ARG_MAX_REG)
10200 return NULL_RTX;
10202 if (TARGET_32BIT && TARGET_POWERPC64)
10203 return rs6000_mixed_function_arg (mode, type,
10204 gregno - GP_ARG_MIN_REG);
10205 return gen_rtx_REG (mode, gregno);
10208 else
10210 int align_words = rs6000_parm_start (mode, type, cum->words);
10212 /* _Decimal128 must be passed in an even/odd float register pair.
10213 This assumes that the register number is odd when fregno is odd. */
10214 if (elt_mode == TDmode && (cum->fregno % 2) == 1)
10215 cum->fregno++;
10217 if (USE_FP_FOR_ARG_P (cum, elt_mode))
10219 rtx rvec[GP_ARG_NUM_REG + AGGR_ARG_NUM_REG + 1];
10220 rtx r, off;
10221 int i, k = 0;
10222 unsigned long n_fpreg = (GET_MODE_SIZE (elt_mode) + 7) >> 3;
10224 /* Do we also need to pass this argument in the parameter
10225 save area? */
10226 if (type && (cum->nargs_prototype <= 0
10227 || ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
10228 && TARGET_XL_COMPAT
10229 && align_words >= GP_ARG_NUM_REG)))
10230 k = rs6000_psave_function_arg (mode, type, align_words, rvec);
10232 /* Describe where this argument goes in the fprs. */
10233 for (i = 0; i < n_elts
10234 && cum->fregno + i * n_fpreg <= FP_ARG_MAX_REG; i++)
10236 /* Check if the argument is split over registers and memory.
10237 This can only ever happen for long double or _Decimal128;
10238 complex types are handled via split_complex_arg. */
10239 enum machine_mode fmode = elt_mode;
10240 if (cum->fregno + (i + 1) * n_fpreg > FP_ARG_MAX_REG + 1)
10242 gcc_assert (fmode == TFmode || fmode == TDmode);
10243 fmode = DECIMAL_FLOAT_MODE_P (fmode) ? DDmode : DFmode;
10246 r = gen_rtx_REG (fmode, cum->fregno + i * n_fpreg);
10247 off = GEN_INT (i * GET_MODE_SIZE (elt_mode));
10248 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, r, off);
10251 return rs6000_finish_function_arg (mode, rvec, k);
10253 else if (align_words < GP_ARG_NUM_REG)
10255 if (TARGET_32BIT && TARGET_POWERPC64)
10256 return rs6000_mixed_function_arg (mode, type, align_words);
10258 return gen_rtx_REG (mode, GP_ARG_MIN_REG + align_words);
10260 else
10261 return NULL_RTX;
10265 /* For an arg passed partly in registers and partly in memory, this is
10266 the number of bytes passed in registers. For args passed entirely in
10267 registers or entirely in memory, zero. When an arg is described by a
10268 PARALLEL, perhaps using more than one register type, this function
10269 returns the number of bytes used by the first element of the PARALLEL. */
10271 static int
10272 rs6000_arg_partial_bytes (cumulative_args_t cum_v, enum machine_mode mode,
10273 tree type, bool named)
10275 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
10276 bool passed_in_gprs = true;
10277 int ret = 0;
10278 int align_words;
10279 enum machine_mode elt_mode;
10280 int n_elts;
10282 rs6000_discover_homogeneous_aggregate (mode, type, &elt_mode, &n_elts);
10284 if (DEFAULT_ABI == ABI_V4)
10285 return 0;
10287 if (USE_ALTIVEC_FOR_ARG_P (cum, elt_mode, named))
10289 /* If we are passing this arg in the fixed parameter save area
10290 (gprs or memory) as well as VRs, we do not use the partial
10291 bytes mechanism; instead, rs6000_function_arg will return a
10292 PARALLEL including a memory element as necessary. */
10293 if (TARGET_64BIT && ! cum->prototype)
10294 return 0;
10296 /* Otherwise, we pass in VRs only. Check for partial copies. */
10297 passed_in_gprs = false;
10298 if (cum->vregno + n_elts > ALTIVEC_ARG_MAX_REG + 1)
10299 ret = (ALTIVEC_ARG_MAX_REG + 1 - cum->vregno) * 16;
10302 /* In this complicated case we just disable the partial_nregs code. */
10303 if (TARGET_MACHO && rs6000_darwin64_struct_check_p (mode, type))
10304 return 0;
10306 align_words = rs6000_parm_start (mode, type, cum->words);
10308 if (USE_FP_FOR_ARG_P (cum, elt_mode))
10310 unsigned long n_fpreg = (GET_MODE_SIZE (elt_mode) + 7) >> 3;
10312 /* If we are passing this arg in the fixed parameter save area
10313 (gprs or memory) as well as FPRs, we do not use the partial
10314 bytes mechanism; instead, rs6000_function_arg will return a
10315 PARALLEL including a memory element as necessary. */
10316 if (type
10317 && (cum->nargs_prototype <= 0
10318 || ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
10319 && TARGET_XL_COMPAT
10320 && align_words >= GP_ARG_NUM_REG)))
10321 return 0;
10323 /* Otherwise, we pass in FPRs only. Check for partial copies. */
10324 passed_in_gprs = false;
10325 if (cum->fregno + n_elts * n_fpreg > FP_ARG_MAX_REG + 1)
10326 ret = ((FP_ARG_MAX_REG + 1 - cum->fregno)
10327 * MIN (8, GET_MODE_SIZE (elt_mode)));
10330 if (passed_in_gprs
10331 && align_words < GP_ARG_NUM_REG
10332 && GP_ARG_NUM_REG < align_words + rs6000_arg_size (mode, type))
10333 ret = (GP_ARG_NUM_REG - align_words) * (TARGET_32BIT ? 4 : 8);
10335 if (ret != 0 && TARGET_DEBUG_ARG)
10336 fprintf (stderr, "rs6000_arg_partial_bytes: %d\n", ret);
10338 return ret;
10341 /* A C expression that indicates when an argument must be passed by
10342 reference. If nonzero for an argument, a copy of that argument is
10343 made in memory and a pointer to the argument is passed instead of
10344 the argument itself. The pointer is passed in whatever way is
10345 appropriate for passing a pointer to that type.
10347 Under V.4, aggregates and long double are passed by reference.
10349 As an extension to all 32-bit ABIs, AltiVec vectors are passed by
10350 reference unless the AltiVec vector extension ABI is in force.
10352 As an extension to all ABIs, variable sized types are passed by
10353 reference. */
10355 static bool
10356 rs6000_pass_by_reference (cumulative_args_t cum ATTRIBUTE_UNUSED,
10357 enum machine_mode mode, const_tree type,
10358 bool named ATTRIBUTE_UNUSED)
10360 if (DEFAULT_ABI == ABI_V4 && TARGET_IEEEQUAD && mode == TFmode)
10362 if (TARGET_DEBUG_ARG)
10363 fprintf (stderr, "function_arg_pass_by_reference: V4 long double\n");
10364 return 1;
10367 if (!type)
10368 return 0;
10370 if (DEFAULT_ABI == ABI_V4 && AGGREGATE_TYPE_P (type))
10372 if (TARGET_DEBUG_ARG)
10373 fprintf (stderr, "function_arg_pass_by_reference: V4 aggregate\n");
10374 return 1;
10377 if (int_size_in_bytes (type) < 0)
10379 if (TARGET_DEBUG_ARG)
10380 fprintf (stderr, "function_arg_pass_by_reference: variable size\n");
10381 return 1;
10384 /* Allow -maltivec -mabi=no-altivec without warning. Altivec vector
10385 modes only exist for GCC vector types if -maltivec. */
10386 if (TARGET_32BIT && !TARGET_ALTIVEC_ABI && ALTIVEC_VECTOR_MODE (mode))
10388 if (TARGET_DEBUG_ARG)
10389 fprintf (stderr, "function_arg_pass_by_reference: AltiVec\n");
10390 return 1;
10393 /* Pass synthetic vectors in memory. */
10394 if (TREE_CODE (type) == VECTOR_TYPE
10395 && int_size_in_bytes (type) > (TARGET_ALTIVEC_ABI ? 16 : 8))
10397 static bool warned_for_pass_big_vectors = false;
10398 if (TARGET_DEBUG_ARG)
10399 fprintf (stderr, "function_arg_pass_by_reference: synthetic vector\n");
10400 if (!warned_for_pass_big_vectors)
10402 warning (0, "GCC vector passed by reference: "
10403 "non-standard ABI extension with no compatibility guarantee");
10404 warned_for_pass_big_vectors = true;
10406 return 1;
10409 return 0;
10412 /* Process parameter of type TYPE after ARGS_SO_FAR parameters were
10413 already processes. Return true if the parameter must be passed
10414 (fully or partially) on the stack. */
10416 static bool
10417 rs6000_parm_needs_stack (cumulative_args_t args_so_far, tree type)
10419 enum machine_mode mode;
10420 int unsignedp;
10421 rtx entry_parm;
10423 /* Catch errors. */
10424 if (type == NULL || type == error_mark_node)
10425 return true;
10427 /* Handle types with no storage requirement. */
10428 if (TYPE_MODE (type) == VOIDmode)
10429 return false;
10431 /* Handle complex types. */
10432 if (TREE_CODE (type) == COMPLEX_TYPE)
10433 return (rs6000_parm_needs_stack (args_so_far, TREE_TYPE (type))
10434 || rs6000_parm_needs_stack (args_so_far, TREE_TYPE (type)));
10436 /* Handle transparent aggregates. */
10437 if ((TREE_CODE (type) == UNION_TYPE || TREE_CODE (type) == RECORD_TYPE)
10438 && TYPE_TRANSPARENT_AGGR (type))
10439 type = TREE_TYPE (first_field (type));
10441 /* See if this arg was passed by invisible reference. */
10442 if (pass_by_reference (get_cumulative_args (args_so_far),
10443 TYPE_MODE (type), type, true))
10444 type = build_pointer_type (type);
10446 /* Find mode as it is passed by the ABI. */
10447 unsignedp = TYPE_UNSIGNED (type);
10448 mode = promote_mode (type, TYPE_MODE (type), &unsignedp);
10450 /* If we must pass in stack, we need a stack. */
10451 if (rs6000_must_pass_in_stack (mode, type))
10452 return true;
10454 /* If there is no incoming register, we need a stack. */
10455 entry_parm = rs6000_function_arg (args_so_far, mode, type, true);
10456 if (entry_parm == NULL)
10457 return true;
10459 /* Likewise if we need to pass both in registers and on the stack. */
10460 if (GET_CODE (entry_parm) == PARALLEL
10461 && XEXP (XVECEXP (entry_parm, 0, 0), 0) == NULL_RTX)
10462 return true;
10464 /* Also true if we're partially in registers and partially not. */
10465 if (rs6000_arg_partial_bytes (args_so_far, mode, type, true) != 0)
10466 return true;
10468 /* Update info on where next arg arrives in registers. */
10469 rs6000_function_arg_advance (args_so_far, mode, type, true);
10470 return false;
10473 /* Return true if FUN has no prototype, has a variable argument
10474 list, or passes any parameter in memory. */
10476 static bool
10477 rs6000_function_parms_need_stack (tree fun)
10479 function_args_iterator args_iter;
10480 tree arg_type;
10481 CUMULATIVE_ARGS args_so_far_v;
10482 cumulative_args_t args_so_far;
10484 if (!fun)
10485 /* Must be a libcall, all of which only use reg parms. */
10486 return false;
10487 if (!TYPE_P (fun))
10488 fun = TREE_TYPE (fun);
10490 /* Varargs functions need the parameter save area. */
10491 if (!prototype_p (fun) || stdarg_p (fun))
10492 return true;
10494 INIT_CUMULATIVE_INCOMING_ARGS (args_so_far_v, fun, NULL_RTX);
10495 args_so_far = pack_cumulative_args (&args_so_far_v);
10497 if (aggregate_value_p (TREE_TYPE (fun), fun))
10499 tree type = build_pointer_type (TREE_TYPE (fun));
10500 rs6000_parm_needs_stack (args_so_far, type);
10503 FOREACH_FUNCTION_ARGS (fun, arg_type, args_iter)
10504 if (rs6000_parm_needs_stack (args_so_far, arg_type))
10505 return true;
10507 return false;
10510 /* Return the size of the REG_PARM_STACK_SPACE are for FUN. This is
10511 usually a constant depending on the ABI. However, in the ELFv2 ABI
10512 the register parameter area is optional when calling a function that
10513 has a prototype is scope, has no variable argument list, and passes
10514 all parameters in registers. */
10517 rs6000_reg_parm_stack_space (tree fun)
10519 int reg_parm_stack_space;
10521 switch (DEFAULT_ABI)
10523 default:
10524 reg_parm_stack_space = 0;
10525 break;
10527 case ABI_AIX:
10528 case ABI_DARWIN:
10529 reg_parm_stack_space = TARGET_64BIT ? 64 : 32;
10530 break;
10532 case ABI_ELFv2:
10533 /* ??? Recomputing this every time is a bit expensive. Is there
10534 a place to cache this information? */
10535 if (rs6000_function_parms_need_stack (fun))
10536 reg_parm_stack_space = TARGET_64BIT ? 64 : 32;
10537 else
10538 reg_parm_stack_space = 0;
10539 break;
10542 return reg_parm_stack_space;
10545 static void
10546 rs6000_move_block_from_reg (int regno, rtx x, int nregs)
10548 int i;
10549 enum machine_mode reg_mode = TARGET_32BIT ? SImode : DImode;
10551 if (nregs == 0)
10552 return;
10554 for (i = 0; i < nregs; i++)
10556 rtx tem = adjust_address_nv (x, reg_mode, i * GET_MODE_SIZE (reg_mode));
10557 if (reload_completed)
10559 if (! strict_memory_address_p (reg_mode, XEXP (tem, 0)))
10560 tem = NULL_RTX;
10561 else
10562 tem = simplify_gen_subreg (reg_mode, x, BLKmode,
10563 i * GET_MODE_SIZE (reg_mode));
10565 else
10566 tem = replace_equiv_address (tem, XEXP (tem, 0));
10568 gcc_assert (tem);
10570 emit_move_insn (tem, gen_rtx_REG (reg_mode, regno + i));
10574 /* Perform any needed actions needed for a function that is receiving a
10575 variable number of arguments.
10577 CUM is as above.
10579 MODE and TYPE are the mode and type of the current parameter.
10581 PRETEND_SIZE is a variable that should be set to the amount of stack
10582 that must be pushed by the prolog to pretend that our caller pushed
10585 Normally, this macro will push all remaining incoming registers on the
10586 stack and set PRETEND_SIZE to the length of the registers pushed. */
10588 static void
10589 setup_incoming_varargs (cumulative_args_t cum, enum machine_mode mode,
10590 tree type, int *pretend_size ATTRIBUTE_UNUSED,
10591 int no_rtl)
10593 CUMULATIVE_ARGS next_cum;
10594 int reg_size = TARGET_32BIT ? 4 : 8;
10595 rtx save_area = NULL_RTX, mem;
10596 int first_reg_offset;
10597 alias_set_type set;
10599 /* Skip the last named argument. */
10600 next_cum = *get_cumulative_args (cum);
10601 rs6000_function_arg_advance_1 (&next_cum, mode, type, true, 0);
10603 if (DEFAULT_ABI == ABI_V4)
10605 first_reg_offset = next_cum.sysv_gregno - GP_ARG_MIN_REG;
10607 if (! no_rtl)
10609 int gpr_reg_num = 0, gpr_size = 0, fpr_size = 0;
10610 HOST_WIDE_INT offset = 0;
10612 /* Try to optimize the size of the varargs save area.
10613 The ABI requires that ap.reg_save_area is doubleword
10614 aligned, but we don't need to allocate space for all
10615 the bytes, only those to which we actually will save
10616 anything. */
10617 if (cfun->va_list_gpr_size && first_reg_offset < GP_ARG_NUM_REG)
10618 gpr_reg_num = GP_ARG_NUM_REG - first_reg_offset;
10619 if (TARGET_HARD_FLOAT && TARGET_FPRS
10620 && next_cum.fregno <= FP_ARG_V4_MAX_REG
10621 && cfun->va_list_fpr_size)
10623 if (gpr_reg_num)
10624 fpr_size = (next_cum.fregno - FP_ARG_MIN_REG)
10625 * UNITS_PER_FP_WORD;
10626 if (cfun->va_list_fpr_size
10627 < FP_ARG_V4_MAX_REG + 1 - next_cum.fregno)
10628 fpr_size += cfun->va_list_fpr_size * UNITS_PER_FP_WORD;
10629 else
10630 fpr_size += (FP_ARG_V4_MAX_REG + 1 - next_cum.fregno)
10631 * UNITS_PER_FP_WORD;
10633 if (gpr_reg_num)
10635 offset = -((first_reg_offset * reg_size) & ~7);
10636 if (!fpr_size && gpr_reg_num > cfun->va_list_gpr_size)
10638 gpr_reg_num = cfun->va_list_gpr_size;
10639 if (reg_size == 4 && (first_reg_offset & 1))
10640 gpr_reg_num++;
10642 gpr_size = (gpr_reg_num * reg_size + 7) & ~7;
10644 else if (fpr_size)
10645 offset = - (int) (next_cum.fregno - FP_ARG_MIN_REG)
10646 * UNITS_PER_FP_WORD
10647 - (int) (GP_ARG_NUM_REG * reg_size);
10649 if (gpr_size + fpr_size)
10651 rtx reg_save_area
10652 = assign_stack_local (BLKmode, gpr_size + fpr_size, 64);
10653 gcc_assert (GET_CODE (reg_save_area) == MEM);
10654 reg_save_area = XEXP (reg_save_area, 0);
10655 if (GET_CODE (reg_save_area) == PLUS)
10657 gcc_assert (XEXP (reg_save_area, 0)
10658 == virtual_stack_vars_rtx);
10659 gcc_assert (GET_CODE (XEXP (reg_save_area, 1)) == CONST_INT);
10660 offset += INTVAL (XEXP (reg_save_area, 1));
10662 else
10663 gcc_assert (reg_save_area == virtual_stack_vars_rtx);
10666 cfun->machine->varargs_save_offset = offset;
10667 save_area = plus_constant (Pmode, virtual_stack_vars_rtx, offset);
10670 else
10672 first_reg_offset = next_cum.words;
10673 save_area = virtual_incoming_args_rtx;
10675 if (targetm.calls.must_pass_in_stack (mode, type))
10676 first_reg_offset += rs6000_arg_size (TYPE_MODE (type), type);
10679 set = get_varargs_alias_set ();
10680 if (! no_rtl && first_reg_offset < GP_ARG_NUM_REG
10681 && cfun->va_list_gpr_size)
10683 int n_gpr, nregs = GP_ARG_NUM_REG - first_reg_offset;
10685 if (va_list_gpr_counter_field)
10686 /* V4 va_list_gpr_size counts number of registers needed. */
10687 n_gpr = cfun->va_list_gpr_size;
10688 else
10689 /* char * va_list instead counts number of bytes needed. */
10690 n_gpr = (cfun->va_list_gpr_size + reg_size - 1) / reg_size;
10692 if (nregs > n_gpr)
10693 nregs = n_gpr;
10695 mem = gen_rtx_MEM (BLKmode,
10696 plus_constant (Pmode, save_area,
10697 first_reg_offset * reg_size));
10698 MEM_NOTRAP_P (mem) = 1;
10699 set_mem_alias_set (mem, set);
10700 set_mem_align (mem, BITS_PER_WORD);
10702 rs6000_move_block_from_reg (GP_ARG_MIN_REG + first_reg_offset, mem,
10703 nregs);
10706 /* Save FP registers if needed. */
10707 if (DEFAULT_ABI == ABI_V4
10708 && TARGET_HARD_FLOAT && TARGET_FPRS
10709 && ! no_rtl
10710 && next_cum.fregno <= FP_ARG_V4_MAX_REG
10711 && cfun->va_list_fpr_size)
10713 int fregno = next_cum.fregno, nregs;
10714 rtx cr1 = gen_rtx_REG (CCmode, CR1_REGNO);
10715 rtx lab = gen_label_rtx ();
10716 int off = (GP_ARG_NUM_REG * reg_size) + ((fregno - FP_ARG_MIN_REG)
10717 * UNITS_PER_FP_WORD);
10719 emit_jump_insn
10720 (gen_rtx_SET (VOIDmode,
10721 pc_rtx,
10722 gen_rtx_IF_THEN_ELSE (VOIDmode,
10723 gen_rtx_NE (VOIDmode, cr1,
10724 const0_rtx),
10725 gen_rtx_LABEL_REF (VOIDmode, lab),
10726 pc_rtx)));
10728 for (nregs = 0;
10729 fregno <= FP_ARG_V4_MAX_REG && nregs < cfun->va_list_fpr_size;
10730 fregno++, off += UNITS_PER_FP_WORD, nregs++)
10732 mem = gen_rtx_MEM ((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
10733 ? DFmode : SFmode,
10734 plus_constant (Pmode, save_area, off));
10735 MEM_NOTRAP_P (mem) = 1;
10736 set_mem_alias_set (mem, set);
10737 set_mem_align (mem, GET_MODE_ALIGNMENT (
10738 (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
10739 ? DFmode : SFmode));
10740 emit_move_insn (mem, gen_rtx_REG (
10741 (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
10742 ? DFmode : SFmode, fregno));
10745 emit_label (lab);
10749 /* Create the va_list data type. */
10751 static tree
10752 rs6000_build_builtin_va_list (void)
10754 tree f_gpr, f_fpr, f_res, f_ovf, f_sav, record, type_decl;
10756 /* For AIX, prefer 'char *' because that's what the system
10757 header files like. */
10758 if (DEFAULT_ABI != ABI_V4)
10759 return build_pointer_type (char_type_node);
10761 record = (*lang_hooks.types.make_type) (RECORD_TYPE);
10762 type_decl = build_decl (BUILTINS_LOCATION, TYPE_DECL,
10763 get_identifier ("__va_list_tag"), record);
10765 f_gpr = build_decl (BUILTINS_LOCATION, FIELD_DECL, get_identifier ("gpr"),
10766 unsigned_char_type_node);
10767 f_fpr = build_decl (BUILTINS_LOCATION, FIELD_DECL, get_identifier ("fpr"),
10768 unsigned_char_type_node);
10769 /* Give the two bytes of padding a name, so that -Wpadded won't warn on
10770 every user file. */
10771 f_res = build_decl (BUILTINS_LOCATION, FIELD_DECL,
10772 get_identifier ("reserved"), short_unsigned_type_node);
10773 f_ovf = build_decl (BUILTINS_LOCATION, FIELD_DECL,
10774 get_identifier ("overflow_arg_area"),
10775 ptr_type_node);
10776 f_sav = build_decl (BUILTINS_LOCATION, FIELD_DECL,
10777 get_identifier ("reg_save_area"),
10778 ptr_type_node);
10780 va_list_gpr_counter_field = f_gpr;
10781 va_list_fpr_counter_field = f_fpr;
10783 DECL_FIELD_CONTEXT (f_gpr) = record;
10784 DECL_FIELD_CONTEXT (f_fpr) = record;
10785 DECL_FIELD_CONTEXT (f_res) = record;
10786 DECL_FIELD_CONTEXT (f_ovf) = record;
10787 DECL_FIELD_CONTEXT (f_sav) = record;
10789 TYPE_STUB_DECL (record) = type_decl;
10790 TYPE_NAME (record) = type_decl;
10791 TYPE_FIELDS (record) = f_gpr;
10792 DECL_CHAIN (f_gpr) = f_fpr;
10793 DECL_CHAIN (f_fpr) = f_res;
10794 DECL_CHAIN (f_res) = f_ovf;
10795 DECL_CHAIN (f_ovf) = f_sav;
10797 layout_type (record);
10799 /* The correct type is an array type of one element. */
10800 return build_array_type (record, build_index_type (size_zero_node));
10803 /* Implement va_start. */
10805 static void
10806 rs6000_va_start (tree valist, rtx nextarg)
10808 HOST_WIDE_INT words, n_gpr, n_fpr;
10809 tree f_gpr, f_fpr, f_res, f_ovf, f_sav;
10810 tree gpr, fpr, ovf, sav, t;
10812 /* Only SVR4 needs something special. */
10813 if (DEFAULT_ABI != ABI_V4)
10815 std_expand_builtin_va_start (valist, nextarg);
10816 return;
10819 f_gpr = TYPE_FIELDS (TREE_TYPE (va_list_type_node));
10820 f_fpr = DECL_CHAIN (f_gpr);
10821 f_res = DECL_CHAIN (f_fpr);
10822 f_ovf = DECL_CHAIN (f_res);
10823 f_sav = DECL_CHAIN (f_ovf);
10825 valist = build_simple_mem_ref (valist);
10826 gpr = build3 (COMPONENT_REF, TREE_TYPE (f_gpr), valist, f_gpr, NULL_TREE);
10827 fpr = build3 (COMPONENT_REF, TREE_TYPE (f_fpr), unshare_expr (valist),
10828 f_fpr, NULL_TREE);
10829 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), unshare_expr (valist),
10830 f_ovf, NULL_TREE);
10831 sav = build3 (COMPONENT_REF, TREE_TYPE (f_sav), unshare_expr (valist),
10832 f_sav, NULL_TREE);
10834 /* Count number of gp and fp argument registers used. */
10835 words = crtl->args.info.words;
10836 n_gpr = MIN (crtl->args.info.sysv_gregno - GP_ARG_MIN_REG,
10837 GP_ARG_NUM_REG);
10838 n_fpr = MIN (crtl->args.info.fregno - FP_ARG_MIN_REG,
10839 FP_ARG_NUM_REG);
10841 if (TARGET_DEBUG_ARG)
10842 fprintf (stderr, "va_start: words = "HOST_WIDE_INT_PRINT_DEC", n_gpr = "
10843 HOST_WIDE_INT_PRINT_DEC", n_fpr = "HOST_WIDE_INT_PRINT_DEC"\n",
10844 words, n_gpr, n_fpr);
10846 if (cfun->va_list_gpr_size)
10848 t = build2 (MODIFY_EXPR, TREE_TYPE (gpr), gpr,
10849 build_int_cst (NULL_TREE, n_gpr));
10850 TREE_SIDE_EFFECTS (t) = 1;
10851 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
10854 if (cfun->va_list_fpr_size)
10856 t = build2 (MODIFY_EXPR, TREE_TYPE (fpr), fpr,
10857 build_int_cst (NULL_TREE, n_fpr));
10858 TREE_SIDE_EFFECTS (t) = 1;
10859 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
10861 #ifdef HAVE_AS_GNU_ATTRIBUTE
10862 if (call_ABI_of_interest (cfun->decl))
10863 rs6000_passes_float = true;
10864 #endif
10867 /* Find the overflow area. */
10868 t = make_tree (TREE_TYPE (ovf), virtual_incoming_args_rtx);
10869 if (words != 0)
10870 t = fold_build_pointer_plus_hwi (t, words * UNITS_PER_WORD);
10871 t = build2 (MODIFY_EXPR, TREE_TYPE (ovf), ovf, t);
10872 TREE_SIDE_EFFECTS (t) = 1;
10873 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
10875 /* If there were no va_arg invocations, don't set up the register
10876 save area. */
10877 if (!cfun->va_list_gpr_size
10878 && !cfun->va_list_fpr_size
10879 && n_gpr < GP_ARG_NUM_REG
10880 && n_fpr < FP_ARG_V4_MAX_REG)
10881 return;
10883 /* Find the register save area. */
10884 t = make_tree (TREE_TYPE (sav), virtual_stack_vars_rtx);
10885 if (cfun->machine->varargs_save_offset)
10886 t = fold_build_pointer_plus_hwi (t, cfun->machine->varargs_save_offset);
10887 t = build2 (MODIFY_EXPR, TREE_TYPE (sav), sav, t);
10888 TREE_SIDE_EFFECTS (t) = 1;
10889 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
10892 /* Implement va_arg. */
10894 static tree
10895 rs6000_gimplify_va_arg (tree valist, tree type, gimple_seq *pre_p,
10896 gimple_seq *post_p)
10898 tree f_gpr, f_fpr, f_res, f_ovf, f_sav;
10899 tree gpr, fpr, ovf, sav, reg, t, u;
10900 int size, rsize, n_reg, sav_ofs, sav_scale;
10901 tree lab_false, lab_over, addr;
10902 int align;
10903 tree ptrtype = build_pointer_type_for_mode (type, ptr_mode, true);
10904 int regalign = 0;
10905 gimple stmt;
10907 if (pass_by_reference (NULL, TYPE_MODE (type), type, false))
10909 t = rs6000_gimplify_va_arg (valist, ptrtype, pre_p, post_p);
10910 return build_va_arg_indirect_ref (t);
10913 /* We need to deal with the fact that the darwin ppc64 ABI is defined by an
10914 earlier version of gcc, with the property that it always applied alignment
10915 adjustments to the va-args (even for zero-sized types). The cheapest way
10916 to deal with this is to replicate the effect of the part of
10917 std_gimplify_va_arg_expr that carries out the align adjust, for the case
10918 of relevance.
10919 We don't need to check for pass-by-reference because of the test above.
10920 We can return a simplifed answer, since we know there's no offset to add. */
10922 if (((TARGET_MACHO
10923 && rs6000_darwin64_abi)
10924 || DEFAULT_ABI == ABI_ELFv2
10925 || (DEFAULT_ABI == ABI_AIX && !rs6000_compat_align_parm))
10926 && integer_zerop (TYPE_SIZE (type)))
10928 unsigned HOST_WIDE_INT align, boundary;
10929 tree valist_tmp = get_initialized_tmp_var (valist, pre_p, NULL);
10930 align = PARM_BOUNDARY / BITS_PER_UNIT;
10931 boundary = rs6000_function_arg_boundary (TYPE_MODE (type), type);
10932 if (boundary > MAX_SUPPORTED_STACK_ALIGNMENT)
10933 boundary = MAX_SUPPORTED_STACK_ALIGNMENT;
10934 boundary /= BITS_PER_UNIT;
10935 if (boundary > align)
10937 tree t ;
10938 /* This updates arg ptr by the amount that would be necessary
10939 to align the zero-sized (but not zero-alignment) item. */
10940 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist_tmp,
10941 fold_build_pointer_plus_hwi (valist_tmp, boundary - 1));
10942 gimplify_and_add (t, pre_p);
10944 t = fold_convert (sizetype, valist_tmp);
10945 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist_tmp,
10946 fold_convert (TREE_TYPE (valist),
10947 fold_build2 (BIT_AND_EXPR, sizetype, t,
10948 size_int (-boundary))));
10949 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist, t);
10950 gimplify_and_add (t, pre_p);
10952 /* Since it is zero-sized there's no increment for the item itself. */
10953 valist_tmp = fold_convert (build_pointer_type (type), valist_tmp);
10954 return build_va_arg_indirect_ref (valist_tmp);
10957 if (DEFAULT_ABI != ABI_V4)
10959 if (targetm.calls.split_complex_arg && TREE_CODE (type) == COMPLEX_TYPE)
10961 tree elem_type = TREE_TYPE (type);
10962 enum machine_mode elem_mode = TYPE_MODE (elem_type);
10963 int elem_size = GET_MODE_SIZE (elem_mode);
10965 if (elem_size < UNITS_PER_WORD)
10967 tree real_part, imag_part;
10968 gimple_seq post = NULL;
10970 real_part = rs6000_gimplify_va_arg (valist, elem_type, pre_p,
10971 &post);
10972 /* Copy the value into a temporary, lest the formal temporary
10973 be reused out from under us. */
10974 real_part = get_initialized_tmp_var (real_part, pre_p, &post);
10975 gimple_seq_add_seq (pre_p, post);
10977 imag_part = rs6000_gimplify_va_arg (valist, elem_type, pre_p,
10978 post_p);
10980 return build2 (COMPLEX_EXPR, type, real_part, imag_part);
10984 return std_gimplify_va_arg_expr (valist, type, pre_p, post_p);
10987 f_gpr = TYPE_FIELDS (TREE_TYPE (va_list_type_node));
10988 f_fpr = DECL_CHAIN (f_gpr);
10989 f_res = DECL_CHAIN (f_fpr);
10990 f_ovf = DECL_CHAIN (f_res);
10991 f_sav = DECL_CHAIN (f_ovf);
10993 valist = build_va_arg_indirect_ref (valist);
10994 gpr = build3 (COMPONENT_REF, TREE_TYPE (f_gpr), valist, f_gpr, NULL_TREE);
10995 fpr = build3 (COMPONENT_REF, TREE_TYPE (f_fpr), unshare_expr (valist),
10996 f_fpr, NULL_TREE);
10997 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), unshare_expr (valist),
10998 f_ovf, NULL_TREE);
10999 sav = build3 (COMPONENT_REF, TREE_TYPE (f_sav), unshare_expr (valist),
11000 f_sav, NULL_TREE);
11002 size = int_size_in_bytes (type);
11003 rsize = (size + 3) / 4;
11004 align = 1;
11006 if (TARGET_HARD_FLOAT && TARGET_FPRS
11007 && ((TARGET_SINGLE_FLOAT && TYPE_MODE (type) == SFmode)
11008 || (TARGET_DOUBLE_FLOAT
11009 && (TYPE_MODE (type) == DFmode
11010 || TYPE_MODE (type) == TFmode
11011 || TYPE_MODE (type) == SDmode
11012 || TYPE_MODE (type) == DDmode
11013 || TYPE_MODE (type) == TDmode))))
11015 /* FP args go in FP registers, if present. */
11016 reg = fpr;
11017 n_reg = (size + 7) / 8;
11018 sav_ofs = ((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT) ? 8 : 4) * 4;
11019 sav_scale = ((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT) ? 8 : 4);
11020 if (TYPE_MODE (type) != SFmode && TYPE_MODE (type) != SDmode)
11021 align = 8;
11023 else
11025 /* Otherwise into GP registers. */
11026 reg = gpr;
11027 n_reg = rsize;
11028 sav_ofs = 0;
11029 sav_scale = 4;
11030 if (n_reg == 2)
11031 align = 8;
11034 /* Pull the value out of the saved registers.... */
11036 lab_over = NULL;
11037 addr = create_tmp_var (ptr_type_node, "addr");
11039 /* AltiVec vectors never go in registers when -mabi=altivec. */
11040 if (TARGET_ALTIVEC_ABI && ALTIVEC_VECTOR_MODE (TYPE_MODE (type)))
11041 align = 16;
11042 else
11044 lab_false = create_artificial_label (input_location);
11045 lab_over = create_artificial_label (input_location);
11047 /* Long long and SPE vectors are aligned in the registers.
11048 As are any other 2 gpr item such as complex int due to a
11049 historical mistake. */
11050 u = reg;
11051 if (n_reg == 2 && reg == gpr)
11053 regalign = 1;
11054 u = build2 (BIT_AND_EXPR, TREE_TYPE (reg), unshare_expr (reg),
11055 build_int_cst (TREE_TYPE (reg), n_reg - 1));
11056 u = build2 (POSTINCREMENT_EXPR, TREE_TYPE (reg),
11057 unshare_expr (reg), u);
11059 /* _Decimal128 is passed in even/odd fpr pairs; the stored
11060 reg number is 0 for f1, so we want to make it odd. */
11061 else if (reg == fpr && TYPE_MODE (type) == TDmode)
11063 t = build2 (BIT_IOR_EXPR, TREE_TYPE (reg), unshare_expr (reg),
11064 build_int_cst (TREE_TYPE (reg), 1));
11065 u = build2 (MODIFY_EXPR, void_type_node, unshare_expr (reg), t);
11068 t = fold_convert (TREE_TYPE (reg), size_int (8 - n_reg + 1));
11069 t = build2 (GE_EXPR, boolean_type_node, u, t);
11070 u = build1 (GOTO_EXPR, void_type_node, lab_false);
11071 t = build3 (COND_EXPR, void_type_node, t, u, NULL_TREE);
11072 gimplify_and_add (t, pre_p);
11074 t = sav;
11075 if (sav_ofs)
11076 t = fold_build_pointer_plus_hwi (sav, sav_ofs);
11078 u = build2 (POSTINCREMENT_EXPR, TREE_TYPE (reg), unshare_expr (reg),
11079 build_int_cst (TREE_TYPE (reg), n_reg));
11080 u = fold_convert (sizetype, u);
11081 u = build2 (MULT_EXPR, sizetype, u, size_int (sav_scale));
11082 t = fold_build_pointer_plus (t, u);
11084 /* _Decimal32 varargs are located in the second word of the 64-bit
11085 FP register for 32-bit binaries. */
11086 if (!TARGET_POWERPC64
11087 && TARGET_HARD_FLOAT && TARGET_FPRS
11088 && TYPE_MODE (type) == SDmode)
11089 t = fold_build_pointer_plus_hwi (t, size);
11091 gimplify_assign (addr, t, pre_p);
11093 gimple_seq_add_stmt (pre_p, gimple_build_goto (lab_over));
11095 stmt = gimple_build_label (lab_false);
11096 gimple_seq_add_stmt (pre_p, stmt);
11098 if ((n_reg == 2 && !regalign) || n_reg > 2)
11100 /* Ensure that we don't find any more args in regs.
11101 Alignment has taken care of for special cases. */
11102 gimplify_assign (reg, build_int_cst (TREE_TYPE (reg), 8), pre_p);
11106 /* ... otherwise out of the overflow area. */
11108 /* Care for on-stack alignment if needed. */
11109 t = ovf;
11110 if (align != 1)
11112 t = fold_build_pointer_plus_hwi (t, align - 1);
11113 t = build2 (BIT_AND_EXPR, TREE_TYPE (t), t,
11114 build_int_cst (TREE_TYPE (t), -align));
11116 gimplify_expr (&t, pre_p, NULL, is_gimple_val, fb_rvalue);
11118 gimplify_assign (unshare_expr (addr), t, pre_p);
11120 t = fold_build_pointer_plus_hwi (t, size);
11121 gimplify_assign (unshare_expr (ovf), t, pre_p);
11123 if (lab_over)
11125 stmt = gimple_build_label (lab_over);
11126 gimple_seq_add_stmt (pre_p, stmt);
11129 if (STRICT_ALIGNMENT
11130 && (TYPE_ALIGN (type)
11131 > (unsigned) BITS_PER_UNIT * (align < 4 ? 4 : align)))
11133 /* The value (of type complex double, for example) may not be
11134 aligned in memory in the saved registers, so copy via a
11135 temporary. (This is the same code as used for SPARC.) */
11136 tree tmp = create_tmp_var (type, "va_arg_tmp");
11137 tree dest_addr = build_fold_addr_expr (tmp);
11139 tree copy = build_call_expr (builtin_decl_implicit (BUILT_IN_MEMCPY),
11140 3, dest_addr, addr, size_int (rsize * 4));
11142 gimplify_and_add (copy, pre_p);
11143 addr = dest_addr;
11146 addr = fold_convert (ptrtype, addr);
11147 return build_va_arg_indirect_ref (addr);
11150 /* Builtins. */
11152 static void
11153 def_builtin (const char *name, tree type, enum rs6000_builtins code)
11155 tree t;
11156 unsigned classify = rs6000_builtin_info[(int)code].attr;
11157 const char *attr_string = "";
11159 gcc_assert (name != NULL);
11160 gcc_assert (IN_RANGE ((int)code, 0, (int)RS6000_BUILTIN_COUNT));
11162 if (rs6000_builtin_decls[(int)code])
11163 fatal_error ("internal error: builtin function %s already processed", name);
11165 rs6000_builtin_decls[(int)code] = t =
11166 add_builtin_function (name, type, (int)code, BUILT_IN_MD, NULL, NULL_TREE);
11168 /* Set any special attributes. */
11169 if ((classify & RS6000_BTC_CONST) != 0)
11171 /* const function, function only depends on the inputs. */
11172 TREE_READONLY (t) = 1;
11173 TREE_NOTHROW (t) = 1;
11174 attr_string = ", pure";
11176 else if ((classify & RS6000_BTC_PURE) != 0)
11178 /* pure function, function can read global memory, but does not set any
11179 external state. */
11180 DECL_PURE_P (t) = 1;
11181 TREE_NOTHROW (t) = 1;
11182 attr_string = ", const";
11184 else if ((classify & RS6000_BTC_FP) != 0)
11186 /* Function is a math function. If rounding mode is on, then treat the
11187 function as not reading global memory, but it can have arbitrary side
11188 effects. If it is off, then assume the function is a const function.
11189 This mimics the ATTR_MATHFN_FPROUNDING attribute in
11190 builtin-attribute.def that is used for the math functions. */
11191 TREE_NOTHROW (t) = 1;
11192 if (flag_rounding_math)
11194 DECL_PURE_P (t) = 1;
11195 DECL_IS_NOVOPS (t) = 1;
11196 attr_string = ", fp, pure";
11198 else
11200 TREE_READONLY (t) = 1;
11201 attr_string = ", fp, const";
11204 else if ((classify & RS6000_BTC_ATTR_MASK) != 0)
11205 gcc_unreachable ();
11207 if (TARGET_DEBUG_BUILTIN)
11208 fprintf (stderr, "rs6000_builtin, code = %4d, %s%s\n",
11209 (int)code, name, attr_string);
11212 /* Simple ternary operations: VECd = foo (VECa, VECb, VECc). */
11214 #undef RS6000_BUILTIN_1
11215 #undef RS6000_BUILTIN_2
11216 #undef RS6000_BUILTIN_3
11217 #undef RS6000_BUILTIN_A
11218 #undef RS6000_BUILTIN_D
11219 #undef RS6000_BUILTIN_E
11220 #undef RS6000_BUILTIN_H
11221 #undef RS6000_BUILTIN_P
11222 #undef RS6000_BUILTIN_Q
11223 #undef RS6000_BUILTIN_S
11224 #undef RS6000_BUILTIN_X
11226 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
11227 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
11228 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE) \
11229 { MASK, ICODE, NAME, ENUM },
11231 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
11232 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
11233 #define RS6000_BUILTIN_E(ENUM, NAME, MASK, ATTR, ICODE)
11234 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
11235 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
11236 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
11237 #define RS6000_BUILTIN_S(ENUM, NAME, MASK, ATTR, ICODE)
11238 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
11240 static const struct builtin_description bdesc_3arg[] =
11242 #include "rs6000-builtin.def"
11245 /* DST operations: void foo (void *, const int, const char). */
11247 #undef RS6000_BUILTIN_1
11248 #undef RS6000_BUILTIN_2
11249 #undef RS6000_BUILTIN_3
11250 #undef RS6000_BUILTIN_A
11251 #undef RS6000_BUILTIN_D
11252 #undef RS6000_BUILTIN_E
11253 #undef RS6000_BUILTIN_H
11254 #undef RS6000_BUILTIN_P
11255 #undef RS6000_BUILTIN_Q
11256 #undef RS6000_BUILTIN_S
11257 #undef RS6000_BUILTIN_X
11259 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
11260 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
11261 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
11262 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
11263 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE) \
11264 { MASK, ICODE, NAME, ENUM },
11266 #define RS6000_BUILTIN_E(ENUM, NAME, MASK, ATTR, ICODE)
11267 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
11268 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
11269 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
11270 #define RS6000_BUILTIN_S(ENUM, NAME, MASK, ATTR, ICODE)
11271 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
11273 static const struct builtin_description bdesc_dst[] =
11275 #include "rs6000-builtin.def"
11278 /* Simple binary operations: VECc = foo (VECa, VECb). */
11280 #undef RS6000_BUILTIN_1
11281 #undef RS6000_BUILTIN_2
11282 #undef RS6000_BUILTIN_3
11283 #undef RS6000_BUILTIN_A
11284 #undef RS6000_BUILTIN_D
11285 #undef RS6000_BUILTIN_E
11286 #undef RS6000_BUILTIN_H
11287 #undef RS6000_BUILTIN_P
11288 #undef RS6000_BUILTIN_Q
11289 #undef RS6000_BUILTIN_S
11290 #undef RS6000_BUILTIN_X
11292 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
11293 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE) \
11294 { MASK, ICODE, NAME, ENUM },
11296 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
11297 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
11298 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
11299 #define RS6000_BUILTIN_E(ENUM, NAME, MASK, ATTR, ICODE)
11300 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
11301 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
11302 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
11303 #define RS6000_BUILTIN_S(ENUM, NAME, MASK, ATTR, ICODE)
11304 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
11306 static const struct builtin_description bdesc_2arg[] =
11308 #include "rs6000-builtin.def"
11311 #undef RS6000_BUILTIN_1
11312 #undef RS6000_BUILTIN_2
11313 #undef RS6000_BUILTIN_3
11314 #undef RS6000_BUILTIN_A
11315 #undef RS6000_BUILTIN_D
11316 #undef RS6000_BUILTIN_E
11317 #undef RS6000_BUILTIN_H
11318 #undef RS6000_BUILTIN_P
11319 #undef RS6000_BUILTIN_Q
11320 #undef RS6000_BUILTIN_S
11321 #undef RS6000_BUILTIN_X
11323 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
11324 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
11325 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
11326 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
11327 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
11328 #define RS6000_BUILTIN_E(ENUM, NAME, MASK, ATTR, ICODE)
11329 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
11330 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE) \
11331 { MASK, ICODE, NAME, ENUM },
11333 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
11334 #define RS6000_BUILTIN_S(ENUM, NAME, MASK, ATTR, ICODE)
11335 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
11337 /* AltiVec predicates. */
11339 static const struct builtin_description bdesc_altivec_preds[] =
11341 #include "rs6000-builtin.def"
11344 /* SPE predicates. */
11345 #undef RS6000_BUILTIN_1
11346 #undef RS6000_BUILTIN_2
11347 #undef RS6000_BUILTIN_3
11348 #undef RS6000_BUILTIN_A
11349 #undef RS6000_BUILTIN_D
11350 #undef RS6000_BUILTIN_E
11351 #undef RS6000_BUILTIN_H
11352 #undef RS6000_BUILTIN_P
11353 #undef RS6000_BUILTIN_Q
11354 #undef RS6000_BUILTIN_S
11355 #undef RS6000_BUILTIN_X
11357 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
11358 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
11359 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
11360 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
11361 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
11362 #define RS6000_BUILTIN_E(ENUM, NAME, MASK, ATTR, ICODE)
11363 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
11364 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
11365 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
11366 #define RS6000_BUILTIN_S(ENUM, NAME, MASK, ATTR, ICODE) \
11367 { MASK, ICODE, NAME, ENUM },
11369 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
11371 static const struct builtin_description bdesc_spe_predicates[] =
11373 #include "rs6000-builtin.def"
11376 /* SPE evsel predicates. */
11377 #undef RS6000_BUILTIN_1
11378 #undef RS6000_BUILTIN_2
11379 #undef RS6000_BUILTIN_3
11380 #undef RS6000_BUILTIN_A
11381 #undef RS6000_BUILTIN_D
11382 #undef RS6000_BUILTIN_E
11383 #undef RS6000_BUILTIN_H
11384 #undef RS6000_BUILTIN_P
11385 #undef RS6000_BUILTIN_Q
11386 #undef RS6000_BUILTIN_S
11387 #undef RS6000_BUILTIN_X
11389 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
11390 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
11391 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
11392 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
11393 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
11394 #define RS6000_BUILTIN_E(ENUM, NAME, MASK, ATTR, ICODE) \
11395 { MASK, ICODE, NAME, ENUM },
11397 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
11398 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
11399 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
11400 #define RS6000_BUILTIN_S(ENUM, NAME, MASK, ATTR, ICODE)
11401 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
11403 static const struct builtin_description bdesc_spe_evsel[] =
11405 #include "rs6000-builtin.def"
11408 /* PAIRED predicates. */
11409 #undef RS6000_BUILTIN_1
11410 #undef RS6000_BUILTIN_2
11411 #undef RS6000_BUILTIN_3
11412 #undef RS6000_BUILTIN_A
11413 #undef RS6000_BUILTIN_D
11414 #undef RS6000_BUILTIN_E
11415 #undef RS6000_BUILTIN_H
11416 #undef RS6000_BUILTIN_P
11417 #undef RS6000_BUILTIN_Q
11418 #undef RS6000_BUILTIN_S
11419 #undef RS6000_BUILTIN_X
11421 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
11422 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
11423 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
11424 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
11425 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
11426 #define RS6000_BUILTIN_E(ENUM, NAME, MASK, ATTR, ICODE)
11427 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
11428 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
11429 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE) \
11430 { MASK, ICODE, NAME, ENUM },
11432 #define RS6000_BUILTIN_S(ENUM, NAME, MASK, ATTR, ICODE)
11433 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
11435 static const struct builtin_description bdesc_paired_preds[] =
11437 #include "rs6000-builtin.def"
11440 /* ABS* operations. */
11442 #undef RS6000_BUILTIN_1
11443 #undef RS6000_BUILTIN_2
11444 #undef RS6000_BUILTIN_3
11445 #undef RS6000_BUILTIN_A
11446 #undef RS6000_BUILTIN_D
11447 #undef RS6000_BUILTIN_E
11448 #undef RS6000_BUILTIN_H
11449 #undef RS6000_BUILTIN_P
11450 #undef RS6000_BUILTIN_Q
11451 #undef RS6000_BUILTIN_S
11452 #undef RS6000_BUILTIN_X
11454 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
11455 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
11456 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
11457 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE) \
11458 { MASK, ICODE, NAME, ENUM },
11460 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
11461 #define RS6000_BUILTIN_E(ENUM, NAME, MASK, ATTR, ICODE)
11462 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
11463 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
11464 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
11465 #define RS6000_BUILTIN_S(ENUM, NAME, MASK, ATTR, ICODE)
11466 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
11468 static const struct builtin_description bdesc_abs[] =
11470 #include "rs6000-builtin.def"
11473 /* Simple unary operations: VECb = foo (unsigned literal) or VECb =
11474 foo (VECa). */
11476 #undef RS6000_BUILTIN_1
11477 #undef RS6000_BUILTIN_2
11478 #undef RS6000_BUILTIN_3
11479 #undef RS6000_BUILTIN_A
11480 #undef RS6000_BUILTIN_D
11481 #undef RS6000_BUILTIN_E
11482 #undef RS6000_BUILTIN_H
11483 #undef RS6000_BUILTIN_P
11484 #undef RS6000_BUILTIN_Q
11485 #undef RS6000_BUILTIN_S
11486 #undef RS6000_BUILTIN_X
11488 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE) \
11489 { MASK, ICODE, NAME, ENUM },
11491 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
11492 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
11493 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
11494 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
11495 #define RS6000_BUILTIN_E(ENUM, NAME, MASK, ATTR, ICODE)
11496 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
11497 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
11498 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
11499 #define RS6000_BUILTIN_S(ENUM, NAME, MASK, ATTR, ICODE)
11500 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
11502 static const struct builtin_description bdesc_1arg[] =
11504 #include "rs6000-builtin.def"
11507 /* HTM builtins. */
11508 #undef RS6000_BUILTIN_1
11509 #undef RS6000_BUILTIN_2
11510 #undef RS6000_BUILTIN_3
11511 #undef RS6000_BUILTIN_A
11512 #undef RS6000_BUILTIN_D
11513 #undef RS6000_BUILTIN_E
11514 #undef RS6000_BUILTIN_H
11515 #undef RS6000_BUILTIN_P
11516 #undef RS6000_BUILTIN_Q
11517 #undef RS6000_BUILTIN_S
11518 #undef RS6000_BUILTIN_X
11520 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
11521 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
11522 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
11523 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
11524 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
11525 #define RS6000_BUILTIN_E(ENUM, NAME, MASK, ATTR, ICODE)
11526 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE) \
11527 { MASK, ICODE, NAME, ENUM },
11529 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
11530 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
11531 #define RS6000_BUILTIN_S(ENUM, NAME, MASK, ATTR, ICODE)
11532 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
11534 static const struct builtin_description bdesc_htm[] =
11536 #include "rs6000-builtin.def"
11539 #undef RS6000_BUILTIN_1
11540 #undef RS6000_BUILTIN_2
11541 #undef RS6000_BUILTIN_3
11542 #undef RS6000_BUILTIN_A
11543 #undef RS6000_BUILTIN_D
11544 #undef RS6000_BUILTIN_E
11545 #undef RS6000_BUILTIN_H
11546 #undef RS6000_BUILTIN_P
11547 #undef RS6000_BUILTIN_Q
11548 #undef RS6000_BUILTIN_S
11550 /* Return true if a builtin function is overloaded. */
11551 bool
11552 rs6000_overloaded_builtin_p (enum rs6000_builtins fncode)
11554 return (rs6000_builtin_info[(int)fncode].attr & RS6000_BTC_OVERLOADED) != 0;
11557 /* Expand an expression EXP that calls a builtin without arguments. */
11558 static rtx
11559 rs6000_expand_zeroop_builtin (enum insn_code icode, rtx target)
11561 rtx pat;
11562 enum machine_mode tmode = insn_data[icode].operand[0].mode;
11564 if (icode == CODE_FOR_nothing)
11565 /* Builtin not supported on this processor. */
11566 return 0;
11568 if (target == 0
11569 || GET_MODE (target) != tmode
11570 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
11571 target = gen_reg_rtx (tmode);
11573 pat = GEN_FCN (icode) (target);
11574 if (! pat)
11575 return 0;
11576 emit_insn (pat);
11578 return target;
11582 static rtx
11583 rs6000_expand_mtfsf_builtin (enum insn_code icode, tree exp)
11585 rtx pat;
11586 tree arg0 = CALL_EXPR_ARG (exp, 0);
11587 tree arg1 = CALL_EXPR_ARG (exp, 1);
11588 rtx op0 = expand_normal (arg0);
11589 rtx op1 = expand_normal (arg1);
11590 enum machine_mode mode0 = insn_data[icode].operand[0].mode;
11591 enum machine_mode mode1 = insn_data[icode].operand[1].mode;
11593 if (icode == CODE_FOR_nothing)
11594 /* Builtin not supported on this processor. */
11595 return 0;
11597 /* If we got invalid arguments bail out before generating bad rtl. */
11598 if (arg0 == error_mark_node || arg1 == error_mark_node)
11599 return const0_rtx;
11601 if (GET_CODE (op0) != CONST_INT
11602 || INTVAL (op0) > 255
11603 || INTVAL (op0) < 0)
11605 error ("argument 1 must be an 8-bit field value");
11606 return const0_rtx;
11609 if (! (*insn_data[icode].operand[0].predicate) (op0, mode0))
11610 op0 = copy_to_mode_reg (mode0, op0);
11612 if (! (*insn_data[icode].operand[1].predicate) (op1, mode1))
11613 op1 = copy_to_mode_reg (mode1, op1);
11615 pat = GEN_FCN (icode) (op0, op1);
11616 if (! pat)
11617 return const0_rtx;
11618 emit_insn (pat);
11620 return NULL_RTX;
11624 static rtx
11625 rs6000_expand_unop_builtin (enum insn_code icode, tree exp, rtx target)
11627 rtx pat;
11628 tree arg0 = CALL_EXPR_ARG (exp, 0);
11629 rtx op0 = expand_normal (arg0);
11630 enum machine_mode tmode = insn_data[icode].operand[0].mode;
11631 enum machine_mode mode0 = insn_data[icode].operand[1].mode;
11633 if (icode == CODE_FOR_nothing)
11634 /* Builtin not supported on this processor. */
11635 return 0;
11637 /* If we got invalid arguments bail out before generating bad rtl. */
11638 if (arg0 == error_mark_node)
11639 return const0_rtx;
11641 if (icode == CODE_FOR_altivec_vspltisb
11642 || icode == CODE_FOR_altivec_vspltish
11643 || icode == CODE_FOR_altivec_vspltisw
11644 || icode == CODE_FOR_spe_evsplatfi
11645 || icode == CODE_FOR_spe_evsplati)
11647 /* Only allow 5-bit *signed* literals. */
11648 if (GET_CODE (op0) != CONST_INT
11649 || INTVAL (op0) > 15
11650 || INTVAL (op0) < -16)
11652 error ("argument 1 must be a 5-bit signed literal");
11653 return const0_rtx;
11657 if (target == 0
11658 || GET_MODE (target) != tmode
11659 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
11660 target = gen_reg_rtx (tmode);
11662 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
11663 op0 = copy_to_mode_reg (mode0, op0);
11665 pat = GEN_FCN (icode) (target, op0);
11666 if (! pat)
11667 return 0;
11668 emit_insn (pat);
11670 return target;
11673 static rtx
11674 altivec_expand_abs_builtin (enum insn_code icode, tree exp, rtx target)
11676 rtx pat, scratch1, scratch2;
11677 tree arg0 = CALL_EXPR_ARG (exp, 0);
11678 rtx op0 = expand_normal (arg0);
11679 enum machine_mode tmode = insn_data[icode].operand[0].mode;
11680 enum machine_mode mode0 = insn_data[icode].operand[1].mode;
11682 /* If we have invalid arguments, bail out before generating bad rtl. */
11683 if (arg0 == error_mark_node)
11684 return const0_rtx;
11686 if (target == 0
11687 || GET_MODE (target) != tmode
11688 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
11689 target = gen_reg_rtx (tmode);
11691 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
11692 op0 = copy_to_mode_reg (mode0, op0);
11694 scratch1 = gen_reg_rtx (mode0);
11695 scratch2 = gen_reg_rtx (mode0);
11697 pat = GEN_FCN (icode) (target, op0, scratch1, scratch2);
11698 if (! pat)
11699 return 0;
11700 emit_insn (pat);
11702 return target;
11705 static rtx
11706 rs6000_expand_binop_builtin (enum insn_code icode, tree exp, rtx target)
11708 rtx pat;
11709 tree arg0 = CALL_EXPR_ARG (exp, 0);
11710 tree arg1 = CALL_EXPR_ARG (exp, 1);
11711 rtx op0 = expand_normal (arg0);
11712 rtx op1 = expand_normal (arg1);
11713 enum machine_mode tmode = insn_data[icode].operand[0].mode;
11714 enum machine_mode mode0 = insn_data[icode].operand[1].mode;
11715 enum machine_mode mode1 = insn_data[icode].operand[2].mode;
11717 if (icode == CODE_FOR_nothing)
11718 /* Builtin not supported on this processor. */
11719 return 0;
11721 /* If we got invalid arguments bail out before generating bad rtl. */
11722 if (arg0 == error_mark_node || arg1 == error_mark_node)
11723 return const0_rtx;
11725 if (icode == CODE_FOR_altivec_vcfux
11726 || icode == CODE_FOR_altivec_vcfsx
11727 || icode == CODE_FOR_altivec_vctsxs
11728 || icode == CODE_FOR_altivec_vctuxs
11729 || icode == CODE_FOR_altivec_vspltb
11730 || icode == CODE_FOR_altivec_vsplth
11731 || icode == CODE_FOR_altivec_vspltw
11732 || icode == CODE_FOR_spe_evaddiw
11733 || icode == CODE_FOR_spe_evldd
11734 || icode == CODE_FOR_spe_evldh
11735 || icode == CODE_FOR_spe_evldw
11736 || icode == CODE_FOR_spe_evlhhesplat
11737 || icode == CODE_FOR_spe_evlhhossplat
11738 || icode == CODE_FOR_spe_evlhhousplat
11739 || icode == CODE_FOR_spe_evlwhe
11740 || icode == CODE_FOR_spe_evlwhos
11741 || icode == CODE_FOR_spe_evlwhou
11742 || icode == CODE_FOR_spe_evlwhsplat
11743 || icode == CODE_FOR_spe_evlwwsplat
11744 || icode == CODE_FOR_spe_evrlwi
11745 || icode == CODE_FOR_spe_evslwi
11746 || icode == CODE_FOR_spe_evsrwis
11747 || icode == CODE_FOR_spe_evsubifw
11748 || icode == CODE_FOR_spe_evsrwiu)
11750 /* Only allow 5-bit unsigned literals. */
11751 STRIP_NOPS (arg1);
11752 if (TREE_CODE (arg1) != INTEGER_CST
11753 || TREE_INT_CST_LOW (arg1) & ~0x1f)
11755 error ("argument 2 must be a 5-bit unsigned literal");
11756 return const0_rtx;
11760 if (target == 0
11761 || GET_MODE (target) != tmode
11762 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
11763 target = gen_reg_rtx (tmode);
11765 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
11766 op0 = copy_to_mode_reg (mode0, op0);
11767 if (! (*insn_data[icode].operand[2].predicate) (op1, mode1))
11768 op1 = copy_to_mode_reg (mode1, op1);
11770 pat = GEN_FCN (icode) (target, op0, op1);
11771 if (! pat)
11772 return 0;
11773 emit_insn (pat);
11775 return target;
11778 static rtx
11779 altivec_expand_predicate_builtin (enum insn_code icode, tree exp, rtx target)
11781 rtx pat, scratch;
11782 tree cr6_form = CALL_EXPR_ARG (exp, 0);
11783 tree arg0 = CALL_EXPR_ARG (exp, 1);
11784 tree arg1 = CALL_EXPR_ARG (exp, 2);
11785 rtx op0 = expand_normal (arg0);
11786 rtx op1 = expand_normal (arg1);
11787 enum machine_mode tmode = SImode;
11788 enum machine_mode mode0 = insn_data[icode].operand[1].mode;
11789 enum machine_mode mode1 = insn_data[icode].operand[2].mode;
11790 int cr6_form_int;
11792 if (TREE_CODE (cr6_form) != INTEGER_CST)
11794 error ("argument 1 of __builtin_altivec_predicate must be a constant");
11795 return const0_rtx;
11797 else
11798 cr6_form_int = TREE_INT_CST_LOW (cr6_form);
11800 gcc_assert (mode0 == mode1);
11802 /* If we have invalid arguments, bail out before generating bad rtl. */
11803 if (arg0 == error_mark_node || arg1 == error_mark_node)
11804 return const0_rtx;
11806 if (target == 0
11807 || GET_MODE (target) != tmode
11808 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
11809 target = gen_reg_rtx (tmode);
11811 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
11812 op0 = copy_to_mode_reg (mode0, op0);
11813 if (! (*insn_data[icode].operand[2].predicate) (op1, mode1))
11814 op1 = copy_to_mode_reg (mode1, op1);
11816 scratch = gen_reg_rtx (mode0);
11818 pat = GEN_FCN (icode) (scratch, op0, op1);
11819 if (! pat)
11820 return 0;
11821 emit_insn (pat);
11823 /* The vec_any* and vec_all* predicates use the same opcodes for two
11824 different operations, but the bits in CR6 will be different
11825 depending on what information we want. So we have to play tricks
11826 with CR6 to get the right bits out.
11828 If you think this is disgusting, look at the specs for the
11829 AltiVec predicates. */
11831 switch (cr6_form_int)
11833 case 0:
11834 emit_insn (gen_cr6_test_for_zero (target));
11835 break;
11836 case 1:
11837 emit_insn (gen_cr6_test_for_zero_reverse (target));
11838 break;
11839 case 2:
11840 emit_insn (gen_cr6_test_for_lt (target));
11841 break;
11842 case 3:
11843 emit_insn (gen_cr6_test_for_lt_reverse (target));
11844 break;
11845 default:
11846 error ("argument 1 of __builtin_altivec_predicate is out of range");
11847 break;
11850 return target;
11853 static rtx
11854 paired_expand_lv_builtin (enum insn_code icode, tree exp, rtx target)
11856 rtx pat, addr;
11857 tree arg0 = CALL_EXPR_ARG (exp, 0);
11858 tree arg1 = CALL_EXPR_ARG (exp, 1);
11859 enum machine_mode tmode = insn_data[icode].operand[0].mode;
11860 enum machine_mode mode0 = Pmode;
11861 enum machine_mode mode1 = Pmode;
11862 rtx op0 = expand_normal (arg0);
11863 rtx op1 = expand_normal (arg1);
11865 if (icode == CODE_FOR_nothing)
11866 /* Builtin not supported on this processor. */
11867 return 0;
11869 /* If we got invalid arguments bail out before generating bad rtl. */
11870 if (arg0 == error_mark_node || arg1 == error_mark_node)
11871 return const0_rtx;
11873 if (target == 0
11874 || GET_MODE (target) != tmode
11875 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
11876 target = gen_reg_rtx (tmode);
11878 op1 = copy_to_mode_reg (mode1, op1);
11880 if (op0 == const0_rtx)
11882 addr = gen_rtx_MEM (tmode, op1);
11884 else
11886 op0 = copy_to_mode_reg (mode0, op0);
11887 addr = gen_rtx_MEM (tmode, gen_rtx_PLUS (Pmode, op0, op1));
11890 pat = GEN_FCN (icode) (target, addr);
11892 if (! pat)
11893 return 0;
11894 emit_insn (pat);
11896 return target;
11899 /* Return a constant vector for use as a little-endian permute control vector
11900 to reverse the order of elements of the given vector mode. */
11901 static rtx
11902 swap_selector_for_mode (enum machine_mode mode)
11904 /* These are little endian vectors, so their elements are reversed
11905 from what you would normally expect for a permute control vector. */
11906 unsigned int swap2[16] = {7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8};
11907 unsigned int swap4[16] = {3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12};
11908 unsigned int swap8[16] = {1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14};
11909 unsigned int swap16[16] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
11910 unsigned int *swaparray, i;
11911 rtx perm[16];
11913 switch (mode)
11915 case V2DFmode:
11916 case V2DImode:
11917 swaparray = swap2;
11918 break;
11919 case V4SFmode:
11920 case V4SImode:
11921 swaparray = swap4;
11922 break;
11923 case V8HImode:
11924 swaparray = swap8;
11925 break;
11926 case V16QImode:
11927 swaparray = swap16;
11928 break;
11929 default:
11930 gcc_unreachable ();
11933 for (i = 0; i < 16; ++i)
11934 perm[i] = GEN_INT (swaparray[i]);
11936 return force_reg (V16QImode, gen_rtx_CONST_VECTOR (V16QImode, gen_rtvec_v (16, perm)));
11939 /* Generate code for an "lvx", "lvxl", or "lve*x" built-in for a little endian target
11940 with -maltivec=be specified. Issue the load followed by an element-reversing
11941 permute. */
11942 void
11943 altivec_expand_lvx_be (rtx op0, rtx op1, enum machine_mode mode, unsigned unspec)
11945 rtx tmp = gen_reg_rtx (mode);
11946 rtx load = gen_rtx_SET (VOIDmode, tmp, op1);
11947 rtx lvx = gen_rtx_UNSPEC (mode, gen_rtvec (1, const0_rtx), unspec);
11948 rtx par = gen_rtx_PARALLEL (mode, gen_rtvec (2, load, lvx));
11949 rtx sel = swap_selector_for_mode (mode);
11950 rtx vperm = gen_rtx_UNSPEC (mode, gen_rtvec (3, tmp, tmp, sel), UNSPEC_VPERM);
11952 gcc_assert (REG_P (op0));
11953 emit_insn (par);
11954 emit_insn (gen_rtx_SET (VOIDmode, op0, vperm));
11957 /* Generate code for a "stvx" or "stvxl" built-in for a little endian target
11958 with -maltivec=be specified. Issue the store preceded by an element-reversing
11959 permute. */
11960 void
11961 altivec_expand_stvx_be (rtx op0, rtx op1, enum machine_mode mode, unsigned unspec)
11963 rtx tmp = gen_reg_rtx (mode);
11964 rtx store = gen_rtx_SET (VOIDmode, op0, tmp);
11965 rtx stvx = gen_rtx_UNSPEC (mode, gen_rtvec (1, const0_rtx), unspec);
11966 rtx par = gen_rtx_PARALLEL (mode, gen_rtvec (2, store, stvx));
11967 rtx sel = swap_selector_for_mode (mode);
11968 rtx vperm;
11970 gcc_assert (REG_P (op1));
11971 vperm = gen_rtx_UNSPEC (mode, gen_rtvec (3, op1, op1, sel), UNSPEC_VPERM);
11972 emit_insn (gen_rtx_SET (VOIDmode, tmp, vperm));
11973 emit_insn (par);
11976 /* Generate code for a "stve*x" built-in for a little endian target with -maltivec=be
11977 specified. Issue the store preceded by an element-reversing permute. */
11978 void
11979 altivec_expand_stvex_be (rtx op0, rtx op1, enum machine_mode mode, unsigned unspec)
11981 enum machine_mode inner_mode = GET_MODE_INNER (mode);
11982 rtx tmp = gen_reg_rtx (mode);
11983 rtx stvx = gen_rtx_UNSPEC (inner_mode, gen_rtvec (1, tmp), unspec);
11984 rtx sel = swap_selector_for_mode (mode);
11985 rtx vperm;
11987 gcc_assert (REG_P (op1));
11988 vperm = gen_rtx_UNSPEC (mode, gen_rtvec (3, op1, op1, sel), UNSPEC_VPERM);
11989 emit_insn (gen_rtx_SET (VOIDmode, tmp, vperm));
11990 emit_insn (gen_rtx_SET (VOIDmode, op0, stvx));
11993 static rtx
11994 altivec_expand_lv_builtin (enum insn_code icode, tree exp, rtx target, bool blk)
11996 rtx pat, addr;
11997 tree arg0 = CALL_EXPR_ARG (exp, 0);
11998 tree arg1 = CALL_EXPR_ARG (exp, 1);
11999 enum machine_mode tmode = insn_data[icode].operand[0].mode;
12000 enum machine_mode mode0 = Pmode;
12001 enum machine_mode mode1 = Pmode;
12002 rtx op0 = expand_normal (arg0);
12003 rtx op1 = expand_normal (arg1);
12005 if (icode == CODE_FOR_nothing)
12006 /* Builtin not supported on this processor. */
12007 return 0;
12009 /* If we got invalid arguments bail out before generating bad rtl. */
12010 if (arg0 == error_mark_node || arg1 == error_mark_node)
12011 return const0_rtx;
12013 if (target == 0
12014 || GET_MODE (target) != tmode
12015 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
12016 target = gen_reg_rtx (tmode);
12018 op1 = copy_to_mode_reg (mode1, op1);
12020 if (op0 == const0_rtx)
12022 addr = gen_rtx_MEM (blk ? BLKmode : tmode, op1);
12024 else
12026 op0 = copy_to_mode_reg (mode0, op0);
12027 addr = gen_rtx_MEM (blk ? BLKmode : tmode, gen_rtx_PLUS (Pmode, op0, op1));
12030 pat = GEN_FCN (icode) (target, addr);
12032 if (! pat)
12033 return 0;
12034 emit_insn (pat);
12036 return target;
12039 static rtx
12040 spe_expand_stv_builtin (enum insn_code icode, tree exp)
12042 tree arg0 = CALL_EXPR_ARG (exp, 0);
12043 tree arg1 = CALL_EXPR_ARG (exp, 1);
12044 tree arg2 = CALL_EXPR_ARG (exp, 2);
12045 rtx op0 = expand_normal (arg0);
12046 rtx op1 = expand_normal (arg1);
12047 rtx op2 = expand_normal (arg2);
12048 rtx pat;
12049 enum machine_mode mode0 = insn_data[icode].operand[0].mode;
12050 enum machine_mode mode1 = insn_data[icode].operand[1].mode;
12051 enum machine_mode mode2 = insn_data[icode].operand[2].mode;
12053 /* Invalid arguments. Bail before doing anything stoopid! */
12054 if (arg0 == error_mark_node
12055 || arg1 == error_mark_node
12056 || arg2 == error_mark_node)
12057 return const0_rtx;
12059 if (! (*insn_data[icode].operand[2].predicate) (op0, mode2))
12060 op0 = copy_to_mode_reg (mode2, op0);
12061 if (! (*insn_data[icode].operand[0].predicate) (op1, mode0))
12062 op1 = copy_to_mode_reg (mode0, op1);
12063 if (! (*insn_data[icode].operand[1].predicate) (op2, mode1))
12064 op2 = copy_to_mode_reg (mode1, op2);
12066 pat = GEN_FCN (icode) (op1, op2, op0);
12067 if (pat)
12068 emit_insn (pat);
12069 return NULL_RTX;
12072 static rtx
12073 paired_expand_stv_builtin (enum insn_code icode, tree exp)
12075 tree arg0 = CALL_EXPR_ARG (exp, 0);
12076 tree arg1 = CALL_EXPR_ARG (exp, 1);
12077 tree arg2 = CALL_EXPR_ARG (exp, 2);
12078 rtx op0 = expand_normal (arg0);
12079 rtx op1 = expand_normal (arg1);
12080 rtx op2 = expand_normal (arg2);
12081 rtx pat, addr;
12082 enum machine_mode tmode = insn_data[icode].operand[0].mode;
12083 enum machine_mode mode1 = Pmode;
12084 enum machine_mode mode2 = Pmode;
12086 /* Invalid arguments. Bail before doing anything stoopid! */
12087 if (arg0 == error_mark_node
12088 || arg1 == error_mark_node
12089 || arg2 == error_mark_node)
12090 return const0_rtx;
12092 if (! (*insn_data[icode].operand[1].predicate) (op0, tmode))
12093 op0 = copy_to_mode_reg (tmode, op0);
12095 op2 = copy_to_mode_reg (mode2, op2);
12097 if (op1 == const0_rtx)
12099 addr = gen_rtx_MEM (tmode, op2);
12101 else
12103 op1 = copy_to_mode_reg (mode1, op1);
12104 addr = gen_rtx_MEM (tmode, gen_rtx_PLUS (Pmode, op1, op2));
12107 pat = GEN_FCN (icode) (addr, op0);
12108 if (pat)
12109 emit_insn (pat);
12110 return NULL_RTX;
12113 static rtx
12114 altivec_expand_stv_builtin (enum insn_code icode, tree exp)
12116 tree arg0 = CALL_EXPR_ARG (exp, 0);
12117 tree arg1 = CALL_EXPR_ARG (exp, 1);
12118 tree arg2 = CALL_EXPR_ARG (exp, 2);
12119 rtx op0 = expand_normal (arg0);
12120 rtx op1 = expand_normal (arg1);
12121 rtx op2 = expand_normal (arg2);
12122 rtx pat, addr;
12123 enum machine_mode tmode = insn_data[icode].operand[0].mode;
12124 enum machine_mode smode = insn_data[icode].operand[1].mode;
12125 enum machine_mode mode1 = Pmode;
12126 enum machine_mode mode2 = Pmode;
12128 /* Invalid arguments. Bail before doing anything stoopid! */
12129 if (arg0 == error_mark_node
12130 || arg1 == error_mark_node
12131 || arg2 == error_mark_node)
12132 return const0_rtx;
12134 if (! (*insn_data[icode].operand[1].predicate) (op0, smode))
12135 op0 = copy_to_mode_reg (smode, op0);
12137 op2 = copy_to_mode_reg (mode2, op2);
12139 if (op1 == const0_rtx)
12141 addr = gen_rtx_MEM (tmode, op2);
12143 else
12145 op1 = copy_to_mode_reg (mode1, op1);
12146 addr = gen_rtx_MEM (tmode, gen_rtx_PLUS (Pmode, op1, op2));
12149 pat = GEN_FCN (icode) (addr, op0);
12150 if (pat)
12151 emit_insn (pat);
12152 return NULL_RTX;
12155 /* Return the appropriate SPR number associated with the given builtin. */
12156 static inline HOST_WIDE_INT
12157 htm_spr_num (enum rs6000_builtins code)
12159 if (code == HTM_BUILTIN_GET_TFHAR
12160 || code == HTM_BUILTIN_SET_TFHAR)
12161 return TFHAR_SPR;
12162 else if (code == HTM_BUILTIN_GET_TFIAR
12163 || code == HTM_BUILTIN_SET_TFIAR)
12164 return TFIAR_SPR;
12165 else if (code == HTM_BUILTIN_GET_TEXASR
12166 || code == HTM_BUILTIN_SET_TEXASR)
12167 return TEXASR_SPR;
12168 gcc_assert (code == HTM_BUILTIN_GET_TEXASRU
12169 || code == HTM_BUILTIN_SET_TEXASRU);
12170 return TEXASRU_SPR;
12173 /* Return the appropriate SPR regno associated with the given builtin. */
12174 static inline HOST_WIDE_INT
12175 htm_spr_regno (enum rs6000_builtins code)
12177 if (code == HTM_BUILTIN_GET_TFHAR
12178 || code == HTM_BUILTIN_SET_TFHAR)
12179 return TFHAR_REGNO;
12180 else if (code == HTM_BUILTIN_GET_TFIAR
12181 || code == HTM_BUILTIN_SET_TFIAR)
12182 return TFIAR_REGNO;
12183 gcc_assert (code == HTM_BUILTIN_GET_TEXASR
12184 || code == HTM_BUILTIN_SET_TEXASR
12185 || code == HTM_BUILTIN_GET_TEXASRU
12186 || code == HTM_BUILTIN_SET_TEXASRU);
12187 return TEXASR_REGNO;
12190 /* Return the correct ICODE value depending on whether we are
12191 setting or reading the HTM SPRs. */
12192 static inline enum insn_code
12193 rs6000_htm_spr_icode (bool nonvoid)
12195 if (nonvoid)
12196 return (TARGET_64BIT) ? CODE_FOR_htm_mfspr_di : CODE_FOR_htm_mfspr_si;
12197 else
12198 return (TARGET_64BIT) ? CODE_FOR_htm_mtspr_di : CODE_FOR_htm_mtspr_si;
12201 /* Expand the HTM builtin in EXP and store the result in TARGET.
12202 Store true in *EXPANDEDP if we found a builtin to expand. */
12203 static rtx
12204 htm_expand_builtin (tree exp, rtx target, bool * expandedp)
12206 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
12207 bool nonvoid = TREE_TYPE (TREE_TYPE (fndecl)) != void_type_node;
12208 enum rs6000_builtins fcode = (enum rs6000_builtins) DECL_FUNCTION_CODE (fndecl);
12209 const struct builtin_description *d;
12210 size_t i;
12212 *expandedp = false;
12214 /* Expand the HTM builtins. */
12215 d = bdesc_htm;
12216 for (i = 0; i < ARRAY_SIZE (bdesc_htm); i++, d++)
12217 if (d->code == fcode)
12219 rtx op[MAX_HTM_OPERANDS], pat;
12220 int nopnds = 0;
12221 tree arg;
12222 call_expr_arg_iterator iter;
12223 unsigned attr = rs6000_builtin_info[fcode].attr;
12224 enum insn_code icode = d->icode;
12226 if (attr & RS6000_BTC_SPR)
12227 icode = rs6000_htm_spr_icode (nonvoid);
12229 if (nonvoid)
12231 enum machine_mode tmode = insn_data[icode].operand[0].mode;
12232 if (!target
12233 || GET_MODE (target) != tmode
12234 || !(*insn_data[icode].operand[0].predicate) (target, tmode))
12235 target = gen_reg_rtx (tmode);
12236 op[nopnds++] = target;
12239 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
12241 const struct insn_operand_data *insn_op;
12243 if (arg == error_mark_node || nopnds >= MAX_HTM_OPERANDS)
12244 return NULL_RTX;
12246 insn_op = &insn_data[icode].operand[nopnds];
12248 op[nopnds] = expand_normal (arg);
12250 if (!(*insn_op->predicate) (op[nopnds], insn_op->mode))
12252 if (!strcmp (insn_op->constraint, "n"))
12254 int arg_num = (nonvoid) ? nopnds : nopnds + 1;
12255 if (!CONST_INT_P (op[nopnds]))
12256 error ("argument %d must be an unsigned literal", arg_num);
12257 else
12258 error ("argument %d is an unsigned literal that is "
12259 "out of range", arg_num);
12260 return const0_rtx;
12262 op[nopnds] = copy_to_mode_reg (insn_op->mode, op[nopnds]);
12265 nopnds++;
12268 /* Handle the builtins for extended mnemonics. These accept
12269 no arguments, but map to builtins that take arguments. */
12270 switch (fcode)
12272 case HTM_BUILTIN_TENDALL: /* Alias for: tend. 1 */
12273 case HTM_BUILTIN_TRESUME: /* Alias for: tsr. 1 */
12274 op[nopnds++] = GEN_INT (1);
12275 #ifdef ENABLE_CHECKING
12276 attr |= RS6000_BTC_UNARY;
12277 #endif
12278 break;
12279 case HTM_BUILTIN_TSUSPEND: /* Alias for: tsr. 0 */
12280 op[nopnds++] = GEN_INT (0);
12281 #ifdef ENABLE_CHECKING
12282 attr |= RS6000_BTC_UNARY;
12283 #endif
12284 break;
12285 default:
12286 break;
12289 /* If this builtin accesses SPRs, then pass in the appropriate
12290 SPR number and SPR regno as the last two operands. */
12291 if (attr & RS6000_BTC_SPR)
12293 op[nopnds++] = gen_rtx_CONST_INT (Pmode, htm_spr_num (fcode));
12294 op[nopnds++] = gen_rtx_REG (Pmode, htm_spr_regno (fcode));
12297 #ifdef ENABLE_CHECKING
12298 int expected_nopnds = 0;
12299 if ((attr & RS6000_BTC_TYPE_MASK) == RS6000_BTC_UNARY)
12300 expected_nopnds = 1;
12301 else if ((attr & RS6000_BTC_TYPE_MASK) == RS6000_BTC_BINARY)
12302 expected_nopnds = 2;
12303 else if ((attr & RS6000_BTC_TYPE_MASK) == RS6000_BTC_TERNARY)
12304 expected_nopnds = 3;
12305 if (!(attr & RS6000_BTC_VOID))
12306 expected_nopnds += 1;
12307 if (attr & RS6000_BTC_SPR)
12308 expected_nopnds += 2;
12310 gcc_assert (nopnds == expected_nopnds && nopnds <= MAX_HTM_OPERANDS);
12311 #endif
12313 switch (nopnds)
12315 case 1:
12316 pat = GEN_FCN (icode) (op[0]);
12317 break;
12318 case 2:
12319 pat = GEN_FCN (icode) (op[0], op[1]);
12320 break;
12321 case 3:
12322 pat = GEN_FCN (icode) (op[0], op[1], op[2]);
12323 break;
12324 case 4:
12325 pat = GEN_FCN (icode) (op[0], op[1], op[2], op[3]);
12326 break;
12327 default:
12328 gcc_unreachable ();
12330 if (!pat)
12331 return NULL_RTX;
12332 emit_insn (pat);
12334 *expandedp = true;
12335 if (nonvoid)
12336 return target;
12337 return const0_rtx;
12340 return NULL_RTX;
12343 static rtx
12344 rs6000_expand_ternop_builtin (enum insn_code icode, tree exp, rtx target)
12346 rtx pat;
12347 tree arg0 = CALL_EXPR_ARG (exp, 0);
12348 tree arg1 = CALL_EXPR_ARG (exp, 1);
12349 tree arg2 = CALL_EXPR_ARG (exp, 2);
12350 rtx op0 = expand_normal (arg0);
12351 rtx op1 = expand_normal (arg1);
12352 rtx op2 = expand_normal (arg2);
12353 enum machine_mode tmode = insn_data[icode].operand[0].mode;
12354 enum machine_mode mode0 = insn_data[icode].operand[1].mode;
12355 enum machine_mode mode1 = insn_data[icode].operand[2].mode;
12356 enum machine_mode mode2 = insn_data[icode].operand[3].mode;
12358 if (icode == CODE_FOR_nothing)
12359 /* Builtin not supported on this processor. */
12360 return 0;
12362 /* If we got invalid arguments bail out before generating bad rtl. */
12363 if (arg0 == error_mark_node
12364 || arg1 == error_mark_node
12365 || arg2 == error_mark_node)
12366 return const0_rtx;
12368 /* Check and prepare argument depending on the instruction code.
12370 Note that a switch statement instead of the sequence of tests
12371 would be incorrect as many of the CODE_FOR values could be
12372 CODE_FOR_nothing and that would yield multiple alternatives
12373 with identical values. We'd never reach here at runtime in
12374 this case. */
12375 if (icode == CODE_FOR_altivec_vsldoi_v4sf
12376 || icode == CODE_FOR_altivec_vsldoi_v4si
12377 || icode == CODE_FOR_altivec_vsldoi_v8hi
12378 || icode == CODE_FOR_altivec_vsldoi_v16qi)
12380 /* Only allow 4-bit unsigned literals. */
12381 STRIP_NOPS (arg2);
12382 if (TREE_CODE (arg2) != INTEGER_CST
12383 || TREE_INT_CST_LOW (arg2) & ~0xf)
12385 error ("argument 3 must be a 4-bit unsigned literal");
12386 return const0_rtx;
12389 else if (icode == CODE_FOR_vsx_xxpermdi_v2df
12390 || icode == CODE_FOR_vsx_xxpermdi_v2di
12391 || icode == CODE_FOR_vsx_xxsldwi_v16qi
12392 || icode == CODE_FOR_vsx_xxsldwi_v8hi
12393 || icode == CODE_FOR_vsx_xxsldwi_v4si
12394 || icode == CODE_FOR_vsx_xxsldwi_v4sf
12395 || icode == CODE_FOR_vsx_xxsldwi_v2di
12396 || icode == CODE_FOR_vsx_xxsldwi_v2df)
12398 /* Only allow 2-bit unsigned literals. */
12399 STRIP_NOPS (arg2);
12400 if (TREE_CODE (arg2) != INTEGER_CST
12401 || TREE_INT_CST_LOW (arg2) & ~0x3)
12403 error ("argument 3 must be a 2-bit unsigned literal");
12404 return const0_rtx;
12407 else if (icode == CODE_FOR_vsx_set_v2df
12408 || icode == CODE_FOR_vsx_set_v2di
12409 || icode == CODE_FOR_bcdadd
12410 || icode == CODE_FOR_bcdadd_lt
12411 || icode == CODE_FOR_bcdadd_eq
12412 || icode == CODE_FOR_bcdadd_gt
12413 || icode == CODE_FOR_bcdsub
12414 || icode == CODE_FOR_bcdsub_lt
12415 || icode == CODE_FOR_bcdsub_eq
12416 || icode == CODE_FOR_bcdsub_gt)
12418 /* Only allow 1-bit unsigned literals. */
12419 STRIP_NOPS (arg2);
12420 if (TREE_CODE (arg2) != INTEGER_CST
12421 || TREE_INT_CST_LOW (arg2) & ~0x1)
12423 error ("argument 3 must be a 1-bit unsigned literal");
12424 return const0_rtx;
12427 else if (icode == CODE_FOR_dfp_ddedpd_dd
12428 || icode == CODE_FOR_dfp_ddedpd_td)
12430 /* Only allow 2-bit unsigned literals where the value is 0 or 2. */
12431 STRIP_NOPS (arg0);
12432 if (TREE_CODE (arg0) != INTEGER_CST
12433 || TREE_INT_CST_LOW (arg2) & ~0x3)
12435 error ("argument 1 must be 0 or 2");
12436 return const0_rtx;
12439 else if (icode == CODE_FOR_dfp_denbcd_dd
12440 || icode == CODE_FOR_dfp_denbcd_td)
12442 /* Only allow 1-bit unsigned literals. */
12443 STRIP_NOPS (arg0);
12444 if (TREE_CODE (arg0) != INTEGER_CST
12445 || TREE_INT_CST_LOW (arg0) & ~0x1)
12447 error ("argument 1 must be a 1-bit unsigned literal");
12448 return const0_rtx;
12451 else if (icode == CODE_FOR_dfp_dscli_dd
12452 || icode == CODE_FOR_dfp_dscli_td
12453 || icode == CODE_FOR_dfp_dscri_dd
12454 || icode == CODE_FOR_dfp_dscri_td)
12456 /* Only allow 6-bit unsigned literals. */
12457 STRIP_NOPS (arg1);
12458 if (TREE_CODE (arg1) != INTEGER_CST
12459 || TREE_INT_CST_LOW (arg1) & ~0x3f)
12461 error ("argument 2 must be a 6-bit unsigned literal");
12462 return const0_rtx;
12465 else if (icode == CODE_FOR_crypto_vshasigmaw
12466 || icode == CODE_FOR_crypto_vshasigmad)
12468 /* Check whether the 2nd and 3rd arguments are integer constants and in
12469 range and prepare arguments. */
12470 STRIP_NOPS (arg1);
12471 if (TREE_CODE (arg1) != INTEGER_CST || wi::geu_p (arg1, 2))
12473 error ("argument 2 must be 0 or 1");
12474 return const0_rtx;
12477 STRIP_NOPS (arg2);
12478 if (TREE_CODE (arg2) != INTEGER_CST || wi::geu_p (arg1, 16))
12480 error ("argument 3 must be in the range 0..15");
12481 return const0_rtx;
12485 if (target == 0
12486 || GET_MODE (target) != tmode
12487 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
12488 target = gen_reg_rtx (tmode);
12490 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
12491 op0 = copy_to_mode_reg (mode0, op0);
12492 if (! (*insn_data[icode].operand[2].predicate) (op1, mode1))
12493 op1 = copy_to_mode_reg (mode1, op1);
12494 if (! (*insn_data[icode].operand[3].predicate) (op2, mode2))
12495 op2 = copy_to_mode_reg (mode2, op2);
12497 if (TARGET_PAIRED_FLOAT && icode == CODE_FOR_selv2sf4)
12498 pat = GEN_FCN (icode) (target, op0, op1, op2, CONST0_RTX (SFmode));
12499 else
12500 pat = GEN_FCN (icode) (target, op0, op1, op2);
12501 if (! pat)
12502 return 0;
12503 emit_insn (pat);
12505 return target;
12508 /* Expand the lvx builtins. */
12509 static rtx
12510 altivec_expand_ld_builtin (tree exp, rtx target, bool *expandedp)
12512 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
12513 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
12514 tree arg0;
12515 enum machine_mode tmode, mode0;
12516 rtx pat, op0;
12517 enum insn_code icode;
12519 switch (fcode)
12521 case ALTIVEC_BUILTIN_LD_INTERNAL_16qi:
12522 icode = CODE_FOR_vector_altivec_load_v16qi;
12523 break;
12524 case ALTIVEC_BUILTIN_LD_INTERNAL_8hi:
12525 icode = CODE_FOR_vector_altivec_load_v8hi;
12526 break;
12527 case ALTIVEC_BUILTIN_LD_INTERNAL_4si:
12528 icode = CODE_FOR_vector_altivec_load_v4si;
12529 break;
12530 case ALTIVEC_BUILTIN_LD_INTERNAL_4sf:
12531 icode = CODE_FOR_vector_altivec_load_v4sf;
12532 break;
12533 case ALTIVEC_BUILTIN_LD_INTERNAL_2df:
12534 icode = CODE_FOR_vector_altivec_load_v2df;
12535 break;
12536 case ALTIVEC_BUILTIN_LD_INTERNAL_2di:
12537 icode = CODE_FOR_vector_altivec_load_v2di;
12538 case ALTIVEC_BUILTIN_LD_INTERNAL_1ti:
12539 icode = CODE_FOR_vector_altivec_load_v1ti;
12540 break;
12541 default:
12542 *expandedp = false;
12543 return NULL_RTX;
12546 *expandedp = true;
12548 arg0 = CALL_EXPR_ARG (exp, 0);
12549 op0 = expand_normal (arg0);
12550 tmode = insn_data[icode].operand[0].mode;
12551 mode0 = insn_data[icode].operand[1].mode;
12553 if (target == 0
12554 || GET_MODE (target) != tmode
12555 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
12556 target = gen_reg_rtx (tmode);
12558 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
12559 op0 = gen_rtx_MEM (mode0, copy_to_mode_reg (Pmode, op0));
12561 pat = GEN_FCN (icode) (target, op0);
12562 if (! pat)
12563 return 0;
12564 emit_insn (pat);
12565 return target;
12568 /* Expand the stvx builtins. */
12569 static rtx
12570 altivec_expand_st_builtin (tree exp, rtx target ATTRIBUTE_UNUSED,
12571 bool *expandedp)
12573 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
12574 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
12575 tree arg0, arg1;
12576 enum machine_mode mode0, mode1;
12577 rtx pat, op0, op1;
12578 enum insn_code icode;
12580 switch (fcode)
12582 case ALTIVEC_BUILTIN_ST_INTERNAL_16qi:
12583 icode = CODE_FOR_vector_altivec_store_v16qi;
12584 break;
12585 case ALTIVEC_BUILTIN_ST_INTERNAL_8hi:
12586 icode = CODE_FOR_vector_altivec_store_v8hi;
12587 break;
12588 case ALTIVEC_BUILTIN_ST_INTERNAL_4si:
12589 icode = CODE_FOR_vector_altivec_store_v4si;
12590 break;
12591 case ALTIVEC_BUILTIN_ST_INTERNAL_4sf:
12592 icode = CODE_FOR_vector_altivec_store_v4sf;
12593 break;
12594 case ALTIVEC_BUILTIN_ST_INTERNAL_2df:
12595 icode = CODE_FOR_vector_altivec_store_v2df;
12596 break;
12597 case ALTIVEC_BUILTIN_ST_INTERNAL_2di:
12598 icode = CODE_FOR_vector_altivec_store_v2di;
12599 case ALTIVEC_BUILTIN_ST_INTERNAL_1ti:
12600 icode = CODE_FOR_vector_altivec_store_v1ti;
12601 break;
12602 default:
12603 *expandedp = false;
12604 return NULL_RTX;
12607 arg0 = CALL_EXPR_ARG (exp, 0);
12608 arg1 = CALL_EXPR_ARG (exp, 1);
12609 op0 = expand_normal (arg0);
12610 op1 = expand_normal (arg1);
12611 mode0 = insn_data[icode].operand[0].mode;
12612 mode1 = insn_data[icode].operand[1].mode;
12614 if (! (*insn_data[icode].operand[0].predicate) (op0, mode0))
12615 op0 = gen_rtx_MEM (mode0, copy_to_mode_reg (Pmode, op0));
12616 if (! (*insn_data[icode].operand[1].predicate) (op1, mode1))
12617 op1 = copy_to_mode_reg (mode1, op1);
12619 pat = GEN_FCN (icode) (op0, op1);
12620 if (pat)
12621 emit_insn (pat);
12623 *expandedp = true;
12624 return NULL_RTX;
12627 /* Expand the dst builtins. */
12628 static rtx
12629 altivec_expand_dst_builtin (tree exp, rtx target ATTRIBUTE_UNUSED,
12630 bool *expandedp)
12632 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
12633 enum rs6000_builtins fcode = (enum rs6000_builtins) DECL_FUNCTION_CODE (fndecl);
12634 tree arg0, arg1, arg2;
12635 enum machine_mode mode0, mode1;
12636 rtx pat, op0, op1, op2;
12637 const struct builtin_description *d;
12638 size_t i;
12640 *expandedp = false;
12642 /* Handle DST variants. */
12643 d = bdesc_dst;
12644 for (i = 0; i < ARRAY_SIZE (bdesc_dst); i++, d++)
12645 if (d->code == fcode)
12647 arg0 = CALL_EXPR_ARG (exp, 0);
12648 arg1 = CALL_EXPR_ARG (exp, 1);
12649 arg2 = CALL_EXPR_ARG (exp, 2);
12650 op0 = expand_normal (arg0);
12651 op1 = expand_normal (arg1);
12652 op2 = expand_normal (arg2);
12653 mode0 = insn_data[d->icode].operand[0].mode;
12654 mode1 = insn_data[d->icode].operand[1].mode;
12656 /* Invalid arguments, bail out before generating bad rtl. */
12657 if (arg0 == error_mark_node
12658 || arg1 == error_mark_node
12659 || arg2 == error_mark_node)
12660 return const0_rtx;
12662 *expandedp = true;
12663 STRIP_NOPS (arg2);
12664 if (TREE_CODE (arg2) != INTEGER_CST
12665 || TREE_INT_CST_LOW (arg2) & ~0x3)
12667 error ("argument to %qs must be a 2-bit unsigned literal", d->name);
12668 return const0_rtx;
12671 if (! (*insn_data[d->icode].operand[0].predicate) (op0, mode0))
12672 op0 = copy_to_mode_reg (Pmode, op0);
12673 if (! (*insn_data[d->icode].operand[1].predicate) (op1, mode1))
12674 op1 = copy_to_mode_reg (mode1, op1);
12676 pat = GEN_FCN (d->icode) (op0, op1, op2);
12677 if (pat != 0)
12678 emit_insn (pat);
12680 return NULL_RTX;
12683 return NULL_RTX;
12686 /* Expand vec_init builtin. */
12687 static rtx
12688 altivec_expand_vec_init_builtin (tree type, tree exp, rtx target)
12690 enum machine_mode tmode = TYPE_MODE (type);
12691 enum machine_mode inner_mode = GET_MODE_INNER (tmode);
12692 int i, n_elt = GET_MODE_NUNITS (tmode);
12694 gcc_assert (VECTOR_MODE_P (tmode));
12695 gcc_assert (n_elt == call_expr_nargs (exp));
12697 if (!target || !register_operand (target, tmode))
12698 target = gen_reg_rtx (tmode);
12700 /* If we have a vector compromised of a single element, such as V1TImode, do
12701 the initialization directly. */
12702 if (n_elt == 1 && GET_MODE_SIZE (tmode) == GET_MODE_SIZE (inner_mode))
12704 rtx x = expand_normal (CALL_EXPR_ARG (exp, 0));
12705 emit_move_insn (target, gen_lowpart (tmode, x));
12707 else
12709 rtvec v = rtvec_alloc (n_elt);
12711 for (i = 0; i < n_elt; ++i)
12713 rtx x = expand_normal (CALL_EXPR_ARG (exp, i));
12714 RTVEC_ELT (v, i) = gen_lowpart (inner_mode, x);
12717 rs6000_expand_vector_init (target, gen_rtx_PARALLEL (tmode, v));
12720 return target;
12723 /* Return the integer constant in ARG. Constrain it to be in the range
12724 of the subparts of VEC_TYPE; issue an error if not. */
12726 static int
12727 get_element_number (tree vec_type, tree arg)
12729 unsigned HOST_WIDE_INT elt, max = TYPE_VECTOR_SUBPARTS (vec_type) - 1;
12731 if (!tree_fits_uhwi_p (arg)
12732 || (elt = tree_to_uhwi (arg), elt > max))
12734 error ("selector must be an integer constant in the range 0..%wi", max);
12735 return 0;
12738 return elt;
12741 /* Expand vec_set builtin. */
12742 static rtx
12743 altivec_expand_vec_set_builtin (tree exp)
12745 enum machine_mode tmode, mode1;
12746 tree arg0, arg1, arg2;
12747 int elt;
12748 rtx op0, op1;
12750 arg0 = CALL_EXPR_ARG (exp, 0);
12751 arg1 = CALL_EXPR_ARG (exp, 1);
12752 arg2 = CALL_EXPR_ARG (exp, 2);
12754 tmode = TYPE_MODE (TREE_TYPE (arg0));
12755 mode1 = TYPE_MODE (TREE_TYPE (TREE_TYPE (arg0)));
12756 gcc_assert (VECTOR_MODE_P (tmode));
12758 op0 = expand_expr (arg0, NULL_RTX, tmode, EXPAND_NORMAL);
12759 op1 = expand_expr (arg1, NULL_RTX, mode1, EXPAND_NORMAL);
12760 elt = get_element_number (TREE_TYPE (arg0), arg2);
12762 if (GET_MODE (op1) != mode1 && GET_MODE (op1) != VOIDmode)
12763 op1 = convert_modes (mode1, GET_MODE (op1), op1, true);
12765 op0 = force_reg (tmode, op0);
12766 op1 = force_reg (mode1, op1);
12768 rs6000_expand_vector_set (op0, op1, elt);
12770 return op0;
12773 /* Expand vec_ext builtin. */
12774 static rtx
12775 altivec_expand_vec_ext_builtin (tree exp, rtx target)
12777 enum machine_mode tmode, mode0;
12778 tree arg0, arg1;
12779 int elt;
12780 rtx op0;
12782 arg0 = CALL_EXPR_ARG (exp, 0);
12783 arg1 = CALL_EXPR_ARG (exp, 1);
12785 op0 = expand_normal (arg0);
12786 elt = get_element_number (TREE_TYPE (arg0), arg1);
12788 tmode = TYPE_MODE (TREE_TYPE (TREE_TYPE (arg0)));
12789 mode0 = TYPE_MODE (TREE_TYPE (arg0));
12790 gcc_assert (VECTOR_MODE_P (mode0));
12792 op0 = force_reg (mode0, op0);
12794 if (optimize || !target || !register_operand (target, tmode))
12795 target = gen_reg_rtx (tmode);
12797 rs6000_expand_vector_extract (target, op0, elt);
12799 return target;
12802 /* Expand the builtin in EXP and store the result in TARGET. Store
12803 true in *EXPANDEDP if we found a builtin to expand. */
12804 static rtx
12805 altivec_expand_builtin (tree exp, rtx target, bool *expandedp)
12807 const struct builtin_description *d;
12808 size_t i;
12809 enum insn_code icode;
12810 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
12811 tree arg0;
12812 rtx op0, pat;
12813 enum machine_mode tmode, mode0;
12814 enum rs6000_builtins fcode
12815 = (enum rs6000_builtins) DECL_FUNCTION_CODE (fndecl);
12817 if (rs6000_overloaded_builtin_p (fcode))
12819 *expandedp = true;
12820 error ("unresolved overload for Altivec builtin %qF", fndecl);
12822 /* Given it is invalid, just generate a normal call. */
12823 return expand_call (exp, target, false);
12826 target = altivec_expand_ld_builtin (exp, target, expandedp);
12827 if (*expandedp)
12828 return target;
12830 target = altivec_expand_st_builtin (exp, target, expandedp);
12831 if (*expandedp)
12832 return target;
12834 target = altivec_expand_dst_builtin (exp, target, expandedp);
12835 if (*expandedp)
12836 return target;
12838 *expandedp = true;
12840 switch (fcode)
12842 case ALTIVEC_BUILTIN_STVX_V2DF:
12843 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvx_v2df, exp);
12844 case ALTIVEC_BUILTIN_STVX_V2DI:
12845 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvx_v2di, exp);
12846 case ALTIVEC_BUILTIN_STVX_V4SF:
12847 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvx_v4sf, exp);
12848 case ALTIVEC_BUILTIN_STVX:
12849 case ALTIVEC_BUILTIN_STVX_V4SI:
12850 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvx_v4si, exp);
12851 case ALTIVEC_BUILTIN_STVX_V8HI:
12852 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvx_v8hi, exp);
12853 case ALTIVEC_BUILTIN_STVX_V16QI:
12854 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvx_v16qi, exp);
12855 case ALTIVEC_BUILTIN_STVEBX:
12856 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvebx, exp);
12857 case ALTIVEC_BUILTIN_STVEHX:
12858 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvehx, exp);
12859 case ALTIVEC_BUILTIN_STVEWX:
12860 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvewx, exp);
12861 case ALTIVEC_BUILTIN_STVXL_V2DF:
12862 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvxl_v2df, exp);
12863 case ALTIVEC_BUILTIN_STVXL_V2DI:
12864 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvxl_v2di, exp);
12865 case ALTIVEC_BUILTIN_STVXL_V4SF:
12866 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvxl_v4sf, exp);
12867 case ALTIVEC_BUILTIN_STVXL:
12868 case ALTIVEC_BUILTIN_STVXL_V4SI:
12869 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvxl_v4si, exp);
12870 case ALTIVEC_BUILTIN_STVXL_V8HI:
12871 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvxl_v8hi, exp);
12872 case ALTIVEC_BUILTIN_STVXL_V16QI:
12873 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvxl_v16qi, exp);
12875 case ALTIVEC_BUILTIN_STVLX:
12876 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvlx, exp);
12877 case ALTIVEC_BUILTIN_STVLXL:
12878 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvlxl, exp);
12879 case ALTIVEC_BUILTIN_STVRX:
12880 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvrx, exp);
12881 case ALTIVEC_BUILTIN_STVRXL:
12882 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvrxl, exp);
12884 case VSX_BUILTIN_STXVD2X_V1TI:
12885 return altivec_expand_stv_builtin (CODE_FOR_vsx_store_v1ti, exp);
12886 case VSX_BUILTIN_STXVD2X_V2DF:
12887 return altivec_expand_stv_builtin (CODE_FOR_vsx_store_v2df, exp);
12888 case VSX_BUILTIN_STXVD2X_V2DI:
12889 return altivec_expand_stv_builtin (CODE_FOR_vsx_store_v2di, exp);
12890 case VSX_BUILTIN_STXVW4X_V4SF:
12891 return altivec_expand_stv_builtin (CODE_FOR_vsx_store_v4sf, exp);
12892 case VSX_BUILTIN_STXVW4X_V4SI:
12893 return altivec_expand_stv_builtin (CODE_FOR_vsx_store_v4si, exp);
12894 case VSX_BUILTIN_STXVW4X_V8HI:
12895 return altivec_expand_stv_builtin (CODE_FOR_vsx_store_v8hi, exp);
12896 case VSX_BUILTIN_STXVW4X_V16QI:
12897 return altivec_expand_stv_builtin (CODE_FOR_vsx_store_v16qi, exp);
12899 case ALTIVEC_BUILTIN_MFVSCR:
12900 icode = CODE_FOR_altivec_mfvscr;
12901 tmode = insn_data[icode].operand[0].mode;
12903 if (target == 0
12904 || GET_MODE (target) != tmode
12905 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
12906 target = gen_reg_rtx (tmode);
12908 pat = GEN_FCN (icode) (target);
12909 if (! pat)
12910 return 0;
12911 emit_insn (pat);
12912 return target;
12914 case ALTIVEC_BUILTIN_MTVSCR:
12915 icode = CODE_FOR_altivec_mtvscr;
12916 arg0 = CALL_EXPR_ARG (exp, 0);
12917 op0 = expand_normal (arg0);
12918 mode0 = insn_data[icode].operand[0].mode;
12920 /* If we got invalid arguments bail out before generating bad rtl. */
12921 if (arg0 == error_mark_node)
12922 return const0_rtx;
12924 if (! (*insn_data[icode].operand[0].predicate) (op0, mode0))
12925 op0 = copy_to_mode_reg (mode0, op0);
12927 pat = GEN_FCN (icode) (op0);
12928 if (pat)
12929 emit_insn (pat);
12930 return NULL_RTX;
12932 case ALTIVEC_BUILTIN_DSSALL:
12933 emit_insn (gen_altivec_dssall ());
12934 return NULL_RTX;
12936 case ALTIVEC_BUILTIN_DSS:
12937 icode = CODE_FOR_altivec_dss;
12938 arg0 = CALL_EXPR_ARG (exp, 0);
12939 STRIP_NOPS (arg0);
12940 op0 = expand_normal (arg0);
12941 mode0 = insn_data[icode].operand[0].mode;
12943 /* If we got invalid arguments bail out before generating bad rtl. */
12944 if (arg0 == error_mark_node)
12945 return const0_rtx;
12947 if (TREE_CODE (arg0) != INTEGER_CST
12948 || TREE_INT_CST_LOW (arg0) & ~0x3)
12950 error ("argument to dss must be a 2-bit unsigned literal");
12951 return const0_rtx;
12954 if (! (*insn_data[icode].operand[0].predicate) (op0, mode0))
12955 op0 = copy_to_mode_reg (mode0, op0);
12957 emit_insn (gen_altivec_dss (op0));
12958 return NULL_RTX;
12960 case ALTIVEC_BUILTIN_VEC_INIT_V4SI:
12961 case ALTIVEC_BUILTIN_VEC_INIT_V8HI:
12962 case ALTIVEC_BUILTIN_VEC_INIT_V16QI:
12963 case ALTIVEC_BUILTIN_VEC_INIT_V4SF:
12964 case VSX_BUILTIN_VEC_INIT_V2DF:
12965 case VSX_BUILTIN_VEC_INIT_V2DI:
12966 case VSX_BUILTIN_VEC_INIT_V1TI:
12967 return altivec_expand_vec_init_builtin (TREE_TYPE (exp), exp, target);
12969 case ALTIVEC_BUILTIN_VEC_SET_V4SI:
12970 case ALTIVEC_BUILTIN_VEC_SET_V8HI:
12971 case ALTIVEC_BUILTIN_VEC_SET_V16QI:
12972 case ALTIVEC_BUILTIN_VEC_SET_V4SF:
12973 case VSX_BUILTIN_VEC_SET_V2DF:
12974 case VSX_BUILTIN_VEC_SET_V2DI:
12975 case VSX_BUILTIN_VEC_SET_V1TI:
12976 return altivec_expand_vec_set_builtin (exp);
12978 case ALTIVEC_BUILTIN_VEC_EXT_V4SI:
12979 case ALTIVEC_BUILTIN_VEC_EXT_V8HI:
12980 case ALTIVEC_BUILTIN_VEC_EXT_V16QI:
12981 case ALTIVEC_BUILTIN_VEC_EXT_V4SF:
12982 case VSX_BUILTIN_VEC_EXT_V2DF:
12983 case VSX_BUILTIN_VEC_EXT_V2DI:
12984 case VSX_BUILTIN_VEC_EXT_V1TI:
12985 return altivec_expand_vec_ext_builtin (exp, target);
12987 default:
12988 break;
12989 /* Fall through. */
12992 /* Expand abs* operations. */
12993 d = bdesc_abs;
12994 for (i = 0; i < ARRAY_SIZE (bdesc_abs); i++, d++)
12995 if (d->code == fcode)
12996 return altivec_expand_abs_builtin (d->icode, exp, target);
12998 /* Expand the AltiVec predicates. */
12999 d = bdesc_altivec_preds;
13000 for (i = 0; i < ARRAY_SIZE (bdesc_altivec_preds); i++, d++)
13001 if (d->code == fcode)
13002 return altivec_expand_predicate_builtin (d->icode, exp, target);
13004 /* LV* are funky. We initialized them differently. */
13005 switch (fcode)
13007 case ALTIVEC_BUILTIN_LVSL:
13008 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvsl,
13009 exp, target, false);
13010 case ALTIVEC_BUILTIN_LVSR:
13011 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvsr,
13012 exp, target, false);
13013 case ALTIVEC_BUILTIN_LVEBX:
13014 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvebx,
13015 exp, target, false);
13016 case ALTIVEC_BUILTIN_LVEHX:
13017 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvehx,
13018 exp, target, false);
13019 case ALTIVEC_BUILTIN_LVEWX:
13020 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvewx,
13021 exp, target, false);
13022 case ALTIVEC_BUILTIN_LVXL_V2DF:
13023 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvxl_v2df,
13024 exp, target, false);
13025 case ALTIVEC_BUILTIN_LVXL_V2DI:
13026 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvxl_v2di,
13027 exp, target, false);
13028 case ALTIVEC_BUILTIN_LVXL_V4SF:
13029 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvxl_v4sf,
13030 exp, target, false);
13031 case ALTIVEC_BUILTIN_LVXL:
13032 case ALTIVEC_BUILTIN_LVXL_V4SI:
13033 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvxl_v4si,
13034 exp, target, false);
13035 case ALTIVEC_BUILTIN_LVXL_V8HI:
13036 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvxl_v8hi,
13037 exp, target, false);
13038 case ALTIVEC_BUILTIN_LVXL_V16QI:
13039 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvxl_v16qi,
13040 exp, target, false);
13041 case ALTIVEC_BUILTIN_LVX_V2DF:
13042 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvx_v2df,
13043 exp, target, false);
13044 case ALTIVEC_BUILTIN_LVX_V2DI:
13045 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvx_v2di,
13046 exp, target, false);
13047 case ALTIVEC_BUILTIN_LVX_V4SF:
13048 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvx_v4sf,
13049 exp, target, false);
13050 case ALTIVEC_BUILTIN_LVX:
13051 case ALTIVEC_BUILTIN_LVX_V4SI:
13052 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvx_v4si,
13053 exp, target, false);
13054 case ALTIVEC_BUILTIN_LVX_V8HI:
13055 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvx_v8hi,
13056 exp, target, false);
13057 case ALTIVEC_BUILTIN_LVX_V16QI:
13058 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvx_v16qi,
13059 exp, target, false);
13060 case ALTIVEC_BUILTIN_LVLX:
13061 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvlx,
13062 exp, target, true);
13063 case ALTIVEC_BUILTIN_LVLXL:
13064 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvlxl,
13065 exp, target, true);
13066 case ALTIVEC_BUILTIN_LVRX:
13067 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvrx,
13068 exp, target, true);
13069 case ALTIVEC_BUILTIN_LVRXL:
13070 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvrxl,
13071 exp, target, true);
13072 case VSX_BUILTIN_LXVD2X_V1TI:
13073 return altivec_expand_lv_builtin (CODE_FOR_vsx_load_v1ti,
13074 exp, target, false);
13075 case VSX_BUILTIN_LXVD2X_V2DF:
13076 return altivec_expand_lv_builtin (CODE_FOR_vsx_load_v2df,
13077 exp, target, false);
13078 case VSX_BUILTIN_LXVD2X_V2DI:
13079 return altivec_expand_lv_builtin (CODE_FOR_vsx_load_v2di,
13080 exp, target, false);
13081 case VSX_BUILTIN_LXVW4X_V4SF:
13082 return altivec_expand_lv_builtin (CODE_FOR_vsx_load_v4sf,
13083 exp, target, false);
13084 case VSX_BUILTIN_LXVW4X_V4SI:
13085 return altivec_expand_lv_builtin (CODE_FOR_vsx_load_v4si,
13086 exp, target, false);
13087 case VSX_BUILTIN_LXVW4X_V8HI:
13088 return altivec_expand_lv_builtin (CODE_FOR_vsx_load_v8hi,
13089 exp, target, false);
13090 case VSX_BUILTIN_LXVW4X_V16QI:
13091 return altivec_expand_lv_builtin (CODE_FOR_vsx_load_v16qi,
13092 exp, target, false);
13093 break;
13094 default:
13095 break;
13096 /* Fall through. */
13099 *expandedp = false;
13100 return NULL_RTX;
13103 /* Expand the builtin in EXP and store the result in TARGET. Store
13104 true in *EXPANDEDP if we found a builtin to expand. */
13105 static rtx
13106 paired_expand_builtin (tree exp, rtx target, bool * expandedp)
13108 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
13109 enum rs6000_builtins fcode = (enum rs6000_builtins) DECL_FUNCTION_CODE (fndecl);
13110 const struct builtin_description *d;
13111 size_t i;
13113 *expandedp = true;
13115 switch (fcode)
13117 case PAIRED_BUILTIN_STX:
13118 return paired_expand_stv_builtin (CODE_FOR_paired_stx, exp);
13119 case PAIRED_BUILTIN_LX:
13120 return paired_expand_lv_builtin (CODE_FOR_paired_lx, exp, target);
13121 default:
13122 break;
13123 /* Fall through. */
13126 /* Expand the paired predicates. */
13127 d = bdesc_paired_preds;
13128 for (i = 0; i < ARRAY_SIZE (bdesc_paired_preds); i++, d++)
13129 if (d->code == fcode)
13130 return paired_expand_predicate_builtin (d->icode, exp, target);
13132 *expandedp = false;
13133 return NULL_RTX;
13136 /* Binops that need to be initialized manually, but can be expanded
13137 automagically by rs6000_expand_binop_builtin. */
13138 static const struct builtin_description bdesc_2arg_spe[] =
13140 { RS6000_BTM_SPE, CODE_FOR_spe_evlddx, "__builtin_spe_evlddx", SPE_BUILTIN_EVLDDX },
13141 { RS6000_BTM_SPE, CODE_FOR_spe_evldwx, "__builtin_spe_evldwx", SPE_BUILTIN_EVLDWX },
13142 { RS6000_BTM_SPE, CODE_FOR_spe_evldhx, "__builtin_spe_evldhx", SPE_BUILTIN_EVLDHX },
13143 { RS6000_BTM_SPE, CODE_FOR_spe_evlwhex, "__builtin_spe_evlwhex", SPE_BUILTIN_EVLWHEX },
13144 { RS6000_BTM_SPE, CODE_FOR_spe_evlwhoux, "__builtin_spe_evlwhoux", SPE_BUILTIN_EVLWHOUX },
13145 { RS6000_BTM_SPE, CODE_FOR_spe_evlwhosx, "__builtin_spe_evlwhosx", SPE_BUILTIN_EVLWHOSX },
13146 { RS6000_BTM_SPE, CODE_FOR_spe_evlwwsplatx, "__builtin_spe_evlwwsplatx", SPE_BUILTIN_EVLWWSPLATX },
13147 { RS6000_BTM_SPE, CODE_FOR_spe_evlwhsplatx, "__builtin_spe_evlwhsplatx", SPE_BUILTIN_EVLWHSPLATX },
13148 { RS6000_BTM_SPE, CODE_FOR_spe_evlhhesplatx, "__builtin_spe_evlhhesplatx", SPE_BUILTIN_EVLHHESPLATX },
13149 { RS6000_BTM_SPE, CODE_FOR_spe_evlhhousplatx, "__builtin_spe_evlhhousplatx", SPE_BUILTIN_EVLHHOUSPLATX },
13150 { RS6000_BTM_SPE, CODE_FOR_spe_evlhhossplatx, "__builtin_spe_evlhhossplatx", SPE_BUILTIN_EVLHHOSSPLATX },
13151 { RS6000_BTM_SPE, CODE_FOR_spe_evldd, "__builtin_spe_evldd", SPE_BUILTIN_EVLDD },
13152 { RS6000_BTM_SPE, CODE_FOR_spe_evldw, "__builtin_spe_evldw", SPE_BUILTIN_EVLDW },
13153 { RS6000_BTM_SPE, CODE_FOR_spe_evldh, "__builtin_spe_evldh", SPE_BUILTIN_EVLDH },
13154 { RS6000_BTM_SPE, CODE_FOR_spe_evlwhe, "__builtin_spe_evlwhe", SPE_BUILTIN_EVLWHE },
13155 { RS6000_BTM_SPE, CODE_FOR_spe_evlwhou, "__builtin_spe_evlwhou", SPE_BUILTIN_EVLWHOU },
13156 { RS6000_BTM_SPE, CODE_FOR_spe_evlwhos, "__builtin_spe_evlwhos", SPE_BUILTIN_EVLWHOS },
13157 { RS6000_BTM_SPE, CODE_FOR_spe_evlwwsplat, "__builtin_spe_evlwwsplat", SPE_BUILTIN_EVLWWSPLAT },
13158 { RS6000_BTM_SPE, CODE_FOR_spe_evlwhsplat, "__builtin_spe_evlwhsplat", SPE_BUILTIN_EVLWHSPLAT },
13159 { RS6000_BTM_SPE, CODE_FOR_spe_evlhhesplat, "__builtin_spe_evlhhesplat", SPE_BUILTIN_EVLHHESPLAT },
13160 { RS6000_BTM_SPE, CODE_FOR_spe_evlhhousplat, "__builtin_spe_evlhhousplat", SPE_BUILTIN_EVLHHOUSPLAT },
13161 { RS6000_BTM_SPE, CODE_FOR_spe_evlhhossplat, "__builtin_spe_evlhhossplat", SPE_BUILTIN_EVLHHOSSPLAT }
13164 /* Expand the builtin in EXP and store the result in TARGET. Store
13165 true in *EXPANDEDP if we found a builtin to expand.
13167 This expands the SPE builtins that are not simple unary and binary
13168 operations. */
13169 static rtx
13170 spe_expand_builtin (tree exp, rtx target, bool *expandedp)
13172 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
13173 tree arg1, arg0;
13174 enum rs6000_builtins fcode = (enum rs6000_builtins) DECL_FUNCTION_CODE (fndecl);
13175 enum insn_code icode;
13176 enum machine_mode tmode, mode0;
13177 rtx pat, op0;
13178 const struct builtin_description *d;
13179 size_t i;
13181 *expandedp = true;
13183 /* Syntax check for a 5-bit unsigned immediate. */
13184 switch (fcode)
13186 case SPE_BUILTIN_EVSTDD:
13187 case SPE_BUILTIN_EVSTDH:
13188 case SPE_BUILTIN_EVSTDW:
13189 case SPE_BUILTIN_EVSTWHE:
13190 case SPE_BUILTIN_EVSTWHO:
13191 case SPE_BUILTIN_EVSTWWE:
13192 case SPE_BUILTIN_EVSTWWO:
13193 arg1 = CALL_EXPR_ARG (exp, 2);
13194 if (TREE_CODE (arg1) != INTEGER_CST
13195 || TREE_INT_CST_LOW (arg1) & ~0x1f)
13197 error ("argument 2 must be a 5-bit unsigned literal");
13198 return const0_rtx;
13200 break;
13201 default:
13202 break;
13205 /* The evsplat*i instructions are not quite generic. */
13206 switch (fcode)
13208 case SPE_BUILTIN_EVSPLATFI:
13209 return rs6000_expand_unop_builtin (CODE_FOR_spe_evsplatfi,
13210 exp, target);
13211 case SPE_BUILTIN_EVSPLATI:
13212 return rs6000_expand_unop_builtin (CODE_FOR_spe_evsplati,
13213 exp, target);
13214 default:
13215 break;
13218 d = bdesc_2arg_spe;
13219 for (i = 0; i < ARRAY_SIZE (bdesc_2arg_spe); ++i, ++d)
13220 if (d->code == fcode)
13221 return rs6000_expand_binop_builtin (d->icode, exp, target);
13223 d = bdesc_spe_predicates;
13224 for (i = 0; i < ARRAY_SIZE (bdesc_spe_predicates); ++i, ++d)
13225 if (d->code == fcode)
13226 return spe_expand_predicate_builtin (d->icode, exp, target);
13228 d = bdesc_spe_evsel;
13229 for (i = 0; i < ARRAY_SIZE (bdesc_spe_evsel); ++i, ++d)
13230 if (d->code == fcode)
13231 return spe_expand_evsel_builtin (d->icode, exp, target);
13233 switch (fcode)
13235 case SPE_BUILTIN_EVSTDDX:
13236 return spe_expand_stv_builtin (CODE_FOR_spe_evstddx, exp);
13237 case SPE_BUILTIN_EVSTDHX:
13238 return spe_expand_stv_builtin (CODE_FOR_spe_evstdhx, exp);
13239 case SPE_BUILTIN_EVSTDWX:
13240 return spe_expand_stv_builtin (CODE_FOR_spe_evstdwx, exp);
13241 case SPE_BUILTIN_EVSTWHEX:
13242 return spe_expand_stv_builtin (CODE_FOR_spe_evstwhex, exp);
13243 case SPE_BUILTIN_EVSTWHOX:
13244 return spe_expand_stv_builtin (CODE_FOR_spe_evstwhox, exp);
13245 case SPE_BUILTIN_EVSTWWEX:
13246 return spe_expand_stv_builtin (CODE_FOR_spe_evstwwex, exp);
13247 case SPE_BUILTIN_EVSTWWOX:
13248 return spe_expand_stv_builtin (CODE_FOR_spe_evstwwox, exp);
13249 case SPE_BUILTIN_EVSTDD:
13250 return spe_expand_stv_builtin (CODE_FOR_spe_evstdd, exp);
13251 case SPE_BUILTIN_EVSTDH:
13252 return spe_expand_stv_builtin (CODE_FOR_spe_evstdh, exp);
13253 case SPE_BUILTIN_EVSTDW:
13254 return spe_expand_stv_builtin (CODE_FOR_spe_evstdw, exp);
13255 case SPE_BUILTIN_EVSTWHE:
13256 return spe_expand_stv_builtin (CODE_FOR_spe_evstwhe, exp);
13257 case SPE_BUILTIN_EVSTWHO:
13258 return spe_expand_stv_builtin (CODE_FOR_spe_evstwho, exp);
13259 case SPE_BUILTIN_EVSTWWE:
13260 return spe_expand_stv_builtin (CODE_FOR_spe_evstwwe, exp);
13261 case SPE_BUILTIN_EVSTWWO:
13262 return spe_expand_stv_builtin (CODE_FOR_spe_evstwwo, exp);
13263 case SPE_BUILTIN_MFSPEFSCR:
13264 icode = CODE_FOR_spe_mfspefscr;
13265 tmode = insn_data[icode].operand[0].mode;
13267 if (target == 0
13268 || GET_MODE (target) != tmode
13269 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
13270 target = gen_reg_rtx (tmode);
13272 pat = GEN_FCN (icode) (target);
13273 if (! pat)
13274 return 0;
13275 emit_insn (pat);
13276 return target;
13277 case SPE_BUILTIN_MTSPEFSCR:
13278 icode = CODE_FOR_spe_mtspefscr;
13279 arg0 = CALL_EXPR_ARG (exp, 0);
13280 op0 = expand_normal (arg0);
13281 mode0 = insn_data[icode].operand[0].mode;
13283 if (arg0 == error_mark_node)
13284 return const0_rtx;
13286 if (! (*insn_data[icode].operand[0].predicate) (op0, mode0))
13287 op0 = copy_to_mode_reg (mode0, op0);
13289 pat = GEN_FCN (icode) (op0);
13290 if (pat)
13291 emit_insn (pat);
13292 return NULL_RTX;
13293 default:
13294 break;
13297 *expandedp = false;
13298 return NULL_RTX;
13301 static rtx
13302 paired_expand_predicate_builtin (enum insn_code icode, tree exp, rtx target)
13304 rtx pat, scratch, tmp;
13305 tree form = CALL_EXPR_ARG (exp, 0);
13306 tree arg0 = CALL_EXPR_ARG (exp, 1);
13307 tree arg1 = CALL_EXPR_ARG (exp, 2);
13308 rtx op0 = expand_normal (arg0);
13309 rtx op1 = expand_normal (arg1);
13310 enum machine_mode mode0 = insn_data[icode].operand[1].mode;
13311 enum machine_mode mode1 = insn_data[icode].operand[2].mode;
13312 int form_int;
13313 enum rtx_code code;
13315 if (TREE_CODE (form) != INTEGER_CST)
13317 error ("argument 1 of __builtin_paired_predicate must be a constant");
13318 return const0_rtx;
13320 else
13321 form_int = TREE_INT_CST_LOW (form);
13323 gcc_assert (mode0 == mode1);
13325 if (arg0 == error_mark_node || arg1 == error_mark_node)
13326 return const0_rtx;
13328 if (target == 0
13329 || GET_MODE (target) != SImode
13330 || !(*insn_data[icode].operand[0].predicate) (target, SImode))
13331 target = gen_reg_rtx (SImode);
13332 if (!(*insn_data[icode].operand[1].predicate) (op0, mode0))
13333 op0 = copy_to_mode_reg (mode0, op0);
13334 if (!(*insn_data[icode].operand[2].predicate) (op1, mode1))
13335 op1 = copy_to_mode_reg (mode1, op1);
13337 scratch = gen_reg_rtx (CCFPmode);
13339 pat = GEN_FCN (icode) (scratch, op0, op1);
13340 if (!pat)
13341 return const0_rtx;
13343 emit_insn (pat);
13345 switch (form_int)
13347 /* LT bit. */
13348 case 0:
13349 code = LT;
13350 break;
13351 /* GT bit. */
13352 case 1:
13353 code = GT;
13354 break;
13355 /* EQ bit. */
13356 case 2:
13357 code = EQ;
13358 break;
13359 /* UN bit. */
13360 case 3:
13361 emit_insn (gen_move_from_CR_ov_bit (target, scratch));
13362 return target;
13363 default:
13364 error ("argument 1 of __builtin_paired_predicate is out of range");
13365 return const0_rtx;
13368 tmp = gen_rtx_fmt_ee (code, SImode, scratch, const0_rtx);
13369 emit_move_insn (target, tmp);
13370 return target;
13373 static rtx
13374 spe_expand_predicate_builtin (enum insn_code icode, tree exp, rtx target)
13376 rtx pat, scratch, tmp;
13377 tree form = CALL_EXPR_ARG (exp, 0);
13378 tree arg0 = CALL_EXPR_ARG (exp, 1);
13379 tree arg1 = CALL_EXPR_ARG (exp, 2);
13380 rtx op0 = expand_normal (arg0);
13381 rtx op1 = expand_normal (arg1);
13382 enum machine_mode mode0 = insn_data[icode].operand[1].mode;
13383 enum machine_mode mode1 = insn_data[icode].operand[2].mode;
13384 int form_int;
13385 enum rtx_code code;
13387 if (TREE_CODE (form) != INTEGER_CST)
13389 error ("argument 1 of __builtin_spe_predicate must be a constant");
13390 return const0_rtx;
13392 else
13393 form_int = TREE_INT_CST_LOW (form);
13395 gcc_assert (mode0 == mode1);
13397 if (arg0 == error_mark_node || arg1 == error_mark_node)
13398 return const0_rtx;
13400 if (target == 0
13401 || GET_MODE (target) != SImode
13402 || ! (*insn_data[icode].operand[0].predicate) (target, SImode))
13403 target = gen_reg_rtx (SImode);
13405 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
13406 op0 = copy_to_mode_reg (mode0, op0);
13407 if (! (*insn_data[icode].operand[2].predicate) (op1, mode1))
13408 op1 = copy_to_mode_reg (mode1, op1);
13410 scratch = gen_reg_rtx (CCmode);
13412 pat = GEN_FCN (icode) (scratch, op0, op1);
13413 if (! pat)
13414 return const0_rtx;
13415 emit_insn (pat);
13417 /* There are 4 variants for each predicate: _any_, _all_, _upper_,
13418 _lower_. We use one compare, but look in different bits of the
13419 CR for each variant.
13421 There are 2 elements in each SPE simd type (upper/lower). The CR
13422 bits are set as follows:
13424 BIT0 | BIT 1 | BIT 2 | BIT 3
13425 U | L | (U | L) | (U & L)
13427 So, for an "all" relationship, BIT 3 would be set.
13428 For an "any" relationship, BIT 2 would be set. Etc.
13430 Following traditional nomenclature, these bits map to:
13432 BIT0 | BIT 1 | BIT 2 | BIT 3
13433 LT | GT | EQ | OV
13435 Later, we will generate rtl to look in the LT/EQ/EQ/OV bits.
13438 switch (form_int)
13440 /* All variant. OV bit. */
13441 case 0:
13442 /* We need to get to the OV bit, which is the ORDERED bit. We
13443 could generate (ordered:SI (reg:CC xx) (const_int 0)), but
13444 that's ugly and will make validate_condition_mode die.
13445 So let's just use another pattern. */
13446 emit_insn (gen_move_from_CR_ov_bit (target, scratch));
13447 return target;
13448 /* Any variant. EQ bit. */
13449 case 1:
13450 code = EQ;
13451 break;
13452 /* Upper variant. LT bit. */
13453 case 2:
13454 code = LT;
13455 break;
13456 /* Lower variant. GT bit. */
13457 case 3:
13458 code = GT;
13459 break;
13460 default:
13461 error ("argument 1 of __builtin_spe_predicate is out of range");
13462 return const0_rtx;
13465 tmp = gen_rtx_fmt_ee (code, SImode, scratch, const0_rtx);
13466 emit_move_insn (target, tmp);
13468 return target;
13471 /* The evsel builtins look like this:
13473 e = __builtin_spe_evsel_OP (a, b, c, d);
13475 and work like this:
13477 e[upper] = a[upper] *OP* b[upper] ? c[upper] : d[upper];
13478 e[lower] = a[lower] *OP* b[lower] ? c[lower] : d[lower];
13481 static rtx
13482 spe_expand_evsel_builtin (enum insn_code icode, tree exp, rtx target)
13484 rtx pat, scratch;
13485 tree arg0 = CALL_EXPR_ARG (exp, 0);
13486 tree arg1 = CALL_EXPR_ARG (exp, 1);
13487 tree arg2 = CALL_EXPR_ARG (exp, 2);
13488 tree arg3 = CALL_EXPR_ARG (exp, 3);
13489 rtx op0 = expand_normal (arg0);
13490 rtx op1 = expand_normal (arg1);
13491 rtx op2 = expand_normal (arg2);
13492 rtx op3 = expand_normal (arg3);
13493 enum machine_mode mode0 = insn_data[icode].operand[1].mode;
13494 enum machine_mode mode1 = insn_data[icode].operand[2].mode;
13496 gcc_assert (mode0 == mode1);
13498 if (arg0 == error_mark_node || arg1 == error_mark_node
13499 || arg2 == error_mark_node || arg3 == error_mark_node)
13500 return const0_rtx;
13502 if (target == 0
13503 || GET_MODE (target) != mode0
13504 || ! (*insn_data[icode].operand[0].predicate) (target, mode0))
13505 target = gen_reg_rtx (mode0);
13507 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
13508 op0 = copy_to_mode_reg (mode0, op0);
13509 if (! (*insn_data[icode].operand[1].predicate) (op1, mode1))
13510 op1 = copy_to_mode_reg (mode0, op1);
13511 if (! (*insn_data[icode].operand[1].predicate) (op2, mode1))
13512 op2 = copy_to_mode_reg (mode0, op2);
13513 if (! (*insn_data[icode].operand[1].predicate) (op3, mode1))
13514 op3 = copy_to_mode_reg (mode0, op3);
13516 /* Generate the compare. */
13517 scratch = gen_reg_rtx (CCmode);
13518 pat = GEN_FCN (icode) (scratch, op0, op1);
13519 if (! pat)
13520 return const0_rtx;
13521 emit_insn (pat);
13523 if (mode0 == V2SImode)
13524 emit_insn (gen_spe_evsel (target, op2, op3, scratch));
13525 else
13526 emit_insn (gen_spe_evsel_fs (target, op2, op3, scratch));
13528 return target;
13531 /* Raise an error message for a builtin function that is called without the
13532 appropriate target options being set. */
13534 static void
13535 rs6000_invalid_builtin (enum rs6000_builtins fncode)
13537 size_t uns_fncode = (size_t)fncode;
13538 const char *name = rs6000_builtin_info[uns_fncode].name;
13539 HOST_WIDE_INT fnmask = rs6000_builtin_info[uns_fncode].mask;
13541 gcc_assert (name != NULL);
13542 if ((fnmask & RS6000_BTM_CELL) != 0)
13543 error ("Builtin function %s is only valid for the cell processor", name);
13544 else if ((fnmask & RS6000_BTM_VSX) != 0)
13545 error ("Builtin function %s requires the -mvsx option", name);
13546 else if ((fnmask & RS6000_BTM_HTM) != 0)
13547 error ("Builtin function %s requires the -mhtm option", name);
13548 else if ((fnmask & RS6000_BTM_ALTIVEC) != 0)
13549 error ("Builtin function %s requires the -maltivec option", name);
13550 else if ((fnmask & RS6000_BTM_PAIRED) != 0)
13551 error ("Builtin function %s requires the -mpaired option", name);
13552 else if ((fnmask & RS6000_BTM_SPE) != 0)
13553 error ("Builtin function %s requires the -mspe option", name);
13554 else if ((fnmask & (RS6000_BTM_DFP | RS6000_BTM_P8_VECTOR))
13555 == (RS6000_BTM_DFP | RS6000_BTM_P8_VECTOR))
13556 error ("Builtin function %s requires the -mhard-dfp and"
13557 "-mpower8-vector options", name);
13558 else if ((fnmask & RS6000_BTM_DFP) != 0)
13559 error ("Builtin function %s requires the -mhard-dfp option", name);
13560 else if ((fnmask & RS6000_BTM_P8_VECTOR) != 0)
13561 error ("Builtin function %s requires the -mpower8-vector option", name);
13562 else if ((fnmask & RS6000_BTM_HARD_FLOAT) != 0)
13563 error ("Builtin function %s requires the -mhard-float option", name);
13564 else
13565 error ("Builtin function %s is not supported with the current options",
13566 name);
13569 /* Expand an expression EXP that calls a built-in function,
13570 with result going to TARGET if that's convenient
13571 (and in mode MODE if that's convenient).
13572 SUBTARGET may be used as the target for computing one of EXP's operands.
13573 IGNORE is nonzero if the value is to be ignored. */
13575 static rtx
13576 rs6000_expand_builtin (tree exp, rtx target, rtx subtarget ATTRIBUTE_UNUSED,
13577 enum machine_mode mode ATTRIBUTE_UNUSED,
13578 int ignore ATTRIBUTE_UNUSED)
13580 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
13581 enum rs6000_builtins fcode
13582 = (enum rs6000_builtins)DECL_FUNCTION_CODE (fndecl);
13583 size_t uns_fcode = (size_t)fcode;
13584 const struct builtin_description *d;
13585 size_t i;
13586 rtx ret;
13587 bool success;
13588 HOST_WIDE_INT mask = rs6000_builtin_info[uns_fcode].mask;
13589 bool func_valid_p = ((rs6000_builtin_mask & mask) == mask);
13591 if (TARGET_DEBUG_BUILTIN)
13593 enum insn_code icode = rs6000_builtin_info[uns_fcode].icode;
13594 const char *name1 = rs6000_builtin_info[uns_fcode].name;
13595 const char *name2 = ((icode != CODE_FOR_nothing)
13596 ? get_insn_name ((int)icode)
13597 : "nothing");
13598 const char *name3;
13600 switch (rs6000_builtin_info[uns_fcode].attr & RS6000_BTC_TYPE_MASK)
13602 default: name3 = "unknown"; break;
13603 case RS6000_BTC_SPECIAL: name3 = "special"; break;
13604 case RS6000_BTC_UNARY: name3 = "unary"; break;
13605 case RS6000_BTC_BINARY: name3 = "binary"; break;
13606 case RS6000_BTC_TERNARY: name3 = "ternary"; break;
13607 case RS6000_BTC_PREDICATE: name3 = "predicate"; break;
13608 case RS6000_BTC_ABS: name3 = "abs"; break;
13609 case RS6000_BTC_EVSEL: name3 = "evsel"; break;
13610 case RS6000_BTC_DST: name3 = "dst"; break;
13614 fprintf (stderr,
13615 "rs6000_expand_builtin, %s (%d), insn = %s (%d), type=%s%s\n",
13616 (name1) ? name1 : "---", fcode,
13617 (name2) ? name2 : "---", (int)icode,
13618 name3,
13619 func_valid_p ? "" : ", not valid");
13622 if (!func_valid_p)
13624 rs6000_invalid_builtin (fcode);
13626 /* Given it is invalid, just generate a normal call. */
13627 return expand_call (exp, target, ignore);
13630 switch (fcode)
13632 case RS6000_BUILTIN_RECIP:
13633 return rs6000_expand_binop_builtin (CODE_FOR_recipdf3, exp, target);
13635 case RS6000_BUILTIN_RECIPF:
13636 return rs6000_expand_binop_builtin (CODE_FOR_recipsf3, exp, target);
13638 case RS6000_BUILTIN_RSQRTF:
13639 return rs6000_expand_unop_builtin (CODE_FOR_rsqrtsf2, exp, target);
13641 case RS6000_BUILTIN_RSQRT:
13642 return rs6000_expand_unop_builtin (CODE_FOR_rsqrtdf2, exp, target);
13644 case POWER7_BUILTIN_BPERMD:
13645 return rs6000_expand_binop_builtin (((TARGET_64BIT)
13646 ? CODE_FOR_bpermd_di
13647 : CODE_FOR_bpermd_si), exp, target);
13649 case RS6000_BUILTIN_GET_TB:
13650 return rs6000_expand_zeroop_builtin (CODE_FOR_rs6000_get_timebase,
13651 target);
13653 case RS6000_BUILTIN_MFTB:
13654 return rs6000_expand_zeroop_builtin (((TARGET_64BIT)
13655 ? CODE_FOR_rs6000_mftb_di
13656 : CODE_FOR_rs6000_mftb_si),
13657 target);
13659 case RS6000_BUILTIN_MFFS:
13660 return rs6000_expand_zeroop_builtin (CODE_FOR_rs6000_mffs, target);
13662 case RS6000_BUILTIN_MTFSF:
13663 return rs6000_expand_mtfsf_builtin (CODE_FOR_rs6000_mtfsf, exp);
13665 case ALTIVEC_BUILTIN_MASK_FOR_LOAD:
13666 case ALTIVEC_BUILTIN_MASK_FOR_STORE:
13668 int icode = (BYTES_BIG_ENDIAN ? (int) CODE_FOR_altivec_lvsr
13669 : (int) CODE_FOR_altivec_lvsl);
13670 enum machine_mode tmode = insn_data[icode].operand[0].mode;
13671 enum machine_mode mode = insn_data[icode].operand[1].mode;
13672 tree arg;
13673 rtx op, addr, pat;
13675 gcc_assert (TARGET_ALTIVEC);
13677 arg = CALL_EXPR_ARG (exp, 0);
13678 gcc_assert (POINTER_TYPE_P (TREE_TYPE (arg)));
13679 op = expand_expr (arg, NULL_RTX, Pmode, EXPAND_NORMAL);
13680 addr = memory_address (mode, op);
13681 if (fcode == ALTIVEC_BUILTIN_MASK_FOR_STORE)
13682 op = addr;
13683 else
13685 /* For the load case need to negate the address. */
13686 op = gen_reg_rtx (GET_MODE (addr));
13687 emit_insn (gen_rtx_SET (VOIDmode, op,
13688 gen_rtx_NEG (GET_MODE (addr), addr)));
13690 op = gen_rtx_MEM (mode, op);
13692 if (target == 0
13693 || GET_MODE (target) != tmode
13694 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
13695 target = gen_reg_rtx (tmode);
13697 /*pat = gen_altivec_lvsr (target, op);*/
13698 pat = GEN_FCN (icode) (target, op);
13699 if (!pat)
13700 return 0;
13701 emit_insn (pat);
13703 return target;
13706 case ALTIVEC_BUILTIN_VCFUX:
13707 case ALTIVEC_BUILTIN_VCFSX:
13708 case ALTIVEC_BUILTIN_VCTUXS:
13709 case ALTIVEC_BUILTIN_VCTSXS:
13710 /* FIXME: There's got to be a nicer way to handle this case than
13711 constructing a new CALL_EXPR. */
13712 if (call_expr_nargs (exp) == 1)
13714 exp = build_call_nary (TREE_TYPE (exp), CALL_EXPR_FN (exp),
13715 2, CALL_EXPR_ARG (exp, 0), integer_zero_node);
13717 break;
13719 default:
13720 break;
13723 if (TARGET_ALTIVEC)
13725 ret = altivec_expand_builtin (exp, target, &success);
13727 if (success)
13728 return ret;
13730 if (TARGET_SPE)
13732 ret = spe_expand_builtin (exp, target, &success);
13734 if (success)
13735 return ret;
13737 if (TARGET_PAIRED_FLOAT)
13739 ret = paired_expand_builtin (exp, target, &success);
13741 if (success)
13742 return ret;
13744 if (TARGET_HTM)
13746 ret = htm_expand_builtin (exp, target, &success);
13748 if (success)
13749 return ret;
13752 unsigned attr = rs6000_builtin_info[uns_fcode].attr & RS6000_BTC_TYPE_MASK;
13753 gcc_assert (attr == RS6000_BTC_UNARY
13754 || attr == RS6000_BTC_BINARY
13755 || attr == RS6000_BTC_TERNARY);
13757 /* Handle simple unary operations. */
13758 d = bdesc_1arg;
13759 for (i = 0; i < ARRAY_SIZE (bdesc_1arg); i++, d++)
13760 if (d->code == fcode)
13761 return rs6000_expand_unop_builtin (d->icode, exp, target);
13763 /* Handle simple binary operations. */
13764 d = bdesc_2arg;
13765 for (i = 0; i < ARRAY_SIZE (bdesc_2arg); i++, d++)
13766 if (d->code == fcode)
13767 return rs6000_expand_binop_builtin (d->icode, exp, target);
13769 /* Handle simple ternary operations. */
13770 d = bdesc_3arg;
13771 for (i = 0; i < ARRAY_SIZE (bdesc_3arg); i++, d++)
13772 if (d->code == fcode)
13773 return rs6000_expand_ternop_builtin (d->icode, exp, target);
13775 gcc_unreachable ();
13778 static void
13779 rs6000_init_builtins (void)
13781 tree tdecl;
13782 tree ftype;
13783 enum machine_mode mode;
13785 if (TARGET_DEBUG_BUILTIN)
13786 fprintf (stderr, "rs6000_init_builtins%s%s%s%s\n",
13787 (TARGET_PAIRED_FLOAT) ? ", paired" : "",
13788 (TARGET_SPE) ? ", spe" : "",
13789 (TARGET_ALTIVEC) ? ", altivec" : "",
13790 (TARGET_VSX) ? ", vsx" : "");
13792 V2SI_type_node = build_vector_type (intSI_type_node, 2);
13793 V2SF_type_node = build_vector_type (float_type_node, 2);
13794 V2DI_type_node = build_vector_type (intDI_type_node, 2);
13795 V2DF_type_node = build_vector_type (double_type_node, 2);
13796 V4HI_type_node = build_vector_type (intHI_type_node, 4);
13797 V4SI_type_node = build_vector_type (intSI_type_node, 4);
13798 V4SF_type_node = build_vector_type (float_type_node, 4);
13799 V8HI_type_node = build_vector_type (intHI_type_node, 8);
13800 V16QI_type_node = build_vector_type (intQI_type_node, 16);
13802 unsigned_V16QI_type_node = build_vector_type (unsigned_intQI_type_node, 16);
13803 unsigned_V8HI_type_node = build_vector_type (unsigned_intHI_type_node, 8);
13804 unsigned_V4SI_type_node = build_vector_type (unsigned_intSI_type_node, 4);
13805 unsigned_V2DI_type_node = build_vector_type (unsigned_intDI_type_node, 2);
13807 opaque_V2SF_type_node = build_opaque_vector_type (float_type_node, 2);
13808 opaque_V2SI_type_node = build_opaque_vector_type (intSI_type_node, 2);
13809 opaque_p_V2SI_type_node = build_pointer_type (opaque_V2SI_type_node);
13810 opaque_V4SI_type_node = build_opaque_vector_type (intSI_type_node, 4);
13812 /* We use V1TI mode as a special container to hold __int128_t items that
13813 must live in VSX registers. */
13814 if (intTI_type_node)
13816 V1TI_type_node = build_vector_type (intTI_type_node, 1);
13817 unsigned_V1TI_type_node = build_vector_type (unsigned_intTI_type_node, 1);
13820 /* The 'vector bool ...' types must be kept distinct from 'vector unsigned ...'
13821 types, especially in C++ land. Similarly, 'vector pixel' is distinct from
13822 'vector unsigned short'. */
13824 bool_char_type_node = build_distinct_type_copy (unsigned_intQI_type_node);
13825 bool_short_type_node = build_distinct_type_copy (unsigned_intHI_type_node);
13826 bool_int_type_node = build_distinct_type_copy (unsigned_intSI_type_node);
13827 bool_long_type_node = build_distinct_type_copy (unsigned_intDI_type_node);
13828 pixel_type_node = build_distinct_type_copy (unsigned_intHI_type_node);
13830 long_integer_type_internal_node = long_integer_type_node;
13831 long_unsigned_type_internal_node = long_unsigned_type_node;
13832 long_long_integer_type_internal_node = long_long_integer_type_node;
13833 long_long_unsigned_type_internal_node = long_long_unsigned_type_node;
13834 intQI_type_internal_node = intQI_type_node;
13835 uintQI_type_internal_node = unsigned_intQI_type_node;
13836 intHI_type_internal_node = intHI_type_node;
13837 uintHI_type_internal_node = unsigned_intHI_type_node;
13838 intSI_type_internal_node = intSI_type_node;
13839 uintSI_type_internal_node = unsigned_intSI_type_node;
13840 intDI_type_internal_node = intDI_type_node;
13841 uintDI_type_internal_node = unsigned_intDI_type_node;
13842 intTI_type_internal_node = intTI_type_node;
13843 uintTI_type_internal_node = unsigned_intTI_type_node;
13844 float_type_internal_node = float_type_node;
13845 double_type_internal_node = double_type_node;
13846 long_double_type_internal_node = long_double_type_node;
13847 dfloat64_type_internal_node = dfloat64_type_node;
13848 dfloat128_type_internal_node = dfloat128_type_node;
13849 void_type_internal_node = void_type_node;
13851 /* Initialize the modes for builtin_function_type, mapping a machine mode to
13852 tree type node. */
13853 builtin_mode_to_type[QImode][0] = integer_type_node;
13854 builtin_mode_to_type[HImode][0] = integer_type_node;
13855 builtin_mode_to_type[SImode][0] = intSI_type_node;
13856 builtin_mode_to_type[SImode][1] = unsigned_intSI_type_node;
13857 builtin_mode_to_type[DImode][0] = intDI_type_node;
13858 builtin_mode_to_type[DImode][1] = unsigned_intDI_type_node;
13859 builtin_mode_to_type[TImode][0] = intTI_type_node;
13860 builtin_mode_to_type[TImode][1] = unsigned_intTI_type_node;
13861 builtin_mode_to_type[SFmode][0] = float_type_node;
13862 builtin_mode_to_type[DFmode][0] = double_type_node;
13863 builtin_mode_to_type[TFmode][0] = long_double_type_node;
13864 builtin_mode_to_type[DDmode][0] = dfloat64_type_node;
13865 builtin_mode_to_type[TDmode][0] = dfloat128_type_node;
13866 builtin_mode_to_type[V1TImode][0] = V1TI_type_node;
13867 builtin_mode_to_type[V1TImode][1] = unsigned_V1TI_type_node;
13868 builtin_mode_to_type[V2SImode][0] = V2SI_type_node;
13869 builtin_mode_to_type[V2SFmode][0] = V2SF_type_node;
13870 builtin_mode_to_type[V2DImode][0] = V2DI_type_node;
13871 builtin_mode_to_type[V2DImode][1] = unsigned_V2DI_type_node;
13872 builtin_mode_to_type[V2DFmode][0] = V2DF_type_node;
13873 builtin_mode_to_type[V4HImode][0] = V4HI_type_node;
13874 builtin_mode_to_type[V4SImode][0] = V4SI_type_node;
13875 builtin_mode_to_type[V4SImode][1] = unsigned_V4SI_type_node;
13876 builtin_mode_to_type[V4SFmode][0] = V4SF_type_node;
13877 builtin_mode_to_type[V8HImode][0] = V8HI_type_node;
13878 builtin_mode_to_type[V8HImode][1] = unsigned_V8HI_type_node;
13879 builtin_mode_to_type[V16QImode][0] = V16QI_type_node;
13880 builtin_mode_to_type[V16QImode][1] = unsigned_V16QI_type_node;
13882 tdecl = add_builtin_type ("__bool char", bool_char_type_node);
13883 TYPE_NAME (bool_char_type_node) = tdecl;
13885 tdecl = add_builtin_type ("__bool short", bool_short_type_node);
13886 TYPE_NAME (bool_short_type_node) = tdecl;
13888 tdecl = add_builtin_type ("__bool int", bool_int_type_node);
13889 TYPE_NAME (bool_int_type_node) = tdecl;
13891 tdecl = add_builtin_type ("__pixel", pixel_type_node);
13892 TYPE_NAME (pixel_type_node) = tdecl;
13894 bool_V16QI_type_node = build_vector_type (bool_char_type_node, 16);
13895 bool_V8HI_type_node = build_vector_type (bool_short_type_node, 8);
13896 bool_V4SI_type_node = build_vector_type (bool_int_type_node, 4);
13897 bool_V2DI_type_node = build_vector_type (bool_long_type_node, 2);
13898 pixel_V8HI_type_node = build_vector_type (pixel_type_node, 8);
13900 tdecl = add_builtin_type ("__vector unsigned char", unsigned_V16QI_type_node);
13901 TYPE_NAME (unsigned_V16QI_type_node) = tdecl;
13903 tdecl = add_builtin_type ("__vector signed char", V16QI_type_node);
13904 TYPE_NAME (V16QI_type_node) = tdecl;
13906 tdecl = add_builtin_type ("__vector __bool char", bool_V16QI_type_node);
13907 TYPE_NAME ( bool_V16QI_type_node) = tdecl;
13909 tdecl = add_builtin_type ("__vector unsigned short", unsigned_V8HI_type_node);
13910 TYPE_NAME (unsigned_V8HI_type_node) = tdecl;
13912 tdecl = add_builtin_type ("__vector signed short", V8HI_type_node);
13913 TYPE_NAME (V8HI_type_node) = tdecl;
13915 tdecl = add_builtin_type ("__vector __bool short", bool_V8HI_type_node);
13916 TYPE_NAME (bool_V8HI_type_node) = tdecl;
13918 tdecl = add_builtin_type ("__vector unsigned int", unsigned_V4SI_type_node);
13919 TYPE_NAME (unsigned_V4SI_type_node) = tdecl;
13921 tdecl = add_builtin_type ("__vector signed int", V4SI_type_node);
13922 TYPE_NAME (V4SI_type_node) = tdecl;
13924 tdecl = add_builtin_type ("__vector __bool int", bool_V4SI_type_node);
13925 TYPE_NAME (bool_V4SI_type_node) = tdecl;
13927 tdecl = add_builtin_type ("__vector float", V4SF_type_node);
13928 TYPE_NAME (V4SF_type_node) = tdecl;
13930 tdecl = add_builtin_type ("__vector __pixel", pixel_V8HI_type_node);
13931 TYPE_NAME (pixel_V8HI_type_node) = tdecl;
13933 tdecl = add_builtin_type ("__vector double", V2DF_type_node);
13934 TYPE_NAME (V2DF_type_node) = tdecl;
13936 if (TARGET_POWERPC64)
13938 tdecl = add_builtin_type ("__vector long", V2DI_type_node);
13939 TYPE_NAME (V2DI_type_node) = tdecl;
13941 tdecl = add_builtin_type ("__vector unsigned long",
13942 unsigned_V2DI_type_node);
13943 TYPE_NAME (unsigned_V2DI_type_node) = tdecl;
13945 tdecl = add_builtin_type ("__vector __bool long", bool_V2DI_type_node);
13946 TYPE_NAME (bool_V2DI_type_node) = tdecl;
13948 else
13950 tdecl = add_builtin_type ("__vector long long", V2DI_type_node);
13951 TYPE_NAME (V2DI_type_node) = tdecl;
13953 tdecl = add_builtin_type ("__vector unsigned long long",
13954 unsigned_V2DI_type_node);
13955 TYPE_NAME (unsigned_V2DI_type_node) = tdecl;
13957 tdecl = add_builtin_type ("__vector __bool long long",
13958 bool_V2DI_type_node);
13959 TYPE_NAME (bool_V2DI_type_node) = tdecl;
13962 if (V1TI_type_node)
13964 tdecl = add_builtin_type ("__vector __int128", V1TI_type_node);
13965 TYPE_NAME (V1TI_type_node) = tdecl;
13967 tdecl = add_builtin_type ("__vector unsigned __int128",
13968 unsigned_V1TI_type_node);
13969 TYPE_NAME (unsigned_V1TI_type_node) = tdecl;
13972 /* Paired and SPE builtins are only available if you build a compiler with
13973 the appropriate options, so only create those builtins with the
13974 appropriate compiler option. Create Altivec and VSX builtins on machines
13975 with at least the general purpose extensions (970 and newer) to allow the
13976 use of the target attribute. */
13977 if (TARGET_PAIRED_FLOAT)
13978 paired_init_builtins ();
13979 if (TARGET_SPE)
13980 spe_init_builtins ();
13981 if (TARGET_EXTRA_BUILTINS)
13982 altivec_init_builtins ();
13983 if (TARGET_HTM)
13984 htm_init_builtins ();
13986 if (TARGET_EXTRA_BUILTINS || TARGET_SPE || TARGET_PAIRED_FLOAT)
13987 rs6000_common_init_builtins ();
13989 ftype = builtin_function_type (DFmode, DFmode, DFmode, VOIDmode,
13990 RS6000_BUILTIN_RECIP, "__builtin_recipdiv");
13991 def_builtin ("__builtin_recipdiv", ftype, RS6000_BUILTIN_RECIP);
13993 ftype = builtin_function_type (SFmode, SFmode, SFmode, VOIDmode,
13994 RS6000_BUILTIN_RECIPF, "__builtin_recipdivf");
13995 def_builtin ("__builtin_recipdivf", ftype, RS6000_BUILTIN_RECIPF);
13997 ftype = builtin_function_type (DFmode, DFmode, VOIDmode, VOIDmode,
13998 RS6000_BUILTIN_RSQRT, "__builtin_rsqrt");
13999 def_builtin ("__builtin_rsqrt", ftype, RS6000_BUILTIN_RSQRT);
14001 ftype = builtin_function_type (SFmode, SFmode, VOIDmode, VOIDmode,
14002 RS6000_BUILTIN_RSQRTF, "__builtin_rsqrtf");
14003 def_builtin ("__builtin_rsqrtf", ftype, RS6000_BUILTIN_RSQRTF);
14005 mode = (TARGET_64BIT) ? DImode : SImode;
14006 ftype = builtin_function_type (mode, mode, mode, VOIDmode,
14007 POWER7_BUILTIN_BPERMD, "__builtin_bpermd");
14008 def_builtin ("__builtin_bpermd", ftype, POWER7_BUILTIN_BPERMD);
14010 ftype = build_function_type_list (unsigned_intDI_type_node,
14011 NULL_TREE);
14012 def_builtin ("__builtin_ppc_get_timebase", ftype, RS6000_BUILTIN_GET_TB);
14014 if (TARGET_64BIT)
14015 ftype = build_function_type_list (unsigned_intDI_type_node,
14016 NULL_TREE);
14017 else
14018 ftype = build_function_type_list (unsigned_intSI_type_node,
14019 NULL_TREE);
14020 def_builtin ("__builtin_ppc_mftb", ftype, RS6000_BUILTIN_MFTB);
14022 ftype = build_function_type_list (double_type_node, NULL_TREE);
14023 def_builtin ("__builtin_mffs", ftype, RS6000_BUILTIN_MFFS);
14025 ftype = build_function_type_list (void_type_node,
14026 intSI_type_node, double_type_node,
14027 NULL_TREE);
14028 def_builtin ("__builtin_mtfsf", ftype, RS6000_BUILTIN_MTFSF);
14030 #if TARGET_XCOFF
14031 /* AIX libm provides clog as __clog. */
14032 if ((tdecl = builtin_decl_explicit (BUILT_IN_CLOG)) != NULL_TREE)
14033 set_user_assembler_name (tdecl, "__clog");
14034 #endif
14036 #ifdef SUBTARGET_INIT_BUILTINS
14037 SUBTARGET_INIT_BUILTINS;
14038 #endif
14041 /* Returns the rs6000 builtin decl for CODE. */
14043 static tree
14044 rs6000_builtin_decl (unsigned code, bool initialize_p ATTRIBUTE_UNUSED)
14046 HOST_WIDE_INT fnmask;
14048 if (code >= RS6000_BUILTIN_COUNT)
14049 return error_mark_node;
14051 fnmask = rs6000_builtin_info[code].mask;
14052 if ((fnmask & rs6000_builtin_mask) != fnmask)
14054 rs6000_invalid_builtin ((enum rs6000_builtins)code);
14055 return error_mark_node;
14058 return rs6000_builtin_decls[code];
14061 static void
14062 spe_init_builtins (void)
14064 tree puint_type_node = build_pointer_type (unsigned_type_node);
14065 tree pushort_type_node = build_pointer_type (short_unsigned_type_node);
14066 const struct builtin_description *d;
14067 size_t i;
14069 tree v2si_ftype_4_v2si
14070 = build_function_type_list (opaque_V2SI_type_node,
14071 opaque_V2SI_type_node,
14072 opaque_V2SI_type_node,
14073 opaque_V2SI_type_node,
14074 opaque_V2SI_type_node,
14075 NULL_TREE);
14077 tree v2sf_ftype_4_v2sf
14078 = build_function_type_list (opaque_V2SF_type_node,
14079 opaque_V2SF_type_node,
14080 opaque_V2SF_type_node,
14081 opaque_V2SF_type_node,
14082 opaque_V2SF_type_node,
14083 NULL_TREE);
14085 tree int_ftype_int_v2si_v2si
14086 = build_function_type_list (integer_type_node,
14087 integer_type_node,
14088 opaque_V2SI_type_node,
14089 opaque_V2SI_type_node,
14090 NULL_TREE);
14092 tree int_ftype_int_v2sf_v2sf
14093 = build_function_type_list (integer_type_node,
14094 integer_type_node,
14095 opaque_V2SF_type_node,
14096 opaque_V2SF_type_node,
14097 NULL_TREE);
14099 tree void_ftype_v2si_puint_int
14100 = build_function_type_list (void_type_node,
14101 opaque_V2SI_type_node,
14102 puint_type_node,
14103 integer_type_node,
14104 NULL_TREE);
14106 tree void_ftype_v2si_puint_char
14107 = build_function_type_list (void_type_node,
14108 opaque_V2SI_type_node,
14109 puint_type_node,
14110 char_type_node,
14111 NULL_TREE);
14113 tree void_ftype_v2si_pv2si_int
14114 = build_function_type_list (void_type_node,
14115 opaque_V2SI_type_node,
14116 opaque_p_V2SI_type_node,
14117 integer_type_node,
14118 NULL_TREE);
14120 tree void_ftype_v2si_pv2si_char
14121 = build_function_type_list (void_type_node,
14122 opaque_V2SI_type_node,
14123 opaque_p_V2SI_type_node,
14124 char_type_node,
14125 NULL_TREE);
14127 tree void_ftype_int
14128 = build_function_type_list (void_type_node, integer_type_node, NULL_TREE);
14130 tree int_ftype_void
14131 = build_function_type_list (integer_type_node, NULL_TREE);
14133 tree v2si_ftype_pv2si_int
14134 = build_function_type_list (opaque_V2SI_type_node,
14135 opaque_p_V2SI_type_node,
14136 integer_type_node,
14137 NULL_TREE);
14139 tree v2si_ftype_puint_int
14140 = build_function_type_list (opaque_V2SI_type_node,
14141 puint_type_node,
14142 integer_type_node,
14143 NULL_TREE);
14145 tree v2si_ftype_pushort_int
14146 = build_function_type_list (opaque_V2SI_type_node,
14147 pushort_type_node,
14148 integer_type_node,
14149 NULL_TREE);
14151 tree v2si_ftype_signed_char
14152 = build_function_type_list (opaque_V2SI_type_node,
14153 signed_char_type_node,
14154 NULL_TREE);
14156 add_builtin_type ("__ev64_opaque__", opaque_V2SI_type_node);
14158 /* Initialize irregular SPE builtins. */
14160 def_builtin ("__builtin_spe_mtspefscr", void_ftype_int, SPE_BUILTIN_MTSPEFSCR);
14161 def_builtin ("__builtin_spe_mfspefscr", int_ftype_void, SPE_BUILTIN_MFSPEFSCR);
14162 def_builtin ("__builtin_spe_evstddx", void_ftype_v2si_pv2si_int, SPE_BUILTIN_EVSTDDX);
14163 def_builtin ("__builtin_spe_evstdhx", void_ftype_v2si_pv2si_int, SPE_BUILTIN_EVSTDHX);
14164 def_builtin ("__builtin_spe_evstdwx", void_ftype_v2si_pv2si_int, SPE_BUILTIN_EVSTDWX);
14165 def_builtin ("__builtin_spe_evstwhex", void_ftype_v2si_puint_int, SPE_BUILTIN_EVSTWHEX);
14166 def_builtin ("__builtin_spe_evstwhox", void_ftype_v2si_puint_int, SPE_BUILTIN_EVSTWHOX);
14167 def_builtin ("__builtin_spe_evstwwex", void_ftype_v2si_puint_int, SPE_BUILTIN_EVSTWWEX);
14168 def_builtin ("__builtin_spe_evstwwox", void_ftype_v2si_puint_int, SPE_BUILTIN_EVSTWWOX);
14169 def_builtin ("__builtin_spe_evstdd", void_ftype_v2si_pv2si_char, SPE_BUILTIN_EVSTDD);
14170 def_builtin ("__builtin_spe_evstdh", void_ftype_v2si_pv2si_char, SPE_BUILTIN_EVSTDH);
14171 def_builtin ("__builtin_spe_evstdw", void_ftype_v2si_pv2si_char, SPE_BUILTIN_EVSTDW);
14172 def_builtin ("__builtin_spe_evstwhe", void_ftype_v2si_puint_char, SPE_BUILTIN_EVSTWHE);
14173 def_builtin ("__builtin_spe_evstwho", void_ftype_v2si_puint_char, SPE_BUILTIN_EVSTWHO);
14174 def_builtin ("__builtin_spe_evstwwe", void_ftype_v2si_puint_char, SPE_BUILTIN_EVSTWWE);
14175 def_builtin ("__builtin_spe_evstwwo", void_ftype_v2si_puint_char, SPE_BUILTIN_EVSTWWO);
14176 def_builtin ("__builtin_spe_evsplatfi", v2si_ftype_signed_char, SPE_BUILTIN_EVSPLATFI);
14177 def_builtin ("__builtin_spe_evsplati", v2si_ftype_signed_char, SPE_BUILTIN_EVSPLATI);
14179 /* Loads. */
14180 def_builtin ("__builtin_spe_evlddx", v2si_ftype_pv2si_int, SPE_BUILTIN_EVLDDX);
14181 def_builtin ("__builtin_spe_evldwx", v2si_ftype_pv2si_int, SPE_BUILTIN_EVLDWX);
14182 def_builtin ("__builtin_spe_evldhx", v2si_ftype_pv2si_int, SPE_BUILTIN_EVLDHX);
14183 def_builtin ("__builtin_spe_evlwhex", v2si_ftype_puint_int, SPE_BUILTIN_EVLWHEX);
14184 def_builtin ("__builtin_spe_evlwhoux", v2si_ftype_puint_int, SPE_BUILTIN_EVLWHOUX);
14185 def_builtin ("__builtin_spe_evlwhosx", v2si_ftype_puint_int, SPE_BUILTIN_EVLWHOSX);
14186 def_builtin ("__builtin_spe_evlwwsplatx", v2si_ftype_puint_int, SPE_BUILTIN_EVLWWSPLATX);
14187 def_builtin ("__builtin_spe_evlwhsplatx", v2si_ftype_puint_int, SPE_BUILTIN_EVLWHSPLATX);
14188 def_builtin ("__builtin_spe_evlhhesplatx", v2si_ftype_pushort_int, SPE_BUILTIN_EVLHHESPLATX);
14189 def_builtin ("__builtin_spe_evlhhousplatx", v2si_ftype_pushort_int, SPE_BUILTIN_EVLHHOUSPLATX);
14190 def_builtin ("__builtin_spe_evlhhossplatx", v2si_ftype_pushort_int, SPE_BUILTIN_EVLHHOSSPLATX);
14191 def_builtin ("__builtin_spe_evldd", v2si_ftype_pv2si_int, SPE_BUILTIN_EVLDD);
14192 def_builtin ("__builtin_spe_evldw", v2si_ftype_pv2si_int, SPE_BUILTIN_EVLDW);
14193 def_builtin ("__builtin_spe_evldh", v2si_ftype_pv2si_int, SPE_BUILTIN_EVLDH);
14194 def_builtin ("__builtin_spe_evlhhesplat", v2si_ftype_pushort_int, SPE_BUILTIN_EVLHHESPLAT);
14195 def_builtin ("__builtin_spe_evlhhossplat", v2si_ftype_pushort_int, SPE_BUILTIN_EVLHHOSSPLAT);
14196 def_builtin ("__builtin_spe_evlhhousplat", v2si_ftype_pushort_int, SPE_BUILTIN_EVLHHOUSPLAT);
14197 def_builtin ("__builtin_spe_evlwhe", v2si_ftype_puint_int, SPE_BUILTIN_EVLWHE);
14198 def_builtin ("__builtin_spe_evlwhos", v2si_ftype_puint_int, SPE_BUILTIN_EVLWHOS);
14199 def_builtin ("__builtin_spe_evlwhou", v2si_ftype_puint_int, SPE_BUILTIN_EVLWHOU);
14200 def_builtin ("__builtin_spe_evlwhsplat", v2si_ftype_puint_int, SPE_BUILTIN_EVLWHSPLAT);
14201 def_builtin ("__builtin_spe_evlwwsplat", v2si_ftype_puint_int, SPE_BUILTIN_EVLWWSPLAT);
14203 /* Predicates. */
14204 d = bdesc_spe_predicates;
14205 for (i = 0; i < ARRAY_SIZE (bdesc_spe_predicates); ++i, d++)
14207 tree type;
14209 switch (insn_data[d->icode].operand[1].mode)
14211 case V2SImode:
14212 type = int_ftype_int_v2si_v2si;
14213 break;
14214 case V2SFmode:
14215 type = int_ftype_int_v2sf_v2sf;
14216 break;
14217 default:
14218 gcc_unreachable ();
14221 def_builtin (d->name, type, d->code);
14224 /* Evsel predicates. */
14225 d = bdesc_spe_evsel;
14226 for (i = 0; i < ARRAY_SIZE (bdesc_spe_evsel); ++i, d++)
14228 tree type;
14230 switch (insn_data[d->icode].operand[1].mode)
14232 case V2SImode:
14233 type = v2si_ftype_4_v2si;
14234 break;
14235 case V2SFmode:
14236 type = v2sf_ftype_4_v2sf;
14237 break;
14238 default:
14239 gcc_unreachable ();
14242 def_builtin (d->name, type, d->code);
14246 static void
14247 paired_init_builtins (void)
14249 const struct builtin_description *d;
14250 size_t i;
14252 tree int_ftype_int_v2sf_v2sf
14253 = build_function_type_list (integer_type_node,
14254 integer_type_node,
14255 V2SF_type_node,
14256 V2SF_type_node,
14257 NULL_TREE);
14258 tree pcfloat_type_node =
14259 build_pointer_type (build_qualified_type
14260 (float_type_node, TYPE_QUAL_CONST));
14262 tree v2sf_ftype_long_pcfloat = build_function_type_list (V2SF_type_node,
14263 long_integer_type_node,
14264 pcfloat_type_node,
14265 NULL_TREE);
14266 tree void_ftype_v2sf_long_pcfloat =
14267 build_function_type_list (void_type_node,
14268 V2SF_type_node,
14269 long_integer_type_node,
14270 pcfloat_type_node,
14271 NULL_TREE);
14274 def_builtin ("__builtin_paired_lx", v2sf_ftype_long_pcfloat,
14275 PAIRED_BUILTIN_LX);
14278 def_builtin ("__builtin_paired_stx", void_ftype_v2sf_long_pcfloat,
14279 PAIRED_BUILTIN_STX);
14281 /* Predicates. */
14282 d = bdesc_paired_preds;
14283 for (i = 0; i < ARRAY_SIZE (bdesc_paired_preds); ++i, d++)
14285 tree type;
14287 if (TARGET_DEBUG_BUILTIN)
14288 fprintf (stderr, "paired pred #%d, insn = %s [%d], mode = %s\n",
14289 (int)i, get_insn_name (d->icode), (int)d->icode,
14290 GET_MODE_NAME (insn_data[d->icode].operand[1].mode));
14292 switch (insn_data[d->icode].operand[1].mode)
14294 case V2SFmode:
14295 type = int_ftype_int_v2sf_v2sf;
14296 break;
14297 default:
14298 gcc_unreachable ();
14301 def_builtin (d->name, type, d->code);
14305 static void
14306 altivec_init_builtins (void)
14308 const struct builtin_description *d;
14309 size_t i;
14310 tree ftype;
14311 tree decl;
14313 tree pvoid_type_node = build_pointer_type (void_type_node);
14315 tree pcvoid_type_node
14316 = build_pointer_type (build_qualified_type (void_type_node,
14317 TYPE_QUAL_CONST));
14319 tree int_ftype_opaque
14320 = build_function_type_list (integer_type_node,
14321 opaque_V4SI_type_node, NULL_TREE);
14322 tree opaque_ftype_opaque
14323 = build_function_type_list (integer_type_node, NULL_TREE);
14324 tree opaque_ftype_opaque_int
14325 = build_function_type_list (opaque_V4SI_type_node,
14326 opaque_V4SI_type_node, integer_type_node, NULL_TREE);
14327 tree opaque_ftype_opaque_opaque_int
14328 = build_function_type_list (opaque_V4SI_type_node,
14329 opaque_V4SI_type_node, opaque_V4SI_type_node,
14330 integer_type_node, NULL_TREE);
14331 tree int_ftype_int_opaque_opaque
14332 = build_function_type_list (integer_type_node,
14333 integer_type_node, opaque_V4SI_type_node,
14334 opaque_V4SI_type_node, NULL_TREE);
14335 tree int_ftype_int_v4si_v4si
14336 = build_function_type_list (integer_type_node,
14337 integer_type_node, V4SI_type_node,
14338 V4SI_type_node, NULL_TREE);
14339 tree int_ftype_int_v2di_v2di
14340 = build_function_type_list (integer_type_node,
14341 integer_type_node, V2DI_type_node,
14342 V2DI_type_node, NULL_TREE);
14343 tree void_ftype_v4si
14344 = build_function_type_list (void_type_node, V4SI_type_node, NULL_TREE);
14345 tree v8hi_ftype_void
14346 = build_function_type_list (V8HI_type_node, NULL_TREE);
14347 tree void_ftype_void
14348 = build_function_type_list (void_type_node, NULL_TREE);
14349 tree void_ftype_int
14350 = build_function_type_list (void_type_node, integer_type_node, NULL_TREE);
14352 tree opaque_ftype_long_pcvoid
14353 = build_function_type_list (opaque_V4SI_type_node,
14354 long_integer_type_node, pcvoid_type_node,
14355 NULL_TREE);
14356 tree v16qi_ftype_long_pcvoid
14357 = build_function_type_list (V16QI_type_node,
14358 long_integer_type_node, pcvoid_type_node,
14359 NULL_TREE);
14360 tree v8hi_ftype_long_pcvoid
14361 = build_function_type_list (V8HI_type_node,
14362 long_integer_type_node, pcvoid_type_node,
14363 NULL_TREE);
14364 tree v4si_ftype_long_pcvoid
14365 = build_function_type_list (V4SI_type_node,
14366 long_integer_type_node, pcvoid_type_node,
14367 NULL_TREE);
14368 tree v4sf_ftype_long_pcvoid
14369 = build_function_type_list (V4SF_type_node,
14370 long_integer_type_node, pcvoid_type_node,
14371 NULL_TREE);
14372 tree v2df_ftype_long_pcvoid
14373 = build_function_type_list (V2DF_type_node,
14374 long_integer_type_node, pcvoid_type_node,
14375 NULL_TREE);
14376 tree v2di_ftype_long_pcvoid
14377 = build_function_type_list (V2DI_type_node,
14378 long_integer_type_node, pcvoid_type_node,
14379 NULL_TREE);
14381 tree void_ftype_opaque_long_pvoid
14382 = build_function_type_list (void_type_node,
14383 opaque_V4SI_type_node, long_integer_type_node,
14384 pvoid_type_node, NULL_TREE);
14385 tree void_ftype_v4si_long_pvoid
14386 = build_function_type_list (void_type_node,
14387 V4SI_type_node, long_integer_type_node,
14388 pvoid_type_node, NULL_TREE);
14389 tree void_ftype_v16qi_long_pvoid
14390 = build_function_type_list (void_type_node,
14391 V16QI_type_node, long_integer_type_node,
14392 pvoid_type_node, NULL_TREE);
14393 tree void_ftype_v8hi_long_pvoid
14394 = build_function_type_list (void_type_node,
14395 V8HI_type_node, long_integer_type_node,
14396 pvoid_type_node, NULL_TREE);
14397 tree void_ftype_v4sf_long_pvoid
14398 = build_function_type_list (void_type_node,
14399 V4SF_type_node, long_integer_type_node,
14400 pvoid_type_node, NULL_TREE);
14401 tree void_ftype_v2df_long_pvoid
14402 = build_function_type_list (void_type_node,
14403 V2DF_type_node, long_integer_type_node,
14404 pvoid_type_node, NULL_TREE);
14405 tree void_ftype_v2di_long_pvoid
14406 = build_function_type_list (void_type_node,
14407 V2DI_type_node, long_integer_type_node,
14408 pvoid_type_node, NULL_TREE);
14409 tree int_ftype_int_v8hi_v8hi
14410 = build_function_type_list (integer_type_node,
14411 integer_type_node, V8HI_type_node,
14412 V8HI_type_node, NULL_TREE);
14413 tree int_ftype_int_v16qi_v16qi
14414 = build_function_type_list (integer_type_node,
14415 integer_type_node, V16QI_type_node,
14416 V16QI_type_node, NULL_TREE);
14417 tree int_ftype_int_v4sf_v4sf
14418 = build_function_type_list (integer_type_node,
14419 integer_type_node, V4SF_type_node,
14420 V4SF_type_node, NULL_TREE);
14421 tree int_ftype_int_v2df_v2df
14422 = build_function_type_list (integer_type_node,
14423 integer_type_node, V2DF_type_node,
14424 V2DF_type_node, NULL_TREE);
14425 tree v2di_ftype_v2di
14426 = build_function_type_list (V2DI_type_node, V2DI_type_node, NULL_TREE);
14427 tree v4si_ftype_v4si
14428 = build_function_type_list (V4SI_type_node, V4SI_type_node, NULL_TREE);
14429 tree v8hi_ftype_v8hi
14430 = build_function_type_list (V8HI_type_node, V8HI_type_node, NULL_TREE);
14431 tree v16qi_ftype_v16qi
14432 = build_function_type_list (V16QI_type_node, V16QI_type_node, NULL_TREE);
14433 tree v4sf_ftype_v4sf
14434 = build_function_type_list (V4SF_type_node, V4SF_type_node, NULL_TREE);
14435 tree v2df_ftype_v2df
14436 = build_function_type_list (V2DF_type_node, V2DF_type_node, NULL_TREE);
14437 tree void_ftype_pcvoid_int_int
14438 = build_function_type_list (void_type_node,
14439 pcvoid_type_node, integer_type_node,
14440 integer_type_node, NULL_TREE);
14442 def_builtin ("__builtin_altivec_mtvscr", void_ftype_v4si, ALTIVEC_BUILTIN_MTVSCR);
14443 def_builtin ("__builtin_altivec_mfvscr", v8hi_ftype_void, ALTIVEC_BUILTIN_MFVSCR);
14444 def_builtin ("__builtin_altivec_dssall", void_ftype_void, ALTIVEC_BUILTIN_DSSALL);
14445 def_builtin ("__builtin_altivec_dss", void_ftype_int, ALTIVEC_BUILTIN_DSS);
14446 def_builtin ("__builtin_altivec_lvsl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVSL);
14447 def_builtin ("__builtin_altivec_lvsr", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVSR);
14448 def_builtin ("__builtin_altivec_lvebx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVEBX);
14449 def_builtin ("__builtin_altivec_lvehx", v8hi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVEHX);
14450 def_builtin ("__builtin_altivec_lvewx", v4si_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVEWX);
14451 def_builtin ("__builtin_altivec_lvxl", v4si_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVXL);
14452 def_builtin ("__builtin_altivec_lvxl_v2df", v2df_ftype_long_pcvoid,
14453 ALTIVEC_BUILTIN_LVXL_V2DF);
14454 def_builtin ("__builtin_altivec_lvxl_v2di", v2di_ftype_long_pcvoid,
14455 ALTIVEC_BUILTIN_LVXL_V2DI);
14456 def_builtin ("__builtin_altivec_lvxl_v4sf", v4sf_ftype_long_pcvoid,
14457 ALTIVEC_BUILTIN_LVXL_V4SF);
14458 def_builtin ("__builtin_altivec_lvxl_v4si", v4si_ftype_long_pcvoid,
14459 ALTIVEC_BUILTIN_LVXL_V4SI);
14460 def_builtin ("__builtin_altivec_lvxl_v8hi", v8hi_ftype_long_pcvoid,
14461 ALTIVEC_BUILTIN_LVXL_V8HI);
14462 def_builtin ("__builtin_altivec_lvxl_v16qi", v16qi_ftype_long_pcvoid,
14463 ALTIVEC_BUILTIN_LVXL_V16QI);
14464 def_builtin ("__builtin_altivec_lvx", v4si_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVX);
14465 def_builtin ("__builtin_altivec_lvx_v2df", v2df_ftype_long_pcvoid,
14466 ALTIVEC_BUILTIN_LVX_V2DF);
14467 def_builtin ("__builtin_altivec_lvx_v2di", v2di_ftype_long_pcvoid,
14468 ALTIVEC_BUILTIN_LVX_V2DI);
14469 def_builtin ("__builtin_altivec_lvx_v4sf", v4sf_ftype_long_pcvoid,
14470 ALTIVEC_BUILTIN_LVX_V4SF);
14471 def_builtin ("__builtin_altivec_lvx_v4si", v4si_ftype_long_pcvoid,
14472 ALTIVEC_BUILTIN_LVX_V4SI);
14473 def_builtin ("__builtin_altivec_lvx_v8hi", v8hi_ftype_long_pcvoid,
14474 ALTIVEC_BUILTIN_LVX_V8HI);
14475 def_builtin ("__builtin_altivec_lvx_v16qi", v16qi_ftype_long_pcvoid,
14476 ALTIVEC_BUILTIN_LVX_V16QI);
14477 def_builtin ("__builtin_altivec_stvx", void_ftype_v4si_long_pvoid, ALTIVEC_BUILTIN_STVX);
14478 def_builtin ("__builtin_altivec_stvx_v2df", void_ftype_v2df_long_pvoid,
14479 ALTIVEC_BUILTIN_STVX_V2DF);
14480 def_builtin ("__builtin_altivec_stvx_v2di", void_ftype_v2di_long_pvoid,
14481 ALTIVEC_BUILTIN_STVX_V2DI);
14482 def_builtin ("__builtin_altivec_stvx_v4sf", void_ftype_v4sf_long_pvoid,
14483 ALTIVEC_BUILTIN_STVX_V4SF);
14484 def_builtin ("__builtin_altivec_stvx_v4si", void_ftype_v4si_long_pvoid,
14485 ALTIVEC_BUILTIN_STVX_V4SI);
14486 def_builtin ("__builtin_altivec_stvx_v8hi", void_ftype_v8hi_long_pvoid,
14487 ALTIVEC_BUILTIN_STVX_V8HI);
14488 def_builtin ("__builtin_altivec_stvx_v16qi", void_ftype_v16qi_long_pvoid,
14489 ALTIVEC_BUILTIN_STVX_V16QI);
14490 def_builtin ("__builtin_altivec_stvewx", void_ftype_v4si_long_pvoid, ALTIVEC_BUILTIN_STVEWX);
14491 def_builtin ("__builtin_altivec_stvxl", void_ftype_v4si_long_pvoid, ALTIVEC_BUILTIN_STVXL);
14492 def_builtin ("__builtin_altivec_stvxl_v2df", void_ftype_v2df_long_pvoid,
14493 ALTIVEC_BUILTIN_STVXL_V2DF);
14494 def_builtin ("__builtin_altivec_stvxl_v2di", void_ftype_v2di_long_pvoid,
14495 ALTIVEC_BUILTIN_STVXL_V2DI);
14496 def_builtin ("__builtin_altivec_stvxl_v4sf", void_ftype_v4sf_long_pvoid,
14497 ALTIVEC_BUILTIN_STVXL_V4SF);
14498 def_builtin ("__builtin_altivec_stvxl_v4si", void_ftype_v4si_long_pvoid,
14499 ALTIVEC_BUILTIN_STVXL_V4SI);
14500 def_builtin ("__builtin_altivec_stvxl_v8hi", void_ftype_v8hi_long_pvoid,
14501 ALTIVEC_BUILTIN_STVXL_V8HI);
14502 def_builtin ("__builtin_altivec_stvxl_v16qi", void_ftype_v16qi_long_pvoid,
14503 ALTIVEC_BUILTIN_STVXL_V16QI);
14504 def_builtin ("__builtin_altivec_stvebx", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_STVEBX);
14505 def_builtin ("__builtin_altivec_stvehx", void_ftype_v8hi_long_pvoid, ALTIVEC_BUILTIN_STVEHX);
14506 def_builtin ("__builtin_vec_ld", opaque_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LD);
14507 def_builtin ("__builtin_vec_lde", opaque_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LDE);
14508 def_builtin ("__builtin_vec_ldl", opaque_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LDL);
14509 def_builtin ("__builtin_vec_lvsl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVSL);
14510 def_builtin ("__builtin_vec_lvsr", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVSR);
14511 def_builtin ("__builtin_vec_lvebx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVEBX);
14512 def_builtin ("__builtin_vec_lvehx", v8hi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVEHX);
14513 def_builtin ("__builtin_vec_lvewx", v4si_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVEWX);
14514 def_builtin ("__builtin_vec_st", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_ST);
14515 def_builtin ("__builtin_vec_ste", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_STE);
14516 def_builtin ("__builtin_vec_stl", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_STL);
14517 def_builtin ("__builtin_vec_stvewx", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_STVEWX);
14518 def_builtin ("__builtin_vec_stvebx", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_STVEBX);
14519 def_builtin ("__builtin_vec_stvehx", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_STVEHX);
14521 def_builtin ("__builtin_vsx_lxvd2x_v2df", v2df_ftype_long_pcvoid,
14522 VSX_BUILTIN_LXVD2X_V2DF);
14523 def_builtin ("__builtin_vsx_lxvd2x_v2di", v2di_ftype_long_pcvoid,
14524 VSX_BUILTIN_LXVD2X_V2DI);
14525 def_builtin ("__builtin_vsx_lxvw4x_v4sf", v4sf_ftype_long_pcvoid,
14526 VSX_BUILTIN_LXVW4X_V4SF);
14527 def_builtin ("__builtin_vsx_lxvw4x_v4si", v4si_ftype_long_pcvoid,
14528 VSX_BUILTIN_LXVW4X_V4SI);
14529 def_builtin ("__builtin_vsx_lxvw4x_v8hi", v8hi_ftype_long_pcvoid,
14530 VSX_BUILTIN_LXVW4X_V8HI);
14531 def_builtin ("__builtin_vsx_lxvw4x_v16qi", v16qi_ftype_long_pcvoid,
14532 VSX_BUILTIN_LXVW4X_V16QI);
14533 def_builtin ("__builtin_vsx_stxvd2x_v2df", void_ftype_v2df_long_pvoid,
14534 VSX_BUILTIN_STXVD2X_V2DF);
14535 def_builtin ("__builtin_vsx_stxvd2x_v2di", void_ftype_v2di_long_pvoid,
14536 VSX_BUILTIN_STXVD2X_V2DI);
14537 def_builtin ("__builtin_vsx_stxvw4x_v4sf", void_ftype_v4sf_long_pvoid,
14538 VSX_BUILTIN_STXVW4X_V4SF);
14539 def_builtin ("__builtin_vsx_stxvw4x_v4si", void_ftype_v4si_long_pvoid,
14540 VSX_BUILTIN_STXVW4X_V4SI);
14541 def_builtin ("__builtin_vsx_stxvw4x_v8hi", void_ftype_v8hi_long_pvoid,
14542 VSX_BUILTIN_STXVW4X_V8HI);
14543 def_builtin ("__builtin_vsx_stxvw4x_v16qi", void_ftype_v16qi_long_pvoid,
14544 VSX_BUILTIN_STXVW4X_V16QI);
14545 def_builtin ("__builtin_vec_vsx_ld", opaque_ftype_long_pcvoid,
14546 VSX_BUILTIN_VEC_LD);
14547 def_builtin ("__builtin_vec_vsx_st", void_ftype_opaque_long_pvoid,
14548 VSX_BUILTIN_VEC_ST);
14550 def_builtin ("__builtin_vec_step", int_ftype_opaque, ALTIVEC_BUILTIN_VEC_STEP);
14551 def_builtin ("__builtin_vec_splats", opaque_ftype_opaque, ALTIVEC_BUILTIN_VEC_SPLATS);
14552 def_builtin ("__builtin_vec_promote", opaque_ftype_opaque, ALTIVEC_BUILTIN_VEC_PROMOTE);
14554 def_builtin ("__builtin_vec_sld", opaque_ftype_opaque_opaque_int, ALTIVEC_BUILTIN_VEC_SLD);
14555 def_builtin ("__builtin_vec_splat", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_SPLAT);
14556 def_builtin ("__builtin_vec_extract", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_EXTRACT);
14557 def_builtin ("__builtin_vec_insert", opaque_ftype_opaque_opaque_int, ALTIVEC_BUILTIN_VEC_INSERT);
14558 def_builtin ("__builtin_vec_vspltw", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_VSPLTW);
14559 def_builtin ("__builtin_vec_vsplth", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_VSPLTH);
14560 def_builtin ("__builtin_vec_vspltb", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_VSPLTB);
14561 def_builtin ("__builtin_vec_ctf", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_CTF);
14562 def_builtin ("__builtin_vec_vcfsx", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_VCFSX);
14563 def_builtin ("__builtin_vec_vcfux", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_VCFUX);
14564 def_builtin ("__builtin_vec_cts", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_CTS);
14565 def_builtin ("__builtin_vec_ctu", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_CTU);
14567 /* Cell builtins. */
14568 def_builtin ("__builtin_altivec_lvlx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVLX);
14569 def_builtin ("__builtin_altivec_lvlxl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVLXL);
14570 def_builtin ("__builtin_altivec_lvrx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVRX);
14571 def_builtin ("__builtin_altivec_lvrxl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVRXL);
14573 def_builtin ("__builtin_vec_lvlx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVLX);
14574 def_builtin ("__builtin_vec_lvlxl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVLXL);
14575 def_builtin ("__builtin_vec_lvrx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVRX);
14576 def_builtin ("__builtin_vec_lvrxl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVRXL);
14578 def_builtin ("__builtin_altivec_stvlx", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_STVLX);
14579 def_builtin ("__builtin_altivec_stvlxl", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_STVLXL);
14580 def_builtin ("__builtin_altivec_stvrx", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_STVRX);
14581 def_builtin ("__builtin_altivec_stvrxl", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_STVRXL);
14583 def_builtin ("__builtin_vec_stvlx", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_VEC_STVLX);
14584 def_builtin ("__builtin_vec_stvlxl", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_VEC_STVLXL);
14585 def_builtin ("__builtin_vec_stvrx", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_VEC_STVRX);
14586 def_builtin ("__builtin_vec_stvrxl", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_VEC_STVRXL);
14588 /* Add the DST variants. */
14589 d = bdesc_dst;
14590 for (i = 0; i < ARRAY_SIZE (bdesc_dst); i++, d++)
14591 def_builtin (d->name, void_ftype_pcvoid_int_int, d->code);
14593 /* Initialize the predicates. */
14594 d = bdesc_altivec_preds;
14595 for (i = 0; i < ARRAY_SIZE (bdesc_altivec_preds); i++, d++)
14597 enum machine_mode mode1;
14598 tree type;
14600 if (rs6000_overloaded_builtin_p (d->code))
14601 mode1 = VOIDmode;
14602 else
14603 mode1 = insn_data[d->icode].operand[1].mode;
14605 switch (mode1)
14607 case VOIDmode:
14608 type = int_ftype_int_opaque_opaque;
14609 break;
14610 case V2DImode:
14611 type = int_ftype_int_v2di_v2di;
14612 break;
14613 case V4SImode:
14614 type = int_ftype_int_v4si_v4si;
14615 break;
14616 case V8HImode:
14617 type = int_ftype_int_v8hi_v8hi;
14618 break;
14619 case V16QImode:
14620 type = int_ftype_int_v16qi_v16qi;
14621 break;
14622 case V4SFmode:
14623 type = int_ftype_int_v4sf_v4sf;
14624 break;
14625 case V2DFmode:
14626 type = int_ftype_int_v2df_v2df;
14627 break;
14628 default:
14629 gcc_unreachable ();
14632 def_builtin (d->name, type, d->code);
14635 /* Initialize the abs* operators. */
14636 d = bdesc_abs;
14637 for (i = 0; i < ARRAY_SIZE (bdesc_abs); i++, d++)
14639 enum machine_mode mode0;
14640 tree type;
14642 mode0 = insn_data[d->icode].operand[0].mode;
14644 switch (mode0)
14646 case V2DImode:
14647 type = v2di_ftype_v2di;
14648 break;
14649 case V4SImode:
14650 type = v4si_ftype_v4si;
14651 break;
14652 case V8HImode:
14653 type = v8hi_ftype_v8hi;
14654 break;
14655 case V16QImode:
14656 type = v16qi_ftype_v16qi;
14657 break;
14658 case V4SFmode:
14659 type = v4sf_ftype_v4sf;
14660 break;
14661 case V2DFmode:
14662 type = v2df_ftype_v2df;
14663 break;
14664 default:
14665 gcc_unreachable ();
14668 def_builtin (d->name, type, d->code);
14671 /* Initialize target builtin that implements
14672 targetm.vectorize.builtin_mask_for_load. */
14674 decl = add_builtin_function ("__builtin_altivec_mask_for_load",
14675 v16qi_ftype_long_pcvoid,
14676 ALTIVEC_BUILTIN_MASK_FOR_LOAD,
14677 BUILT_IN_MD, NULL, NULL_TREE);
14678 TREE_READONLY (decl) = 1;
14679 /* Record the decl. Will be used by rs6000_builtin_mask_for_load. */
14680 altivec_builtin_mask_for_load = decl;
14682 /* Access to the vec_init patterns. */
14683 ftype = build_function_type_list (V4SI_type_node, integer_type_node,
14684 integer_type_node, integer_type_node,
14685 integer_type_node, NULL_TREE);
14686 def_builtin ("__builtin_vec_init_v4si", ftype, ALTIVEC_BUILTIN_VEC_INIT_V4SI);
14688 ftype = build_function_type_list (V8HI_type_node, short_integer_type_node,
14689 short_integer_type_node,
14690 short_integer_type_node,
14691 short_integer_type_node,
14692 short_integer_type_node,
14693 short_integer_type_node,
14694 short_integer_type_node,
14695 short_integer_type_node, NULL_TREE);
14696 def_builtin ("__builtin_vec_init_v8hi", ftype, ALTIVEC_BUILTIN_VEC_INIT_V8HI);
14698 ftype = build_function_type_list (V16QI_type_node, char_type_node,
14699 char_type_node, char_type_node,
14700 char_type_node, char_type_node,
14701 char_type_node, char_type_node,
14702 char_type_node, char_type_node,
14703 char_type_node, char_type_node,
14704 char_type_node, char_type_node,
14705 char_type_node, char_type_node,
14706 char_type_node, NULL_TREE);
14707 def_builtin ("__builtin_vec_init_v16qi", ftype,
14708 ALTIVEC_BUILTIN_VEC_INIT_V16QI);
14710 ftype = build_function_type_list (V4SF_type_node, float_type_node,
14711 float_type_node, float_type_node,
14712 float_type_node, NULL_TREE);
14713 def_builtin ("__builtin_vec_init_v4sf", ftype, ALTIVEC_BUILTIN_VEC_INIT_V4SF);
14715 /* VSX builtins. */
14716 ftype = build_function_type_list (V2DF_type_node, double_type_node,
14717 double_type_node, NULL_TREE);
14718 def_builtin ("__builtin_vec_init_v2df", ftype, VSX_BUILTIN_VEC_INIT_V2DF);
14720 ftype = build_function_type_list (V2DI_type_node, intDI_type_node,
14721 intDI_type_node, NULL_TREE);
14722 def_builtin ("__builtin_vec_init_v2di", ftype, VSX_BUILTIN_VEC_INIT_V2DI);
14724 /* Access to the vec_set patterns. */
14725 ftype = build_function_type_list (V4SI_type_node, V4SI_type_node,
14726 intSI_type_node,
14727 integer_type_node, NULL_TREE);
14728 def_builtin ("__builtin_vec_set_v4si", ftype, ALTIVEC_BUILTIN_VEC_SET_V4SI);
14730 ftype = build_function_type_list (V8HI_type_node, V8HI_type_node,
14731 intHI_type_node,
14732 integer_type_node, NULL_TREE);
14733 def_builtin ("__builtin_vec_set_v8hi", ftype, ALTIVEC_BUILTIN_VEC_SET_V8HI);
14735 ftype = build_function_type_list (V16QI_type_node, V16QI_type_node,
14736 intQI_type_node,
14737 integer_type_node, NULL_TREE);
14738 def_builtin ("__builtin_vec_set_v16qi", ftype, ALTIVEC_BUILTIN_VEC_SET_V16QI);
14740 ftype = build_function_type_list (V4SF_type_node, V4SF_type_node,
14741 float_type_node,
14742 integer_type_node, NULL_TREE);
14743 def_builtin ("__builtin_vec_set_v4sf", ftype, ALTIVEC_BUILTIN_VEC_SET_V4SF);
14745 ftype = build_function_type_list (V2DF_type_node, V2DF_type_node,
14746 double_type_node,
14747 integer_type_node, NULL_TREE);
14748 def_builtin ("__builtin_vec_set_v2df", ftype, VSX_BUILTIN_VEC_SET_V2DF);
14750 ftype = build_function_type_list (V2DI_type_node, V2DI_type_node,
14751 intDI_type_node,
14752 integer_type_node, NULL_TREE);
14753 def_builtin ("__builtin_vec_set_v2di", ftype, VSX_BUILTIN_VEC_SET_V2DI);
14755 /* Access to the vec_extract patterns. */
14756 ftype = build_function_type_list (intSI_type_node, V4SI_type_node,
14757 integer_type_node, NULL_TREE);
14758 def_builtin ("__builtin_vec_ext_v4si", ftype, ALTIVEC_BUILTIN_VEC_EXT_V4SI);
14760 ftype = build_function_type_list (intHI_type_node, V8HI_type_node,
14761 integer_type_node, NULL_TREE);
14762 def_builtin ("__builtin_vec_ext_v8hi", ftype, ALTIVEC_BUILTIN_VEC_EXT_V8HI);
14764 ftype = build_function_type_list (intQI_type_node, V16QI_type_node,
14765 integer_type_node, NULL_TREE);
14766 def_builtin ("__builtin_vec_ext_v16qi", ftype, ALTIVEC_BUILTIN_VEC_EXT_V16QI);
14768 ftype = build_function_type_list (float_type_node, V4SF_type_node,
14769 integer_type_node, NULL_TREE);
14770 def_builtin ("__builtin_vec_ext_v4sf", ftype, ALTIVEC_BUILTIN_VEC_EXT_V4SF);
14772 ftype = build_function_type_list (double_type_node, V2DF_type_node,
14773 integer_type_node, NULL_TREE);
14774 def_builtin ("__builtin_vec_ext_v2df", ftype, VSX_BUILTIN_VEC_EXT_V2DF);
14776 ftype = build_function_type_list (intDI_type_node, V2DI_type_node,
14777 integer_type_node, NULL_TREE);
14778 def_builtin ("__builtin_vec_ext_v2di", ftype, VSX_BUILTIN_VEC_EXT_V2DI);
14781 if (V1TI_type_node)
14783 tree v1ti_ftype_long_pcvoid
14784 = build_function_type_list (V1TI_type_node,
14785 long_integer_type_node, pcvoid_type_node,
14786 NULL_TREE);
14787 tree void_ftype_v1ti_long_pvoid
14788 = build_function_type_list (void_type_node,
14789 V1TI_type_node, long_integer_type_node,
14790 pvoid_type_node, NULL_TREE);
14791 def_builtin ("__builtin_vsx_lxvd2x_v1ti", v1ti_ftype_long_pcvoid,
14792 VSX_BUILTIN_LXVD2X_V1TI);
14793 def_builtin ("__builtin_vsx_stxvd2x_v1ti", void_ftype_v1ti_long_pvoid,
14794 VSX_BUILTIN_STXVD2X_V1TI);
14795 ftype = build_function_type_list (V1TI_type_node, intTI_type_node,
14796 NULL_TREE, NULL_TREE);
14797 def_builtin ("__builtin_vec_init_v1ti", ftype, VSX_BUILTIN_VEC_INIT_V1TI);
14798 ftype = build_function_type_list (V1TI_type_node, V1TI_type_node,
14799 intTI_type_node,
14800 integer_type_node, NULL_TREE);
14801 def_builtin ("__builtin_vec_set_v1ti", ftype, VSX_BUILTIN_VEC_SET_V1TI);
14802 ftype = build_function_type_list (intTI_type_node, V1TI_type_node,
14803 integer_type_node, NULL_TREE);
14804 def_builtin ("__builtin_vec_ext_v1ti", ftype, VSX_BUILTIN_VEC_EXT_V1TI);
14809 static void
14810 htm_init_builtins (void)
14812 HOST_WIDE_INT builtin_mask = rs6000_builtin_mask;
14813 const struct builtin_description *d;
14814 size_t i;
14816 d = bdesc_htm;
14817 for (i = 0; i < ARRAY_SIZE (bdesc_htm); i++, d++)
14819 tree op[MAX_HTM_OPERANDS], type;
14820 HOST_WIDE_INT mask = d->mask;
14821 unsigned attr = rs6000_builtin_info[d->code].attr;
14822 bool void_func = (attr & RS6000_BTC_VOID);
14823 int attr_args = (attr & RS6000_BTC_TYPE_MASK);
14824 int nopnds = 0;
14825 tree argtype = (attr & RS6000_BTC_SPR) ? long_unsigned_type_node
14826 : unsigned_type_node;
14828 if ((mask & builtin_mask) != mask)
14830 if (TARGET_DEBUG_BUILTIN)
14831 fprintf (stderr, "htm_builtin, skip binary %s\n", d->name);
14832 continue;
14835 if (d->name == 0)
14837 if (TARGET_DEBUG_BUILTIN)
14838 fprintf (stderr, "htm_builtin, bdesc_htm[%ld] no name\n",
14839 (long unsigned) i);
14840 continue;
14843 op[nopnds++] = (void_func) ? void_type_node : argtype;
14845 if (attr_args == RS6000_BTC_UNARY)
14846 op[nopnds++] = argtype;
14847 else if (attr_args == RS6000_BTC_BINARY)
14849 op[nopnds++] = argtype;
14850 op[nopnds++] = argtype;
14852 else if (attr_args == RS6000_BTC_TERNARY)
14854 op[nopnds++] = argtype;
14855 op[nopnds++] = argtype;
14856 op[nopnds++] = argtype;
14859 switch (nopnds)
14861 case 1:
14862 type = build_function_type_list (op[0], NULL_TREE);
14863 break;
14864 case 2:
14865 type = build_function_type_list (op[0], op[1], NULL_TREE);
14866 break;
14867 case 3:
14868 type = build_function_type_list (op[0], op[1], op[2], NULL_TREE);
14869 break;
14870 case 4:
14871 type = build_function_type_list (op[0], op[1], op[2], op[3],
14872 NULL_TREE);
14873 break;
14874 default:
14875 gcc_unreachable ();
14878 def_builtin (d->name, type, d->code);
14882 /* Hash function for builtin functions with up to 3 arguments and a return
14883 type. */
14884 static unsigned
14885 builtin_hash_function (const void *hash_entry)
14887 unsigned ret = 0;
14888 int i;
14889 const struct builtin_hash_struct *bh =
14890 (const struct builtin_hash_struct *) hash_entry;
14892 for (i = 0; i < 4; i++)
14894 ret = (ret * (unsigned)MAX_MACHINE_MODE) + ((unsigned)bh->mode[i]);
14895 ret = (ret * 2) + bh->uns_p[i];
14898 return ret;
14901 /* Compare builtin hash entries H1 and H2 for equivalence. */
14902 static int
14903 builtin_hash_eq (const void *h1, const void *h2)
14905 const struct builtin_hash_struct *p1 = (const struct builtin_hash_struct *) h1;
14906 const struct builtin_hash_struct *p2 = (const struct builtin_hash_struct *) h2;
14908 return ((p1->mode[0] == p2->mode[0])
14909 && (p1->mode[1] == p2->mode[1])
14910 && (p1->mode[2] == p2->mode[2])
14911 && (p1->mode[3] == p2->mode[3])
14912 && (p1->uns_p[0] == p2->uns_p[0])
14913 && (p1->uns_p[1] == p2->uns_p[1])
14914 && (p1->uns_p[2] == p2->uns_p[2])
14915 && (p1->uns_p[3] == p2->uns_p[3]));
14918 /* Map types for builtin functions with an explicit return type and up to 3
14919 arguments. Functions with fewer than 3 arguments use VOIDmode as the type
14920 of the argument. */
14921 static tree
14922 builtin_function_type (enum machine_mode mode_ret, enum machine_mode mode_arg0,
14923 enum machine_mode mode_arg1, enum machine_mode mode_arg2,
14924 enum rs6000_builtins builtin, const char *name)
14926 struct builtin_hash_struct h;
14927 struct builtin_hash_struct *h2;
14928 void **found;
14929 int num_args = 3;
14930 int i;
14931 tree ret_type = NULL_TREE;
14932 tree arg_type[3] = { NULL_TREE, NULL_TREE, NULL_TREE };
14934 /* Create builtin_hash_table. */
14935 if (builtin_hash_table == NULL)
14936 builtin_hash_table = htab_create_ggc (1500, builtin_hash_function,
14937 builtin_hash_eq, NULL);
14939 h.type = NULL_TREE;
14940 h.mode[0] = mode_ret;
14941 h.mode[1] = mode_arg0;
14942 h.mode[2] = mode_arg1;
14943 h.mode[3] = mode_arg2;
14944 h.uns_p[0] = 0;
14945 h.uns_p[1] = 0;
14946 h.uns_p[2] = 0;
14947 h.uns_p[3] = 0;
14949 /* If the builtin is a type that produces unsigned results or takes unsigned
14950 arguments, and it is returned as a decl for the vectorizer (such as
14951 widening multiplies, permute), make sure the arguments and return value
14952 are type correct. */
14953 switch (builtin)
14955 /* unsigned 1 argument functions. */
14956 case CRYPTO_BUILTIN_VSBOX:
14957 case P8V_BUILTIN_VGBBD:
14958 case MISC_BUILTIN_CDTBCD:
14959 case MISC_BUILTIN_CBCDTD:
14960 h.uns_p[0] = 1;
14961 h.uns_p[1] = 1;
14962 break;
14964 /* unsigned 2 argument functions. */
14965 case ALTIVEC_BUILTIN_VMULEUB_UNS:
14966 case ALTIVEC_BUILTIN_VMULEUH_UNS:
14967 case ALTIVEC_BUILTIN_VMULOUB_UNS:
14968 case ALTIVEC_BUILTIN_VMULOUH_UNS:
14969 case CRYPTO_BUILTIN_VCIPHER:
14970 case CRYPTO_BUILTIN_VCIPHERLAST:
14971 case CRYPTO_BUILTIN_VNCIPHER:
14972 case CRYPTO_BUILTIN_VNCIPHERLAST:
14973 case CRYPTO_BUILTIN_VPMSUMB:
14974 case CRYPTO_BUILTIN_VPMSUMH:
14975 case CRYPTO_BUILTIN_VPMSUMW:
14976 case CRYPTO_BUILTIN_VPMSUMD:
14977 case CRYPTO_BUILTIN_VPMSUM:
14978 case MISC_BUILTIN_ADDG6S:
14979 case MISC_BUILTIN_DIVWEU:
14980 case MISC_BUILTIN_DIVWEUO:
14981 case MISC_BUILTIN_DIVDEU:
14982 case MISC_BUILTIN_DIVDEUO:
14983 h.uns_p[0] = 1;
14984 h.uns_p[1] = 1;
14985 h.uns_p[2] = 1;
14986 break;
14988 /* unsigned 3 argument functions. */
14989 case ALTIVEC_BUILTIN_VPERM_16QI_UNS:
14990 case ALTIVEC_BUILTIN_VPERM_8HI_UNS:
14991 case ALTIVEC_BUILTIN_VPERM_4SI_UNS:
14992 case ALTIVEC_BUILTIN_VPERM_2DI_UNS:
14993 case ALTIVEC_BUILTIN_VSEL_16QI_UNS:
14994 case ALTIVEC_BUILTIN_VSEL_8HI_UNS:
14995 case ALTIVEC_BUILTIN_VSEL_4SI_UNS:
14996 case ALTIVEC_BUILTIN_VSEL_2DI_UNS:
14997 case VSX_BUILTIN_VPERM_16QI_UNS:
14998 case VSX_BUILTIN_VPERM_8HI_UNS:
14999 case VSX_BUILTIN_VPERM_4SI_UNS:
15000 case VSX_BUILTIN_VPERM_2DI_UNS:
15001 case VSX_BUILTIN_XXSEL_16QI_UNS:
15002 case VSX_BUILTIN_XXSEL_8HI_UNS:
15003 case VSX_BUILTIN_XXSEL_4SI_UNS:
15004 case VSX_BUILTIN_XXSEL_2DI_UNS:
15005 case CRYPTO_BUILTIN_VPERMXOR:
15006 case CRYPTO_BUILTIN_VPERMXOR_V2DI:
15007 case CRYPTO_BUILTIN_VPERMXOR_V4SI:
15008 case CRYPTO_BUILTIN_VPERMXOR_V8HI:
15009 case CRYPTO_BUILTIN_VPERMXOR_V16QI:
15010 case CRYPTO_BUILTIN_VSHASIGMAW:
15011 case CRYPTO_BUILTIN_VSHASIGMAD:
15012 case CRYPTO_BUILTIN_VSHASIGMA:
15013 h.uns_p[0] = 1;
15014 h.uns_p[1] = 1;
15015 h.uns_p[2] = 1;
15016 h.uns_p[3] = 1;
15017 break;
15019 /* signed permute functions with unsigned char mask. */
15020 case ALTIVEC_BUILTIN_VPERM_16QI:
15021 case ALTIVEC_BUILTIN_VPERM_8HI:
15022 case ALTIVEC_BUILTIN_VPERM_4SI:
15023 case ALTIVEC_BUILTIN_VPERM_4SF:
15024 case ALTIVEC_BUILTIN_VPERM_2DI:
15025 case ALTIVEC_BUILTIN_VPERM_2DF:
15026 case VSX_BUILTIN_VPERM_16QI:
15027 case VSX_BUILTIN_VPERM_8HI:
15028 case VSX_BUILTIN_VPERM_4SI:
15029 case VSX_BUILTIN_VPERM_4SF:
15030 case VSX_BUILTIN_VPERM_2DI:
15031 case VSX_BUILTIN_VPERM_2DF:
15032 h.uns_p[3] = 1;
15033 break;
15035 /* unsigned args, signed return. */
15036 case VSX_BUILTIN_XVCVUXDDP_UNS:
15037 case ALTIVEC_BUILTIN_UNSFLOAT_V4SI_V4SF:
15038 h.uns_p[1] = 1;
15039 break;
15041 /* signed args, unsigned return. */
15042 case VSX_BUILTIN_XVCVDPUXDS_UNS:
15043 case ALTIVEC_BUILTIN_FIXUNS_V4SF_V4SI:
15044 case MISC_BUILTIN_UNPACK_TD:
15045 case MISC_BUILTIN_UNPACK_V1TI:
15046 h.uns_p[0] = 1;
15047 break;
15049 /* unsigned arguments for 128-bit pack instructions. */
15050 case MISC_BUILTIN_PACK_TD:
15051 case MISC_BUILTIN_PACK_V1TI:
15052 h.uns_p[1] = 1;
15053 h.uns_p[2] = 1;
15054 break;
15056 default:
15057 break;
15060 /* Figure out how many args are present. */
15061 while (num_args > 0 && h.mode[num_args] == VOIDmode)
15062 num_args--;
15064 if (num_args == 0)
15065 fatal_error ("internal error: builtin function %s had no type", name);
15067 ret_type = builtin_mode_to_type[h.mode[0]][h.uns_p[0]];
15068 if (!ret_type && h.uns_p[0])
15069 ret_type = builtin_mode_to_type[h.mode[0]][0];
15071 if (!ret_type)
15072 fatal_error ("internal error: builtin function %s had an unexpected "
15073 "return type %s", name, GET_MODE_NAME (h.mode[0]));
15075 for (i = 0; i < (int) ARRAY_SIZE (arg_type); i++)
15076 arg_type[i] = NULL_TREE;
15078 for (i = 0; i < num_args; i++)
15080 int m = (int) h.mode[i+1];
15081 int uns_p = h.uns_p[i+1];
15083 arg_type[i] = builtin_mode_to_type[m][uns_p];
15084 if (!arg_type[i] && uns_p)
15085 arg_type[i] = builtin_mode_to_type[m][0];
15087 if (!arg_type[i])
15088 fatal_error ("internal error: builtin function %s, argument %d "
15089 "had unexpected argument type %s", name, i,
15090 GET_MODE_NAME (m));
15093 found = htab_find_slot (builtin_hash_table, &h, INSERT);
15094 if (*found == NULL)
15096 h2 = ggc_alloc_builtin_hash_struct ();
15097 *h2 = h;
15098 *found = (void *)h2;
15100 h2->type = build_function_type_list (ret_type, arg_type[0], arg_type[1],
15101 arg_type[2], NULL_TREE);
15104 return ((struct builtin_hash_struct *)(*found))->type;
15107 static void
15108 rs6000_common_init_builtins (void)
15110 const struct builtin_description *d;
15111 size_t i;
15113 tree opaque_ftype_opaque = NULL_TREE;
15114 tree opaque_ftype_opaque_opaque = NULL_TREE;
15115 tree opaque_ftype_opaque_opaque_opaque = NULL_TREE;
15116 tree v2si_ftype_qi = NULL_TREE;
15117 tree v2si_ftype_v2si_qi = NULL_TREE;
15118 tree v2si_ftype_int_qi = NULL_TREE;
15119 HOST_WIDE_INT builtin_mask = rs6000_builtin_mask;
15121 if (!TARGET_PAIRED_FLOAT)
15123 builtin_mode_to_type[V2SImode][0] = opaque_V2SI_type_node;
15124 builtin_mode_to_type[V2SFmode][0] = opaque_V2SF_type_node;
15127 /* Paired and SPE builtins are only available if you build a compiler with
15128 the appropriate options, so only create those builtins with the
15129 appropriate compiler option. Create Altivec and VSX builtins on machines
15130 with at least the general purpose extensions (970 and newer) to allow the
15131 use of the target attribute.. */
15133 if (TARGET_EXTRA_BUILTINS)
15134 builtin_mask |= RS6000_BTM_COMMON;
15136 /* Add the ternary operators. */
15137 d = bdesc_3arg;
15138 for (i = 0; i < ARRAY_SIZE (bdesc_3arg); i++, d++)
15140 tree type;
15141 HOST_WIDE_INT mask = d->mask;
15143 if ((mask & builtin_mask) != mask)
15145 if (TARGET_DEBUG_BUILTIN)
15146 fprintf (stderr, "rs6000_builtin, skip ternary %s\n", d->name);
15147 continue;
15150 if (rs6000_overloaded_builtin_p (d->code))
15152 if (! (type = opaque_ftype_opaque_opaque_opaque))
15153 type = opaque_ftype_opaque_opaque_opaque
15154 = build_function_type_list (opaque_V4SI_type_node,
15155 opaque_V4SI_type_node,
15156 opaque_V4SI_type_node,
15157 opaque_V4SI_type_node,
15158 NULL_TREE);
15160 else
15162 enum insn_code icode = d->icode;
15163 if (d->name == 0)
15165 if (TARGET_DEBUG_BUILTIN)
15166 fprintf (stderr, "rs6000_builtin, bdesc_3arg[%ld] no name\n",
15167 (long unsigned)i);
15169 continue;
15172 if (icode == CODE_FOR_nothing)
15174 if (TARGET_DEBUG_BUILTIN)
15175 fprintf (stderr, "rs6000_builtin, skip ternary %s (no code)\n",
15176 d->name);
15178 continue;
15181 type = builtin_function_type (insn_data[icode].operand[0].mode,
15182 insn_data[icode].operand[1].mode,
15183 insn_data[icode].operand[2].mode,
15184 insn_data[icode].operand[3].mode,
15185 d->code, d->name);
15188 def_builtin (d->name, type, d->code);
15191 /* Add the binary operators. */
15192 d = bdesc_2arg;
15193 for (i = 0; i < ARRAY_SIZE (bdesc_2arg); i++, d++)
15195 enum machine_mode mode0, mode1, mode2;
15196 tree type;
15197 HOST_WIDE_INT mask = d->mask;
15199 if ((mask & builtin_mask) != mask)
15201 if (TARGET_DEBUG_BUILTIN)
15202 fprintf (stderr, "rs6000_builtin, skip binary %s\n", d->name);
15203 continue;
15206 if (rs6000_overloaded_builtin_p (d->code))
15208 if (! (type = opaque_ftype_opaque_opaque))
15209 type = opaque_ftype_opaque_opaque
15210 = build_function_type_list (opaque_V4SI_type_node,
15211 opaque_V4SI_type_node,
15212 opaque_V4SI_type_node,
15213 NULL_TREE);
15215 else
15217 enum insn_code icode = d->icode;
15218 if (d->name == 0)
15220 if (TARGET_DEBUG_BUILTIN)
15221 fprintf (stderr, "rs6000_builtin, bdesc_2arg[%ld] no name\n",
15222 (long unsigned)i);
15224 continue;
15227 if (icode == CODE_FOR_nothing)
15229 if (TARGET_DEBUG_BUILTIN)
15230 fprintf (stderr, "rs6000_builtin, skip binary %s (no code)\n",
15231 d->name);
15233 continue;
15236 mode0 = insn_data[icode].operand[0].mode;
15237 mode1 = insn_data[icode].operand[1].mode;
15238 mode2 = insn_data[icode].operand[2].mode;
15240 if (mode0 == V2SImode && mode1 == V2SImode && mode2 == QImode)
15242 if (! (type = v2si_ftype_v2si_qi))
15243 type = v2si_ftype_v2si_qi
15244 = build_function_type_list (opaque_V2SI_type_node,
15245 opaque_V2SI_type_node,
15246 char_type_node,
15247 NULL_TREE);
15250 else if (mode0 == V2SImode && GET_MODE_CLASS (mode1) == MODE_INT
15251 && mode2 == QImode)
15253 if (! (type = v2si_ftype_int_qi))
15254 type = v2si_ftype_int_qi
15255 = build_function_type_list (opaque_V2SI_type_node,
15256 integer_type_node,
15257 char_type_node,
15258 NULL_TREE);
15261 else
15262 type = builtin_function_type (mode0, mode1, mode2, VOIDmode,
15263 d->code, d->name);
15266 def_builtin (d->name, type, d->code);
15269 /* Add the simple unary operators. */
15270 d = bdesc_1arg;
15271 for (i = 0; i < ARRAY_SIZE (bdesc_1arg); i++, d++)
15273 enum machine_mode mode0, mode1;
15274 tree type;
15275 HOST_WIDE_INT mask = d->mask;
15277 if ((mask & builtin_mask) != mask)
15279 if (TARGET_DEBUG_BUILTIN)
15280 fprintf (stderr, "rs6000_builtin, skip unary %s\n", d->name);
15281 continue;
15284 if (rs6000_overloaded_builtin_p (d->code))
15286 if (! (type = opaque_ftype_opaque))
15287 type = opaque_ftype_opaque
15288 = build_function_type_list (opaque_V4SI_type_node,
15289 opaque_V4SI_type_node,
15290 NULL_TREE);
15292 else
15294 enum insn_code icode = d->icode;
15295 if (d->name == 0)
15297 if (TARGET_DEBUG_BUILTIN)
15298 fprintf (stderr, "rs6000_builtin, bdesc_1arg[%ld] no name\n",
15299 (long unsigned)i);
15301 continue;
15304 if (icode == CODE_FOR_nothing)
15306 if (TARGET_DEBUG_BUILTIN)
15307 fprintf (stderr, "rs6000_builtin, skip unary %s (no code)\n",
15308 d->name);
15310 continue;
15313 mode0 = insn_data[icode].operand[0].mode;
15314 mode1 = insn_data[icode].operand[1].mode;
15316 if (mode0 == V2SImode && mode1 == QImode)
15318 if (! (type = v2si_ftype_qi))
15319 type = v2si_ftype_qi
15320 = build_function_type_list (opaque_V2SI_type_node,
15321 char_type_node,
15322 NULL_TREE);
15325 else
15326 type = builtin_function_type (mode0, mode1, VOIDmode, VOIDmode,
15327 d->code, d->name);
15330 def_builtin (d->name, type, d->code);
15334 static void
15335 rs6000_init_libfuncs (void)
15337 if (!TARGET_IEEEQUAD)
15338 /* AIX/Darwin/64-bit Linux quad floating point routines. */
15339 if (!TARGET_XL_COMPAT)
15341 set_optab_libfunc (add_optab, TFmode, "__gcc_qadd");
15342 set_optab_libfunc (sub_optab, TFmode, "__gcc_qsub");
15343 set_optab_libfunc (smul_optab, TFmode, "__gcc_qmul");
15344 set_optab_libfunc (sdiv_optab, TFmode, "__gcc_qdiv");
15346 if (!(TARGET_HARD_FLOAT && (TARGET_FPRS || TARGET_E500_DOUBLE)))
15348 set_optab_libfunc (neg_optab, TFmode, "__gcc_qneg");
15349 set_optab_libfunc (eq_optab, TFmode, "__gcc_qeq");
15350 set_optab_libfunc (ne_optab, TFmode, "__gcc_qne");
15351 set_optab_libfunc (gt_optab, TFmode, "__gcc_qgt");
15352 set_optab_libfunc (ge_optab, TFmode, "__gcc_qge");
15353 set_optab_libfunc (lt_optab, TFmode, "__gcc_qlt");
15354 set_optab_libfunc (le_optab, TFmode, "__gcc_qle");
15356 set_conv_libfunc (sext_optab, TFmode, SFmode, "__gcc_stoq");
15357 set_conv_libfunc (sext_optab, TFmode, DFmode, "__gcc_dtoq");
15358 set_conv_libfunc (trunc_optab, SFmode, TFmode, "__gcc_qtos");
15359 set_conv_libfunc (trunc_optab, DFmode, TFmode, "__gcc_qtod");
15360 set_conv_libfunc (sfix_optab, SImode, TFmode, "__gcc_qtoi");
15361 set_conv_libfunc (ufix_optab, SImode, TFmode, "__gcc_qtou");
15362 set_conv_libfunc (sfloat_optab, TFmode, SImode, "__gcc_itoq");
15363 set_conv_libfunc (ufloat_optab, TFmode, SImode, "__gcc_utoq");
15366 if (!(TARGET_HARD_FLOAT && TARGET_FPRS))
15367 set_optab_libfunc (unord_optab, TFmode, "__gcc_qunord");
15369 else
15371 set_optab_libfunc (add_optab, TFmode, "_xlqadd");
15372 set_optab_libfunc (sub_optab, TFmode, "_xlqsub");
15373 set_optab_libfunc (smul_optab, TFmode, "_xlqmul");
15374 set_optab_libfunc (sdiv_optab, TFmode, "_xlqdiv");
15376 else
15378 /* 32-bit SVR4 quad floating point routines. */
15380 set_optab_libfunc (add_optab, TFmode, "_q_add");
15381 set_optab_libfunc (sub_optab, TFmode, "_q_sub");
15382 set_optab_libfunc (neg_optab, TFmode, "_q_neg");
15383 set_optab_libfunc (smul_optab, TFmode, "_q_mul");
15384 set_optab_libfunc (sdiv_optab, TFmode, "_q_div");
15385 if (TARGET_PPC_GPOPT)
15386 set_optab_libfunc (sqrt_optab, TFmode, "_q_sqrt");
15388 set_optab_libfunc (eq_optab, TFmode, "_q_feq");
15389 set_optab_libfunc (ne_optab, TFmode, "_q_fne");
15390 set_optab_libfunc (gt_optab, TFmode, "_q_fgt");
15391 set_optab_libfunc (ge_optab, TFmode, "_q_fge");
15392 set_optab_libfunc (lt_optab, TFmode, "_q_flt");
15393 set_optab_libfunc (le_optab, TFmode, "_q_fle");
15395 set_conv_libfunc (sext_optab, TFmode, SFmode, "_q_stoq");
15396 set_conv_libfunc (sext_optab, TFmode, DFmode, "_q_dtoq");
15397 set_conv_libfunc (trunc_optab, SFmode, TFmode, "_q_qtos");
15398 set_conv_libfunc (trunc_optab, DFmode, TFmode, "_q_qtod");
15399 set_conv_libfunc (sfix_optab, SImode, TFmode, "_q_qtoi");
15400 set_conv_libfunc (ufix_optab, SImode, TFmode, "_q_qtou");
15401 set_conv_libfunc (sfloat_optab, TFmode, SImode, "_q_itoq");
15402 set_conv_libfunc (ufloat_optab, TFmode, SImode, "_q_utoq");
15407 /* Expand a block clear operation, and return 1 if successful. Return 0
15408 if we should let the compiler generate normal code.
15410 operands[0] is the destination
15411 operands[1] is the length
15412 operands[3] is the alignment */
15415 expand_block_clear (rtx operands[])
15417 rtx orig_dest = operands[0];
15418 rtx bytes_rtx = operands[1];
15419 rtx align_rtx = operands[3];
15420 bool constp = (GET_CODE (bytes_rtx) == CONST_INT);
15421 HOST_WIDE_INT align;
15422 HOST_WIDE_INT bytes;
15423 int offset;
15424 int clear_bytes;
15425 int clear_step;
15427 /* If this is not a fixed size move, just call memcpy */
15428 if (! constp)
15429 return 0;
15431 /* This must be a fixed size alignment */
15432 gcc_assert (GET_CODE (align_rtx) == CONST_INT);
15433 align = INTVAL (align_rtx) * BITS_PER_UNIT;
15435 /* Anything to clear? */
15436 bytes = INTVAL (bytes_rtx);
15437 if (bytes <= 0)
15438 return 1;
15440 /* Use the builtin memset after a point, to avoid huge code bloat.
15441 When optimize_size, avoid any significant code bloat; calling
15442 memset is about 4 instructions, so allow for one instruction to
15443 load zero and three to do clearing. */
15444 if (TARGET_ALTIVEC && align >= 128)
15445 clear_step = 16;
15446 else if (TARGET_POWERPC64 && (align >= 64 || !STRICT_ALIGNMENT))
15447 clear_step = 8;
15448 else if (TARGET_SPE && align >= 64)
15449 clear_step = 8;
15450 else
15451 clear_step = 4;
15453 if (optimize_size && bytes > 3 * clear_step)
15454 return 0;
15455 if (! optimize_size && bytes > 8 * clear_step)
15456 return 0;
15458 for (offset = 0; bytes > 0; offset += clear_bytes, bytes -= clear_bytes)
15460 enum machine_mode mode = BLKmode;
15461 rtx dest;
15463 if (bytes >= 16 && TARGET_ALTIVEC && align >= 128)
15465 clear_bytes = 16;
15466 mode = V4SImode;
15468 else if (bytes >= 8 && TARGET_SPE && align >= 64)
15470 clear_bytes = 8;
15471 mode = V2SImode;
15473 else if (bytes >= 8 && TARGET_POWERPC64
15474 && (align >= 64 || !STRICT_ALIGNMENT))
15476 clear_bytes = 8;
15477 mode = DImode;
15478 if (offset == 0 && align < 64)
15480 rtx addr;
15482 /* If the address form is reg+offset with offset not a
15483 multiple of four, reload into reg indirect form here
15484 rather than waiting for reload. This way we get one
15485 reload, not one per store. */
15486 addr = XEXP (orig_dest, 0);
15487 if ((GET_CODE (addr) == PLUS || GET_CODE (addr) == LO_SUM)
15488 && GET_CODE (XEXP (addr, 1)) == CONST_INT
15489 && (INTVAL (XEXP (addr, 1)) & 3) != 0)
15491 addr = copy_addr_to_reg (addr);
15492 orig_dest = replace_equiv_address (orig_dest, addr);
15496 else if (bytes >= 4 && (align >= 32 || !STRICT_ALIGNMENT))
15497 { /* move 4 bytes */
15498 clear_bytes = 4;
15499 mode = SImode;
15501 else if (bytes >= 2 && (align >= 16 || !STRICT_ALIGNMENT))
15502 { /* move 2 bytes */
15503 clear_bytes = 2;
15504 mode = HImode;
15506 else /* move 1 byte at a time */
15508 clear_bytes = 1;
15509 mode = QImode;
15512 dest = adjust_address (orig_dest, mode, offset);
15514 emit_move_insn (dest, CONST0_RTX (mode));
15517 return 1;
15521 /* Expand a block move operation, and return 1 if successful. Return 0
15522 if we should let the compiler generate normal code.
15524 operands[0] is the destination
15525 operands[1] is the source
15526 operands[2] is the length
15527 operands[3] is the alignment */
15529 #define MAX_MOVE_REG 4
15532 expand_block_move (rtx operands[])
15534 rtx orig_dest = operands[0];
15535 rtx orig_src = operands[1];
15536 rtx bytes_rtx = operands[2];
15537 rtx align_rtx = operands[3];
15538 int constp = (GET_CODE (bytes_rtx) == CONST_INT);
15539 int align;
15540 int bytes;
15541 int offset;
15542 int move_bytes;
15543 rtx stores[MAX_MOVE_REG];
15544 int num_reg = 0;
15546 /* If this is not a fixed size move, just call memcpy */
15547 if (! constp)
15548 return 0;
15550 /* This must be a fixed size alignment */
15551 gcc_assert (GET_CODE (align_rtx) == CONST_INT);
15552 align = INTVAL (align_rtx) * BITS_PER_UNIT;
15554 /* Anything to move? */
15555 bytes = INTVAL (bytes_rtx);
15556 if (bytes <= 0)
15557 return 1;
15559 if (bytes > rs6000_block_move_inline_limit)
15560 return 0;
15562 for (offset = 0; bytes > 0; offset += move_bytes, bytes -= move_bytes)
15564 union {
15565 rtx (*movmemsi) (rtx, rtx, rtx, rtx);
15566 rtx (*mov) (rtx, rtx);
15567 } gen_func;
15568 enum machine_mode mode = BLKmode;
15569 rtx src, dest;
15571 /* Altivec first, since it will be faster than a string move
15572 when it applies, and usually not significantly larger. */
15573 if (TARGET_ALTIVEC && bytes >= 16 && align >= 128)
15575 move_bytes = 16;
15576 mode = V4SImode;
15577 gen_func.mov = gen_movv4si;
15579 else if (TARGET_SPE && bytes >= 8 && align >= 64)
15581 move_bytes = 8;
15582 mode = V2SImode;
15583 gen_func.mov = gen_movv2si;
15585 else if (TARGET_STRING
15586 && bytes > 24 /* move up to 32 bytes at a time */
15587 && ! fixed_regs[5]
15588 && ! fixed_regs[6]
15589 && ! fixed_regs[7]
15590 && ! fixed_regs[8]
15591 && ! fixed_regs[9]
15592 && ! fixed_regs[10]
15593 && ! fixed_regs[11]
15594 && ! fixed_regs[12])
15596 move_bytes = (bytes > 32) ? 32 : bytes;
15597 gen_func.movmemsi = gen_movmemsi_8reg;
15599 else if (TARGET_STRING
15600 && bytes > 16 /* move up to 24 bytes at a time */
15601 && ! fixed_regs[5]
15602 && ! fixed_regs[6]
15603 && ! fixed_regs[7]
15604 && ! fixed_regs[8]
15605 && ! fixed_regs[9]
15606 && ! fixed_regs[10])
15608 move_bytes = (bytes > 24) ? 24 : bytes;
15609 gen_func.movmemsi = gen_movmemsi_6reg;
15611 else if (TARGET_STRING
15612 && bytes > 8 /* move up to 16 bytes at a time */
15613 && ! fixed_regs[5]
15614 && ! fixed_regs[6]
15615 && ! fixed_regs[7]
15616 && ! fixed_regs[8])
15618 move_bytes = (bytes > 16) ? 16 : bytes;
15619 gen_func.movmemsi = gen_movmemsi_4reg;
15621 else if (bytes >= 8 && TARGET_POWERPC64
15622 && (align >= 64 || !STRICT_ALIGNMENT))
15624 move_bytes = 8;
15625 mode = DImode;
15626 gen_func.mov = gen_movdi;
15627 if (offset == 0 && align < 64)
15629 rtx addr;
15631 /* If the address form is reg+offset with offset not a
15632 multiple of four, reload into reg indirect form here
15633 rather than waiting for reload. This way we get one
15634 reload, not one per load and/or store. */
15635 addr = XEXP (orig_dest, 0);
15636 if ((GET_CODE (addr) == PLUS || GET_CODE (addr) == LO_SUM)
15637 && GET_CODE (XEXP (addr, 1)) == CONST_INT
15638 && (INTVAL (XEXP (addr, 1)) & 3) != 0)
15640 addr = copy_addr_to_reg (addr);
15641 orig_dest = replace_equiv_address (orig_dest, addr);
15643 addr = XEXP (orig_src, 0);
15644 if ((GET_CODE (addr) == PLUS || GET_CODE (addr) == LO_SUM)
15645 && GET_CODE (XEXP (addr, 1)) == CONST_INT
15646 && (INTVAL (XEXP (addr, 1)) & 3) != 0)
15648 addr = copy_addr_to_reg (addr);
15649 orig_src = replace_equiv_address (orig_src, addr);
15653 else if (TARGET_STRING && bytes > 4 && !TARGET_POWERPC64)
15654 { /* move up to 8 bytes at a time */
15655 move_bytes = (bytes > 8) ? 8 : bytes;
15656 gen_func.movmemsi = gen_movmemsi_2reg;
15658 else if (bytes >= 4 && (align >= 32 || !STRICT_ALIGNMENT))
15659 { /* move 4 bytes */
15660 move_bytes = 4;
15661 mode = SImode;
15662 gen_func.mov = gen_movsi;
15664 else if (bytes >= 2 && (align >= 16 || !STRICT_ALIGNMENT))
15665 { /* move 2 bytes */
15666 move_bytes = 2;
15667 mode = HImode;
15668 gen_func.mov = gen_movhi;
15670 else if (TARGET_STRING && bytes > 1)
15671 { /* move up to 4 bytes at a time */
15672 move_bytes = (bytes > 4) ? 4 : bytes;
15673 gen_func.movmemsi = gen_movmemsi_1reg;
15675 else /* move 1 byte at a time */
15677 move_bytes = 1;
15678 mode = QImode;
15679 gen_func.mov = gen_movqi;
15682 src = adjust_address (orig_src, mode, offset);
15683 dest = adjust_address (orig_dest, mode, offset);
15685 if (mode != BLKmode)
15687 rtx tmp_reg = gen_reg_rtx (mode);
15689 emit_insn ((*gen_func.mov) (tmp_reg, src));
15690 stores[num_reg++] = (*gen_func.mov) (dest, tmp_reg);
15693 if (mode == BLKmode || num_reg >= MAX_MOVE_REG || bytes == move_bytes)
15695 int i;
15696 for (i = 0; i < num_reg; i++)
15697 emit_insn (stores[i]);
15698 num_reg = 0;
15701 if (mode == BLKmode)
15703 /* Move the address into scratch registers. The movmemsi
15704 patterns require zero offset. */
15705 if (!REG_P (XEXP (src, 0)))
15707 rtx src_reg = copy_addr_to_reg (XEXP (src, 0));
15708 src = replace_equiv_address (src, src_reg);
15710 set_mem_size (src, move_bytes);
15712 if (!REG_P (XEXP (dest, 0)))
15714 rtx dest_reg = copy_addr_to_reg (XEXP (dest, 0));
15715 dest = replace_equiv_address (dest, dest_reg);
15717 set_mem_size (dest, move_bytes);
15719 emit_insn ((*gen_func.movmemsi) (dest, src,
15720 GEN_INT (move_bytes & 31),
15721 align_rtx));
15725 return 1;
15729 /* Return a string to perform a load_multiple operation.
15730 operands[0] is the vector.
15731 operands[1] is the source address.
15732 operands[2] is the first destination register. */
15734 const char *
15735 rs6000_output_load_multiple (rtx operands[3])
15737 /* We have to handle the case where the pseudo used to contain the address
15738 is assigned to one of the output registers. */
15739 int i, j;
15740 int words = XVECLEN (operands[0], 0);
15741 rtx xop[10];
15743 if (XVECLEN (operands[0], 0) == 1)
15744 return "lwz %2,0(%1)";
15746 for (i = 0; i < words; i++)
15747 if (refers_to_regno_p (REGNO (operands[2]) + i,
15748 REGNO (operands[2]) + i + 1, operands[1], 0))
15750 if (i == words-1)
15752 xop[0] = GEN_INT (4 * (words-1));
15753 xop[1] = operands[1];
15754 xop[2] = operands[2];
15755 output_asm_insn ("lswi %2,%1,%0\n\tlwz %1,%0(%1)", xop);
15756 return "";
15758 else if (i == 0)
15760 xop[0] = GEN_INT (4 * (words-1));
15761 xop[1] = operands[1];
15762 xop[2] = gen_rtx_REG (SImode, REGNO (operands[2]) + 1);
15763 output_asm_insn ("addi %1,%1,4\n\tlswi %2,%1,%0\n\tlwz %1,-4(%1)", xop);
15764 return "";
15766 else
15768 for (j = 0; j < words; j++)
15769 if (j != i)
15771 xop[0] = GEN_INT (j * 4);
15772 xop[1] = operands[1];
15773 xop[2] = gen_rtx_REG (SImode, REGNO (operands[2]) + j);
15774 output_asm_insn ("lwz %2,%0(%1)", xop);
15776 xop[0] = GEN_INT (i * 4);
15777 xop[1] = operands[1];
15778 output_asm_insn ("lwz %1,%0(%1)", xop);
15779 return "";
15783 return "lswi %2,%1,%N0";
15787 /* A validation routine: say whether CODE, a condition code, and MODE
15788 match. The other alternatives either don't make sense or should
15789 never be generated. */
15791 void
15792 validate_condition_mode (enum rtx_code code, enum machine_mode mode)
15794 gcc_assert ((GET_RTX_CLASS (code) == RTX_COMPARE
15795 || GET_RTX_CLASS (code) == RTX_COMM_COMPARE)
15796 && GET_MODE_CLASS (mode) == MODE_CC);
15798 /* These don't make sense. */
15799 gcc_assert ((code != GT && code != LT && code != GE && code != LE)
15800 || mode != CCUNSmode);
15802 gcc_assert ((code != GTU && code != LTU && code != GEU && code != LEU)
15803 || mode == CCUNSmode);
15805 gcc_assert (mode == CCFPmode
15806 || (code != ORDERED && code != UNORDERED
15807 && code != UNEQ && code != LTGT
15808 && code != UNGT && code != UNLT
15809 && code != UNGE && code != UNLE));
15811 /* These should never be generated except for
15812 flag_finite_math_only. */
15813 gcc_assert (mode != CCFPmode
15814 || flag_finite_math_only
15815 || (code != LE && code != GE
15816 && code != UNEQ && code != LTGT
15817 && code != UNGT && code != UNLT));
15819 /* These are invalid; the information is not there. */
15820 gcc_assert (mode != CCEQmode || code == EQ || code == NE);
15824 /* Return 1 if ANDOP is a mask that has no bits on that are not in the
15825 mask required to convert the result of a rotate insn into a shift
15826 left insn of SHIFTOP bits. Both are known to be SImode CONST_INT. */
15829 includes_lshift_p (rtx shiftop, rtx andop)
15831 unsigned HOST_WIDE_INT shift_mask = ~(unsigned HOST_WIDE_INT) 0;
15833 shift_mask <<= INTVAL (shiftop);
15835 return (INTVAL (andop) & 0xffffffff & ~shift_mask) == 0;
15838 /* Similar, but for right shift. */
15841 includes_rshift_p (rtx shiftop, rtx andop)
15843 unsigned HOST_WIDE_INT shift_mask = ~(unsigned HOST_WIDE_INT) 0;
15845 shift_mask >>= INTVAL (shiftop);
15847 return (INTVAL (andop) & 0xffffffff & ~shift_mask) == 0;
15850 /* Return 1 if ANDOP is a mask suitable for use with an rldic insn
15851 to perform a left shift. It must have exactly SHIFTOP least
15852 significant 0's, then one or more 1's, then zero or more 0's. */
15855 includes_rldic_lshift_p (rtx shiftop, rtx andop)
15857 if (GET_CODE (andop) == CONST_INT)
15859 HOST_WIDE_INT c, lsb, shift_mask;
15861 c = INTVAL (andop);
15862 if (c == 0 || c == ~0)
15863 return 0;
15865 shift_mask = ~0;
15866 shift_mask <<= INTVAL (shiftop);
15868 /* Find the least significant one bit. */
15869 lsb = c & -c;
15871 /* It must coincide with the LSB of the shift mask. */
15872 if (-lsb != shift_mask)
15873 return 0;
15875 /* Invert to look for the next transition (if any). */
15876 c = ~c;
15878 /* Remove the low group of ones (originally low group of zeros). */
15879 c &= -lsb;
15881 /* Again find the lsb, and check we have all 1's above. */
15882 lsb = c & -c;
15883 return c == -lsb;
15885 else
15886 return 0;
15889 /* Return 1 if ANDOP is a mask suitable for use with an rldicr insn
15890 to perform a left shift. It must have SHIFTOP or more least
15891 significant 0's, with the remainder of the word 1's. */
15894 includes_rldicr_lshift_p (rtx shiftop, rtx andop)
15896 if (GET_CODE (andop) == CONST_INT)
15898 HOST_WIDE_INT c, lsb, shift_mask;
15900 shift_mask = ~0;
15901 shift_mask <<= INTVAL (shiftop);
15902 c = INTVAL (andop);
15904 /* Find the least significant one bit. */
15905 lsb = c & -c;
15907 /* It must be covered by the shift mask.
15908 This test also rejects c == 0. */
15909 if ((lsb & shift_mask) == 0)
15910 return 0;
15912 /* Check we have all 1's above the transition, and reject all 1's. */
15913 return c == -lsb && lsb != 1;
15915 else
15916 return 0;
15919 /* Return 1 if operands will generate a valid arguments to rlwimi
15920 instruction for insert with right shift in 64-bit mode. The mask may
15921 not start on the first bit or stop on the last bit because wrap-around
15922 effects of instruction do not correspond to semantics of RTL insn. */
15925 insvdi_rshift_rlwimi_p (rtx sizeop, rtx startop, rtx shiftop)
15927 if (INTVAL (startop) > 32
15928 && INTVAL (startop) < 64
15929 && INTVAL (sizeop) > 1
15930 && INTVAL (sizeop) + INTVAL (startop) < 64
15931 && INTVAL (shiftop) > 0
15932 && INTVAL (sizeop) + INTVAL (shiftop) < 32
15933 && (64 - (INTVAL (shiftop) & 63)) >= INTVAL (sizeop))
15934 return 1;
15936 return 0;
15939 /* Return 1 if REGNO (reg1) == REGNO (reg2) - 1 making them candidates
15940 for lfq and stfq insns iff the registers are hard registers. */
15943 registers_ok_for_quad_peep (rtx reg1, rtx reg2)
15945 /* We might have been passed a SUBREG. */
15946 if (GET_CODE (reg1) != REG || GET_CODE (reg2) != REG)
15947 return 0;
15949 /* We might have been passed non floating point registers. */
15950 if (!FP_REGNO_P (REGNO (reg1))
15951 || !FP_REGNO_P (REGNO (reg2)))
15952 return 0;
15954 return (REGNO (reg1) == REGNO (reg2) - 1);
15957 /* Return 1 if addr1 and addr2 are suitable for lfq or stfq insn.
15958 addr1 and addr2 must be in consecutive memory locations
15959 (addr2 == addr1 + 8). */
15962 mems_ok_for_quad_peep (rtx mem1, rtx mem2)
15964 rtx addr1, addr2;
15965 unsigned int reg1, reg2;
15966 int offset1, offset2;
15968 /* The mems cannot be volatile. */
15969 if (MEM_VOLATILE_P (mem1) || MEM_VOLATILE_P (mem2))
15970 return 0;
15972 addr1 = XEXP (mem1, 0);
15973 addr2 = XEXP (mem2, 0);
15975 /* Extract an offset (if used) from the first addr. */
15976 if (GET_CODE (addr1) == PLUS)
15978 /* If not a REG, return zero. */
15979 if (GET_CODE (XEXP (addr1, 0)) != REG)
15980 return 0;
15981 else
15983 reg1 = REGNO (XEXP (addr1, 0));
15984 /* The offset must be constant! */
15985 if (GET_CODE (XEXP (addr1, 1)) != CONST_INT)
15986 return 0;
15987 offset1 = INTVAL (XEXP (addr1, 1));
15990 else if (GET_CODE (addr1) != REG)
15991 return 0;
15992 else
15994 reg1 = REGNO (addr1);
15995 /* This was a simple (mem (reg)) expression. Offset is 0. */
15996 offset1 = 0;
15999 /* And now for the second addr. */
16000 if (GET_CODE (addr2) == PLUS)
16002 /* If not a REG, return zero. */
16003 if (GET_CODE (XEXP (addr2, 0)) != REG)
16004 return 0;
16005 else
16007 reg2 = REGNO (XEXP (addr2, 0));
16008 /* The offset must be constant. */
16009 if (GET_CODE (XEXP (addr2, 1)) != CONST_INT)
16010 return 0;
16011 offset2 = INTVAL (XEXP (addr2, 1));
16014 else if (GET_CODE (addr2) != REG)
16015 return 0;
16016 else
16018 reg2 = REGNO (addr2);
16019 /* This was a simple (mem (reg)) expression. Offset is 0. */
16020 offset2 = 0;
16023 /* Both of these must have the same base register. */
16024 if (reg1 != reg2)
16025 return 0;
16027 /* The offset for the second addr must be 8 more than the first addr. */
16028 if (offset2 != offset1 + 8)
16029 return 0;
16031 /* All the tests passed. addr1 and addr2 are valid for lfq or stfq
16032 instructions. */
16033 return 1;
16038 rs6000_secondary_memory_needed_rtx (enum machine_mode mode)
16040 static bool eliminated = false;
16041 rtx ret;
16043 if (mode != SDmode || TARGET_NO_SDMODE_STACK)
16044 ret = assign_stack_local (mode, GET_MODE_SIZE (mode), 0);
16045 else
16047 rtx mem = cfun->machine->sdmode_stack_slot;
16048 gcc_assert (mem != NULL_RTX);
16050 if (!eliminated)
16052 mem = eliminate_regs (mem, VOIDmode, NULL_RTX);
16053 cfun->machine->sdmode_stack_slot = mem;
16054 eliminated = true;
16056 ret = mem;
16059 if (TARGET_DEBUG_ADDR)
16061 fprintf (stderr, "\nrs6000_secondary_memory_needed_rtx, mode %s, rtx:\n",
16062 GET_MODE_NAME (mode));
16063 if (!ret)
16064 fprintf (stderr, "\tNULL_RTX\n");
16065 else
16066 debug_rtx (ret);
16069 return ret;
16072 /* Return the mode to be used for memory when a secondary memory
16073 location is needed. For SDmode values we need to use DDmode, in
16074 all other cases we can use the same mode. */
16075 enum machine_mode
16076 rs6000_secondary_memory_needed_mode (enum machine_mode mode)
16078 if (lra_in_progress && mode == SDmode)
16079 return DDmode;
16080 return mode;
16083 static tree
16084 rs6000_check_sdmode (tree *tp, int *walk_subtrees, void *data ATTRIBUTE_UNUSED)
16086 /* Don't walk into types. */
16087 if (*tp == NULL_TREE || *tp == error_mark_node || TYPE_P (*tp))
16089 *walk_subtrees = 0;
16090 return NULL_TREE;
16093 switch (TREE_CODE (*tp))
16095 case VAR_DECL:
16096 case PARM_DECL:
16097 case FIELD_DECL:
16098 case RESULT_DECL:
16099 case SSA_NAME:
16100 case REAL_CST:
16101 case MEM_REF:
16102 case VIEW_CONVERT_EXPR:
16103 if (TYPE_MODE (TREE_TYPE (*tp)) == SDmode)
16104 return *tp;
16105 break;
16106 default:
16107 break;
16110 return NULL_TREE;
16113 /* Classify a register type. Because the FMRGOW/FMRGEW instructions only work
16114 on traditional floating point registers, and the VMRGOW/VMRGEW instructions
16115 only work on the traditional altivec registers, note if an altivec register
16116 was chosen. */
16118 static enum rs6000_reg_type
16119 register_to_reg_type (rtx reg, bool *is_altivec)
16121 HOST_WIDE_INT regno;
16122 enum reg_class rclass;
16124 if (GET_CODE (reg) == SUBREG)
16125 reg = SUBREG_REG (reg);
16127 if (!REG_P (reg))
16128 return NO_REG_TYPE;
16130 regno = REGNO (reg);
16131 if (regno >= FIRST_PSEUDO_REGISTER)
16133 if (!lra_in_progress && !reload_in_progress && !reload_completed)
16134 return PSEUDO_REG_TYPE;
16136 regno = true_regnum (reg);
16137 if (regno < 0 || regno >= FIRST_PSEUDO_REGISTER)
16138 return PSEUDO_REG_TYPE;
16141 gcc_assert (regno >= 0);
16143 if (is_altivec && ALTIVEC_REGNO_P (regno))
16144 *is_altivec = true;
16146 rclass = rs6000_regno_regclass[regno];
16147 return reg_class_to_reg_type[(int)rclass];
16150 /* Helper function for rs6000_secondary_reload to return true if a move to a
16151 different register classe is really a simple move. */
16153 static bool
16154 rs6000_secondary_reload_simple_move (enum rs6000_reg_type to_type,
16155 enum rs6000_reg_type from_type,
16156 enum machine_mode mode)
16158 int size;
16160 /* Add support for various direct moves available. In this function, we only
16161 look at cases where we don't need any extra registers, and one or more
16162 simple move insns are issued. At present, 32-bit integers are not allowed
16163 in FPR/VSX registers. Single precision binary floating is not a simple
16164 move because we need to convert to the single precision memory layout.
16165 The 4-byte SDmode can be moved. */
16166 size = GET_MODE_SIZE (mode);
16167 if (TARGET_DIRECT_MOVE
16168 && ((mode == SDmode) || (TARGET_POWERPC64 && size == 8))
16169 && ((to_type == GPR_REG_TYPE && from_type == VSX_REG_TYPE)
16170 || (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE)))
16171 return true;
16173 else if (TARGET_MFPGPR && TARGET_POWERPC64 && size == 8
16174 && ((to_type == GPR_REG_TYPE && from_type == FPR_REG_TYPE)
16175 || (to_type == FPR_REG_TYPE && from_type == GPR_REG_TYPE)))
16176 return true;
16178 else if ((size == 4 || (TARGET_POWERPC64 && size == 8))
16179 && ((to_type == GPR_REG_TYPE && from_type == SPR_REG_TYPE)
16180 || (to_type == SPR_REG_TYPE && from_type == GPR_REG_TYPE)))
16181 return true;
16183 return false;
16186 /* Power8 helper function for rs6000_secondary_reload, handle all of the
16187 special direct moves that involve allocating an extra register, return the
16188 insn code of the helper function if there is such a function or
16189 CODE_FOR_nothing if not. */
16191 static bool
16192 rs6000_secondary_reload_direct_move (enum rs6000_reg_type to_type,
16193 enum rs6000_reg_type from_type,
16194 enum machine_mode mode,
16195 secondary_reload_info *sri,
16196 bool altivec_p)
16198 bool ret = false;
16199 enum insn_code icode = CODE_FOR_nothing;
16200 int cost = 0;
16201 int size = GET_MODE_SIZE (mode);
16203 if (TARGET_POWERPC64)
16205 if (size == 16)
16207 /* Handle moving 128-bit values from GPRs to VSX point registers on
16208 power8 when running in 64-bit mode using XXPERMDI to glue the two
16209 64-bit values back together. */
16210 if (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE)
16212 cost = 3; /* 2 mtvsrd's, 1 xxpermdi. */
16213 icode = reg_addr[mode].reload_vsx_gpr;
16216 /* Handle moving 128-bit values from VSX point registers to GPRs on
16217 power8 when running in 64-bit mode using XXPERMDI to get access to the
16218 bottom 64-bit value. */
16219 else if (to_type == GPR_REG_TYPE && from_type == VSX_REG_TYPE)
16221 cost = 3; /* 2 mfvsrd's, 1 xxpermdi. */
16222 icode = reg_addr[mode].reload_gpr_vsx;
16226 else if (mode == SFmode)
16228 if (to_type == GPR_REG_TYPE && from_type == VSX_REG_TYPE)
16230 cost = 3; /* xscvdpspn, mfvsrd, and. */
16231 icode = reg_addr[mode].reload_gpr_vsx;
16234 else if (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE)
16236 cost = 2; /* mtvsrz, xscvspdpn. */
16237 icode = reg_addr[mode].reload_vsx_gpr;
16242 if (TARGET_POWERPC64 && size == 16)
16244 /* Handle moving 128-bit values from GPRs to VSX point registers on
16245 power8 when running in 64-bit mode using XXPERMDI to glue the two
16246 64-bit values back together. */
16247 if (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE)
16249 cost = 3; /* 2 mtvsrd's, 1 xxpermdi. */
16250 icode = reg_addr[mode].reload_vsx_gpr;
16253 /* Handle moving 128-bit values from VSX point registers to GPRs on
16254 power8 when running in 64-bit mode using XXPERMDI to get access to the
16255 bottom 64-bit value. */
16256 else if (to_type == GPR_REG_TYPE && from_type == VSX_REG_TYPE)
16258 cost = 3; /* 2 mfvsrd's, 1 xxpermdi. */
16259 icode = reg_addr[mode].reload_gpr_vsx;
16263 else if (!TARGET_POWERPC64 && size == 8)
16265 /* Handle moving 64-bit values from GPRs to floating point registers on
16266 power8 when running in 32-bit mode using FMRGOW to glue the two 32-bit
16267 values back together. Altivec register classes must be handled
16268 specially since a different instruction is used, and the secondary
16269 reload support requires a single instruction class in the scratch
16270 register constraint. However, right now TFmode is not allowed in
16271 Altivec registers, so the pattern will never match. */
16272 if (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE && !altivec_p)
16274 cost = 3; /* 2 mtvsrwz's, 1 fmrgow. */
16275 icode = reg_addr[mode].reload_fpr_gpr;
16279 if (icode != CODE_FOR_nothing)
16281 ret = true;
16282 if (sri)
16284 sri->icode = icode;
16285 sri->extra_cost = cost;
16289 return ret;
16292 /* Return whether a move between two register classes can be done either
16293 directly (simple move) or via a pattern that uses a single extra temporary
16294 (using power8's direct move in this case. */
16296 static bool
16297 rs6000_secondary_reload_move (enum rs6000_reg_type to_type,
16298 enum rs6000_reg_type from_type,
16299 enum machine_mode mode,
16300 secondary_reload_info *sri,
16301 bool altivec_p)
16303 /* Fall back to load/store reloads if either type is not a register. */
16304 if (to_type == NO_REG_TYPE || from_type == NO_REG_TYPE)
16305 return false;
16307 /* If we haven't allocated registers yet, assume the move can be done for the
16308 standard register types. */
16309 if ((to_type == PSEUDO_REG_TYPE && from_type == PSEUDO_REG_TYPE)
16310 || (to_type == PSEUDO_REG_TYPE && IS_STD_REG_TYPE (from_type))
16311 || (from_type == PSEUDO_REG_TYPE && IS_STD_REG_TYPE (to_type)))
16312 return true;
16314 /* Moves to the same set of registers is a simple move for non-specialized
16315 registers. */
16316 if (to_type == from_type && IS_STD_REG_TYPE (to_type))
16317 return true;
16319 /* Check whether a simple move can be done directly. */
16320 if (rs6000_secondary_reload_simple_move (to_type, from_type, mode))
16322 if (sri)
16324 sri->icode = CODE_FOR_nothing;
16325 sri->extra_cost = 0;
16327 return true;
16330 /* Now check if we can do it in a few steps. */
16331 return rs6000_secondary_reload_direct_move (to_type, from_type, mode, sri,
16332 altivec_p);
16335 /* Inform reload about cases where moving X with a mode MODE to a register in
16336 RCLASS requires an extra scratch or immediate register. Return the class
16337 needed for the immediate register.
16339 For VSX and Altivec, we may need a register to convert sp+offset into
16340 reg+sp.
16342 For misaligned 64-bit gpr loads and stores we need a register to
16343 convert an offset address to indirect. */
16345 static reg_class_t
16346 rs6000_secondary_reload (bool in_p,
16347 rtx x,
16348 reg_class_t rclass_i,
16349 enum machine_mode mode,
16350 secondary_reload_info *sri)
16352 enum reg_class rclass = (enum reg_class) rclass_i;
16353 reg_class_t ret = ALL_REGS;
16354 enum insn_code icode;
16355 bool default_p = false;
16357 sri->icode = CODE_FOR_nothing;
16358 icode = ((in_p)
16359 ? reg_addr[mode].reload_load
16360 : reg_addr[mode].reload_store);
16362 if (REG_P (x) || register_operand (x, mode))
16364 enum rs6000_reg_type to_type = reg_class_to_reg_type[(int)rclass];
16365 bool altivec_p = (rclass == ALTIVEC_REGS);
16366 enum rs6000_reg_type from_type = register_to_reg_type (x, &altivec_p);
16368 if (!in_p)
16370 enum rs6000_reg_type exchange = to_type;
16371 to_type = from_type;
16372 from_type = exchange;
16375 /* Can we do a direct move of some sort? */
16376 if (rs6000_secondary_reload_move (to_type, from_type, mode, sri,
16377 altivec_p))
16379 icode = (enum insn_code)sri->icode;
16380 default_p = false;
16381 ret = NO_REGS;
16385 /* Handle vector moves with reload helper functions. */
16386 if (ret == ALL_REGS && icode != CODE_FOR_nothing)
16388 ret = NO_REGS;
16389 sri->icode = CODE_FOR_nothing;
16390 sri->extra_cost = 0;
16392 if (GET_CODE (x) == MEM)
16394 rtx addr = XEXP (x, 0);
16396 /* Loads to and stores from gprs can do reg+offset, and wouldn't need
16397 an extra register in that case, but it would need an extra
16398 register if the addressing is reg+reg or (reg+reg)&(-16). Special
16399 case load/store quad. */
16400 if (rclass == GENERAL_REGS || rclass == BASE_REGS)
16402 if (TARGET_POWERPC64 && TARGET_QUAD_MEMORY
16403 && GET_MODE_SIZE (mode) == 16
16404 && quad_memory_operand (x, mode))
16406 sri->icode = icode;
16407 sri->extra_cost = 2;
16410 else if (!legitimate_indirect_address_p (addr, false)
16411 && !rs6000_legitimate_offset_address_p (PTImode, addr,
16412 false, true))
16414 sri->icode = icode;
16415 /* account for splitting the loads, and converting the
16416 address from reg+reg to reg. */
16417 sri->extra_cost = (((TARGET_64BIT) ? 3 : 5)
16418 + ((GET_CODE (addr) == AND) ? 1 : 0));
16421 /* Allow scalar loads to/from the traditional floating point
16422 registers, even if VSX memory is set. */
16423 else if ((rclass == FLOAT_REGS || rclass == NO_REGS)
16424 && (GET_MODE_SIZE (mode) == 4 || GET_MODE_SIZE (mode) == 8)
16425 && (legitimate_indirect_address_p (addr, false)
16426 || legitimate_indirect_address_p (addr, false)
16427 || rs6000_legitimate_offset_address_p (mode, addr,
16428 false, true)))
16431 /* Loads to and stores from vector registers can only do reg+reg
16432 addressing. Altivec registers can also do (reg+reg)&(-16). Allow
16433 scalar modes loading up the traditional floating point registers
16434 to use offset addresses. */
16435 else if (rclass == VSX_REGS || rclass == ALTIVEC_REGS
16436 || rclass == FLOAT_REGS || rclass == NO_REGS)
16438 if (!VECTOR_MEM_ALTIVEC_P (mode)
16439 && GET_CODE (addr) == AND
16440 && GET_CODE (XEXP (addr, 1)) == CONST_INT
16441 && INTVAL (XEXP (addr, 1)) == -16
16442 && (legitimate_indirect_address_p (XEXP (addr, 0), false)
16443 || legitimate_indexed_address_p (XEXP (addr, 0), false)))
16445 sri->icode = icode;
16446 sri->extra_cost = ((GET_CODE (XEXP (addr, 0)) == PLUS)
16447 ? 2 : 1);
16449 else if (!legitimate_indirect_address_p (addr, false)
16450 && (rclass == NO_REGS
16451 || !legitimate_indexed_address_p (addr, false)))
16453 sri->icode = icode;
16454 sri->extra_cost = 1;
16456 else
16457 icode = CODE_FOR_nothing;
16459 /* Any other loads, including to pseudo registers which haven't been
16460 assigned to a register yet, default to require a scratch
16461 register. */
16462 else
16464 sri->icode = icode;
16465 sri->extra_cost = 2;
16468 else if (REG_P (x))
16470 int regno = true_regnum (x);
16472 icode = CODE_FOR_nothing;
16473 if (regno < 0 || regno >= FIRST_PSEUDO_REGISTER)
16474 default_p = true;
16475 else
16477 enum reg_class xclass = REGNO_REG_CLASS (regno);
16478 enum rs6000_reg_type rtype1 = reg_class_to_reg_type[(int)rclass];
16479 enum rs6000_reg_type rtype2 = reg_class_to_reg_type[(int)xclass];
16481 /* If memory is needed, use default_secondary_reload to create the
16482 stack slot. */
16483 if (rtype1 != rtype2 || !IS_STD_REG_TYPE (rtype1))
16484 default_p = true;
16485 else
16486 ret = NO_REGS;
16489 else
16490 default_p = true;
16492 else if (TARGET_POWERPC64
16493 && reg_class_to_reg_type[(int)rclass] == GPR_REG_TYPE
16494 && MEM_P (x)
16495 && GET_MODE_SIZE (GET_MODE (x)) >= UNITS_PER_WORD)
16497 rtx addr = XEXP (x, 0);
16498 rtx off = address_offset (addr);
16500 if (off != NULL_RTX)
16502 unsigned int extra = GET_MODE_SIZE (GET_MODE (x)) - UNITS_PER_WORD;
16503 unsigned HOST_WIDE_INT offset = INTVAL (off);
16505 /* We need a secondary reload when our legitimate_address_p
16506 says the address is good (as otherwise the entire address
16507 will be reloaded), and the offset is not a multiple of
16508 four or we have an address wrap. Address wrap will only
16509 occur for LO_SUMs since legitimate_offset_address_p
16510 rejects addresses for 16-byte mems that will wrap. */
16511 if (GET_CODE (addr) == LO_SUM
16512 ? (1 /* legitimate_address_p allows any offset for lo_sum */
16513 && ((offset & 3) != 0
16514 || ((offset & 0xffff) ^ 0x8000) >= 0x10000 - extra))
16515 : (offset + 0x8000 < 0x10000 - extra /* legitimate_address_p */
16516 && (offset & 3) != 0))
16518 if (in_p)
16519 sri->icode = CODE_FOR_reload_di_load;
16520 else
16521 sri->icode = CODE_FOR_reload_di_store;
16522 sri->extra_cost = 2;
16523 ret = NO_REGS;
16525 else
16526 default_p = true;
16528 else
16529 default_p = true;
16531 else if (!TARGET_POWERPC64
16532 && reg_class_to_reg_type[(int)rclass] == GPR_REG_TYPE
16533 && MEM_P (x)
16534 && GET_MODE_SIZE (GET_MODE (x)) > UNITS_PER_WORD)
16536 rtx addr = XEXP (x, 0);
16537 rtx off = address_offset (addr);
16539 if (off != NULL_RTX)
16541 unsigned int extra = GET_MODE_SIZE (GET_MODE (x)) - UNITS_PER_WORD;
16542 unsigned HOST_WIDE_INT offset = INTVAL (off);
16544 /* We need a secondary reload when our legitimate_address_p
16545 says the address is good (as otherwise the entire address
16546 will be reloaded), and we have a wrap.
16548 legitimate_lo_sum_address_p allows LO_SUM addresses to
16549 have any offset so test for wrap in the low 16 bits.
16551 legitimate_offset_address_p checks for the range
16552 [-0x8000,0x7fff] for mode size of 8 and [-0x8000,0x7ff7]
16553 for mode size of 16. We wrap at [0x7ffc,0x7fff] and
16554 [0x7ff4,0x7fff] respectively, so test for the
16555 intersection of these ranges, [0x7ffc,0x7fff] and
16556 [0x7ff4,0x7ff7] respectively.
16558 Note that the address we see here may have been
16559 manipulated by legitimize_reload_address. */
16560 if (GET_CODE (addr) == LO_SUM
16561 ? ((offset & 0xffff) ^ 0x8000) >= 0x10000 - extra
16562 : offset - (0x8000 - extra) < UNITS_PER_WORD)
16564 if (in_p)
16565 sri->icode = CODE_FOR_reload_si_load;
16566 else
16567 sri->icode = CODE_FOR_reload_si_store;
16568 sri->extra_cost = 2;
16569 ret = NO_REGS;
16571 else
16572 default_p = true;
16574 else
16575 default_p = true;
16577 else
16578 default_p = true;
16580 if (default_p)
16581 ret = default_secondary_reload (in_p, x, rclass, mode, sri);
16583 gcc_assert (ret != ALL_REGS);
16585 if (TARGET_DEBUG_ADDR)
16587 fprintf (stderr,
16588 "\nrs6000_secondary_reload, return %s, in_p = %s, rclass = %s, "
16589 "mode = %s",
16590 reg_class_names[ret],
16591 in_p ? "true" : "false",
16592 reg_class_names[rclass],
16593 GET_MODE_NAME (mode));
16595 if (default_p)
16596 fprintf (stderr, ", default secondary reload");
16598 if (sri->icode != CODE_FOR_nothing)
16599 fprintf (stderr, ", reload func = %s, extra cost = %d\n",
16600 insn_data[sri->icode].name, sri->extra_cost);
16601 else
16602 fprintf (stderr, "\n");
16604 debug_rtx (x);
16607 return ret;
16610 /* Better tracing for rs6000_secondary_reload_inner. */
16612 static void
16613 rs6000_secondary_reload_trace (int line, rtx reg, rtx mem, rtx scratch,
16614 bool store_p)
16616 rtx set, clobber;
16618 gcc_assert (reg != NULL_RTX && mem != NULL_RTX && scratch != NULL_RTX);
16620 fprintf (stderr, "rs6000_secondary_reload_inner:%d, type = %s\n", line,
16621 store_p ? "store" : "load");
16623 if (store_p)
16624 set = gen_rtx_SET (VOIDmode, mem, reg);
16625 else
16626 set = gen_rtx_SET (VOIDmode, reg, mem);
16628 clobber = gen_rtx_CLOBBER (VOIDmode, scratch);
16629 debug_rtx (gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, set, clobber)));
16632 static void
16633 rs6000_secondary_reload_fail (int line, rtx reg, rtx mem, rtx scratch,
16634 bool store_p)
16636 rs6000_secondary_reload_trace (line, reg, mem, scratch, store_p);
16637 gcc_unreachable ();
16640 /* Fixup reload addresses for Altivec or VSX loads/stores to change SP+offset
16641 to SP+reg addressing. */
16643 void
16644 rs6000_secondary_reload_inner (rtx reg, rtx mem, rtx scratch, bool store_p)
16646 int regno = true_regnum (reg);
16647 enum machine_mode mode = GET_MODE (reg);
16648 enum reg_class rclass;
16649 rtx addr;
16650 rtx and_op2 = NULL_RTX;
16651 rtx addr_op1;
16652 rtx addr_op2;
16653 rtx scratch_or_premodify = scratch;
16654 rtx and_rtx;
16655 rtx cc_clobber;
16657 if (TARGET_DEBUG_ADDR)
16658 rs6000_secondary_reload_trace (__LINE__, reg, mem, scratch, store_p);
16660 if (regno < 0 || regno >= FIRST_PSEUDO_REGISTER)
16661 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
16663 if (GET_CODE (mem) != MEM)
16664 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
16666 rclass = REGNO_REG_CLASS (regno);
16667 addr = find_replacement (&XEXP (mem, 0));
16669 switch (rclass)
16671 /* GPRs can handle reg + small constant, all other addresses need to use
16672 the scratch register. */
16673 case GENERAL_REGS:
16674 case BASE_REGS:
16675 if (GET_CODE (addr) == AND)
16677 and_op2 = XEXP (addr, 1);
16678 addr = find_replacement (&XEXP (addr, 0));
16681 if (GET_CODE (addr) == PRE_MODIFY)
16683 scratch_or_premodify = find_replacement (&XEXP (addr, 0));
16684 if (!REG_P (scratch_or_premodify))
16685 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
16687 addr = find_replacement (&XEXP (addr, 1));
16688 if (GET_CODE (addr) != PLUS)
16689 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
16692 if (GET_CODE (addr) == PLUS
16693 && (and_op2 != NULL_RTX
16694 || !rs6000_legitimate_offset_address_p (PTImode, addr,
16695 false, true)))
16697 /* find_replacement already recurses into both operands of
16698 PLUS so we don't need to call it here. */
16699 addr_op1 = XEXP (addr, 0);
16700 addr_op2 = XEXP (addr, 1);
16701 if (!legitimate_indirect_address_p (addr_op1, false))
16702 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
16704 if (!REG_P (addr_op2)
16705 && (GET_CODE (addr_op2) != CONST_INT
16706 || !satisfies_constraint_I (addr_op2)))
16708 if (TARGET_DEBUG_ADDR)
16710 fprintf (stderr,
16711 "\nMove plus addr to register %s, mode = %s: ",
16712 rs6000_reg_names[REGNO (scratch)],
16713 GET_MODE_NAME (mode));
16714 debug_rtx (addr_op2);
16716 rs6000_emit_move (scratch, addr_op2, Pmode);
16717 addr_op2 = scratch;
16720 emit_insn (gen_rtx_SET (VOIDmode,
16721 scratch_or_premodify,
16722 gen_rtx_PLUS (Pmode,
16723 addr_op1,
16724 addr_op2)));
16726 addr = scratch_or_premodify;
16727 scratch_or_premodify = scratch;
16729 else if (!legitimate_indirect_address_p (addr, false)
16730 && !rs6000_legitimate_offset_address_p (PTImode, addr,
16731 false, true))
16733 if (TARGET_DEBUG_ADDR)
16735 fprintf (stderr, "\nMove addr to register %s, mode = %s: ",
16736 rs6000_reg_names[REGNO (scratch_or_premodify)],
16737 GET_MODE_NAME (mode));
16738 debug_rtx (addr);
16740 rs6000_emit_move (scratch_or_premodify, addr, Pmode);
16741 addr = scratch_or_premodify;
16742 scratch_or_premodify = scratch;
16744 break;
16746 /* Float registers can do offset+reg addressing for scalar types. */
16747 case FLOAT_REGS:
16748 if (legitimate_indirect_address_p (addr, false) /* reg */
16749 || legitimate_indexed_address_p (addr, false) /* reg+reg */
16750 || ((GET_MODE_SIZE (mode) == 4 || GET_MODE_SIZE (mode) == 8)
16751 && and_op2 == NULL_RTX
16752 && scratch_or_premodify == scratch
16753 && rs6000_legitimate_offset_address_p (mode, addr, false, false)))
16754 break;
16756 /* If this isn't a legacy floating point load/store, fall through to the
16757 VSX defaults. */
16759 /* VSX/Altivec registers can only handle reg+reg addressing. Move other
16760 addresses into a scratch register. */
16761 case VSX_REGS:
16762 case ALTIVEC_REGS:
16764 /* With float regs, we need to handle the AND ourselves, since we can't
16765 use the Altivec instruction with an implicit AND -16. Allow scalar
16766 loads to float registers to use reg+offset even if VSX. */
16767 if (GET_CODE (addr) == AND
16768 && (rclass != ALTIVEC_REGS || GET_MODE_SIZE (mode) != 16
16769 || GET_CODE (XEXP (addr, 1)) != CONST_INT
16770 || INTVAL (XEXP (addr, 1)) != -16
16771 || !VECTOR_MEM_ALTIVEC_P (mode)))
16773 and_op2 = XEXP (addr, 1);
16774 addr = find_replacement (&XEXP (addr, 0));
16777 /* If we aren't using a VSX load, save the PRE_MODIFY register and use it
16778 as the address later. */
16779 if (GET_CODE (addr) == PRE_MODIFY
16780 && ((ALTIVEC_OR_VSX_VECTOR_MODE (mode)
16781 && (rclass != FLOAT_REGS
16782 || (GET_MODE_SIZE (mode) != 4 && GET_MODE_SIZE (mode) != 8)))
16783 || and_op2 != NULL_RTX
16784 || !legitimate_indexed_address_p (XEXP (addr, 1), false)))
16786 scratch_or_premodify = find_replacement (&XEXP (addr, 0));
16787 if (!legitimate_indirect_address_p (scratch_or_premodify, false))
16788 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
16790 addr = find_replacement (&XEXP (addr, 1));
16791 if (GET_CODE (addr) != PLUS)
16792 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
16795 if (legitimate_indirect_address_p (addr, false) /* reg */
16796 || legitimate_indexed_address_p (addr, false) /* reg+reg */
16797 || (GET_CODE (addr) == AND /* Altivec memory */
16798 && rclass == ALTIVEC_REGS
16799 && GET_CODE (XEXP (addr, 1)) == CONST_INT
16800 && INTVAL (XEXP (addr, 1)) == -16
16801 && (legitimate_indirect_address_p (XEXP (addr, 0), false)
16802 || legitimate_indexed_address_p (XEXP (addr, 0), false))))
16805 else if (GET_CODE (addr) == PLUS)
16807 addr_op1 = XEXP (addr, 0);
16808 addr_op2 = XEXP (addr, 1);
16809 if (!REG_P (addr_op1))
16810 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
16812 if (TARGET_DEBUG_ADDR)
16814 fprintf (stderr, "\nMove plus addr to register %s, mode = %s: ",
16815 rs6000_reg_names[REGNO (scratch)], GET_MODE_NAME (mode));
16816 debug_rtx (addr_op2);
16818 rs6000_emit_move (scratch, addr_op2, Pmode);
16819 emit_insn (gen_rtx_SET (VOIDmode,
16820 scratch_or_premodify,
16821 gen_rtx_PLUS (Pmode,
16822 addr_op1,
16823 scratch)));
16824 addr = scratch_or_premodify;
16825 scratch_or_premodify = scratch;
16828 else if (GET_CODE (addr) == SYMBOL_REF || GET_CODE (addr) == CONST
16829 || GET_CODE (addr) == CONST_INT || GET_CODE (addr) == LO_SUM
16830 || REG_P (addr))
16832 if (TARGET_DEBUG_ADDR)
16834 fprintf (stderr, "\nMove addr to register %s, mode = %s: ",
16835 rs6000_reg_names[REGNO (scratch_or_premodify)],
16836 GET_MODE_NAME (mode));
16837 debug_rtx (addr);
16840 rs6000_emit_move (scratch_or_premodify, addr, Pmode);
16841 addr = scratch_or_premodify;
16842 scratch_or_premodify = scratch;
16845 else
16846 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
16848 break;
16850 default:
16851 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
16854 /* If the original address involved a pre-modify that we couldn't use the VSX
16855 memory instruction with update, and we haven't taken care of already,
16856 store the address in the pre-modify register and use that as the
16857 address. */
16858 if (scratch_or_premodify != scratch && scratch_or_premodify != addr)
16860 emit_insn (gen_rtx_SET (VOIDmode, scratch_or_premodify, addr));
16861 addr = scratch_or_premodify;
16864 /* If the original address involved an AND -16 and we couldn't use an ALTIVEC
16865 memory instruction, recreate the AND now, including the clobber which is
16866 generated by the general ANDSI3/ANDDI3 patterns for the
16867 andi. instruction. */
16868 if (and_op2 != NULL_RTX)
16870 if (! legitimate_indirect_address_p (addr, false))
16872 emit_insn (gen_rtx_SET (VOIDmode, scratch, addr));
16873 addr = scratch;
16876 if (TARGET_DEBUG_ADDR)
16878 fprintf (stderr, "\nAnd addr to register %s, mode = %s: ",
16879 rs6000_reg_names[REGNO (scratch)], GET_MODE_NAME (mode));
16880 debug_rtx (and_op2);
16883 and_rtx = gen_rtx_SET (VOIDmode,
16884 scratch,
16885 gen_rtx_AND (Pmode,
16886 addr,
16887 and_op2));
16889 cc_clobber = gen_rtx_CLOBBER (CCmode, gen_rtx_SCRATCH (CCmode));
16890 emit_insn (gen_rtx_PARALLEL (VOIDmode,
16891 gen_rtvec (2, and_rtx, cc_clobber)));
16892 addr = scratch;
16895 /* Adjust the address if it changed. */
16896 if (addr != XEXP (mem, 0))
16898 mem = replace_equiv_address_nv (mem, addr);
16899 if (TARGET_DEBUG_ADDR)
16900 fprintf (stderr, "\nrs6000_secondary_reload_inner, mem adjusted.\n");
16903 /* Now create the move. */
16904 if (store_p)
16905 emit_insn (gen_rtx_SET (VOIDmode, mem, reg));
16906 else
16907 emit_insn (gen_rtx_SET (VOIDmode, reg, mem));
16909 return;
16912 /* Convert reloads involving 64-bit gprs and misaligned offset
16913 addressing, or multiple 32-bit gprs and offsets that are too large,
16914 to use indirect addressing. */
16916 void
16917 rs6000_secondary_reload_gpr (rtx reg, rtx mem, rtx scratch, bool store_p)
16919 int regno = true_regnum (reg);
16920 enum reg_class rclass;
16921 rtx addr;
16922 rtx scratch_or_premodify = scratch;
16924 if (TARGET_DEBUG_ADDR)
16926 fprintf (stderr, "\nrs6000_secondary_reload_gpr, type = %s\n",
16927 store_p ? "store" : "load");
16928 fprintf (stderr, "reg:\n");
16929 debug_rtx (reg);
16930 fprintf (stderr, "mem:\n");
16931 debug_rtx (mem);
16932 fprintf (stderr, "scratch:\n");
16933 debug_rtx (scratch);
16936 gcc_assert (regno >= 0 && regno < FIRST_PSEUDO_REGISTER);
16937 gcc_assert (GET_CODE (mem) == MEM);
16938 rclass = REGNO_REG_CLASS (regno);
16939 gcc_assert (rclass == GENERAL_REGS || rclass == BASE_REGS);
16940 addr = XEXP (mem, 0);
16942 if (GET_CODE (addr) == PRE_MODIFY)
16944 scratch_or_premodify = XEXP (addr, 0);
16945 gcc_assert (REG_P (scratch_or_premodify));
16946 addr = XEXP (addr, 1);
16948 gcc_assert (GET_CODE (addr) == PLUS || GET_CODE (addr) == LO_SUM);
16950 rs6000_emit_move (scratch_or_premodify, addr, Pmode);
16952 mem = replace_equiv_address_nv (mem, scratch_or_premodify);
16954 /* Now create the move. */
16955 if (store_p)
16956 emit_insn (gen_rtx_SET (VOIDmode, mem, reg));
16957 else
16958 emit_insn (gen_rtx_SET (VOIDmode, reg, mem));
16960 return;
16963 /* Allocate a 64-bit stack slot to be used for copying SDmode values through if
16964 this function has any SDmode references. If we are on a power7 or later, we
16965 don't need the 64-bit stack slot since the LFIWZX and STIFWX instructions
16966 can load/store the value. */
16968 static void
16969 rs6000_alloc_sdmode_stack_slot (void)
16971 tree t;
16972 basic_block bb;
16973 gimple_stmt_iterator gsi;
16975 gcc_assert (cfun->machine->sdmode_stack_slot == NULL_RTX);
16976 /* We use a different approach for dealing with the secondary
16977 memory in LRA. */
16978 if (ira_use_lra_p)
16979 return;
16981 if (TARGET_NO_SDMODE_STACK)
16982 return;
16984 FOR_EACH_BB_FN (bb, cfun)
16985 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
16987 tree ret = walk_gimple_op (gsi_stmt (gsi), rs6000_check_sdmode, NULL);
16988 if (ret)
16990 rtx stack = assign_stack_local (DDmode, GET_MODE_SIZE (DDmode), 0);
16991 cfun->machine->sdmode_stack_slot = adjust_address_nv (stack,
16992 SDmode, 0);
16993 return;
16997 /* Check for any SDmode parameters of the function. */
16998 for (t = DECL_ARGUMENTS (cfun->decl); t; t = DECL_CHAIN (t))
17000 if (TREE_TYPE (t) == error_mark_node)
17001 continue;
17003 if (TYPE_MODE (TREE_TYPE (t)) == SDmode
17004 || TYPE_MODE (DECL_ARG_TYPE (t)) == SDmode)
17006 rtx stack = assign_stack_local (DDmode, GET_MODE_SIZE (DDmode), 0);
17007 cfun->machine->sdmode_stack_slot = adjust_address_nv (stack,
17008 SDmode, 0);
17009 return;
17014 static void
17015 rs6000_instantiate_decls (void)
17017 if (cfun->machine->sdmode_stack_slot != NULL_RTX)
17018 instantiate_decl_rtl (cfun->machine->sdmode_stack_slot);
17021 /* Given an rtx X being reloaded into a reg required to be
17022 in class CLASS, return the class of reg to actually use.
17023 In general this is just CLASS; but on some machines
17024 in some cases it is preferable to use a more restrictive class.
17026 On the RS/6000, we have to return NO_REGS when we want to reload a
17027 floating-point CONST_DOUBLE to force it to be copied to memory.
17029 We also don't want to reload integer values into floating-point
17030 registers if we can at all help it. In fact, this can
17031 cause reload to die, if it tries to generate a reload of CTR
17032 into a FP register and discovers it doesn't have the memory location
17033 required.
17035 ??? Would it be a good idea to have reload do the converse, that is
17036 try to reload floating modes into FP registers if possible?
17039 static enum reg_class
17040 rs6000_preferred_reload_class (rtx x, enum reg_class rclass)
17042 enum machine_mode mode = GET_MODE (x);
17044 if (TARGET_VSX && x == CONST0_RTX (mode) && VSX_REG_CLASS_P (rclass))
17045 return rclass;
17047 if (VECTOR_UNIT_ALTIVEC_OR_VSX_P (mode)
17048 && (rclass == ALTIVEC_REGS || rclass == VSX_REGS)
17049 && easy_vector_constant (x, mode))
17050 return ALTIVEC_REGS;
17052 if ((CONSTANT_P (x) || GET_CODE (x) == PLUS))
17054 if (reg_class_subset_p (GENERAL_REGS, rclass))
17055 return GENERAL_REGS;
17056 if (reg_class_subset_p (BASE_REGS, rclass))
17057 return BASE_REGS;
17058 return NO_REGS;
17061 if (GET_MODE_CLASS (mode) == MODE_INT && rclass == NON_SPECIAL_REGS)
17062 return GENERAL_REGS;
17064 /* For VSX, prefer the traditional registers for 64-bit values because we can
17065 use the non-VSX loads. Prefer the Altivec registers if Altivec is
17066 handling the vector operations (i.e. V16QI, V8HI, and V4SI), or if we
17067 prefer Altivec loads.. */
17068 if (rclass == VSX_REGS)
17070 if (GET_MODE_SIZE (mode) <= 8)
17071 return FLOAT_REGS;
17073 if (VECTOR_UNIT_ALTIVEC_P (mode) || VECTOR_MEM_ALTIVEC_P (mode)
17074 || mode == V1TImode)
17075 return ALTIVEC_REGS;
17077 return rclass;
17080 return rclass;
17083 /* Debug version of rs6000_preferred_reload_class. */
17084 static enum reg_class
17085 rs6000_debug_preferred_reload_class (rtx x, enum reg_class rclass)
17087 enum reg_class ret = rs6000_preferred_reload_class (x, rclass);
17089 fprintf (stderr,
17090 "\nrs6000_preferred_reload_class, return %s, rclass = %s, "
17091 "mode = %s, x:\n",
17092 reg_class_names[ret], reg_class_names[rclass],
17093 GET_MODE_NAME (GET_MODE (x)));
17094 debug_rtx (x);
17096 return ret;
17099 /* If we are copying between FP or AltiVec registers and anything else, we need
17100 a memory location. The exception is when we are targeting ppc64 and the
17101 move to/from fpr to gpr instructions are available. Also, under VSX, you
17102 can copy vector registers from the FP register set to the Altivec register
17103 set and vice versa. */
17105 static bool
17106 rs6000_secondary_memory_needed (enum reg_class from_class,
17107 enum reg_class to_class,
17108 enum machine_mode mode)
17110 enum rs6000_reg_type from_type, to_type;
17111 bool altivec_p = ((from_class == ALTIVEC_REGS)
17112 || (to_class == ALTIVEC_REGS));
17114 /* If a simple/direct move is available, we don't need secondary memory */
17115 from_type = reg_class_to_reg_type[(int)from_class];
17116 to_type = reg_class_to_reg_type[(int)to_class];
17118 if (rs6000_secondary_reload_move (to_type, from_type, mode,
17119 (secondary_reload_info *)0, altivec_p))
17120 return false;
17122 /* If we have a floating point or vector register class, we need to use
17123 memory to transfer the data. */
17124 if (IS_FP_VECT_REG_TYPE (from_type) || IS_FP_VECT_REG_TYPE (to_type))
17125 return true;
17127 return false;
17130 /* Debug version of rs6000_secondary_memory_needed. */
17131 static bool
17132 rs6000_debug_secondary_memory_needed (enum reg_class from_class,
17133 enum reg_class to_class,
17134 enum machine_mode mode)
17136 bool ret = rs6000_secondary_memory_needed (from_class, to_class, mode);
17138 fprintf (stderr,
17139 "rs6000_secondary_memory_needed, return: %s, from_class = %s, "
17140 "to_class = %s, mode = %s\n",
17141 ret ? "true" : "false",
17142 reg_class_names[from_class],
17143 reg_class_names[to_class],
17144 GET_MODE_NAME (mode));
17146 return ret;
17149 /* Return the register class of a scratch register needed to copy IN into
17150 or out of a register in RCLASS in MODE. If it can be done directly,
17151 NO_REGS is returned. */
17153 static enum reg_class
17154 rs6000_secondary_reload_class (enum reg_class rclass, enum machine_mode mode,
17155 rtx in)
17157 int regno;
17159 if (TARGET_ELF || (DEFAULT_ABI == ABI_DARWIN
17160 #if TARGET_MACHO
17161 && MACHOPIC_INDIRECT
17162 #endif
17165 /* We cannot copy a symbolic operand directly into anything
17166 other than BASE_REGS for TARGET_ELF. So indicate that a
17167 register from BASE_REGS is needed as an intermediate
17168 register.
17170 On Darwin, pic addresses require a load from memory, which
17171 needs a base register. */
17172 if (rclass != BASE_REGS
17173 && (GET_CODE (in) == SYMBOL_REF
17174 || GET_CODE (in) == HIGH
17175 || GET_CODE (in) == LABEL_REF
17176 || GET_CODE (in) == CONST))
17177 return BASE_REGS;
17180 if (GET_CODE (in) == REG)
17182 regno = REGNO (in);
17183 if (regno >= FIRST_PSEUDO_REGISTER)
17185 regno = true_regnum (in);
17186 if (regno >= FIRST_PSEUDO_REGISTER)
17187 regno = -1;
17190 else if (GET_CODE (in) == SUBREG)
17192 regno = true_regnum (in);
17193 if (regno >= FIRST_PSEUDO_REGISTER)
17194 regno = -1;
17196 else
17197 regno = -1;
17199 /* We can place anything into GENERAL_REGS and can put GENERAL_REGS
17200 into anything. */
17201 if (rclass == GENERAL_REGS || rclass == BASE_REGS
17202 || (regno >= 0 && INT_REGNO_P (regno)))
17203 return NO_REGS;
17205 /* Constants, memory, and FP registers can go into FP registers. */
17206 if ((regno == -1 || FP_REGNO_P (regno))
17207 && (rclass == FLOAT_REGS || rclass == NON_SPECIAL_REGS))
17208 return (mode != SDmode || lra_in_progress) ? NO_REGS : GENERAL_REGS;
17210 /* Memory, and FP/altivec registers can go into fp/altivec registers under
17211 VSX. However, for scalar variables, use the traditional floating point
17212 registers so that we can use offset+register addressing. */
17213 if (TARGET_VSX
17214 && (regno == -1 || VSX_REGNO_P (regno))
17215 && VSX_REG_CLASS_P (rclass))
17217 if (GET_MODE_SIZE (mode) < 16)
17218 return FLOAT_REGS;
17220 return NO_REGS;
17223 /* Memory, and AltiVec registers can go into AltiVec registers. */
17224 if ((regno == -1 || ALTIVEC_REGNO_P (regno))
17225 && rclass == ALTIVEC_REGS)
17226 return NO_REGS;
17228 /* We can copy among the CR registers. */
17229 if ((rclass == CR_REGS || rclass == CR0_REGS)
17230 && regno >= 0 && CR_REGNO_P (regno))
17231 return NO_REGS;
17233 /* Otherwise, we need GENERAL_REGS. */
17234 return GENERAL_REGS;
17237 /* Debug version of rs6000_secondary_reload_class. */
17238 static enum reg_class
17239 rs6000_debug_secondary_reload_class (enum reg_class rclass,
17240 enum machine_mode mode, rtx in)
17242 enum reg_class ret = rs6000_secondary_reload_class (rclass, mode, in);
17243 fprintf (stderr,
17244 "\nrs6000_secondary_reload_class, return %s, rclass = %s, "
17245 "mode = %s, input rtx:\n",
17246 reg_class_names[ret], reg_class_names[rclass],
17247 GET_MODE_NAME (mode));
17248 debug_rtx (in);
17250 return ret;
17253 /* Return nonzero if for CLASS a mode change from FROM to TO is invalid. */
17255 static bool
17256 rs6000_cannot_change_mode_class (enum machine_mode from,
17257 enum machine_mode to,
17258 enum reg_class rclass)
17260 unsigned from_size = GET_MODE_SIZE (from);
17261 unsigned to_size = GET_MODE_SIZE (to);
17263 if (from_size != to_size)
17265 enum reg_class xclass = (TARGET_VSX) ? VSX_REGS : FLOAT_REGS;
17267 if (reg_classes_intersect_p (xclass, rclass))
17269 unsigned to_nregs = hard_regno_nregs[FIRST_FPR_REGNO][to];
17270 unsigned from_nregs = hard_regno_nregs[FIRST_FPR_REGNO][from];
17272 /* Don't allow 64-bit types to overlap with 128-bit types that take a
17273 single register under VSX because the scalar part of the register
17274 is in the upper 64-bits, and not the lower 64-bits. Types like
17275 TFmode/TDmode that take 2 scalar register can overlap. 128-bit
17276 IEEE floating point can't overlap, and neither can small
17277 values. */
17279 if (TARGET_IEEEQUAD && (to == TFmode || from == TFmode))
17280 return true;
17282 /* TDmode in floating-mode registers must always go into a register
17283 pair with the most significant word in the even-numbered register
17284 to match ISA requirements. In little-endian mode, this does not
17285 match subreg numbering, so we cannot allow subregs. */
17286 if (!BYTES_BIG_ENDIAN && (to == TDmode || from == TDmode))
17287 return true;
17289 if (from_size < 8 || to_size < 8)
17290 return true;
17292 if (from_size == 8 && (8 * to_nregs) != to_size)
17293 return true;
17295 if (to_size == 8 && (8 * from_nregs) != from_size)
17296 return true;
17298 return false;
17300 else
17301 return false;
17304 if (TARGET_E500_DOUBLE
17305 && ((((to) == DFmode) + ((from) == DFmode)) == 1
17306 || (((to) == TFmode) + ((from) == TFmode)) == 1
17307 || (((to) == DDmode) + ((from) == DDmode)) == 1
17308 || (((to) == TDmode) + ((from) == TDmode)) == 1
17309 || (((to) == DImode) + ((from) == DImode)) == 1))
17310 return true;
17312 /* Since the VSX register set includes traditional floating point registers
17313 and altivec registers, just check for the size being different instead of
17314 trying to check whether the modes are vector modes. Otherwise it won't
17315 allow say DF and DI to change classes. For types like TFmode and TDmode
17316 that take 2 64-bit registers, rather than a single 128-bit register, don't
17317 allow subregs of those types to other 128 bit types. */
17318 if (TARGET_VSX && VSX_REG_CLASS_P (rclass))
17320 unsigned num_regs = (from_size + 15) / 16;
17321 if (hard_regno_nregs[FIRST_FPR_REGNO][to] > num_regs
17322 || hard_regno_nregs[FIRST_FPR_REGNO][from] > num_regs)
17323 return true;
17325 return (from_size != 8 && from_size != 16);
17328 if (TARGET_ALTIVEC && rclass == ALTIVEC_REGS
17329 && (ALTIVEC_VECTOR_MODE (from) + ALTIVEC_VECTOR_MODE (to)) == 1)
17330 return true;
17332 if (TARGET_SPE && (SPE_VECTOR_MODE (from) + SPE_VECTOR_MODE (to)) == 1
17333 && reg_classes_intersect_p (GENERAL_REGS, rclass))
17334 return true;
17336 return false;
17339 /* Debug version of rs6000_cannot_change_mode_class. */
17340 static bool
17341 rs6000_debug_cannot_change_mode_class (enum machine_mode from,
17342 enum machine_mode to,
17343 enum reg_class rclass)
17345 bool ret = rs6000_cannot_change_mode_class (from, to, rclass);
17347 fprintf (stderr,
17348 "rs6000_cannot_change_mode_class, return %s, from = %s, "
17349 "to = %s, rclass = %s\n",
17350 ret ? "true" : "false",
17351 GET_MODE_NAME (from), GET_MODE_NAME (to),
17352 reg_class_names[rclass]);
17354 return ret;
17357 /* Return a string to do a move operation of 128 bits of data. */
17359 const char *
17360 rs6000_output_move_128bit (rtx operands[])
17362 rtx dest = operands[0];
17363 rtx src = operands[1];
17364 enum machine_mode mode = GET_MODE (dest);
17365 int dest_regno;
17366 int src_regno;
17367 bool dest_gpr_p, dest_fp_p, dest_vmx_p, dest_vsx_p;
17368 bool src_gpr_p, src_fp_p, src_vmx_p, src_vsx_p;
17370 if (REG_P (dest))
17372 dest_regno = REGNO (dest);
17373 dest_gpr_p = INT_REGNO_P (dest_regno);
17374 dest_fp_p = FP_REGNO_P (dest_regno);
17375 dest_vmx_p = ALTIVEC_REGNO_P (dest_regno);
17376 dest_vsx_p = dest_fp_p | dest_vmx_p;
17378 else
17380 dest_regno = -1;
17381 dest_gpr_p = dest_fp_p = dest_vmx_p = dest_vsx_p = false;
17384 if (REG_P (src))
17386 src_regno = REGNO (src);
17387 src_gpr_p = INT_REGNO_P (src_regno);
17388 src_fp_p = FP_REGNO_P (src_regno);
17389 src_vmx_p = ALTIVEC_REGNO_P (src_regno);
17390 src_vsx_p = src_fp_p | src_vmx_p;
17392 else
17394 src_regno = -1;
17395 src_gpr_p = src_fp_p = src_vmx_p = src_vsx_p = false;
17398 /* Register moves. */
17399 if (dest_regno >= 0 && src_regno >= 0)
17401 if (dest_gpr_p)
17403 if (src_gpr_p)
17404 return "#";
17406 else if (TARGET_VSX && TARGET_DIRECT_MOVE && src_vsx_p)
17407 return "#";
17410 else if (TARGET_VSX && dest_vsx_p)
17412 if (src_vsx_p)
17413 return "xxlor %x0,%x1,%x1";
17415 else if (TARGET_DIRECT_MOVE && src_gpr_p)
17416 return "#";
17419 else if (TARGET_ALTIVEC && dest_vmx_p && src_vmx_p)
17420 return "vor %0,%1,%1";
17422 else if (dest_fp_p && src_fp_p)
17423 return "#";
17426 /* Loads. */
17427 else if (dest_regno >= 0 && MEM_P (src))
17429 if (dest_gpr_p)
17431 if (TARGET_QUAD_MEMORY && quad_load_store_p (dest, src))
17432 return "lq %0,%1";
17433 else
17434 return "#";
17437 else if (TARGET_ALTIVEC && dest_vmx_p
17438 && altivec_indexed_or_indirect_operand (src, mode))
17439 return "lvx %0,%y1";
17441 else if (TARGET_VSX && dest_vsx_p)
17443 if (mode == V16QImode || mode == V8HImode || mode == V4SImode)
17444 return "lxvw4x %x0,%y1";
17445 else
17446 return "lxvd2x %x0,%y1";
17449 else if (TARGET_ALTIVEC && dest_vmx_p)
17450 return "lvx %0,%y1";
17452 else if (dest_fp_p)
17453 return "#";
17456 /* Stores. */
17457 else if (src_regno >= 0 && MEM_P (dest))
17459 if (src_gpr_p)
17461 if (TARGET_QUAD_MEMORY && quad_load_store_p (dest, src))
17462 return "stq %1,%0";
17463 else
17464 return "#";
17467 else if (TARGET_ALTIVEC && src_vmx_p
17468 && altivec_indexed_or_indirect_operand (src, mode))
17469 return "stvx %1,%y0";
17471 else if (TARGET_VSX && src_vsx_p)
17473 if (mode == V16QImode || mode == V8HImode || mode == V4SImode)
17474 return "stxvw4x %x1,%y0";
17475 else
17476 return "stxvd2x %x1,%y0";
17479 else if (TARGET_ALTIVEC && src_vmx_p)
17480 return "stvx %1,%y0";
17482 else if (src_fp_p)
17483 return "#";
17486 /* Constants. */
17487 else if (dest_regno >= 0
17488 && (GET_CODE (src) == CONST_INT
17489 || GET_CODE (src) == CONST_WIDE_INT
17490 || GET_CODE (src) == CONST_DOUBLE
17491 || GET_CODE (src) == CONST_VECTOR))
17493 if (dest_gpr_p)
17494 return "#";
17496 else if (TARGET_VSX && dest_vsx_p && zero_constant (src, mode))
17497 return "xxlxor %x0,%x0,%x0";
17499 else if (TARGET_ALTIVEC && dest_vmx_p)
17500 return output_vec_const_move (operands);
17503 if (TARGET_DEBUG_ADDR)
17505 fprintf (stderr, "\n===== Bad 128 bit move:\n");
17506 debug_rtx (gen_rtx_SET (VOIDmode, dest, src));
17509 gcc_unreachable ();
17512 /* Validate a 128-bit move. */
17513 bool
17514 rs6000_move_128bit_ok_p (rtx operands[])
17516 enum machine_mode mode = GET_MODE (operands[0]);
17517 return (gpc_reg_operand (operands[0], mode)
17518 || gpc_reg_operand (operands[1], mode));
17521 /* Return true if a 128-bit move needs to be split. */
17522 bool
17523 rs6000_split_128bit_ok_p (rtx operands[])
17525 if (!reload_completed)
17526 return false;
17528 if (!gpr_or_gpr_p (operands[0], operands[1]))
17529 return false;
17531 if (quad_load_store_p (operands[0], operands[1]))
17532 return false;
17534 return true;
17538 /* Given a comparison operation, return the bit number in CCR to test. We
17539 know this is a valid comparison.
17541 SCC_P is 1 if this is for an scc. That means that %D will have been
17542 used instead of %C, so the bits will be in different places.
17544 Return -1 if OP isn't a valid comparison for some reason. */
17547 ccr_bit (rtx op, int scc_p)
17549 enum rtx_code code = GET_CODE (op);
17550 enum machine_mode cc_mode;
17551 int cc_regnum;
17552 int base_bit;
17553 rtx reg;
17555 if (!COMPARISON_P (op))
17556 return -1;
17558 reg = XEXP (op, 0);
17560 gcc_assert (GET_CODE (reg) == REG && CR_REGNO_P (REGNO (reg)));
17562 cc_mode = GET_MODE (reg);
17563 cc_regnum = REGNO (reg);
17564 base_bit = 4 * (cc_regnum - CR0_REGNO);
17566 validate_condition_mode (code, cc_mode);
17568 /* When generating a sCOND operation, only positive conditions are
17569 allowed. */
17570 gcc_assert (!scc_p
17571 || code == EQ || code == GT || code == LT || code == UNORDERED
17572 || code == GTU || code == LTU);
17574 switch (code)
17576 case NE:
17577 return scc_p ? base_bit + 3 : base_bit + 2;
17578 case EQ:
17579 return base_bit + 2;
17580 case GT: case GTU: case UNLE:
17581 return base_bit + 1;
17582 case LT: case LTU: case UNGE:
17583 return base_bit;
17584 case ORDERED: case UNORDERED:
17585 return base_bit + 3;
17587 case GE: case GEU:
17588 /* If scc, we will have done a cror to put the bit in the
17589 unordered position. So test that bit. For integer, this is ! LT
17590 unless this is an scc insn. */
17591 return scc_p ? base_bit + 3 : base_bit;
17593 case LE: case LEU:
17594 return scc_p ? base_bit + 3 : base_bit + 1;
17596 default:
17597 gcc_unreachable ();
17601 /* Return the GOT register. */
17604 rs6000_got_register (rtx value ATTRIBUTE_UNUSED)
17606 /* The second flow pass currently (June 1999) can't update
17607 regs_ever_live without disturbing other parts of the compiler, so
17608 update it here to make the prolog/epilogue code happy. */
17609 if (!can_create_pseudo_p ()
17610 && !df_regs_ever_live_p (RS6000_PIC_OFFSET_TABLE_REGNUM))
17611 df_set_regs_ever_live (RS6000_PIC_OFFSET_TABLE_REGNUM, true);
17613 crtl->uses_pic_offset_table = 1;
17615 return pic_offset_table_rtx;
17618 static rs6000_stack_t stack_info;
17620 /* Function to init struct machine_function.
17621 This will be called, via a pointer variable,
17622 from push_function_context. */
17624 static struct machine_function *
17625 rs6000_init_machine_status (void)
17627 stack_info.reload_completed = 0;
17628 return ggc_alloc_cleared_machine_function ();
17631 #define INT_P(X) (GET_CODE (X) == CONST_INT && GET_MODE (X) == VOIDmode)
17634 extract_MB (rtx op)
17636 int i;
17637 unsigned long val = INTVAL (op);
17639 /* If the high bit is zero, the value is the first 1 bit we find
17640 from the left. */
17641 if ((val & 0x80000000) == 0)
17643 gcc_assert (val & 0xffffffff);
17645 i = 1;
17646 while (((val <<= 1) & 0x80000000) == 0)
17647 ++i;
17648 return i;
17651 /* If the high bit is set and the low bit is not, or the mask is all
17652 1's, the value is zero. */
17653 if ((val & 1) == 0 || (val & 0xffffffff) == 0xffffffff)
17654 return 0;
17656 /* Otherwise we have a wrap-around mask. Look for the first 0 bit
17657 from the right. */
17658 i = 31;
17659 while (((val >>= 1) & 1) != 0)
17660 --i;
17662 return i;
17666 extract_ME (rtx op)
17668 int i;
17669 unsigned long val = INTVAL (op);
17671 /* If the low bit is zero, the value is the first 1 bit we find from
17672 the right. */
17673 if ((val & 1) == 0)
17675 gcc_assert (val & 0xffffffff);
17677 i = 30;
17678 while (((val >>= 1) & 1) == 0)
17679 --i;
17681 return i;
17684 /* If the low bit is set and the high bit is not, or the mask is all
17685 1's, the value is 31. */
17686 if ((val & 0x80000000) == 0 || (val & 0xffffffff) == 0xffffffff)
17687 return 31;
17689 /* Otherwise we have a wrap-around mask. Look for the first 0 bit
17690 from the left. */
17691 i = 0;
17692 while (((val <<= 1) & 0x80000000) != 0)
17693 ++i;
17695 return i;
17698 /* Locate some local-dynamic symbol still in use by this function
17699 so that we can print its name in some tls_ld pattern. */
17701 static const char *
17702 rs6000_get_some_local_dynamic_name (void)
17704 rtx insn;
17706 if (cfun->machine->some_ld_name)
17707 return cfun->machine->some_ld_name;
17709 for (insn = get_insns (); insn ; insn = NEXT_INSN (insn))
17710 if (INSN_P (insn)
17711 && for_each_rtx (&PATTERN (insn),
17712 rs6000_get_some_local_dynamic_name_1, 0))
17713 return cfun->machine->some_ld_name;
17715 gcc_unreachable ();
17718 /* Helper function for rs6000_get_some_local_dynamic_name. */
17720 static int
17721 rs6000_get_some_local_dynamic_name_1 (rtx *px, void *data ATTRIBUTE_UNUSED)
17723 rtx x = *px;
17725 if (GET_CODE (x) == SYMBOL_REF)
17727 const char *str = XSTR (x, 0);
17728 if (SYMBOL_REF_TLS_MODEL (x) == TLS_MODEL_LOCAL_DYNAMIC)
17730 cfun->machine->some_ld_name = str;
17731 return 1;
17735 return 0;
17738 /* Write out a function code label. */
17740 void
17741 rs6000_output_function_entry (FILE *file, const char *fname)
17743 if (fname[0] != '.')
17745 switch (DEFAULT_ABI)
17747 default:
17748 gcc_unreachable ();
17750 case ABI_AIX:
17751 if (DOT_SYMBOLS)
17752 putc ('.', file);
17753 else
17754 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "L.");
17755 break;
17757 case ABI_ELFv2:
17758 case ABI_V4:
17759 case ABI_DARWIN:
17760 break;
17764 RS6000_OUTPUT_BASENAME (file, fname);
17767 /* Print an operand. Recognize special options, documented below. */
17769 #if TARGET_ELF
17770 #define SMALL_DATA_RELOC ((rs6000_sdata == SDATA_EABI) ? "sda21" : "sdarel")
17771 #define SMALL_DATA_REG ((rs6000_sdata == SDATA_EABI) ? 0 : 13)
17772 #else
17773 #define SMALL_DATA_RELOC "sda21"
17774 #define SMALL_DATA_REG 0
17775 #endif
17777 void
17778 print_operand (FILE *file, rtx x, int code)
17780 int i;
17781 unsigned HOST_WIDE_INT uval;
17783 switch (code)
17785 /* %a is output_address. */
17787 case 'b':
17788 /* If constant, low-order 16 bits of constant, unsigned.
17789 Otherwise, write normally. */
17790 if (INT_P (x))
17791 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x) & 0xffff);
17792 else
17793 print_operand (file, x, 0);
17794 return;
17796 case 'B':
17797 /* If the low-order bit is zero, write 'r'; otherwise, write 'l'
17798 for 64-bit mask direction. */
17799 putc (((INTVAL (x) & 1) == 0 ? 'r' : 'l'), file);
17800 return;
17802 /* %c is output_addr_const if a CONSTANT_ADDRESS_P, otherwise
17803 output_operand. */
17805 case 'D':
17806 /* Like 'J' but get to the GT bit only. */
17807 gcc_assert (REG_P (x));
17809 /* Bit 1 is GT bit. */
17810 i = 4 * (REGNO (x) - CR0_REGNO) + 1;
17812 /* Add one for shift count in rlinm for scc. */
17813 fprintf (file, "%d", i + 1);
17814 return;
17816 case 'E':
17817 /* X is a CR register. Print the number of the EQ bit of the CR */
17818 if (GET_CODE (x) != REG || ! CR_REGNO_P (REGNO (x)))
17819 output_operand_lossage ("invalid %%E value");
17820 else
17821 fprintf (file, "%d", 4 * (REGNO (x) - CR0_REGNO) + 2);
17822 return;
17824 case 'f':
17825 /* X is a CR register. Print the shift count needed to move it
17826 to the high-order four bits. */
17827 if (GET_CODE (x) != REG || ! CR_REGNO_P (REGNO (x)))
17828 output_operand_lossage ("invalid %%f value");
17829 else
17830 fprintf (file, "%d", 4 * (REGNO (x) - CR0_REGNO));
17831 return;
17833 case 'F':
17834 /* Similar, but print the count for the rotate in the opposite
17835 direction. */
17836 if (GET_CODE (x) != REG || ! CR_REGNO_P (REGNO (x)))
17837 output_operand_lossage ("invalid %%F value");
17838 else
17839 fprintf (file, "%d", 32 - 4 * (REGNO (x) - CR0_REGNO));
17840 return;
17842 case 'G':
17843 /* X is a constant integer. If it is negative, print "m",
17844 otherwise print "z". This is to make an aze or ame insn. */
17845 if (GET_CODE (x) != CONST_INT)
17846 output_operand_lossage ("invalid %%G value");
17847 else if (INTVAL (x) >= 0)
17848 putc ('z', file);
17849 else
17850 putc ('m', file);
17851 return;
17853 case 'h':
17854 /* If constant, output low-order five bits. Otherwise, write
17855 normally. */
17856 if (INT_P (x))
17857 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x) & 31);
17858 else
17859 print_operand (file, x, 0);
17860 return;
17862 case 'H':
17863 /* If constant, output low-order six bits. Otherwise, write
17864 normally. */
17865 if (INT_P (x))
17866 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x) & 63);
17867 else
17868 print_operand (file, x, 0);
17869 return;
17871 case 'I':
17872 /* Print `i' if this is a constant, else nothing. */
17873 if (INT_P (x))
17874 putc ('i', file);
17875 return;
17877 case 'j':
17878 /* Write the bit number in CCR for jump. */
17879 i = ccr_bit (x, 0);
17880 if (i == -1)
17881 output_operand_lossage ("invalid %%j code");
17882 else
17883 fprintf (file, "%d", i);
17884 return;
17886 case 'J':
17887 /* Similar, but add one for shift count in rlinm for scc and pass
17888 scc flag to `ccr_bit'. */
17889 i = ccr_bit (x, 1);
17890 if (i == -1)
17891 output_operand_lossage ("invalid %%J code");
17892 else
17893 /* If we want bit 31, write a shift count of zero, not 32. */
17894 fprintf (file, "%d", i == 31 ? 0 : i + 1);
17895 return;
17897 case 'k':
17898 /* X must be a constant. Write the 1's complement of the
17899 constant. */
17900 if (! INT_P (x))
17901 output_operand_lossage ("invalid %%k value");
17902 else
17903 fprintf (file, HOST_WIDE_INT_PRINT_DEC, ~ INTVAL (x));
17904 return;
17906 case 'K':
17907 /* X must be a symbolic constant on ELF. Write an
17908 expression suitable for an 'addi' that adds in the low 16
17909 bits of the MEM. */
17910 if (GET_CODE (x) == CONST)
17912 if (GET_CODE (XEXP (x, 0)) != PLUS
17913 || (GET_CODE (XEXP (XEXP (x, 0), 0)) != SYMBOL_REF
17914 && GET_CODE (XEXP (XEXP (x, 0), 0)) != LABEL_REF)
17915 || GET_CODE (XEXP (XEXP (x, 0), 1)) != CONST_INT)
17916 output_operand_lossage ("invalid %%K value");
17918 print_operand_address (file, x);
17919 fputs ("@l", file);
17920 return;
17922 /* %l is output_asm_label. */
17924 case 'L':
17925 /* Write second word of DImode or DFmode reference. Works on register
17926 or non-indexed memory only. */
17927 if (REG_P (x))
17928 fputs (reg_names[REGNO (x) + 1], file);
17929 else if (MEM_P (x))
17931 /* Handle possible auto-increment. Since it is pre-increment and
17932 we have already done it, we can just use an offset of word. */
17933 if (GET_CODE (XEXP (x, 0)) == PRE_INC
17934 || GET_CODE (XEXP (x, 0)) == PRE_DEC)
17935 output_address (plus_constant (Pmode, XEXP (XEXP (x, 0), 0),
17936 UNITS_PER_WORD));
17937 else if (GET_CODE (XEXP (x, 0)) == PRE_MODIFY)
17938 output_address (plus_constant (Pmode, XEXP (XEXP (x, 0), 0),
17939 UNITS_PER_WORD));
17940 else
17941 output_address (XEXP (adjust_address_nv (x, SImode,
17942 UNITS_PER_WORD),
17943 0));
17945 if (small_data_operand (x, GET_MODE (x)))
17946 fprintf (file, "@%s(%s)", SMALL_DATA_RELOC,
17947 reg_names[SMALL_DATA_REG]);
17949 return;
17951 case 'm':
17952 /* MB value for a mask operand. */
17953 if (! mask_operand (x, SImode))
17954 output_operand_lossage ("invalid %%m value");
17956 fprintf (file, "%d", extract_MB (x));
17957 return;
17959 case 'M':
17960 /* ME value for a mask operand. */
17961 if (! mask_operand (x, SImode))
17962 output_operand_lossage ("invalid %%M value");
17964 fprintf (file, "%d", extract_ME (x));
17965 return;
17967 /* %n outputs the negative of its operand. */
17969 case 'N':
17970 /* Write the number of elements in the vector times 4. */
17971 if (GET_CODE (x) != PARALLEL)
17972 output_operand_lossage ("invalid %%N value");
17973 else
17974 fprintf (file, "%d", XVECLEN (x, 0) * 4);
17975 return;
17977 case 'O':
17978 /* Similar, but subtract 1 first. */
17979 if (GET_CODE (x) != PARALLEL)
17980 output_operand_lossage ("invalid %%O value");
17981 else
17982 fprintf (file, "%d", (XVECLEN (x, 0) - 1) * 4);
17983 return;
17985 case 'p':
17986 /* X is a CONST_INT that is a power of two. Output the logarithm. */
17987 if (! INT_P (x)
17988 || INTVAL (x) < 0
17989 || (i = exact_log2 (INTVAL (x))) < 0)
17990 output_operand_lossage ("invalid %%p value");
17991 else
17992 fprintf (file, "%d", i);
17993 return;
17995 case 'P':
17996 /* The operand must be an indirect memory reference. The result
17997 is the register name. */
17998 if (GET_CODE (x) != MEM || GET_CODE (XEXP (x, 0)) != REG
17999 || REGNO (XEXP (x, 0)) >= 32)
18000 output_operand_lossage ("invalid %%P value");
18001 else
18002 fputs (reg_names[REGNO (XEXP (x, 0))], file);
18003 return;
18005 case 'q':
18006 /* This outputs the logical code corresponding to a boolean
18007 expression. The expression may have one or both operands
18008 negated (if one, only the first one). For condition register
18009 logical operations, it will also treat the negated
18010 CR codes as NOTs, but not handle NOTs of them. */
18012 const char *const *t = 0;
18013 const char *s;
18014 enum rtx_code code = GET_CODE (x);
18015 static const char * const tbl[3][3] = {
18016 { "and", "andc", "nor" },
18017 { "or", "orc", "nand" },
18018 { "xor", "eqv", "xor" } };
18020 if (code == AND)
18021 t = tbl[0];
18022 else if (code == IOR)
18023 t = tbl[1];
18024 else if (code == XOR)
18025 t = tbl[2];
18026 else
18027 output_operand_lossage ("invalid %%q value");
18029 if (GET_CODE (XEXP (x, 0)) != NOT)
18030 s = t[0];
18031 else
18033 if (GET_CODE (XEXP (x, 1)) == NOT)
18034 s = t[2];
18035 else
18036 s = t[1];
18039 fputs (s, file);
18041 return;
18043 case 'Q':
18044 if (! TARGET_MFCRF)
18045 return;
18046 fputc (',', file);
18047 /* FALLTHRU */
18049 case 'R':
18050 /* X is a CR register. Print the mask for `mtcrf'. */
18051 if (GET_CODE (x) != REG || ! CR_REGNO_P (REGNO (x)))
18052 output_operand_lossage ("invalid %%R value");
18053 else
18054 fprintf (file, "%d", 128 >> (REGNO (x) - CR0_REGNO));
18055 return;
18057 case 's':
18058 /* Low 5 bits of 32 - value */
18059 if (! INT_P (x))
18060 output_operand_lossage ("invalid %%s value");
18061 else
18062 fprintf (file, HOST_WIDE_INT_PRINT_DEC, (32 - INTVAL (x)) & 31);
18063 return;
18065 case 'S':
18066 /* PowerPC64 mask position. All 0's is excluded.
18067 CONST_INT 32-bit mask is considered sign-extended so any
18068 transition must occur within the CONST_INT, not on the boundary. */
18069 if (! mask64_operand (x, DImode))
18070 output_operand_lossage ("invalid %%S value");
18072 uval = INTVAL (x);
18074 if (uval & 1) /* Clear Left */
18076 #if HOST_BITS_PER_WIDE_INT > 64
18077 uval &= ((unsigned HOST_WIDE_INT) 1 << 64) - 1;
18078 #endif
18079 i = 64;
18081 else /* Clear Right */
18083 uval = ~uval;
18084 #if HOST_BITS_PER_WIDE_INT > 64
18085 uval &= ((unsigned HOST_WIDE_INT) 1 << 64) - 1;
18086 #endif
18087 i = 63;
18089 while (uval != 0)
18090 --i, uval >>= 1;
18091 gcc_assert (i >= 0);
18092 fprintf (file, "%d", i);
18093 return;
18095 case 't':
18096 /* Like 'J' but get to the OVERFLOW/UNORDERED bit. */
18097 gcc_assert (REG_P (x) && GET_MODE (x) == CCmode);
18099 /* Bit 3 is OV bit. */
18100 i = 4 * (REGNO (x) - CR0_REGNO) + 3;
18102 /* If we want bit 31, write a shift count of zero, not 32. */
18103 fprintf (file, "%d", i == 31 ? 0 : i + 1);
18104 return;
18106 case 'T':
18107 /* Print the symbolic name of a branch target register. */
18108 if (GET_CODE (x) != REG || (REGNO (x) != LR_REGNO
18109 && REGNO (x) != CTR_REGNO))
18110 output_operand_lossage ("invalid %%T value");
18111 else if (REGNO (x) == LR_REGNO)
18112 fputs ("lr", file);
18113 else
18114 fputs ("ctr", file);
18115 return;
18117 case 'u':
18118 /* High-order 16 bits of constant for use in unsigned operand. */
18119 if (! INT_P (x))
18120 output_operand_lossage ("invalid %%u value");
18121 else
18122 fprintf (file, HOST_WIDE_INT_PRINT_HEX,
18123 (INTVAL (x) >> 16) & 0xffff);
18124 return;
18126 case 'v':
18127 /* High-order 16 bits of constant for use in signed operand. */
18128 if (! INT_P (x))
18129 output_operand_lossage ("invalid %%v value");
18130 else
18131 fprintf (file, HOST_WIDE_INT_PRINT_HEX,
18132 (INTVAL (x) >> 16) & 0xffff);
18133 return;
18135 case 'U':
18136 /* Print `u' if this has an auto-increment or auto-decrement. */
18137 if (MEM_P (x)
18138 && (GET_CODE (XEXP (x, 0)) == PRE_INC
18139 || GET_CODE (XEXP (x, 0)) == PRE_DEC
18140 || GET_CODE (XEXP (x, 0)) == PRE_MODIFY))
18141 putc ('u', file);
18142 return;
18144 case 'V':
18145 /* Print the trap code for this operand. */
18146 switch (GET_CODE (x))
18148 case EQ:
18149 fputs ("eq", file); /* 4 */
18150 break;
18151 case NE:
18152 fputs ("ne", file); /* 24 */
18153 break;
18154 case LT:
18155 fputs ("lt", file); /* 16 */
18156 break;
18157 case LE:
18158 fputs ("le", file); /* 20 */
18159 break;
18160 case GT:
18161 fputs ("gt", file); /* 8 */
18162 break;
18163 case GE:
18164 fputs ("ge", file); /* 12 */
18165 break;
18166 case LTU:
18167 fputs ("llt", file); /* 2 */
18168 break;
18169 case LEU:
18170 fputs ("lle", file); /* 6 */
18171 break;
18172 case GTU:
18173 fputs ("lgt", file); /* 1 */
18174 break;
18175 case GEU:
18176 fputs ("lge", file); /* 5 */
18177 break;
18178 default:
18179 gcc_unreachable ();
18181 break;
18183 case 'w':
18184 /* If constant, low-order 16 bits of constant, signed. Otherwise, write
18185 normally. */
18186 if (INT_P (x))
18187 fprintf (file, HOST_WIDE_INT_PRINT_DEC,
18188 ((INTVAL (x) & 0xffff) ^ 0x8000) - 0x8000);
18189 else
18190 print_operand (file, x, 0);
18191 return;
18193 case 'W':
18194 /* MB value for a PowerPC64 rldic operand. */
18195 i = clz_hwi (INTVAL (x));
18197 fprintf (file, "%d", i);
18198 return;
18200 case 'x':
18201 /* X is a FPR or Altivec register used in a VSX context. */
18202 if (GET_CODE (x) != REG || !VSX_REGNO_P (REGNO (x)))
18203 output_operand_lossage ("invalid %%x value");
18204 else
18206 int reg = REGNO (x);
18207 int vsx_reg = (FP_REGNO_P (reg)
18208 ? reg - 32
18209 : reg - FIRST_ALTIVEC_REGNO + 32);
18211 #ifdef TARGET_REGNAMES
18212 if (TARGET_REGNAMES)
18213 fprintf (file, "%%vs%d", vsx_reg);
18214 else
18215 #endif
18216 fprintf (file, "%d", vsx_reg);
18218 return;
18220 case 'X':
18221 if (MEM_P (x)
18222 && (legitimate_indexed_address_p (XEXP (x, 0), 0)
18223 || (GET_CODE (XEXP (x, 0)) == PRE_MODIFY
18224 && legitimate_indexed_address_p (XEXP (XEXP (x, 0), 1), 0))))
18225 putc ('x', file);
18226 return;
18228 case 'Y':
18229 /* Like 'L', for third word of TImode/PTImode */
18230 if (REG_P (x))
18231 fputs (reg_names[REGNO (x) + 2], file);
18232 else if (MEM_P (x))
18234 if (GET_CODE (XEXP (x, 0)) == PRE_INC
18235 || GET_CODE (XEXP (x, 0)) == PRE_DEC)
18236 output_address (plus_constant (Pmode, XEXP (XEXP (x, 0), 0), 8));
18237 else if (GET_CODE (XEXP (x, 0)) == PRE_MODIFY)
18238 output_address (plus_constant (Pmode, XEXP (XEXP (x, 0), 0), 8));
18239 else
18240 output_address (XEXP (adjust_address_nv (x, SImode, 8), 0));
18241 if (small_data_operand (x, GET_MODE (x)))
18242 fprintf (file, "@%s(%s)", SMALL_DATA_RELOC,
18243 reg_names[SMALL_DATA_REG]);
18245 return;
18247 case 'z':
18248 /* X is a SYMBOL_REF. Write out the name preceded by a
18249 period and without any trailing data in brackets. Used for function
18250 names. If we are configured for System V (or the embedded ABI) on
18251 the PowerPC, do not emit the period, since those systems do not use
18252 TOCs and the like. */
18253 gcc_assert (GET_CODE (x) == SYMBOL_REF);
18255 /* For macho, check to see if we need a stub. */
18256 if (TARGET_MACHO)
18258 const char *name = XSTR (x, 0);
18259 #if TARGET_MACHO
18260 if (darwin_emit_branch_islands
18261 && MACHOPIC_INDIRECT
18262 && machopic_classify_symbol (x) == MACHOPIC_UNDEFINED_FUNCTION)
18263 name = machopic_indirection_name (x, /*stub_p=*/true);
18264 #endif
18265 assemble_name (file, name);
18267 else if (!DOT_SYMBOLS)
18268 assemble_name (file, XSTR (x, 0));
18269 else
18270 rs6000_output_function_entry (file, XSTR (x, 0));
18271 return;
18273 case 'Z':
18274 /* Like 'L', for last word of TImode/PTImode. */
18275 if (REG_P (x))
18276 fputs (reg_names[REGNO (x) + 3], file);
18277 else if (MEM_P (x))
18279 if (GET_CODE (XEXP (x, 0)) == PRE_INC
18280 || GET_CODE (XEXP (x, 0)) == PRE_DEC)
18281 output_address (plus_constant (Pmode, XEXP (XEXP (x, 0), 0), 12));
18282 else if (GET_CODE (XEXP (x, 0)) == PRE_MODIFY)
18283 output_address (plus_constant (Pmode, XEXP (XEXP (x, 0), 0), 12));
18284 else
18285 output_address (XEXP (adjust_address_nv (x, SImode, 12), 0));
18286 if (small_data_operand (x, GET_MODE (x)))
18287 fprintf (file, "@%s(%s)", SMALL_DATA_RELOC,
18288 reg_names[SMALL_DATA_REG]);
18290 return;
18292 /* Print AltiVec or SPE memory operand. */
18293 case 'y':
18295 rtx tmp;
18297 gcc_assert (MEM_P (x));
18299 tmp = XEXP (x, 0);
18301 /* Ugly hack because %y is overloaded. */
18302 if ((TARGET_SPE || TARGET_E500_DOUBLE)
18303 && (GET_MODE_SIZE (GET_MODE (x)) == 8
18304 || GET_MODE (x) == TFmode
18305 || GET_MODE (x) == TImode
18306 || GET_MODE (x) == PTImode))
18308 /* Handle [reg]. */
18309 if (REG_P (tmp))
18311 fprintf (file, "0(%s)", reg_names[REGNO (tmp)]);
18312 break;
18314 /* Handle [reg+UIMM]. */
18315 else if (GET_CODE (tmp) == PLUS &&
18316 GET_CODE (XEXP (tmp, 1)) == CONST_INT)
18318 int x;
18320 gcc_assert (REG_P (XEXP (tmp, 0)));
18322 x = INTVAL (XEXP (tmp, 1));
18323 fprintf (file, "%d(%s)", x, reg_names[REGNO (XEXP (tmp, 0))]);
18324 break;
18327 /* Fall through. Must be [reg+reg]. */
18329 if (VECTOR_MEM_ALTIVEC_P (GET_MODE (x))
18330 && GET_CODE (tmp) == AND
18331 && GET_CODE (XEXP (tmp, 1)) == CONST_INT
18332 && INTVAL (XEXP (tmp, 1)) == -16)
18333 tmp = XEXP (tmp, 0);
18334 else if (VECTOR_MEM_VSX_P (GET_MODE (x))
18335 && GET_CODE (tmp) == PRE_MODIFY)
18336 tmp = XEXP (tmp, 1);
18337 if (REG_P (tmp))
18338 fprintf (file, "0,%s", reg_names[REGNO (tmp)]);
18339 else
18341 if (!GET_CODE (tmp) == PLUS
18342 || !REG_P (XEXP (tmp, 0))
18343 || !REG_P (XEXP (tmp, 1)))
18345 output_operand_lossage ("invalid %%y value, try using the 'Z' constraint");
18346 break;
18349 if (REGNO (XEXP (tmp, 0)) == 0)
18350 fprintf (file, "%s,%s", reg_names[ REGNO (XEXP (tmp, 1)) ],
18351 reg_names[ REGNO (XEXP (tmp, 0)) ]);
18352 else
18353 fprintf (file, "%s,%s", reg_names[ REGNO (XEXP (tmp, 0)) ],
18354 reg_names[ REGNO (XEXP (tmp, 1)) ]);
18356 break;
18359 case 0:
18360 if (REG_P (x))
18361 fprintf (file, "%s", reg_names[REGNO (x)]);
18362 else if (MEM_P (x))
18364 /* We need to handle PRE_INC and PRE_DEC here, since we need to
18365 know the width from the mode. */
18366 if (GET_CODE (XEXP (x, 0)) == PRE_INC)
18367 fprintf (file, "%d(%s)", GET_MODE_SIZE (GET_MODE (x)),
18368 reg_names[REGNO (XEXP (XEXP (x, 0), 0))]);
18369 else if (GET_CODE (XEXP (x, 0)) == PRE_DEC)
18370 fprintf (file, "%d(%s)", - GET_MODE_SIZE (GET_MODE (x)),
18371 reg_names[REGNO (XEXP (XEXP (x, 0), 0))]);
18372 else if (GET_CODE (XEXP (x, 0)) == PRE_MODIFY)
18373 output_address (XEXP (XEXP (x, 0), 1));
18374 else
18375 output_address (XEXP (x, 0));
18377 else
18379 if (toc_relative_expr_p (x, false))
18380 /* This hack along with a corresponding hack in
18381 rs6000_output_addr_const_extra arranges to output addends
18382 where the assembler expects to find them. eg.
18383 (plus (unspec [(symbol_ref ("x")) (reg 2)] tocrel) 4)
18384 without this hack would be output as "x@toc+4". We
18385 want "x+4@toc". */
18386 output_addr_const (file, CONST_CAST_RTX (tocrel_base));
18387 else
18388 output_addr_const (file, x);
18390 return;
18392 case '&':
18393 assemble_name (file, rs6000_get_some_local_dynamic_name ());
18394 return;
18396 default:
18397 output_operand_lossage ("invalid %%xn code");
18401 /* Print the address of an operand. */
18403 void
18404 print_operand_address (FILE *file, rtx x)
18406 if (REG_P (x))
18407 fprintf (file, "0(%s)", reg_names[ REGNO (x) ]);
18408 else if (GET_CODE (x) == SYMBOL_REF || GET_CODE (x) == CONST
18409 || GET_CODE (x) == LABEL_REF)
18411 output_addr_const (file, x);
18412 if (small_data_operand (x, GET_MODE (x)))
18413 fprintf (file, "@%s(%s)", SMALL_DATA_RELOC,
18414 reg_names[SMALL_DATA_REG]);
18415 else
18416 gcc_assert (!TARGET_TOC);
18418 else if (GET_CODE (x) == PLUS && REG_P (XEXP (x, 0))
18419 && REG_P (XEXP (x, 1)))
18421 if (REGNO (XEXP (x, 0)) == 0)
18422 fprintf (file, "%s,%s", reg_names[ REGNO (XEXP (x, 1)) ],
18423 reg_names[ REGNO (XEXP (x, 0)) ]);
18424 else
18425 fprintf (file, "%s,%s", reg_names[ REGNO (XEXP (x, 0)) ],
18426 reg_names[ REGNO (XEXP (x, 1)) ]);
18428 else if (GET_CODE (x) == PLUS && REG_P (XEXP (x, 0))
18429 && GET_CODE (XEXP (x, 1)) == CONST_INT)
18430 fprintf (file, HOST_WIDE_INT_PRINT_DEC "(%s)",
18431 INTVAL (XEXP (x, 1)), reg_names[ REGNO (XEXP (x, 0)) ]);
18432 #if TARGET_MACHO
18433 else if (GET_CODE (x) == LO_SUM && REG_P (XEXP (x, 0))
18434 && CONSTANT_P (XEXP (x, 1)))
18436 fprintf (file, "lo16(");
18437 output_addr_const (file, XEXP (x, 1));
18438 fprintf (file, ")(%s)", reg_names[ REGNO (XEXP (x, 0)) ]);
18440 #endif
18441 #if TARGET_ELF
18442 else if (GET_CODE (x) == LO_SUM && REG_P (XEXP (x, 0))
18443 && CONSTANT_P (XEXP (x, 1)))
18445 output_addr_const (file, XEXP (x, 1));
18446 fprintf (file, "@l(%s)", reg_names[ REGNO (XEXP (x, 0)) ]);
18448 #endif
18449 else if (toc_relative_expr_p (x, false))
18451 /* This hack along with a corresponding hack in
18452 rs6000_output_addr_const_extra arranges to output addends
18453 where the assembler expects to find them. eg.
18454 (lo_sum (reg 9)
18455 . (plus (unspec [(symbol_ref ("x")) (reg 2)] tocrel) 8))
18456 without this hack would be output as "x@toc+8@l(9)". We
18457 want "x+8@toc@l(9)". */
18458 output_addr_const (file, CONST_CAST_RTX (tocrel_base));
18459 if (GET_CODE (x) == LO_SUM)
18460 fprintf (file, "@l(%s)", reg_names[REGNO (XEXP (x, 0))]);
18461 else
18462 fprintf (file, "(%s)", reg_names[REGNO (XVECEXP (tocrel_base, 0, 1))]);
18464 else
18465 gcc_unreachable ();
18468 /* Implement TARGET_OUTPUT_ADDR_CONST_EXTRA. */
18470 static bool
18471 rs6000_output_addr_const_extra (FILE *file, rtx x)
18473 if (GET_CODE (x) == UNSPEC)
18474 switch (XINT (x, 1))
18476 case UNSPEC_TOCREL:
18477 gcc_checking_assert (GET_CODE (XVECEXP (x, 0, 0)) == SYMBOL_REF
18478 && REG_P (XVECEXP (x, 0, 1))
18479 && REGNO (XVECEXP (x, 0, 1)) == TOC_REGISTER);
18480 output_addr_const (file, XVECEXP (x, 0, 0));
18481 if (x == tocrel_base && tocrel_offset != const0_rtx)
18483 if (INTVAL (tocrel_offset) >= 0)
18484 fprintf (file, "+");
18485 output_addr_const (file, CONST_CAST_RTX (tocrel_offset));
18487 if (!TARGET_AIX || (TARGET_ELF && TARGET_MINIMAL_TOC))
18489 putc ('-', file);
18490 assemble_name (file, toc_label_name);
18492 else if (TARGET_ELF)
18493 fputs ("@toc", file);
18494 return true;
18496 #if TARGET_MACHO
18497 case UNSPEC_MACHOPIC_OFFSET:
18498 output_addr_const (file, XVECEXP (x, 0, 0));
18499 putc ('-', file);
18500 machopic_output_function_base_name (file);
18501 return true;
18502 #endif
18504 return false;
18507 /* Target hook for assembling integer objects. The PowerPC version has
18508 to handle fixup entries for relocatable code if RELOCATABLE_NEEDS_FIXUP
18509 is defined. It also needs to handle DI-mode objects on 64-bit
18510 targets. */
18512 static bool
18513 rs6000_assemble_integer (rtx x, unsigned int size, int aligned_p)
18515 #ifdef RELOCATABLE_NEEDS_FIXUP
18516 /* Special handling for SI values. */
18517 if (RELOCATABLE_NEEDS_FIXUP && size == 4 && aligned_p)
18519 static int recurse = 0;
18521 /* For -mrelocatable, we mark all addresses that need to be fixed up in
18522 the .fixup section. Since the TOC section is already relocated, we
18523 don't need to mark it here. We used to skip the text section, but it
18524 should never be valid for relocated addresses to be placed in the text
18525 section. */
18526 if (TARGET_RELOCATABLE
18527 && in_section != toc_section
18528 && !recurse
18529 && !CONST_SCALAR_INT_P (x)
18530 && CONSTANT_P (x))
18532 char buf[256];
18534 recurse = 1;
18535 ASM_GENERATE_INTERNAL_LABEL (buf, "LCP", fixuplabelno);
18536 fixuplabelno++;
18537 ASM_OUTPUT_LABEL (asm_out_file, buf);
18538 fprintf (asm_out_file, "\t.long\t(");
18539 output_addr_const (asm_out_file, x);
18540 fprintf (asm_out_file, ")@fixup\n");
18541 fprintf (asm_out_file, "\t.section\t\".fixup\",\"aw\"\n");
18542 ASM_OUTPUT_ALIGN (asm_out_file, 2);
18543 fprintf (asm_out_file, "\t.long\t");
18544 assemble_name (asm_out_file, buf);
18545 fprintf (asm_out_file, "\n\t.previous\n");
18546 recurse = 0;
18547 return true;
18549 /* Remove initial .'s to turn a -mcall-aixdesc function
18550 address into the address of the descriptor, not the function
18551 itself. */
18552 else if (GET_CODE (x) == SYMBOL_REF
18553 && XSTR (x, 0)[0] == '.'
18554 && DEFAULT_ABI == ABI_AIX)
18556 const char *name = XSTR (x, 0);
18557 while (*name == '.')
18558 name++;
18560 fprintf (asm_out_file, "\t.long\t%s\n", name);
18561 return true;
18564 #endif /* RELOCATABLE_NEEDS_FIXUP */
18565 return default_assemble_integer (x, size, aligned_p);
18568 #if defined (HAVE_GAS_HIDDEN) && !TARGET_MACHO
18569 /* Emit an assembler directive to set symbol visibility for DECL to
18570 VISIBILITY_TYPE. */
18572 static void
18573 rs6000_assemble_visibility (tree decl, int vis)
18575 if (TARGET_XCOFF)
18576 return;
18578 /* Functions need to have their entry point symbol visibility set as
18579 well as their descriptor symbol visibility. */
18580 if (DEFAULT_ABI == ABI_AIX
18581 && DOT_SYMBOLS
18582 && TREE_CODE (decl) == FUNCTION_DECL)
18584 static const char * const visibility_types[] = {
18585 NULL, "internal", "hidden", "protected"
18588 const char *name, *type;
18590 name = ((* targetm.strip_name_encoding)
18591 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl))));
18592 type = visibility_types[vis];
18594 fprintf (asm_out_file, "\t.%s\t%s\n", type, name);
18595 fprintf (asm_out_file, "\t.%s\t.%s\n", type, name);
18597 else
18598 default_assemble_visibility (decl, vis);
18600 #endif
18602 enum rtx_code
18603 rs6000_reverse_condition (enum machine_mode mode, enum rtx_code code)
18605 /* Reversal of FP compares takes care -- an ordered compare
18606 becomes an unordered compare and vice versa. */
18607 if (mode == CCFPmode
18608 && (!flag_finite_math_only
18609 || code == UNLT || code == UNLE || code == UNGT || code == UNGE
18610 || code == UNEQ || code == LTGT))
18611 return reverse_condition_maybe_unordered (code);
18612 else
18613 return reverse_condition (code);
18616 /* Generate a compare for CODE. Return a brand-new rtx that
18617 represents the result of the compare. */
18619 static rtx
18620 rs6000_generate_compare (rtx cmp, enum machine_mode mode)
18622 enum machine_mode comp_mode;
18623 rtx compare_result;
18624 enum rtx_code code = GET_CODE (cmp);
18625 rtx op0 = XEXP (cmp, 0);
18626 rtx op1 = XEXP (cmp, 1);
18628 if (FLOAT_MODE_P (mode))
18629 comp_mode = CCFPmode;
18630 else if (code == GTU || code == LTU
18631 || code == GEU || code == LEU)
18632 comp_mode = CCUNSmode;
18633 else if ((code == EQ || code == NE)
18634 && unsigned_reg_p (op0)
18635 && (unsigned_reg_p (op1)
18636 || (CONST_INT_P (op1) && INTVAL (op1) != 0)))
18637 /* These are unsigned values, perhaps there will be a later
18638 ordering compare that can be shared with this one. */
18639 comp_mode = CCUNSmode;
18640 else
18641 comp_mode = CCmode;
18643 /* If we have an unsigned compare, make sure we don't have a signed value as
18644 an immediate. */
18645 if (comp_mode == CCUNSmode && GET_CODE (op1) == CONST_INT
18646 && INTVAL (op1) < 0)
18648 op0 = copy_rtx_if_shared (op0);
18649 op1 = force_reg (GET_MODE (op0), op1);
18650 cmp = gen_rtx_fmt_ee (code, GET_MODE (cmp), op0, op1);
18653 /* First, the compare. */
18654 compare_result = gen_reg_rtx (comp_mode);
18656 /* E500 FP compare instructions on the GPRs. Yuck! */
18657 if ((!TARGET_FPRS && TARGET_HARD_FLOAT)
18658 && FLOAT_MODE_P (mode))
18660 rtx cmp, or_result, compare_result2;
18661 enum machine_mode op_mode = GET_MODE (op0);
18662 bool reverse_p;
18664 if (op_mode == VOIDmode)
18665 op_mode = GET_MODE (op1);
18667 /* First reverse the condition codes that aren't directly supported. */
18668 switch (code)
18670 case NE:
18671 case UNLT:
18672 case UNLE:
18673 case UNGT:
18674 case UNGE:
18675 code = reverse_condition_maybe_unordered (code);
18676 reverse_p = true;
18677 break;
18679 case EQ:
18680 case LT:
18681 case LE:
18682 case GT:
18683 case GE:
18684 reverse_p = false;
18685 break;
18687 default:
18688 gcc_unreachable ();
18691 /* The E500 FP compare instructions toggle the GT bit (CR bit 1) only.
18692 This explains the following mess. */
18694 switch (code)
18696 case EQ:
18697 switch (op_mode)
18699 case SFmode:
18700 cmp = (flag_finite_math_only && !flag_trapping_math)
18701 ? gen_tstsfeq_gpr (compare_result, op0, op1)
18702 : gen_cmpsfeq_gpr (compare_result, op0, op1);
18703 break;
18705 case DFmode:
18706 cmp = (flag_finite_math_only && !flag_trapping_math)
18707 ? gen_tstdfeq_gpr (compare_result, op0, op1)
18708 : gen_cmpdfeq_gpr (compare_result, op0, op1);
18709 break;
18711 case TFmode:
18712 cmp = (flag_finite_math_only && !flag_trapping_math)
18713 ? gen_tsttfeq_gpr (compare_result, op0, op1)
18714 : gen_cmptfeq_gpr (compare_result, op0, op1);
18715 break;
18717 default:
18718 gcc_unreachable ();
18720 break;
18722 case GT:
18723 case GE:
18724 switch (op_mode)
18726 case SFmode:
18727 cmp = (flag_finite_math_only && !flag_trapping_math)
18728 ? gen_tstsfgt_gpr (compare_result, op0, op1)
18729 : gen_cmpsfgt_gpr (compare_result, op0, op1);
18730 break;
18732 case DFmode:
18733 cmp = (flag_finite_math_only && !flag_trapping_math)
18734 ? gen_tstdfgt_gpr (compare_result, op0, op1)
18735 : gen_cmpdfgt_gpr (compare_result, op0, op1);
18736 break;
18738 case TFmode:
18739 cmp = (flag_finite_math_only && !flag_trapping_math)
18740 ? gen_tsttfgt_gpr (compare_result, op0, op1)
18741 : gen_cmptfgt_gpr (compare_result, op0, op1);
18742 break;
18744 default:
18745 gcc_unreachable ();
18747 break;
18749 case LT:
18750 case LE:
18751 switch (op_mode)
18753 case SFmode:
18754 cmp = (flag_finite_math_only && !flag_trapping_math)
18755 ? gen_tstsflt_gpr (compare_result, op0, op1)
18756 : gen_cmpsflt_gpr (compare_result, op0, op1);
18757 break;
18759 case DFmode:
18760 cmp = (flag_finite_math_only && !flag_trapping_math)
18761 ? gen_tstdflt_gpr (compare_result, op0, op1)
18762 : gen_cmpdflt_gpr (compare_result, op0, op1);
18763 break;
18765 case TFmode:
18766 cmp = (flag_finite_math_only && !flag_trapping_math)
18767 ? gen_tsttflt_gpr (compare_result, op0, op1)
18768 : gen_cmptflt_gpr (compare_result, op0, op1);
18769 break;
18771 default:
18772 gcc_unreachable ();
18774 break;
18776 default:
18777 gcc_unreachable ();
18780 /* Synthesize LE and GE from LT/GT || EQ. */
18781 if (code == LE || code == GE)
18783 emit_insn (cmp);
18785 compare_result2 = gen_reg_rtx (CCFPmode);
18787 /* Do the EQ. */
18788 switch (op_mode)
18790 case SFmode:
18791 cmp = (flag_finite_math_only && !flag_trapping_math)
18792 ? gen_tstsfeq_gpr (compare_result2, op0, op1)
18793 : gen_cmpsfeq_gpr (compare_result2, op0, op1);
18794 break;
18796 case DFmode:
18797 cmp = (flag_finite_math_only && !flag_trapping_math)
18798 ? gen_tstdfeq_gpr (compare_result2, op0, op1)
18799 : gen_cmpdfeq_gpr (compare_result2, op0, op1);
18800 break;
18802 case TFmode:
18803 cmp = (flag_finite_math_only && !flag_trapping_math)
18804 ? gen_tsttfeq_gpr (compare_result2, op0, op1)
18805 : gen_cmptfeq_gpr (compare_result2, op0, op1);
18806 break;
18808 default:
18809 gcc_unreachable ();
18812 emit_insn (cmp);
18814 /* OR them together. */
18815 or_result = gen_reg_rtx (CCFPmode);
18816 cmp = gen_e500_cr_ior_compare (or_result, compare_result,
18817 compare_result2);
18818 compare_result = or_result;
18821 code = reverse_p ? NE : EQ;
18823 emit_insn (cmp);
18825 else
18827 /* Generate XLC-compatible TFmode compare as PARALLEL with extra
18828 CLOBBERs to match cmptf_internal2 pattern. */
18829 if (comp_mode == CCFPmode && TARGET_XL_COMPAT
18830 && GET_MODE (op0) == TFmode
18831 && !TARGET_IEEEQUAD
18832 && TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_LONG_DOUBLE_128)
18833 emit_insn (gen_rtx_PARALLEL (VOIDmode,
18834 gen_rtvec (10,
18835 gen_rtx_SET (VOIDmode,
18836 compare_result,
18837 gen_rtx_COMPARE (comp_mode, op0, op1)),
18838 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
18839 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
18840 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
18841 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
18842 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
18843 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
18844 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
18845 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
18846 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (Pmode)))));
18847 else if (GET_CODE (op1) == UNSPEC
18848 && XINT (op1, 1) == UNSPEC_SP_TEST)
18850 rtx op1b = XVECEXP (op1, 0, 0);
18851 comp_mode = CCEQmode;
18852 compare_result = gen_reg_rtx (CCEQmode);
18853 if (TARGET_64BIT)
18854 emit_insn (gen_stack_protect_testdi (compare_result, op0, op1b));
18855 else
18856 emit_insn (gen_stack_protect_testsi (compare_result, op0, op1b));
18858 else
18859 emit_insn (gen_rtx_SET (VOIDmode, compare_result,
18860 gen_rtx_COMPARE (comp_mode, op0, op1)));
18863 /* Some kinds of FP comparisons need an OR operation;
18864 under flag_finite_math_only we don't bother. */
18865 if (FLOAT_MODE_P (mode)
18866 && !flag_finite_math_only
18867 && !(TARGET_HARD_FLOAT && !TARGET_FPRS)
18868 && (code == LE || code == GE
18869 || code == UNEQ || code == LTGT
18870 || code == UNGT || code == UNLT))
18872 enum rtx_code or1, or2;
18873 rtx or1_rtx, or2_rtx, compare2_rtx;
18874 rtx or_result = gen_reg_rtx (CCEQmode);
18876 switch (code)
18878 case LE: or1 = LT; or2 = EQ; break;
18879 case GE: or1 = GT; or2 = EQ; break;
18880 case UNEQ: or1 = UNORDERED; or2 = EQ; break;
18881 case LTGT: or1 = LT; or2 = GT; break;
18882 case UNGT: or1 = UNORDERED; or2 = GT; break;
18883 case UNLT: or1 = UNORDERED; or2 = LT; break;
18884 default: gcc_unreachable ();
18886 validate_condition_mode (or1, comp_mode);
18887 validate_condition_mode (or2, comp_mode);
18888 or1_rtx = gen_rtx_fmt_ee (or1, SImode, compare_result, const0_rtx);
18889 or2_rtx = gen_rtx_fmt_ee (or2, SImode, compare_result, const0_rtx);
18890 compare2_rtx = gen_rtx_COMPARE (CCEQmode,
18891 gen_rtx_IOR (SImode, or1_rtx, or2_rtx),
18892 const_true_rtx);
18893 emit_insn (gen_rtx_SET (VOIDmode, or_result, compare2_rtx));
18895 compare_result = or_result;
18896 code = EQ;
18899 validate_condition_mode (code, GET_MODE (compare_result));
18901 return gen_rtx_fmt_ee (code, VOIDmode, compare_result, const0_rtx);
18905 /* Emit the RTL for an sISEL pattern. */
18907 void
18908 rs6000_emit_sISEL (enum machine_mode mode ATTRIBUTE_UNUSED, rtx operands[])
18910 rs6000_emit_int_cmove (operands[0], operands[1], const1_rtx, const0_rtx);
18913 void
18914 rs6000_emit_sCOND (enum machine_mode mode, rtx operands[])
18916 rtx condition_rtx;
18917 enum machine_mode op_mode;
18918 enum rtx_code cond_code;
18919 rtx result = operands[0];
18921 if (TARGET_ISEL && (mode == SImode || mode == DImode))
18923 rs6000_emit_sISEL (mode, operands);
18924 return;
18927 condition_rtx = rs6000_generate_compare (operands[1], mode);
18928 cond_code = GET_CODE (condition_rtx);
18930 if (FLOAT_MODE_P (mode)
18931 && !TARGET_FPRS && TARGET_HARD_FLOAT)
18933 rtx t;
18935 PUT_MODE (condition_rtx, SImode);
18936 t = XEXP (condition_rtx, 0);
18938 gcc_assert (cond_code == NE || cond_code == EQ);
18940 if (cond_code == NE)
18941 emit_insn (gen_e500_flip_gt_bit (t, t));
18943 emit_insn (gen_move_from_CR_gt_bit (result, t));
18944 return;
18947 if (cond_code == NE
18948 || cond_code == GE || cond_code == LE
18949 || cond_code == GEU || cond_code == LEU
18950 || cond_code == ORDERED || cond_code == UNGE || cond_code == UNLE)
18952 rtx not_result = gen_reg_rtx (CCEQmode);
18953 rtx not_op, rev_cond_rtx;
18954 enum machine_mode cc_mode;
18956 cc_mode = GET_MODE (XEXP (condition_rtx, 0));
18958 rev_cond_rtx = gen_rtx_fmt_ee (rs6000_reverse_condition (cc_mode, cond_code),
18959 SImode, XEXP (condition_rtx, 0), const0_rtx);
18960 not_op = gen_rtx_COMPARE (CCEQmode, rev_cond_rtx, const0_rtx);
18961 emit_insn (gen_rtx_SET (VOIDmode, not_result, not_op));
18962 condition_rtx = gen_rtx_EQ (VOIDmode, not_result, const0_rtx);
18965 op_mode = GET_MODE (XEXP (operands[1], 0));
18966 if (op_mode == VOIDmode)
18967 op_mode = GET_MODE (XEXP (operands[1], 1));
18969 if (TARGET_POWERPC64 && (op_mode == DImode || FLOAT_MODE_P (mode)))
18971 PUT_MODE (condition_rtx, DImode);
18972 convert_move (result, condition_rtx, 0);
18974 else
18976 PUT_MODE (condition_rtx, SImode);
18977 emit_insn (gen_rtx_SET (VOIDmode, result, condition_rtx));
18981 /* Emit a branch of kind CODE to location LOC. */
18983 void
18984 rs6000_emit_cbranch (enum machine_mode mode, rtx operands[])
18986 rtx condition_rtx, loc_ref;
18988 condition_rtx = rs6000_generate_compare (operands[0], mode);
18989 loc_ref = gen_rtx_LABEL_REF (VOIDmode, operands[3]);
18990 emit_jump_insn (gen_rtx_SET (VOIDmode, pc_rtx,
18991 gen_rtx_IF_THEN_ELSE (VOIDmode, condition_rtx,
18992 loc_ref, pc_rtx)));
18995 /* Return the string to output a conditional branch to LABEL, which is
18996 the operand template of the label, or NULL if the branch is really a
18997 conditional return.
18999 OP is the conditional expression. XEXP (OP, 0) is assumed to be a
19000 condition code register and its mode specifies what kind of
19001 comparison we made.
19003 REVERSED is nonzero if we should reverse the sense of the comparison.
19005 INSN is the insn. */
19007 char *
19008 output_cbranch (rtx op, const char *label, int reversed, rtx insn)
19010 static char string[64];
19011 enum rtx_code code = GET_CODE (op);
19012 rtx cc_reg = XEXP (op, 0);
19013 enum machine_mode mode = GET_MODE (cc_reg);
19014 int cc_regno = REGNO (cc_reg) - CR0_REGNO;
19015 int need_longbranch = label != NULL && get_attr_length (insn) == 8;
19016 int really_reversed = reversed ^ need_longbranch;
19017 char *s = string;
19018 const char *ccode;
19019 const char *pred;
19020 rtx note;
19022 validate_condition_mode (code, mode);
19024 /* Work out which way this really branches. We could use
19025 reverse_condition_maybe_unordered here always but this
19026 makes the resulting assembler clearer. */
19027 if (really_reversed)
19029 /* Reversal of FP compares takes care -- an ordered compare
19030 becomes an unordered compare and vice versa. */
19031 if (mode == CCFPmode)
19032 code = reverse_condition_maybe_unordered (code);
19033 else
19034 code = reverse_condition (code);
19037 if ((!TARGET_FPRS && TARGET_HARD_FLOAT) && mode == CCFPmode)
19039 /* The efscmp/tst* instructions twiddle bit 2, which maps nicely
19040 to the GT bit. */
19041 switch (code)
19043 case EQ:
19044 /* Opposite of GT. */
19045 code = GT;
19046 break;
19048 case NE:
19049 code = UNLE;
19050 break;
19052 default:
19053 gcc_unreachable ();
19057 switch (code)
19059 /* Not all of these are actually distinct opcodes, but
19060 we distinguish them for clarity of the resulting assembler. */
19061 case NE: case LTGT:
19062 ccode = "ne"; break;
19063 case EQ: case UNEQ:
19064 ccode = "eq"; break;
19065 case GE: case GEU:
19066 ccode = "ge"; break;
19067 case GT: case GTU: case UNGT:
19068 ccode = "gt"; break;
19069 case LE: case LEU:
19070 ccode = "le"; break;
19071 case LT: case LTU: case UNLT:
19072 ccode = "lt"; break;
19073 case UNORDERED: ccode = "un"; break;
19074 case ORDERED: ccode = "nu"; break;
19075 case UNGE: ccode = "nl"; break;
19076 case UNLE: ccode = "ng"; break;
19077 default:
19078 gcc_unreachable ();
19081 /* Maybe we have a guess as to how likely the branch is. */
19082 pred = "";
19083 note = find_reg_note (insn, REG_BR_PROB, NULL_RTX);
19084 if (note != NULL_RTX)
19086 /* PROB is the difference from 50%. */
19087 int prob = XINT (note, 0) - REG_BR_PROB_BASE / 2;
19089 /* Only hint for highly probable/improbable branches on newer
19090 cpus as static prediction overrides processor dynamic
19091 prediction. For older cpus we may as well always hint, but
19092 assume not taken for branches that are very close to 50% as a
19093 mispredicted taken branch is more expensive than a
19094 mispredicted not-taken branch. */
19095 if (rs6000_always_hint
19096 || (abs (prob) > REG_BR_PROB_BASE / 100 * 48
19097 && br_prob_note_reliable_p (note)))
19099 if (abs (prob) > REG_BR_PROB_BASE / 20
19100 && ((prob > 0) ^ need_longbranch))
19101 pred = "+";
19102 else
19103 pred = "-";
19107 if (label == NULL)
19108 s += sprintf (s, "b%slr%s ", ccode, pred);
19109 else
19110 s += sprintf (s, "b%s%s ", ccode, pred);
19112 /* We need to escape any '%' characters in the reg_names string.
19113 Assume they'd only be the first character.... */
19114 if (reg_names[cc_regno + CR0_REGNO][0] == '%')
19115 *s++ = '%';
19116 s += sprintf (s, "%s", reg_names[cc_regno + CR0_REGNO]);
19118 if (label != NULL)
19120 /* If the branch distance was too far, we may have to use an
19121 unconditional branch to go the distance. */
19122 if (need_longbranch)
19123 s += sprintf (s, ",$+8\n\tb %s", label);
19124 else
19125 s += sprintf (s, ",%s", label);
19128 return string;
19131 /* Return the string to flip the GT bit on a CR. */
19132 char *
19133 output_e500_flip_gt_bit (rtx dst, rtx src)
19135 static char string[64];
19136 int a, b;
19138 gcc_assert (GET_CODE (dst) == REG && CR_REGNO_P (REGNO (dst))
19139 && GET_CODE (src) == REG && CR_REGNO_P (REGNO (src)));
19141 /* GT bit. */
19142 a = 4 * (REGNO (dst) - CR0_REGNO) + 1;
19143 b = 4 * (REGNO (src) - CR0_REGNO) + 1;
19145 sprintf (string, "crnot %d,%d", a, b);
19146 return string;
19149 /* Return insn for VSX or Altivec comparisons. */
19151 static rtx
19152 rs6000_emit_vector_compare_inner (enum rtx_code code, rtx op0, rtx op1)
19154 rtx mask;
19155 enum machine_mode mode = GET_MODE (op0);
19157 switch (code)
19159 default:
19160 break;
19162 case GE:
19163 if (GET_MODE_CLASS (mode) == MODE_VECTOR_INT)
19164 return NULL_RTX;
19166 case EQ:
19167 case GT:
19168 case GTU:
19169 case ORDERED:
19170 case UNORDERED:
19171 case UNEQ:
19172 case LTGT:
19173 mask = gen_reg_rtx (mode);
19174 emit_insn (gen_rtx_SET (VOIDmode,
19175 mask,
19176 gen_rtx_fmt_ee (code, mode, op0, op1)));
19177 return mask;
19180 return NULL_RTX;
19183 /* Emit vector compare for operands OP0 and OP1 using code RCODE.
19184 DMODE is expected destination mode. This is a recursive function. */
19186 static rtx
19187 rs6000_emit_vector_compare (enum rtx_code rcode,
19188 rtx op0, rtx op1,
19189 enum machine_mode dmode)
19191 rtx mask;
19192 bool swap_operands = false;
19193 bool try_again = false;
19195 gcc_assert (VECTOR_UNIT_ALTIVEC_OR_VSX_P (dmode));
19196 gcc_assert (GET_MODE (op0) == GET_MODE (op1));
19198 /* See if the comparison works as is. */
19199 mask = rs6000_emit_vector_compare_inner (rcode, op0, op1);
19200 if (mask)
19201 return mask;
19203 switch (rcode)
19205 case LT:
19206 rcode = GT;
19207 swap_operands = true;
19208 try_again = true;
19209 break;
19210 case LTU:
19211 rcode = GTU;
19212 swap_operands = true;
19213 try_again = true;
19214 break;
19215 case NE:
19216 case UNLE:
19217 case UNLT:
19218 case UNGE:
19219 case UNGT:
19220 /* Invert condition and try again.
19221 e.g., A != B becomes ~(A==B). */
19223 enum rtx_code rev_code;
19224 enum insn_code nor_code;
19225 rtx mask2;
19227 rev_code = reverse_condition_maybe_unordered (rcode);
19228 if (rev_code == UNKNOWN)
19229 return NULL_RTX;
19231 nor_code = optab_handler (one_cmpl_optab, dmode);
19232 if (nor_code == CODE_FOR_nothing)
19233 return NULL_RTX;
19235 mask2 = rs6000_emit_vector_compare (rev_code, op0, op1, dmode);
19236 if (!mask2)
19237 return NULL_RTX;
19239 mask = gen_reg_rtx (dmode);
19240 emit_insn (GEN_FCN (nor_code) (mask, mask2));
19241 return mask;
19243 break;
19244 case GE:
19245 case GEU:
19246 case LE:
19247 case LEU:
19248 /* Try GT/GTU/LT/LTU OR EQ */
19250 rtx c_rtx, eq_rtx;
19251 enum insn_code ior_code;
19252 enum rtx_code new_code;
19254 switch (rcode)
19256 case GE:
19257 new_code = GT;
19258 break;
19260 case GEU:
19261 new_code = GTU;
19262 break;
19264 case LE:
19265 new_code = LT;
19266 break;
19268 case LEU:
19269 new_code = LTU;
19270 break;
19272 default:
19273 gcc_unreachable ();
19276 ior_code = optab_handler (ior_optab, dmode);
19277 if (ior_code == CODE_FOR_nothing)
19278 return NULL_RTX;
19280 c_rtx = rs6000_emit_vector_compare (new_code, op0, op1, dmode);
19281 if (!c_rtx)
19282 return NULL_RTX;
19284 eq_rtx = rs6000_emit_vector_compare (EQ, op0, op1, dmode);
19285 if (!eq_rtx)
19286 return NULL_RTX;
19288 mask = gen_reg_rtx (dmode);
19289 emit_insn (GEN_FCN (ior_code) (mask, c_rtx, eq_rtx));
19290 return mask;
19292 break;
19293 default:
19294 return NULL_RTX;
19297 if (try_again)
19299 if (swap_operands)
19301 rtx tmp;
19302 tmp = op0;
19303 op0 = op1;
19304 op1 = tmp;
19307 mask = rs6000_emit_vector_compare_inner (rcode, op0, op1);
19308 if (mask)
19309 return mask;
19312 /* You only get two chances. */
19313 return NULL_RTX;
19316 /* Emit vector conditional expression. DEST is destination. OP_TRUE and
19317 OP_FALSE are two VEC_COND_EXPR operands. CC_OP0 and CC_OP1 are the two
19318 operands for the relation operation COND. */
19321 rs6000_emit_vector_cond_expr (rtx dest, rtx op_true, rtx op_false,
19322 rtx cond, rtx cc_op0, rtx cc_op1)
19324 enum machine_mode dest_mode = GET_MODE (dest);
19325 enum machine_mode mask_mode = GET_MODE (cc_op0);
19326 enum rtx_code rcode = GET_CODE (cond);
19327 enum machine_mode cc_mode = CCmode;
19328 rtx mask;
19329 rtx cond2;
19330 rtx tmp;
19331 bool invert_move = false;
19333 if (VECTOR_UNIT_NONE_P (dest_mode))
19334 return 0;
19336 gcc_assert (GET_MODE_SIZE (dest_mode) == GET_MODE_SIZE (mask_mode)
19337 && GET_MODE_NUNITS (dest_mode) == GET_MODE_NUNITS (mask_mode));
19339 switch (rcode)
19341 /* Swap operands if we can, and fall back to doing the operation as
19342 specified, and doing a NOR to invert the test. */
19343 case NE:
19344 case UNLE:
19345 case UNLT:
19346 case UNGE:
19347 case UNGT:
19348 /* Invert condition and try again.
19349 e.g., A = (B != C) ? D : E becomes A = (B == C) ? E : D. */
19350 invert_move = true;
19351 rcode = reverse_condition_maybe_unordered (rcode);
19352 if (rcode == UNKNOWN)
19353 return 0;
19354 break;
19356 /* Mark unsigned tests with CCUNSmode. */
19357 case GTU:
19358 case GEU:
19359 case LTU:
19360 case LEU:
19361 cc_mode = CCUNSmode;
19362 break;
19364 default:
19365 break;
19368 /* Get the vector mask for the given relational operations. */
19369 mask = rs6000_emit_vector_compare (rcode, cc_op0, cc_op1, mask_mode);
19371 if (!mask)
19372 return 0;
19374 if (invert_move)
19376 tmp = op_true;
19377 op_true = op_false;
19378 op_false = tmp;
19381 cond2 = gen_rtx_fmt_ee (NE, cc_mode, gen_lowpart (dest_mode, mask),
19382 CONST0_RTX (dest_mode));
19383 emit_insn (gen_rtx_SET (VOIDmode,
19384 dest,
19385 gen_rtx_IF_THEN_ELSE (dest_mode,
19386 cond2,
19387 op_true,
19388 op_false)));
19389 return 1;
19392 /* Emit a conditional move: move TRUE_COND to DEST if OP of the
19393 operands of the last comparison is nonzero/true, FALSE_COND if it
19394 is zero/false. Return 0 if the hardware has no such operation. */
19397 rs6000_emit_cmove (rtx dest, rtx op, rtx true_cond, rtx false_cond)
19399 enum rtx_code code = GET_CODE (op);
19400 rtx op0 = XEXP (op, 0);
19401 rtx op1 = XEXP (op, 1);
19402 REAL_VALUE_TYPE c1;
19403 enum machine_mode compare_mode = GET_MODE (op0);
19404 enum machine_mode result_mode = GET_MODE (dest);
19405 rtx temp;
19406 bool is_against_zero;
19408 /* These modes should always match. */
19409 if (GET_MODE (op1) != compare_mode
19410 /* In the isel case however, we can use a compare immediate, so
19411 op1 may be a small constant. */
19412 && (!TARGET_ISEL || !short_cint_operand (op1, VOIDmode)))
19413 return 0;
19414 if (GET_MODE (true_cond) != result_mode)
19415 return 0;
19416 if (GET_MODE (false_cond) != result_mode)
19417 return 0;
19419 /* Don't allow using floating point comparisons for integer results for
19420 now. */
19421 if (FLOAT_MODE_P (compare_mode) && !FLOAT_MODE_P (result_mode))
19422 return 0;
19424 /* First, work out if the hardware can do this at all, or
19425 if it's too slow.... */
19426 if (!FLOAT_MODE_P (compare_mode))
19428 if (TARGET_ISEL)
19429 return rs6000_emit_int_cmove (dest, op, true_cond, false_cond);
19430 return 0;
19432 else if (TARGET_HARD_FLOAT && !TARGET_FPRS
19433 && SCALAR_FLOAT_MODE_P (compare_mode))
19434 return 0;
19436 is_against_zero = op1 == CONST0_RTX (compare_mode);
19438 /* A floating-point subtract might overflow, underflow, or produce
19439 an inexact result, thus changing the floating-point flags, so it
19440 can't be generated if we care about that. It's safe if one side
19441 of the construct is zero, since then no subtract will be
19442 generated. */
19443 if (SCALAR_FLOAT_MODE_P (compare_mode)
19444 && flag_trapping_math && ! is_against_zero)
19445 return 0;
19447 /* Eliminate half of the comparisons by switching operands, this
19448 makes the remaining code simpler. */
19449 if (code == UNLT || code == UNGT || code == UNORDERED || code == NE
19450 || code == LTGT || code == LT || code == UNLE)
19452 code = reverse_condition_maybe_unordered (code);
19453 temp = true_cond;
19454 true_cond = false_cond;
19455 false_cond = temp;
19458 /* UNEQ and LTGT take four instructions for a comparison with zero,
19459 it'll probably be faster to use a branch here too. */
19460 if (code == UNEQ && HONOR_NANS (compare_mode))
19461 return 0;
19463 if (GET_CODE (op1) == CONST_DOUBLE)
19464 REAL_VALUE_FROM_CONST_DOUBLE (c1, op1);
19466 /* We're going to try to implement comparisons by performing
19467 a subtract, then comparing against zero. Unfortunately,
19468 Inf - Inf is NaN which is not zero, and so if we don't
19469 know that the operand is finite and the comparison
19470 would treat EQ different to UNORDERED, we can't do it. */
19471 if (HONOR_INFINITIES (compare_mode)
19472 && code != GT && code != UNGE
19473 && (GET_CODE (op1) != CONST_DOUBLE || real_isinf (&c1))
19474 /* Constructs of the form (a OP b ? a : b) are safe. */
19475 && ((! rtx_equal_p (op0, false_cond) && ! rtx_equal_p (op1, false_cond))
19476 || (! rtx_equal_p (op0, true_cond)
19477 && ! rtx_equal_p (op1, true_cond))))
19478 return 0;
19480 /* At this point we know we can use fsel. */
19482 /* Reduce the comparison to a comparison against zero. */
19483 if (! is_against_zero)
19485 temp = gen_reg_rtx (compare_mode);
19486 emit_insn (gen_rtx_SET (VOIDmode, temp,
19487 gen_rtx_MINUS (compare_mode, op0, op1)));
19488 op0 = temp;
19489 op1 = CONST0_RTX (compare_mode);
19492 /* If we don't care about NaNs we can reduce some of the comparisons
19493 down to faster ones. */
19494 if (! HONOR_NANS (compare_mode))
19495 switch (code)
19497 case GT:
19498 code = LE;
19499 temp = true_cond;
19500 true_cond = false_cond;
19501 false_cond = temp;
19502 break;
19503 case UNGE:
19504 code = GE;
19505 break;
19506 case UNEQ:
19507 code = EQ;
19508 break;
19509 default:
19510 break;
19513 /* Now, reduce everything down to a GE. */
19514 switch (code)
19516 case GE:
19517 break;
19519 case LE:
19520 temp = gen_reg_rtx (compare_mode);
19521 emit_insn (gen_rtx_SET (VOIDmode, temp, gen_rtx_NEG (compare_mode, op0)));
19522 op0 = temp;
19523 break;
19525 case ORDERED:
19526 temp = gen_reg_rtx (compare_mode);
19527 emit_insn (gen_rtx_SET (VOIDmode, temp, gen_rtx_ABS (compare_mode, op0)));
19528 op0 = temp;
19529 break;
19531 case EQ:
19532 temp = gen_reg_rtx (compare_mode);
19533 emit_insn (gen_rtx_SET (VOIDmode, temp,
19534 gen_rtx_NEG (compare_mode,
19535 gen_rtx_ABS (compare_mode, op0))));
19536 op0 = temp;
19537 break;
19539 case UNGE:
19540 /* a UNGE 0 <-> (a GE 0 || -a UNLT 0) */
19541 temp = gen_reg_rtx (result_mode);
19542 emit_insn (gen_rtx_SET (VOIDmode, temp,
19543 gen_rtx_IF_THEN_ELSE (result_mode,
19544 gen_rtx_GE (VOIDmode,
19545 op0, op1),
19546 true_cond, false_cond)));
19547 false_cond = true_cond;
19548 true_cond = temp;
19550 temp = gen_reg_rtx (compare_mode);
19551 emit_insn (gen_rtx_SET (VOIDmode, temp, gen_rtx_NEG (compare_mode, op0)));
19552 op0 = temp;
19553 break;
19555 case GT:
19556 /* a GT 0 <-> (a GE 0 && -a UNLT 0) */
19557 temp = gen_reg_rtx (result_mode);
19558 emit_insn (gen_rtx_SET (VOIDmode, temp,
19559 gen_rtx_IF_THEN_ELSE (result_mode,
19560 gen_rtx_GE (VOIDmode,
19561 op0, op1),
19562 true_cond, false_cond)));
19563 true_cond = false_cond;
19564 false_cond = temp;
19566 temp = gen_reg_rtx (compare_mode);
19567 emit_insn (gen_rtx_SET (VOIDmode, temp, gen_rtx_NEG (compare_mode, op0)));
19568 op0 = temp;
19569 break;
19571 default:
19572 gcc_unreachable ();
19575 emit_insn (gen_rtx_SET (VOIDmode, dest,
19576 gen_rtx_IF_THEN_ELSE (result_mode,
19577 gen_rtx_GE (VOIDmode,
19578 op0, op1),
19579 true_cond, false_cond)));
19580 return 1;
19583 /* Same as above, but for ints (isel). */
19585 static int
19586 rs6000_emit_int_cmove (rtx dest, rtx op, rtx true_cond, rtx false_cond)
19588 rtx condition_rtx, cr;
19589 enum machine_mode mode = GET_MODE (dest);
19590 enum rtx_code cond_code;
19591 rtx (*isel_func) (rtx, rtx, rtx, rtx, rtx);
19592 bool signedp;
19594 if (mode != SImode && (!TARGET_POWERPC64 || mode != DImode))
19595 return 0;
19597 /* We still have to do the compare, because isel doesn't do a
19598 compare, it just looks at the CRx bits set by a previous compare
19599 instruction. */
19600 condition_rtx = rs6000_generate_compare (op, mode);
19601 cond_code = GET_CODE (condition_rtx);
19602 cr = XEXP (condition_rtx, 0);
19603 signedp = GET_MODE (cr) == CCmode;
19605 isel_func = (mode == SImode
19606 ? (signedp ? gen_isel_signed_si : gen_isel_unsigned_si)
19607 : (signedp ? gen_isel_signed_di : gen_isel_unsigned_di));
19609 switch (cond_code)
19611 case LT: case GT: case LTU: case GTU: case EQ:
19612 /* isel handles these directly. */
19613 break;
19615 default:
19616 /* We need to swap the sense of the comparison. */
19618 rtx t = true_cond;
19619 true_cond = false_cond;
19620 false_cond = t;
19621 PUT_CODE (condition_rtx, reverse_condition (cond_code));
19623 break;
19626 false_cond = force_reg (mode, false_cond);
19627 if (true_cond != const0_rtx)
19628 true_cond = force_reg (mode, true_cond);
19630 emit_insn (isel_func (dest, condition_rtx, true_cond, false_cond, cr));
19632 return 1;
19635 const char *
19636 output_isel (rtx *operands)
19638 enum rtx_code code;
19640 code = GET_CODE (operands[1]);
19642 if (code == GE || code == GEU || code == LE || code == LEU || code == NE)
19644 gcc_assert (GET_CODE (operands[2]) == REG
19645 && GET_CODE (operands[3]) == REG);
19646 PUT_CODE (operands[1], reverse_condition (code));
19647 return "isel %0,%3,%2,%j1";
19650 return "isel %0,%2,%3,%j1";
19653 void
19654 rs6000_emit_minmax (rtx dest, enum rtx_code code, rtx op0, rtx op1)
19656 enum machine_mode mode = GET_MODE (op0);
19657 enum rtx_code c;
19658 rtx target;
19660 /* VSX/altivec have direct min/max insns. */
19661 if ((code == SMAX || code == SMIN)
19662 && (VECTOR_UNIT_ALTIVEC_OR_VSX_P (mode)
19663 || (mode == SFmode && VECTOR_UNIT_VSX_P (DFmode))))
19665 emit_insn (gen_rtx_SET (VOIDmode,
19666 dest,
19667 gen_rtx_fmt_ee (code, mode, op0, op1)));
19668 return;
19671 if (code == SMAX || code == SMIN)
19672 c = GE;
19673 else
19674 c = GEU;
19676 if (code == SMAX || code == UMAX)
19677 target = emit_conditional_move (dest, c, op0, op1, mode,
19678 op0, op1, mode, 0);
19679 else
19680 target = emit_conditional_move (dest, c, op0, op1, mode,
19681 op1, op0, mode, 0);
19682 gcc_assert (target);
19683 if (target != dest)
19684 emit_move_insn (dest, target);
19687 /* A subroutine of the atomic operation splitters. Jump to LABEL if
19688 COND is true. Mark the jump as unlikely to be taken. */
19690 static void
19691 emit_unlikely_jump (rtx cond, rtx label)
19693 int very_unlikely = REG_BR_PROB_BASE / 100 - 1;
19694 rtx x;
19696 x = gen_rtx_IF_THEN_ELSE (VOIDmode, cond, label, pc_rtx);
19697 x = emit_jump_insn (gen_rtx_SET (VOIDmode, pc_rtx, x));
19698 add_int_reg_note (x, REG_BR_PROB, very_unlikely);
19701 /* A subroutine of the atomic operation splitters. Emit a load-locked
19702 instruction in MODE. For QI/HImode, possibly use a pattern than includes
19703 the zero_extend operation. */
19705 static void
19706 emit_load_locked (enum machine_mode mode, rtx reg, rtx mem)
19708 rtx (*fn) (rtx, rtx) = NULL;
19710 switch (mode)
19712 case QImode:
19713 fn = gen_load_lockedqi;
19714 break;
19715 case HImode:
19716 fn = gen_load_lockedhi;
19717 break;
19718 case SImode:
19719 if (GET_MODE (mem) == QImode)
19720 fn = gen_load_lockedqi_si;
19721 else if (GET_MODE (mem) == HImode)
19722 fn = gen_load_lockedhi_si;
19723 else
19724 fn = gen_load_lockedsi;
19725 break;
19726 case DImode:
19727 fn = gen_load_lockeddi;
19728 break;
19729 case TImode:
19730 fn = gen_load_lockedti;
19731 break;
19732 default:
19733 gcc_unreachable ();
19735 emit_insn (fn (reg, mem));
19738 /* A subroutine of the atomic operation splitters. Emit a store-conditional
19739 instruction in MODE. */
19741 static void
19742 emit_store_conditional (enum machine_mode mode, rtx res, rtx mem, rtx val)
19744 rtx (*fn) (rtx, rtx, rtx) = NULL;
19746 switch (mode)
19748 case QImode:
19749 fn = gen_store_conditionalqi;
19750 break;
19751 case HImode:
19752 fn = gen_store_conditionalhi;
19753 break;
19754 case SImode:
19755 fn = gen_store_conditionalsi;
19756 break;
19757 case DImode:
19758 fn = gen_store_conditionaldi;
19759 break;
19760 case TImode:
19761 fn = gen_store_conditionalti;
19762 break;
19763 default:
19764 gcc_unreachable ();
19767 /* Emit sync before stwcx. to address PPC405 Erratum. */
19768 if (PPC405_ERRATUM77)
19769 emit_insn (gen_hwsync ());
19771 emit_insn (fn (res, mem, val));
19774 /* Expand barriers before and after a load_locked/store_cond sequence. */
19776 static rtx
19777 rs6000_pre_atomic_barrier (rtx mem, enum memmodel model)
19779 rtx addr = XEXP (mem, 0);
19780 int strict_p = (reload_in_progress || reload_completed);
19782 if (!legitimate_indirect_address_p (addr, strict_p)
19783 && !legitimate_indexed_address_p (addr, strict_p))
19785 addr = force_reg (Pmode, addr);
19786 mem = replace_equiv_address_nv (mem, addr);
19789 switch (model)
19791 case MEMMODEL_RELAXED:
19792 case MEMMODEL_CONSUME:
19793 case MEMMODEL_ACQUIRE:
19794 break;
19795 case MEMMODEL_RELEASE:
19796 case MEMMODEL_ACQ_REL:
19797 emit_insn (gen_lwsync ());
19798 break;
19799 case MEMMODEL_SEQ_CST:
19800 emit_insn (gen_hwsync ());
19801 break;
19802 default:
19803 gcc_unreachable ();
19805 return mem;
19808 static void
19809 rs6000_post_atomic_barrier (enum memmodel model)
19811 switch (model)
19813 case MEMMODEL_RELAXED:
19814 case MEMMODEL_CONSUME:
19815 case MEMMODEL_RELEASE:
19816 break;
19817 case MEMMODEL_ACQUIRE:
19818 case MEMMODEL_ACQ_REL:
19819 case MEMMODEL_SEQ_CST:
19820 emit_insn (gen_isync ());
19821 break;
19822 default:
19823 gcc_unreachable ();
19827 /* A subroutine of the various atomic expanders. For sub-word operations,
19828 we must adjust things to operate on SImode. Given the original MEM,
19829 return a new aligned memory. Also build and return the quantities by
19830 which to shift and mask. */
19832 static rtx
19833 rs6000_adjust_atomic_subword (rtx orig_mem, rtx *pshift, rtx *pmask)
19835 rtx addr, align, shift, mask, mem;
19836 HOST_WIDE_INT shift_mask;
19837 enum machine_mode mode = GET_MODE (orig_mem);
19839 /* For smaller modes, we have to implement this via SImode. */
19840 shift_mask = (mode == QImode ? 0x18 : 0x10);
19842 addr = XEXP (orig_mem, 0);
19843 addr = force_reg (GET_MODE (addr), addr);
19845 /* Aligned memory containing subword. Generate a new memory. We
19846 do not want any of the existing MEM_ATTR data, as we're now
19847 accessing memory outside the original object. */
19848 align = expand_simple_binop (Pmode, AND, addr, GEN_INT (-4),
19849 NULL_RTX, 1, OPTAB_LIB_WIDEN);
19850 mem = gen_rtx_MEM (SImode, align);
19851 MEM_VOLATILE_P (mem) = MEM_VOLATILE_P (orig_mem);
19852 if (MEM_ALIAS_SET (orig_mem) == ALIAS_SET_MEMORY_BARRIER)
19853 set_mem_alias_set (mem, ALIAS_SET_MEMORY_BARRIER);
19855 /* Shift amount for subword relative to aligned word. */
19856 shift = gen_reg_rtx (SImode);
19857 addr = gen_lowpart (SImode, addr);
19858 emit_insn (gen_rlwinm (shift, addr, GEN_INT (3), GEN_INT (shift_mask)));
19859 if (WORDS_BIG_ENDIAN)
19860 shift = expand_simple_binop (SImode, XOR, shift, GEN_INT (shift_mask),
19861 shift, 1, OPTAB_LIB_WIDEN);
19862 *pshift = shift;
19864 /* Mask for insertion. */
19865 mask = expand_simple_binop (SImode, ASHIFT, GEN_INT (GET_MODE_MASK (mode)),
19866 shift, NULL_RTX, 1, OPTAB_LIB_WIDEN);
19867 *pmask = mask;
19869 return mem;
19872 /* A subroutine of the various atomic expanders. For sub-word operands,
19873 combine OLDVAL and NEWVAL via MASK. Returns a new pseduo. */
19875 static rtx
19876 rs6000_mask_atomic_subword (rtx oldval, rtx newval, rtx mask)
19878 rtx x;
19880 x = gen_reg_rtx (SImode);
19881 emit_insn (gen_rtx_SET (VOIDmode, x,
19882 gen_rtx_AND (SImode,
19883 gen_rtx_NOT (SImode, mask),
19884 oldval)));
19886 x = expand_simple_binop (SImode, IOR, newval, x, x, 1, OPTAB_LIB_WIDEN);
19888 return x;
19891 /* A subroutine of the various atomic expanders. For sub-word operands,
19892 extract WIDE to NARROW via SHIFT. */
19894 static void
19895 rs6000_finish_atomic_subword (rtx narrow, rtx wide, rtx shift)
19897 wide = expand_simple_binop (SImode, LSHIFTRT, wide, shift,
19898 wide, 1, OPTAB_LIB_WIDEN);
19899 emit_move_insn (narrow, gen_lowpart (GET_MODE (narrow), wide));
19902 /* Expand an atomic compare and swap operation. */
19904 void
19905 rs6000_expand_atomic_compare_and_swap (rtx operands[])
19907 rtx boolval, retval, mem, oldval, newval, cond;
19908 rtx label1, label2, x, mask, shift;
19909 enum machine_mode mode, orig_mode;
19910 enum memmodel mod_s, mod_f;
19911 bool is_weak;
19913 boolval = operands[0];
19914 retval = operands[1];
19915 mem = operands[2];
19916 oldval = operands[3];
19917 newval = operands[4];
19918 is_weak = (INTVAL (operands[5]) != 0);
19919 mod_s = (enum memmodel) INTVAL (operands[6]);
19920 mod_f = (enum memmodel) INTVAL (operands[7]);
19921 orig_mode = mode = GET_MODE (mem);
19923 mask = shift = NULL_RTX;
19924 if (mode == QImode || mode == HImode)
19926 /* Before power8, we didn't have access to lbarx/lharx, so generate a
19927 lwarx and shift/mask operations. With power8, we need to do the
19928 comparison in SImode, but the store is still done in QI/HImode. */
19929 oldval = convert_modes (SImode, mode, oldval, 1);
19931 if (!TARGET_SYNC_HI_QI)
19933 mem = rs6000_adjust_atomic_subword (mem, &shift, &mask);
19935 /* Shift and mask OLDVAL into position with the word. */
19936 oldval = expand_simple_binop (SImode, ASHIFT, oldval, shift,
19937 NULL_RTX, 1, OPTAB_LIB_WIDEN);
19939 /* Shift and mask NEWVAL into position within the word. */
19940 newval = convert_modes (SImode, mode, newval, 1);
19941 newval = expand_simple_binop (SImode, ASHIFT, newval, shift,
19942 NULL_RTX, 1, OPTAB_LIB_WIDEN);
19945 /* Prepare to adjust the return value. */
19946 retval = gen_reg_rtx (SImode);
19947 mode = SImode;
19949 else if (reg_overlap_mentioned_p (retval, oldval))
19950 oldval = copy_to_reg (oldval);
19952 mem = rs6000_pre_atomic_barrier (mem, mod_s);
19954 label1 = NULL_RTX;
19955 if (!is_weak)
19957 label1 = gen_rtx_LABEL_REF (VOIDmode, gen_label_rtx ());
19958 emit_label (XEXP (label1, 0));
19960 label2 = gen_rtx_LABEL_REF (VOIDmode, gen_label_rtx ());
19962 emit_load_locked (mode, retval, mem);
19964 x = retval;
19965 if (mask)
19967 x = expand_simple_binop (SImode, AND, retval, mask,
19968 NULL_RTX, 1, OPTAB_LIB_WIDEN);
19971 cond = gen_reg_rtx (CCmode);
19972 /* If we have TImode, synthesize a comparison. */
19973 if (mode != TImode)
19974 x = gen_rtx_COMPARE (CCmode, x, oldval);
19975 else
19977 rtx xor1_result = gen_reg_rtx (DImode);
19978 rtx xor2_result = gen_reg_rtx (DImode);
19979 rtx or_result = gen_reg_rtx (DImode);
19980 rtx new_word0 = simplify_gen_subreg (DImode, x, TImode, 0);
19981 rtx new_word1 = simplify_gen_subreg (DImode, x, TImode, 8);
19982 rtx old_word0 = simplify_gen_subreg (DImode, oldval, TImode, 0);
19983 rtx old_word1 = simplify_gen_subreg (DImode, oldval, TImode, 8);
19985 emit_insn (gen_xordi3 (xor1_result, new_word0, old_word0));
19986 emit_insn (gen_xordi3 (xor2_result, new_word1, old_word1));
19987 emit_insn (gen_iordi3 (or_result, xor1_result, xor2_result));
19988 x = gen_rtx_COMPARE (CCmode, or_result, const0_rtx);
19991 emit_insn (gen_rtx_SET (VOIDmode, cond, x));
19993 x = gen_rtx_NE (VOIDmode, cond, const0_rtx);
19994 emit_unlikely_jump (x, label2);
19996 x = newval;
19997 if (mask)
19998 x = rs6000_mask_atomic_subword (retval, newval, mask);
20000 emit_store_conditional (orig_mode, cond, mem, x);
20002 if (!is_weak)
20004 x = gen_rtx_NE (VOIDmode, cond, const0_rtx);
20005 emit_unlikely_jump (x, label1);
20008 if (mod_f != MEMMODEL_RELAXED)
20009 emit_label (XEXP (label2, 0));
20011 rs6000_post_atomic_barrier (mod_s);
20013 if (mod_f == MEMMODEL_RELAXED)
20014 emit_label (XEXP (label2, 0));
20016 if (shift)
20017 rs6000_finish_atomic_subword (operands[1], retval, shift);
20018 else if (mode != GET_MODE (operands[1]))
20019 convert_move (operands[1], retval, 1);
20021 /* In all cases, CR0 contains EQ on success, and NE on failure. */
20022 x = gen_rtx_EQ (SImode, cond, const0_rtx);
20023 emit_insn (gen_rtx_SET (VOIDmode, boolval, x));
20026 /* Expand an atomic exchange operation. */
20028 void
20029 rs6000_expand_atomic_exchange (rtx operands[])
20031 rtx retval, mem, val, cond;
20032 enum machine_mode mode;
20033 enum memmodel model;
20034 rtx label, x, mask, shift;
20036 retval = operands[0];
20037 mem = operands[1];
20038 val = operands[2];
20039 model = (enum memmodel) INTVAL (operands[3]);
20040 mode = GET_MODE (mem);
20042 mask = shift = NULL_RTX;
20043 if (!TARGET_SYNC_HI_QI && (mode == QImode || mode == HImode))
20045 mem = rs6000_adjust_atomic_subword (mem, &shift, &mask);
20047 /* Shift and mask VAL into position with the word. */
20048 val = convert_modes (SImode, mode, val, 1);
20049 val = expand_simple_binop (SImode, ASHIFT, val, shift,
20050 NULL_RTX, 1, OPTAB_LIB_WIDEN);
20052 /* Prepare to adjust the return value. */
20053 retval = gen_reg_rtx (SImode);
20054 mode = SImode;
20057 mem = rs6000_pre_atomic_barrier (mem, model);
20059 label = gen_rtx_LABEL_REF (VOIDmode, gen_label_rtx ());
20060 emit_label (XEXP (label, 0));
20062 emit_load_locked (mode, retval, mem);
20064 x = val;
20065 if (mask)
20066 x = rs6000_mask_atomic_subword (retval, val, mask);
20068 cond = gen_reg_rtx (CCmode);
20069 emit_store_conditional (mode, cond, mem, x);
20071 x = gen_rtx_NE (VOIDmode, cond, const0_rtx);
20072 emit_unlikely_jump (x, label);
20074 rs6000_post_atomic_barrier (model);
20076 if (shift)
20077 rs6000_finish_atomic_subword (operands[0], retval, shift);
20080 /* Expand an atomic fetch-and-operate pattern. CODE is the binary operation
20081 to perform. MEM is the memory on which to operate. VAL is the second
20082 operand of the binary operator. BEFORE and AFTER are optional locations to
20083 return the value of MEM either before of after the operation. MODEL_RTX
20084 is a CONST_INT containing the memory model to use. */
20086 void
20087 rs6000_expand_atomic_op (enum rtx_code code, rtx mem, rtx val,
20088 rtx orig_before, rtx orig_after, rtx model_rtx)
20090 enum memmodel model = (enum memmodel) INTVAL (model_rtx);
20091 enum machine_mode mode = GET_MODE (mem);
20092 enum machine_mode store_mode = mode;
20093 rtx label, x, cond, mask, shift;
20094 rtx before = orig_before, after = orig_after;
20096 mask = shift = NULL_RTX;
20097 /* On power8, we want to use SImode for the operation. On previous systems,
20098 use the operation in a subword and shift/mask to get the proper byte or
20099 halfword. */
20100 if (mode == QImode || mode == HImode)
20102 if (TARGET_SYNC_HI_QI)
20104 val = convert_modes (SImode, mode, val, 1);
20106 /* Prepare to adjust the return value. */
20107 before = gen_reg_rtx (SImode);
20108 if (after)
20109 after = gen_reg_rtx (SImode);
20110 mode = SImode;
20112 else
20114 mem = rs6000_adjust_atomic_subword (mem, &shift, &mask);
20116 /* Shift and mask VAL into position with the word. */
20117 val = convert_modes (SImode, mode, val, 1);
20118 val = expand_simple_binop (SImode, ASHIFT, val, shift,
20119 NULL_RTX, 1, OPTAB_LIB_WIDEN);
20121 switch (code)
20123 case IOR:
20124 case XOR:
20125 /* We've already zero-extended VAL. That is sufficient to
20126 make certain that it does not affect other bits. */
20127 mask = NULL;
20128 break;
20130 case AND:
20131 /* If we make certain that all of the other bits in VAL are
20132 set, that will be sufficient to not affect other bits. */
20133 x = gen_rtx_NOT (SImode, mask);
20134 x = gen_rtx_IOR (SImode, x, val);
20135 emit_insn (gen_rtx_SET (VOIDmode, val, x));
20136 mask = NULL;
20137 break;
20139 case NOT:
20140 case PLUS:
20141 case MINUS:
20142 /* These will all affect bits outside the field and need
20143 adjustment via MASK within the loop. */
20144 break;
20146 default:
20147 gcc_unreachable ();
20150 /* Prepare to adjust the return value. */
20151 before = gen_reg_rtx (SImode);
20152 if (after)
20153 after = gen_reg_rtx (SImode);
20154 store_mode = mode = SImode;
20158 mem = rs6000_pre_atomic_barrier (mem, model);
20160 label = gen_label_rtx ();
20161 emit_label (label);
20162 label = gen_rtx_LABEL_REF (VOIDmode, label);
20164 if (before == NULL_RTX)
20165 before = gen_reg_rtx (mode);
20167 emit_load_locked (mode, before, mem);
20169 if (code == NOT)
20171 x = expand_simple_binop (mode, AND, before, val,
20172 NULL_RTX, 1, OPTAB_LIB_WIDEN);
20173 after = expand_simple_unop (mode, NOT, x, after, 1);
20175 else
20177 after = expand_simple_binop (mode, code, before, val,
20178 after, 1, OPTAB_LIB_WIDEN);
20181 x = after;
20182 if (mask)
20184 x = expand_simple_binop (SImode, AND, after, mask,
20185 NULL_RTX, 1, OPTAB_LIB_WIDEN);
20186 x = rs6000_mask_atomic_subword (before, x, mask);
20188 else if (store_mode != mode)
20189 x = convert_modes (store_mode, mode, x, 1);
20191 cond = gen_reg_rtx (CCmode);
20192 emit_store_conditional (store_mode, cond, mem, x);
20194 x = gen_rtx_NE (VOIDmode, cond, const0_rtx);
20195 emit_unlikely_jump (x, label);
20197 rs6000_post_atomic_barrier (model);
20199 if (shift)
20201 /* QImode/HImode on machines without lbarx/lharx where we do a lwarx and
20202 then do the calcuations in a SImode register. */
20203 if (orig_before)
20204 rs6000_finish_atomic_subword (orig_before, before, shift);
20205 if (orig_after)
20206 rs6000_finish_atomic_subword (orig_after, after, shift);
20208 else if (store_mode != mode)
20210 /* QImode/HImode on machines with lbarx/lharx where we do the native
20211 operation and then do the calcuations in a SImode register. */
20212 if (orig_before)
20213 convert_move (orig_before, before, 1);
20214 if (orig_after)
20215 convert_move (orig_after, after, 1);
20217 else if (orig_after && after != orig_after)
20218 emit_move_insn (orig_after, after);
20221 /* Emit instructions to move SRC to DST. Called by splitters for
20222 multi-register moves. It will emit at most one instruction for
20223 each register that is accessed; that is, it won't emit li/lis pairs
20224 (or equivalent for 64-bit code). One of SRC or DST must be a hard
20225 register. */
20227 void
20228 rs6000_split_multireg_move (rtx dst, rtx src)
20230 /* The register number of the first register being moved. */
20231 int reg;
20232 /* The mode that is to be moved. */
20233 enum machine_mode mode;
20234 /* The mode that the move is being done in, and its size. */
20235 enum machine_mode reg_mode;
20236 int reg_mode_size;
20237 /* The number of registers that will be moved. */
20238 int nregs;
20240 reg = REG_P (dst) ? REGNO (dst) : REGNO (src);
20241 mode = GET_MODE (dst);
20242 nregs = hard_regno_nregs[reg][mode];
20243 if (FP_REGNO_P (reg))
20244 reg_mode = DECIMAL_FLOAT_MODE_P (mode) ? DDmode :
20245 ((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT) ? DFmode : SFmode);
20246 else if (ALTIVEC_REGNO_P (reg))
20247 reg_mode = V16QImode;
20248 else if (TARGET_E500_DOUBLE && mode == TFmode)
20249 reg_mode = DFmode;
20250 else
20251 reg_mode = word_mode;
20252 reg_mode_size = GET_MODE_SIZE (reg_mode);
20254 gcc_assert (reg_mode_size * nregs == GET_MODE_SIZE (mode));
20256 /* TDmode residing in FP registers is special, since the ISA requires that
20257 the lower-numbered word of a register pair is always the most significant
20258 word, even in little-endian mode. This does not match the usual subreg
20259 semantics, so we cannnot use simplify_gen_subreg in those cases. Access
20260 the appropriate constituent registers "by hand" in little-endian mode.
20262 Note we do not need to check for destructive overlap here since TDmode
20263 can only reside in even/odd register pairs. */
20264 if (FP_REGNO_P (reg) && DECIMAL_FLOAT_MODE_P (mode) && !BYTES_BIG_ENDIAN)
20266 rtx p_src, p_dst;
20267 int i;
20269 for (i = 0; i < nregs; i++)
20271 if (REG_P (src) && FP_REGNO_P (REGNO (src)))
20272 p_src = gen_rtx_REG (reg_mode, REGNO (src) + nregs - 1 - i);
20273 else
20274 p_src = simplify_gen_subreg (reg_mode, src, mode,
20275 i * reg_mode_size);
20277 if (REG_P (dst) && FP_REGNO_P (REGNO (dst)))
20278 p_dst = gen_rtx_REG (reg_mode, REGNO (dst) + nregs - 1 - i);
20279 else
20280 p_dst = simplify_gen_subreg (reg_mode, dst, mode,
20281 i * reg_mode_size);
20283 emit_insn (gen_rtx_SET (VOIDmode, p_dst, p_src));
20286 return;
20289 if (REG_P (src) && REG_P (dst) && (REGNO (src) < REGNO (dst)))
20291 /* Move register range backwards, if we might have destructive
20292 overlap. */
20293 int i;
20294 for (i = nregs - 1; i >= 0; i--)
20295 emit_insn (gen_rtx_SET (VOIDmode,
20296 simplify_gen_subreg (reg_mode, dst, mode,
20297 i * reg_mode_size),
20298 simplify_gen_subreg (reg_mode, src, mode,
20299 i * reg_mode_size)));
20301 else
20303 int i;
20304 int j = -1;
20305 bool used_update = false;
20306 rtx restore_basereg = NULL_RTX;
20308 if (MEM_P (src) && INT_REGNO_P (reg))
20310 rtx breg;
20312 if (GET_CODE (XEXP (src, 0)) == PRE_INC
20313 || GET_CODE (XEXP (src, 0)) == PRE_DEC)
20315 rtx delta_rtx;
20316 breg = XEXP (XEXP (src, 0), 0);
20317 delta_rtx = (GET_CODE (XEXP (src, 0)) == PRE_INC
20318 ? GEN_INT (GET_MODE_SIZE (GET_MODE (src)))
20319 : GEN_INT (-GET_MODE_SIZE (GET_MODE (src))));
20320 emit_insn (gen_add3_insn (breg, breg, delta_rtx));
20321 src = replace_equiv_address (src, breg);
20323 else if (! rs6000_offsettable_memref_p (src, reg_mode))
20325 if (GET_CODE (XEXP (src, 0)) == PRE_MODIFY)
20327 rtx basereg = XEXP (XEXP (src, 0), 0);
20328 if (TARGET_UPDATE)
20330 rtx ndst = simplify_gen_subreg (reg_mode, dst, mode, 0);
20331 emit_insn (gen_rtx_SET (VOIDmode, ndst,
20332 gen_rtx_MEM (reg_mode, XEXP (src, 0))));
20333 used_update = true;
20335 else
20336 emit_insn (gen_rtx_SET (VOIDmode, basereg,
20337 XEXP (XEXP (src, 0), 1)));
20338 src = replace_equiv_address (src, basereg);
20340 else
20342 rtx basereg = gen_rtx_REG (Pmode, reg);
20343 emit_insn (gen_rtx_SET (VOIDmode, basereg, XEXP (src, 0)));
20344 src = replace_equiv_address (src, basereg);
20348 breg = XEXP (src, 0);
20349 if (GET_CODE (breg) == PLUS || GET_CODE (breg) == LO_SUM)
20350 breg = XEXP (breg, 0);
20352 /* If the base register we are using to address memory is
20353 also a destination reg, then change that register last. */
20354 if (REG_P (breg)
20355 && REGNO (breg) >= REGNO (dst)
20356 && REGNO (breg) < REGNO (dst) + nregs)
20357 j = REGNO (breg) - REGNO (dst);
20359 else if (MEM_P (dst) && INT_REGNO_P (reg))
20361 rtx breg;
20363 if (GET_CODE (XEXP (dst, 0)) == PRE_INC
20364 || GET_CODE (XEXP (dst, 0)) == PRE_DEC)
20366 rtx delta_rtx;
20367 breg = XEXP (XEXP (dst, 0), 0);
20368 delta_rtx = (GET_CODE (XEXP (dst, 0)) == PRE_INC
20369 ? GEN_INT (GET_MODE_SIZE (GET_MODE (dst)))
20370 : GEN_INT (-GET_MODE_SIZE (GET_MODE (dst))));
20372 /* We have to update the breg before doing the store.
20373 Use store with update, if available. */
20375 if (TARGET_UPDATE)
20377 rtx nsrc = simplify_gen_subreg (reg_mode, src, mode, 0);
20378 emit_insn (TARGET_32BIT
20379 ? (TARGET_POWERPC64
20380 ? gen_movdi_si_update (breg, breg, delta_rtx, nsrc)
20381 : gen_movsi_update (breg, breg, delta_rtx, nsrc))
20382 : gen_movdi_di_update (breg, breg, delta_rtx, nsrc));
20383 used_update = true;
20385 else
20386 emit_insn (gen_add3_insn (breg, breg, delta_rtx));
20387 dst = replace_equiv_address (dst, breg);
20389 else if (!rs6000_offsettable_memref_p (dst, reg_mode)
20390 && GET_CODE (XEXP (dst, 0)) != LO_SUM)
20392 if (GET_CODE (XEXP (dst, 0)) == PRE_MODIFY)
20394 rtx basereg = XEXP (XEXP (dst, 0), 0);
20395 if (TARGET_UPDATE)
20397 rtx nsrc = simplify_gen_subreg (reg_mode, src, mode, 0);
20398 emit_insn (gen_rtx_SET (VOIDmode,
20399 gen_rtx_MEM (reg_mode, XEXP (dst, 0)), nsrc));
20400 used_update = true;
20402 else
20403 emit_insn (gen_rtx_SET (VOIDmode, basereg,
20404 XEXP (XEXP (dst, 0), 1)));
20405 dst = replace_equiv_address (dst, basereg);
20407 else
20409 rtx basereg = XEXP (XEXP (dst, 0), 0);
20410 rtx offsetreg = XEXP (XEXP (dst, 0), 1);
20411 gcc_assert (GET_CODE (XEXP (dst, 0)) == PLUS
20412 && REG_P (basereg)
20413 && REG_P (offsetreg)
20414 && REGNO (basereg) != REGNO (offsetreg));
20415 if (REGNO (basereg) == 0)
20417 rtx tmp = offsetreg;
20418 offsetreg = basereg;
20419 basereg = tmp;
20421 emit_insn (gen_add3_insn (basereg, basereg, offsetreg));
20422 restore_basereg = gen_sub3_insn (basereg, basereg, offsetreg);
20423 dst = replace_equiv_address (dst, basereg);
20426 else if (GET_CODE (XEXP (dst, 0)) != LO_SUM)
20427 gcc_assert (rs6000_offsettable_memref_p (dst, reg_mode));
20430 for (i = 0; i < nregs; i++)
20432 /* Calculate index to next subword. */
20433 ++j;
20434 if (j == nregs)
20435 j = 0;
20437 /* If compiler already emitted move of first word by
20438 store with update, no need to do anything. */
20439 if (j == 0 && used_update)
20440 continue;
20442 emit_insn (gen_rtx_SET (VOIDmode,
20443 simplify_gen_subreg (reg_mode, dst, mode,
20444 j * reg_mode_size),
20445 simplify_gen_subreg (reg_mode, src, mode,
20446 j * reg_mode_size)));
20448 if (restore_basereg != NULL_RTX)
20449 emit_insn (restore_basereg);
20454 /* This page contains routines that are used to determine what the
20455 function prologue and epilogue code will do and write them out. */
20457 static inline bool
20458 save_reg_p (int r)
20460 return !call_used_regs[r] && df_regs_ever_live_p (r);
20463 /* Return the first fixed-point register that is required to be
20464 saved. 32 if none. */
20467 first_reg_to_save (void)
20469 int first_reg;
20471 /* Find lowest numbered live register. */
20472 for (first_reg = 13; first_reg <= 31; first_reg++)
20473 if (save_reg_p (first_reg))
20474 break;
20476 if (first_reg > RS6000_PIC_OFFSET_TABLE_REGNUM
20477 && ((DEFAULT_ABI == ABI_V4 && flag_pic != 0)
20478 || (DEFAULT_ABI == ABI_DARWIN && flag_pic)
20479 || (TARGET_TOC && TARGET_MINIMAL_TOC))
20480 && df_regs_ever_live_p (RS6000_PIC_OFFSET_TABLE_REGNUM))
20481 first_reg = RS6000_PIC_OFFSET_TABLE_REGNUM;
20483 #if TARGET_MACHO
20484 if (flag_pic
20485 && crtl->uses_pic_offset_table
20486 && first_reg > RS6000_PIC_OFFSET_TABLE_REGNUM)
20487 return RS6000_PIC_OFFSET_TABLE_REGNUM;
20488 #endif
20490 return first_reg;
20493 /* Similar, for FP regs. */
20496 first_fp_reg_to_save (void)
20498 int first_reg;
20500 /* Find lowest numbered live register. */
20501 for (first_reg = 14 + 32; first_reg <= 63; first_reg++)
20502 if (save_reg_p (first_reg))
20503 break;
20505 return first_reg;
20508 /* Similar, for AltiVec regs. */
20510 static int
20511 first_altivec_reg_to_save (void)
20513 int i;
20515 /* Stack frame remains as is unless we are in AltiVec ABI. */
20516 if (! TARGET_ALTIVEC_ABI)
20517 return LAST_ALTIVEC_REGNO + 1;
20519 /* On Darwin, the unwind routines are compiled without
20520 TARGET_ALTIVEC, and use save_world to save/restore the
20521 altivec registers when necessary. */
20522 if (DEFAULT_ABI == ABI_DARWIN && crtl->calls_eh_return
20523 && ! TARGET_ALTIVEC)
20524 return FIRST_ALTIVEC_REGNO + 20;
20526 /* Find lowest numbered live register. */
20527 for (i = FIRST_ALTIVEC_REGNO + 20; i <= LAST_ALTIVEC_REGNO; ++i)
20528 if (save_reg_p (i))
20529 break;
20531 return i;
20534 /* Return a 32-bit mask of the AltiVec registers we need to set in
20535 VRSAVE. Bit n of the return value is 1 if Vn is live. The MSB in
20536 the 32-bit word is 0. */
20538 static unsigned int
20539 compute_vrsave_mask (void)
20541 unsigned int i, mask = 0;
20543 /* On Darwin, the unwind routines are compiled without
20544 TARGET_ALTIVEC, and use save_world to save/restore the
20545 call-saved altivec registers when necessary. */
20546 if (DEFAULT_ABI == ABI_DARWIN && crtl->calls_eh_return
20547 && ! TARGET_ALTIVEC)
20548 mask |= 0xFFF;
20550 /* First, find out if we use _any_ altivec registers. */
20551 for (i = FIRST_ALTIVEC_REGNO; i <= LAST_ALTIVEC_REGNO; ++i)
20552 if (df_regs_ever_live_p (i))
20553 mask |= ALTIVEC_REG_BIT (i);
20555 if (mask == 0)
20556 return mask;
20558 /* Next, remove the argument registers from the set. These must
20559 be in the VRSAVE mask set by the caller, so we don't need to add
20560 them in again. More importantly, the mask we compute here is
20561 used to generate CLOBBERs in the set_vrsave insn, and we do not
20562 wish the argument registers to die. */
20563 for (i = crtl->args.info.vregno - 1; i >= ALTIVEC_ARG_MIN_REG; --i)
20564 mask &= ~ALTIVEC_REG_BIT (i);
20566 /* Similarly, remove the return value from the set. */
20568 bool yes = false;
20569 diddle_return_value (is_altivec_return_reg, &yes);
20570 if (yes)
20571 mask &= ~ALTIVEC_REG_BIT (ALTIVEC_ARG_RETURN);
20574 return mask;
20577 /* For a very restricted set of circumstances, we can cut down the
20578 size of prologues/epilogues by calling our own save/restore-the-world
20579 routines. */
20581 static void
20582 compute_save_world_info (rs6000_stack_t *info_ptr)
20584 info_ptr->world_save_p = 1;
20585 info_ptr->world_save_p
20586 = (WORLD_SAVE_P (info_ptr)
20587 && DEFAULT_ABI == ABI_DARWIN
20588 && !cfun->has_nonlocal_label
20589 && info_ptr->first_fp_reg_save == FIRST_SAVED_FP_REGNO
20590 && info_ptr->first_gp_reg_save == FIRST_SAVED_GP_REGNO
20591 && info_ptr->first_altivec_reg_save == FIRST_SAVED_ALTIVEC_REGNO
20592 && info_ptr->cr_save_p);
20594 /* This will not work in conjunction with sibcalls. Make sure there
20595 are none. (This check is expensive, but seldom executed.) */
20596 if (WORLD_SAVE_P (info_ptr))
20598 rtx insn;
20599 for (insn = get_last_insn_anywhere (); insn; insn = PREV_INSN (insn))
20600 if (CALL_P (insn) && SIBLING_CALL_P (insn))
20602 info_ptr->world_save_p = 0;
20603 break;
20607 if (WORLD_SAVE_P (info_ptr))
20609 /* Even if we're not touching VRsave, make sure there's room on the
20610 stack for it, if it looks like we're calling SAVE_WORLD, which
20611 will attempt to save it. */
20612 info_ptr->vrsave_size = 4;
20614 /* If we are going to save the world, we need to save the link register too. */
20615 info_ptr->lr_save_p = 1;
20617 /* "Save" the VRsave register too if we're saving the world. */
20618 if (info_ptr->vrsave_mask == 0)
20619 info_ptr->vrsave_mask = compute_vrsave_mask ();
20621 /* Because the Darwin register save/restore routines only handle
20622 F14 .. F31 and V20 .. V31 as per the ABI, perform a consistency
20623 check. */
20624 gcc_assert (info_ptr->first_fp_reg_save >= FIRST_SAVED_FP_REGNO
20625 && (info_ptr->first_altivec_reg_save
20626 >= FIRST_SAVED_ALTIVEC_REGNO));
20628 return;
20632 static void
20633 is_altivec_return_reg (rtx reg, void *xyes)
20635 bool *yes = (bool *) xyes;
20636 if (REGNO (reg) == ALTIVEC_ARG_RETURN)
20637 *yes = true;
20641 /* Look for user-defined global regs in the range FIRST to LAST-1.
20642 We should not restore these, and so cannot use lmw or out-of-line
20643 restore functions if there are any. We also can't save them
20644 (well, emit frame notes for them), because frame unwinding during
20645 exception handling will restore saved registers. */
20647 static bool
20648 global_regs_p (unsigned first, unsigned last)
20650 while (first < last)
20651 if (global_regs[first++])
20652 return true;
20653 return false;
20656 /* Determine the strategy for savings/restoring registers. */
20658 enum {
20659 SAVRES_MULTIPLE = 0x1,
20660 SAVE_INLINE_FPRS = 0x2,
20661 SAVE_INLINE_GPRS = 0x4,
20662 REST_INLINE_FPRS = 0x8,
20663 REST_INLINE_GPRS = 0x10,
20664 SAVE_NOINLINE_GPRS_SAVES_LR = 0x20,
20665 SAVE_NOINLINE_FPRS_SAVES_LR = 0x40,
20666 REST_NOINLINE_FPRS_DOESNT_RESTORE_LR = 0x80,
20667 SAVE_INLINE_VRS = 0x100,
20668 REST_INLINE_VRS = 0x200
20671 static int
20672 rs6000_savres_strategy (rs6000_stack_t *info,
20673 bool using_static_chain_p)
20675 int strategy = 0;
20676 bool lr_save_p;
20678 if (TARGET_MULTIPLE
20679 && !TARGET_POWERPC64
20680 && !(TARGET_SPE_ABI && info->spe_64bit_regs_used)
20681 && info->first_gp_reg_save < 31
20682 && !global_regs_p (info->first_gp_reg_save, 32))
20683 strategy |= SAVRES_MULTIPLE;
20685 if (crtl->calls_eh_return
20686 || cfun->machine->ra_need_lr)
20687 strategy |= (SAVE_INLINE_FPRS | REST_INLINE_FPRS
20688 | SAVE_INLINE_GPRS | REST_INLINE_GPRS
20689 | SAVE_INLINE_VRS | REST_INLINE_VRS);
20691 if (info->first_fp_reg_save == 64
20692 /* The out-of-line FP routines use double-precision stores;
20693 we can't use those routines if we don't have such stores. */
20694 || (TARGET_HARD_FLOAT && !TARGET_DOUBLE_FLOAT)
20695 || global_regs_p (info->first_fp_reg_save, 64))
20696 strategy |= SAVE_INLINE_FPRS | REST_INLINE_FPRS;
20698 if (info->first_gp_reg_save == 32
20699 || (!(strategy & SAVRES_MULTIPLE)
20700 && global_regs_p (info->first_gp_reg_save, 32)))
20701 strategy |= SAVE_INLINE_GPRS | REST_INLINE_GPRS;
20703 if (info->first_altivec_reg_save == LAST_ALTIVEC_REGNO + 1
20704 || global_regs_p (info->first_altivec_reg_save, LAST_ALTIVEC_REGNO + 1))
20705 strategy |= SAVE_INLINE_VRS | REST_INLINE_VRS;
20707 /* Define cutoff for using out-of-line functions to save registers. */
20708 if (DEFAULT_ABI == ABI_V4 || TARGET_ELF)
20710 if (!optimize_size)
20712 strategy |= SAVE_INLINE_FPRS | REST_INLINE_FPRS;
20713 strategy |= SAVE_INLINE_GPRS | REST_INLINE_GPRS;
20714 strategy |= SAVE_INLINE_VRS | REST_INLINE_VRS;
20716 else
20718 /* Prefer out-of-line restore if it will exit. */
20719 if (info->first_fp_reg_save > 61)
20720 strategy |= SAVE_INLINE_FPRS;
20721 if (info->first_gp_reg_save > 29)
20723 if (info->first_fp_reg_save == 64)
20724 strategy |= SAVE_INLINE_GPRS;
20725 else
20726 strategy |= SAVE_INLINE_GPRS | REST_INLINE_GPRS;
20728 if (info->first_altivec_reg_save == LAST_ALTIVEC_REGNO)
20729 strategy |= SAVE_INLINE_VRS | REST_INLINE_VRS;
20732 else if (DEFAULT_ABI == ABI_DARWIN)
20734 if (info->first_fp_reg_save > 60)
20735 strategy |= SAVE_INLINE_FPRS | REST_INLINE_FPRS;
20736 if (info->first_gp_reg_save > 29)
20737 strategy |= SAVE_INLINE_GPRS | REST_INLINE_GPRS;
20738 strategy |= SAVE_INLINE_VRS | REST_INLINE_VRS;
20740 else
20742 gcc_checking_assert (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2);
20743 if (info->first_fp_reg_save > 61)
20744 strategy |= SAVE_INLINE_FPRS | REST_INLINE_FPRS;
20745 strategy |= SAVE_INLINE_GPRS | REST_INLINE_GPRS;
20746 strategy |= SAVE_INLINE_VRS | REST_INLINE_VRS;
20749 /* Don't bother to try to save things out-of-line if r11 is occupied
20750 by the static chain. It would require too much fiddling and the
20751 static chain is rarely used anyway. FPRs are saved w.r.t the stack
20752 pointer on Darwin, and AIX uses r1 or r12. */
20753 if (using_static_chain_p
20754 && (DEFAULT_ABI == ABI_V4 || DEFAULT_ABI == ABI_DARWIN))
20755 strategy |= ((DEFAULT_ABI == ABI_DARWIN ? 0 : SAVE_INLINE_FPRS)
20756 | SAVE_INLINE_GPRS
20757 | SAVE_INLINE_VRS | REST_INLINE_VRS);
20759 /* We can only use the out-of-line routines to restore if we've
20760 saved all the registers from first_fp_reg_save in the prologue.
20761 Otherwise, we risk loading garbage. */
20762 if ((strategy & (SAVE_INLINE_FPRS | REST_INLINE_FPRS)) == SAVE_INLINE_FPRS)
20764 int i;
20766 for (i = info->first_fp_reg_save; i < 64; i++)
20767 if (!save_reg_p (i))
20769 strategy |= REST_INLINE_FPRS;
20770 break;
20774 /* If we are going to use store multiple, then don't even bother
20775 with the out-of-line routines, since the store-multiple
20776 instruction will always be smaller. */
20777 if ((strategy & SAVRES_MULTIPLE))
20778 strategy |= SAVE_INLINE_GPRS;
20780 /* info->lr_save_p isn't yet set if the only reason lr needs to be
20781 saved is an out-of-line save or restore. Set up the value for
20782 the next test (excluding out-of-line gpr restore). */
20783 lr_save_p = (info->lr_save_p
20784 || !(strategy & SAVE_INLINE_GPRS)
20785 || !(strategy & SAVE_INLINE_FPRS)
20786 || !(strategy & SAVE_INLINE_VRS)
20787 || !(strategy & REST_INLINE_FPRS)
20788 || !(strategy & REST_INLINE_VRS));
20790 /* The situation is more complicated with load multiple. We'd
20791 prefer to use the out-of-line routines for restores, since the
20792 "exit" out-of-line routines can handle the restore of LR and the
20793 frame teardown. However if doesn't make sense to use the
20794 out-of-line routine if that is the only reason we'd need to save
20795 LR, and we can't use the "exit" out-of-line gpr restore if we
20796 have saved some fprs; In those cases it is advantageous to use
20797 load multiple when available. */
20798 if ((strategy & SAVRES_MULTIPLE)
20799 && (!lr_save_p
20800 || info->first_fp_reg_save != 64))
20801 strategy |= REST_INLINE_GPRS;
20803 /* Saving CR interferes with the exit routines used on the SPE, so
20804 just punt here. */
20805 if (TARGET_SPE_ABI
20806 && info->spe_64bit_regs_used
20807 && info->cr_save_p)
20808 strategy |= REST_INLINE_GPRS;
20810 /* We can only use load multiple or the out-of-line routines to
20811 restore if we've used store multiple or out-of-line routines
20812 in the prologue, i.e. if we've saved all the registers from
20813 first_gp_reg_save. Otherwise, we risk loading garbage. */
20814 if ((strategy & (SAVE_INLINE_GPRS | REST_INLINE_GPRS | SAVRES_MULTIPLE))
20815 == SAVE_INLINE_GPRS)
20817 int i;
20819 for (i = info->first_gp_reg_save; i < 32; i++)
20820 if (!save_reg_p (i))
20822 strategy |= REST_INLINE_GPRS;
20823 break;
20827 if (TARGET_ELF && TARGET_64BIT)
20829 if (!(strategy & SAVE_INLINE_FPRS))
20830 strategy |= SAVE_NOINLINE_FPRS_SAVES_LR;
20831 else if (!(strategy & SAVE_INLINE_GPRS)
20832 && info->first_fp_reg_save == 64)
20833 strategy |= SAVE_NOINLINE_GPRS_SAVES_LR;
20835 else if (TARGET_AIX && !(strategy & REST_INLINE_FPRS))
20836 strategy |= REST_NOINLINE_FPRS_DOESNT_RESTORE_LR;
20838 if (TARGET_MACHO && !(strategy & SAVE_INLINE_FPRS))
20839 strategy |= SAVE_NOINLINE_FPRS_SAVES_LR;
20841 return strategy;
20844 /* Calculate the stack information for the current function. This is
20845 complicated by having two separate calling sequences, the AIX calling
20846 sequence and the V.4 calling sequence.
20848 AIX (and Darwin/Mac OS X) stack frames look like:
20849 32-bit 64-bit
20850 SP----> +---------------------------------------+
20851 | back chain to caller | 0 0
20852 +---------------------------------------+
20853 | saved CR | 4 8 (8-11)
20854 +---------------------------------------+
20855 | saved LR | 8 16
20856 +---------------------------------------+
20857 | reserved for compilers | 12 24
20858 +---------------------------------------+
20859 | reserved for binders | 16 32
20860 +---------------------------------------+
20861 | saved TOC pointer | 20 40
20862 +---------------------------------------+
20863 | Parameter save area (P) | 24 48
20864 +---------------------------------------+
20865 | Alloca space (A) | 24+P etc.
20866 +---------------------------------------+
20867 | Local variable space (L) | 24+P+A
20868 +---------------------------------------+
20869 | Float/int conversion temporary (X) | 24+P+A+L
20870 +---------------------------------------+
20871 | Save area for AltiVec registers (W) | 24+P+A+L+X
20872 +---------------------------------------+
20873 | AltiVec alignment padding (Y) | 24+P+A+L+X+W
20874 +---------------------------------------+
20875 | Save area for VRSAVE register (Z) | 24+P+A+L+X+W+Y
20876 +---------------------------------------+
20877 | Save area for GP registers (G) | 24+P+A+X+L+X+W+Y+Z
20878 +---------------------------------------+
20879 | Save area for FP registers (F) | 24+P+A+X+L+X+W+Y+Z+G
20880 +---------------------------------------+
20881 old SP->| back chain to caller's caller |
20882 +---------------------------------------+
20884 The required alignment for AIX configurations is two words (i.e., 8
20885 or 16 bytes).
20887 The ELFv2 ABI is a variant of the AIX ABI. Stack frames look like:
20889 SP----> +---------------------------------------+
20890 | Back chain to caller | 0
20891 +---------------------------------------+
20892 | Save area for CR | 8
20893 +---------------------------------------+
20894 | Saved LR | 16
20895 +---------------------------------------+
20896 | Saved TOC pointer | 24
20897 +---------------------------------------+
20898 | Parameter save area (P) | 32
20899 +---------------------------------------+
20900 | Alloca space (A) | 32+P
20901 +---------------------------------------+
20902 | Local variable space (L) | 32+P+A
20903 +---------------------------------------+
20904 | Save area for AltiVec registers (W) | 32+P+A+L
20905 +---------------------------------------+
20906 | AltiVec alignment padding (Y) | 32+P+A+L+W
20907 +---------------------------------------+
20908 | Save area for GP registers (G) | 32+P+A+L+W+Y
20909 +---------------------------------------+
20910 | Save area for FP registers (F) | 32+P+A+L+W+Y+G
20911 +---------------------------------------+
20912 old SP->| back chain to caller's caller | 32+P+A+L+W+Y+G+F
20913 +---------------------------------------+
20916 V.4 stack frames look like:
20918 SP----> +---------------------------------------+
20919 | back chain to caller | 0
20920 +---------------------------------------+
20921 | caller's saved LR | 4
20922 +---------------------------------------+
20923 | Parameter save area (P) | 8
20924 +---------------------------------------+
20925 | Alloca space (A) | 8+P
20926 +---------------------------------------+
20927 | Varargs save area (V) | 8+P+A
20928 +---------------------------------------+
20929 | Local variable space (L) | 8+P+A+V
20930 +---------------------------------------+
20931 | Float/int conversion temporary (X) | 8+P+A+V+L
20932 +---------------------------------------+
20933 | Save area for AltiVec registers (W) | 8+P+A+V+L+X
20934 +---------------------------------------+
20935 | AltiVec alignment padding (Y) | 8+P+A+V+L+X+W
20936 +---------------------------------------+
20937 | Save area for VRSAVE register (Z) | 8+P+A+V+L+X+W+Y
20938 +---------------------------------------+
20939 | SPE: area for 64-bit GP registers |
20940 +---------------------------------------+
20941 | SPE alignment padding |
20942 +---------------------------------------+
20943 | saved CR (C) | 8+P+A+V+L+X+W+Y+Z
20944 +---------------------------------------+
20945 | Save area for GP registers (G) | 8+P+A+V+L+X+W+Y+Z+C
20946 +---------------------------------------+
20947 | Save area for FP registers (F) | 8+P+A+V+L+X+W+Y+Z+C+G
20948 +---------------------------------------+
20949 old SP->| back chain to caller's caller |
20950 +---------------------------------------+
20952 The required alignment for V.4 is 16 bytes, or 8 bytes if -meabi is
20953 given. (But note below and in sysv4.h that we require only 8 and
20954 may round up the size of our stack frame anyways. The historical
20955 reason is early versions of powerpc-linux which didn't properly
20956 align the stack at program startup. A happy side-effect is that
20957 -mno-eabi libraries can be used with -meabi programs.)
20959 The EABI configuration defaults to the V.4 layout. However,
20960 the stack alignment requirements may differ. If -mno-eabi is not
20961 given, the required stack alignment is 8 bytes; if -mno-eabi is
20962 given, the required alignment is 16 bytes. (But see V.4 comment
20963 above.) */
20965 #ifndef ABI_STACK_BOUNDARY
20966 #define ABI_STACK_BOUNDARY STACK_BOUNDARY
20967 #endif
20969 static rs6000_stack_t *
20970 rs6000_stack_info (void)
20972 rs6000_stack_t *info_ptr = &stack_info;
20973 int reg_size = TARGET_32BIT ? 4 : 8;
20974 int ehrd_size;
20975 int ehcr_size;
20976 int save_align;
20977 int first_gp;
20978 HOST_WIDE_INT non_fixed_size;
20979 bool using_static_chain_p;
20981 if (reload_completed && info_ptr->reload_completed)
20982 return info_ptr;
20984 memset (info_ptr, 0, sizeof (*info_ptr));
20985 info_ptr->reload_completed = reload_completed;
20987 if (TARGET_SPE)
20989 /* Cache value so we don't rescan instruction chain over and over. */
20990 if (cfun->machine->insn_chain_scanned_p == 0)
20991 cfun->machine->insn_chain_scanned_p
20992 = spe_func_has_64bit_regs_p () + 1;
20993 info_ptr->spe_64bit_regs_used = cfun->machine->insn_chain_scanned_p - 1;
20996 /* Select which calling sequence. */
20997 info_ptr->abi = DEFAULT_ABI;
20999 /* Calculate which registers need to be saved & save area size. */
21000 info_ptr->first_gp_reg_save = first_reg_to_save ();
21001 /* Assume that we will have to save RS6000_PIC_OFFSET_TABLE_REGNUM,
21002 even if it currently looks like we won't. Reload may need it to
21003 get at a constant; if so, it will have already created a constant
21004 pool entry for it. */
21005 if (((TARGET_TOC && TARGET_MINIMAL_TOC)
21006 || (flag_pic == 1 && DEFAULT_ABI == ABI_V4)
21007 || (flag_pic && DEFAULT_ABI == ABI_DARWIN))
21008 && crtl->uses_const_pool
21009 && info_ptr->first_gp_reg_save > RS6000_PIC_OFFSET_TABLE_REGNUM)
21010 first_gp = RS6000_PIC_OFFSET_TABLE_REGNUM;
21011 else
21012 first_gp = info_ptr->first_gp_reg_save;
21014 info_ptr->gp_size = reg_size * (32 - first_gp);
21016 /* For the SPE, we have an additional upper 32-bits on each GPR.
21017 Ideally we should save the entire 64-bits only when the upper
21018 half is used in SIMD instructions. Since we only record
21019 registers live (not the size they are used in), this proves
21020 difficult because we'd have to traverse the instruction chain at
21021 the right time, taking reload into account. This is a real pain,
21022 so we opt to save the GPRs in 64-bits always if but one register
21023 gets used in 64-bits. Otherwise, all the registers in the frame
21024 get saved in 32-bits.
21026 So... since when we save all GPRs (except the SP) in 64-bits, the
21027 traditional GP save area will be empty. */
21028 if (TARGET_SPE_ABI && info_ptr->spe_64bit_regs_used != 0)
21029 info_ptr->gp_size = 0;
21031 info_ptr->first_fp_reg_save = first_fp_reg_to_save ();
21032 info_ptr->fp_size = 8 * (64 - info_ptr->first_fp_reg_save);
21034 info_ptr->first_altivec_reg_save = first_altivec_reg_to_save ();
21035 info_ptr->altivec_size = 16 * (LAST_ALTIVEC_REGNO + 1
21036 - info_ptr->first_altivec_reg_save);
21038 /* Does this function call anything? */
21039 info_ptr->calls_p = (! crtl->is_leaf
21040 || cfun->machine->ra_needs_full_frame);
21042 /* Determine if we need to save the condition code registers. */
21043 if (df_regs_ever_live_p (CR2_REGNO)
21044 || df_regs_ever_live_p (CR3_REGNO)
21045 || df_regs_ever_live_p (CR4_REGNO))
21047 info_ptr->cr_save_p = 1;
21048 if (DEFAULT_ABI == ABI_V4)
21049 info_ptr->cr_size = reg_size;
21052 /* If the current function calls __builtin_eh_return, then we need
21053 to allocate stack space for registers that will hold data for
21054 the exception handler. */
21055 if (crtl->calls_eh_return)
21057 unsigned int i;
21058 for (i = 0; EH_RETURN_DATA_REGNO (i) != INVALID_REGNUM; ++i)
21059 continue;
21061 /* SPE saves EH registers in 64-bits. */
21062 ehrd_size = i * (TARGET_SPE_ABI
21063 && info_ptr->spe_64bit_regs_used != 0
21064 ? UNITS_PER_SPE_WORD : UNITS_PER_WORD);
21066 else
21067 ehrd_size = 0;
21069 /* In the ELFv2 ABI, we also need to allocate space for separate
21070 CR field save areas if the function calls __builtin_eh_return. */
21071 if (DEFAULT_ABI == ABI_ELFv2 && crtl->calls_eh_return)
21073 /* This hard-codes that we have three call-saved CR fields. */
21074 ehcr_size = 3 * reg_size;
21075 /* We do *not* use the regular CR save mechanism. */
21076 info_ptr->cr_save_p = 0;
21078 else
21079 ehcr_size = 0;
21081 /* Determine various sizes. */
21082 info_ptr->reg_size = reg_size;
21083 info_ptr->fixed_size = RS6000_SAVE_AREA;
21084 info_ptr->vars_size = RS6000_ALIGN (get_frame_size (), 8);
21085 info_ptr->parm_size = RS6000_ALIGN (crtl->outgoing_args_size,
21086 TARGET_ALTIVEC ? 16 : 8);
21087 if (FRAME_GROWS_DOWNWARD)
21088 info_ptr->vars_size
21089 += RS6000_ALIGN (info_ptr->fixed_size + info_ptr->vars_size
21090 + info_ptr->parm_size,
21091 ABI_STACK_BOUNDARY / BITS_PER_UNIT)
21092 - (info_ptr->fixed_size + info_ptr->vars_size
21093 + info_ptr->parm_size);
21095 if (TARGET_SPE_ABI && info_ptr->spe_64bit_regs_used != 0)
21096 info_ptr->spe_gp_size = 8 * (32 - first_gp);
21097 else
21098 info_ptr->spe_gp_size = 0;
21100 if (TARGET_ALTIVEC_ABI)
21101 info_ptr->vrsave_mask = compute_vrsave_mask ();
21102 else
21103 info_ptr->vrsave_mask = 0;
21105 if (TARGET_ALTIVEC_VRSAVE && info_ptr->vrsave_mask)
21106 info_ptr->vrsave_size = 4;
21107 else
21108 info_ptr->vrsave_size = 0;
21110 compute_save_world_info (info_ptr);
21112 /* Calculate the offsets. */
21113 switch (DEFAULT_ABI)
21115 case ABI_NONE:
21116 default:
21117 gcc_unreachable ();
21119 case ABI_AIX:
21120 case ABI_ELFv2:
21121 case ABI_DARWIN:
21122 info_ptr->fp_save_offset = - info_ptr->fp_size;
21123 info_ptr->gp_save_offset = info_ptr->fp_save_offset - info_ptr->gp_size;
21125 if (TARGET_ALTIVEC_ABI)
21127 info_ptr->vrsave_save_offset
21128 = info_ptr->gp_save_offset - info_ptr->vrsave_size;
21130 /* Align stack so vector save area is on a quadword boundary.
21131 The padding goes above the vectors. */
21132 if (info_ptr->altivec_size != 0)
21133 info_ptr->altivec_padding_size
21134 = info_ptr->vrsave_save_offset & 0xF;
21135 else
21136 info_ptr->altivec_padding_size = 0;
21138 info_ptr->altivec_save_offset
21139 = info_ptr->vrsave_save_offset
21140 - info_ptr->altivec_padding_size
21141 - info_ptr->altivec_size;
21142 gcc_assert (info_ptr->altivec_size == 0
21143 || info_ptr->altivec_save_offset % 16 == 0);
21145 /* Adjust for AltiVec case. */
21146 info_ptr->ehrd_offset = info_ptr->altivec_save_offset - ehrd_size;
21148 else
21149 info_ptr->ehrd_offset = info_ptr->gp_save_offset - ehrd_size;
21151 info_ptr->ehcr_offset = info_ptr->ehrd_offset - ehcr_size;
21152 info_ptr->cr_save_offset = reg_size; /* first word when 64-bit. */
21153 info_ptr->lr_save_offset = 2*reg_size;
21154 break;
21156 case ABI_V4:
21157 info_ptr->fp_save_offset = - info_ptr->fp_size;
21158 info_ptr->gp_save_offset = info_ptr->fp_save_offset - info_ptr->gp_size;
21159 info_ptr->cr_save_offset = info_ptr->gp_save_offset - info_ptr->cr_size;
21161 if (TARGET_SPE_ABI && info_ptr->spe_64bit_regs_used != 0)
21163 /* Align stack so SPE GPR save area is aligned on a
21164 double-word boundary. */
21165 if (info_ptr->spe_gp_size != 0 && info_ptr->cr_save_offset != 0)
21166 info_ptr->spe_padding_size
21167 = 8 - (-info_ptr->cr_save_offset % 8);
21168 else
21169 info_ptr->spe_padding_size = 0;
21171 info_ptr->spe_gp_save_offset
21172 = info_ptr->cr_save_offset
21173 - info_ptr->spe_padding_size
21174 - info_ptr->spe_gp_size;
21176 /* Adjust for SPE case. */
21177 info_ptr->ehrd_offset = info_ptr->spe_gp_save_offset;
21179 else if (TARGET_ALTIVEC_ABI)
21181 info_ptr->vrsave_save_offset
21182 = info_ptr->cr_save_offset - info_ptr->vrsave_size;
21184 /* Align stack so vector save area is on a quadword boundary. */
21185 if (info_ptr->altivec_size != 0)
21186 info_ptr->altivec_padding_size
21187 = 16 - (-info_ptr->vrsave_save_offset % 16);
21188 else
21189 info_ptr->altivec_padding_size = 0;
21191 info_ptr->altivec_save_offset
21192 = info_ptr->vrsave_save_offset
21193 - info_ptr->altivec_padding_size
21194 - info_ptr->altivec_size;
21196 /* Adjust for AltiVec case. */
21197 info_ptr->ehrd_offset = info_ptr->altivec_save_offset;
21199 else
21200 info_ptr->ehrd_offset = info_ptr->cr_save_offset;
21201 info_ptr->ehrd_offset -= ehrd_size;
21202 info_ptr->lr_save_offset = reg_size;
21203 break;
21206 save_align = (TARGET_ALTIVEC_ABI || DEFAULT_ABI == ABI_DARWIN) ? 16 : 8;
21207 info_ptr->save_size = RS6000_ALIGN (info_ptr->fp_size
21208 + info_ptr->gp_size
21209 + info_ptr->altivec_size
21210 + info_ptr->altivec_padding_size
21211 + info_ptr->spe_gp_size
21212 + info_ptr->spe_padding_size
21213 + ehrd_size
21214 + ehcr_size
21215 + info_ptr->cr_size
21216 + info_ptr->vrsave_size,
21217 save_align);
21219 non_fixed_size = (info_ptr->vars_size
21220 + info_ptr->parm_size
21221 + info_ptr->save_size);
21223 info_ptr->total_size = RS6000_ALIGN (non_fixed_size + info_ptr->fixed_size,
21224 ABI_STACK_BOUNDARY / BITS_PER_UNIT);
21226 /* Determine if we need to save the link register. */
21227 if (info_ptr->calls_p
21228 || ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
21229 && crtl->profile
21230 && !TARGET_PROFILE_KERNEL)
21231 || (DEFAULT_ABI == ABI_V4 && cfun->calls_alloca)
21232 #ifdef TARGET_RELOCATABLE
21233 || (TARGET_RELOCATABLE && (get_pool_size () != 0))
21234 #endif
21235 || rs6000_ra_ever_killed ())
21236 info_ptr->lr_save_p = 1;
21238 using_static_chain_p = (cfun->static_chain_decl != NULL_TREE
21239 && df_regs_ever_live_p (STATIC_CHAIN_REGNUM)
21240 && call_used_regs[STATIC_CHAIN_REGNUM]);
21241 info_ptr->savres_strategy = rs6000_savres_strategy (info_ptr,
21242 using_static_chain_p);
21244 if (!(info_ptr->savres_strategy & SAVE_INLINE_GPRS)
21245 || !(info_ptr->savres_strategy & SAVE_INLINE_FPRS)
21246 || !(info_ptr->savres_strategy & SAVE_INLINE_VRS)
21247 || !(info_ptr->savres_strategy & REST_INLINE_GPRS)
21248 || !(info_ptr->savres_strategy & REST_INLINE_FPRS)
21249 || !(info_ptr->savres_strategy & REST_INLINE_VRS))
21250 info_ptr->lr_save_p = 1;
21252 if (info_ptr->lr_save_p)
21253 df_set_regs_ever_live (LR_REGNO, true);
21255 /* Determine if we need to allocate any stack frame:
21257 For AIX we need to push the stack if a frame pointer is needed
21258 (because the stack might be dynamically adjusted), if we are
21259 debugging, if we make calls, or if the sum of fp_save, gp_save,
21260 and local variables are more than the space needed to save all
21261 non-volatile registers: 32-bit: 18*8 + 19*4 = 220 or 64-bit: 18*8
21262 + 18*8 = 288 (GPR13 reserved).
21264 For V.4 we don't have the stack cushion that AIX uses, but assume
21265 that the debugger can handle stackless frames. */
21267 if (info_ptr->calls_p)
21268 info_ptr->push_p = 1;
21270 else if (DEFAULT_ABI == ABI_V4)
21271 info_ptr->push_p = non_fixed_size != 0;
21273 else if (frame_pointer_needed)
21274 info_ptr->push_p = 1;
21276 else if (TARGET_XCOFF && write_symbols != NO_DEBUG)
21277 info_ptr->push_p = 1;
21279 else
21280 info_ptr->push_p = non_fixed_size > (TARGET_32BIT ? 220 : 288);
21282 /* Zero offsets if we're not saving those registers. */
21283 if (info_ptr->fp_size == 0)
21284 info_ptr->fp_save_offset = 0;
21286 if (info_ptr->gp_size == 0)
21287 info_ptr->gp_save_offset = 0;
21289 if (! TARGET_ALTIVEC_ABI || info_ptr->altivec_size == 0)
21290 info_ptr->altivec_save_offset = 0;
21292 /* Zero VRSAVE offset if not saved and restored. */
21293 if (! TARGET_ALTIVEC_VRSAVE || info_ptr->vrsave_mask == 0)
21294 info_ptr->vrsave_save_offset = 0;
21296 if (! TARGET_SPE_ABI
21297 || info_ptr->spe_64bit_regs_used == 0
21298 || info_ptr->spe_gp_size == 0)
21299 info_ptr->spe_gp_save_offset = 0;
21301 if (! info_ptr->lr_save_p)
21302 info_ptr->lr_save_offset = 0;
21304 if (! info_ptr->cr_save_p)
21305 info_ptr->cr_save_offset = 0;
21307 return info_ptr;
21310 /* Return true if the current function uses any GPRs in 64-bit SIMD
21311 mode. */
21313 static bool
21314 spe_func_has_64bit_regs_p (void)
21316 rtx insns, insn;
21318 /* Functions that save and restore all the call-saved registers will
21319 need to save/restore the registers in 64-bits. */
21320 if (crtl->calls_eh_return
21321 || cfun->calls_setjmp
21322 || crtl->has_nonlocal_goto)
21323 return true;
21325 insns = get_insns ();
21327 for (insn = NEXT_INSN (insns); insn != NULL_RTX; insn = NEXT_INSN (insn))
21329 if (INSN_P (insn))
21331 rtx i;
21333 /* FIXME: This should be implemented with attributes...
21335 (set_attr "spe64" "true")....then,
21336 if (get_spe64(insn)) return true;
21338 It's the only reliable way to do the stuff below. */
21340 i = PATTERN (insn);
21341 if (GET_CODE (i) == SET)
21343 enum machine_mode mode = GET_MODE (SET_SRC (i));
21345 if (SPE_VECTOR_MODE (mode))
21346 return true;
21347 if (TARGET_E500_DOUBLE && (mode == DFmode || mode == TFmode))
21348 return true;
21353 return false;
21356 static void
21357 debug_stack_info (rs6000_stack_t *info)
21359 const char *abi_string;
21361 if (! info)
21362 info = rs6000_stack_info ();
21364 fprintf (stderr, "\nStack information for function %s:\n",
21365 ((current_function_decl && DECL_NAME (current_function_decl))
21366 ? IDENTIFIER_POINTER (DECL_NAME (current_function_decl))
21367 : "<unknown>"));
21369 switch (info->abi)
21371 default: abi_string = "Unknown"; break;
21372 case ABI_NONE: abi_string = "NONE"; break;
21373 case ABI_AIX: abi_string = "AIX"; break;
21374 case ABI_ELFv2: abi_string = "ELFv2"; break;
21375 case ABI_DARWIN: abi_string = "Darwin"; break;
21376 case ABI_V4: abi_string = "V.4"; break;
21379 fprintf (stderr, "\tABI = %5s\n", abi_string);
21381 if (TARGET_ALTIVEC_ABI)
21382 fprintf (stderr, "\tALTIVEC ABI extensions enabled.\n");
21384 if (TARGET_SPE_ABI)
21385 fprintf (stderr, "\tSPE ABI extensions enabled.\n");
21387 if (info->first_gp_reg_save != 32)
21388 fprintf (stderr, "\tfirst_gp_reg_save = %5d\n", info->first_gp_reg_save);
21390 if (info->first_fp_reg_save != 64)
21391 fprintf (stderr, "\tfirst_fp_reg_save = %5d\n", info->first_fp_reg_save);
21393 if (info->first_altivec_reg_save <= LAST_ALTIVEC_REGNO)
21394 fprintf (stderr, "\tfirst_altivec_reg_save = %5d\n",
21395 info->first_altivec_reg_save);
21397 if (info->lr_save_p)
21398 fprintf (stderr, "\tlr_save_p = %5d\n", info->lr_save_p);
21400 if (info->cr_save_p)
21401 fprintf (stderr, "\tcr_save_p = %5d\n", info->cr_save_p);
21403 if (info->vrsave_mask)
21404 fprintf (stderr, "\tvrsave_mask = 0x%x\n", info->vrsave_mask);
21406 if (info->push_p)
21407 fprintf (stderr, "\tpush_p = %5d\n", info->push_p);
21409 if (info->calls_p)
21410 fprintf (stderr, "\tcalls_p = %5d\n", info->calls_p);
21412 if (info->gp_save_offset)
21413 fprintf (stderr, "\tgp_save_offset = %5d\n", info->gp_save_offset);
21415 if (info->fp_save_offset)
21416 fprintf (stderr, "\tfp_save_offset = %5d\n", info->fp_save_offset);
21418 if (info->altivec_save_offset)
21419 fprintf (stderr, "\taltivec_save_offset = %5d\n",
21420 info->altivec_save_offset);
21422 if (info->spe_gp_save_offset)
21423 fprintf (stderr, "\tspe_gp_save_offset = %5d\n",
21424 info->spe_gp_save_offset);
21426 if (info->vrsave_save_offset)
21427 fprintf (stderr, "\tvrsave_save_offset = %5d\n",
21428 info->vrsave_save_offset);
21430 if (info->lr_save_offset)
21431 fprintf (stderr, "\tlr_save_offset = %5d\n", info->lr_save_offset);
21433 if (info->cr_save_offset)
21434 fprintf (stderr, "\tcr_save_offset = %5d\n", info->cr_save_offset);
21436 if (info->varargs_save_offset)
21437 fprintf (stderr, "\tvarargs_save_offset = %5d\n", info->varargs_save_offset);
21439 if (info->total_size)
21440 fprintf (stderr, "\ttotal_size = "HOST_WIDE_INT_PRINT_DEC"\n",
21441 info->total_size);
21443 if (info->vars_size)
21444 fprintf (stderr, "\tvars_size = "HOST_WIDE_INT_PRINT_DEC"\n",
21445 info->vars_size);
21447 if (info->parm_size)
21448 fprintf (stderr, "\tparm_size = %5d\n", info->parm_size);
21450 if (info->fixed_size)
21451 fprintf (stderr, "\tfixed_size = %5d\n", info->fixed_size);
21453 if (info->gp_size)
21454 fprintf (stderr, "\tgp_size = %5d\n", info->gp_size);
21456 if (info->spe_gp_size)
21457 fprintf (stderr, "\tspe_gp_size = %5d\n", info->spe_gp_size);
21459 if (info->fp_size)
21460 fprintf (stderr, "\tfp_size = %5d\n", info->fp_size);
21462 if (info->altivec_size)
21463 fprintf (stderr, "\taltivec_size = %5d\n", info->altivec_size);
21465 if (info->vrsave_size)
21466 fprintf (stderr, "\tvrsave_size = %5d\n", info->vrsave_size);
21468 if (info->altivec_padding_size)
21469 fprintf (stderr, "\taltivec_padding_size= %5d\n",
21470 info->altivec_padding_size);
21472 if (info->spe_padding_size)
21473 fprintf (stderr, "\tspe_padding_size = %5d\n",
21474 info->spe_padding_size);
21476 if (info->cr_size)
21477 fprintf (stderr, "\tcr_size = %5d\n", info->cr_size);
21479 if (info->save_size)
21480 fprintf (stderr, "\tsave_size = %5d\n", info->save_size);
21482 if (info->reg_size != 4)
21483 fprintf (stderr, "\treg_size = %5d\n", info->reg_size);
21485 fprintf (stderr, "\tsave-strategy = %04x\n", info->savres_strategy);
21487 fprintf (stderr, "\n");
21491 rs6000_return_addr (int count, rtx frame)
21493 /* Currently we don't optimize very well between prolog and body
21494 code and for PIC code the code can be actually quite bad, so
21495 don't try to be too clever here. */
21496 if (count != 0
21497 || ((DEFAULT_ABI == ABI_V4 || DEFAULT_ABI == ABI_DARWIN) && flag_pic))
21499 cfun->machine->ra_needs_full_frame = 1;
21501 return
21502 gen_rtx_MEM
21503 (Pmode,
21504 memory_address
21505 (Pmode,
21506 plus_constant (Pmode,
21507 copy_to_reg
21508 (gen_rtx_MEM (Pmode,
21509 memory_address (Pmode, frame))),
21510 RETURN_ADDRESS_OFFSET)));
21513 cfun->machine->ra_need_lr = 1;
21514 return get_hard_reg_initial_val (Pmode, LR_REGNO);
21517 /* Say whether a function is a candidate for sibcall handling or not. */
21519 static bool
21520 rs6000_function_ok_for_sibcall (tree decl, tree exp)
21522 tree fntype;
21524 if (decl)
21525 fntype = TREE_TYPE (decl);
21526 else
21527 fntype = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (exp)));
21529 /* We can't do it if the called function has more vector parameters
21530 than the current function; there's nowhere to put the VRsave code. */
21531 if (TARGET_ALTIVEC_ABI
21532 && TARGET_ALTIVEC_VRSAVE
21533 && !(decl && decl == current_function_decl))
21535 function_args_iterator args_iter;
21536 tree type;
21537 int nvreg = 0;
21539 /* Functions with vector parameters are required to have a
21540 prototype, so the argument type info must be available
21541 here. */
21542 FOREACH_FUNCTION_ARGS(fntype, type, args_iter)
21543 if (TREE_CODE (type) == VECTOR_TYPE
21544 && ALTIVEC_OR_VSX_VECTOR_MODE (TYPE_MODE (type)))
21545 nvreg++;
21547 FOREACH_FUNCTION_ARGS(TREE_TYPE (current_function_decl), type, args_iter)
21548 if (TREE_CODE (type) == VECTOR_TYPE
21549 && ALTIVEC_OR_VSX_VECTOR_MODE (TYPE_MODE (type)))
21550 nvreg--;
21552 if (nvreg > 0)
21553 return false;
21556 /* Under the AIX or ELFv2 ABIs we can't allow calls to non-local
21557 functions, because the callee may have a different TOC pointer to
21558 the caller and there's no way to ensure we restore the TOC when
21559 we return. With the secure-plt SYSV ABI we can't make non-local
21560 calls when -fpic/PIC because the plt call stubs use r30. */
21561 if (DEFAULT_ABI == ABI_DARWIN
21562 || ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
21563 && decl
21564 && !DECL_EXTERNAL (decl)
21565 && (*targetm.binds_local_p) (decl))
21566 || (DEFAULT_ABI == ABI_V4
21567 && (!TARGET_SECURE_PLT
21568 || !flag_pic
21569 || (decl
21570 && (*targetm.binds_local_p) (decl)))))
21572 tree attr_list = TYPE_ATTRIBUTES (fntype);
21574 if (!lookup_attribute ("longcall", attr_list)
21575 || lookup_attribute ("shortcall", attr_list))
21576 return true;
21579 return false;
21582 static int
21583 rs6000_ra_ever_killed (void)
21585 rtx top;
21586 rtx reg;
21587 rtx insn;
21589 if (cfun->is_thunk)
21590 return 0;
21592 if (cfun->machine->lr_save_state)
21593 return cfun->machine->lr_save_state - 1;
21595 /* regs_ever_live has LR marked as used if any sibcalls are present,
21596 but this should not force saving and restoring in the
21597 pro/epilogue. Likewise, reg_set_between_p thinks a sibcall
21598 clobbers LR, so that is inappropriate. */
21600 /* Also, the prologue can generate a store into LR that
21601 doesn't really count, like this:
21603 move LR->R0
21604 bcl to set PIC register
21605 move LR->R31
21606 move R0->LR
21608 When we're called from the epilogue, we need to avoid counting
21609 this as a store. */
21611 push_topmost_sequence ();
21612 top = get_insns ();
21613 pop_topmost_sequence ();
21614 reg = gen_rtx_REG (Pmode, LR_REGNO);
21616 for (insn = NEXT_INSN (top); insn != NULL_RTX; insn = NEXT_INSN (insn))
21618 if (INSN_P (insn))
21620 if (CALL_P (insn))
21622 if (!SIBLING_CALL_P (insn))
21623 return 1;
21625 else if (find_regno_note (insn, REG_INC, LR_REGNO))
21626 return 1;
21627 else if (set_of (reg, insn) != NULL_RTX
21628 && !prologue_epilogue_contains (insn))
21629 return 1;
21632 return 0;
21635 /* Emit instructions needed to load the TOC register.
21636 This is only needed when TARGET_TOC, TARGET_MINIMAL_TOC, and there is
21637 a constant pool; or for SVR4 -fpic. */
21639 void
21640 rs6000_emit_load_toc_table (int fromprolog)
21642 rtx dest;
21643 dest = gen_rtx_REG (Pmode, RS6000_PIC_OFFSET_TABLE_REGNUM);
21645 if (TARGET_ELF && TARGET_SECURE_PLT && DEFAULT_ABI == ABI_V4 && flag_pic)
21647 char buf[30];
21648 rtx lab, tmp1, tmp2, got;
21650 lab = gen_label_rtx ();
21651 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (lab));
21652 lab = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (buf));
21653 if (flag_pic == 2)
21654 got = gen_rtx_SYMBOL_REF (Pmode, toc_label_name);
21655 else
21656 got = rs6000_got_sym ();
21657 tmp1 = tmp2 = dest;
21658 if (!fromprolog)
21660 tmp1 = gen_reg_rtx (Pmode);
21661 tmp2 = gen_reg_rtx (Pmode);
21663 emit_insn (gen_load_toc_v4_PIC_1 (lab));
21664 emit_move_insn (tmp1, gen_rtx_REG (Pmode, LR_REGNO));
21665 emit_insn (gen_load_toc_v4_PIC_3b (tmp2, tmp1, got, lab));
21666 emit_insn (gen_load_toc_v4_PIC_3c (dest, tmp2, got, lab));
21668 else if (TARGET_ELF && DEFAULT_ABI == ABI_V4 && flag_pic == 1)
21670 emit_insn (gen_load_toc_v4_pic_si ());
21671 emit_move_insn (dest, gen_rtx_REG (Pmode, LR_REGNO));
21673 else if (TARGET_ELF && DEFAULT_ABI == ABI_V4 && flag_pic == 2)
21675 char buf[30];
21676 rtx temp0 = (fromprolog
21677 ? gen_rtx_REG (Pmode, 0)
21678 : gen_reg_rtx (Pmode));
21680 if (fromprolog)
21682 rtx symF, symL;
21684 ASM_GENERATE_INTERNAL_LABEL (buf, "LCF", rs6000_pic_labelno);
21685 symF = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (buf));
21687 ASM_GENERATE_INTERNAL_LABEL (buf, "LCL", rs6000_pic_labelno);
21688 symL = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (buf));
21690 emit_insn (gen_load_toc_v4_PIC_1 (symF));
21691 emit_move_insn (dest, gen_rtx_REG (Pmode, LR_REGNO));
21692 emit_insn (gen_load_toc_v4_PIC_2 (temp0, dest, symL, symF));
21694 else
21696 rtx tocsym, lab;
21698 tocsym = gen_rtx_SYMBOL_REF (Pmode, toc_label_name);
21699 lab = gen_label_rtx ();
21700 emit_insn (gen_load_toc_v4_PIC_1b (tocsym, lab));
21701 emit_move_insn (dest, gen_rtx_REG (Pmode, LR_REGNO));
21702 if (TARGET_LINK_STACK)
21703 emit_insn (gen_addsi3 (dest, dest, GEN_INT (4)));
21704 emit_move_insn (temp0, gen_rtx_MEM (Pmode, dest));
21706 emit_insn (gen_addsi3 (dest, temp0, dest));
21708 else if (TARGET_ELF && !TARGET_AIX && flag_pic == 0 && TARGET_MINIMAL_TOC)
21710 /* This is for AIX code running in non-PIC ELF32. */
21711 char buf[30];
21712 rtx realsym;
21713 ASM_GENERATE_INTERNAL_LABEL (buf, "LCTOC", 1);
21714 realsym = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (buf));
21716 emit_insn (gen_elf_high (dest, realsym));
21717 emit_insn (gen_elf_low (dest, dest, realsym));
21719 else
21721 gcc_assert (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2);
21723 if (TARGET_32BIT)
21724 emit_insn (gen_load_toc_aix_si (dest));
21725 else
21726 emit_insn (gen_load_toc_aix_di (dest));
21730 /* Emit instructions to restore the link register after determining where
21731 its value has been stored. */
21733 void
21734 rs6000_emit_eh_reg_restore (rtx source, rtx scratch)
21736 rs6000_stack_t *info = rs6000_stack_info ();
21737 rtx operands[2];
21739 operands[0] = source;
21740 operands[1] = scratch;
21742 if (info->lr_save_p)
21744 rtx frame_rtx = stack_pointer_rtx;
21745 HOST_WIDE_INT sp_offset = 0;
21746 rtx tmp;
21748 if (frame_pointer_needed
21749 || cfun->calls_alloca
21750 || info->total_size > 32767)
21752 tmp = gen_frame_mem (Pmode, frame_rtx);
21753 emit_move_insn (operands[1], tmp);
21754 frame_rtx = operands[1];
21756 else if (info->push_p)
21757 sp_offset = info->total_size;
21759 tmp = plus_constant (Pmode, frame_rtx,
21760 info->lr_save_offset + sp_offset);
21761 tmp = gen_frame_mem (Pmode, tmp);
21762 emit_move_insn (tmp, operands[0]);
21764 else
21765 emit_move_insn (gen_rtx_REG (Pmode, LR_REGNO), operands[0]);
21767 /* Freeze lr_save_p. We've just emitted rtl that depends on the
21768 state of lr_save_p so any change from here on would be a bug. In
21769 particular, stop rs6000_ra_ever_killed from considering the SET
21770 of lr we may have added just above. */
21771 cfun->machine->lr_save_state = info->lr_save_p + 1;
21774 static GTY(()) alias_set_type set = -1;
21776 alias_set_type
21777 get_TOC_alias_set (void)
21779 if (set == -1)
21780 set = new_alias_set ();
21781 return set;
21784 /* This returns nonzero if the current function uses the TOC. This is
21785 determined by the presence of (use (unspec ... UNSPEC_TOC)), which
21786 is generated by the ABI_V4 load_toc_* patterns. */
21787 #if TARGET_ELF
21788 static int
21789 uses_TOC (void)
21791 rtx insn;
21793 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
21794 if (INSN_P (insn))
21796 rtx pat = PATTERN (insn);
21797 int i;
21799 if (GET_CODE (pat) == PARALLEL)
21800 for (i = 0; i < XVECLEN (pat, 0); i++)
21802 rtx sub = XVECEXP (pat, 0, i);
21803 if (GET_CODE (sub) == USE)
21805 sub = XEXP (sub, 0);
21806 if (GET_CODE (sub) == UNSPEC
21807 && XINT (sub, 1) == UNSPEC_TOC)
21808 return 1;
21812 return 0;
21814 #endif
21817 create_TOC_reference (rtx symbol, rtx largetoc_reg)
21819 rtx tocrel, tocreg, hi;
21821 if (TARGET_DEBUG_ADDR)
21823 if (GET_CODE (symbol) == SYMBOL_REF)
21824 fprintf (stderr, "\ncreate_TOC_reference, (symbol_ref %s)\n",
21825 XSTR (symbol, 0));
21826 else
21828 fprintf (stderr, "\ncreate_TOC_reference, code %s:\n",
21829 GET_RTX_NAME (GET_CODE (symbol)));
21830 debug_rtx (symbol);
21834 if (!can_create_pseudo_p ())
21835 df_set_regs_ever_live (TOC_REGISTER, true);
21837 tocreg = gen_rtx_REG (Pmode, TOC_REGISTER);
21838 tocrel = gen_rtx_UNSPEC (Pmode, gen_rtvec (2, symbol, tocreg), UNSPEC_TOCREL);
21839 if (TARGET_CMODEL == CMODEL_SMALL || can_create_pseudo_p ())
21840 return tocrel;
21842 hi = gen_rtx_HIGH (Pmode, copy_rtx (tocrel));
21843 if (largetoc_reg != NULL)
21845 emit_move_insn (largetoc_reg, hi);
21846 hi = largetoc_reg;
21848 return gen_rtx_LO_SUM (Pmode, hi, tocrel);
21851 /* Issue assembly directives that create a reference to the given DWARF
21852 FRAME_TABLE_LABEL from the current function section. */
21853 void
21854 rs6000_aix_asm_output_dwarf_table_ref (char * frame_table_label)
21856 fprintf (asm_out_file, "\t.ref %s\n",
21857 (* targetm.strip_name_encoding) (frame_table_label));
21860 /* This ties together stack memory (MEM with an alias set of frame_alias_set)
21861 and the change to the stack pointer. */
21863 static void
21864 rs6000_emit_stack_tie (rtx fp, bool hard_frame_needed)
21866 rtvec p;
21867 int i;
21868 rtx regs[3];
21870 i = 0;
21871 regs[i++] = gen_rtx_REG (Pmode, STACK_POINTER_REGNUM);
21872 if (hard_frame_needed)
21873 regs[i++] = gen_rtx_REG (Pmode, HARD_FRAME_POINTER_REGNUM);
21874 if (!(REGNO (fp) == STACK_POINTER_REGNUM
21875 || (hard_frame_needed
21876 && REGNO (fp) == HARD_FRAME_POINTER_REGNUM)))
21877 regs[i++] = fp;
21879 p = rtvec_alloc (i);
21880 while (--i >= 0)
21882 rtx mem = gen_frame_mem (BLKmode, regs[i]);
21883 RTVEC_ELT (p, i) = gen_rtx_SET (VOIDmode, mem, const0_rtx);
21886 emit_insn (gen_stack_tie (gen_rtx_PARALLEL (VOIDmode, p)));
21889 /* Emit the correct code for allocating stack space, as insns.
21890 If COPY_REG, make sure a copy of the old frame is left there.
21891 The generated code may use hard register 0 as a temporary. */
21893 static void
21894 rs6000_emit_allocate_stack (HOST_WIDE_INT size, rtx copy_reg, int copy_off)
21896 rtx insn;
21897 rtx stack_reg = gen_rtx_REG (Pmode, STACK_POINTER_REGNUM);
21898 rtx tmp_reg = gen_rtx_REG (Pmode, 0);
21899 rtx todec = gen_int_mode (-size, Pmode);
21900 rtx par, set, mem;
21902 if (INTVAL (todec) != -size)
21904 warning (0, "stack frame too large");
21905 emit_insn (gen_trap ());
21906 return;
21909 if (crtl->limit_stack)
21911 if (REG_P (stack_limit_rtx)
21912 && REGNO (stack_limit_rtx) > 1
21913 && REGNO (stack_limit_rtx) <= 31)
21915 emit_insn (gen_add3_insn (tmp_reg, stack_limit_rtx, GEN_INT (size)));
21916 emit_insn (gen_cond_trap (LTU, stack_reg, tmp_reg,
21917 const0_rtx));
21919 else if (GET_CODE (stack_limit_rtx) == SYMBOL_REF
21920 && TARGET_32BIT
21921 && DEFAULT_ABI == ABI_V4)
21923 rtx toload = gen_rtx_CONST (VOIDmode,
21924 gen_rtx_PLUS (Pmode,
21925 stack_limit_rtx,
21926 GEN_INT (size)));
21928 emit_insn (gen_elf_high (tmp_reg, toload));
21929 emit_insn (gen_elf_low (tmp_reg, tmp_reg, toload));
21930 emit_insn (gen_cond_trap (LTU, stack_reg, tmp_reg,
21931 const0_rtx));
21933 else
21934 warning (0, "stack limit expression is not supported");
21937 if (copy_reg)
21939 if (copy_off != 0)
21940 emit_insn (gen_add3_insn (copy_reg, stack_reg, GEN_INT (copy_off)));
21941 else
21942 emit_move_insn (copy_reg, stack_reg);
21945 if (size > 32767)
21947 /* Need a note here so that try_split doesn't get confused. */
21948 if (get_last_insn () == NULL_RTX)
21949 emit_note (NOTE_INSN_DELETED);
21950 insn = emit_move_insn (tmp_reg, todec);
21951 try_split (PATTERN (insn), insn, 0);
21952 todec = tmp_reg;
21955 insn = emit_insn (TARGET_32BIT
21956 ? gen_movsi_update_stack (stack_reg, stack_reg,
21957 todec, stack_reg)
21958 : gen_movdi_di_update_stack (stack_reg, stack_reg,
21959 todec, stack_reg));
21960 /* Since we didn't use gen_frame_mem to generate the MEM, grab
21961 it now and set the alias set/attributes. The above gen_*_update
21962 calls will generate a PARALLEL with the MEM set being the first
21963 operation. */
21964 par = PATTERN (insn);
21965 gcc_assert (GET_CODE (par) == PARALLEL);
21966 set = XVECEXP (par, 0, 0);
21967 gcc_assert (GET_CODE (set) == SET);
21968 mem = SET_DEST (set);
21969 gcc_assert (MEM_P (mem));
21970 MEM_NOTRAP_P (mem) = 1;
21971 set_mem_alias_set (mem, get_frame_alias_set ());
21973 RTX_FRAME_RELATED_P (insn) = 1;
21974 add_reg_note (insn, REG_FRAME_RELATED_EXPR,
21975 gen_rtx_SET (VOIDmode, stack_reg,
21976 gen_rtx_PLUS (Pmode, stack_reg,
21977 GEN_INT (-size))));
21980 #define PROBE_INTERVAL (1 << STACK_CHECK_PROBE_INTERVAL_EXP)
21982 #if PROBE_INTERVAL > 32768
21983 #error Cannot use indexed addressing mode for stack probing
21984 #endif
21986 /* Emit code to probe a range of stack addresses from FIRST to FIRST+SIZE,
21987 inclusive. These are offsets from the current stack pointer. */
21989 static void
21990 rs6000_emit_probe_stack_range (HOST_WIDE_INT first, HOST_WIDE_INT size)
21992 /* See if we have a constant small number of probes to generate. If so,
21993 that's the easy case. */
21994 if (first + size <= 32768)
21996 HOST_WIDE_INT i;
21998 /* Probe at FIRST + N * PROBE_INTERVAL for values of N from 1 until
21999 it exceeds SIZE. If only one probe is needed, this will not
22000 generate any code. Then probe at FIRST + SIZE. */
22001 for (i = PROBE_INTERVAL; i < size; i += PROBE_INTERVAL)
22002 emit_stack_probe (plus_constant (Pmode, stack_pointer_rtx,
22003 -(first + i)));
22005 emit_stack_probe (plus_constant (Pmode, stack_pointer_rtx,
22006 -(first + size)));
22009 /* Otherwise, do the same as above, but in a loop. Note that we must be
22010 extra careful with variables wrapping around because we might be at
22011 the very top (or the very bottom) of the address space and we have
22012 to be able to handle this case properly; in particular, we use an
22013 equality test for the loop condition. */
22014 else
22016 HOST_WIDE_INT rounded_size;
22017 rtx r12 = gen_rtx_REG (Pmode, 12);
22018 rtx r0 = gen_rtx_REG (Pmode, 0);
22020 /* Sanity check for the addressing mode we're going to use. */
22021 gcc_assert (first <= 32768);
22023 /* Step 1: round SIZE to the previous multiple of the interval. */
22025 rounded_size = size & -PROBE_INTERVAL;
22028 /* Step 2: compute initial and final value of the loop counter. */
22030 /* TEST_ADDR = SP + FIRST. */
22031 emit_insn (gen_rtx_SET (VOIDmode, r12,
22032 plus_constant (Pmode, stack_pointer_rtx,
22033 -first)));
22035 /* LAST_ADDR = SP + FIRST + ROUNDED_SIZE. */
22036 if (rounded_size > 32768)
22038 emit_move_insn (r0, GEN_INT (-rounded_size));
22039 emit_insn (gen_rtx_SET (VOIDmode, r0,
22040 gen_rtx_PLUS (Pmode, r12, r0)));
22042 else
22043 emit_insn (gen_rtx_SET (VOIDmode, r0,
22044 plus_constant (Pmode, r12, -rounded_size)));
22047 /* Step 3: the loop
22049 while (TEST_ADDR != LAST_ADDR)
22051 TEST_ADDR = TEST_ADDR + PROBE_INTERVAL
22052 probe at TEST_ADDR
22055 probes at FIRST + N * PROBE_INTERVAL for values of N from 1
22056 until it is equal to ROUNDED_SIZE. */
22058 if (TARGET_64BIT)
22059 emit_insn (gen_probe_stack_rangedi (r12, r12, r0));
22060 else
22061 emit_insn (gen_probe_stack_rangesi (r12, r12, r0));
22064 /* Step 4: probe at FIRST + SIZE if we cannot assert at compile-time
22065 that SIZE is equal to ROUNDED_SIZE. */
22067 if (size != rounded_size)
22068 emit_stack_probe (plus_constant (Pmode, r12, rounded_size - size));
22072 /* Probe a range of stack addresses from REG1 to REG2 inclusive. These are
22073 absolute addresses. */
22075 const char *
22076 output_probe_stack_range (rtx reg1, rtx reg2)
22078 static int labelno = 0;
22079 char loop_lab[32], end_lab[32];
22080 rtx xops[2];
22082 ASM_GENERATE_INTERNAL_LABEL (loop_lab, "LPSRL", labelno);
22083 ASM_GENERATE_INTERNAL_LABEL (end_lab, "LPSRE", labelno++);
22085 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, loop_lab);
22087 /* Jump to END_LAB if TEST_ADDR == LAST_ADDR. */
22088 xops[0] = reg1;
22089 xops[1] = reg2;
22090 if (TARGET_64BIT)
22091 output_asm_insn ("cmpd 0,%0,%1", xops);
22092 else
22093 output_asm_insn ("cmpw 0,%0,%1", xops);
22095 fputs ("\tbeq 0,", asm_out_file);
22096 assemble_name_raw (asm_out_file, end_lab);
22097 fputc ('\n', asm_out_file);
22099 /* TEST_ADDR = TEST_ADDR + PROBE_INTERVAL. */
22100 xops[1] = GEN_INT (-PROBE_INTERVAL);
22101 output_asm_insn ("addi %0,%0,%1", xops);
22103 /* Probe at TEST_ADDR and branch. */
22104 xops[1] = gen_rtx_REG (Pmode, 0);
22105 output_asm_insn ("stw %1,0(%0)", xops);
22106 fprintf (asm_out_file, "\tb ");
22107 assemble_name_raw (asm_out_file, loop_lab);
22108 fputc ('\n', asm_out_file);
22110 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, end_lab);
22112 return "";
22115 /* Add to 'insn' a note which is PATTERN (INSN) but with REG replaced
22116 with (plus:P (reg 1) VAL), and with REG2 replaced with RREG if REG2
22117 is not NULL. It would be nice if dwarf2out_frame_debug_expr could
22118 deduce these equivalences by itself so it wasn't necessary to hold
22119 its hand so much. Don't be tempted to always supply d2_f_d_e with
22120 the actual cfa register, ie. r31 when we are using a hard frame
22121 pointer. That fails when saving regs off r1, and sched moves the
22122 r31 setup past the reg saves. */
22124 static rtx
22125 rs6000_frame_related (rtx insn, rtx reg, HOST_WIDE_INT val,
22126 rtx reg2, rtx rreg, rtx split_reg)
22128 rtx real, temp;
22130 if (REGNO (reg) == STACK_POINTER_REGNUM && reg2 == NULL_RTX)
22132 /* No need for any replacement. Just set RTX_FRAME_RELATED_P. */
22133 int i;
22135 gcc_checking_assert (val == 0);
22136 real = PATTERN (insn);
22137 if (GET_CODE (real) == PARALLEL)
22138 for (i = 0; i < XVECLEN (real, 0); i++)
22139 if (GET_CODE (XVECEXP (real, 0, i)) == SET)
22141 rtx set = XVECEXP (real, 0, i);
22143 RTX_FRAME_RELATED_P (set) = 1;
22145 RTX_FRAME_RELATED_P (insn) = 1;
22146 return insn;
22149 /* copy_rtx will not make unique copies of registers, so we need to
22150 ensure we don't have unwanted sharing here. */
22151 if (reg == reg2)
22152 reg = gen_raw_REG (GET_MODE (reg), REGNO (reg));
22154 if (reg == rreg)
22155 reg = gen_raw_REG (GET_MODE (reg), REGNO (reg));
22157 real = copy_rtx (PATTERN (insn));
22159 if (reg2 != NULL_RTX)
22160 real = replace_rtx (real, reg2, rreg);
22162 if (REGNO (reg) == STACK_POINTER_REGNUM)
22163 gcc_checking_assert (val == 0);
22164 else
22165 real = replace_rtx (real, reg,
22166 gen_rtx_PLUS (Pmode, gen_rtx_REG (Pmode,
22167 STACK_POINTER_REGNUM),
22168 GEN_INT (val)));
22170 /* We expect that 'real' is either a SET or a PARALLEL containing
22171 SETs (and possibly other stuff). In a PARALLEL, all the SETs
22172 are important so they all have to be marked RTX_FRAME_RELATED_P. */
22174 if (GET_CODE (real) == SET)
22176 rtx set = real;
22178 temp = simplify_rtx (SET_SRC (set));
22179 if (temp)
22180 SET_SRC (set) = temp;
22181 temp = simplify_rtx (SET_DEST (set));
22182 if (temp)
22183 SET_DEST (set) = temp;
22184 if (GET_CODE (SET_DEST (set)) == MEM)
22186 temp = simplify_rtx (XEXP (SET_DEST (set), 0));
22187 if (temp)
22188 XEXP (SET_DEST (set), 0) = temp;
22191 else
22193 int i;
22195 gcc_assert (GET_CODE (real) == PARALLEL);
22196 for (i = 0; i < XVECLEN (real, 0); i++)
22197 if (GET_CODE (XVECEXP (real, 0, i)) == SET)
22199 rtx set = XVECEXP (real, 0, i);
22201 temp = simplify_rtx (SET_SRC (set));
22202 if (temp)
22203 SET_SRC (set) = temp;
22204 temp = simplify_rtx (SET_DEST (set));
22205 if (temp)
22206 SET_DEST (set) = temp;
22207 if (GET_CODE (SET_DEST (set)) == MEM)
22209 temp = simplify_rtx (XEXP (SET_DEST (set), 0));
22210 if (temp)
22211 XEXP (SET_DEST (set), 0) = temp;
22213 RTX_FRAME_RELATED_P (set) = 1;
22217 /* If a store insn has been split into multiple insns, the
22218 true source register is given by split_reg. */
22219 if (split_reg != NULL_RTX)
22220 real = gen_rtx_SET (VOIDmode, SET_DEST (real), split_reg);
22222 RTX_FRAME_RELATED_P (insn) = 1;
22223 add_reg_note (insn, REG_FRAME_RELATED_EXPR, real);
22225 return insn;
22228 /* Returns an insn that has a vrsave set operation with the
22229 appropriate CLOBBERs. */
22231 static rtx
22232 generate_set_vrsave (rtx reg, rs6000_stack_t *info, int epiloguep)
22234 int nclobs, i;
22235 rtx insn, clobs[TOTAL_ALTIVEC_REGS + 1];
22236 rtx vrsave = gen_rtx_REG (SImode, VRSAVE_REGNO);
22238 clobs[0]
22239 = gen_rtx_SET (VOIDmode,
22240 vrsave,
22241 gen_rtx_UNSPEC_VOLATILE (SImode,
22242 gen_rtvec (2, reg, vrsave),
22243 UNSPECV_SET_VRSAVE));
22245 nclobs = 1;
22247 /* We need to clobber the registers in the mask so the scheduler
22248 does not move sets to VRSAVE before sets of AltiVec registers.
22250 However, if the function receives nonlocal gotos, reload will set
22251 all call saved registers live. We will end up with:
22253 (set (reg 999) (mem))
22254 (parallel [ (set (reg vrsave) (unspec blah))
22255 (clobber (reg 999))])
22257 The clobber will cause the store into reg 999 to be dead, and
22258 flow will attempt to delete an epilogue insn. In this case, we
22259 need an unspec use/set of the register. */
22261 for (i = FIRST_ALTIVEC_REGNO; i <= LAST_ALTIVEC_REGNO; ++i)
22262 if (info->vrsave_mask & ALTIVEC_REG_BIT (i))
22264 if (!epiloguep || call_used_regs [i])
22265 clobs[nclobs++] = gen_rtx_CLOBBER (VOIDmode,
22266 gen_rtx_REG (V4SImode, i));
22267 else
22269 rtx reg = gen_rtx_REG (V4SImode, i);
22271 clobs[nclobs++]
22272 = gen_rtx_SET (VOIDmode,
22273 reg,
22274 gen_rtx_UNSPEC (V4SImode,
22275 gen_rtvec (1, reg), 27));
22279 insn = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (nclobs));
22281 for (i = 0; i < nclobs; ++i)
22282 XVECEXP (insn, 0, i) = clobs[i];
22284 return insn;
22287 static rtx
22288 gen_frame_set (rtx reg, rtx frame_reg, int offset, bool store)
22290 rtx addr, mem;
22292 addr = gen_rtx_PLUS (Pmode, frame_reg, GEN_INT (offset));
22293 mem = gen_frame_mem (GET_MODE (reg), addr);
22294 return gen_rtx_SET (VOIDmode, store ? mem : reg, store ? reg : mem);
22297 static rtx
22298 gen_frame_load (rtx reg, rtx frame_reg, int offset)
22300 return gen_frame_set (reg, frame_reg, offset, false);
22303 static rtx
22304 gen_frame_store (rtx reg, rtx frame_reg, int offset)
22306 return gen_frame_set (reg, frame_reg, offset, true);
22309 /* Save a register into the frame, and emit RTX_FRAME_RELATED_P notes.
22310 Save REGNO into [FRAME_REG + OFFSET] in mode MODE. */
22312 static rtx
22313 emit_frame_save (rtx frame_reg, enum machine_mode mode,
22314 unsigned int regno, int offset, HOST_WIDE_INT frame_reg_to_sp)
22316 rtx reg, insn;
22318 /* Some cases that need register indexed addressing. */
22319 gcc_checking_assert (!((TARGET_ALTIVEC_ABI && ALTIVEC_VECTOR_MODE (mode))
22320 || (TARGET_VSX && ALTIVEC_OR_VSX_VECTOR_MODE (mode))
22321 || (TARGET_E500_DOUBLE && mode == DFmode)
22322 || (TARGET_SPE_ABI
22323 && SPE_VECTOR_MODE (mode)
22324 && !SPE_CONST_OFFSET_OK (offset))));
22326 reg = gen_rtx_REG (mode, regno);
22327 insn = emit_insn (gen_frame_store (reg, frame_reg, offset));
22328 return rs6000_frame_related (insn, frame_reg, frame_reg_to_sp,
22329 NULL_RTX, NULL_RTX, NULL_RTX);
22332 /* Emit an offset memory reference suitable for a frame store, while
22333 converting to a valid addressing mode. */
22335 static rtx
22336 gen_frame_mem_offset (enum machine_mode mode, rtx reg, int offset)
22338 rtx int_rtx, offset_rtx;
22340 int_rtx = GEN_INT (offset);
22342 if ((TARGET_SPE_ABI && SPE_VECTOR_MODE (mode) && !SPE_CONST_OFFSET_OK (offset))
22343 || (TARGET_E500_DOUBLE && mode == DFmode))
22345 offset_rtx = gen_rtx_REG (Pmode, FIXED_SCRATCH);
22346 emit_move_insn (offset_rtx, int_rtx);
22348 else
22349 offset_rtx = int_rtx;
22351 return gen_frame_mem (mode, gen_rtx_PLUS (Pmode, reg, offset_rtx));
22354 #ifndef TARGET_FIX_AND_CONTINUE
22355 #define TARGET_FIX_AND_CONTINUE 0
22356 #endif
22358 /* It's really GPR 13 or 14, FPR 14 and VR 20. We need the smallest. */
22359 #define FIRST_SAVRES_REGISTER FIRST_SAVED_GP_REGNO
22360 #define LAST_SAVRES_REGISTER 31
22361 #define N_SAVRES_REGISTERS (LAST_SAVRES_REGISTER - FIRST_SAVRES_REGISTER + 1)
22363 enum {
22364 SAVRES_LR = 0x1,
22365 SAVRES_SAVE = 0x2,
22366 SAVRES_REG = 0x0c,
22367 SAVRES_GPR = 0,
22368 SAVRES_FPR = 4,
22369 SAVRES_VR = 8
22372 static GTY(()) rtx savres_routine_syms[N_SAVRES_REGISTERS][12];
22374 /* Temporary holding space for an out-of-line register save/restore
22375 routine name. */
22376 static char savres_routine_name[30];
22378 /* Return the name for an out-of-line register save/restore routine.
22379 We are saving/restoring GPRs if GPR is true. */
22381 static char *
22382 rs6000_savres_routine_name (rs6000_stack_t *info, int regno, int sel)
22384 const char *prefix = "";
22385 const char *suffix = "";
22387 /* Different targets are supposed to define
22388 {SAVE,RESTORE}_FP_{PREFIX,SUFFIX} with the idea that the needed
22389 routine name could be defined with:
22391 sprintf (name, "%s%d%s", SAVE_FP_PREFIX, regno, SAVE_FP_SUFFIX)
22393 This is a nice idea in practice, but in reality, things are
22394 complicated in several ways:
22396 - ELF targets have save/restore routines for GPRs.
22398 - SPE targets use different prefixes for 32/64-bit registers, and
22399 neither of them fit neatly in the FOO_{PREFIX,SUFFIX} regimen.
22401 - PPC64 ELF targets have routines for save/restore of GPRs that
22402 differ in what they do with the link register, so having a set
22403 prefix doesn't work. (We only use one of the save routines at
22404 the moment, though.)
22406 - PPC32 elf targets have "exit" versions of the restore routines
22407 that restore the link register and can save some extra space.
22408 These require an extra suffix. (There are also "tail" versions
22409 of the restore routines and "GOT" versions of the save routines,
22410 but we don't generate those at present. Same problems apply,
22411 though.)
22413 We deal with all this by synthesizing our own prefix/suffix and
22414 using that for the simple sprintf call shown above. */
22415 if (TARGET_SPE)
22417 /* No floating point saves on the SPE. */
22418 gcc_assert ((sel & SAVRES_REG) == SAVRES_GPR);
22420 if ((sel & SAVRES_SAVE))
22421 prefix = info->spe_64bit_regs_used ? "_save64gpr_" : "_save32gpr_";
22422 else
22423 prefix = info->spe_64bit_regs_used ? "_rest64gpr_" : "_rest32gpr_";
22425 if ((sel & SAVRES_LR))
22426 suffix = "_x";
22428 else if (DEFAULT_ABI == ABI_V4)
22430 if (TARGET_64BIT)
22431 goto aix_names;
22433 if ((sel & SAVRES_REG) == SAVRES_GPR)
22434 prefix = (sel & SAVRES_SAVE) ? "_savegpr_" : "_restgpr_";
22435 else if ((sel & SAVRES_REG) == SAVRES_FPR)
22436 prefix = (sel & SAVRES_SAVE) ? "_savefpr_" : "_restfpr_";
22437 else if ((sel & SAVRES_REG) == SAVRES_VR)
22438 prefix = (sel & SAVRES_SAVE) ? "_savevr_" : "_restvr_";
22439 else
22440 abort ();
22442 if ((sel & SAVRES_LR))
22443 suffix = "_x";
22445 else if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
22447 #if !defined (POWERPC_LINUX) && !defined (POWERPC_FREEBSD)
22448 /* No out-of-line save/restore routines for GPRs on AIX. */
22449 gcc_assert (!TARGET_AIX || (sel & SAVRES_REG) != SAVRES_GPR);
22450 #endif
22452 aix_names:
22453 if ((sel & SAVRES_REG) == SAVRES_GPR)
22454 prefix = ((sel & SAVRES_SAVE)
22455 ? ((sel & SAVRES_LR) ? "_savegpr0_" : "_savegpr1_")
22456 : ((sel & SAVRES_LR) ? "_restgpr0_" : "_restgpr1_"));
22457 else if ((sel & SAVRES_REG) == SAVRES_FPR)
22459 #if defined (POWERPC_LINUX) || defined (POWERPC_FREEBSD)
22460 if ((sel & SAVRES_LR))
22461 prefix = ((sel & SAVRES_SAVE) ? "_savefpr_" : "_restfpr_");
22462 else
22463 #endif
22465 prefix = (sel & SAVRES_SAVE) ? SAVE_FP_PREFIX : RESTORE_FP_PREFIX;
22466 suffix = (sel & SAVRES_SAVE) ? SAVE_FP_SUFFIX : RESTORE_FP_SUFFIX;
22469 else if ((sel & SAVRES_REG) == SAVRES_VR)
22470 prefix = (sel & SAVRES_SAVE) ? "_savevr_" : "_restvr_";
22471 else
22472 abort ();
22475 if (DEFAULT_ABI == ABI_DARWIN)
22477 /* The Darwin approach is (slightly) different, in order to be
22478 compatible with code generated by the system toolchain. There is a
22479 single symbol for the start of save sequence, and the code here
22480 embeds an offset into that code on the basis of the first register
22481 to be saved. */
22482 prefix = (sel & SAVRES_SAVE) ? "save" : "rest" ;
22483 if ((sel & SAVRES_REG) == SAVRES_GPR)
22484 sprintf (savres_routine_name, "*%sGPR%s%s%.0d ; %s r%d-r31", prefix,
22485 ((sel & SAVRES_LR) ? "x" : ""), (regno == 13 ? "" : "+"),
22486 (regno - 13) * 4, prefix, regno);
22487 else if ((sel & SAVRES_REG) == SAVRES_FPR)
22488 sprintf (savres_routine_name, "*%sFP%s%.0d ; %s f%d-f31", prefix,
22489 (regno == 14 ? "" : "+"), (regno - 14) * 4, prefix, regno);
22490 else if ((sel & SAVRES_REG) == SAVRES_VR)
22491 sprintf (savres_routine_name, "*%sVEC%s%.0d ; %s v%d-v31", prefix,
22492 (regno == 20 ? "" : "+"), (regno - 20) * 8, prefix, regno);
22493 else
22494 abort ();
22496 else
22497 sprintf (savres_routine_name, "%s%d%s", prefix, regno, suffix);
22499 return savres_routine_name;
22502 /* Return an RTL SYMBOL_REF for an out-of-line register save/restore routine.
22503 We are saving/restoring GPRs if GPR is true. */
22505 static rtx
22506 rs6000_savres_routine_sym (rs6000_stack_t *info, int sel)
22508 int regno = ((sel & SAVRES_REG) == SAVRES_GPR
22509 ? info->first_gp_reg_save
22510 : (sel & SAVRES_REG) == SAVRES_FPR
22511 ? info->first_fp_reg_save - 32
22512 : (sel & SAVRES_REG) == SAVRES_VR
22513 ? info->first_altivec_reg_save - FIRST_ALTIVEC_REGNO
22514 : -1);
22515 rtx sym;
22516 int select = sel;
22518 /* On the SPE, we never have any FPRs, but we do have 32/64-bit
22519 versions of the gpr routines. */
22520 if (TARGET_SPE_ABI && (sel & SAVRES_REG) == SAVRES_GPR
22521 && info->spe_64bit_regs_used)
22522 select ^= SAVRES_FPR ^ SAVRES_GPR;
22524 /* Don't generate bogus routine names. */
22525 gcc_assert (FIRST_SAVRES_REGISTER <= regno
22526 && regno <= LAST_SAVRES_REGISTER
22527 && select >= 0 && select <= 12);
22529 sym = savres_routine_syms[regno-FIRST_SAVRES_REGISTER][select];
22531 if (sym == NULL)
22533 char *name;
22535 name = rs6000_savres_routine_name (info, regno, sel);
22537 sym = savres_routine_syms[regno-FIRST_SAVRES_REGISTER][select]
22538 = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (name));
22539 SYMBOL_REF_FLAGS (sym) |= SYMBOL_FLAG_FUNCTION;
22542 return sym;
22545 /* Emit a sequence of insns, including a stack tie if needed, for
22546 resetting the stack pointer. If UPDT_REGNO is not 1, then don't
22547 reset the stack pointer, but move the base of the frame into
22548 reg UPDT_REGNO for use by out-of-line register restore routines. */
22550 static rtx
22551 rs6000_emit_stack_reset (rs6000_stack_t *info,
22552 rtx frame_reg_rtx, HOST_WIDE_INT frame_off,
22553 unsigned updt_regno)
22555 rtx updt_reg_rtx;
22557 /* This blockage is needed so that sched doesn't decide to move
22558 the sp change before the register restores. */
22559 if (DEFAULT_ABI == ABI_V4
22560 || (TARGET_SPE_ABI
22561 && info->spe_64bit_regs_used != 0
22562 && info->first_gp_reg_save != 32))
22563 rs6000_emit_stack_tie (frame_reg_rtx, frame_pointer_needed);
22565 /* If we are restoring registers out-of-line, we will be using the
22566 "exit" variants of the restore routines, which will reset the
22567 stack for us. But we do need to point updt_reg into the
22568 right place for those routines. */
22569 updt_reg_rtx = gen_rtx_REG (Pmode, updt_regno);
22571 if (frame_off != 0)
22572 return emit_insn (gen_add3_insn (updt_reg_rtx,
22573 frame_reg_rtx, GEN_INT (frame_off)));
22574 else if (REGNO (frame_reg_rtx) != updt_regno)
22575 return emit_move_insn (updt_reg_rtx, frame_reg_rtx);
22577 return NULL_RTX;
22580 /* Return the register number used as a pointer by out-of-line
22581 save/restore functions. */
22583 static inline unsigned
22584 ptr_regno_for_savres (int sel)
22586 if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
22587 return (sel & SAVRES_REG) == SAVRES_FPR || (sel & SAVRES_LR) ? 1 : 12;
22588 return DEFAULT_ABI == ABI_DARWIN && (sel & SAVRES_REG) == SAVRES_FPR ? 1 : 11;
22591 /* Construct a parallel rtx describing the effect of a call to an
22592 out-of-line register save/restore routine, and emit the insn
22593 or jump_insn as appropriate. */
22595 static rtx
22596 rs6000_emit_savres_rtx (rs6000_stack_t *info,
22597 rtx frame_reg_rtx, int save_area_offset, int lr_offset,
22598 enum machine_mode reg_mode, int sel)
22600 int i;
22601 int offset, start_reg, end_reg, n_regs, use_reg;
22602 int reg_size = GET_MODE_SIZE (reg_mode);
22603 rtx sym;
22604 rtvec p;
22605 rtx par, insn;
22607 offset = 0;
22608 start_reg = ((sel & SAVRES_REG) == SAVRES_GPR
22609 ? info->first_gp_reg_save
22610 : (sel & SAVRES_REG) == SAVRES_FPR
22611 ? info->first_fp_reg_save
22612 : (sel & SAVRES_REG) == SAVRES_VR
22613 ? info->first_altivec_reg_save
22614 : -1);
22615 end_reg = ((sel & SAVRES_REG) == SAVRES_GPR
22616 ? 32
22617 : (sel & SAVRES_REG) == SAVRES_FPR
22618 ? 64
22619 : (sel & SAVRES_REG) == SAVRES_VR
22620 ? LAST_ALTIVEC_REGNO + 1
22621 : -1);
22622 n_regs = end_reg - start_reg;
22623 p = rtvec_alloc (3 + ((sel & SAVRES_LR) ? 1 : 0)
22624 + ((sel & SAVRES_REG) == SAVRES_VR ? 1 : 0)
22625 + n_regs);
22627 if (!(sel & SAVRES_SAVE) && (sel & SAVRES_LR))
22628 RTVEC_ELT (p, offset++) = ret_rtx;
22630 RTVEC_ELT (p, offset++)
22631 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, LR_REGNO));
22633 sym = rs6000_savres_routine_sym (info, sel);
22634 RTVEC_ELT (p, offset++) = gen_rtx_USE (VOIDmode, sym);
22636 use_reg = ptr_regno_for_savres (sel);
22637 if ((sel & SAVRES_REG) == SAVRES_VR)
22639 /* Vector regs are saved/restored using [reg+reg] addressing. */
22640 RTVEC_ELT (p, offset++)
22641 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, use_reg));
22642 RTVEC_ELT (p, offset++)
22643 = gen_rtx_USE (VOIDmode, gen_rtx_REG (Pmode, 0));
22645 else
22646 RTVEC_ELT (p, offset++)
22647 = gen_rtx_USE (VOIDmode, gen_rtx_REG (Pmode, use_reg));
22649 for (i = 0; i < end_reg - start_reg; i++)
22650 RTVEC_ELT (p, i + offset)
22651 = gen_frame_set (gen_rtx_REG (reg_mode, start_reg + i),
22652 frame_reg_rtx, save_area_offset + reg_size * i,
22653 (sel & SAVRES_SAVE) != 0);
22655 if ((sel & SAVRES_SAVE) && (sel & SAVRES_LR))
22656 RTVEC_ELT (p, i + offset)
22657 = gen_frame_store (gen_rtx_REG (Pmode, 0), frame_reg_rtx, lr_offset);
22659 par = gen_rtx_PARALLEL (VOIDmode, p);
22661 if (!(sel & SAVRES_SAVE) && (sel & SAVRES_LR))
22663 insn = emit_jump_insn (par);
22664 JUMP_LABEL (insn) = ret_rtx;
22666 else
22667 insn = emit_insn (par);
22668 return insn;
22671 /* Emit code to store CR fields that need to be saved into REG. */
22673 static void
22674 rs6000_emit_move_from_cr (rtx reg)
22676 /* Only the ELFv2 ABI allows storing only selected fields. */
22677 if (DEFAULT_ABI == ABI_ELFv2 && TARGET_MFCRF)
22679 int i, cr_reg[8], count = 0;
22681 /* Collect CR fields that must be saved. */
22682 for (i = 0; i < 8; i++)
22683 if (save_reg_p (CR0_REGNO + i))
22684 cr_reg[count++] = i;
22686 /* If it's just a single one, use mfcrf. */
22687 if (count == 1)
22689 rtvec p = rtvec_alloc (1);
22690 rtvec r = rtvec_alloc (2);
22691 RTVEC_ELT (r, 0) = gen_rtx_REG (CCmode, CR0_REGNO + cr_reg[0]);
22692 RTVEC_ELT (r, 1) = GEN_INT (1 << (7 - cr_reg[0]));
22693 RTVEC_ELT (p, 0)
22694 = gen_rtx_SET (VOIDmode, reg,
22695 gen_rtx_UNSPEC (SImode, r, UNSPEC_MOVESI_FROM_CR));
22697 emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
22698 return;
22701 /* ??? It might be better to handle count == 2 / 3 cases here
22702 as well, using logical operations to combine the values. */
22705 emit_insn (gen_movesi_from_cr (reg));
22708 /* Determine whether the gp REG is really used. */
22710 static bool
22711 rs6000_reg_live_or_pic_offset_p (int reg)
22713 /* If the function calls eh_return, claim used all the registers that would
22714 be checked for liveness otherwise. This is required for the PIC offset
22715 register with -mminimal-toc on AIX, as it is advertised as "fixed" for
22716 register allocation purposes in this case. */
22718 return (((crtl->calls_eh_return || df_regs_ever_live_p (reg))
22719 && (!call_used_regs[reg]
22720 || (reg == RS6000_PIC_OFFSET_TABLE_REGNUM
22721 && !TARGET_SINGLE_PIC_BASE
22722 && TARGET_TOC && TARGET_MINIMAL_TOC)))
22723 || (reg == RS6000_PIC_OFFSET_TABLE_REGNUM
22724 && !TARGET_SINGLE_PIC_BASE
22725 && ((DEFAULT_ABI == ABI_V4 && flag_pic != 0)
22726 || (DEFAULT_ABI == ABI_DARWIN && flag_pic))));
22729 /* Emit function prologue as insns. */
22731 void
22732 rs6000_emit_prologue (void)
22734 rs6000_stack_t *info = rs6000_stack_info ();
22735 enum machine_mode reg_mode = Pmode;
22736 int reg_size = TARGET_32BIT ? 4 : 8;
22737 rtx sp_reg_rtx = gen_rtx_REG (Pmode, STACK_POINTER_REGNUM);
22738 rtx frame_reg_rtx = sp_reg_rtx;
22739 unsigned int cr_save_regno;
22740 rtx cr_save_rtx = NULL_RTX;
22741 rtx insn;
22742 int strategy;
22743 int using_static_chain_p = (cfun->static_chain_decl != NULL_TREE
22744 && df_regs_ever_live_p (STATIC_CHAIN_REGNUM)
22745 && call_used_regs[STATIC_CHAIN_REGNUM]);
22746 /* Offset to top of frame for frame_reg and sp respectively. */
22747 HOST_WIDE_INT frame_off = 0;
22748 HOST_WIDE_INT sp_off = 0;
22750 #ifdef ENABLE_CHECKING
22751 /* Track and check usage of r0, r11, r12. */
22752 int reg_inuse = using_static_chain_p ? 1 << 11 : 0;
22753 #define START_USE(R) do \
22755 gcc_assert ((reg_inuse & (1 << (R))) == 0); \
22756 reg_inuse |= 1 << (R); \
22757 } while (0)
22758 #define END_USE(R) do \
22760 gcc_assert ((reg_inuse & (1 << (R))) != 0); \
22761 reg_inuse &= ~(1 << (R)); \
22762 } while (0)
22763 #define NOT_INUSE(R) do \
22765 gcc_assert ((reg_inuse & (1 << (R))) == 0); \
22766 } while (0)
22767 #else
22768 #define START_USE(R) do {} while (0)
22769 #define END_USE(R) do {} while (0)
22770 #define NOT_INUSE(R) do {} while (0)
22771 #endif
22773 if (DEFAULT_ABI == ABI_ELFv2)
22775 cfun->machine->r2_setup_needed = df_regs_ever_live_p (TOC_REGNUM);
22777 /* With -mminimal-toc we may generate an extra use of r2 below. */
22778 if (!TARGET_SINGLE_PIC_BASE
22779 && TARGET_TOC && TARGET_MINIMAL_TOC && get_pool_size () != 0)
22780 cfun->machine->r2_setup_needed = true;
22784 if (flag_stack_usage_info)
22785 current_function_static_stack_size = info->total_size;
22787 if (flag_stack_check == STATIC_BUILTIN_STACK_CHECK)
22789 HOST_WIDE_INT size = info->total_size;
22791 if (crtl->is_leaf && !cfun->calls_alloca)
22793 if (size > PROBE_INTERVAL && size > STACK_CHECK_PROTECT)
22794 rs6000_emit_probe_stack_range (STACK_CHECK_PROTECT,
22795 size - STACK_CHECK_PROTECT);
22797 else if (size > 0)
22798 rs6000_emit_probe_stack_range (STACK_CHECK_PROTECT, size);
22801 if (TARGET_FIX_AND_CONTINUE)
22803 /* gdb on darwin arranges to forward a function from the old
22804 address by modifying the first 5 instructions of the function
22805 to branch to the overriding function. This is necessary to
22806 permit function pointers that point to the old function to
22807 actually forward to the new function. */
22808 emit_insn (gen_nop ());
22809 emit_insn (gen_nop ());
22810 emit_insn (gen_nop ());
22811 emit_insn (gen_nop ());
22812 emit_insn (gen_nop ());
22815 if (TARGET_SPE_ABI && info->spe_64bit_regs_used != 0)
22817 reg_mode = V2SImode;
22818 reg_size = 8;
22821 /* Handle world saves specially here. */
22822 if (WORLD_SAVE_P (info))
22824 int i, j, sz;
22825 rtx treg;
22826 rtvec p;
22827 rtx reg0;
22829 /* save_world expects lr in r0. */
22830 reg0 = gen_rtx_REG (Pmode, 0);
22831 if (info->lr_save_p)
22833 insn = emit_move_insn (reg0,
22834 gen_rtx_REG (Pmode, LR_REGNO));
22835 RTX_FRAME_RELATED_P (insn) = 1;
22838 /* The SAVE_WORLD and RESTORE_WORLD routines make a number of
22839 assumptions about the offsets of various bits of the stack
22840 frame. */
22841 gcc_assert (info->gp_save_offset == -220
22842 && info->fp_save_offset == -144
22843 && info->lr_save_offset == 8
22844 && info->cr_save_offset == 4
22845 && info->push_p
22846 && info->lr_save_p
22847 && (!crtl->calls_eh_return
22848 || info->ehrd_offset == -432)
22849 && info->vrsave_save_offset == -224
22850 && info->altivec_save_offset == -416);
22852 treg = gen_rtx_REG (SImode, 11);
22853 emit_move_insn (treg, GEN_INT (-info->total_size));
22855 /* SAVE_WORLD takes the caller's LR in R0 and the frame size
22856 in R11. It also clobbers R12, so beware! */
22858 /* Preserve CR2 for save_world prologues */
22859 sz = 5;
22860 sz += 32 - info->first_gp_reg_save;
22861 sz += 64 - info->first_fp_reg_save;
22862 sz += LAST_ALTIVEC_REGNO - info->first_altivec_reg_save + 1;
22863 p = rtvec_alloc (sz);
22864 j = 0;
22865 RTVEC_ELT (p, j++) = gen_rtx_CLOBBER (VOIDmode,
22866 gen_rtx_REG (SImode,
22867 LR_REGNO));
22868 RTVEC_ELT (p, j++) = gen_rtx_USE (VOIDmode,
22869 gen_rtx_SYMBOL_REF (Pmode,
22870 "*save_world"));
22871 /* We do floats first so that the instruction pattern matches
22872 properly. */
22873 for (i = 0; i < 64 - info->first_fp_reg_save; i++)
22874 RTVEC_ELT (p, j++)
22875 = gen_frame_store (gen_rtx_REG (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT
22876 ? DFmode : SFmode,
22877 info->first_fp_reg_save + i),
22878 frame_reg_rtx,
22879 info->fp_save_offset + frame_off + 8 * i);
22880 for (i = 0; info->first_altivec_reg_save + i <= LAST_ALTIVEC_REGNO; i++)
22881 RTVEC_ELT (p, j++)
22882 = gen_frame_store (gen_rtx_REG (V4SImode,
22883 info->first_altivec_reg_save + i),
22884 frame_reg_rtx,
22885 info->altivec_save_offset + frame_off + 16 * i);
22886 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
22887 RTVEC_ELT (p, j++)
22888 = gen_frame_store (gen_rtx_REG (reg_mode, info->first_gp_reg_save + i),
22889 frame_reg_rtx,
22890 info->gp_save_offset + frame_off + reg_size * i);
22892 /* CR register traditionally saved as CR2. */
22893 RTVEC_ELT (p, j++)
22894 = gen_frame_store (gen_rtx_REG (SImode, CR2_REGNO),
22895 frame_reg_rtx, info->cr_save_offset + frame_off);
22896 /* Explain about use of R0. */
22897 if (info->lr_save_p)
22898 RTVEC_ELT (p, j++)
22899 = gen_frame_store (reg0,
22900 frame_reg_rtx, info->lr_save_offset + frame_off);
22901 /* Explain what happens to the stack pointer. */
22903 rtx newval = gen_rtx_PLUS (Pmode, sp_reg_rtx, treg);
22904 RTVEC_ELT (p, j++) = gen_rtx_SET (VOIDmode, sp_reg_rtx, newval);
22907 insn = emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
22908 rs6000_frame_related (insn, frame_reg_rtx, sp_off - frame_off,
22909 treg, GEN_INT (-info->total_size), NULL_RTX);
22910 sp_off = frame_off = info->total_size;
22913 strategy = info->savres_strategy;
22915 /* For V.4, update stack before we do any saving and set back pointer. */
22916 if (! WORLD_SAVE_P (info)
22917 && info->push_p
22918 && (DEFAULT_ABI == ABI_V4
22919 || crtl->calls_eh_return))
22921 bool need_r11 = (TARGET_SPE
22922 ? (!(strategy & SAVE_INLINE_GPRS)
22923 && info->spe_64bit_regs_used == 0)
22924 : (!(strategy & SAVE_INLINE_FPRS)
22925 || !(strategy & SAVE_INLINE_GPRS)
22926 || !(strategy & SAVE_INLINE_VRS)));
22927 int ptr_regno = -1;
22928 rtx ptr_reg = NULL_RTX;
22929 int ptr_off = 0;
22931 if (info->total_size < 32767)
22932 frame_off = info->total_size;
22933 else if (need_r11)
22934 ptr_regno = 11;
22935 else if (info->cr_save_p
22936 || info->lr_save_p
22937 || info->first_fp_reg_save < 64
22938 || info->first_gp_reg_save < 32
22939 || info->altivec_size != 0
22940 || info->vrsave_mask != 0
22941 || crtl->calls_eh_return)
22942 ptr_regno = 12;
22943 else
22945 /* The prologue won't be saving any regs so there is no need
22946 to set up a frame register to access any frame save area.
22947 We also won't be using frame_off anywhere below, but set
22948 the correct value anyway to protect against future
22949 changes to this function. */
22950 frame_off = info->total_size;
22952 if (ptr_regno != -1)
22954 /* Set up the frame offset to that needed by the first
22955 out-of-line save function. */
22956 START_USE (ptr_regno);
22957 ptr_reg = gen_rtx_REG (Pmode, ptr_regno);
22958 frame_reg_rtx = ptr_reg;
22959 if (!(strategy & SAVE_INLINE_FPRS) && info->fp_size != 0)
22960 gcc_checking_assert (info->fp_save_offset + info->fp_size == 0);
22961 else if (!(strategy & SAVE_INLINE_GPRS) && info->first_gp_reg_save < 32)
22962 ptr_off = info->gp_save_offset + info->gp_size;
22963 else if (!(strategy & SAVE_INLINE_VRS) && info->altivec_size != 0)
22964 ptr_off = info->altivec_save_offset + info->altivec_size;
22965 frame_off = -ptr_off;
22967 rs6000_emit_allocate_stack (info->total_size, ptr_reg, ptr_off);
22968 sp_off = info->total_size;
22969 if (frame_reg_rtx != sp_reg_rtx)
22970 rs6000_emit_stack_tie (frame_reg_rtx, false);
22973 /* If we use the link register, get it into r0. */
22974 if (!WORLD_SAVE_P (info) && info->lr_save_p)
22976 rtx addr, reg, mem;
22978 reg = gen_rtx_REG (Pmode, 0);
22979 START_USE (0);
22980 insn = emit_move_insn (reg, gen_rtx_REG (Pmode, LR_REGNO));
22981 RTX_FRAME_RELATED_P (insn) = 1;
22983 if (!(strategy & (SAVE_NOINLINE_GPRS_SAVES_LR
22984 | SAVE_NOINLINE_FPRS_SAVES_LR)))
22986 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
22987 GEN_INT (info->lr_save_offset + frame_off));
22988 mem = gen_rtx_MEM (Pmode, addr);
22989 /* This should not be of rs6000_sr_alias_set, because of
22990 __builtin_return_address. */
22992 insn = emit_move_insn (mem, reg);
22993 rs6000_frame_related (insn, frame_reg_rtx, sp_off - frame_off,
22994 NULL_RTX, NULL_RTX, NULL_RTX);
22995 END_USE (0);
22999 /* If we need to save CR, put it into r12 or r11. Choose r12 except when
23000 r12 will be needed by out-of-line gpr restore. */
23001 cr_save_regno = ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
23002 && !(strategy & (SAVE_INLINE_GPRS
23003 | SAVE_NOINLINE_GPRS_SAVES_LR))
23004 ? 11 : 12);
23005 if (!WORLD_SAVE_P (info)
23006 && info->cr_save_p
23007 && REGNO (frame_reg_rtx) != cr_save_regno
23008 && !(using_static_chain_p && cr_save_regno == 11))
23010 cr_save_rtx = gen_rtx_REG (SImode, cr_save_regno);
23011 START_USE (cr_save_regno);
23012 rs6000_emit_move_from_cr (cr_save_rtx);
23015 /* Do any required saving of fpr's. If only one or two to save, do
23016 it ourselves. Otherwise, call function. */
23017 if (!WORLD_SAVE_P (info) && (strategy & SAVE_INLINE_FPRS))
23019 int i;
23020 for (i = 0; i < 64 - info->first_fp_reg_save; i++)
23021 if (save_reg_p (info->first_fp_reg_save + i))
23022 emit_frame_save (frame_reg_rtx,
23023 (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT
23024 ? DFmode : SFmode),
23025 info->first_fp_reg_save + i,
23026 info->fp_save_offset + frame_off + 8 * i,
23027 sp_off - frame_off);
23029 else if (!WORLD_SAVE_P (info) && info->first_fp_reg_save != 64)
23031 bool lr = (strategy & SAVE_NOINLINE_FPRS_SAVES_LR) != 0;
23032 int sel = SAVRES_SAVE | SAVRES_FPR | (lr ? SAVRES_LR : 0);
23033 unsigned ptr_regno = ptr_regno_for_savres (sel);
23034 rtx ptr_reg = frame_reg_rtx;
23036 if (REGNO (frame_reg_rtx) == ptr_regno)
23037 gcc_checking_assert (frame_off == 0);
23038 else
23040 ptr_reg = gen_rtx_REG (Pmode, ptr_regno);
23041 NOT_INUSE (ptr_regno);
23042 emit_insn (gen_add3_insn (ptr_reg,
23043 frame_reg_rtx, GEN_INT (frame_off)));
23045 insn = rs6000_emit_savres_rtx (info, ptr_reg,
23046 info->fp_save_offset,
23047 info->lr_save_offset,
23048 DFmode, sel);
23049 rs6000_frame_related (insn, ptr_reg, sp_off,
23050 NULL_RTX, NULL_RTX, NULL_RTX);
23051 if (lr)
23052 END_USE (0);
23055 /* Save GPRs. This is done as a PARALLEL if we are using
23056 the store-multiple instructions. */
23057 if (!WORLD_SAVE_P (info)
23058 && TARGET_SPE_ABI
23059 && info->spe_64bit_regs_used != 0
23060 && info->first_gp_reg_save != 32)
23062 int i;
23063 rtx spe_save_area_ptr;
23064 HOST_WIDE_INT save_off;
23065 int ool_adjust = 0;
23067 /* Determine whether we can address all of the registers that need
23068 to be saved with an offset from frame_reg_rtx that fits in
23069 the small const field for SPE memory instructions. */
23070 int spe_regs_addressable
23071 = (SPE_CONST_OFFSET_OK (info->spe_gp_save_offset + frame_off
23072 + reg_size * (32 - info->first_gp_reg_save - 1))
23073 && (strategy & SAVE_INLINE_GPRS));
23075 if (spe_regs_addressable)
23077 spe_save_area_ptr = frame_reg_rtx;
23078 save_off = frame_off;
23080 else
23082 /* Make r11 point to the start of the SPE save area. We need
23083 to be careful here if r11 is holding the static chain. If
23084 it is, then temporarily save it in r0. */
23085 HOST_WIDE_INT offset;
23087 if (!(strategy & SAVE_INLINE_GPRS))
23088 ool_adjust = 8 * (info->first_gp_reg_save - FIRST_SAVED_GP_REGNO);
23089 offset = info->spe_gp_save_offset + frame_off - ool_adjust;
23090 spe_save_area_ptr = gen_rtx_REG (Pmode, 11);
23091 save_off = frame_off - offset;
23093 if (using_static_chain_p)
23095 rtx r0 = gen_rtx_REG (Pmode, 0);
23097 START_USE (0);
23098 gcc_assert (info->first_gp_reg_save > 11);
23100 emit_move_insn (r0, spe_save_area_ptr);
23102 else if (REGNO (frame_reg_rtx) != 11)
23103 START_USE (11);
23105 emit_insn (gen_addsi3 (spe_save_area_ptr,
23106 frame_reg_rtx, GEN_INT (offset)));
23107 if (!using_static_chain_p && REGNO (frame_reg_rtx) == 11)
23108 frame_off = -info->spe_gp_save_offset + ool_adjust;
23111 if ((strategy & SAVE_INLINE_GPRS))
23113 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
23114 if (rs6000_reg_live_or_pic_offset_p (info->first_gp_reg_save + i))
23115 emit_frame_save (spe_save_area_ptr, reg_mode,
23116 info->first_gp_reg_save + i,
23117 (info->spe_gp_save_offset + save_off
23118 + reg_size * i),
23119 sp_off - save_off);
23121 else
23123 insn = rs6000_emit_savres_rtx (info, spe_save_area_ptr,
23124 info->spe_gp_save_offset + save_off,
23125 0, reg_mode,
23126 SAVRES_SAVE | SAVRES_GPR);
23128 rs6000_frame_related (insn, spe_save_area_ptr, sp_off - save_off,
23129 NULL_RTX, NULL_RTX, NULL_RTX);
23132 /* Move the static chain pointer back. */
23133 if (!spe_regs_addressable)
23135 if (using_static_chain_p)
23137 emit_move_insn (spe_save_area_ptr, gen_rtx_REG (Pmode, 0));
23138 END_USE (0);
23140 else if (REGNO (frame_reg_rtx) != 11)
23141 END_USE (11);
23144 else if (!WORLD_SAVE_P (info) && !(strategy & SAVE_INLINE_GPRS))
23146 bool lr = (strategy & SAVE_NOINLINE_GPRS_SAVES_LR) != 0;
23147 int sel = SAVRES_SAVE | SAVRES_GPR | (lr ? SAVRES_LR : 0);
23148 unsigned ptr_regno = ptr_regno_for_savres (sel);
23149 rtx ptr_reg = frame_reg_rtx;
23150 bool ptr_set_up = REGNO (ptr_reg) == ptr_regno;
23151 int end_save = info->gp_save_offset + info->gp_size;
23152 int ptr_off;
23154 if (!ptr_set_up)
23155 ptr_reg = gen_rtx_REG (Pmode, ptr_regno);
23157 /* Need to adjust r11 (r12) if we saved any FPRs. */
23158 if (end_save + frame_off != 0)
23160 rtx offset = GEN_INT (end_save + frame_off);
23162 if (ptr_set_up)
23163 frame_off = -end_save;
23164 else
23165 NOT_INUSE (ptr_regno);
23166 emit_insn (gen_add3_insn (ptr_reg, frame_reg_rtx, offset));
23168 else if (!ptr_set_up)
23170 NOT_INUSE (ptr_regno);
23171 emit_move_insn (ptr_reg, frame_reg_rtx);
23173 ptr_off = -end_save;
23174 insn = rs6000_emit_savres_rtx (info, ptr_reg,
23175 info->gp_save_offset + ptr_off,
23176 info->lr_save_offset + ptr_off,
23177 reg_mode, sel);
23178 rs6000_frame_related (insn, ptr_reg, sp_off - ptr_off,
23179 NULL_RTX, NULL_RTX, NULL_RTX);
23180 if (lr)
23181 END_USE (0);
23183 else if (!WORLD_SAVE_P (info) && (strategy & SAVRES_MULTIPLE))
23185 rtvec p;
23186 int i;
23187 p = rtvec_alloc (32 - info->first_gp_reg_save);
23188 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
23189 RTVEC_ELT (p, i)
23190 = gen_frame_store (gen_rtx_REG (reg_mode, info->first_gp_reg_save + i),
23191 frame_reg_rtx,
23192 info->gp_save_offset + frame_off + reg_size * i);
23193 insn = emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
23194 rs6000_frame_related (insn, frame_reg_rtx, sp_off - frame_off,
23195 NULL_RTX, NULL_RTX, NULL_RTX);
23197 else if (!WORLD_SAVE_P (info))
23199 int i;
23200 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
23201 if (rs6000_reg_live_or_pic_offset_p (info->first_gp_reg_save + i))
23202 emit_frame_save (frame_reg_rtx, reg_mode,
23203 info->first_gp_reg_save + i,
23204 info->gp_save_offset + frame_off + reg_size * i,
23205 sp_off - frame_off);
23208 if (crtl->calls_eh_return)
23210 unsigned int i;
23211 rtvec p;
23213 for (i = 0; ; ++i)
23215 unsigned int regno = EH_RETURN_DATA_REGNO (i);
23216 if (regno == INVALID_REGNUM)
23217 break;
23220 p = rtvec_alloc (i);
23222 for (i = 0; ; ++i)
23224 unsigned int regno = EH_RETURN_DATA_REGNO (i);
23225 if (regno == INVALID_REGNUM)
23226 break;
23228 insn
23229 = gen_frame_store (gen_rtx_REG (reg_mode, regno),
23230 sp_reg_rtx,
23231 info->ehrd_offset + sp_off + reg_size * (int) i);
23232 RTVEC_ELT (p, i) = insn;
23233 RTX_FRAME_RELATED_P (insn) = 1;
23236 insn = emit_insn (gen_blockage ());
23237 RTX_FRAME_RELATED_P (insn) = 1;
23238 add_reg_note (insn, REG_FRAME_RELATED_EXPR, gen_rtx_PARALLEL (VOIDmode, p));
23241 /* In AIX ABI we need to make sure r2 is really saved. */
23242 if (TARGET_AIX && crtl->calls_eh_return)
23244 rtx tmp_reg, tmp_reg_si, hi, lo, compare_result, toc_save_done, jump;
23245 rtx save_insn, join_insn, note;
23246 long toc_restore_insn;
23248 tmp_reg = gen_rtx_REG (Pmode, 11);
23249 tmp_reg_si = gen_rtx_REG (SImode, 11);
23250 if (using_static_chain_p)
23252 START_USE (0);
23253 emit_move_insn (gen_rtx_REG (Pmode, 0), tmp_reg);
23255 else
23256 START_USE (11);
23257 emit_move_insn (tmp_reg, gen_rtx_REG (Pmode, LR_REGNO));
23258 /* Peek at instruction to which this function returns. If it's
23259 restoring r2, then we know we've already saved r2. We can't
23260 unconditionally save r2 because the value we have will already
23261 be updated if we arrived at this function via a plt call or
23262 toc adjusting stub. */
23263 emit_move_insn (tmp_reg_si, gen_rtx_MEM (SImode, tmp_reg));
23264 toc_restore_insn = ((TARGET_32BIT ? 0x80410000 : 0xE8410000)
23265 + RS6000_TOC_SAVE_SLOT);
23266 hi = gen_int_mode (toc_restore_insn & ~0xffff, SImode);
23267 emit_insn (gen_xorsi3 (tmp_reg_si, tmp_reg_si, hi));
23268 compare_result = gen_rtx_REG (CCUNSmode, CR0_REGNO);
23269 validate_condition_mode (EQ, CCUNSmode);
23270 lo = gen_int_mode (toc_restore_insn & 0xffff, SImode);
23271 emit_insn (gen_rtx_SET (VOIDmode, compare_result,
23272 gen_rtx_COMPARE (CCUNSmode, tmp_reg_si, lo)));
23273 toc_save_done = gen_label_rtx ();
23274 jump = gen_rtx_IF_THEN_ELSE (VOIDmode,
23275 gen_rtx_EQ (VOIDmode, compare_result,
23276 const0_rtx),
23277 gen_rtx_LABEL_REF (VOIDmode, toc_save_done),
23278 pc_rtx);
23279 jump = emit_jump_insn (gen_rtx_SET (VOIDmode, pc_rtx, jump));
23280 JUMP_LABEL (jump) = toc_save_done;
23281 LABEL_NUSES (toc_save_done) += 1;
23283 save_insn = emit_frame_save (frame_reg_rtx, reg_mode,
23284 TOC_REGNUM, frame_off + RS6000_TOC_SAVE_SLOT,
23285 sp_off - frame_off);
23287 emit_label (toc_save_done);
23289 /* ??? If we leave SAVE_INSN as marked as saving R2, then we'll
23290 have a CFG that has different saves along different paths.
23291 Move the note to a dummy blockage insn, which describes that
23292 R2 is unconditionally saved after the label. */
23293 /* ??? An alternate representation might be a special insn pattern
23294 containing both the branch and the store. That might let the
23295 code that minimizes the number of DW_CFA_advance opcodes better
23296 freedom in placing the annotations. */
23297 note = find_reg_note (save_insn, REG_FRAME_RELATED_EXPR, NULL);
23298 if (note)
23299 remove_note (save_insn, note);
23300 else
23301 note = alloc_reg_note (REG_FRAME_RELATED_EXPR,
23302 copy_rtx (PATTERN (save_insn)), NULL_RTX);
23303 RTX_FRAME_RELATED_P (save_insn) = 0;
23305 join_insn = emit_insn (gen_blockage ());
23306 REG_NOTES (join_insn) = note;
23307 RTX_FRAME_RELATED_P (join_insn) = 1;
23309 if (using_static_chain_p)
23311 emit_move_insn (tmp_reg, gen_rtx_REG (Pmode, 0));
23312 END_USE (0);
23314 else
23315 END_USE (11);
23318 /* Save CR if we use any that must be preserved. */
23319 if (!WORLD_SAVE_P (info) && info->cr_save_p)
23321 rtx addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
23322 GEN_INT (info->cr_save_offset + frame_off));
23323 rtx mem = gen_frame_mem (SImode, addr);
23325 /* If we didn't copy cr before, do so now using r0. */
23326 if (cr_save_rtx == NULL_RTX)
23328 START_USE (0);
23329 cr_save_rtx = gen_rtx_REG (SImode, 0);
23330 rs6000_emit_move_from_cr (cr_save_rtx);
23333 /* Saving CR requires a two-instruction sequence: one instruction
23334 to move the CR to a general-purpose register, and a second
23335 instruction that stores the GPR to memory.
23337 We do not emit any DWARF CFI records for the first of these,
23338 because we cannot properly represent the fact that CR is saved in
23339 a register. One reason is that we cannot express that multiple
23340 CR fields are saved; another reason is that on 64-bit, the size
23341 of the CR register in DWARF (4 bytes) differs from the size of
23342 a general-purpose register.
23344 This means if any intervening instruction were to clobber one of
23345 the call-saved CR fields, we'd have incorrect CFI. To prevent
23346 this from happening, we mark the store to memory as a use of
23347 those CR fields, which prevents any such instruction from being
23348 scheduled in between the two instructions. */
23349 rtx crsave_v[9];
23350 int n_crsave = 0;
23351 int i;
23353 crsave_v[n_crsave++] = gen_rtx_SET (VOIDmode, mem, cr_save_rtx);
23354 for (i = 0; i < 8; i++)
23355 if (save_reg_p (CR0_REGNO + i))
23356 crsave_v[n_crsave++]
23357 = gen_rtx_USE (VOIDmode, gen_rtx_REG (CCmode, CR0_REGNO + i));
23359 insn = emit_insn (gen_rtx_PARALLEL (VOIDmode,
23360 gen_rtvec_v (n_crsave, crsave_v)));
23361 END_USE (REGNO (cr_save_rtx));
23363 /* Now, there's no way that dwarf2out_frame_debug_expr is going to
23364 understand '(unspec:SI [(reg:CC 68) ...] UNSPEC_MOVESI_FROM_CR)',
23365 so we need to construct a frame expression manually. */
23366 RTX_FRAME_RELATED_P (insn) = 1;
23368 /* Update address to be stack-pointer relative, like
23369 rs6000_frame_related would do. */
23370 addr = gen_rtx_PLUS (Pmode, gen_rtx_REG (Pmode, STACK_POINTER_REGNUM),
23371 GEN_INT (info->cr_save_offset + sp_off));
23372 mem = gen_frame_mem (SImode, addr);
23374 if (DEFAULT_ABI == ABI_ELFv2)
23376 /* In the ELFv2 ABI we generate separate CFI records for each
23377 CR field that was actually saved. They all point to the
23378 same 32-bit stack slot. */
23379 rtx crframe[8];
23380 int n_crframe = 0;
23382 for (i = 0; i < 8; i++)
23383 if (save_reg_p (CR0_REGNO + i))
23385 crframe[n_crframe]
23386 = gen_rtx_SET (VOIDmode, mem,
23387 gen_rtx_REG (SImode, CR0_REGNO + i));
23389 RTX_FRAME_RELATED_P (crframe[n_crframe]) = 1;
23390 n_crframe++;
23393 add_reg_note (insn, REG_FRAME_RELATED_EXPR,
23394 gen_rtx_PARALLEL (VOIDmode,
23395 gen_rtvec_v (n_crframe, crframe)));
23397 else
23399 /* In other ABIs, by convention, we use a single CR regnum to
23400 represent the fact that all call-saved CR fields are saved.
23401 We use CR2_REGNO to be compatible with gcc-2.95 on Linux. */
23402 rtx set = gen_rtx_SET (VOIDmode, mem,
23403 gen_rtx_REG (SImode, CR2_REGNO));
23404 add_reg_note (insn, REG_FRAME_RELATED_EXPR, set);
23408 /* In the ELFv2 ABI we need to save all call-saved CR fields into
23409 *separate* slots if the routine calls __builtin_eh_return, so
23410 that they can be independently restored by the unwinder. */
23411 if (DEFAULT_ABI == ABI_ELFv2 && crtl->calls_eh_return)
23413 int i, cr_off = info->ehcr_offset;
23414 rtx crsave;
23416 /* ??? We might get better performance by using multiple mfocrf
23417 instructions. */
23418 crsave = gen_rtx_REG (SImode, 0);
23419 emit_insn (gen_movesi_from_cr (crsave));
23421 for (i = 0; i < 8; i++)
23422 if (!call_used_regs[CR0_REGNO + i])
23424 rtvec p = rtvec_alloc (2);
23425 RTVEC_ELT (p, 0)
23426 = gen_frame_store (crsave, frame_reg_rtx, cr_off + frame_off);
23427 RTVEC_ELT (p, 1)
23428 = gen_rtx_USE (VOIDmode, gen_rtx_REG (CCmode, CR0_REGNO + i));
23430 insn = emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
23432 RTX_FRAME_RELATED_P (insn) = 1;
23433 add_reg_note (insn, REG_FRAME_RELATED_EXPR,
23434 gen_frame_store (gen_rtx_REG (SImode, CR0_REGNO + i),
23435 sp_reg_rtx, cr_off + sp_off));
23437 cr_off += reg_size;
23441 /* Update stack and set back pointer unless this is V.4,
23442 for which it was done previously. */
23443 if (!WORLD_SAVE_P (info) && info->push_p
23444 && !(DEFAULT_ABI == ABI_V4 || crtl->calls_eh_return))
23446 rtx ptr_reg = NULL;
23447 int ptr_off = 0;
23449 /* If saving altivec regs we need to be able to address all save
23450 locations using a 16-bit offset. */
23451 if ((strategy & SAVE_INLINE_VRS) == 0
23452 || (info->altivec_size != 0
23453 && (info->altivec_save_offset + info->altivec_size - 16
23454 + info->total_size - frame_off) > 32767)
23455 || (info->vrsave_size != 0
23456 && (info->vrsave_save_offset
23457 + info->total_size - frame_off) > 32767))
23459 int sel = SAVRES_SAVE | SAVRES_VR;
23460 unsigned ptr_regno = ptr_regno_for_savres (sel);
23462 if (using_static_chain_p
23463 && ptr_regno == STATIC_CHAIN_REGNUM)
23464 ptr_regno = 12;
23465 if (REGNO (frame_reg_rtx) != ptr_regno)
23466 START_USE (ptr_regno);
23467 ptr_reg = gen_rtx_REG (Pmode, ptr_regno);
23468 frame_reg_rtx = ptr_reg;
23469 ptr_off = info->altivec_save_offset + info->altivec_size;
23470 frame_off = -ptr_off;
23472 else if (REGNO (frame_reg_rtx) == 1)
23473 frame_off = info->total_size;
23474 rs6000_emit_allocate_stack (info->total_size, ptr_reg, ptr_off);
23475 sp_off = info->total_size;
23476 if (frame_reg_rtx != sp_reg_rtx)
23477 rs6000_emit_stack_tie (frame_reg_rtx, false);
23480 /* Set frame pointer, if needed. */
23481 if (frame_pointer_needed)
23483 insn = emit_move_insn (gen_rtx_REG (Pmode, HARD_FRAME_POINTER_REGNUM),
23484 sp_reg_rtx);
23485 RTX_FRAME_RELATED_P (insn) = 1;
23488 /* Save AltiVec registers if needed. Save here because the red zone does
23489 not always include AltiVec registers. */
23490 if (!WORLD_SAVE_P (info) && TARGET_ALTIVEC_ABI
23491 && info->altivec_size != 0 && (strategy & SAVE_INLINE_VRS) == 0)
23493 int end_save = info->altivec_save_offset + info->altivec_size;
23494 int ptr_off;
23495 /* Oddly, the vector save/restore functions point r0 at the end
23496 of the save area, then use r11 or r12 to load offsets for
23497 [reg+reg] addressing. */
23498 rtx ptr_reg = gen_rtx_REG (Pmode, 0);
23499 int scratch_regno = ptr_regno_for_savres (SAVRES_SAVE | SAVRES_VR);
23500 rtx scratch_reg = gen_rtx_REG (Pmode, scratch_regno);
23502 gcc_checking_assert (scratch_regno == 11 || scratch_regno == 12);
23503 NOT_INUSE (0);
23504 if (end_save + frame_off != 0)
23506 rtx offset = GEN_INT (end_save + frame_off);
23508 emit_insn (gen_add3_insn (ptr_reg, frame_reg_rtx, offset));
23510 else
23511 emit_move_insn (ptr_reg, frame_reg_rtx);
23513 ptr_off = -end_save;
23514 insn = rs6000_emit_savres_rtx (info, scratch_reg,
23515 info->altivec_save_offset + ptr_off,
23516 0, V4SImode, SAVRES_SAVE | SAVRES_VR);
23517 rs6000_frame_related (insn, scratch_reg, sp_off - ptr_off,
23518 NULL_RTX, NULL_RTX, NULL_RTX);
23519 if (REGNO (frame_reg_rtx) == REGNO (scratch_reg))
23521 /* The oddity mentioned above clobbered our frame reg. */
23522 emit_move_insn (frame_reg_rtx, ptr_reg);
23523 frame_off = ptr_off;
23526 else if (!WORLD_SAVE_P (info) && TARGET_ALTIVEC_ABI
23527 && info->altivec_size != 0)
23529 int i;
23531 for (i = info->first_altivec_reg_save; i <= LAST_ALTIVEC_REGNO; ++i)
23532 if (info->vrsave_mask & ALTIVEC_REG_BIT (i))
23534 rtx areg, savereg, mem, split_reg;
23535 int offset;
23537 offset = (info->altivec_save_offset + frame_off
23538 + 16 * (i - info->first_altivec_reg_save));
23540 savereg = gen_rtx_REG (V4SImode, i);
23542 NOT_INUSE (0);
23543 areg = gen_rtx_REG (Pmode, 0);
23544 emit_move_insn (areg, GEN_INT (offset));
23546 /* AltiVec addressing mode is [reg+reg]. */
23547 mem = gen_frame_mem (V4SImode,
23548 gen_rtx_PLUS (Pmode, frame_reg_rtx, areg));
23550 insn = emit_move_insn (mem, savereg);
23552 /* When we split a VSX store into two insns, we need to make
23553 sure the DWARF info knows which register we are storing.
23554 Pass it in to be used on the appropriate note. */
23555 if (!BYTES_BIG_ENDIAN
23556 && GET_CODE (PATTERN (insn)) == SET
23557 && GET_CODE (SET_SRC (PATTERN (insn))) == VEC_SELECT)
23558 split_reg = savereg;
23559 else
23560 split_reg = NULL_RTX;
23562 rs6000_frame_related (insn, frame_reg_rtx, sp_off - frame_off,
23563 areg, GEN_INT (offset), split_reg);
23567 /* VRSAVE is a bit vector representing which AltiVec registers
23568 are used. The OS uses this to determine which vector
23569 registers to save on a context switch. We need to save
23570 VRSAVE on the stack frame, add whatever AltiVec registers we
23571 used in this function, and do the corresponding magic in the
23572 epilogue. */
23574 if (!WORLD_SAVE_P (info)
23575 && TARGET_ALTIVEC
23576 && TARGET_ALTIVEC_VRSAVE
23577 && info->vrsave_mask != 0)
23579 rtx reg, vrsave;
23580 int offset;
23581 int save_regno;
23583 /* Get VRSAVE onto a GPR. Note that ABI_V4 and ABI_DARWIN might
23584 be using r12 as frame_reg_rtx and r11 as the static chain
23585 pointer for nested functions. */
23586 save_regno = 12;
23587 if ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
23588 && !using_static_chain_p)
23589 save_regno = 11;
23590 else if (REGNO (frame_reg_rtx) == 12)
23592 save_regno = 11;
23593 if (using_static_chain_p)
23594 save_regno = 0;
23597 NOT_INUSE (save_regno);
23598 reg = gen_rtx_REG (SImode, save_regno);
23599 vrsave = gen_rtx_REG (SImode, VRSAVE_REGNO);
23600 if (TARGET_MACHO)
23601 emit_insn (gen_get_vrsave_internal (reg));
23602 else
23603 emit_insn (gen_rtx_SET (VOIDmode, reg, vrsave));
23605 /* Save VRSAVE. */
23606 offset = info->vrsave_save_offset + frame_off;
23607 insn = emit_insn (gen_frame_store (reg, frame_reg_rtx, offset));
23609 /* Include the registers in the mask. */
23610 emit_insn (gen_iorsi3 (reg, reg, GEN_INT ((int) info->vrsave_mask)));
23612 insn = emit_insn (generate_set_vrsave (reg, info, 0));
23615 /* If we are using RS6000_PIC_OFFSET_TABLE_REGNUM, we need to set it up. */
23616 if (!TARGET_SINGLE_PIC_BASE
23617 && ((TARGET_TOC && TARGET_MINIMAL_TOC && get_pool_size () != 0)
23618 || (DEFAULT_ABI == ABI_V4
23619 && (flag_pic == 1 || (flag_pic && TARGET_SECURE_PLT))
23620 && df_regs_ever_live_p (RS6000_PIC_OFFSET_TABLE_REGNUM))))
23622 /* If emit_load_toc_table will use the link register, we need to save
23623 it. We use R12 for this purpose because emit_load_toc_table
23624 can use register 0. This allows us to use a plain 'blr' to return
23625 from the procedure more often. */
23626 int save_LR_around_toc_setup = (TARGET_ELF
23627 && DEFAULT_ABI == ABI_V4
23628 && flag_pic
23629 && ! info->lr_save_p
23630 && EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (cfun)->preds) > 0);
23631 if (save_LR_around_toc_setup)
23633 rtx lr = gen_rtx_REG (Pmode, LR_REGNO);
23634 rtx tmp = gen_rtx_REG (Pmode, 12);
23636 insn = emit_move_insn (tmp, lr);
23637 RTX_FRAME_RELATED_P (insn) = 1;
23639 rs6000_emit_load_toc_table (TRUE);
23641 insn = emit_move_insn (lr, tmp);
23642 add_reg_note (insn, REG_CFA_RESTORE, lr);
23643 RTX_FRAME_RELATED_P (insn) = 1;
23645 else
23646 rs6000_emit_load_toc_table (TRUE);
23649 #if TARGET_MACHO
23650 if (!TARGET_SINGLE_PIC_BASE
23651 && DEFAULT_ABI == ABI_DARWIN
23652 && flag_pic && crtl->uses_pic_offset_table)
23654 rtx lr = gen_rtx_REG (Pmode, LR_REGNO);
23655 rtx src = gen_rtx_SYMBOL_REF (Pmode, MACHOPIC_FUNCTION_BASE_NAME);
23657 /* Save and restore LR locally around this call (in R0). */
23658 if (!info->lr_save_p)
23659 emit_move_insn (gen_rtx_REG (Pmode, 0), lr);
23661 emit_insn (gen_load_macho_picbase (src));
23663 emit_move_insn (gen_rtx_REG (Pmode,
23664 RS6000_PIC_OFFSET_TABLE_REGNUM),
23665 lr);
23667 if (!info->lr_save_p)
23668 emit_move_insn (lr, gen_rtx_REG (Pmode, 0));
23670 #endif
23672 /* If we need to, save the TOC register after doing the stack setup.
23673 Do not emit eh frame info for this save. The unwinder wants info,
23674 conceptually attached to instructions in this function, about
23675 register values in the caller of this function. This R2 may have
23676 already been changed from the value in the caller.
23677 We don't attempt to write accurate DWARF EH frame info for R2
23678 because code emitted by gcc for a (non-pointer) function call
23679 doesn't save and restore R2. Instead, R2 is managed out-of-line
23680 by a linker generated plt call stub when the function resides in
23681 a shared library. This behaviour is costly to describe in DWARF,
23682 both in terms of the size of DWARF info and the time taken in the
23683 unwinder to interpret it. R2 changes, apart from the
23684 calls_eh_return case earlier in this function, are handled by
23685 linux-unwind.h frob_update_context. */
23686 if (rs6000_save_toc_in_prologue_p ())
23688 rtx reg = gen_rtx_REG (reg_mode, TOC_REGNUM);
23689 emit_insn (gen_frame_store (reg, sp_reg_rtx, RS6000_TOC_SAVE_SLOT));
23693 /* Write function prologue. */
23695 static void
23696 rs6000_output_function_prologue (FILE *file,
23697 HOST_WIDE_INT size ATTRIBUTE_UNUSED)
23699 rs6000_stack_t *info = rs6000_stack_info ();
23701 if (TARGET_DEBUG_STACK)
23702 debug_stack_info (info);
23704 /* Write .extern for any function we will call to save and restore
23705 fp values. */
23706 if (info->first_fp_reg_save < 64
23707 && !TARGET_MACHO
23708 && !TARGET_ELF)
23710 char *name;
23711 int regno = info->first_fp_reg_save - 32;
23713 if ((info->savres_strategy & SAVE_INLINE_FPRS) == 0)
23715 bool lr = (info->savres_strategy & SAVE_NOINLINE_FPRS_SAVES_LR) != 0;
23716 int sel = SAVRES_SAVE | SAVRES_FPR | (lr ? SAVRES_LR : 0);
23717 name = rs6000_savres_routine_name (info, regno, sel);
23718 fprintf (file, "\t.extern %s\n", name);
23720 if ((info->savres_strategy & REST_INLINE_FPRS) == 0)
23722 bool lr = (info->savres_strategy
23723 & REST_NOINLINE_FPRS_DOESNT_RESTORE_LR) == 0;
23724 int sel = SAVRES_FPR | (lr ? SAVRES_LR : 0);
23725 name = rs6000_savres_routine_name (info, regno, sel);
23726 fprintf (file, "\t.extern %s\n", name);
23730 /* ELFv2 ABI r2 setup code and local entry point. This must follow
23731 immediately after the global entry point label. */
23732 if (DEFAULT_ABI == ABI_ELFv2 && cfun->machine->r2_setup_needed)
23734 const char *name = XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0);
23736 fprintf (file, "0:\taddis 2,12,.TOC.-0b@ha\n");
23737 fprintf (file, "\taddi 2,2,.TOC.-0b@l\n");
23739 fputs ("\t.localentry\t", file);
23740 assemble_name (file, name);
23741 fputs (",.-", file);
23742 assemble_name (file, name);
23743 fputs ("\n", file);
23746 /* Output -mprofile-kernel code. This needs to be done here instead of
23747 in output_function_profile since it must go after the ELFv2 ABI
23748 local entry point. */
23749 if (TARGET_PROFILE_KERNEL && crtl->profile)
23751 gcc_assert (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2);
23752 gcc_assert (!TARGET_32BIT);
23754 asm_fprintf (file, "\tmflr %s\n", reg_names[0]);
23755 asm_fprintf (file, "\tstd %s,16(%s)\n", reg_names[0], reg_names[1]);
23757 /* In the ELFv2 ABI we have no compiler stack word. It must be
23758 the resposibility of _mcount to preserve the static chain
23759 register if required. */
23760 if (DEFAULT_ABI != ABI_ELFv2
23761 && cfun->static_chain_decl != NULL)
23763 asm_fprintf (file, "\tstd %s,24(%s)\n",
23764 reg_names[STATIC_CHAIN_REGNUM], reg_names[1]);
23765 fprintf (file, "\tbl %s\n", RS6000_MCOUNT);
23766 asm_fprintf (file, "\tld %s,24(%s)\n",
23767 reg_names[STATIC_CHAIN_REGNUM], reg_names[1]);
23769 else
23770 fprintf (file, "\tbl %s\n", RS6000_MCOUNT);
23773 rs6000_pic_labelno++;
23776 /* Non-zero if vmx regs are restored before the frame pop, zero if
23777 we restore after the pop when possible. */
23778 #define ALWAYS_RESTORE_ALTIVEC_BEFORE_POP 0
23780 /* Restoring cr is a two step process: loading a reg from the frame
23781 save, then moving the reg to cr. For ABI_V4 we must let the
23782 unwinder know that the stack location is no longer valid at or
23783 before the stack deallocation, but we can't emit a cfa_restore for
23784 cr at the stack deallocation like we do for other registers.
23785 The trouble is that it is possible for the move to cr to be
23786 scheduled after the stack deallocation. So say exactly where cr
23787 is located on each of the two insns. */
23789 static rtx
23790 load_cr_save (int regno, rtx frame_reg_rtx, int offset, bool exit_func)
23792 rtx mem = gen_frame_mem_offset (SImode, frame_reg_rtx, offset);
23793 rtx reg = gen_rtx_REG (SImode, regno);
23794 rtx insn = emit_move_insn (reg, mem);
23796 if (!exit_func && DEFAULT_ABI == ABI_V4)
23798 rtx cr = gen_rtx_REG (SImode, CR2_REGNO);
23799 rtx set = gen_rtx_SET (VOIDmode, reg, cr);
23801 add_reg_note (insn, REG_CFA_REGISTER, set);
23802 RTX_FRAME_RELATED_P (insn) = 1;
23804 return reg;
23807 /* Reload CR from REG. */
23809 static void
23810 restore_saved_cr (rtx reg, int using_mfcr_multiple, bool exit_func)
23812 int count = 0;
23813 int i;
23815 if (using_mfcr_multiple)
23817 for (i = 0; i < 8; i++)
23818 if (save_reg_p (CR0_REGNO + i))
23819 count++;
23820 gcc_assert (count);
23823 if (using_mfcr_multiple && count > 1)
23825 rtx insn;
23826 rtvec p;
23827 int ndx;
23829 p = rtvec_alloc (count);
23831 ndx = 0;
23832 for (i = 0; i < 8; i++)
23833 if (save_reg_p (CR0_REGNO + i))
23835 rtvec r = rtvec_alloc (2);
23836 RTVEC_ELT (r, 0) = reg;
23837 RTVEC_ELT (r, 1) = GEN_INT (1 << (7-i));
23838 RTVEC_ELT (p, ndx) =
23839 gen_rtx_SET (VOIDmode, gen_rtx_REG (CCmode, CR0_REGNO + i),
23840 gen_rtx_UNSPEC (CCmode, r, UNSPEC_MOVESI_TO_CR));
23841 ndx++;
23843 insn = emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
23844 gcc_assert (ndx == count);
23846 /* For the ELFv2 ABI we generate a CFA_RESTORE for each
23847 CR field separately. */
23848 if (!exit_func && DEFAULT_ABI == ABI_ELFv2 && flag_shrink_wrap)
23850 for (i = 0; i < 8; i++)
23851 if (save_reg_p (CR0_REGNO + i))
23852 add_reg_note (insn, REG_CFA_RESTORE,
23853 gen_rtx_REG (SImode, CR0_REGNO + i));
23855 RTX_FRAME_RELATED_P (insn) = 1;
23858 else
23859 for (i = 0; i < 8; i++)
23860 if (save_reg_p (CR0_REGNO + i))
23862 rtx insn = emit_insn (gen_movsi_to_cr_one
23863 (gen_rtx_REG (CCmode, CR0_REGNO + i), reg));
23865 /* For the ELFv2 ABI we generate a CFA_RESTORE for each
23866 CR field separately, attached to the insn that in fact
23867 restores this particular CR field. */
23868 if (!exit_func && DEFAULT_ABI == ABI_ELFv2 && flag_shrink_wrap)
23870 add_reg_note (insn, REG_CFA_RESTORE,
23871 gen_rtx_REG (SImode, CR0_REGNO + i));
23873 RTX_FRAME_RELATED_P (insn) = 1;
23877 /* For other ABIs, we just generate a single CFA_RESTORE for CR2. */
23878 if (!exit_func && DEFAULT_ABI != ABI_ELFv2
23879 && (DEFAULT_ABI == ABI_V4 || flag_shrink_wrap))
23881 rtx insn = get_last_insn ();
23882 rtx cr = gen_rtx_REG (SImode, CR2_REGNO);
23884 add_reg_note (insn, REG_CFA_RESTORE, cr);
23885 RTX_FRAME_RELATED_P (insn) = 1;
23889 /* Like cr, the move to lr instruction can be scheduled after the
23890 stack deallocation, but unlike cr, its stack frame save is still
23891 valid. So we only need to emit the cfa_restore on the correct
23892 instruction. */
23894 static void
23895 load_lr_save (int regno, rtx frame_reg_rtx, int offset)
23897 rtx mem = gen_frame_mem_offset (Pmode, frame_reg_rtx, offset);
23898 rtx reg = gen_rtx_REG (Pmode, regno);
23900 emit_move_insn (reg, mem);
23903 static void
23904 restore_saved_lr (int regno, bool exit_func)
23906 rtx reg = gen_rtx_REG (Pmode, regno);
23907 rtx lr = gen_rtx_REG (Pmode, LR_REGNO);
23908 rtx insn = emit_move_insn (lr, reg);
23910 if (!exit_func && flag_shrink_wrap)
23912 add_reg_note (insn, REG_CFA_RESTORE, lr);
23913 RTX_FRAME_RELATED_P (insn) = 1;
23917 static rtx
23918 add_crlr_cfa_restore (const rs6000_stack_t *info, rtx cfa_restores)
23920 if (DEFAULT_ABI == ABI_ELFv2)
23922 int i;
23923 for (i = 0; i < 8; i++)
23924 if (save_reg_p (CR0_REGNO + i))
23926 rtx cr = gen_rtx_REG (SImode, CR0_REGNO + i);
23927 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, cr,
23928 cfa_restores);
23931 else if (info->cr_save_p)
23932 cfa_restores = alloc_reg_note (REG_CFA_RESTORE,
23933 gen_rtx_REG (SImode, CR2_REGNO),
23934 cfa_restores);
23936 if (info->lr_save_p)
23937 cfa_restores = alloc_reg_note (REG_CFA_RESTORE,
23938 gen_rtx_REG (Pmode, LR_REGNO),
23939 cfa_restores);
23940 return cfa_restores;
23943 /* Return true if OFFSET from stack pointer can be clobbered by signals.
23944 V.4 doesn't have any stack cushion, AIX ABIs have 220 or 288 bytes
23945 below stack pointer not cloberred by signals. */
23947 static inline bool
23948 offset_below_red_zone_p (HOST_WIDE_INT offset)
23950 return offset < (DEFAULT_ABI == ABI_V4
23952 : TARGET_32BIT ? -220 : -288);
23955 /* Append CFA_RESTORES to any existing REG_NOTES on the last insn. */
23957 static void
23958 emit_cfa_restores (rtx cfa_restores)
23960 rtx insn = get_last_insn ();
23961 rtx *loc = &REG_NOTES (insn);
23963 while (*loc)
23964 loc = &XEXP (*loc, 1);
23965 *loc = cfa_restores;
23966 RTX_FRAME_RELATED_P (insn) = 1;
23969 /* Emit function epilogue as insns. */
23971 void
23972 rs6000_emit_epilogue (int sibcall)
23974 rs6000_stack_t *info;
23975 int restoring_GPRs_inline;
23976 int restoring_FPRs_inline;
23977 int using_load_multiple;
23978 int using_mtcr_multiple;
23979 int use_backchain_to_restore_sp;
23980 int restore_lr;
23981 int strategy;
23982 HOST_WIDE_INT frame_off = 0;
23983 rtx sp_reg_rtx = gen_rtx_REG (Pmode, 1);
23984 rtx frame_reg_rtx = sp_reg_rtx;
23985 rtx cfa_restores = NULL_RTX;
23986 rtx insn;
23987 rtx cr_save_reg = NULL_RTX;
23988 enum machine_mode reg_mode = Pmode;
23989 int reg_size = TARGET_32BIT ? 4 : 8;
23990 int i;
23991 bool exit_func;
23992 unsigned ptr_regno;
23994 info = rs6000_stack_info ();
23996 if (TARGET_SPE_ABI && info->spe_64bit_regs_used != 0)
23998 reg_mode = V2SImode;
23999 reg_size = 8;
24002 strategy = info->savres_strategy;
24003 using_load_multiple = strategy & SAVRES_MULTIPLE;
24004 restoring_FPRs_inline = sibcall || (strategy & REST_INLINE_FPRS);
24005 restoring_GPRs_inline = sibcall || (strategy & REST_INLINE_GPRS);
24006 using_mtcr_multiple = (rs6000_cpu == PROCESSOR_PPC601
24007 || rs6000_cpu == PROCESSOR_PPC603
24008 || rs6000_cpu == PROCESSOR_PPC750
24009 || optimize_size);
24010 /* Restore via the backchain when we have a large frame, since this
24011 is more efficient than an addis, addi pair. The second condition
24012 here will not trigger at the moment; We don't actually need a
24013 frame pointer for alloca, but the generic parts of the compiler
24014 give us one anyway. */
24015 use_backchain_to_restore_sp = (info->total_size > 32767 - info->lr_save_offset
24016 || (cfun->calls_alloca
24017 && !frame_pointer_needed));
24018 restore_lr = (info->lr_save_p
24019 && (restoring_FPRs_inline
24020 || (strategy & REST_NOINLINE_FPRS_DOESNT_RESTORE_LR))
24021 && (restoring_GPRs_inline
24022 || info->first_fp_reg_save < 64));
24024 if (WORLD_SAVE_P (info))
24026 int i, j;
24027 char rname[30];
24028 const char *alloc_rname;
24029 rtvec p;
24031 /* eh_rest_world_r10 will return to the location saved in the LR
24032 stack slot (which is not likely to be our caller.)
24033 Input: R10 -- stack adjustment. Clobbers R0, R11, R12, R7, R8.
24034 rest_world is similar, except any R10 parameter is ignored.
24035 The exception-handling stuff that was here in 2.95 is no
24036 longer necessary. */
24038 p = rtvec_alloc (9
24040 + 32 - info->first_gp_reg_save
24041 + LAST_ALTIVEC_REGNO + 1 - info->first_altivec_reg_save
24042 + 63 + 1 - info->first_fp_reg_save);
24044 strcpy (rname, ((crtl->calls_eh_return) ?
24045 "*eh_rest_world_r10" : "*rest_world"));
24046 alloc_rname = ggc_strdup (rname);
24048 j = 0;
24049 RTVEC_ELT (p, j++) = ret_rtx;
24050 RTVEC_ELT (p, j++) = gen_rtx_USE (VOIDmode,
24051 gen_rtx_REG (Pmode,
24052 LR_REGNO));
24053 RTVEC_ELT (p, j++)
24054 = gen_rtx_USE (VOIDmode, gen_rtx_SYMBOL_REF (Pmode, alloc_rname));
24055 /* The instruction pattern requires a clobber here;
24056 it is shared with the restVEC helper. */
24057 RTVEC_ELT (p, j++)
24058 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, 11));
24061 /* CR register traditionally saved as CR2. */
24062 rtx reg = gen_rtx_REG (SImode, CR2_REGNO);
24063 RTVEC_ELT (p, j++)
24064 = gen_frame_load (reg, frame_reg_rtx, info->cr_save_offset);
24065 if (flag_shrink_wrap)
24067 cfa_restores = alloc_reg_note (REG_CFA_RESTORE,
24068 gen_rtx_REG (Pmode, LR_REGNO),
24069 cfa_restores);
24070 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg, cfa_restores);
24074 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
24076 rtx reg = gen_rtx_REG (reg_mode, info->first_gp_reg_save + i);
24077 RTVEC_ELT (p, j++)
24078 = gen_frame_load (reg,
24079 frame_reg_rtx, info->gp_save_offset + reg_size * i);
24080 if (flag_shrink_wrap)
24081 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg, cfa_restores);
24083 for (i = 0; info->first_altivec_reg_save + i <= LAST_ALTIVEC_REGNO; i++)
24085 rtx reg = gen_rtx_REG (V4SImode, info->first_altivec_reg_save + i);
24086 RTVEC_ELT (p, j++)
24087 = gen_frame_load (reg,
24088 frame_reg_rtx, info->altivec_save_offset + 16 * i);
24089 if (flag_shrink_wrap)
24090 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg, cfa_restores);
24092 for (i = 0; info->first_fp_reg_save + i <= 63; i++)
24094 rtx reg = gen_rtx_REG ((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT
24095 ? DFmode : SFmode),
24096 info->first_fp_reg_save + i);
24097 RTVEC_ELT (p, j++)
24098 = gen_frame_load (reg, frame_reg_rtx, info->fp_save_offset + 8 * i);
24099 if (flag_shrink_wrap)
24100 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg, cfa_restores);
24102 RTVEC_ELT (p, j++)
24103 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, 0));
24104 RTVEC_ELT (p, j++)
24105 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, 12));
24106 RTVEC_ELT (p, j++)
24107 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, 7));
24108 RTVEC_ELT (p, j++)
24109 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, 8));
24110 RTVEC_ELT (p, j++)
24111 = gen_rtx_USE (VOIDmode, gen_rtx_REG (SImode, 10));
24112 insn = emit_jump_insn (gen_rtx_PARALLEL (VOIDmode, p));
24114 if (flag_shrink_wrap)
24116 REG_NOTES (insn) = cfa_restores;
24117 add_reg_note (insn, REG_CFA_DEF_CFA, sp_reg_rtx);
24118 RTX_FRAME_RELATED_P (insn) = 1;
24120 return;
24123 /* frame_reg_rtx + frame_off points to the top of this stack frame. */
24124 if (info->push_p)
24125 frame_off = info->total_size;
24127 /* Restore AltiVec registers if we must do so before adjusting the
24128 stack. */
24129 if (TARGET_ALTIVEC_ABI
24130 && info->altivec_size != 0
24131 && (ALWAYS_RESTORE_ALTIVEC_BEFORE_POP
24132 || (DEFAULT_ABI != ABI_V4
24133 && offset_below_red_zone_p (info->altivec_save_offset))))
24135 int i;
24136 int scratch_regno = ptr_regno_for_savres (SAVRES_VR);
24138 gcc_checking_assert (scratch_regno == 11 || scratch_regno == 12);
24139 if (use_backchain_to_restore_sp)
24141 int frame_regno = 11;
24143 if ((strategy & REST_INLINE_VRS) == 0)
24145 /* Of r11 and r12, select the one not clobbered by an
24146 out-of-line restore function for the frame register. */
24147 frame_regno = 11 + 12 - scratch_regno;
24149 frame_reg_rtx = gen_rtx_REG (Pmode, frame_regno);
24150 emit_move_insn (frame_reg_rtx,
24151 gen_rtx_MEM (Pmode, sp_reg_rtx));
24152 frame_off = 0;
24154 else if (frame_pointer_needed)
24155 frame_reg_rtx = hard_frame_pointer_rtx;
24157 if ((strategy & REST_INLINE_VRS) == 0)
24159 int end_save = info->altivec_save_offset + info->altivec_size;
24160 int ptr_off;
24161 rtx ptr_reg = gen_rtx_REG (Pmode, 0);
24162 rtx scratch_reg = gen_rtx_REG (Pmode, scratch_regno);
24164 if (end_save + frame_off != 0)
24166 rtx offset = GEN_INT (end_save + frame_off);
24168 emit_insn (gen_add3_insn (ptr_reg, frame_reg_rtx, offset));
24170 else
24171 emit_move_insn (ptr_reg, frame_reg_rtx);
24173 ptr_off = -end_save;
24174 insn = rs6000_emit_savres_rtx (info, scratch_reg,
24175 info->altivec_save_offset + ptr_off,
24176 0, V4SImode, SAVRES_VR);
24178 else
24180 for (i = info->first_altivec_reg_save; i <= LAST_ALTIVEC_REGNO; ++i)
24181 if (info->vrsave_mask & ALTIVEC_REG_BIT (i))
24183 rtx addr, areg, mem, reg;
24185 areg = gen_rtx_REG (Pmode, 0);
24186 emit_move_insn
24187 (areg, GEN_INT (info->altivec_save_offset
24188 + frame_off
24189 + 16 * (i - info->first_altivec_reg_save)));
24191 /* AltiVec addressing mode is [reg+reg]. */
24192 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx, areg);
24193 mem = gen_frame_mem (V4SImode, addr);
24195 reg = gen_rtx_REG (V4SImode, i);
24196 emit_move_insn (reg, mem);
24200 for (i = info->first_altivec_reg_save; i <= LAST_ALTIVEC_REGNO; ++i)
24201 if (((strategy & REST_INLINE_VRS) == 0
24202 || (info->vrsave_mask & ALTIVEC_REG_BIT (i)) != 0)
24203 && (flag_shrink_wrap
24204 || (offset_below_red_zone_p
24205 (info->altivec_save_offset
24206 + 16 * (i - info->first_altivec_reg_save)))))
24208 rtx reg = gen_rtx_REG (V4SImode, i);
24209 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg, cfa_restores);
24213 /* Restore VRSAVE if we must do so before adjusting the stack. */
24214 if (TARGET_ALTIVEC
24215 && TARGET_ALTIVEC_VRSAVE
24216 && info->vrsave_mask != 0
24217 && (ALWAYS_RESTORE_ALTIVEC_BEFORE_POP
24218 || (DEFAULT_ABI != ABI_V4
24219 && offset_below_red_zone_p (info->vrsave_save_offset))))
24221 rtx reg;
24223 if (frame_reg_rtx == sp_reg_rtx)
24225 if (use_backchain_to_restore_sp)
24227 frame_reg_rtx = gen_rtx_REG (Pmode, 11);
24228 emit_move_insn (frame_reg_rtx,
24229 gen_rtx_MEM (Pmode, sp_reg_rtx));
24230 frame_off = 0;
24232 else if (frame_pointer_needed)
24233 frame_reg_rtx = hard_frame_pointer_rtx;
24236 reg = gen_rtx_REG (SImode, 12);
24237 emit_insn (gen_frame_load (reg, frame_reg_rtx,
24238 info->vrsave_save_offset + frame_off));
24240 emit_insn (generate_set_vrsave (reg, info, 1));
24243 insn = NULL_RTX;
24244 /* If we have a large stack frame, restore the old stack pointer
24245 using the backchain. */
24246 if (use_backchain_to_restore_sp)
24248 if (frame_reg_rtx == sp_reg_rtx)
24250 /* Under V.4, don't reset the stack pointer until after we're done
24251 loading the saved registers. */
24252 if (DEFAULT_ABI == ABI_V4)
24253 frame_reg_rtx = gen_rtx_REG (Pmode, 11);
24255 insn = emit_move_insn (frame_reg_rtx,
24256 gen_rtx_MEM (Pmode, sp_reg_rtx));
24257 frame_off = 0;
24259 else if (ALWAYS_RESTORE_ALTIVEC_BEFORE_POP
24260 && DEFAULT_ABI == ABI_V4)
24261 /* frame_reg_rtx has been set up by the altivec restore. */
24263 else
24265 insn = emit_move_insn (sp_reg_rtx, frame_reg_rtx);
24266 frame_reg_rtx = sp_reg_rtx;
24269 /* If we have a frame pointer, we can restore the old stack pointer
24270 from it. */
24271 else if (frame_pointer_needed)
24273 frame_reg_rtx = sp_reg_rtx;
24274 if (DEFAULT_ABI == ABI_V4)
24275 frame_reg_rtx = gen_rtx_REG (Pmode, 11);
24276 /* Prevent reordering memory accesses against stack pointer restore. */
24277 else if (cfun->calls_alloca
24278 || offset_below_red_zone_p (-info->total_size))
24279 rs6000_emit_stack_tie (frame_reg_rtx, true);
24281 insn = emit_insn (gen_add3_insn (frame_reg_rtx, hard_frame_pointer_rtx,
24282 GEN_INT (info->total_size)));
24283 frame_off = 0;
24285 else if (info->push_p
24286 && DEFAULT_ABI != ABI_V4
24287 && !crtl->calls_eh_return)
24289 /* Prevent reordering memory accesses against stack pointer restore. */
24290 if (cfun->calls_alloca
24291 || offset_below_red_zone_p (-info->total_size))
24292 rs6000_emit_stack_tie (frame_reg_rtx, false);
24293 insn = emit_insn (gen_add3_insn (sp_reg_rtx, sp_reg_rtx,
24294 GEN_INT (info->total_size)));
24295 frame_off = 0;
24297 if (insn && frame_reg_rtx == sp_reg_rtx)
24299 if (cfa_restores)
24301 REG_NOTES (insn) = cfa_restores;
24302 cfa_restores = NULL_RTX;
24304 add_reg_note (insn, REG_CFA_DEF_CFA, sp_reg_rtx);
24305 RTX_FRAME_RELATED_P (insn) = 1;
24308 /* Restore AltiVec registers if we have not done so already. */
24309 if (!ALWAYS_RESTORE_ALTIVEC_BEFORE_POP
24310 && TARGET_ALTIVEC_ABI
24311 && info->altivec_size != 0
24312 && (DEFAULT_ABI == ABI_V4
24313 || !offset_below_red_zone_p (info->altivec_save_offset)))
24315 int i;
24317 if ((strategy & REST_INLINE_VRS) == 0)
24319 int end_save = info->altivec_save_offset + info->altivec_size;
24320 int ptr_off;
24321 rtx ptr_reg = gen_rtx_REG (Pmode, 0);
24322 int scratch_regno = ptr_regno_for_savres (SAVRES_VR);
24323 rtx scratch_reg = gen_rtx_REG (Pmode, scratch_regno);
24325 if (end_save + frame_off != 0)
24327 rtx offset = GEN_INT (end_save + frame_off);
24329 emit_insn (gen_add3_insn (ptr_reg, frame_reg_rtx, offset));
24331 else
24332 emit_move_insn (ptr_reg, frame_reg_rtx);
24334 ptr_off = -end_save;
24335 insn = rs6000_emit_savres_rtx (info, scratch_reg,
24336 info->altivec_save_offset + ptr_off,
24337 0, V4SImode, SAVRES_VR);
24338 if (REGNO (frame_reg_rtx) == REGNO (scratch_reg))
24340 /* Frame reg was clobbered by out-of-line save. Restore it
24341 from ptr_reg, and if we are calling out-of-line gpr or
24342 fpr restore set up the correct pointer and offset. */
24343 unsigned newptr_regno = 1;
24344 if (!restoring_GPRs_inline)
24346 bool lr = info->gp_save_offset + info->gp_size == 0;
24347 int sel = SAVRES_GPR | (lr ? SAVRES_LR : 0);
24348 newptr_regno = ptr_regno_for_savres (sel);
24349 end_save = info->gp_save_offset + info->gp_size;
24351 else if (!restoring_FPRs_inline)
24353 bool lr = !(strategy & REST_NOINLINE_FPRS_DOESNT_RESTORE_LR);
24354 int sel = SAVRES_FPR | (lr ? SAVRES_LR : 0);
24355 newptr_regno = ptr_regno_for_savres (sel);
24356 end_save = info->gp_save_offset + info->gp_size;
24359 if (newptr_regno != 1 && REGNO (frame_reg_rtx) != newptr_regno)
24360 frame_reg_rtx = gen_rtx_REG (Pmode, newptr_regno);
24362 if (end_save + ptr_off != 0)
24364 rtx offset = GEN_INT (end_save + ptr_off);
24366 frame_off = -end_save;
24367 emit_insn (gen_add3_insn (frame_reg_rtx, ptr_reg, offset));
24369 else
24371 frame_off = ptr_off;
24372 emit_move_insn (frame_reg_rtx, ptr_reg);
24376 else
24378 for (i = info->first_altivec_reg_save; i <= LAST_ALTIVEC_REGNO; ++i)
24379 if (info->vrsave_mask & ALTIVEC_REG_BIT (i))
24381 rtx addr, areg, mem, reg;
24383 areg = gen_rtx_REG (Pmode, 0);
24384 emit_move_insn
24385 (areg, GEN_INT (info->altivec_save_offset
24386 + frame_off
24387 + 16 * (i - info->first_altivec_reg_save)));
24389 /* AltiVec addressing mode is [reg+reg]. */
24390 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx, areg);
24391 mem = gen_frame_mem (V4SImode, addr);
24393 reg = gen_rtx_REG (V4SImode, i);
24394 emit_move_insn (reg, mem);
24398 for (i = info->first_altivec_reg_save; i <= LAST_ALTIVEC_REGNO; ++i)
24399 if (((strategy & REST_INLINE_VRS) == 0
24400 || (info->vrsave_mask & ALTIVEC_REG_BIT (i)) != 0)
24401 && (DEFAULT_ABI == ABI_V4 || flag_shrink_wrap))
24403 rtx reg = gen_rtx_REG (V4SImode, i);
24404 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg, cfa_restores);
24408 /* Restore VRSAVE if we have not done so already. */
24409 if (!ALWAYS_RESTORE_ALTIVEC_BEFORE_POP
24410 && TARGET_ALTIVEC
24411 && TARGET_ALTIVEC_VRSAVE
24412 && info->vrsave_mask != 0
24413 && (DEFAULT_ABI == ABI_V4
24414 || !offset_below_red_zone_p (info->vrsave_save_offset)))
24416 rtx reg;
24418 reg = gen_rtx_REG (SImode, 12);
24419 emit_insn (gen_frame_load (reg, frame_reg_rtx,
24420 info->vrsave_save_offset + frame_off));
24422 emit_insn (generate_set_vrsave (reg, info, 1));
24425 /* If we exit by an out-of-line restore function on ABI_V4 then that
24426 function will deallocate the stack, so we don't need to worry
24427 about the unwinder restoring cr from an invalid stack frame
24428 location. */
24429 exit_func = (!restoring_FPRs_inline
24430 || (!restoring_GPRs_inline
24431 && info->first_fp_reg_save == 64));
24433 /* In the ELFv2 ABI we need to restore all call-saved CR fields from
24434 *separate* slots if the routine calls __builtin_eh_return, so
24435 that they can be independently restored by the unwinder. */
24436 if (DEFAULT_ABI == ABI_ELFv2 && crtl->calls_eh_return)
24438 int i, cr_off = info->ehcr_offset;
24440 for (i = 0; i < 8; i++)
24441 if (!call_used_regs[CR0_REGNO + i])
24443 rtx reg = gen_rtx_REG (SImode, 0);
24444 emit_insn (gen_frame_load (reg, frame_reg_rtx,
24445 cr_off + frame_off));
24447 insn = emit_insn (gen_movsi_to_cr_one
24448 (gen_rtx_REG (CCmode, CR0_REGNO + i), reg));
24450 if (!exit_func && flag_shrink_wrap)
24452 add_reg_note (insn, REG_CFA_RESTORE,
24453 gen_rtx_REG (SImode, CR0_REGNO + i));
24455 RTX_FRAME_RELATED_P (insn) = 1;
24458 cr_off += reg_size;
24462 /* Get the old lr if we saved it. If we are restoring registers
24463 out-of-line, then the out-of-line routines can do this for us. */
24464 if (restore_lr && restoring_GPRs_inline)
24465 load_lr_save (0, frame_reg_rtx, info->lr_save_offset + frame_off);
24467 /* Get the old cr if we saved it. */
24468 if (info->cr_save_p)
24470 unsigned cr_save_regno = 12;
24472 if (!restoring_GPRs_inline)
24474 /* Ensure we don't use the register used by the out-of-line
24475 gpr register restore below. */
24476 bool lr = info->gp_save_offset + info->gp_size == 0;
24477 int sel = SAVRES_GPR | (lr ? SAVRES_LR : 0);
24478 int gpr_ptr_regno = ptr_regno_for_savres (sel);
24480 if (gpr_ptr_regno == 12)
24481 cr_save_regno = 11;
24482 gcc_checking_assert (REGNO (frame_reg_rtx) != cr_save_regno);
24484 else if (REGNO (frame_reg_rtx) == 12)
24485 cr_save_regno = 11;
24487 cr_save_reg = load_cr_save (cr_save_regno, frame_reg_rtx,
24488 info->cr_save_offset + frame_off,
24489 exit_func);
24492 /* Set LR here to try to overlap restores below. */
24493 if (restore_lr && restoring_GPRs_inline)
24494 restore_saved_lr (0, exit_func);
24496 /* Load exception handler data registers, if needed. */
24497 if (crtl->calls_eh_return)
24499 unsigned int i, regno;
24501 if (TARGET_AIX)
24503 rtx reg = gen_rtx_REG (reg_mode, 2);
24504 emit_insn (gen_frame_load (reg, frame_reg_rtx,
24505 frame_off + RS6000_TOC_SAVE_SLOT));
24508 for (i = 0; ; ++i)
24510 rtx mem;
24512 regno = EH_RETURN_DATA_REGNO (i);
24513 if (regno == INVALID_REGNUM)
24514 break;
24516 /* Note: possible use of r0 here to address SPE regs. */
24517 mem = gen_frame_mem_offset (reg_mode, frame_reg_rtx,
24518 info->ehrd_offset + frame_off
24519 + reg_size * (int) i);
24521 emit_move_insn (gen_rtx_REG (reg_mode, regno), mem);
24525 /* Restore GPRs. This is done as a PARALLEL if we are using
24526 the load-multiple instructions. */
24527 if (TARGET_SPE_ABI
24528 && info->spe_64bit_regs_used
24529 && info->first_gp_reg_save != 32)
24531 /* Determine whether we can address all of the registers that need
24532 to be saved with an offset from frame_reg_rtx that fits in
24533 the small const field for SPE memory instructions. */
24534 int spe_regs_addressable
24535 = (SPE_CONST_OFFSET_OK (info->spe_gp_save_offset + frame_off
24536 + reg_size * (32 - info->first_gp_reg_save - 1))
24537 && restoring_GPRs_inline);
24539 if (!spe_regs_addressable)
24541 int ool_adjust = 0;
24542 rtx old_frame_reg_rtx = frame_reg_rtx;
24543 /* Make r11 point to the start of the SPE save area. We worried about
24544 not clobbering it when we were saving registers in the prologue.
24545 There's no need to worry here because the static chain is passed
24546 anew to every function. */
24548 if (!restoring_GPRs_inline)
24549 ool_adjust = 8 * (info->first_gp_reg_save - FIRST_SAVED_GP_REGNO);
24550 frame_reg_rtx = gen_rtx_REG (Pmode, 11);
24551 emit_insn (gen_addsi3 (frame_reg_rtx, old_frame_reg_rtx,
24552 GEN_INT (info->spe_gp_save_offset
24553 + frame_off
24554 - ool_adjust)));
24555 /* Keep the invariant that frame_reg_rtx + frame_off points
24556 at the top of the stack frame. */
24557 frame_off = -info->spe_gp_save_offset + ool_adjust;
24560 if (restoring_GPRs_inline)
24562 HOST_WIDE_INT spe_offset = info->spe_gp_save_offset + frame_off;
24564 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
24565 if (rs6000_reg_live_or_pic_offset_p (info->first_gp_reg_save + i))
24567 rtx offset, addr, mem, reg;
24569 /* We're doing all this to ensure that the immediate offset
24570 fits into the immediate field of 'evldd'. */
24571 gcc_assert (SPE_CONST_OFFSET_OK (spe_offset + reg_size * i));
24573 offset = GEN_INT (spe_offset + reg_size * i);
24574 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx, offset);
24575 mem = gen_rtx_MEM (V2SImode, addr);
24576 reg = gen_rtx_REG (reg_mode, info->first_gp_reg_save + i);
24578 emit_move_insn (reg, mem);
24581 else
24582 rs6000_emit_savres_rtx (info, frame_reg_rtx,
24583 info->spe_gp_save_offset + frame_off,
24584 info->lr_save_offset + frame_off,
24585 reg_mode,
24586 SAVRES_GPR | SAVRES_LR);
24588 else if (!restoring_GPRs_inline)
24590 /* We are jumping to an out-of-line function. */
24591 rtx ptr_reg;
24592 int end_save = info->gp_save_offset + info->gp_size;
24593 bool can_use_exit = end_save == 0;
24594 int sel = SAVRES_GPR | (can_use_exit ? SAVRES_LR : 0);
24595 int ptr_off;
24597 /* Emit stack reset code if we need it. */
24598 ptr_regno = ptr_regno_for_savres (sel);
24599 ptr_reg = gen_rtx_REG (Pmode, ptr_regno);
24600 if (can_use_exit)
24601 rs6000_emit_stack_reset (info, frame_reg_rtx, frame_off, ptr_regno);
24602 else if (end_save + frame_off != 0)
24603 emit_insn (gen_add3_insn (ptr_reg, frame_reg_rtx,
24604 GEN_INT (end_save + frame_off)));
24605 else if (REGNO (frame_reg_rtx) != ptr_regno)
24606 emit_move_insn (ptr_reg, frame_reg_rtx);
24607 if (REGNO (frame_reg_rtx) == ptr_regno)
24608 frame_off = -end_save;
24610 if (can_use_exit && info->cr_save_p)
24611 restore_saved_cr (cr_save_reg, using_mtcr_multiple, true);
24613 ptr_off = -end_save;
24614 rs6000_emit_savres_rtx (info, ptr_reg,
24615 info->gp_save_offset + ptr_off,
24616 info->lr_save_offset + ptr_off,
24617 reg_mode, sel);
24619 else if (using_load_multiple)
24621 rtvec p;
24622 p = rtvec_alloc (32 - info->first_gp_reg_save);
24623 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
24624 RTVEC_ELT (p, i)
24625 = gen_frame_load (gen_rtx_REG (reg_mode, info->first_gp_reg_save + i),
24626 frame_reg_rtx,
24627 info->gp_save_offset + frame_off + reg_size * i);
24628 emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
24630 else
24632 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
24633 if (rs6000_reg_live_or_pic_offset_p (info->first_gp_reg_save + i))
24634 emit_insn (gen_frame_load
24635 (gen_rtx_REG (reg_mode, info->first_gp_reg_save + i),
24636 frame_reg_rtx,
24637 info->gp_save_offset + frame_off + reg_size * i));
24640 if (DEFAULT_ABI == ABI_V4 || flag_shrink_wrap)
24642 /* If the frame pointer was used then we can't delay emitting
24643 a REG_CFA_DEF_CFA note. This must happen on the insn that
24644 restores the frame pointer, r31. We may have already emitted
24645 a REG_CFA_DEF_CFA note, but that's OK; A duplicate is
24646 discarded by dwarf2cfi.c/dwarf2out.c, and in any case would
24647 be harmless if emitted. */
24648 if (frame_pointer_needed)
24650 insn = get_last_insn ();
24651 add_reg_note (insn, REG_CFA_DEF_CFA,
24652 plus_constant (Pmode, frame_reg_rtx, frame_off));
24653 RTX_FRAME_RELATED_P (insn) = 1;
24656 /* Set up cfa_restores. We always need these when
24657 shrink-wrapping. If not shrink-wrapping then we only need
24658 the cfa_restore when the stack location is no longer valid.
24659 The cfa_restores must be emitted on or before the insn that
24660 invalidates the stack, and of course must not be emitted
24661 before the insn that actually does the restore. The latter
24662 is why it is a bad idea to emit the cfa_restores as a group
24663 on the last instruction here that actually does a restore:
24664 That insn may be reordered with respect to others doing
24665 restores. */
24666 if (flag_shrink_wrap
24667 && !restoring_GPRs_inline
24668 && info->first_fp_reg_save == 64)
24669 cfa_restores = add_crlr_cfa_restore (info, cfa_restores);
24671 for (i = info->first_gp_reg_save; i < 32; i++)
24672 if (!restoring_GPRs_inline
24673 || using_load_multiple
24674 || rs6000_reg_live_or_pic_offset_p (i))
24676 rtx reg = gen_rtx_REG (reg_mode, i);
24678 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg, cfa_restores);
24682 if (!restoring_GPRs_inline
24683 && info->first_fp_reg_save == 64)
24685 /* We are jumping to an out-of-line function. */
24686 if (cfa_restores)
24687 emit_cfa_restores (cfa_restores);
24688 return;
24691 if (restore_lr && !restoring_GPRs_inline)
24693 load_lr_save (0, frame_reg_rtx, info->lr_save_offset + frame_off);
24694 restore_saved_lr (0, exit_func);
24697 /* Restore fpr's if we need to do it without calling a function. */
24698 if (restoring_FPRs_inline)
24699 for (i = 0; i < 64 - info->first_fp_reg_save; i++)
24700 if (save_reg_p (info->first_fp_reg_save + i))
24702 rtx reg = gen_rtx_REG ((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT
24703 ? DFmode : SFmode),
24704 info->first_fp_reg_save + i);
24705 emit_insn (gen_frame_load (reg, frame_reg_rtx,
24706 info->fp_save_offset + frame_off + 8 * i));
24707 if (DEFAULT_ABI == ABI_V4 || flag_shrink_wrap)
24708 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg, cfa_restores);
24711 /* If we saved cr, restore it here. Just those that were used. */
24712 if (info->cr_save_p)
24713 restore_saved_cr (cr_save_reg, using_mtcr_multiple, exit_func);
24715 /* If this is V.4, unwind the stack pointer after all of the loads
24716 have been done, or set up r11 if we are restoring fp out of line. */
24717 ptr_regno = 1;
24718 if (!restoring_FPRs_inline)
24720 bool lr = (strategy & REST_NOINLINE_FPRS_DOESNT_RESTORE_LR) == 0;
24721 int sel = SAVRES_FPR | (lr ? SAVRES_LR : 0);
24722 ptr_regno = ptr_regno_for_savres (sel);
24725 insn = rs6000_emit_stack_reset (info, frame_reg_rtx, frame_off, ptr_regno);
24726 if (REGNO (frame_reg_rtx) == ptr_regno)
24727 frame_off = 0;
24729 if (insn && restoring_FPRs_inline)
24731 if (cfa_restores)
24733 REG_NOTES (insn) = cfa_restores;
24734 cfa_restores = NULL_RTX;
24736 add_reg_note (insn, REG_CFA_DEF_CFA, sp_reg_rtx);
24737 RTX_FRAME_RELATED_P (insn) = 1;
24740 if (crtl->calls_eh_return)
24742 rtx sa = EH_RETURN_STACKADJ_RTX;
24743 emit_insn (gen_add3_insn (sp_reg_rtx, sp_reg_rtx, sa));
24746 if (!sibcall)
24748 rtvec p;
24749 bool lr = (strategy & REST_NOINLINE_FPRS_DOESNT_RESTORE_LR) == 0;
24750 if (! restoring_FPRs_inline)
24752 p = rtvec_alloc (4 + 64 - info->first_fp_reg_save);
24753 RTVEC_ELT (p, 0) = ret_rtx;
24755 else
24757 if (cfa_restores)
24759 /* We can't hang the cfa_restores off a simple return,
24760 since the shrink-wrap code sometimes uses an existing
24761 return. This means there might be a path from
24762 pre-prologue code to this return, and dwarf2cfi code
24763 wants the eh_frame unwinder state to be the same on
24764 all paths to any point. So we need to emit the
24765 cfa_restores before the return. For -m64 we really
24766 don't need epilogue cfa_restores at all, except for
24767 this irritating dwarf2cfi with shrink-wrap
24768 requirement; The stack red-zone means eh_frame info
24769 from the prologue telling the unwinder to restore
24770 from the stack is perfectly good right to the end of
24771 the function. */
24772 emit_insn (gen_blockage ());
24773 emit_cfa_restores (cfa_restores);
24774 cfa_restores = NULL_RTX;
24776 p = rtvec_alloc (2);
24777 RTVEC_ELT (p, 0) = simple_return_rtx;
24780 RTVEC_ELT (p, 1) = ((restoring_FPRs_inline || !lr)
24781 ? gen_rtx_USE (VOIDmode,
24782 gen_rtx_REG (Pmode, LR_REGNO))
24783 : gen_rtx_CLOBBER (VOIDmode,
24784 gen_rtx_REG (Pmode, LR_REGNO)));
24786 /* If we have to restore more than two FP registers, branch to the
24787 restore function. It will return to our caller. */
24788 if (! restoring_FPRs_inline)
24790 int i;
24791 int reg;
24792 rtx sym;
24794 if (flag_shrink_wrap)
24795 cfa_restores = add_crlr_cfa_restore (info, cfa_restores);
24797 sym = rs6000_savres_routine_sym (info,
24798 SAVRES_FPR | (lr ? SAVRES_LR : 0));
24799 RTVEC_ELT (p, 2) = gen_rtx_USE (VOIDmode, sym);
24800 reg = (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)? 1 : 11;
24801 RTVEC_ELT (p, 3) = gen_rtx_USE (VOIDmode, gen_rtx_REG (Pmode, reg));
24803 for (i = 0; i < 64 - info->first_fp_reg_save; i++)
24805 rtx reg = gen_rtx_REG (DFmode, info->first_fp_reg_save + i);
24807 RTVEC_ELT (p, i + 4)
24808 = gen_frame_load (reg, sp_reg_rtx, info->fp_save_offset + 8 * i);
24809 if (flag_shrink_wrap)
24810 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg,
24811 cfa_restores);
24815 emit_jump_insn (gen_rtx_PARALLEL (VOIDmode, p));
24818 if (cfa_restores)
24820 if (sibcall)
24821 /* Ensure the cfa_restores are hung off an insn that won't
24822 be reordered above other restores. */
24823 emit_insn (gen_blockage ());
24825 emit_cfa_restores (cfa_restores);
24829 /* Write function epilogue. */
24831 static void
24832 rs6000_output_function_epilogue (FILE *file,
24833 HOST_WIDE_INT size ATTRIBUTE_UNUSED)
24835 #if TARGET_MACHO
24836 macho_branch_islands ();
24837 /* Mach-O doesn't support labels at the end of objects, so if
24838 it looks like we might want one, insert a NOP. */
24840 rtx insn = get_last_insn ();
24841 rtx deleted_debug_label = NULL_RTX;
24842 while (insn
24843 && NOTE_P (insn)
24844 && NOTE_KIND (insn) != NOTE_INSN_DELETED_LABEL)
24846 /* Don't insert a nop for NOTE_INSN_DELETED_DEBUG_LABEL
24847 notes only, instead set their CODE_LABEL_NUMBER to -1,
24848 otherwise there would be code generation differences
24849 in between -g and -g0. */
24850 if (NOTE_P (insn) && NOTE_KIND (insn) == NOTE_INSN_DELETED_DEBUG_LABEL)
24851 deleted_debug_label = insn;
24852 insn = PREV_INSN (insn);
24854 if (insn
24855 && (LABEL_P (insn)
24856 || (NOTE_P (insn)
24857 && NOTE_KIND (insn) == NOTE_INSN_DELETED_LABEL)))
24858 fputs ("\tnop\n", file);
24859 else if (deleted_debug_label)
24860 for (insn = deleted_debug_label; insn; insn = NEXT_INSN (insn))
24861 if (NOTE_KIND (insn) == NOTE_INSN_DELETED_DEBUG_LABEL)
24862 CODE_LABEL_NUMBER (insn) = -1;
24864 #endif
24866 /* Output a traceback table here. See /usr/include/sys/debug.h for info
24867 on its format.
24869 We don't output a traceback table if -finhibit-size-directive was
24870 used. The documentation for -finhibit-size-directive reads
24871 ``don't output a @code{.size} assembler directive, or anything
24872 else that would cause trouble if the function is split in the
24873 middle, and the two halves are placed at locations far apart in
24874 memory.'' The traceback table has this property, since it
24875 includes the offset from the start of the function to the
24876 traceback table itself.
24878 System V.4 Powerpc's (and the embedded ABI derived from it) use a
24879 different traceback table. */
24880 if ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
24881 && ! flag_inhibit_size_directive
24882 && rs6000_traceback != traceback_none && !cfun->is_thunk)
24884 const char *fname = NULL;
24885 const char *language_string = lang_hooks.name;
24886 int fixed_parms = 0, float_parms = 0, parm_info = 0;
24887 int i;
24888 int optional_tbtab;
24889 rs6000_stack_t *info = rs6000_stack_info ();
24891 if (rs6000_traceback == traceback_full)
24892 optional_tbtab = 1;
24893 else if (rs6000_traceback == traceback_part)
24894 optional_tbtab = 0;
24895 else
24896 optional_tbtab = !optimize_size && !TARGET_ELF;
24898 if (optional_tbtab)
24900 fname = XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0);
24901 while (*fname == '.') /* V.4 encodes . in the name */
24902 fname++;
24904 /* Need label immediately before tbtab, so we can compute
24905 its offset from the function start. */
24906 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "LT");
24907 ASM_OUTPUT_LABEL (file, fname);
24910 /* The .tbtab pseudo-op can only be used for the first eight
24911 expressions, since it can't handle the possibly variable
24912 length fields that follow. However, if you omit the optional
24913 fields, the assembler outputs zeros for all optional fields
24914 anyways, giving each variable length field is minimum length
24915 (as defined in sys/debug.h). Thus we can not use the .tbtab
24916 pseudo-op at all. */
24918 /* An all-zero word flags the start of the tbtab, for debuggers
24919 that have to find it by searching forward from the entry
24920 point or from the current pc. */
24921 fputs ("\t.long 0\n", file);
24923 /* Tbtab format type. Use format type 0. */
24924 fputs ("\t.byte 0,", file);
24926 /* Language type. Unfortunately, there does not seem to be any
24927 official way to discover the language being compiled, so we
24928 use language_string.
24929 C is 0. Fortran is 1. Pascal is 2. Ada is 3. C++ is 9.
24930 Java is 13. Objective-C is 14. Objective-C++ isn't assigned
24931 a number, so for now use 9. LTO and Go aren't assigned numbers
24932 either, so for now use 0. */
24933 if (! strcmp (language_string, "GNU C")
24934 || ! strcmp (language_string, "GNU GIMPLE")
24935 || ! strcmp (language_string, "GNU Go"))
24936 i = 0;
24937 else if (! strcmp (language_string, "GNU F77")
24938 || ! strcmp (language_string, "GNU Fortran"))
24939 i = 1;
24940 else if (! strcmp (language_string, "GNU Pascal"))
24941 i = 2;
24942 else if (! strcmp (language_string, "GNU Ada"))
24943 i = 3;
24944 else if (! strcmp (language_string, "GNU C++")
24945 || ! strcmp (language_string, "GNU Objective-C++"))
24946 i = 9;
24947 else if (! strcmp (language_string, "GNU Java"))
24948 i = 13;
24949 else if (! strcmp (language_string, "GNU Objective-C"))
24950 i = 14;
24951 else
24952 gcc_unreachable ();
24953 fprintf (file, "%d,", i);
24955 /* 8 single bit fields: global linkage (not set for C extern linkage,
24956 apparently a PL/I convention?), out-of-line epilogue/prologue, offset
24957 from start of procedure stored in tbtab, internal function, function
24958 has controlled storage, function has no toc, function uses fp,
24959 function logs/aborts fp operations. */
24960 /* Assume that fp operations are used if any fp reg must be saved. */
24961 fprintf (file, "%d,",
24962 (optional_tbtab << 5) | ((info->first_fp_reg_save != 64) << 1));
24964 /* 6 bitfields: function is interrupt handler, name present in
24965 proc table, function calls alloca, on condition directives
24966 (controls stack walks, 3 bits), saves condition reg, saves
24967 link reg. */
24968 /* The `function calls alloca' bit seems to be set whenever reg 31 is
24969 set up as a frame pointer, even when there is no alloca call. */
24970 fprintf (file, "%d,",
24971 ((optional_tbtab << 6)
24972 | ((optional_tbtab & frame_pointer_needed) << 5)
24973 | (info->cr_save_p << 1)
24974 | (info->lr_save_p)));
24976 /* 3 bitfields: saves backchain, fixup code, number of fpr saved
24977 (6 bits). */
24978 fprintf (file, "%d,",
24979 (info->push_p << 7) | (64 - info->first_fp_reg_save));
24981 /* 2 bitfields: spare bits (2 bits), number of gpr saved (6 bits). */
24982 fprintf (file, "%d,", (32 - first_reg_to_save ()));
24984 if (optional_tbtab)
24986 /* Compute the parameter info from the function decl argument
24987 list. */
24988 tree decl;
24989 int next_parm_info_bit = 31;
24991 for (decl = DECL_ARGUMENTS (current_function_decl);
24992 decl; decl = DECL_CHAIN (decl))
24994 rtx parameter = DECL_INCOMING_RTL (decl);
24995 enum machine_mode mode = GET_MODE (parameter);
24997 if (GET_CODE (parameter) == REG)
24999 if (SCALAR_FLOAT_MODE_P (mode))
25001 int bits;
25003 float_parms++;
25005 switch (mode)
25007 case SFmode:
25008 case SDmode:
25009 bits = 0x2;
25010 break;
25012 case DFmode:
25013 case DDmode:
25014 case TFmode:
25015 case TDmode:
25016 bits = 0x3;
25017 break;
25019 default:
25020 gcc_unreachable ();
25023 /* If only one bit will fit, don't or in this entry. */
25024 if (next_parm_info_bit > 0)
25025 parm_info |= (bits << (next_parm_info_bit - 1));
25026 next_parm_info_bit -= 2;
25028 else
25030 fixed_parms += ((GET_MODE_SIZE (mode)
25031 + (UNITS_PER_WORD - 1))
25032 / UNITS_PER_WORD);
25033 next_parm_info_bit -= 1;
25039 /* Number of fixed point parameters. */
25040 /* This is actually the number of words of fixed point parameters; thus
25041 an 8 byte struct counts as 2; and thus the maximum value is 8. */
25042 fprintf (file, "%d,", fixed_parms);
25044 /* 2 bitfields: number of floating point parameters (7 bits), parameters
25045 all on stack. */
25046 /* This is actually the number of fp registers that hold parameters;
25047 and thus the maximum value is 13. */
25048 /* Set parameters on stack bit if parameters are not in their original
25049 registers, regardless of whether they are on the stack? Xlc
25050 seems to set the bit when not optimizing. */
25051 fprintf (file, "%d\n", ((float_parms << 1) | (! optimize)));
25053 if (! optional_tbtab)
25054 return;
25056 /* Optional fields follow. Some are variable length. */
25058 /* Parameter types, left adjusted bit fields: 0 fixed, 10 single float,
25059 11 double float. */
25060 /* There is an entry for each parameter in a register, in the order that
25061 they occur in the parameter list. Any intervening arguments on the
25062 stack are ignored. If the list overflows a long (max possible length
25063 34 bits) then completely leave off all elements that don't fit. */
25064 /* Only emit this long if there was at least one parameter. */
25065 if (fixed_parms || float_parms)
25066 fprintf (file, "\t.long %d\n", parm_info);
25068 /* Offset from start of code to tb table. */
25069 fputs ("\t.long ", file);
25070 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "LT");
25071 RS6000_OUTPUT_BASENAME (file, fname);
25072 putc ('-', file);
25073 rs6000_output_function_entry (file, fname);
25074 putc ('\n', file);
25076 /* Interrupt handler mask. */
25077 /* Omit this long, since we never set the interrupt handler bit
25078 above. */
25080 /* Number of CTL (controlled storage) anchors. */
25081 /* Omit this long, since the has_ctl bit is never set above. */
25083 /* Displacement into stack of each CTL anchor. */
25084 /* Omit this list of longs, because there are no CTL anchors. */
25086 /* Length of function name. */
25087 if (*fname == '*')
25088 ++fname;
25089 fprintf (file, "\t.short %d\n", (int) strlen (fname));
25091 /* Function name. */
25092 assemble_string (fname, strlen (fname));
25094 /* Register for alloca automatic storage; this is always reg 31.
25095 Only emit this if the alloca bit was set above. */
25096 if (frame_pointer_needed)
25097 fputs ("\t.byte 31\n", file);
25099 fputs ("\t.align 2\n", file);
25103 /* A C compound statement that outputs the assembler code for a thunk
25104 function, used to implement C++ virtual function calls with
25105 multiple inheritance. The thunk acts as a wrapper around a virtual
25106 function, adjusting the implicit object parameter before handing
25107 control off to the real function.
25109 First, emit code to add the integer DELTA to the location that
25110 contains the incoming first argument. Assume that this argument
25111 contains a pointer, and is the one used to pass the `this' pointer
25112 in C++. This is the incoming argument *before* the function
25113 prologue, e.g. `%o0' on a sparc. The addition must preserve the
25114 values of all other incoming arguments.
25116 After the addition, emit code to jump to FUNCTION, which is a
25117 `FUNCTION_DECL'. This is a direct pure jump, not a call, and does
25118 not touch the return address. Hence returning from FUNCTION will
25119 return to whoever called the current `thunk'.
25121 The effect must be as if FUNCTION had been called directly with the
25122 adjusted first argument. This macro is responsible for emitting
25123 all of the code for a thunk function; output_function_prologue()
25124 and output_function_epilogue() are not invoked.
25126 The THUNK_FNDECL is redundant. (DELTA and FUNCTION have already
25127 been extracted from it.) It might possibly be useful on some
25128 targets, but probably not.
25130 If you do not define this macro, the target-independent code in the
25131 C++ frontend will generate a less efficient heavyweight thunk that
25132 calls FUNCTION instead of jumping to it. The generic approach does
25133 not support varargs. */
25135 static void
25136 rs6000_output_mi_thunk (FILE *file, tree thunk_fndecl ATTRIBUTE_UNUSED,
25137 HOST_WIDE_INT delta, HOST_WIDE_INT vcall_offset,
25138 tree function)
25140 rtx this_rtx, insn, funexp;
25142 reload_completed = 1;
25143 epilogue_completed = 1;
25145 /* Mark the end of the (empty) prologue. */
25146 emit_note (NOTE_INSN_PROLOGUE_END);
25148 /* Find the "this" pointer. If the function returns a structure,
25149 the structure return pointer is in r3. */
25150 if (aggregate_value_p (TREE_TYPE (TREE_TYPE (function)), function))
25151 this_rtx = gen_rtx_REG (Pmode, 4);
25152 else
25153 this_rtx = gen_rtx_REG (Pmode, 3);
25155 /* Apply the constant offset, if required. */
25156 if (delta)
25157 emit_insn (gen_add3_insn (this_rtx, this_rtx, GEN_INT (delta)));
25159 /* Apply the offset from the vtable, if required. */
25160 if (vcall_offset)
25162 rtx vcall_offset_rtx = GEN_INT (vcall_offset);
25163 rtx tmp = gen_rtx_REG (Pmode, 12);
25165 emit_move_insn (tmp, gen_rtx_MEM (Pmode, this_rtx));
25166 if (((unsigned HOST_WIDE_INT) vcall_offset) + 0x8000 >= 0x10000)
25168 emit_insn (gen_add3_insn (tmp, tmp, vcall_offset_rtx));
25169 emit_move_insn (tmp, gen_rtx_MEM (Pmode, tmp));
25171 else
25173 rtx loc = gen_rtx_PLUS (Pmode, tmp, vcall_offset_rtx);
25175 emit_move_insn (tmp, gen_rtx_MEM (Pmode, loc));
25177 emit_insn (gen_add3_insn (this_rtx, this_rtx, tmp));
25180 /* Generate a tail call to the target function. */
25181 if (!TREE_USED (function))
25183 assemble_external (function);
25184 TREE_USED (function) = 1;
25186 funexp = XEXP (DECL_RTL (function), 0);
25187 funexp = gen_rtx_MEM (FUNCTION_MODE, funexp);
25189 #if TARGET_MACHO
25190 if (MACHOPIC_INDIRECT)
25191 funexp = machopic_indirect_call_target (funexp);
25192 #endif
25194 /* gen_sibcall expects reload to convert scratch pseudo to LR so we must
25195 generate sibcall RTL explicitly. */
25196 insn = emit_call_insn (
25197 gen_rtx_PARALLEL (VOIDmode,
25198 gen_rtvec (4,
25199 gen_rtx_CALL (VOIDmode,
25200 funexp, const0_rtx),
25201 gen_rtx_USE (VOIDmode, const0_rtx),
25202 gen_rtx_USE (VOIDmode,
25203 gen_rtx_REG (SImode,
25204 LR_REGNO)),
25205 simple_return_rtx)));
25206 SIBLING_CALL_P (insn) = 1;
25207 emit_barrier ();
25209 /* Ensure we have a global entry point for the thunk. ??? We could
25210 avoid that if the target routine doesn't need a global entry point,
25211 but we do not know whether this is the case at this point. */
25212 if (DEFAULT_ABI == ABI_ELFv2)
25213 cfun->machine->r2_setup_needed = true;
25215 /* Run just enough of rest_of_compilation to get the insns emitted.
25216 There's not really enough bulk here to make other passes such as
25217 instruction scheduling worth while. Note that use_thunk calls
25218 assemble_start_function and assemble_end_function. */
25219 insn = get_insns ();
25220 shorten_branches (insn);
25221 final_start_function (insn, file, 1);
25222 final (insn, file, 1);
25223 final_end_function ();
25225 reload_completed = 0;
25226 epilogue_completed = 0;
25229 /* A quick summary of the various types of 'constant-pool tables'
25230 under PowerPC:
25232 Target Flags Name One table per
25233 AIX (none) AIX TOC object file
25234 AIX -mfull-toc AIX TOC object file
25235 AIX -mminimal-toc AIX minimal TOC translation unit
25236 SVR4/EABI (none) SVR4 SDATA object file
25237 SVR4/EABI -fpic SVR4 pic object file
25238 SVR4/EABI -fPIC SVR4 PIC translation unit
25239 SVR4/EABI -mrelocatable EABI TOC function
25240 SVR4/EABI -maix AIX TOC object file
25241 SVR4/EABI -maix -mminimal-toc
25242 AIX minimal TOC translation unit
25244 Name Reg. Set by entries contains:
25245 made by addrs? fp? sum?
25247 AIX TOC 2 crt0 as Y option option
25248 AIX minimal TOC 30 prolog gcc Y Y option
25249 SVR4 SDATA 13 crt0 gcc N Y N
25250 SVR4 pic 30 prolog ld Y not yet N
25251 SVR4 PIC 30 prolog gcc Y option option
25252 EABI TOC 30 prolog gcc Y option option
25256 /* Hash functions for the hash table. */
25258 static unsigned
25259 rs6000_hash_constant (rtx k)
25261 enum rtx_code code = GET_CODE (k);
25262 enum machine_mode mode = GET_MODE (k);
25263 unsigned result = (code << 3) ^ mode;
25264 const char *format;
25265 int flen, fidx;
25267 format = GET_RTX_FORMAT (code);
25268 flen = strlen (format);
25269 fidx = 0;
25271 switch (code)
25273 case LABEL_REF:
25274 return result * 1231 + (unsigned) INSN_UID (XEXP (k, 0));
25276 case CONST_WIDE_INT:
25278 int i;
25279 flen = CONST_WIDE_INT_NUNITS (k);
25280 for (i = 0; i < flen; i++)
25281 result = result * 613 + CONST_WIDE_INT_ELT (k, i);
25282 return result;
25285 case CONST_DOUBLE:
25286 if (mode != VOIDmode)
25287 return real_hash (CONST_DOUBLE_REAL_VALUE (k)) * result;
25288 flen = 2;
25289 break;
25291 case CODE_LABEL:
25292 fidx = 3;
25293 break;
25295 default:
25296 break;
25299 for (; fidx < flen; fidx++)
25300 switch (format[fidx])
25302 case 's':
25304 unsigned i, len;
25305 const char *str = XSTR (k, fidx);
25306 len = strlen (str);
25307 result = result * 613 + len;
25308 for (i = 0; i < len; i++)
25309 result = result * 613 + (unsigned) str[i];
25310 break;
25312 case 'u':
25313 case 'e':
25314 result = result * 1231 + rs6000_hash_constant (XEXP (k, fidx));
25315 break;
25316 case 'i':
25317 case 'n':
25318 result = result * 613 + (unsigned) XINT (k, fidx);
25319 break;
25320 case 'w':
25321 if (sizeof (unsigned) >= sizeof (HOST_WIDE_INT))
25322 result = result * 613 + (unsigned) XWINT (k, fidx);
25323 else
25325 size_t i;
25326 for (i = 0; i < sizeof (HOST_WIDE_INT) / sizeof (unsigned); i++)
25327 result = result * 613 + (unsigned) (XWINT (k, fidx)
25328 >> CHAR_BIT * i);
25330 break;
25331 case '0':
25332 break;
25333 default:
25334 gcc_unreachable ();
25337 return result;
25340 static unsigned
25341 toc_hash_function (const void *hash_entry)
25343 const struct toc_hash_struct *thc =
25344 (const struct toc_hash_struct *) hash_entry;
25345 return rs6000_hash_constant (thc->key) ^ thc->key_mode;
25348 /* Compare H1 and H2 for equivalence. */
25350 static int
25351 toc_hash_eq (const void *h1, const void *h2)
25353 rtx r1 = ((const struct toc_hash_struct *) h1)->key;
25354 rtx r2 = ((const struct toc_hash_struct *) h2)->key;
25356 if (((const struct toc_hash_struct *) h1)->key_mode
25357 != ((const struct toc_hash_struct *) h2)->key_mode)
25358 return 0;
25360 return rtx_equal_p (r1, r2);
25363 /* These are the names given by the C++ front-end to vtables, and
25364 vtable-like objects. Ideally, this logic should not be here;
25365 instead, there should be some programmatic way of inquiring as
25366 to whether or not an object is a vtable. */
25368 #define VTABLE_NAME_P(NAME) \
25369 (strncmp ("_vt.", name, strlen ("_vt.")) == 0 \
25370 || strncmp ("_ZTV", name, strlen ("_ZTV")) == 0 \
25371 || strncmp ("_ZTT", name, strlen ("_ZTT")) == 0 \
25372 || strncmp ("_ZTI", name, strlen ("_ZTI")) == 0 \
25373 || strncmp ("_ZTC", name, strlen ("_ZTC")) == 0)
25375 #ifdef NO_DOLLAR_IN_LABEL
25376 /* Return a GGC-allocated character string translating dollar signs in
25377 input NAME to underscores. Used by XCOFF ASM_OUTPUT_LABELREF. */
25379 const char *
25380 rs6000_xcoff_strip_dollar (const char *name)
25382 char *strip, *p;
25383 const char *q;
25384 size_t len;
25386 q = (const char *) strchr (name, '$');
25388 if (q == 0 || q == name)
25389 return name;
25391 len = strlen (name);
25392 strip = XALLOCAVEC (char, len + 1);
25393 strcpy (strip, name);
25394 p = strip + (q - name);
25395 while (p)
25397 *p = '_';
25398 p = strchr (p + 1, '$');
25401 return ggc_alloc_string (strip, len);
25403 #endif
25405 void
25406 rs6000_output_symbol_ref (FILE *file, rtx x)
25408 /* Currently C++ toc references to vtables can be emitted before it
25409 is decided whether the vtable is public or private. If this is
25410 the case, then the linker will eventually complain that there is
25411 a reference to an unknown section. Thus, for vtables only,
25412 we emit the TOC reference to reference the symbol and not the
25413 section. */
25414 const char *name = XSTR (x, 0);
25416 if (VTABLE_NAME_P (name))
25418 RS6000_OUTPUT_BASENAME (file, name);
25420 else
25421 assemble_name (file, name);
25424 /* Output a TOC entry. We derive the entry name from what is being
25425 written. */
25427 void
25428 output_toc (FILE *file, rtx x, int labelno, enum machine_mode mode)
25430 char buf[256];
25431 const char *name = buf;
25432 rtx base = x;
25433 HOST_WIDE_INT offset = 0;
25435 gcc_assert (!TARGET_NO_TOC);
25437 /* When the linker won't eliminate them, don't output duplicate
25438 TOC entries (this happens on AIX if there is any kind of TOC,
25439 and on SVR4 under -fPIC or -mrelocatable). Don't do this for
25440 CODE_LABELs. */
25441 if (TARGET_TOC && GET_CODE (x) != LABEL_REF)
25443 struct toc_hash_struct *h;
25444 void * * found;
25446 /* Create toc_hash_table. This can't be done at TARGET_OPTION_OVERRIDE
25447 time because GGC is not initialized at that point. */
25448 if (toc_hash_table == NULL)
25449 toc_hash_table = htab_create_ggc (1021, toc_hash_function,
25450 toc_hash_eq, NULL);
25452 h = ggc_alloc_toc_hash_struct ();
25453 h->key = x;
25454 h->key_mode = mode;
25455 h->labelno = labelno;
25457 found = htab_find_slot (toc_hash_table, h, INSERT);
25458 if (*found == NULL)
25459 *found = h;
25460 else /* This is indeed a duplicate.
25461 Set this label equal to that label. */
25463 fputs ("\t.set ", file);
25464 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "LC");
25465 fprintf (file, "%d,", labelno);
25466 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "LC");
25467 fprintf (file, "%d\n", ((*(const struct toc_hash_struct **)
25468 found)->labelno));
25470 #ifdef HAVE_AS_TLS
25471 if (TARGET_XCOFF && GET_CODE (x) == SYMBOL_REF
25472 && (SYMBOL_REF_TLS_MODEL (x) == TLS_MODEL_GLOBAL_DYNAMIC
25473 || SYMBOL_REF_TLS_MODEL (x) == TLS_MODEL_LOCAL_DYNAMIC))
25475 fputs ("\t.set ", file);
25476 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "LCM");
25477 fprintf (file, "%d,", labelno);
25478 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "LCM");
25479 fprintf (file, "%d\n", ((*(const struct toc_hash_struct **)
25480 found)->labelno));
25482 #endif
25483 return;
25487 /* If we're going to put a double constant in the TOC, make sure it's
25488 aligned properly when strict alignment is on. */
25489 if ((CONST_DOUBLE_P (x) || CONST_WIDE_INT_P (x))
25490 && STRICT_ALIGNMENT
25491 && GET_MODE_BITSIZE (mode) >= 64
25492 && ! (TARGET_NO_FP_IN_TOC && ! TARGET_MINIMAL_TOC)) {
25493 ASM_OUTPUT_ALIGN (file, 3);
25496 (*targetm.asm_out.internal_label) (file, "LC", labelno);
25498 /* Handle FP constants specially. Note that if we have a minimal
25499 TOC, things we put here aren't actually in the TOC, so we can allow
25500 FP constants. */
25501 if (GET_CODE (x) == CONST_DOUBLE &&
25502 (GET_MODE (x) == TFmode || GET_MODE (x) == TDmode))
25504 REAL_VALUE_TYPE rv;
25505 long k[4];
25507 REAL_VALUE_FROM_CONST_DOUBLE (rv, x);
25508 if (DECIMAL_FLOAT_MODE_P (GET_MODE (x)))
25509 REAL_VALUE_TO_TARGET_DECIMAL128 (rv, k);
25510 else
25511 REAL_VALUE_TO_TARGET_LONG_DOUBLE (rv, k);
25513 if (TARGET_64BIT)
25515 if (TARGET_ELF || TARGET_MINIMAL_TOC)
25516 fputs (DOUBLE_INT_ASM_OP, file);
25517 else
25518 fprintf (file, "\t.tc FT_%lx_%lx_%lx_%lx[TC],",
25519 k[0] & 0xffffffff, k[1] & 0xffffffff,
25520 k[2] & 0xffffffff, k[3] & 0xffffffff);
25521 fprintf (file, "0x%lx%08lx,0x%lx%08lx\n",
25522 k[WORDS_BIG_ENDIAN ? 0 : 1] & 0xffffffff,
25523 k[WORDS_BIG_ENDIAN ? 1 : 0] & 0xffffffff,
25524 k[WORDS_BIG_ENDIAN ? 2 : 3] & 0xffffffff,
25525 k[WORDS_BIG_ENDIAN ? 3 : 2] & 0xffffffff);
25526 return;
25528 else
25530 if (TARGET_ELF || TARGET_MINIMAL_TOC)
25531 fputs ("\t.long ", file);
25532 else
25533 fprintf (file, "\t.tc FT_%lx_%lx_%lx_%lx[TC],",
25534 k[0] & 0xffffffff, k[1] & 0xffffffff,
25535 k[2] & 0xffffffff, k[3] & 0xffffffff);
25536 fprintf (file, "0x%lx,0x%lx,0x%lx,0x%lx\n",
25537 k[0] & 0xffffffff, k[1] & 0xffffffff,
25538 k[2] & 0xffffffff, k[3] & 0xffffffff);
25539 return;
25542 else if (GET_CODE (x) == CONST_DOUBLE &&
25543 (GET_MODE (x) == DFmode || GET_MODE (x) == DDmode))
25545 REAL_VALUE_TYPE rv;
25546 long k[2];
25548 REAL_VALUE_FROM_CONST_DOUBLE (rv, x);
25550 if (DECIMAL_FLOAT_MODE_P (GET_MODE (x)))
25551 REAL_VALUE_TO_TARGET_DECIMAL64 (rv, k);
25552 else
25553 REAL_VALUE_TO_TARGET_DOUBLE (rv, k);
25555 if (TARGET_64BIT)
25557 if (TARGET_ELF || TARGET_MINIMAL_TOC)
25558 fputs (DOUBLE_INT_ASM_OP, file);
25559 else
25560 fprintf (file, "\t.tc FD_%lx_%lx[TC],",
25561 k[0] & 0xffffffff, k[1] & 0xffffffff);
25562 fprintf (file, "0x%lx%08lx\n",
25563 k[WORDS_BIG_ENDIAN ? 0 : 1] & 0xffffffff,
25564 k[WORDS_BIG_ENDIAN ? 1 : 0] & 0xffffffff);
25565 return;
25567 else
25569 if (TARGET_ELF || TARGET_MINIMAL_TOC)
25570 fputs ("\t.long ", file);
25571 else
25572 fprintf (file, "\t.tc FD_%lx_%lx[TC],",
25573 k[0] & 0xffffffff, k[1] & 0xffffffff);
25574 fprintf (file, "0x%lx,0x%lx\n",
25575 k[0] & 0xffffffff, k[1] & 0xffffffff);
25576 return;
25579 else if (GET_CODE (x) == CONST_DOUBLE &&
25580 (GET_MODE (x) == SFmode || GET_MODE (x) == SDmode))
25582 REAL_VALUE_TYPE rv;
25583 long l;
25585 REAL_VALUE_FROM_CONST_DOUBLE (rv, x);
25586 if (DECIMAL_FLOAT_MODE_P (GET_MODE (x)))
25587 REAL_VALUE_TO_TARGET_DECIMAL32 (rv, l);
25588 else
25589 REAL_VALUE_TO_TARGET_SINGLE (rv, l);
25591 if (TARGET_64BIT)
25593 if (TARGET_ELF || TARGET_MINIMAL_TOC)
25594 fputs (DOUBLE_INT_ASM_OP, file);
25595 else
25596 fprintf (file, "\t.tc FS_%lx[TC],", l & 0xffffffff);
25597 if (WORDS_BIG_ENDIAN)
25598 fprintf (file, "0x%lx00000000\n", l & 0xffffffff);
25599 else
25600 fprintf (file, "0x%lx\n", l & 0xffffffff);
25601 return;
25603 else
25605 if (TARGET_ELF || TARGET_MINIMAL_TOC)
25606 fputs ("\t.long ", file);
25607 else
25608 fprintf (file, "\t.tc FS_%lx[TC],", l & 0xffffffff);
25609 fprintf (file, "0x%lx\n", l & 0xffffffff);
25610 return;
25613 else if (GET_MODE (x) == VOIDmode && GET_CODE (x) == CONST_INT)
25615 unsigned HOST_WIDE_INT low;
25616 HOST_WIDE_INT high;
25618 low = INTVAL (x) & 0xffffffff;
25619 high = (HOST_WIDE_INT) INTVAL (x) >> 32;
25621 /* TOC entries are always Pmode-sized, so when big-endian
25622 smaller integer constants in the TOC need to be padded.
25623 (This is still a win over putting the constants in
25624 a separate constant pool, because then we'd have
25625 to have both a TOC entry _and_ the actual constant.)
25627 For a 32-bit target, CONST_INT values are loaded and shifted
25628 entirely within `low' and can be stored in one TOC entry. */
25630 /* It would be easy to make this work, but it doesn't now. */
25631 gcc_assert (!TARGET_64BIT || POINTER_SIZE >= GET_MODE_BITSIZE (mode));
25633 if (WORDS_BIG_ENDIAN && POINTER_SIZE > GET_MODE_BITSIZE (mode))
25635 low |= high << 32;
25636 low <<= POINTER_SIZE - GET_MODE_BITSIZE (mode);
25637 high = (HOST_WIDE_INT) low >> 32;
25638 low &= 0xffffffff;
25641 if (TARGET_64BIT)
25643 if (TARGET_ELF || TARGET_MINIMAL_TOC)
25644 fputs (DOUBLE_INT_ASM_OP, file);
25645 else
25646 fprintf (file, "\t.tc ID_%lx_%lx[TC],",
25647 (long) high & 0xffffffff, (long) low & 0xffffffff);
25648 fprintf (file, "0x%lx%08lx\n",
25649 (long) high & 0xffffffff, (long) low & 0xffffffff);
25650 return;
25652 else
25654 if (POINTER_SIZE < GET_MODE_BITSIZE (mode))
25656 if (TARGET_ELF || TARGET_MINIMAL_TOC)
25657 fputs ("\t.long ", file);
25658 else
25659 fprintf (file, "\t.tc ID_%lx_%lx[TC],",
25660 (long) high & 0xffffffff, (long) low & 0xffffffff);
25661 fprintf (file, "0x%lx,0x%lx\n",
25662 (long) high & 0xffffffff, (long) low & 0xffffffff);
25664 else
25666 if (TARGET_ELF || TARGET_MINIMAL_TOC)
25667 fputs ("\t.long ", file);
25668 else
25669 fprintf (file, "\t.tc IS_%lx[TC],", (long) low & 0xffffffff);
25670 fprintf (file, "0x%lx\n", (long) low & 0xffffffff);
25672 return;
25676 if (GET_CODE (x) == CONST)
25678 gcc_assert (GET_CODE (XEXP (x, 0)) == PLUS
25679 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT);
25681 base = XEXP (XEXP (x, 0), 0);
25682 offset = INTVAL (XEXP (XEXP (x, 0), 1));
25685 switch (GET_CODE (base))
25687 case SYMBOL_REF:
25688 name = XSTR (base, 0);
25689 break;
25691 case LABEL_REF:
25692 ASM_GENERATE_INTERNAL_LABEL (buf, "L",
25693 CODE_LABEL_NUMBER (XEXP (base, 0)));
25694 break;
25696 case CODE_LABEL:
25697 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (base));
25698 break;
25700 default:
25701 gcc_unreachable ();
25704 if (TARGET_ELF || TARGET_MINIMAL_TOC)
25705 fputs (TARGET_32BIT ? "\t.long " : DOUBLE_INT_ASM_OP, file);
25706 else
25708 fputs ("\t.tc ", file);
25709 RS6000_OUTPUT_BASENAME (file, name);
25711 if (offset < 0)
25712 fprintf (file, ".N" HOST_WIDE_INT_PRINT_UNSIGNED, - offset);
25713 else if (offset)
25714 fprintf (file, ".P" HOST_WIDE_INT_PRINT_UNSIGNED, offset);
25716 /* Mark large TOC symbols on AIX with [TE] so they are mapped
25717 after other TOC symbols, reducing overflow of small TOC access
25718 to [TC] symbols. */
25719 fputs (TARGET_XCOFF && TARGET_CMODEL != CMODEL_SMALL
25720 ? "[TE]," : "[TC],", file);
25723 /* Currently C++ toc references to vtables can be emitted before it
25724 is decided whether the vtable is public or private. If this is
25725 the case, then the linker will eventually complain that there is
25726 a TOC reference to an unknown section. Thus, for vtables only,
25727 we emit the TOC reference to reference the symbol and not the
25728 section. */
25729 if (VTABLE_NAME_P (name))
25731 RS6000_OUTPUT_BASENAME (file, name);
25732 if (offset < 0)
25733 fprintf (file, HOST_WIDE_INT_PRINT_DEC, offset);
25734 else if (offset > 0)
25735 fprintf (file, "+" HOST_WIDE_INT_PRINT_DEC, offset);
25737 else
25738 output_addr_const (file, x);
25740 #if HAVE_AS_TLS
25741 if (TARGET_XCOFF && GET_CODE (base) == SYMBOL_REF
25742 && SYMBOL_REF_TLS_MODEL (base) != 0)
25744 if (SYMBOL_REF_TLS_MODEL (base) == TLS_MODEL_LOCAL_EXEC)
25745 fputs ("@le", file);
25746 else if (SYMBOL_REF_TLS_MODEL (base) == TLS_MODEL_INITIAL_EXEC)
25747 fputs ("@ie", file);
25748 /* Use global-dynamic for local-dynamic. */
25749 else if (SYMBOL_REF_TLS_MODEL (base) == TLS_MODEL_GLOBAL_DYNAMIC
25750 || SYMBOL_REF_TLS_MODEL (base) == TLS_MODEL_LOCAL_DYNAMIC)
25752 putc ('\n', file);
25753 (*targetm.asm_out.internal_label) (file, "LCM", labelno);
25754 fputs ("\t.tc .", file);
25755 RS6000_OUTPUT_BASENAME (file, name);
25756 fputs ("[TC],", file);
25757 output_addr_const (file, x);
25758 fputs ("@m", file);
25761 #endif
25763 putc ('\n', file);
25766 /* Output an assembler pseudo-op to write an ASCII string of N characters
25767 starting at P to FILE.
25769 On the RS/6000, we have to do this using the .byte operation and
25770 write out special characters outside the quoted string.
25771 Also, the assembler is broken; very long strings are truncated,
25772 so we must artificially break them up early. */
25774 void
25775 output_ascii (FILE *file, const char *p, int n)
25777 char c;
25778 int i, count_string;
25779 const char *for_string = "\t.byte \"";
25780 const char *for_decimal = "\t.byte ";
25781 const char *to_close = NULL;
25783 count_string = 0;
25784 for (i = 0; i < n; i++)
25786 c = *p++;
25787 if (c >= ' ' && c < 0177)
25789 if (for_string)
25790 fputs (for_string, file);
25791 putc (c, file);
25793 /* Write two quotes to get one. */
25794 if (c == '"')
25796 putc (c, file);
25797 ++count_string;
25800 for_string = NULL;
25801 for_decimal = "\"\n\t.byte ";
25802 to_close = "\"\n";
25803 ++count_string;
25805 if (count_string >= 512)
25807 fputs (to_close, file);
25809 for_string = "\t.byte \"";
25810 for_decimal = "\t.byte ";
25811 to_close = NULL;
25812 count_string = 0;
25815 else
25817 if (for_decimal)
25818 fputs (for_decimal, file);
25819 fprintf (file, "%d", c);
25821 for_string = "\n\t.byte \"";
25822 for_decimal = ", ";
25823 to_close = "\n";
25824 count_string = 0;
25828 /* Now close the string if we have written one. Then end the line. */
25829 if (to_close)
25830 fputs (to_close, file);
25833 /* Generate a unique section name for FILENAME for a section type
25834 represented by SECTION_DESC. Output goes into BUF.
25836 SECTION_DESC can be any string, as long as it is different for each
25837 possible section type.
25839 We name the section in the same manner as xlc. The name begins with an
25840 underscore followed by the filename (after stripping any leading directory
25841 names) with the last period replaced by the string SECTION_DESC. If
25842 FILENAME does not contain a period, SECTION_DESC is appended to the end of
25843 the name. */
25845 void
25846 rs6000_gen_section_name (char **buf, const char *filename,
25847 const char *section_desc)
25849 const char *q, *after_last_slash, *last_period = 0;
25850 char *p;
25851 int len;
25853 after_last_slash = filename;
25854 for (q = filename; *q; q++)
25856 if (*q == '/')
25857 after_last_slash = q + 1;
25858 else if (*q == '.')
25859 last_period = q;
25862 len = strlen (after_last_slash) + strlen (section_desc) + 2;
25863 *buf = (char *) xmalloc (len);
25865 p = *buf;
25866 *p++ = '_';
25868 for (q = after_last_slash; *q; q++)
25870 if (q == last_period)
25872 strcpy (p, section_desc);
25873 p += strlen (section_desc);
25874 break;
25877 else if (ISALNUM (*q))
25878 *p++ = *q;
25881 if (last_period == 0)
25882 strcpy (p, section_desc);
25883 else
25884 *p = '\0';
25887 /* Emit profile function. */
25889 void
25890 output_profile_hook (int labelno ATTRIBUTE_UNUSED)
25892 /* Non-standard profiling for kernels, which just saves LR then calls
25893 _mcount without worrying about arg saves. The idea is to change
25894 the function prologue as little as possible as it isn't easy to
25895 account for arg save/restore code added just for _mcount. */
25896 if (TARGET_PROFILE_KERNEL)
25897 return;
25899 if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
25901 #ifndef NO_PROFILE_COUNTERS
25902 # define NO_PROFILE_COUNTERS 0
25903 #endif
25904 if (NO_PROFILE_COUNTERS)
25905 emit_library_call (init_one_libfunc (RS6000_MCOUNT),
25906 LCT_NORMAL, VOIDmode, 0);
25907 else
25909 char buf[30];
25910 const char *label_name;
25911 rtx fun;
25913 ASM_GENERATE_INTERNAL_LABEL (buf, "LP", labelno);
25914 label_name = ggc_strdup ((*targetm.strip_name_encoding) (buf));
25915 fun = gen_rtx_SYMBOL_REF (Pmode, label_name);
25917 emit_library_call (init_one_libfunc (RS6000_MCOUNT),
25918 LCT_NORMAL, VOIDmode, 1, fun, Pmode);
25921 else if (DEFAULT_ABI == ABI_DARWIN)
25923 const char *mcount_name = RS6000_MCOUNT;
25924 int caller_addr_regno = LR_REGNO;
25926 /* Be conservative and always set this, at least for now. */
25927 crtl->uses_pic_offset_table = 1;
25929 #if TARGET_MACHO
25930 /* For PIC code, set up a stub and collect the caller's address
25931 from r0, which is where the prologue puts it. */
25932 if (MACHOPIC_INDIRECT
25933 && crtl->uses_pic_offset_table)
25934 caller_addr_regno = 0;
25935 #endif
25936 emit_library_call (gen_rtx_SYMBOL_REF (Pmode, mcount_name),
25937 LCT_NORMAL, VOIDmode, 1,
25938 gen_rtx_REG (Pmode, caller_addr_regno), Pmode);
25942 /* Write function profiler code. */
25944 void
25945 output_function_profiler (FILE *file, int labelno)
25947 char buf[100];
25949 switch (DEFAULT_ABI)
25951 default:
25952 gcc_unreachable ();
25954 case ABI_V4:
25955 if (!TARGET_32BIT)
25957 warning (0, "no profiling of 64-bit code for this ABI");
25958 return;
25960 ASM_GENERATE_INTERNAL_LABEL (buf, "LP", labelno);
25961 fprintf (file, "\tmflr %s\n", reg_names[0]);
25962 if (NO_PROFILE_COUNTERS)
25964 asm_fprintf (file, "\tstw %s,4(%s)\n",
25965 reg_names[0], reg_names[1]);
25967 else if (TARGET_SECURE_PLT && flag_pic)
25969 if (TARGET_LINK_STACK)
25971 char name[32];
25972 get_ppc476_thunk_name (name);
25973 asm_fprintf (file, "\tbl %s\n", name);
25975 else
25976 asm_fprintf (file, "\tbcl 20,31,1f\n1:\n");
25977 asm_fprintf (file, "\tstw %s,4(%s)\n",
25978 reg_names[0], reg_names[1]);
25979 asm_fprintf (file, "\tmflr %s\n", reg_names[12]);
25980 asm_fprintf (file, "\taddis %s,%s,",
25981 reg_names[12], reg_names[12]);
25982 assemble_name (file, buf);
25983 asm_fprintf (file, "-1b@ha\n\tla %s,", reg_names[0]);
25984 assemble_name (file, buf);
25985 asm_fprintf (file, "-1b@l(%s)\n", reg_names[12]);
25987 else if (flag_pic == 1)
25989 fputs ("\tbl _GLOBAL_OFFSET_TABLE_@local-4\n", file);
25990 asm_fprintf (file, "\tstw %s,4(%s)\n",
25991 reg_names[0], reg_names[1]);
25992 asm_fprintf (file, "\tmflr %s\n", reg_names[12]);
25993 asm_fprintf (file, "\tlwz %s,", reg_names[0]);
25994 assemble_name (file, buf);
25995 asm_fprintf (file, "@got(%s)\n", reg_names[12]);
25997 else if (flag_pic > 1)
25999 asm_fprintf (file, "\tstw %s,4(%s)\n",
26000 reg_names[0], reg_names[1]);
26001 /* Now, we need to get the address of the label. */
26002 if (TARGET_LINK_STACK)
26004 char name[32];
26005 get_ppc476_thunk_name (name);
26006 asm_fprintf (file, "\tbl %s\n\tb 1f\n\t.long ", name);
26007 assemble_name (file, buf);
26008 fputs ("-.\n1:", file);
26009 asm_fprintf (file, "\tmflr %s\n", reg_names[11]);
26010 asm_fprintf (file, "\taddi %s,%s,4\n",
26011 reg_names[11], reg_names[11]);
26013 else
26015 fputs ("\tbcl 20,31,1f\n\t.long ", file);
26016 assemble_name (file, buf);
26017 fputs ("-.\n1:", file);
26018 asm_fprintf (file, "\tmflr %s\n", reg_names[11]);
26020 asm_fprintf (file, "\tlwz %s,0(%s)\n",
26021 reg_names[0], reg_names[11]);
26022 asm_fprintf (file, "\tadd %s,%s,%s\n",
26023 reg_names[0], reg_names[0], reg_names[11]);
26025 else
26027 asm_fprintf (file, "\tlis %s,", reg_names[12]);
26028 assemble_name (file, buf);
26029 fputs ("@ha\n", file);
26030 asm_fprintf (file, "\tstw %s,4(%s)\n",
26031 reg_names[0], reg_names[1]);
26032 asm_fprintf (file, "\tla %s,", reg_names[0]);
26033 assemble_name (file, buf);
26034 asm_fprintf (file, "@l(%s)\n", reg_names[12]);
26037 /* ABI_V4 saves the static chain reg with ASM_OUTPUT_REG_PUSH. */
26038 fprintf (file, "\tbl %s%s\n",
26039 RS6000_MCOUNT, flag_pic ? "@plt" : "");
26040 break;
26042 case ABI_AIX:
26043 case ABI_ELFv2:
26044 case ABI_DARWIN:
26045 /* Don't do anything, done in output_profile_hook (). */
26046 break;
26052 /* The following variable value is the last issued insn. */
26054 static rtx last_scheduled_insn;
26056 /* The following variable helps to balance issuing of load and
26057 store instructions */
26059 static int load_store_pendulum;
26061 /* Power4 load update and store update instructions are cracked into a
26062 load or store and an integer insn which are executed in the same cycle.
26063 Branches have their own dispatch slot which does not count against the
26064 GCC issue rate, but it changes the program flow so there are no other
26065 instructions to issue in this cycle. */
26067 static int
26068 rs6000_variable_issue_1 (rtx insn, int more)
26070 last_scheduled_insn = insn;
26071 if (GET_CODE (PATTERN (insn)) == USE
26072 || GET_CODE (PATTERN (insn)) == CLOBBER)
26074 cached_can_issue_more = more;
26075 return cached_can_issue_more;
26078 if (insn_terminates_group_p (insn, current_group))
26080 cached_can_issue_more = 0;
26081 return cached_can_issue_more;
26084 /* If no reservation, but reach here */
26085 if (recog_memoized (insn) < 0)
26086 return more;
26088 if (rs6000_sched_groups)
26090 if (is_microcoded_insn (insn))
26091 cached_can_issue_more = 0;
26092 else if (is_cracked_insn (insn))
26093 cached_can_issue_more = more > 2 ? more - 2 : 0;
26094 else
26095 cached_can_issue_more = more - 1;
26097 return cached_can_issue_more;
26100 if (rs6000_cpu_attr == CPU_CELL && is_nonpipeline_insn (insn))
26101 return 0;
26103 cached_can_issue_more = more - 1;
26104 return cached_can_issue_more;
26107 static int
26108 rs6000_variable_issue (FILE *stream, int verbose, rtx insn, int more)
26110 int r = rs6000_variable_issue_1 (insn, more);
26111 if (verbose)
26112 fprintf (stream, "// rs6000_variable_issue (more = %d) = %d\n", more, r);
26113 return r;
26116 /* Adjust the cost of a scheduling dependency. Return the new cost of
26117 a dependency LINK or INSN on DEP_INSN. COST is the current cost. */
26119 static int
26120 rs6000_adjust_cost (rtx insn, rtx link, rtx dep_insn, int cost)
26122 enum attr_type attr_type;
26124 if (! recog_memoized (insn))
26125 return 0;
26127 switch (REG_NOTE_KIND (link))
26129 case REG_DEP_TRUE:
26131 /* Data dependency; DEP_INSN writes a register that INSN reads
26132 some cycles later. */
26134 /* Separate a load from a narrower, dependent store. */
26135 if (rs6000_sched_groups
26136 && GET_CODE (PATTERN (insn)) == SET
26137 && GET_CODE (PATTERN (dep_insn)) == SET
26138 && GET_CODE (XEXP (PATTERN (insn), 1)) == MEM
26139 && GET_CODE (XEXP (PATTERN (dep_insn), 0)) == MEM
26140 && (GET_MODE_SIZE (GET_MODE (XEXP (PATTERN (insn), 1)))
26141 > GET_MODE_SIZE (GET_MODE (XEXP (PATTERN (dep_insn), 0)))))
26142 return cost + 14;
26144 attr_type = get_attr_type (insn);
26146 switch (attr_type)
26148 case TYPE_JMPREG:
26149 /* Tell the first scheduling pass about the latency between
26150 a mtctr and bctr (and mtlr and br/blr). The first
26151 scheduling pass will not know about this latency since
26152 the mtctr instruction, which has the latency associated
26153 to it, will be generated by reload. */
26154 return 4;
26155 case TYPE_BRANCH:
26156 /* Leave some extra cycles between a compare and its
26157 dependent branch, to inhibit expensive mispredicts. */
26158 if ((rs6000_cpu_attr == CPU_PPC603
26159 || rs6000_cpu_attr == CPU_PPC604
26160 || rs6000_cpu_attr == CPU_PPC604E
26161 || rs6000_cpu_attr == CPU_PPC620
26162 || rs6000_cpu_attr == CPU_PPC630
26163 || rs6000_cpu_attr == CPU_PPC750
26164 || rs6000_cpu_attr == CPU_PPC7400
26165 || rs6000_cpu_attr == CPU_PPC7450
26166 || rs6000_cpu_attr == CPU_PPCE5500
26167 || rs6000_cpu_attr == CPU_PPCE6500
26168 || rs6000_cpu_attr == CPU_POWER4
26169 || rs6000_cpu_attr == CPU_POWER5
26170 || rs6000_cpu_attr == CPU_POWER7
26171 || rs6000_cpu_attr == CPU_POWER8
26172 || rs6000_cpu_attr == CPU_CELL)
26173 && recog_memoized (dep_insn)
26174 && (INSN_CODE (dep_insn) >= 0))
26176 switch (get_attr_type (dep_insn))
26178 case TYPE_CMP:
26179 case TYPE_COMPARE:
26180 case TYPE_DELAYED_COMPARE:
26181 case TYPE_IMUL_COMPARE:
26182 case TYPE_LMUL_COMPARE:
26183 case TYPE_FPCOMPARE:
26184 case TYPE_CR_LOGICAL:
26185 case TYPE_DELAYED_CR:
26186 return cost + 2;
26187 default:
26188 break;
26190 break;
26192 case TYPE_STORE:
26193 case TYPE_FPSTORE:
26194 if ((rs6000_cpu == PROCESSOR_POWER6)
26195 && recog_memoized (dep_insn)
26196 && (INSN_CODE (dep_insn) >= 0))
26199 if (GET_CODE (PATTERN (insn)) != SET)
26200 /* If this happens, we have to extend this to schedule
26201 optimally. Return default for now. */
26202 return cost;
26204 /* Adjust the cost for the case where the value written
26205 by a fixed point operation is used as the address
26206 gen value on a store. */
26207 switch (get_attr_type (dep_insn))
26209 case TYPE_LOAD:
26210 case TYPE_CNTLZ:
26212 if (! store_data_bypass_p (dep_insn, insn))
26213 return get_attr_sign_extend (dep_insn)
26214 == SIGN_EXTEND_YES ? 6 : 4;
26215 break;
26217 case TYPE_VAR_SHIFT_ROTATE:
26218 case TYPE_VAR_DELAYED_COMPARE:
26220 if (! store_data_bypass_p (dep_insn, insn))
26221 return 6;
26222 break;
26224 case TYPE_INTEGER:
26225 case TYPE_COMPARE:
26226 case TYPE_FAST_COMPARE:
26227 case TYPE_EXTS:
26228 case TYPE_SHIFT:
26229 case TYPE_INSERT_WORD:
26230 case TYPE_INSERT_DWORD:
26232 if (! store_data_bypass_p (dep_insn, insn))
26233 return 3;
26234 break;
26236 case TYPE_STORE:
26237 case TYPE_FPLOAD:
26238 case TYPE_FPSTORE:
26240 if (get_attr_update (dep_insn) == UPDATE_YES
26241 && ! store_data_bypass_p (dep_insn, insn))
26242 return 3;
26243 break;
26245 case TYPE_IMUL:
26246 case TYPE_IMUL2:
26247 case TYPE_IMUL3:
26248 case TYPE_LMUL:
26249 case TYPE_IMUL_COMPARE:
26250 case TYPE_LMUL_COMPARE:
26252 if (! store_data_bypass_p (dep_insn, insn))
26253 return 17;
26254 break;
26256 case TYPE_IDIV:
26258 if (! store_data_bypass_p (dep_insn, insn))
26259 return 45;
26260 break;
26262 case TYPE_LDIV:
26264 if (! store_data_bypass_p (dep_insn, insn))
26265 return 57;
26266 break;
26268 default:
26269 break;
26272 break;
26274 case TYPE_LOAD:
26275 if ((rs6000_cpu == PROCESSOR_POWER6)
26276 && recog_memoized (dep_insn)
26277 && (INSN_CODE (dep_insn) >= 0))
26280 /* Adjust the cost for the case where the value written
26281 by a fixed point instruction is used within the address
26282 gen portion of a subsequent load(u)(x) */
26283 switch (get_attr_type (dep_insn))
26285 case TYPE_LOAD:
26286 case TYPE_CNTLZ:
26288 if (set_to_load_agen (dep_insn, insn))
26289 return get_attr_sign_extend (dep_insn)
26290 == SIGN_EXTEND_YES ? 6 : 4;
26291 break;
26293 case TYPE_VAR_SHIFT_ROTATE:
26294 case TYPE_VAR_DELAYED_COMPARE:
26296 if (set_to_load_agen (dep_insn, insn))
26297 return 6;
26298 break;
26300 case TYPE_INTEGER:
26301 case TYPE_COMPARE:
26302 case TYPE_FAST_COMPARE:
26303 case TYPE_EXTS:
26304 case TYPE_SHIFT:
26305 case TYPE_INSERT_WORD:
26306 case TYPE_INSERT_DWORD:
26308 if (set_to_load_agen (dep_insn, insn))
26309 return 3;
26310 break;
26312 case TYPE_STORE:
26313 case TYPE_FPLOAD:
26314 case TYPE_FPSTORE:
26316 if (get_attr_update (dep_insn) == UPDATE_YES
26317 && set_to_load_agen (dep_insn, insn))
26318 return 3;
26319 break;
26321 case TYPE_IMUL:
26322 case TYPE_IMUL2:
26323 case TYPE_IMUL3:
26324 case TYPE_LMUL:
26325 case TYPE_IMUL_COMPARE:
26326 case TYPE_LMUL_COMPARE:
26328 if (set_to_load_agen (dep_insn, insn))
26329 return 17;
26330 break;
26332 case TYPE_IDIV:
26334 if (set_to_load_agen (dep_insn, insn))
26335 return 45;
26336 break;
26338 case TYPE_LDIV:
26340 if (set_to_load_agen (dep_insn, insn))
26341 return 57;
26342 break;
26344 default:
26345 break;
26348 break;
26350 case TYPE_FPLOAD:
26351 if ((rs6000_cpu == PROCESSOR_POWER6)
26352 && get_attr_update (insn) == UPDATE_NO
26353 && recog_memoized (dep_insn)
26354 && (INSN_CODE (dep_insn) >= 0)
26355 && (get_attr_type (dep_insn) == TYPE_MFFGPR))
26356 return 2;
26358 default:
26359 break;
26362 /* Fall out to return default cost. */
26364 break;
26366 case REG_DEP_OUTPUT:
26367 /* Output dependency; DEP_INSN writes a register that INSN writes some
26368 cycles later. */
26369 if ((rs6000_cpu == PROCESSOR_POWER6)
26370 && recog_memoized (dep_insn)
26371 && (INSN_CODE (dep_insn) >= 0))
26373 attr_type = get_attr_type (insn);
26375 switch (attr_type)
26377 case TYPE_FP:
26378 if (get_attr_type (dep_insn) == TYPE_FP)
26379 return 1;
26380 break;
26381 case TYPE_FPLOAD:
26382 if (get_attr_update (insn) == UPDATE_NO
26383 && get_attr_type (dep_insn) == TYPE_MFFGPR)
26384 return 2;
26385 break;
26386 default:
26387 break;
26390 case REG_DEP_ANTI:
26391 /* Anti dependency; DEP_INSN reads a register that INSN writes some
26392 cycles later. */
26393 return 0;
26395 default:
26396 gcc_unreachable ();
26399 return cost;
26402 /* Debug version of rs6000_adjust_cost. */
26404 static int
26405 rs6000_debug_adjust_cost (rtx insn, rtx link, rtx dep_insn, int cost)
26407 int ret = rs6000_adjust_cost (insn, link, dep_insn, cost);
26409 if (ret != cost)
26411 const char *dep;
26413 switch (REG_NOTE_KIND (link))
26415 default: dep = "unknown depencency"; break;
26416 case REG_DEP_TRUE: dep = "data dependency"; break;
26417 case REG_DEP_OUTPUT: dep = "output dependency"; break;
26418 case REG_DEP_ANTI: dep = "anti depencency"; break;
26421 fprintf (stderr,
26422 "\nrs6000_adjust_cost, final cost = %d, orig cost = %d, "
26423 "%s, insn:\n", ret, cost, dep);
26425 debug_rtx (insn);
26428 return ret;
26431 /* The function returns a true if INSN is microcoded.
26432 Return false otherwise. */
26434 static bool
26435 is_microcoded_insn (rtx insn)
26437 if (!insn || !NONDEBUG_INSN_P (insn)
26438 || GET_CODE (PATTERN (insn)) == USE
26439 || GET_CODE (PATTERN (insn)) == CLOBBER)
26440 return false;
26442 if (rs6000_cpu_attr == CPU_CELL)
26443 return get_attr_cell_micro (insn) == CELL_MICRO_ALWAYS;
26445 if (rs6000_sched_groups
26446 && (rs6000_cpu == PROCESSOR_POWER4 || rs6000_cpu == PROCESSOR_POWER5))
26448 enum attr_type type = get_attr_type (insn);
26449 if ((type == TYPE_LOAD
26450 && get_attr_update (insn) == UPDATE_YES
26451 && get_attr_sign_extend (insn) == SIGN_EXTEND_YES)
26452 || ((type == TYPE_LOAD || type == TYPE_STORE)
26453 && get_attr_update (insn) == UPDATE_YES
26454 && get_attr_indexed (insn) == INDEXED_YES)
26455 || type == TYPE_MFCR)
26456 return true;
26459 return false;
26462 /* The function returns true if INSN is cracked into 2 instructions
26463 by the processor (and therefore occupies 2 issue slots). */
26465 static bool
26466 is_cracked_insn (rtx insn)
26468 if (!insn || !NONDEBUG_INSN_P (insn)
26469 || GET_CODE (PATTERN (insn)) == USE
26470 || GET_CODE (PATTERN (insn)) == CLOBBER)
26471 return false;
26473 if (rs6000_sched_groups
26474 && (rs6000_cpu == PROCESSOR_POWER4 || rs6000_cpu == PROCESSOR_POWER5))
26476 enum attr_type type = get_attr_type (insn);
26477 if ((type == TYPE_LOAD
26478 && get_attr_sign_extend (insn) == SIGN_EXTEND_YES
26479 && get_attr_update (insn) == UPDATE_NO)
26480 || (type == TYPE_LOAD
26481 && get_attr_sign_extend (insn) == SIGN_EXTEND_NO
26482 && get_attr_update (insn) == UPDATE_YES
26483 && get_attr_indexed (insn) == INDEXED_NO)
26484 || (type == TYPE_STORE
26485 && get_attr_update (insn) == UPDATE_YES
26486 && get_attr_indexed (insn) == INDEXED_NO)
26487 || ((type == TYPE_FPLOAD || type == TYPE_FPSTORE)
26488 && get_attr_update (insn) == UPDATE_YES)
26489 || type == TYPE_DELAYED_CR
26490 || type == TYPE_COMPARE || type == TYPE_DELAYED_COMPARE
26491 || type == TYPE_IMUL_COMPARE || type == TYPE_LMUL_COMPARE
26492 || type == TYPE_IDIV || type == TYPE_LDIV
26493 || type == TYPE_INSERT_WORD)
26494 return true;
26497 return false;
26500 /* The function returns true if INSN can be issued only from
26501 the branch slot. */
26503 static bool
26504 is_branch_slot_insn (rtx insn)
26506 if (!insn || !NONDEBUG_INSN_P (insn)
26507 || GET_CODE (PATTERN (insn)) == USE
26508 || GET_CODE (PATTERN (insn)) == CLOBBER)
26509 return false;
26511 if (rs6000_sched_groups)
26513 enum attr_type type = get_attr_type (insn);
26514 if (type == TYPE_BRANCH || type == TYPE_JMPREG)
26515 return true;
26516 return false;
26519 return false;
26522 /* The function returns true if out_inst sets a value that is
26523 used in the address generation computation of in_insn */
26524 static bool
26525 set_to_load_agen (rtx out_insn, rtx in_insn)
26527 rtx out_set, in_set;
26529 /* For performance reasons, only handle the simple case where
26530 both loads are a single_set. */
26531 out_set = single_set (out_insn);
26532 if (out_set)
26534 in_set = single_set (in_insn);
26535 if (in_set)
26536 return reg_mentioned_p (SET_DEST (out_set), SET_SRC (in_set));
26539 return false;
26542 /* Try to determine base/offset/size parts of the given MEM.
26543 Return true if successful, false if all the values couldn't
26544 be determined.
26546 This function only looks for REG or REG+CONST address forms.
26547 REG+REG address form will return false. */
26549 static bool
26550 get_memref_parts (rtx mem, rtx *base, HOST_WIDE_INT *offset,
26551 HOST_WIDE_INT *size)
26553 rtx addr_rtx;
26554 if MEM_SIZE_KNOWN_P (mem)
26555 *size = MEM_SIZE (mem);
26556 else
26557 return false;
26559 if (GET_CODE (XEXP (mem, 0)) == PRE_MODIFY)
26560 addr_rtx = XEXP (XEXP (mem, 0), 1);
26561 else
26562 addr_rtx = (XEXP (mem, 0));
26564 if (GET_CODE (addr_rtx) == REG)
26566 *base = addr_rtx;
26567 *offset = 0;
26569 else if (GET_CODE (addr_rtx) == PLUS
26570 && CONST_INT_P (XEXP (addr_rtx, 1)))
26572 *base = XEXP (addr_rtx, 0);
26573 *offset = INTVAL (XEXP (addr_rtx, 1));
26575 else
26576 return false;
26578 return true;
26581 /* The function returns true if the target storage location of
26582 mem1 is adjacent to the target storage location of mem2 */
26583 /* Return 1 if memory locations are adjacent. */
26585 static bool
26586 adjacent_mem_locations (rtx mem1, rtx mem2)
26588 rtx reg1, reg2;
26589 HOST_WIDE_INT off1, size1, off2, size2;
26591 if (get_memref_parts (mem1, &reg1, &off1, &size1)
26592 && get_memref_parts (mem2, &reg2, &off2, &size2))
26593 return ((REGNO (reg1) == REGNO (reg2))
26594 && ((off1 + size1 == off2)
26595 || (off2 + size2 == off1)));
26597 return false;
26600 /* This function returns true if it can be determined that the two MEM
26601 locations overlap by at least 1 byte based on base reg/offset/size. */
26603 static bool
26604 mem_locations_overlap (rtx mem1, rtx mem2)
26606 rtx reg1, reg2;
26607 HOST_WIDE_INT off1, size1, off2, size2;
26609 if (get_memref_parts (mem1, &reg1, &off1, &size1)
26610 && get_memref_parts (mem2, &reg2, &off2, &size2))
26611 return ((REGNO (reg1) == REGNO (reg2))
26612 && (((off1 <= off2) && (off1 + size1 > off2))
26613 || ((off2 <= off1) && (off2 + size2 > off1))));
26615 return false;
26618 /* A C statement (sans semicolon) to update the integer scheduling
26619 priority INSN_PRIORITY (INSN). Increase the priority to execute the
26620 INSN earlier, reduce the priority to execute INSN later. Do not
26621 define this macro if you do not need to adjust the scheduling
26622 priorities of insns. */
26624 static int
26625 rs6000_adjust_priority (rtx insn ATTRIBUTE_UNUSED, int priority)
26627 rtx load_mem, str_mem;
26628 /* On machines (like the 750) which have asymmetric integer units,
26629 where one integer unit can do multiply and divides and the other
26630 can't, reduce the priority of multiply/divide so it is scheduled
26631 before other integer operations. */
26633 #if 0
26634 if (! INSN_P (insn))
26635 return priority;
26637 if (GET_CODE (PATTERN (insn)) == USE)
26638 return priority;
26640 switch (rs6000_cpu_attr) {
26641 case CPU_PPC750:
26642 switch (get_attr_type (insn))
26644 default:
26645 break;
26647 case TYPE_IMUL:
26648 case TYPE_IDIV:
26649 fprintf (stderr, "priority was %#x (%d) before adjustment\n",
26650 priority, priority);
26651 if (priority >= 0 && priority < 0x01000000)
26652 priority >>= 3;
26653 break;
26656 #endif
26658 if (insn_must_be_first_in_group (insn)
26659 && reload_completed
26660 && current_sched_info->sched_max_insns_priority
26661 && rs6000_sched_restricted_insns_priority)
26664 /* Prioritize insns that can be dispatched only in the first
26665 dispatch slot. */
26666 if (rs6000_sched_restricted_insns_priority == 1)
26667 /* Attach highest priority to insn. This means that in
26668 haifa-sched.c:ready_sort(), dispatch-slot restriction considerations
26669 precede 'priority' (critical path) considerations. */
26670 return current_sched_info->sched_max_insns_priority;
26671 else if (rs6000_sched_restricted_insns_priority == 2)
26672 /* Increase priority of insn by a minimal amount. This means that in
26673 haifa-sched.c:ready_sort(), only 'priority' (critical path)
26674 considerations precede dispatch-slot restriction considerations. */
26675 return (priority + 1);
26678 if (rs6000_cpu == PROCESSOR_POWER6
26679 && ((load_store_pendulum == -2 && is_load_insn (insn, &load_mem))
26680 || (load_store_pendulum == 2 && is_store_insn (insn, &str_mem))))
26681 /* Attach highest priority to insn if the scheduler has just issued two
26682 stores and this instruction is a load, or two loads and this instruction
26683 is a store. Power6 wants loads and stores scheduled alternately
26684 when possible */
26685 return current_sched_info->sched_max_insns_priority;
26687 return priority;
26690 /* Return true if the instruction is nonpipelined on the Cell. */
26691 static bool
26692 is_nonpipeline_insn (rtx insn)
26694 enum attr_type type;
26695 if (!insn || !NONDEBUG_INSN_P (insn)
26696 || GET_CODE (PATTERN (insn)) == USE
26697 || GET_CODE (PATTERN (insn)) == CLOBBER)
26698 return false;
26700 type = get_attr_type (insn);
26701 if (type == TYPE_IMUL
26702 || type == TYPE_IMUL2
26703 || type == TYPE_IMUL3
26704 || type == TYPE_LMUL
26705 || type == TYPE_IDIV
26706 || type == TYPE_LDIV
26707 || type == TYPE_SDIV
26708 || type == TYPE_DDIV
26709 || type == TYPE_SSQRT
26710 || type == TYPE_DSQRT
26711 || type == TYPE_MFCR
26712 || type == TYPE_MFCRF
26713 || type == TYPE_MFJMPR)
26715 return true;
26717 return false;
26721 /* Return how many instructions the machine can issue per cycle. */
26723 static int
26724 rs6000_issue_rate (void)
26726 /* Unless scheduling for register pressure, use issue rate of 1 for
26727 first scheduling pass to decrease degradation. */
26728 if (!reload_completed && !flag_sched_pressure)
26729 return 1;
26731 switch (rs6000_cpu_attr) {
26732 case CPU_RS64A:
26733 case CPU_PPC601: /* ? */
26734 case CPU_PPC7450:
26735 return 3;
26736 case CPU_PPC440:
26737 case CPU_PPC603:
26738 case CPU_PPC750:
26739 case CPU_PPC7400:
26740 case CPU_PPC8540:
26741 case CPU_PPC8548:
26742 case CPU_CELL:
26743 case CPU_PPCE300C2:
26744 case CPU_PPCE300C3:
26745 case CPU_PPCE500MC:
26746 case CPU_PPCE500MC64:
26747 case CPU_PPCE5500:
26748 case CPU_PPCE6500:
26749 case CPU_TITAN:
26750 return 2;
26751 case CPU_PPC476:
26752 case CPU_PPC604:
26753 case CPU_PPC604E:
26754 case CPU_PPC620:
26755 case CPU_PPC630:
26756 return 4;
26757 case CPU_POWER4:
26758 case CPU_POWER5:
26759 case CPU_POWER6:
26760 case CPU_POWER7:
26761 return 5;
26762 case CPU_POWER8:
26763 return 7;
26764 default:
26765 return 1;
26769 /* Return how many instructions to look ahead for better insn
26770 scheduling. */
26772 static int
26773 rs6000_use_sched_lookahead (void)
26775 switch (rs6000_cpu_attr)
26777 case CPU_PPC8540:
26778 case CPU_PPC8548:
26779 return 4;
26781 case CPU_CELL:
26782 return (reload_completed ? 8 : 0);
26784 default:
26785 return 0;
26789 /* We are choosing insn from the ready queue. Return nonzero if INSN can be chosen. */
26790 static int
26791 rs6000_use_sched_lookahead_guard (rtx insn)
26793 if (rs6000_cpu_attr != CPU_CELL)
26794 return 1;
26796 if (insn == NULL_RTX || !INSN_P (insn))
26797 abort ();
26799 if (!reload_completed
26800 || is_nonpipeline_insn (insn)
26801 || is_microcoded_insn (insn))
26802 return 0;
26804 return 1;
26807 /* Determine if PAT refers to memory. If so, set MEM_REF to the MEM rtx
26808 and return true. */
26810 static bool
26811 find_mem_ref (rtx pat, rtx *mem_ref)
26813 const char * fmt;
26814 int i, j;
26816 /* stack_tie does not produce any real memory traffic. */
26817 if (tie_operand (pat, VOIDmode))
26818 return false;
26820 if (GET_CODE (pat) == MEM)
26822 *mem_ref = pat;
26823 return true;
26826 /* Recursively process the pattern. */
26827 fmt = GET_RTX_FORMAT (GET_CODE (pat));
26829 for (i = GET_RTX_LENGTH (GET_CODE (pat)) - 1; i >= 0; i--)
26831 if (fmt[i] == 'e')
26833 if (find_mem_ref (XEXP (pat, i), mem_ref))
26834 return true;
26836 else if (fmt[i] == 'E')
26837 for (j = XVECLEN (pat, i) - 1; j >= 0; j--)
26839 if (find_mem_ref (XVECEXP (pat, i, j), mem_ref))
26840 return true;
26844 return false;
26847 /* Determine if PAT is a PATTERN of a load insn. */
26849 static bool
26850 is_load_insn1 (rtx pat, rtx *load_mem)
26852 if (!pat || pat == NULL_RTX)
26853 return false;
26855 if (GET_CODE (pat) == SET)
26856 return find_mem_ref (SET_SRC (pat), load_mem);
26858 if (GET_CODE (pat) == PARALLEL)
26860 int i;
26862 for (i = 0; i < XVECLEN (pat, 0); i++)
26863 if (is_load_insn1 (XVECEXP (pat, 0, i), load_mem))
26864 return true;
26867 return false;
26870 /* Determine if INSN loads from memory. */
26872 static bool
26873 is_load_insn (rtx insn, rtx *load_mem)
26875 if (!insn || !INSN_P (insn))
26876 return false;
26878 if (CALL_P (insn))
26879 return false;
26881 return is_load_insn1 (PATTERN (insn), load_mem);
26884 /* Determine if PAT is a PATTERN of a store insn. */
26886 static bool
26887 is_store_insn1 (rtx pat, rtx *str_mem)
26889 if (!pat || pat == NULL_RTX)
26890 return false;
26892 if (GET_CODE (pat) == SET)
26893 return find_mem_ref (SET_DEST (pat), str_mem);
26895 if (GET_CODE (pat) == PARALLEL)
26897 int i;
26899 for (i = 0; i < XVECLEN (pat, 0); i++)
26900 if (is_store_insn1 (XVECEXP (pat, 0, i), str_mem))
26901 return true;
26904 return false;
26907 /* Determine if INSN stores to memory. */
26909 static bool
26910 is_store_insn (rtx insn, rtx *str_mem)
26912 if (!insn || !INSN_P (insn))
26913 return false;
26915 return is_store_insn1 (PATTERN (insn), str_mem);
26918 /* Returns whether the dependence between INSN and NEXT is considered
26919 costly by the given target. */
26921 static bool
26922 rs6000_is_costly_dependence (dep_t dep, int cost, int distance)
26924 rtx insn;
26925 rtx next;
26926 rtx load_mem, str_mem;
26928 /* If the flag is not enabled - no dependence is considered costly;
26929 allow all dependent insns in the same group.
26930 This is the most aggressive option. */
26931 if (rs6000_sched_costly_dep == no_dep_costly)
26932 return false;
26934 /* If the flag is set to 1 - a dependence is always considered costly;
26935 do not allow dependent instructions in the same group.
26936 This is the most conservative option. */
26937 if (rs6000_sched_costly_dep == all_deps_costly)
26938 return true;
26940 insn = DEP_PRO (dep);
26941 next = DEP_CON (dep);
26943 if (rs6000_sched_costly_dep == store_to_load_dep_costly
26944 && is_load_insn (next, &load_mem)
26945 && is_store_insn (insn, &str_mem))
26946 /* Prevent load after store in the same group. */
26947 return true;
26949 if (rs6000_sched_costly_dep == true_store_to_load_dep_costly
26950 && is_load_insn (next, &load_mem)
26951 && is_store_insn (insn, &str_mem)
26952 && DEP_TYPE (dep) == REG_DEP_TRUE
26953 && mem_locations_overlap(str_mem, load_mem))
26954 /* Prevent load after store in the same group if it is a true
26955 dependence. */
26956 return true;
26958 /* The flag is set to X; dependences with latency >= X are considered costly,
26959 and will not be scheduled in the same group. */
26960 if (rs6000_sched_costly_dep <= max_dep_latency
26961 && ((cost - distance) >= (int)rs6000_sched_costly_dep))
26962 return true;
26964 return false;
26967 /* Return the next insn after INSN that is found before TAIL is reached,
26968 skipping any "non-active" insns - insns that will not actually occupy
26969 an issue slot. Return NULL_RTX if such an insn is not found. */
26971 static rtx
26972 get_next_active_insn (rtx insn, rtx tail)
26974 if (insn == NULL_RTX || insn == tail)
26975 return NULL_RTX;
26977 while (1)
26979 insn = NEXT_INSN (insn);
26980 if (insn == NULL_RTX || insn == tail)
26981 return NULL_RTX;
26983 if (CALL_P (insn)
26984 || JUMP_P (insn) || JUMP_TABLE_DATA_P (insn)
26985 || (NONJUMP_INSN_P (insn)
26986 && GET_CODE (PATTERN (insn)) != USE
26987 && GET_CODE (PATTERN (insn)) != CLOBBER
26988 && INSN_CODE (insn) != CODE_FOR_stack_tie))
26989 break;
26991 return insn;
26994 /* We are about to begin issuing insns for this clock cycle. */
26996 static int
26997 rs6000_sched_reorder (FILE *dump ATTRIBUTE_UNUSED, int sched_verbose,
26998 rtx *ready ATTRIBUTE_UNUSED,
26999 int *pn_ready ATTRIBUTE_UNUSED,
27000 int clock_var ATTRIBUTE_UNUSED)
27002 int n_ready = *pn_ready;
27004 if (sched_verbose)
27005 fprintf (dump, "// rs6000_sched_reorder :\n");
27007 /* Reorder the ready list, if the second to last ready insn
27008 is a nonepipeline insn. */
27009 if (rs6000_cpu_attr == CPU_CELL && n_ready > 1)
27011 if (is_nonpipeline_insn (ready[n_ready - 1])
27012 && (recog_memoized (ready[n_ready - 2]) > 0))
27013 /* Simply swap first two insns. */
27015 rtx tmp = ready[n_ready - 1];
27016 ready[n_ready - 1] = ready[n_ready - 2];
27017 ready[n_ready - 2] = tmp;
27021 if (rs6000_cpu == PROCESSOR_POWER6)
27022 load_store_pendulum = 0;
27024 return rs6000_issue_rate ();
27027 /* Like rs6000_sched_reorder, but called after issuing each insn. */
27029 static int
27030 rs6000_sched_reorder2 (FILE *dump, int sched_verbose, rtx *ready,
27031 int *pn_ready, int clock_var ATTRIBUTE_UNUSED)
27033 if (sched_verbose)
27034 fprintf (dump, "// rs6000_sched_reorder2 :\n");
27036 /* For Power6, we need to handle some special cases to try and keep the
27037 store queue from overflowing and triggering expensive flushes.
27039 This code monitors how load and store instructions are being issued
27040 and skews the ready list one way or the other to increase the likelihood
27041 that a desired instruction is issued at the proper time.
27043 A couple of things are done. First, we maintain a "load_store_pendulum"
27044 to track the current state of load/store issue.
27046 - If the pendulum is at zero, then no loads or stores have been
27047 issued in the current cycle so we do nothing.
27049 - If the pendulum is 1, then a single load has been issued in this
27050 cycle and we attempt to locate another load in the ready list to
27051 issue with it.
27053 - If the pendulum is -2, then two stores have already been
27054 issued in this cycle, so we increase the priority of the first load
27055 in the ready list to increase it's likelihood of being chosen first
27056 in the next cycle.
27058 - If the pendulum is -1, then a single store has been issued in this
27059 cycle and we attempt to locate another store in the ready list to
27060 issue with it, preferring a store to an adjacent memory location to
27061 facilitate store pairing in the store queue.
27063 - If the pendulum is 2, then two loads have already been
27064 issued in this cycle, so we increase the priority of the first store
27065 in the ready list to increase it's likelihood of being chosen first
27066 in the next cycle.
27068 - If the pendulum < -2 or > 2, then do nothing.
27070 Note: This code covers the most common scenarios. There exist non
27071 load/store instructions which make use of the LSU and which
27072 would need to be accounted for to strictly model the behavior
27073 of the machine. Those instructions are currently unaccounted
27074 for to help minimize compile time overhead of this code.
27076 if (rs6000_cpu == PROCESSOR_POWER6 && last_scheduled_insn)
27078 int pos;
27079 int i;
27080 rtx tmp, load_mem, str_mem;
27082 if (is_store_insn (last_scheduled_insn, &str_mem))
27083 /* Issuing a store, swing the load_store_pendulum to the left */
27084 load_store_pendulum--;
27085 else if (is_load_insn (last_scheduled_insn, &load_mem))
27086 /* Issuing a load, swing the load_store_pendulum to the right */
27087 load_store_pendulum++;
27088 else
27089 return cached_can_issue_more;
27091 /* If the pendulum is balanced, or there is only one instruction on
27092 the ready list, then all is well, so return. */
27093 if ((load_store_pendulum == 0) || (*pn_ready <= 1))
27094 return cached_can_issue_more;
27096 if (load_store_pendulum == 1)
27098 /* A load has been issued in this cycle. Scan the ready list
27099 for another load to issue with it */
27100 pos = *pn_ready-1;
27102 while (pos >= 0)
27104 if (is_load_insn (ready[pos], &load_mem))
27106 /* Found a load. Move it to the head of the ready list,
27107 and adjust it's priority so that it is more likely to
27108 stay there */
27109 tmp = ready[pos];
27110 for (i=pos; i<*pn_ready-1; i++)
27111 ready[i] = ready[i + 1];
27112 ready[*pn_ready-1] = tmp;
27114 if (!sel_sched_p () && INSN_PRIORITY_KNOWN (tmp))
27115 INSN_PRIORITY (tmp)++;
27116 break;
27118 pos--;
27121 else if (load_store_pendulum == -2)
27123 /* Two stores have been issued in this cycle. Increase the
27124 priority of the first load in the ready list to favor it for
27125 issuing in the next cycle. */
27126 pos = *pn_ready-1;
27128 while (pos >= 0)
27130 if (is_load_insn (ready[pos], &load_mem)
27131 && !sel_sched_p ()
27132 && INSN_PRIORITY_KNOWN (ready[pos]))
27134 INSN_PRIORITY (ready[pos])++;
27136 /* Adjust the pendulum to account for the fact that a load
27137 was found and increased in priority. This is to prevent
27138 increasing the priority of multiple loads */
27139 load_store_pendulum--;
27141 break;
27143 pos--;
27146 else if (load_store_pendulum == -1)
27148 /* A store has been issued in this cycle. Scan the ready list for
27149 another store to issue with it, preferring a store to an adjacent
27150 memory location */
27151 int first_store_pos = -1;
27153 pos = *pn_ready-1;
27155 while (pos >= 0)
27157 if (is_store_insn (ready[pos], &str_mem))
27159 rtx str_mem2;
27160 /* Maintain the index of the first store found on the
27161 list */
27162 if (first_store_pos == -1)
27163 first_store_pos = pos;
27165 if (is_store_insn (last_scheduled_insn, &str_mem2)
27166 && adjacent_mem_locations (str_mem, str_mem2))
27168 /* Found an adjacent store. Move it to the head of the
27169 ready list, and adjust it's priority so that it is
27170 more likely to stay there */
27171 tmp = ready[pos];
27172 for (i=pos; i<*pn_ready-1; i++)
27173 ready[i] = ready[i + 1];
27174 ready[*pn_ready-1] = tmp;
27176 if (!sel_sched_p () && INSN_PRIORITY_KNOWN (tmp))
27177 INSN_PRIORITY (tmp)++;
27179 first_store_pos = -1;
27181 break;
27184 pos--;
27187 if (first_store_pos >= 0)
27189 /* An adjacent store wasn't found, but a non-adjacent store was,
27190 so move the non-adjacent store to the front of the ready
27191 list, and adjust its priority so that it is more likely to
27192 stay there. */
27193 tmp = ready[first_store_pos];
27194 for (i=first_store_pos; i<*pn_ready-1; i++)
27195 ready[i] = ready[i + 1];
27196 ready[*pn_ready-1] = tmp;
27197 if (!sel_sched_p () && INSN_PRIORITY_KNOWN (tmp))
27198 INSN_PRIORITY (tmp)++;
27201 else if (load_store_pendulum == 2)
27203 /* Two loads have been issued in this cycle. Increase the priority
27204 of the first store in the ready list to favor it for issuing in
27205 the next cycle. */
27206 pos = *pn_ready-1;
27208 while (pos >= 0)
27210 if (is_store_insn (ready[pos], &str_mem)
27211 && !sel_sched_p ()
27212 && INSN_PRIORITY_KNOWN (ready[pos]))
27214 INSN_PRIORITY (ready[pos])++;
27216 /* Adjust the pendulum to account for the fact that a store
27217 was found and increased in priority. This is to prevent
27218 increasing the priority of multiple stores */
27219 load_store_pendulum++;
27221 break;
27223 pos--;
27228 return cached_can_issue_more;
27231 /* Return whether the presence of INSN causes a dispatch group termination
27232 of group WHICH_GROUP.
27234 If WHICH_GROUP == current_group, this function will return true if INSN
27235 causes the termination of the current group (i.e, the dispatch group to
27236 which INSN belongs). This means that INSN will be the last insn in the
27237 group it belongs to.
27239 If WHICH_GROUP == previous_group, this function will return true if INSN
27240 causes the termination of the previous group (i.e, the dispatch group that
27241 precedes the group to which INSN belongs). This means that INSN will be
27242 the first insn in the group it belongs to). */
27244 static bool
27245 insn_terminates_group_p (rtx insn, enum group_termination which_group)
27247 bool first, last;
27249 if (! insn)
27250 return false;
27252 first = insn_must_be_first_in_group (insn);
27253 last = insn_must_be_last_in_group (insn);
27255 if (first && last)
27256 return true;
27258 if (which_group == current_group)
27259 return last;
27260 else if (which_group == previous_group)
27261 return first;
27263 return false;
27267 static bool
27268 insn_must_be_first_in_group (rtx insn)
27270 enum attr_type type;
27272 if (!insn
27273 || NOTE_P (insn)
27274 || DEBUG_INSN_P (insn)
27275 || GET_CODE (PATTERN (insn)) == USE
27276 || GET_CODE (PATTERN (insn)) == CLOBBER)
27277 return false;
27279 switch (rs6000_cpu)
27281 case PROCESSOR_POWER5:
27282 if (is_cracked_insn (insn))
27283 return true;
27284 case PROCESSOR_POWER4:
27285 if (is_microcoded_insn (insn))
27286 return true;
27288 if (!rs6000_sched_groups)
27289 return false;
27291 type = get_attr_type (insn);
27293 switch (type)
27295 case TYPE_MFCR:
27296 case TYPE_MFCRF:
27297 case TYPE_MTCR:
27298 case TYPE_DELAYED_CR:
27299 case TYPE_CR_LOGICAL:
27300 case TYPE_MTJMPR:
27301 case TYPE_MFJMPR:
27302 case TYPE_IDIV:
27303 case TYPE_LDIV:
27304 case TYPE_LOAD_L:
27305 case TYPE_STORE_C:
27306 case TYPE_ISYNC:
27307 case TYPE_SYNC:
27308 return true;
27309 default:
27310 break;
27312 break;
27313 case PROCESSOR_POWER6:
27314 type = get_attr_type (insn);
27316 switch (type)
27318 case TYPE_INSERT_DWORD:
27319 case TYPE_EXTS:
27320 case TYPE_CNTLZ:
27321 case TYPE_SHIFT:
27322 case TYPE_VAR_SHIFT_ROTATE:
27323 case TYPE_TRAP:
27324 case TYPE_IMUL:
27325 case TYPE_IMUL2:
27326 case TYPE_IMUL3:
27327 case TYPE_LMUL:
27328 case TYPE_IDIV:
27329 case TYPE_INSERT_WORD:
27330 case TYPE_DELAYED_COMPARE:
27331 case TYPE_IMUL_COMPARE:
27332 case TYPE_LMUL_COMPARE:
27333 case TYPE_FPCOMPARE:
27334 case TYPE_MFCR:
27335 case TYPE_MTCR:
27336 case TYPE_MFJMPR:
27337 case TYPE_MTJMPR:
27338 case TYPE_ISYNC:
27339 case TYPE_SYNC:
27340 case TYPE_LOAD_L:
27341 case TYPE_STORE_C:
27342 return true;
27343 case TYPE_LOAD:
27344 case TYPE_STORE:
27345 case TYPE_FPLOAD:
27346 case TYPE_FPSTORE:
27347 if (get_attr_update (insn) == UPDATE_YES)
27348 return true;
27349 else
27350 break;
27351 default:
27352 break;
27354 break;
27355 case PROCESSOR_POWER7:
27356 type = get_attr_type (insn);
27358 switch (type)
27360 case TYPE_CR_LOGICAL:
27361 case TYPE_MFCR:
27362 case TYPE_MFCRF:
27363 case TYPE_MTCR:
27364 case TYPE_IDIV:
27365 case TYPE_LDIV:
27366 case TYPE_COMPARE:
27367 case TYPE_DELAYED_COMPARE:
27368 case TYPE_VAR_DELAYED_COMPARE:
27369 case TYPE_ISYNC:
27370 case TYPE_LOAD_L:
27371 case TYPE_STORE_C:
27372 case TYPE_MFJMPR:
27373 case TYPE_MTJMPR:
27374 return true;
27375 case TYPE_LOAD:
27376 if (get_attr_sign_extend (insn) == SIGN_EXTEND_YES
27377 || get_attr_update (insn) == UPDATE_YES)
27378 return true;
27379 else
27380 break;
27381 case TYPE_STORE:
27382 case TYPE_FPLOAD:
27383 case TYPE_FPSTORE:
27384 if (get_attr_update (insn) == UPDATE_YES)
27385 return true;
27386 else
27387 break;
27388 default:
27389 break;
27391 break;
27392 case PROCESSOR_POWER8:
27393 type = get_attr_type (insn);
27395 switch (type)
27397 case TYPE_CR_LOGICAL:
27398 case TYPE_DELAYED_CR:
27399 case TYPE_MFCR:
27400 case TYPE_MFCRF:
27401 case TYPE_MTCR:
27402 case TYPE_COMPARE:
27403 case TYPE_DELAYED_COMPARE:
27404 case TYPE_VAR_DELAYED_COMPARE:
27405 case TYPE_IMUL_COMPARE:
27406 case TYPE_LMUL_COMPARE:
27407 case TYPE_SYNC:
27408 case TYPE_ISYNC:
27409 case TYPE_LOAD_L:
27410 case TYPE_STORE_C:
27411 case TYPE_VECSTORE:
27412 case TYPE_MFJMPR:
27413 case TYPE_MTJMPR:
27414 return true;
27415 case TYPE_LOAD:
27416 if (get_attr_sign_extend (insn) == SIGN_EXTEND_YES
27417 || get_attr_update (insn) == UPDATE_YES)
27418 return true;
27419 else
27420 break;
27421 case TYPE_STORE:
27422 if (get_attr_update (insn) == UPDATE_YES
27423 && get_attr_indexed (insn) == INDEXED_YES)
27424 return true;
27425 else
27426 break;
27427 default:
27428 break;
27430 break;
27431 default:
27432 break;
27435 return false;
27438 static bool
27439 insn_must_be_last_in_group (rtx insn)
27441 enum attr_type type;
27443 if (!insn
27444 || NOTE_P (insn)
27445 || DEBUG_INSN_P (insn)
27446 || GET_CODE (PATTERN (insn)) == USE
27447 || GET_CODE (PATTERN (insn)) == CLOBBER)
27448 return false;
27450 switch (rs6000_cpu) {
27451 case PROCESSOR_POWER4:
27452 case PROCESSOR_POWER5:
27453 if (is_microcoded_insn (insn))
27454 return true;
27456 if (is_branch_slot_insn (insn))
27457 return true;
27459 break;
27460 case PROCESSOR_POWER6:
27461 type = get_attr_type (insn);
27463 switch (type)
27465 case TYPE_EXTS:
27466 case TYPE_CNTLZ:
27467 case TYPE_SHIFT:
27468 case TYPE_VAR_SHIFT_ROTATE:
27469 case TYPE_TRAP:
27470 case TYPE_IMUL:
27471 case TYPE_IMUL2:
27472 case TYPE_IMUL3:
27473 case TYPE_LMUL:
27474 case TYPE_IDIV:
27475 case TYPE_DELAYED_COMPARE:
27476 case TYPE_IMUL_COMPARE:
27477 case TYPE_LMUL_COMPARE:
27478 case TYPE_FPCOMPARE:
27479 case TYPE_MFCR:
27480 case TYPE_MTCR:
27481 case TYPE_MFJMPR:
27482 case TYPE_MTJMPR:
27483 case TYPE_ISYNC:
27484 case TYPE_SYNC:
27485 case TYPE_LOAD_L:
27486 case TYPE_STORE_C:
27487 return true;
27488 default:
27489 break;
27491 break;
27492 case PROCESSOR_POWER7:
27493 type = get_attr_type (insn);
27495 switch (type)
27497 case TYPE_ISYNC:
27498 case TYPE_SYNC:
27499 case TYPE_LOAD_L:
27500 case TYPE_STORE_C:
27501 return true;
27502 case TYPE_LOAD:
27503 if (get_attr_sign_extend (insn) == SIGN_EXTEND_YES
27504 && get_attr_update (insn) == UPDATE_YES)
27505 return true;
27506 else
27507 break;
27508 case TYPE_STORE:
27509 if (get_attr_update (insn) == UPDATE_YES
27510 && get_attr_indexed (insn) == INDEXED_YES)
27511 return true;
27512 else
27513 break;
27514 default:
27515 break;
27517 break;
27518 case PROCESSOR_POWER8:
27519 type = get_attr_type (insn);
27521 switch (type)
27523 case TYPE_MFCR:
27524 case TYPE_MTCR:
27525 case TYPE_ISYNC:
27526 case TYPE_SYNC:
27527 case TYPE_LOAD_L:
27528 case TYPE_STORE_C:
27529 return true;
27530 case TYPE_LOAD:
27531 if (get_attr_sign_extend (insn) == SIGN_EXTEND_YES
27532 && get_attr_update (insn) == UPDATE_YES)
27533 return true;
27534 else
27535 break;
27536 case TYPE_STORE:
27537 if (get_attr_update (insn) == UPDATE_YES
27538 && get_attr_indexed (insn) == INDEXED_YES)
27539 return true;
27540 else
27541 break;
27542 default:
27543 break;
27545 break;
27546 default:
27547 break;
27550 return false;
27553 /* Return true if it is recommended to keep NEXT_INSN "far" (in a separate
27554 dispatch group) from the insns in GROUP_INSNS. Return false otherwise. */
27556 static bool
27557 is_costly_group (rtx *group_insns, rtx next_insn)
27559 int i;
27560 int issue_rate = rs6000_issue_rate ();
27562 for (i = 0; i < issue_rate; i++)
27564 sd_iterator_def sd_it;
27565 dep_t dep;
27566 rtx insn = group_insns[i];
27568 if (!insn)
27569 continue;
27571 FOR_EACH_DEP (insn, SD_LIST_RES_FORW, sd_it, dep)
27573 rtx next = DEP_CON (dep);
27575 if (next == next_insn
27576 && rs6000_is_costly_dependence (dep, dep_cost (dep), 0))
27577 return true;
27581 return false;
27584 /* Utility of the function redefine_groups.
27585 Check if it is too costly to schedule NEXT_INSN together with GROUP_INSNS
27586 in the same dispatch group. If so, insert nops before NEXT_INSN, in order
27587 to keep it "far" (in a separate group) from GROUP_INSNS, following
27588 one of the following schemes, depending on the value of the flag
27589 -minsert_sched_nops = X:
27590 (1) X == sched_finish_regroup_exact: insert exactly as many nops as needed
27591 in order to force NEXT_INSN into a separate group.
27592 (2) X < sched_finish_regroup_exact: insert exactly X nops.
27593 GROUP_END, CAN_ISSUE_MORE and GROUP_COUNT record the state after nop
27594 insertion (has a group just ended, how many vacant issue slots remain in the
27595 last group, and how many dispatch groups were encountered so far). */
27597 static int
27598 force_new_group (int sched_verbose, FILE *dump, rtx *group_insns,
27599 rtx next_insn, bool *group_end, int can_issue_more,
27600 int *group_count)
27602 rtx nop;
27603 bool force;
27604 int issue_rate = rs6000_issue_rate ();
27605 bool end = *group_end;
27606 int i;
27608 if (next_insn == NULL_RTX || DEBUG_INSN_P (next_insn))
27609 return can_issue_more;
27611 if (rs6000_sched_insert_nops > sched_finish_regroup_exact)
27612 return can_issue_more;
27614 force = is_costly_group (group_insns, next_insn);
27615 if (!force)
27616 return can_issue_more;
27618 if (sched_verbose > 6)
27619 fprintf (dump,"force: group count = %d, can_issue_more = %d\n",
27620 *group_count ,can_issue_more);
27622 if (rs6000_sched_insert_nops == sched_finish_regroup_exact)
27624 if (*group_end)
27625 can_issue_more = 0;
27627 /* Since only a branch can be issued in the last issue_slot, it is
27628 sufficient to insert 'can_issue_more - 1' nops if next_insn is not
27629 a branch. If next_insn is a branch, we insert 'can_issue_more' nops;
27630 in this case the last nop will start a new group and the branch
27631 will be forced to the new group. */
27632 if (can_issue_more && !is_branch_slot_insn (next_insn))
27633 can_issue_more--;
27635 /* Do we have a special group ending nop? */
27636 if (rs6000_cpu_attr == CPU_POWER6 || rs6000_cpu_attr == CPU_POWER7
27637 || rs6000_cpu_attr == CPU_POWER8)
27639 nop = gen_group_ending_nop ();
27640 emit_insn_before (nop, next_insn);
27641 can_issue_more = 0;
27643 else
27644 while (can_issue_more > 0)
27646 nop = gen_nop ();
27647 emit_insn_before (nop, next_insn);
27648 can_issue_more--;
27651 *group_end = true;
27652 return 0;
27655 if (rs6000_sched_insert_nops < sched_finish_regroup_exact)
27657 int n_nops = rs6000_sched_insert_nops;
27659 /* Nops can't be issued from the branch slot, so the effective
27660 issue_rate for nops is 'issue_rate - 1'. */
27661 if (can_issue_more == 0)
27662 can_issue_more = issue_rate;
27663 can_issue_more--;
27664 if (can_issue_more == 0)
27666 can_issue_more = issue_rate - 1;
27667 (*group_count)++;
27668 end = true;
27669 for (i = 0; i < issue_rate; i++)
27671 group_insns[i] = 0;
27675 while (n_nops > 0)
27677 nop = gen_nop ();
27678 emit_insn_before (nop, next_insn);
27679 if (can_issue_more == issue_rate - 1) /* new group begins */
27680 end = false;
27681 can_issue_more--;
27682 if (can_issue_more == 0)
27684 can_issue_more = issue_rate - 1;
27685 (*group_count)++;
27686 end = true;
27687 for (i = 0; i < issue_rate; i++)
27689 group_insns[i] = 0;
27692 n_nops--;
27695 /* Scale back relative to 'issue_rate' (instead of 'issue_rate - 1'). */
27696 can_issue_more++;
27698 /* Is next_insn going to start a new group? */
27699 *group_end
27700 = (end
27701 || (can_issue_more == 1 && !is_branch_slot_insn (next_insn))
27702 || (can_issue_more <= 2 && is_cracked_insn (next_insn))
27703 || (can_issue_more < issue_rate &&
27704 insn_terminates_group_p (next_insn, previous_group)));
27705 if (*group_end && end)
27706 (*group_count)--;
27708 if (sched_verbose > 6)
27709 fprintf (dump, "done force: group count = %d, can_issue_more = %d\n",
27710 *group_count, can_issue_more);
27711 return can_issue_more;
27714 return can_issue_more;
27717 /* This function tries to synch the dispatch groups that the compiler "sees"
27718 with the dispatch groups that the processor dispatcher is expected to
27719 form in practice. It tries to achieve this synchronization by forcing the
27720 estimated processor grouping on the compiler (as opposed to the function
27721 'pad_goups' which tries to force the scheduler's grouping on the processor).
27723 The function scans the insn sequence between PREV_HEAD_INSN and TAIL and
27724 examines the (estimated) dispatch groups that will be formed by the processor
27725 dispatcher. It marks these group boundaries to reflect the estimated
27726 processor grouping, overriding the grouping that the scheduler had marked.
27727 Depending on the value of the flag '-minsert-sched-nops' this function can
27728 force certain insns into separate groups or force a certain distance between
27729 them by inserting nops, for example, if there exists a "costly dependence"
27730 between the insns.
27732 The function estimates the group boundaries that the processor will form as
27733 follows: It keeps track of how many vacant issue slots are available after
27734 each insn. A subsequent insn will start a new group if one of the following
27735 4 cases applies:
27736 - no more vacant issue slots remain in the current dispatch group.
27737 - only the last issue slot, which is the branch slot, is vacant, but the next
27738 insn is not a branch.
27739 - only the last 2 or less issue slots, including the branch slot, are vacant,
27740 which means that a cracked insn (which occupies two issue slots) can't be
27741 issued in this group.
27742 - less than 'issue_rate' slots are vacant, and the next insn always needs to
27743 start a new group. */
27745 static int
27746 redefine_groups (FILE *dump, int sched_verbose, rtx prev_head_insn, rtx tail)
27748 rtx insn, next_insn;
27749 int issue_rate;
27750 int can_issue_more;
27751 int slot, i;
27752 bool group_end;
27753 int group_count = 0;
27754 rtx *group_insns;
27756 /* Initialize. */
27757 issue_rate = rs6000_issue_rate ();
27758 group_insns = XALLOCAVEC (rtx, issue_rate);
27759 for (i = 0; i < issue_rate; i++)
27761 group_insns[i] = 0;
27763 can_issue_more = issue_rate;
27764 slot = 0;
27765 insn = get_next_active_insn (prev_head_insn, tail);
27766 group_end = false;
27768 while (insn != NULL_RTX)
27770 slot = (issue_rate - can_issue_more);
27771 group_insns[slot] = insn;
27772 can_issue_more =
27773 rs6000_variable_issue (dump, sched_verbose, insn, can_issue_more);
27774 if (insn_terminates_group_p (insn, current_group))
27775 can_issue_more = 0;
27777 next_insn = get_next_active_insn (insn, tail);
27778 if (next_insn == NULL_RTX)
27779 return group_count + 1;
27781 /* Is next_insn going to start a new group? */
27782 group_end
27783 = (can_issue_more == 0
27784 || (can_issue_more == 1 && !is_branch_slot_insn (next_insn))
27785 || (can_issue_more <= 2 && is_cracked_insn (next_insn))
27786 || (can_issue_more < issue_rate &&
27787 insn_terminates_group_p (next_insn, previous_group)));
27789 can_issue_more = force_new_group (sched_verbose, dump, group_insns,
27790 next_insn, &group_end, can_issue_more,
27791 &group_count);
27793 if (group_end)
27795 group_count++;
27796 can_issue_more = 0;
27797 for (i = 0; i < issue_rate; i++)
27799 group_insns[i] = 0;
27803 if (GET_MODE (next_insn) == TImode && can_issue_more)
27804 PUT_MODE (next_insn, VOIDmode);
27805 else if (!can_issue_more && GET_MODE (next_insn) != TImode)
27806 PUT_MODE (next_insn, TImode);
27808 insn = next_insn;
27809 if (can_issue_more == 0)
27810 can_issue_more = issue_rate;
27811 } /* while */
27813 return group_count;
27816 /* Scan the insn sequence between PREV_HEAD_INSN and TAIL and examine the
27817 dispatch group boundaries that the scheduler had marked. Pad with nops
27818 any dispatch groups which have vacant issue slots, in order to force the
27819 scheduler's grouping on the processor dispatcher. The function
27820 returns the number of dispatch groups found. */
27822 static int
27823 pad_groups (FILE *dump, int sched_verbose, rtx prev_head_insn, rtx tail)
27825 rtx insn, next_insn;
27826 rtx nop;
27827 int issue_rate;
27828 int can_issue_more;
27829 int group_end;
27830 int group_count = 0;
27832 /* Initialize issue_rate. */
27833 issue_rate = rs6000_issue_rate ();
27834 can_issue_more = issue_rate;
27836 insn = get_next_active_insn (prev_head_insn, tail);
27837 next_insn = get_next_active_insn (insn, tail);
27839 while (insn != NULL_RTX)
27841 can_issue_more =
27842 rs6000_variable_issue (dump, sched_verbose, insn, can_issue_more);
27844 group_end = (next_insn == NULL_RTX || GET_MODE (next_insn) == TImode);
27846 if (next_insn == NULL_RTX)
27847 break;
27849 if (group_end)
27851 /* If the scheduler had marked group termination at this location
27852 (between insn and next_insn), and neither insn nor next_insn will
27853 force group termination, pad the group with nops to force group
27854 termination. */
27855 if (can_issue_more
27856 && (rs6000_sched_insert_nops == sched_finish_pad_groups)
27857 && !insn_terminates_group_p (insn, current_group)
27858 && !insn_terminates_group_p (next_insn, previous_group))
27860 if (!is_branch_slot_insn (next_insn))
27861 can_issue_more--;
27863 while (can_issue_more)
27865 nop = gen_nop ();
27866 emit_insn_before (nop, next_insn);
27867 can_issue_more--;
27871 can_issue_more = issue_rate;
27872 group_count++;
27875 insn = next_insn;
27876 next_insn = get_next_active_insn (insn, tail);
27879 return group_count;
27882 /* We're beginning a new block. Initialize data structures as necessary. */
27884 static void
27885 rs6000_sched_init (FILE *dump ATTRIBUTE_UNUSED,
27886 int sched_verbose ATTRIBUTE_UNUSED,
27887 int max_ready ATTRIBUTE_UNUSED)
27889 last_scheduled_insn = NULL_RTX;
27890 load_store_pendulum = 0;
27893 /* The following function is called at the end of scheduling BB.
27894 After reload, it inserts nops at insn group bundling. */
27896 static void
27897 rs6000_sched_finish (FILE *dump, int sched_verbose)
27899 int n_groups;
27901 if (sched_verbose)
27902 fprintf (dump, "=== Finishing schedule.\n");
27904 if (reload_completed && rs6000_sched_groups)
27906 /* Do not run sched_finish hook when selective scheduling enabled. */
27907 if (sel_sched_p ())
27908 return;
27910 if (rs6000_sched_insert_nops == sched_finish_none)
27911 return;
27913 if (rs6000_sched_insert_nops == sched_finish_pad_groups)
27914 n_groups = pad_groups (dump, sched_verbose,
27915 current_sched_info->prev_head,
27916 current_sched_info->next_tail);
27917 else
27918 n_groups = redefine_groups (dump, sched_verbose,
27919 current_sched_info->prev_head,
27920 current_sched_info->next_tail);
27922 if (sched_verbose >= 6)
27924 fprintf (dump, "ngroups = %d\n", n_groups);
27925 print_rtl (dump, current_sched_info->prev_head);
27926 fprintf (dump, "Done finish_sched\n");
27931 struct _rs6000_sched_context
27933 short cached_can_issue_more;
27934 rtx last_scheduled_insn;
27935 int load_store_pendulum;
27938 typedef struct _rs6000_sched_context rs6000_sched_context_def;
27939 typedef rs6000_sched_context_def *rs6000_sched_context_t;
27941 /* Allocate store for new scheduling context. */
27942 static void *
27943 rs6000_alloc_sched_context (void)
27945 return xmalloc (sizeof (rs6000_sched_context_def));
27948 /* If CLEAN_P is true then initializes _SC with clean data,
27949 and from the global context otherwise. */
27950 static void
27951 rs6000_init_sched_context (void *_sc, bool clean_p)
27953 rs6000_sched_context_t sc = (rs6000_sched_context_t) _sc;
27955 if (clean_p)
27957 sc->cached_can_issue_more = 0;
27958 sc->last_scheduled_insn = NULL_RTX;
27959 sc->load_store_pendulum = 0;
27961 else
27963 sc->cached_can_issue_more = cached_can_issue_more;
27964 sc->last_scheduled_insn = last_scheduled_insn;
27965 sc->load_store_pendulum = load_store_pendulum;
27969 /* Sets the global scheduling context to the one pointed to by _SC. */
27970 static void
27971 rs6000_set_sched_context (void *_sc)
27973 rs6000_sched_context_t sc = (rs6000_sched_context_t) _sc;
27975 gcc_assert (sc != NULL);
27977 cached_can_issue_more = sc->cached_can_issue_more;
27978 last_scheduled_insn = sc->last_scheduled_insn;
27979 load_store_pendulum = sc->load_store_pendulum;
27982 /* Free _SC. */
27983 static void
27984 rs6000_free_sched_context (void *_sc)
27986 gcc_assert (_sc != NULL);
27988 free (_sc);
27992 /* Length in units of the trampoline for entering a nested function. */
27995 rs6000_trampoline_size (void)
27997 int ret = 0;
27999 switch (DEFAULT_ABI)
28001 default:
28002 gcc_unreachable ();
28004 case ABI_AIX:
28005 ret = (TARGET_32BIT) ? 12 : 24;
28006 break;
28008 case ABI_ELFv2:
28009 gcc_assert (!TARGET_32BIT);
28010 ret = 32;
28011 break;
28013 case ABI_DARWIN:
28014 case ABI_V4:
28015 ret = (TARGET_32BIT) ? 40 : 48;
28016 break;
28019 return ret;
28022 /* Emit RTL insns to initialize the variable parts of a trampoline.
28023 FNADDR is an RTX for the address of the function's pure code.
28024 CXT is an RTX for the static chain value for the function. */
28026 static void
28027 rs6000_trampoline_init (rtx m_tramp, tree fndecl, rtx cxt)
28029 int regsize = (TARGET_32BIT) ? 4 : 8;
28030 rtx fnaddr = XEXP (DECL_RTL (fndecl), 0);
28031 rtx ctx_reg = force_reg (Pmode, cxt);
28032 rtx addr = force_reg (Pmode, XEXP (m_tramp, 0));
28034 switch (DEFAULT_ABI)
28036 default:
28037 gcc_unreachable ();
28039 /* Under AIX, just build the 3 word function descriptor */
28040 case ABI_AIX:
28042 rtx fnmem, fn_reg, toc_reg;
28044 if (!TARGET_POINTERS_TO_NESTED_FUNCTIONS)
28045 error ("You cannot take the address of a nested function if you use "
28046 "the -mno-pointers-to-nested-functions option.");
28048 fnmem = gen_const_mem (Pmode, force_reg (Pmode, fnaddr));
28049 fn_reg = gen_reg_rtx (Pmode);
28050 toc_reg = gen_reg_rtx (Pmode);
28052 /* Macro to shorten the code expansions below. */
28053 # define MEM_PLUS(MEM, OFFSET) adjust_address (MEM, Pmode, OFFSET)
28055 m_tramp = replace_equiv_address (m_tramp, addr);
28057 emit_move_insn (fn_reg, MEM_PLUS (fnmem, 0));
28058 emit_move_insn (toc_reg, MEM_PLUS (fnmem, regsize));
28059 emit_move_insn (MEM_PLUS (m_tramp, 0), fn_reg);
28060 emit_move_insn (MEM_PLUS (m_tramp, regsize), toc_reg);
28061 emit_move_insn (MEM_PLUS (m_tramp, 2*regsize), ctx_reg);
28063 # undef MEM_PLUS
28065 break;
28067 /* Under V.4/eabi/darwin, __trampoline_setup does the real work. */
28068 case ABI_ELFv2:
28069 case ABI_DARWIN:
28070 case ABI_V4:
28071 emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "__trampoline_setup"),
28072 LCT_NORMAL, VOIDmode, 4,
28073 addr, Pmode,
28074 GEN_INT (rs6000_trampoline_size ()), SImode,
28075 fnaddr, Pmode,
28076 ctx_reg, Pmode);
28077 break;
28082 /* Returns TRUE iff the target attribute indicated by ATTR_ID takes a plain
28083 identifier as an argument, so the front end shouldn't look it up. */
28085 static bool
28086 rs6000_attribute_takes_identifier_p (const_tree attr_id)
28088 return is_attribute_p ("altivec", attr_id);
28091 /* Handle the "altivec" attribute. The attribute may have
28092 arguments as follows:
28094 __attribute__((altivec(vector__)))
28095 __attribute__((altivec(pixel__))) (always followed by 'unsigned short')
28096 __attribute__((altivec(bool__))) (always followed by 'unsigned')
28098 and may appear more than once (e.g., 'vector bool char') in a
28099 given declaration. */
28101 static tree
28102 rs6000_handle_altivec_attribute (tree *node,
28103 tree name ATTRIBUTE_UNUSED,
28104 tree args,
28105 int flags ATTRIBUTE_UNUSED,
28106 bool *no_add_attrs)
28108 tree type = *node, result = NULL_TREE;
28109 enum machine_mode mode;
28110 int unsigned_p;
28111 char altivec_type
28112 = ((args && TREE_CODE (args) == TREE_LIST && TREE_VALUE (args)
28113 && TREE_CODE (TREE_VALUE (args)) == IDENTIFIER_NODE)
28114 ? *IDENTIFIER_POINTER (TREE_VALUE (args))
28115 : '?');
28117 while (POINTER_TYPE_P (type)
28118 || TREE_CODE (type) == FUNCTION_TYPE
28119 || TREE_CODE (type) == METHOD_TYPE
28120 || TREE_CODE (type) == ARRAY_TYPE)
28121 type = TREE_TYPE (type);
28123 mode = TYPE_MODE (type);
28125 /* Check for invalid AltiVec type qualifiers. */
28126 if (type == long_double_type_node)
28127 error ("use of %<long double%> in AltiVec types is invalid");
28128 else if (type == boolean_type_node)
28129 error ("use of boolean types in AltiVec types is invalid");
28130 else if (TREE_CODE (type) == COMPLEX_TYPE)
28131 error ("use of %<complex%> in AltiVec types is invalid");
28132 else if (DECIMAL_FLOAT_MODE_P (mode))
28133 error ("use of decimal floating point types in AltiVec types is invalid");
28134 else if (!TARGET_VSX)
28136 if (type == long_unsigned_type_node || type == long_integer_type_node)
28138 if (TARGET_64BIT)
28139 error ("use of %<long%> in AltiVec types is invalid for "
28140 "64-bit code without -mvsx");
28141 else if (rs6000_warn_altivec_long)
28142 warning (0, "use of %<long%> in AltiVec types is deprecated; "
28143 "use %<int%>");
28145 else if (type == long_long_unsigned_type_node
28146 || type == long_long_integer_type_node)
28147 error ("use of %<long long%> in AltiVec types is invalid without "
28148 "-mvsx");
28149 else if (type == double_type_node)
28150 error ("use of %<double%> in AltiVec types is invalid without -mvsx");
28153 switch (altivec_type)
28155 case 'v':
28156 unsigned_p = TYPE_UNSIGNED (type);
28157 switch (mode)
28159 case TImode:
28160 result = (unsigned_p ? unsigned_V1TI_type_node : V1TI_type_node);
28161 break;
28162 case DImode:
28163 result = (unsigned_p ? unsigned_V2DI_type_node : V2DI_type_node);
28164 break;
28165 case SImode:
28166 result = (unsigned_p ? unsigned_V4SI_type_node : V4SI_type_node);
28167 break;
28168 case HImode:
28169 result = (unsigned_p ? unsigned_V8HI_type_node : V8HI_type_node);
28170 break;
28171 case QImode:
28172 result = (unsigned_p ? unsigned_V16QI_type_node : V16QI_type_node);
28173 break;
28174 case SFmode: result = V4SF_type_node; break;
28175 case DFmode: result = V2DF_type_node; break;
28176 /* If the user says 'vector int bool', we may be handed the 'bool'
28177 attribute _before_ the 'vector' attribute, and so select the
28178 proper type in the 'b' case below. */
28179 case V4SImode: case V8HImode: case V16QImode: case V4SFmode:
28180 case V2DImode: case V2DFmode:
28181 result = type;
28182 default: break;
28184 break;
28185 case 'b':
28186 switch (mode)
28188 case DImode: case V2DImode: result = bool_V2DI_type_node; break;
28189 case SImode: case V4SImode: result = bool_V4SI_type_node; break;
28190 case HImode: case V8HImode: result = bool_V8HI_type_node; break;
28191 case QImode: case V16QImode: result = bool_V16QI_type_node;
28192 default: break;
28194 break;
28195 case 'p':
28196 switch (mode)
28198 case V8HImode: result = pixel_V8HI_type_node;
28199 default: break;
28201 default: break;
28204 /* Propagate qualifiers attached to the element type
28205 onto the vector type. */
28206 if (result && result != type && TYPE_QUALS (type))
28207 result = build_qualified_type (result, TYPE_QUALS (type));
28209 *no_add_attrs = true; /* No need to hang on to the attribute. */
28211 if (result)
28212 *node = lang_hooks.types.reconstruct_complex_type (*node, result);
28214 return NULL_TREE;
28217 /* AltiVec defines four built-in scalar types that serve as vector
28218 elements; we must teach the compiler how to mangle them. */
28220 static const char *
28221 rs6000_mangle_type (const_tree type)
28223 type = TYPE_MAIN_VARIANT (type);
28225 if (TREE_CODE (type) != VOID_TYPE && TREE_CODE (type) != BOOLEAN_TYPE
28226 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
28227 return NULL;
28229 if (type == bool_char_type_node) return "U6__boolc";
28230 if (type == bool_short_type_node) return "U6__bools";
28231 if (type == pixel_type_node) return "u7__pixel";
28232 if (type == bool_int_type_node) return "U6__booli";
28233 if (type == bool_long_type_node) return "U6__booll";
28235 /* Mangle IBM extended float long double as `g' (__float128) on
28236 powerpc*-linux where long-double-64 previously was the default. */
28237 if (TYPE_MAIN_VARIANT (type) == long_double_type_node
28238 && TARGET_ELF
28239 && TARGET_LONG_DOUBLE_128
28240 && !TARGET_IEEEQUAD)
28241 return "g";
28243 /* For all other types, use normal C++ mangling. */
28244 return NULL;
28247 /* Handle a "longcall" or "shortcall" attribute; arguments as in
28248 struct attribute_spec.handler. */
28250 static tree
28251 rs6000_handle_longcall_attribute (tree *node, tree name,
28252 tree args ATTRIBUTE_UNUSED,
28253 int flags ATTRIBUTE_UNUSED,
28254 bool *no_add_attrs)
28256 if (TREE_CODE (*node) != FUNCTION_TYPE
28257 && TREE_CODE (*node) != FIELD_DECL
28258 && TREE_CODE (*node) != TYPE_DECL)
28260 warning (OPT_Wattributes, "%qE attribute only applies to functions",
28261 name);
28262 *no_add_attrs = true;
28265 return NULL_TREE;
28268 /* Set longcall attributes on all functions declared when
28269 rs6000_default_long_calls is true. */
28270 static void
28271 rs6000_set_default_type_attributes (tree type)
28273 if (rs6000_default_long_calls
28274 && (TREE_CODE (type) == FUNCTION_TYPE
28275 || TREE_CODE (type) == METHOD_TYPE))
28276 TYPE_ATTRIBUTES (type) = tree_cons (get_identifier ("longcall"),
28277 NULL_TREE,
28278 TYPE_ATTRIBUTES (type));
28280 #if TARGET_MACHO
28281 darwin_set_default_type_attributes (type);
28282 #endif
28285 /* Return a reference suitable for calling a function with the
28286 longcall attribute. */
28289 rs6000_longcall_ref (rtx call_ref)
28291 const char *call_name;
28292 tree node;
28294 if (GET_CODE (call_ref) != SYMBOL_REF)
28295 return call_ref;
28297 /* System V adds '.' to the internal name, so skip them. */
28298 call_name = XSTR (call_ref, 0);
28299 if (*call_name == '.')
28301 while (*call_name == '.')
28302 call_name++;
28304 node = get_identifier (call_name);
28305 call_ref = gen_rtx_SYMBOL_REF (VOIDmode, IDENTIFIER_POINTER (node));
28308 return force_reg (Pmode, call_ref);
28311 #ifndef TARGET_USE_MS_BITFIELD_LAYOUT
28312 #define TARGET_USE_MS_BITFIELD_LAYOUT 0
28313 #endif
28315 /* Handle a "ms_struct" or "gcc_struct" attribute; arguments as in
28316 struct attribute_spec.handler. */
28317 static tree
28318 rs6000_handle_struct_attribute (tree *node, tree name,
28319 tree args ATTRIBUTE_UNUSED,
28320 int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
28322 tree *type = NULL;
28323 if (DECL_P (*node))
28325 if (TREE_CODE (*node) == TYPE_DECL)
28326 type = &TREE_TYPE (*node);
28328 else
28329 type = node;
28331 if (!(type && (TREE_CODE (*type) == RECORD_TYPE
28332 || TREE_CODE (*type) == UNION_TYPE)))
28334 warning (OPT_Wattributes, "%qE attribute ignored", name);
28335 *no_add_attrs = true;
28338 else if ((is_attribute_p ("ms_struct", name)
28339 && lookup_attribute ("gcc_struct", TYPE_ATTRIBUTES (*type)))
28340 || ((is_attribute_p ("gcc_struct", name)
28341 && lookup_attribute ("ms_struct", TYPE_ATTRIBUTES (*type)))))
28343 warning (OPT_Wattributes, "%qE incompatible attribute ignored",
28344 name);
28345 *no_add_attrs = true;
28348 return NULL_TREE;
28351 static bool
28352 rs6000_ms_bitfield_layout_p (const_tree record_type)
28354 return (TARGET_USE_MS_BITFIELD_LAYOUT &&
28355 !lookup_attribute ("gcc_struct", TYPE_ATTRIBUTES (record_type)))
28356 || lookup_attribute ("ms_struct", TYPE_ATTRIBUTES (record_type));
28359 #ifdef USING_ELFOS_H
28361 /* A get_unnamed_section callback, used for switching to toc_section. */
28363 static void
28364 rs6000_elf_output_toc_section_asm_op (const void *data ATTRIBUTE_UNUSED)
28366 if ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
28367 && TARGET_MINIMAL_TOC
28368 && !TARGET_RELOCATABLE)
28370 if (!toc_initialized)
28372 toc_initialized = 1;
28373 fprintf (asm_out_file, "%s\n", TOC_SECTION_ASM_OP);
28374 (*targetm.asm_out.internal_label) (asm_out_file, "LCTOC", 0);
28375 fprintf (asm_out_file, "\t.tc ");
28376 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1[TC],");
28377 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1");
28378 fprintf (asm_out_file, "\n");
28380 fprintf (asm_out_file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);
28381 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1");
28382 fprintf (asm_out_file, " = .+32768\n");
28384 else
28385 fprintf (asm_out_file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);
28387 else if ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
28388 && !TARGET_RELOCATABLE)
28389 fprintf (asm_out_file, "%s\n", TOC_SECTION_ASM_OP);
28390 else
28392 fprintf (asm_out_file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);
28393 if (!toc_initialized)
28395 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1");
28396 fprintf (asm_out_file, " = .+32768\n");
28397 toc_initialized = 1;
28402 /* Implement TARGET_ASM_INIT_SECTIONS. */
28404 static void
28405 rs6000_elf_asm_init_sections (void)
28407 toc_section
28408 = get_unnamed_section (0, rs6000_elf_output_toc_section_asm_op, NULL);
28410 sdata2_section
28411 = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
28412 SDATA2_SECTION_ASM_OP);
28415 /* Implement TARGET_SELECT_RTX_SECTION. */
28417 static section *
28418 rs6000_elf_select_rtx_section (enum machine_mode mode, rtx x,
28419 unsigned HOST_WIDE_INT align)
28421 if (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (x, mode))
28422 return toc_section;
28423 else
28424 return default_elf_select_rtx_section (mode, x, align);
28427 /* For a SYMBOL_REF, set generic flags and then perform some
28428 target-specific processing.
28430 When the AIX ABI is requested on a non-AIX system, replace the
28431 function name with the real name (with a leading .) rather than the
28432 function descriptor name. This saves a lot of overriding code to
28433 read the prefixes. */
28435 static void rs6000_elf_encode_section_info (tree, rtx, int) ATTRIBUTE_UNUSED;
28436 static void
28437 rs6000_elf_encode_section_info (tree decl, rtx rtl, int first)
28439 default_encode_section_info (decl, rtl, first);
28441 if (first
28442 && TREE_CODE (decl) == FUNCTION_DECL
28443 && !TARGET_AIX
28444 && DEFAULT_ABI == ABI_AIX)
28446 rtx sym_ref = XEXP (rtl, 0);
28447 size_t len = strlen (XSTR (sym_ref, 0));
28448 char *str = XALLOCAVEC (char, len + 2);
28449 str[0] = '.';
28450 memcpy (str + 1, XSTR (sym_ref, 0), len + 1);
28451 XSTR (sym_ref, 0) = ggc_alloc_string (str, len + 1);
28455 static inline bool
28456 compare_section_name (const char *section, const char *templ)
28458 int len;
28460 len = strlen (templ);
28461 return (strncmp (section, templ, len) == 0
28462 && (section[len] == 0 || section[len] == '.'));
28465 bool
28466 rs6000_elf_in_small_data_p (const_tree decl)
28468 if (rs6000_sdata == SDATA_NONE)
28469 return false;
28471 /* We want to merge strings, so we never consider them small data. */
28472 if (TREE_CODE (decl) == STRING_CST)
28473 return false;
28475 /* Functions are never in the small data area. */
28476 if (TREE_CODE (decl) == FUNCTION_DECL)
28477 return false;
28479 if (TREE_CODE (decl) == VAR_DECL && DECL_SECTION_NAME (decl))
28481 const char *section = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
28482 if (compare_section_name (section, ".sdata")
28483 || compare_section_name (section, ".sdata2")
28484 || compare_section_name (section, ".gnu.linkonce.s")
28485 || compare_section_name (section, ".sbss")
28486 || compare_section_name (section, ".sbss2")
28487 || compare_section_name (section, ".gnu.linkonce.sb")
28488 || strcmp (section, ".PPC.EMB.sdata0") == 0
28489 || strcmp (section, ".PPC.EMB.sbss0") == 0)
28490 return true;
28492 else
28494 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (decl));
28496 if (size > 0
28497 && size <= g_switch_value
28498 /* If it's not public, and we're not going to reference it there,
28499 there's no need to put it in the small data section. */
28500 && (rs6000_sdata != SDATA_DATA || TREE_PUBLIC (decl)))
28501 return true;
28504 return false;
28507 #endif /* USING_ELFOS_H */
28509 /* Implement TARGET_USE_BLOCKS_FOR_CONSTANT_P. */
28511 static bool
28512 rs6000_use_blocks_for_constant_p (enum machine_mode mode, const_rtx x)
28514 return !ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (x, mode);
28517 /* Do not place thread-local symbols refs in the object blocks. */
28519 static bool
28520 rs6000_use_blocks_for_decl_p (const_tree decl)
28522 return !DECL_THREAD_LOCAL_P (decl);
28525 /* Return a REG that occurs in ADDR with coefficient 1.
28526 ADDR can be effectively incremented by incrementing REG.
28528 r0 is special and we must not select it as an address
28529 register by this routine since our caller will try to
28530 increment the returned register via an "la" instruction. */
28533 find_addr_reg (rtx addr)
28535 while (GET_CODE (addr) == PLUS)
28537 if (GET_CODE (XEXP (addr, 0)) == REG
28538 && REGNO (XEXP (addr, 0)) != 0)
28539 addr = XEXP (addr, 0);
28540 else if (GET_CODE (XEXP (addr, 1)) == REG
28541 && REGNO (XEXP (addr, 1)) != 0)
28542 addr = XEXP (addr, 1);
28543 else if (CONSTANT_P (XEXP (addr, 0)))
28544 addr = XEXP (addr, 1);
28545 else if (CONSTANT_P (XEXP (addr, 1)))
28546 addr = XEXP (addr, 0);
28547 else
28548 gcc_unreachable ();
28550 gcc_assert (GET_CODE (addr) == REG && REGNO (addr) != 0);
28551 return addr;
28554 void
28555 rs6000_fatal_bad_address (rtx op)
28557 fatal_insn ("bad address", op);
28560 #if TARGET_MACHO
28562 typedef struct branch_island_d {
28563 tree function_name;
28564 tree label_name;
28565 int line_number;
28566 } branch_island;
28569 static vec<branch_island, va_gc> *branch_islands;
28571 /* Remember to generate a branch island for far calls to the given
28572 function. */
28574 static void
28575 add_compiler_branch_island (tree label_name, tree function_name,
28576 int line_number)
28578 branch_island bi = {function_name, label_name, line_number};
28579 vec_safe_push (branch_islands, bi);
28582 /* Generate far-jump branch islands for everything recorded in
28583 branch_islands. Invoked immediately after the last instruction of
28584 the epilogue has been emitted; the branch islands must be appended
28585 to, and contiguous with, the function body. Mach-O stubs are
28586 generated in machopic_output_stub(). */
28588 static void
28589 macho_branch_islands (void)
28591 char tmp_buf[512];
28593 while (!vec_safe_is_empty (branch_islands))
28595 branch_island *bi = &branch_islands->last ();
28596 const char *label = IDENTIFIER_POINTER (bi->label_name);
28597 const char *name = IDENTIFIER_POINTER (bi->function_name);
28598 char name_buf[512];
28599 /* Cheap copy of the details from the Darwin ASM_OUTPUT_LABELREF(). */
28600 if (name[0] == '*' || name[0] == '&')
28601 strcpy (name_buf, name+1);
28602 else
28604 name_buf[0] = '_';
28605 strcpy (name_buf+1, name);
28607 strcpy (tmp_buf, "\n");
28608 strcat (tmp_buf, label);
28609 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
28610 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
28611 dbxout_stabd (N_SLINE, bi->line_number);
28612 #endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
28613 if (flag_pic)
28615 if (TARGET_LINK_STACK)
28617 char name[32];
28618 get_ppc476_thunk_name (name);
28619 strcat (tmp_buf, ":\n\tmflr r0\n\tbl ");
28620 strcat (tmp_buf, name);
28621 strcat (tmp_buf, "\n");
28622 strcat (tmp_buf, label);
28623 strcat (tmp_buf, "_pic:\n\tmflr r11\n");
28625 else
28627 strcat (tmp_buf, ":\n\tmflr r0\n\tbcl 20,31,");
28628 strcat (tmp_buf, label);
28629 strcat (tmp_buf, "_pic\n");
28630 strcat (tmp_buf, label);
28631 strcat (tmp_buf, "_pic:\n\tmflr r11\n");
28634 strcat (tmp_buf, "\taddis r11,r11,ha16(");
28635 strcat (tmp_buf, name_buf);
28636 strcat (tmp_buf, " - ");
28637 strcat (tmp_buf, label);
28638 strcat (tmp_buf, "_pic)\n");
28640 strcat (tmp_buf, "\tmtlr r0\n");
28642 strcat (tmp_buf, "\taddi r12,r11,lo16(");
28643 strcat (tmp_buf, name_buf);
28644 strcat (tmp_buf, " - ");
28645 strcat (tmp_buf, label);
28646 strcat (tmp_buf, "_pic)\n");
28648 strcat (tmp_buf, "\tmtctr r12\n\tbctr\n");
28650 else
28652 strcat (tmp_buf, ":\nlis r12,hi16(");
28653 strcat (tmp_buf, name_buf);
28654 strcat (tmp_buf, ")\n\tori r12,r12,lo16(");
28655 strcat (tmp_buf, name_buf);
28656 strcat (tmp_buf, ")\n\tmtctr r12\n\tbctr");
28658 output_asm_insn (tmp_buf, 0);
28659 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
28660 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
28661 dbxout_stabd (N_SLINE, bi->line_number);
28662 #endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
28663 branch_islands->pop ();
28667 /* NO_PREVIOUS_DEF checks in the link list whether the function name is
28668 already there or not. */
28670 static int
28671 no_previous_def (tree function_name)
28673 branch_island *bi;
28674 unsigned ix;
28676 FOR_EACH_VEC_SAFE_ELT (branch_islands, ix, bi)
28677 if (function_name == bi->function_name)
28678 return 0;
28679 return 1;
28682 /* GET_PREV_LABEL gets the label name from the previous definition of
28683 the function. */
28685 static tree
28686 get_prev_label (tree function_name)
28688 branch_island *bi;
28689 unsigned ix;
28691 FOR_EACH_VEC_SAFE_ELT (branch_islands, ix, bi)
28692 if (function_name == bi->function_name)
28693 return bi->label_name;
28694 return NULL_TREE;
28697 /* INSN is either a function call or a millicode call. It may have an
28698 unconditional jump in its delay slot.
28700 CALL_DEST is the routine we are calling. */
28702 char *
28703 output_call (rtx insn, rtx *operands, int dest_operand_number,
28704 int cookie_operand_number)
28706 static char buf[256];
28707 if (darwin_emit_branch_islands
28708 && GET_CODE (operands[dest_operand_number]) == SYMBOL_REF
28709 && (INTVAL (operands[cookie_operand_number]) & CALL_LONG))
28711 tree labelname;
28712 tree funname = get_identifier (XSTR (operands[dest_operand_number], 0));
28714 if (no_previous_def (funname))
28716 rtx label_rtx = gen_label_rtx ();
28717 char *label_buf, temp_buf[256];
28718 ASM_GENERATE_INTERNAL_LABEL (temp_buf, "L",
28719 CODE_LABEL_NUMBER (label_rtx));
28720 label_buf = temp_buf[0] == '*' ? temp_buf + 1 : temp_buf;
28721 labelname = get_identifier (label_buf);
28722 add_compiler_branch_island (labelname, funname, insn_line (insn));
28724 else
28725 labelname = get_prev_label (funname);
28727 /* "jbsr foo, L42" is Mach-O for "Link as 'bl foo' if a 'bl'
28728 instruction will reach 'foo', otherwise link as 'bl L42'".
28729 "L42" should be a 'branch island', that will do a far jump to
28730 'foo'. Branch islands are generated in
28731 macho_branch_islands(). */
28732 sprintf (buf, "jbsr %%z%d,%.246s",
28733 dest_operand_number, IDENTIFIER_POINTER (labelname));
28735 else
28736 sprintf (buf, "bl %%z%d", dest_operand_number);
28737 return buf;
28740 /* Generate PIC and indirect symbol stubs. */
28742 void
28743 machopic_output_stub (FILE *file, const char *symb, const char *stub)
28745 unsigned int length;
28746 char *symbol_name, *lazy_ptr_name;
28747 char *local_label_0;
28748 static int label = 0;
28750 /* Lose our funky encoding stuff so it doesn't contaminate the stub. */
28751 symb = (*targetm.strip_name_encoding) (symb);
28754 length = strlen (symb);
28755 symbol_name = XALLOCAVEC (char, length + 32);
28756 GEN_SYMBOL_NAME_FOR_SYMBOL (symbol_name, symb, length);
28758 lazy_ptr_name = XALLOCAVEC (char, length + 32);
28759 GEN_LAZY_PTR_NAME_FOR_SYMBOL (lazy_ptr_name, symb, length);
28761 if (flag_pic == 2)
28762 switch_to_section (darwin_sections[machopic_picsymbol_stub1_section]);
28763 else
28764 switch_to_section (darwin_sections[machopic_symbol_stub1_section]);
28766 if (flag_pic == 2)
28768 fprintf (file, "\t.align 5\n");
28770 fprintf (file, "%s:\n", stub);
28771 fprintf (file, "\t.indirect_symbol %s\n", symbol_name);
28773 label++;
28774 local_label_0 = XALLOCAVEC (char, sizeof ("\"L00000000000$spb\""));
28775 sprintf (local_label_0, "\"L%011d$spb\"", label);
28777 fprintf (file, "\tmflr r0\n");
28778 if (TARGET_LINK_STACK)
28780 char name[32];
28781 get_ppc476_thunk_name (name);
28782 fprintf (file, "\tbl %s\n", name);
28783 fprintf (file, "%s:\n\tmflr r11\n", local_label_0);
28785 else
28787 fprintf (file, "\tbcl 20,31,%s\n", local_label_0);
28788 fprintf (file, "%s:\n\tmflr r11\n", local_label_0);
28790 fprintf (file, "\taddis r11,r11,ha16(%s-%s)\n",
28791 lazy_ptr_name, local_label_0);
28792 fprintf (file, "\tmtlr r0\n");
28793 fprintf (file, "\t%s r12,lo16(%s-%s)(r11)\n",
28794 (TARGET_64BIT ? "ldu" : "lwzu"),
28795 lazy_ptr_name, local_label_0);
28796 fprintf (file, "\tmtctr r12\n");
28797 fprintf (file, "\tbctr\n");
28799 else
28801 fprintf (file, "\t.align 4\n");
28803 fprintf (file, "%s:\n", stub);
28804 fprintf (file, "\t.indirect_symbol %s\n", symbol_name);
28806 fprintf (file, "\tlis r11,ha16(%s)\n", lazy_ptr_name);
28807 fprintf (file, "\t%s r12,lo16(%s)(r11)\n",
28808 (TARGET_64BIT ? "ldu" : "lwzu"),
28809 lazy_ptr_name);
28810 fprintf (file, "\tmtctr r12\n");
28811 fprintf (file, "\tbctr\n");
28814 switch_to_section (darwin_sections[machopic_lazy_symbol_ptr_section]);
28815 fprintf (file, "%s:\n", lazy_ptr_name);
28816 fprintf (file, "\t.indirect_symbol %s\n", symbol_name);
28817 fprintf (file, "%sdyld_stub_binding_helper\n",
28818 (TARGET_64BIT ? DOUBLE_INT_ASM_OP : "\t.long\t"));
28821 /* Legitimize PIC addresses. If the address is already
28822 position-independent, we return ORIG. Newly generated
28823 position-independent addresses go into a reg. This is REG if non
28824 zero, otherwise we allocate register(s) as necessary. */
28826 #define SMALL_INT(X) ((UINTVAL (X) + 0x8000) < 0x10000)
28829 rs6000_machopic_legitimize_pic_address (rtx orig, enum machine_mode mode,
28830 rtx reg)
28832 rtx base, offset;
28834 if (reg == NULL && ! reload_in_progress && ! reload_completed)
28835 reg = gen_reg_rtx (Pmode);
28837 if (GET_CODE (orig) == CONST)
28839 rtx reg_temp;
28841 if (GET_CODE (XEXP (orig, 0)) == PLUS
28842 && XEXP (XEXP (orig, 0), 0) == pic_offset_table_rtx)
28843 return orig;
28845 gcc_assert (GET_CODE (XEXP (orig, 0)) == PLUS);
28847 /* Use a different reg for the intermediate value, as
28848 it will be marked UNCHANGING. */
28849 reg_temp = !can_create_pseudo_p () ? reg : gen_reg_rtx (Pmode);
28850 base = rs6000_machopic_legitimize_pic_address (XEXP (XEXP (orig, 0), 0),
28851 Pmode, reg_temp);
28852 offset =
28853 rs6000_machopic_legitimize_pic_address (XEXP (XEXP (orig, 0), 1),
28854 Pmode, reg);
28856 if (GET_CODE (offset) == CONST_INT)
28858 if (SMALL_INT (offset))
28859 return plus_constant (Pmode, base, INTVAL (offset));
28860 else if (! reload_in_progress && ! reload_completed)
28861 offset = force_reg (Pmode, offset);
28862 else
28864 rtx mem = force_const_mem (Pmode, orig);
28865 return machopic_legitimize_pic_address (mem, Pmode, reg);
28868 return gen_rtx_PLUS (Pmode, base, offset);
28871 /* Fall back on generic machopic code. */
28872 return machopic_legitimize_pic_address (orig, mode, reg);
28875 /* Output a .machine directive for the Darwin assembler, and call
28876 the generic start_file routine. */
28878 static void
28879 rs6000_darwin_file_start (void)
28881 static const struct
28883 const char *arg;
28884 const char *name;
28885 HOST_WIDE_INT if_set;
28886 } mapping[] = {
28887 { "ppc64", "ppc64", MASK_64BIT },
28888 { "970", "ppc970", MASK_PPC_GPOPT | MASK_MFCRF | MASK_POWERPC64 },
28889 { "power4", "ppc970", 0 },
28890 { "G5", "ppc970", 0 },
28891 { "7450", "ppc7450", 0 },
28892 { "7400", "ppc7400", MASK_ALTIVEC },
28893 { "G4", "ppc7400", 0 },
28894 { "750", "ppc750", 0 },
28895 { "740", "ppc750", 0 },
28896 { "G3", "ppc750", 0 },
28897 { "604e", "ppc604e", 0 },
28898 { "604", "ppc604", 0 },
28899 { "603e", "ppc603", 0 },
28900 { "603", "ppc603", 0 },
28901 { "601", "ppc601", 0 },
28902 { NULL, "ppc", 0 } };
28903 const char *cpu_id = "";
28904 size_t i;
28906 rs6000_file_start ();
28907 darwin_file_start ();
28909 /* Determine the argument to -mcpu=. Default to G3 if not specified. */
28911 if (rs6000_default_cpu != 0 && rs6000_default_cpu[0] != '\0')
28912 cpu_id = rs6000_default_cpu;
28914 if (global_options_set.x_rs6000_cpu_index)
28915 cpu_id = processor_target_table[rs6000_cpu_index].name;
28917 /* Look through the mapping array. Pick the first name that either
28918 matches the argument, has a bit set in IF_SET that is also set
28919 in the target flags, or has a NULL name. */
28921 i = 0;
28922 while (mapping[i].arg != NULL
28923 && strcmp (mapping[i].arg, cpu_id) != 0
28924 && (mapping[i].if_set & rs6000_isa_flags) == 0)
28925 i++;
28927 fprintf (asm_out_file, "\t.machine %s\n", mapping[i].name);
28930 #endif /* TARGET_MACHO */
28932 #if TARGET_ELF
28933 static int
28934 rs6000_elf_reloc_rw_mask (void)
28936 if (flag_pic)
28937 return 3;
28938 else if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
28939 return 2;
28940 else
28941 return 0;
28944 /* Record an element in the table of global constructors. SYMBOL is
28945 a SYMBOL_REF of the function to be called; PRIORITY is a number
28946 between 0 and MAX_INIT_PRIORITY.
28948 This differs from default_named_section_asm_out_constructor in
28949 that we have special handling for -mrelocatable. */
28951 static void rs6000_elf_asm_out_constructor (rtx, int) ATTRIBUTE_UNUSED;
28952 static void
28953 rs6000_elf_asm_out_constructor (rtx symbol, int priority)
28955 const char *section = ".ctors";
28956 char buf[16];
28958 if (priority != DEFAULT_INIT_PRIORITY)
28960 sprintf (buf, ".ctors.%.5u",
28961 /* Invert the numbering so the linker puts us in the proper
28962 order; constructors are run from right to left, and the
28963 linker sorts in increasing order. */
28964 MAX_INIT_PRIORITY - priority);
28965 section = buf;
28968 switch_to_section (get_section (section, SECTION_WRITE, NULL));
28969 assemble_align (POINTER_SIZE);
28971 if (TARGET_RELOCATABLE)
28973 fputs ("\t.long (", asm_out_file);
28974 output_addr_const (asm_out_file, symbol);
28975 fputs (")@fixup\n", asm_out_file);
28977 else
28978 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
28981 static void rs6000_elf_asm_out_destructor (rtx, int) ATTRIBUTE_UNUSED;
28982 static void
28983 rs6000_elf_asm_out_destructor (rtx symbol, int priority)
28985 const char *section = ".dtors";
28986 char buf[16];
28988 if (priority != DEFAULT_INIT_PRIORITY)
28990 sprintf (buf, ".dtors.%.5u",
28991 /* Invert the numbering so the linker puts us in the proper
28992 order; constructors are run from right to left, and the
28993 linker sorts in increasing order. */
28994 MAX_INIT_PRIORITY - priority);
28995 section = buf;
28998 switch_to_section (get_section (section, SECTION_WRITE, NULL));
28999 assemble_align (POINTER_SIZE);
29001 if (TARGET_RELOCATABLE)
29003 fputs ("\t.long (", asm_out_file);
29004 output_addr_const (asm_out_file, symbol);
29005 fputs (")@fixup\n", asm_out_file);
29007 else
29008 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
29011 void
29012 rs6000_elf_declare_function_name (FILE *file, const char *name, tree decl)
29014 if (TARGET_64BIT && DEFAULT_ABI != ABI_ELFv2)
29016 fputs ("\t.section\t\".opd\",\"aw\"\n\t.align 3\n", file);
29017 ASM_OUTPUT_LABEL (file, name);
29018 fputs (DOUBLE_INT_ASM_OP, file);
29019 rs6000_output_function_entry (file, name);
29020 fputs (",.TOC.@tocbase,0\n\t.previous\n", file);
29021 if (DOT_SYMBOLS)
29023 fputs ("\t.size\t", file);
29024 assemble_name (file, name);
29025 fputs (",24\n\t.type\t.", file);
29026 assemble_name (file, name);
29027 fputs (",@function\n", file);
29028 if (TREE_PUBLIC (decl) && ! DECL_WEAK (decl))
29030 fputs ("\t.globl\t.", file);
29031 assemble_name (file, name);
29032 putc ('\n', file);
29035 else
29036 ASM_OUTPUT_TYPE_DIRECTIVE (file, name, "function");
29037 ASM_DECLARE_RESULT (file, DECL_RESULT (decl));
29038 rs6000_output_function_entry (file, name);
29039 fputs (":\n", file);
29040 return;
29043 if (TARGET_RELOCATABLE
29044 && !TARGET_SECURE_PLT
29045 && (get_pool_size () != 0 || crtl->profile)
29046 && uses_TOC ())
29048 char buf[256];
29050 (*targetm.asm_out.internal_label) (file, "LCL", rs6000_pic_labelno);
29052 ASM_GENERATE_INTERNAL_LABEL (buf, "LCTOC", 1);
29053 fprintf (file, "\t.long ");
29054 assemble_name (file, buf);
29055 putc ('-', file);
29056 ASM_GENERATE_INTERNAL_LABEL (buf, "LCF", rs6000_pic_labelno);
29057 assemble_name (file, buf);
29058 putc ('\n', file);
29061 ASM_OUTPUT_TYPE_DIRECTIVE (file, name, "function");
29062 ASM_DECLARE_RESULT (file, DECL_RESULT (decl));
29064 if (DEFAULT_ABI == ABI_AIX)
29066 const char *desc_name, *orig_name;
29068 orig_name = (*targetm.strip_name_encoding) (name);
29069 desc_name = orig_name;
29070 while (*desc_name == '.')
29071 desc_name++;
29073 if (TREE_PUBLIC (decl))
29074 fprintf (file, "\t.globl %s\n", desc_name);
29076 fprintf (file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);
29077 fprintf (file, "%s:\n", desc_name);
29078 fprintf (file, "\t.long %s\n", orig_name);
29079 fputs ("\t.long _GLOBAL_OFFSET_TABLE_\n", file);
29080 fputs ("\t.long 0\n", file);
29081 fprintf (file, "\t.previous\n");
29083 ASM_OUTPUT_LABEL (file, name);
29086 static void rs6000_elf_file_end (void) ATTRIBUTE_UNUSED;
29087 static void
29088 rs6000_elf_file_end (void)
29090 #ifdef HAVE_AS_GNU_ATTRIBUTE
29091 if (TARGET_32BIT && DEFAULT_ABI == ABI_V4)
29093 if (rs6000_passes_float)
29094 fprintf (asm_out_file, "\t.gnu_attribute 4, %d\n",
29095 ((TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_DOUBLE_FLOAT) ? 1
29096 : (TARGET_HARD_FLOAT && TARGET_FPRS && TARGET_SINGLE_FLOAT) ? 3
29097 : 2));
29098 if (rs6000_passes_vector)
29099 fprintf (asm_out_file, "\t.gnu_attribute 8, %d\n",
29100 (TARGET_ALTIVEC_ABI ? 2
29101 : TARGET_SPE_ABI ? 3
29102 : 1));
29103 if (rs6000_returns_struct)
29104 fprintf (asm_out_file, "\t.gnu_attribute 12, %d\n",
29105 aix_struct_return ? 2 : 1);
29107 #endif
29108 #if defined (POWERPC_LINUX) || defined (POWERPC_FREEBSD)
29109 if (TARGET_32BIT || DEFAULT_ABI == ABI_ELFv2)
29110 file_end_indicate_exec_stack ();
29111 #endif
29113 #endif
29115 #if TARGET_XCOFF
29116 static void
29117 rs6000_xcoff_asm_output_anchor (rtx symbol)
29119 char buffer[100];
29121 sprintf (buffer, "$ + " HOST_WIDE_INT_PRINT_DEC,
29122 SYMBOL_REF_BLOCK_OFFSET (symbol));
29123 ASM_OUTPUT_DEF (asm_out_file, XSTR (symbol, 0), buffer);
29126 static void
29127 rs6000_xcoff_asm_globalize_label (FILE *stream, const char *name)
29129 fputs (GLOBAL_ASM_OP, stream);
29130 RS6000_OUTPUT_BASENAME (stream, name);
29131 putc ('\n', stream);
29134 /* A get_unnamed_decl callback, used for read-only sections. PTR
29135 points to the section string variable. */
29137 static void
29138 rs6000_xcoff_output_readonly_section_asm_op (const void *directive)
29140 fprintf (asm_out_file, "\t.csect %s[RO],%s\n",
29141 *(const char *const *) directive,
29142 XCOFF_CSECT_DEFAULT_ALIGNMENT_STR);
29145 /* Likewise for read-write sections. */
29147 static void
29148 rs6000_xcoff_output_readwrite_section_asm_op (const void *directive)
29150 fprintf (asm_out_file, "\t.csect %s[RW],%s\n",
29151 *(const char *const *) directive,
29152 XCOFF_CSECT_DEFAULT_ALIGNMENT_STR);
29155 static void
29156 rs6000_xcoff_output_tls_section_asm_op (const void *directive)
29158 fprintf (asm_out_file, "\t.csect %s[TL],%s\n",
29159 *(const char *const *) directive,
29160 XCOFF_CSECT_DEFAULT_ALIGNMENT_STR);
29163 /* A get_unnamed_section callback, used for switching to toc_section. */
29165 static void
29166 rs6000_xcoff_output_toc_section_asm_op (const void *data ATTRIBUTE_UNUSED)
29168 if (TARGET_MINIMAL_TOC)
29170 /* toc_section is always selected at least once from
29171 rs6000_xcoff_file_start, so this is guaranteed to
29172 always be defined once and only once in each file. */
29173 if (!toc_initialized)
29175 fputs ("\t.toc\nLCTOC..1:\n", asm_out_file);
29176 fputs ("\t.tc toc_table[TC],toc_table[RW]\n", asm_out_file);
29177 toc_initialized = 1;
29179 fprintf (asm_out_file, "\t.csect toc_table[RW]%s\n",
29180 (TARGET_32BIT ? "" : ",3"));
29182 else
29183 fputs ("\t.toc\n", asm_out_file);
29186 /* Implement TARGET_ASM_INIT_SECTIONS. */
29188 static void
29189 rs6000_xcoff_asm_init_sections (void)
29191 read_only_data_section
29192 = get_unnamed_section (0, rs6000_xcoff_output_readonly_section_asm_op,
29193 &xcoff_read_only_section_name);
29195 private_data_section
29196 = get_unnamed_section (SECTION_WRITE,
29197 rs6000_xcoff_output_readwrite_section_asm_op,
29198 &xcoff_private_data_section_name);
29200 tls_data_section
29201 = get_unnamed_section (SECTION_TLS,
29202 rs6000_xcoff_output_tls_section_asm_op,
29203 &xcoff_tls_data_section_name);
29205 tls_private_data_section
29206 = get_unnamed_section (SECTION_TLS,
29207 rs6000_xcoff_output_tls_section_asm_op,
29208 &xcoff_private_data_section_name);
29210 read_only_private_data_section
29211 = get_unnamed_section (0, rs6000_xcoff_output_readonly_section_asm_op,
29212 &xcoff_private_data_section_name);
29214 toc_section
29215 = get_unnamed_section (0, rs6000_xcoff_output_toc_section_asm_op, NULL);
29217 readonly_data_section = read_only_data_section;
29218 exception_section = data_section;
29221 static int
29222 rs6000_xcoff_reloc_rw_mask (void)
29224 return 3;
29227 static void
29228 rs6000_xcoff_asm_named_section (const char *name, unsigned int flags,
29229 tree decl ATTRIBUTE_UNUSED)
29231 int smclass;
29232 static const char * const suffix[4] = { "PR", "RO", "RW", "TL" };
29234 if (flags & SECTION_CODE)
29235 smclass = 0;
29236 else if (flags & SECTION_TLS)
29237 smclass = 3;
29238 else if (flags & SECTION_WRITE)
29239 smclass = 2;
29240 else
29241 smclass = 1;
29243 fprintf (asm_out_file, "\t.csect %s%s[%s],%u\n",
29244 (flags & SECTION_CODE) ? "." : "",
29245 name, suffix[smclass], flags & SECTION_ENTSIZE);
29248 #define IN_NAMED_SECTION(DECL) \
29249 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
29250 && DECL_SECTION_NAME (DECL) != NULL_TREE)
29252 static section *
29253 rs6000_xcoff_select_section (tree decl, int reloc,
29254 unsigned HOST_WIDE_INT align)
29256 /* Place variables with alignment stricter than BIGGEST_ALIGNMENT into
29257 named section. */
29258 if (align > BIGGEST_ALIGNMENT)
29260 resolve_unique_section (decl, reloc, true);
29261 if (IN_NAMED_SECTION (decl))
29262 return get_named_section (decl, NULL, reloc);
29265 if (decl_readonly_section (decl, reloc))
29267 if (TREE_PUBLIC (decl))
29268 return read_only_data_section;
29269 else
29270 return read_only_private_data_section;
29272 else
29274 #if HAVE_AS_TLS
29275 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
29277 if (TREE_PUBLIC (decl))
29278 return tls_data_section;
29279 else if (bss_initializer_p (decl))
29281 /* Convert to COMMON to emit in BSS. */
29282 DECL_COMMON (decl) = 1;
29283 return tls_comm_section;
29285 else
29286 return tls_private_data_section;
29288 else
29289 #endif
29290 if (TREE_PUBLIC (decl))
29291 return data_section;
29292 else
29293 return private_data_section;
29297 static void
29298 rs6000_xcoff_unique_section (tree decl, int reloc ATTRIBUTE_UNUSED)
29300 const char *name;
29302 /* Use select_section for private data and uninitialized data with
29303 alignment <= BIGGEST_ALIGNMENT. */
29304 if (!TREE_PUBLIC (decl)
29305 || DECL_COMMON (decl)
29306 || (DECL_INITIAL (decl) == NULL_TREE
29307 && DECL_ALIGN (decl) <= BIGGEST_ALIGNMENT)
29308 || DECL_INITIAL (decl) == error_mark_node
29309 || (flag_zero_initialized_in_bss
29310 && initializer_zerop (DECL_INITIAL (decl))))
29311 return;
29313 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
29314 name = (*targetm.strip_name_encoding) (name);
29315 DECL_SECTION_NAME (decl) = build_string (strlen (name), name);
29318 /* Select section for constant in constant pool.
29320 On RS/6000, all constants are in the private read-only data area.
29321 However, if this is being placed in the TOC it must be output as a
29322 toc entry. */
29324 static section *
29325 rs6000_xcoff_select_rtx_section (enum machine_mode mode, rtx x,
29326 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
29328 if (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (x, mode))
29329 return toc_section;
29330 else
29331 return read_only_private_data_section;
29334 /* Remove any trailing [DS] or the like from the symbol name. */
29336 static const char *
29337 rs6000_xcoff_strip_name_encoding (const char *name)
29339 size_t len;
29340 if (*name == '*')
29341 name++;
29342 len = strlen (name);
29343 if (name[len - 1] == ']')
29344 return ggc_alloc_string (name, len - 4);
29345 else
29346 return name;
29349 /* Section attributes. AIX is always PIC. */
29351 static unsigned int
29352 rs6000_xcoff_section_type_flags (tree decl, const char *name, int reloc)
29354 unsigned int align;
29355 unsigned int flags = default_section_type_flags (decl, name, reloc);
29357 /* Align to at least UNIT size. */
29358 if ((flags & SECTION_CODE) != 0 || !decl || !DECL_P (decl))
29359 align = MIN_UNITS_PER_WORD;
29360 else
29361 /* Increase alignment of large objects if not already stricter. */
29362 align = MAX ((DECL_ALIGN (decl) / BITS_PER_UNIT),
29363 int_size_in_bytes (TREE_TYPE (decl)) > MIN_UNITS_PER_WORD
29364 ? UNITS_PER_FP_WORD : MIN_UNITS_PER_WORD);
29366 return flags | (exact_log2 (align) & SECTION_ENTSIZE);
29369 /* Output at beginning of assembler file.
29371 Initialize the section names for the RS/6000 at this point.
29373 Specify filename, including full path, to assembler.
29375 We want to go into the TOC section so at least one .toc will be emitted.
29376 Also, in order to output proper .bs/.es pairs, we need at least one static
29377 [RW] section emitted.
29379 Finally, declare mcount when profiling to make the assembler happy. */
29381 static void
29382 rs6000_xcoff_file_start (void)
29384 rs6000_gen_section_name (&xcoff_bss_section_name,
29385 main_input_filename, ".bss_");
29386 rs6000_gen_section_name (&xcoff_private_data_section_name,
29387 main_input_filename, ".rw_");
29388 rs6000_gen_section_name (&xcoff_read_only_section_name,
29389 main_input_filename, ".ro_");
29390 rs6000_gen_section_name (&xcoff_tls_data_section_name,
29391 main_input_filename, ".tls_");
29392 rs6000_gen_section_name (&xcoff_tbss_section_name,
29393 main_input_filename, ".tbss_[UL]");
29395 fputs ("\t.file\t", asm_out_file);
29396 output_quoted_string (asm_out_file, main_input_filename);
29397 fputc ('\n', asm_out_file);
29398 if (write_symbols != NO_DEBUG)
29399 switch_to_section (private_data_section);
29400 switch_to_section (text_section);
29401 if (profile_flag)
29402 fprintf (asm_out_file, "\t.extern %s\n", RS6000_MCOUNT);
29403 rs6000_file_start ();
29406 /* Output at end of assembler file.
29407 On the RS/6000, referencing data should automatically pull in text. */
29409 static void
29410 rs6000_xcoff_file_end (void)
29412 switch_to_section (text_section);
29413 fputs ("_section_.text:\n", asm_out_file);
29414 switch_to_section (data_section);
29415 fputs (TARGET_32BIT
29416 ? "\t.long _section_.text\n" : "\t.llong _section_.text\n",
29417 asm_out_file);
29420 #ifdef HAVE_AS_TLS
29421 static void
29422 rs6000_xcoff_encode_section_info (tree decl, rtx rtl, int first)
29424 rtx symbol;
29425 int flags;
29427 default_encode_section_info (decl, rtl, first);
29429 /* Careful not to prod global register variables. */
29430 if (!MEM_P (rtl))
29431 return;
29432 symbol = XEXP (rtl, 0);
29433 if (GET_CODE (symbol) != SYMBOL_REF)
29434 return;
29436 flags = SYMBOL_REF_FLAGS (symbol);
29438 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
29439 flags &= ~SYMBOL_FLAG_HAS_BLOCK_INFO;
29441 SYMBOL_REF_FLAGS (symbol) = flags;
29443 #endif /* HAVE_AS_TLS */
29444 #endif /* TARGET_XCOFF */
29446 /* Compute a (partial) cost for rtx X. Return true if the complete
29447 cost has been computed, and false if subexpressions should be
29448 scanned. In either case, *TOTAL contains the cost result. */
29450 static bool
29451 rs6000_rtx_costs (rtx x, int code, int outer_code, int opno ATTRIBUTE_UNUSED,
29452 int *total, bool speed)
29454 enum machine_mode mode = GET_MODE (x);
29456 switch (code)
29458 /* On the RS/6000, if it is valid in the insn, it is free. */
29459 case CONST_INT:
29460 if (((outer_code == SET
29461 || outer_code == PLUS
29462 || outer_code == MINUS)
29463 && (satisfies_constraint_I (x)
29464 || satisfies_constraint_L (x)))
29465 || (outer_code == AND
29466 && (satisfies_constraint_K (x)
29467 || (mode == SImode
29468 ? satisfies_constraint_L (x)
29469 : satisfies_constraint_J (x))
29470 || mask_operand (x, mode)
29471 || (mode == DImode
29472 && mask64_operand (x, DImode))))
29473 || ((outer_code == IOR || outer_code == XOR)
29474 && (satisfies_constraint_K (x)
29475 || (mode == SImode
29476 ? satisfies_constraint_L (x)
29477 : satisfies_constraint_J (x))))
29478 || outer_code == ASHIFT
29479 || outer_code == ASHIFTRT
29480 || outer_code == LSHIFTRT
29481 || outer_code == ROTATE
29482 || outer_code == ROTATERT
29483 || outer_code == ZERO_EXTRACT
29484 || (outer_code == MULT
29485 && satisfies_constraint_I (x))
29486 || ((outer_code == DIV || outer_code == UDIV
29487 || outer_code == MOD || outer_code == UMOD)
29488 && exact_log2 (INTVAL (x)) >= 0)
29489 || (outer_code == COMPARE
29490 && (satisfies_constraint_I (x)
29491 || satisfies_constraint_K (x)))
29492 || ((outer_code == EQ || outer_code == NE)
29493 && (satisfies_constraint_I (x)
29494 || satisfies_constraint_K (x)
29495 || (mode == SImode
29496 ? satisfies_constraint_L (x)
29497 : satisfies_constraint_J (x))))
29498 || (outer_code == GTU
29499 && satisfies_constraint_I (x))
29500 || (outer_code == LTU
29501 && satisfies_constraint_P (x)))
29503 *total = 0;
29504 return true;
29506 else if ((outer_code == PLUS
29507 && reg_or_add_cint_operand (x, VOIDmode))
29508 || (outer_code == MINUS
29509 && reg_or_sub_cint_operand (x, VOIDmode))
29510 || ((outer_code == SET
29511 || outer_code == IOR
29512 || outer_code == XOR)
29513 && (INTVAL (x)
29514 & ~ (unsigned HOST_WIDE_INT) 0xffffffff) == 0))
29516 *total = COSTS_N_INSNS (1);
29517 return true;
29519 /* FALLTHRU */
29521 case CONST_DOUBLE:
29522 case CONST_WIDE_INT:
29523 case CONST:
29524 case HIGH:
29525 case SYMBOL_REF:
29526 case MEM:
29527 /* When optimizing for size, MEM should be slightly more expensive
29528 than generating address, e.g., (plus (reg) (const)).
29529 L1 cache latency is about two instructions. */
29530 *total = !speed ? COSTS_N_INSNS (1) + 1 : COSTS_N_INSNS (2);
29531 return true;
29533 case LABEL_REF:
29534 *total = 0;
29535 return true;
29537 case PLUS:
29538 case MINUS:
29539 if (FLOAT_MODE_P (mode))
29540 *total = rs6000_cost->fp;
29541 else
29542 *total = COSTS_N_INSNS (1);
29543 return false;
29545 case MULT:
29546 if (GET_CODE (XEXP (x, 1)) == CONST_INT
29547 && satisfies_constraint_I (XEXP (x, 1)))
29549 if (INTVAL (XEXP (x, 1)) >= -256
29550 && INTVAL (XEXP (x, 1)) <= 255)
29551 *total = rs6000_cost->mulsi_const9;
29552 else
29553 *total = rs6000_cost->mulsi_const;
29555 else if (mode == SFmode)
29556 *total = rs6000_cost->fp;
29557 else if (FLOAT_MODE_P (mode))
29558 *total = rs6000_cost->dmul;
29559 else if (mode == DImode)
29560 *total = rs6000_cost->muldi;
29561 else
29562 *total = rs6000_cost->mulsi;
29563 return false;
29565 case FMA:
29566 if (mode == SFmode)
29567 *total = rs6000_cost->fp;
29568 else
29569 *total = rs6000_cost->dmul;
29570 break;
29572 case DIV:
29573 case MOD:
29574 if (FLOAT_MODE_P (mode))
29576 *total = mode == DFmode ? rs6000_cost->ddiv
29577 : rs6000_cost->sdiv;
29578 return false;
29580 /* FALLTHRU */
29582 case UDIV:
29583 case UMOD:
29584 if (GET_CODE (XEXP (x, 1)) == CONST_INT
29585 && exact_log2 (INTVAL (XEXP (x, 1))) >= 0)
29587 if (code == DIV || code == MOD)
29588 /* Shift, addze */
29589 *total = COSTS_N_INSNS (2);
29590 else
29591 /* Shift */
29592 *total = COSTS_N_INSNS (1);
29594 else
29596 if (GET_MODE (XEXP (x, 1)) == DImode)
29597 *total = rs6000_cost->divdi;
29598 else
29599 *total = rs6000_cost->divsi;
29601 /* Add in shift and subtract for MOD. */
29602 if (code == MOD || code == UMOD)
29603 *total += COSTS_N_INSNS (2);
29604 return false;
29606 case CTZ:
29607 case FFS:
29608 *total = COSTS_N_INSNS (4);
29609 return false;
29611 case POPCOUNT:
29612 *total = COSTS_N_INSNS (TARGET_POPCNTD ? 1 : 6);
29613 return false;
29615 case PARITY:
29616 *total = COSTS_N_INSNS (TARGET_CMPB ? 2 : 6);
29617 return false;
29619 case NOT:
29620 if (outer_code == AND || outer_code == IOR || outer_code == XOR)
29622 *total = 0;
29623 return false;
29625 /* FALLTHRU */
29627 case AND:
29628 case CLZ:
29629 case IOR:
29630 case XOR:
29631 case ZERO_EXTRACT:
29632 *total = COSTS_N_INSNS (1);
29633 return false;
29635 case ASHIFT:
29636 case ASHIFTRT:
29637 case LSHIFTRT:
29638 case ROTATE:
29639 case ROTATERT:
29640 /* Handle mul_highpart. */
29641 if (outer_code == TRUNCATE
29642 && GET_CODE (XEXP (x, 0)) == MULT)
29644 if (mode == DImode)
29645 *total = rs6000_cost->muldi;
29646 else
29647 *total = rs6000_cost->mulsi;
29648 return true;
29650 else if (outer_code == AND)
29651 *total = 0;
29652 else
29653 *total = COSTS_N_INSNS (1);
29654 return false;
29656 case SIGN_EXTEND:
29657 case ZERO_EXTEND:
29658 if (GET_CODE (XEXP (x, 0)) == MEM)
29659 *total = 0;
29660 else
29661 *total = COSTS_N_INSNS (1);
29662 return false;
29664 case COMPARE:
29665 case NEG:
29666 case ABS:
29667 if (!FLOAT_MODE_P (mode))
29669 *total = COSTS_N_INSNS (1);
29670 return false;
29672 /* FALLTHRU */
29674 case FLOAT:
29675 case UNSIGNED_FLOAT:
29676 case FIX:
29677 case UNSIGNED_FIX:
29678 case FLOAT_TRUNCATE:
29679 *total = rs6000_cost->fp;
29680 return false;
29682 case FLOAT_EXTEND:
29683 if (mode == DFmode)
29684 *total = 0;
29685 else
29686 *total = rs6000_cost->fp;
29687 return false;
29689 case UNSPEC:
29690 switch (XINT (x, 1))
29692 case UNSPEC_FRSP:
29693 *total = rs6000_cost->fp;
29694 return true;
29696 default:
29697 break;
29699 break;
29701 case CALL:
29702 case IF_THEN_ELSE:
29703 if (!speed)
29705 *total = COSTS_N_INSNS (1);
29706 return true;
29708 else if (FLOAT_MODE_P (mode)
29709 && TARGET_PPC_GFXOPT && TARGET_HARD_FLOAT && TARGET_FPRS)
29711 *total = rs6000_cost->fp;
29712 return false;
29714 break;
29716 case EQ:
29717 case GTU:
29718 case LTU:
29719 /* Carry bit requires mode == Pmode.
29720 NEG or PLUS already counted so only add one. */
29721 if (mode == Pmode
29722 && (outer_code == NEG || outer_code == PLUS))
29724 *total = COSTS_N_INSNS (1);
29725 return true;
29727 if (outer_code == SET)
29729 if (XEXP (x, 1) == const0_rtx)
29731 if (TARGET_ISEL && !TARGET_MFCRF)
29732 *total = COSTS_N_INSNS (8);
29733 else
29734 *total = COSTS_N_INSNS (2);
29735 return true;
29737 else if (mode == Pmode)
29739 *total = COSTS_N_INSNS (3);
29740 return false;
29743 /* FALLTHRU */
29745 case GT:
29746 case LT:
29747 case UNORDERED:
29748 if (outer_code == SET && (XEXP (x, 1) == const0_rtx))
29750 if (TARGET_ISEL && !TARGET_MFCRF)
29751 *total = COSTS_N_INSNS (8);
29752 else
29753 *total = COSTS_N_INSNS (2);
29754 return true;
29756 /* CC COMPARE. */
29757 if (outer_code == COMPARE)
29759 *total = 0;
29760 return true;
29762 break;
29764 default:
29765 break;
29768 return false;
29771 /* Debug form of r6000_rtx_costs that is selected if -mdebug=cost. */
29773 static bool
29774 rs6000_debug_rtx_costs (rtx x, int code, int outer_code, int opno, int *total,
29775 bool speed)
29777 bool ret = rs6000_rtx_costs (x, code, outer_code, opno, total, speed);
29779 fprintf (stderr,
29780 "\nrs6000_rtx_costs, return = %s, code = %s, outer_code = %s, "
29781 "opno = %d, total = %d, speed = %s, x:\n",
29782 ret ? "complete" : "scan inner",
29783 GET_RTX_NAME (code),
29784 GET_RTX_NAME (outer_code),
29785 opno,
29786 *total,
29787 speed ? "true" : "false");
29789 debug_rtx (x);
29791 return ret;
29794 /* Debug form of ADDRESS_COST that is selected if -mdebug=cost. */
29796 static int
29797 rs6000_debug_address_cost (rtx x, enum machine_mode mode,
29798 addr_space_t as, bool speed)
29800 int ret = TARGET_ADDRESS_COST (x, mode, as, speed);
29802 fprintf (stderr, "\nrs6000_address_cost, return = %d, speed = %s, x:\n",
29803 ret, speed ? "true" : "false");
29804 debug_rtx (x);
29806 return ret;
29810 /* A C expression returning the cost of moving data from a register of class
29811 CLASS1 to one of CLASS2. */
29813 static int
29814 rs6000_register_move_cost (enum machine_mode mode,
29815 reg_class_t from, reg_class_t to)
29817 int ret;
29819 if (TARGET_DEBUG_COST)
29820 dbg_cost_ctrl++;
29822 /* Moves from/to GENERAL_REGS. */
29823 if (reg_classes_intersect_p (to, GENERAL_REGS)
29824 || reg_classes_intersect_p (from, GENERAL_REGS))
29826 reg_class_t rclass = from;
29828 if (! reg_classes_intersect_p (to, GENERAL_REGS))
29829 rclass = to;
29831 if (rclass == FLOAT_REGS || rclass == ALTIVEC_REGS || rclass == VSX_REGS)
29832 ret = (rs6000_memory_move_cost (mode, rclass, false)
29833 + rs6000_memory_move_cost (mode, GENERAL_REGS, false));
29835 /* It's more expensive to move CR_REGS than CR0_REGS because of the
29836 shift. */
29837 else if (rclass == CR_REGS)
29838 ret = 4;
29840 /* For those processors that have slow LR/CTR moves, make them more
29841 expensive than memory in order to bias spills to memory .*/
29842 else if ((rs6000_cpu == PROCESSOR_POWER6
29843 || rs6000_cpu == PROCESSOR_POWER7
29844 || rs6000_cpu == PROCESSOR_POWER8)
29845 && reg_classes_intersect_p (rclass, LINK_OR_CTR_REGS))
29846 ret = 6 * hard_regno_nregs[0][mode];
29848 else
29849 /* A move will cost one instruction per GPR moved. */
29850 ret = 2 * hard_regno_nregs[0][mode];
29853 /* If we have VSX, we can easily move between FPR or Altivec registers. */
29854 else if (VECTOR_MEM_VSX_P (mode)
29855 && reg_classes_intersect_p (to, VSX_REGS)
29856 && reg_classes_intersect_p (from, VSX_REGS))
29857 ret = 2 * hard_regno_nregs[32][mode];
29859 /* Moving between two similar registers is just one instruction. */
29860 else if (reg_classes_intersect_p (to, from))
29861 ret = (mode == TFmode || mode == TDmode) ? 4 : 2;
29863 /* Everything else has to go through GENERAL_REGS. */
29864 else
29865 ret = (rs6000_register_move_cost (mode, GENERAL_REGS, to)
29866 + rs6000_register_move_cost (mode, from, GENERAL_REGS));
29868 if (TARGET_DEBUG_COST)
29870 if (dbg_cost_ctrl == 1)
29871 fprintf (stderr,
29872 "rs6000_register_move_cost:, ret=%d, mode=%s, from=%s, to=%s\n",
29873 ret, GET_MODE_NAME (mode), reg_class_names[from],
29874 reg_class_names[to]);
29875 dbg_cost_ctrl--;
29878 return ret;
29881 /* A C expressions returning the cost of moving data of MODE from a register to
29882 or from memory. */
29884 static int
29885 rs6000_memory_move_cost (enum machine_mode mode, reg_class_t rclass,
29886 bool in ATTRIBUTE_UNUSED)
29888 int ret;
29890 if (TARGET_DEBUG_COST)
29891 dbg_cost_ctrl++;
29893 if (reg_classes_intersect_p (rclass, GENERAL_REGS))
29894 ret = 4 * hard_regno_nregs[0][mode];
29895 else if ((reg_classes_intersect_p (rclass, FLOAT_REGS)
29896 || reg_classes_intersect_p (rclass, VSX_REGS)))
29897 ret = 4 * hard_regno_nregs[32][mode];
29898 else if (reg_classes_intersect_p (rclass, ALTIVEC_REGS))
29899 ret = 4 * hard_regno_nregs[FIRST_ALTIVEC_REGNO][mode];
29900 else
29901 ret = 4 + rs6000_register_move_cost (mode, rclass, GENERAL_REGS);
29903 if (TARGET_DEBUG_COST)
29905 if (dbg_cost_ctrl == 1)
29906 fprintf (stderr,
29907 "rs6000_memory_move_cost: ret=%d, mode=%s, rclass=%s, in=%d\n",
29908 ret, GET_MODE_NAME (mode), reg_class_names[rclass], in);
29909 dbg_cost_ctrl--;
29912 return ret;
29915 /* Returns a code for a target-specific builtin that implements
29916 reciprocal of the function, or NULL_TREE if not available. */
29918 static tree
29919 rs6000_builtin_reciprocal (unsigned int fn, bool md_fn,
29920 bool sqrt ATTRIBUTE_UNUSED)
29922 if (optimize_insn_for_size_p ())
29923 return NULL_TREE;
29925 if (md_fn)
29926 switch (fn)
29928 case VSX_BUILTIN_XVSQRTDP:
29929 if (!RS6000_RECIP_AUTO_RSQRTE_P (V2DFmode))
29930 return NULL_TREE;
29932 return rs6000_builtin_decls[VSX_BUILTIN_RSQRT_2DF];
29934 case VSX_BUILTIN_XVSQRTSP:
29935 if (!RS6000_RECIP_AUTO_RSQRTE_P (V4SFmode))
29936 return NULL_TREE;
29938 return rs6000_builtin_decls[VSX_BUILTIN_RSQRT_4SF];
29940 default:
29941 return NULL_TREE;
29944 else
29945 switch (fn)
29947 case BUILT_IN_SQRT:
29948 if (!RS6000_RECIP_AUTO_RSQRTE_P (DFmode))
29949 return NULL_TREE;
29951 return rs6000_builtin_decls[RS6000_BUILTIN_RSQRT];
29953 case BUILT_IN_SQRTF:
29954 if (!RS6000_RECIP_AUTO_RSQRTE_P (SFmode))
29955 return NULL_TREE;
29957 return rs6000_builtin_decls[RS6000_BUILTIN_RSQRTF];
29959 default:
29960 return NULL_TREE;
29964 /* Load up a constant. If the mode is a vector mode, splat the value across
29965 all of the vector elements. */
29967 static rtx
29968 rs6000_load_constant_and_splat (enum machine_mode mode, REAL_VALUE_TYPE dconst)
29970 rtx reg;
29972 if (mode == SFmode || mode == DFmode)
29974 rtx d = CONST_DOUBLE_FROM_REAL_VALUE (dconst, mode);
29975 reg = force_reg (mode, d);
29977 else if (mode == V4SFmode)
29979 rtx d = CONST_DOUBLE_FROM_REAL_VALUE (dconst, SFmode);
29980 rtvec v = gen_rtvec (4, d, d, d, d);
29981 reg = gen_reg_rtx (mode);
29982 rs6000_expand_vector_init (reg, gen_rtx_PARALLEL (mode, v));
29984 else if (mode == V2DFmode)
29986 rtx d = CONST_DOUBLE_FROM_REAL_VALUE (dconst, DFmode);
29987 rtvec v = gen_rtvec (2, d, d);
29988 reg = gen_reg_rtx (mode);
29989 rs6000_expand_vector_init (reg, gen_rtx_PARALLEL (mode, v));
29991 else
29992 gcc_unreachable ();
29994 return reg;
29997 /* Generate an FMA instruction. */
29999 static void
30000 rs6000_emit_madd (rtx target, rtx m1, rtx m2, rtx a)
30002 enum machine_mode mode = GET_MODE (target);
30003 rtx dst;
30005 dst = expand_ternary_op (mode, fma_optab, m1, m2, a, target, 0);
30006 gcc_assert (dst != NULL);
30008 if (dst != target)
30009 emit_move_insn (target, dst);
30012 /* Generate a FMSUB instruction: dst = fma(m1, m2, -a). */
30014 static void
30015 rs6000_emit_msub (rtx target, rtx m1, rtx m2, rtx a)
30017 enum machine_mode mode = GET_MODE (target);
30018 rtx dst;
30020 /* Altivec does not support fms directly;
30021 generate in terms of fma in that case. */
30022 if (optab_handler (fms_optab, mode) != CODE_FOR_nothing)
30023 dst = expand_ternary_op (mode, fms_optab, m1, m2, a, target, 0);
30024 else
30026 a = expand_unop (mode, neg_optab, a, NULL_RTX, 0);
30027 dst = expand_ternary_op (mode, fma_optab, m1, m2, a, target, 0);
30029 gcc_assert (dst != NULL);
30031 if (dst != target)
30032 emit_move_insn (target, dst);
30035 /* Generate a FNMSUB instruction: dst = -fma(m1, m2, -a). */
30037 static void
30038 rs6000_emit_nmsub (rtx dst, rtx m1, rtx m2, rtx a)
30040 enum machine_mode mode = GET_MODE (dst);
30041 rtx r;
30043 /* This is a tad more complicated, since the fnma_optab is for
30044 a different expression: fma(-m1, m2, a), which is the same
30045 thing except in the case of signed zeros.
30047 Fortunately we know that if FMA is supported that FNMSUB is
30048 also supported in the ISA. Just expand it directly. */
30050 gcc_assert (optab_handler (fma_optab, mode) != CODE_FOR_nothing);
30052 r = gen_rtx_NEG (mode, a);
30053 r = gen_rtx_FMA (mode, m1, m2, r);
30054 r = gen_rtx_NEG (mode, r);
30055 emit_insn (gen_rtx_SET (VOIDmode, dst, r));
30058 /* Newton-Raphson approximation of floating point divide DST = N/D. If NOTE_P,
30059 add a reg_note saying that this was a division. Support both scalar and
30060 vector divide. Assumes no trapping math and finite arguments. */
30062 void
30063 rs6000_emit_swdiv (rtx dst, rtx n, rtx d, bool note_p)
30065 enum machine_mode mode = GET_MODE (dst);
30066 rtx one, x0, e0, x1, xprev, eprev, xnext, enext, u, v;
30067 int i;
30069 /* Low precision estimates guarantee 5 bits of accuracy. High
30070 precision estimates guarantee 14 bits of accuracy. SFmode
30071 requires 23 bits of accuracy. DFmode requires 52 bits of
30072 accuracy. Each pass at least doubles the accuracy, leading
30073 to the following. */
30074 int passes = (TARGET_RECIP_PRECISION) ? 1 : 3;
30075 if (mode == DFmode || mode == V2DFmode)
30076 passes++;
30078 enum insn_code code = optab_handler (smul_optab, mode);
30079 insn_gen_fn gen_mul = GEN_FCN (code);
30081 gcc_assert (code != CODE_FOR_nothing);
30083 one = rs6000_load_constant_and_splat (mode, dconst1);
30085 /* x0 = 1./d estimate */
30086 x0 = gen_reg_rtx (mode);
30087 emit_insn (gen_rtx_SET (VOIDmode, x0,
30088 gen_rtx_UNSPEC (mode, gen_rtvec (1, d),
30089 UNSPEC_FRES)));
30091 /* Each iteration but the last calculates x_(i+1) = x_i * (2 - d * x_i). */
30092 if (passes > 1) {
30094 /* e0 = 1. - d * x0 */
30095 e0 = gen_reg_rtx (mode);
30096 rs6000_emit_nmsub (e0, d, x0, one);
30098 /* x1 = x0 + e0 * x0 */
30099 x1 = gen_reg_rtx (mode);
30100 rs6000_emit_madd (x1, e0, x0, x0);
30102 for (i = 0, xprev = x1, eprev = e0; i < passes - 2;
30103 ++i, xprev = xnext, eprev = enext) {
30105 /* enext = eprev * eprev */
30106 enext = gen_reg_rtx (mode);
30107 emit_insn (gen_mul (enext, eprev, eprev));
30109 /* xnext = xprev + enext * xprev */
30110 xnext = gen_reg_rtx (mode);
30111 rs6000_emit_madd (xnext, enext, xprev, xprev);
30114 } else
30115 xprev = x0;
30117 /* The last iteration calculates x_(i+1) = n * x_i * (2 - d * x_i). */
30119 /* u = n * xprev */
30120 u = gen_reg_rtx (mode);
30121 emit_insn (gen_mul (u, n, xprev));
30123 /* v = n - (d * u) */
30124 v = gen_reg_rtx (mode);
30125 rs6000_emit_nmsub (v, d, u, n);
30127 /* dst = (v * xprev) + u */
30128 rs6000_emit_madd (dst, v, xprev, u);
30130 if (note_p)
30131 add_reg_note (get_last_insn (), REG_EQUAL, gen_rtx_DIV (mode, n, d));
30134 /* Newton-Raphson approximation of single/double-precision floating point
30135 rsqrt. Assumes no trapping math and finite arguments. */
30137 void
30138 rs6000_emit_swrsqrt (rtx dst, rtx src)
30140 enum machine_mode mode = GET_MODE (src);
30141 rtx x0 = gen_reg_rtx (mode);
30142 rtx y = gen_reg_rtx (mode);
30144 /* Low precision estimates guarantee 5 bits of accuracy. High
30145 precision estimates guarantee 14 bits of accuracy. SFmode
30146 requires 23 bits of accuracy. DFmode requires 52 bits of
30147 accuracy. Each pass at least doubles the accuracy, leading
30148 to the following. */
30149 int passes = (TARGET_RECIP_PRECISION) ? 1 : 3;
30150 if (mode == DFmode || mode == V2DFmode)
30151 passes++;
30153 REAL_VALUE_TYPE dconst3_2;
30154 int i;
30155 rtx halfthree;
30156 enum insn_code code = optab_handler (smul_optab, mode);
30157 insn_gen_fn gen_mul = GEN_FCN (code);
30159 gcc_assert (code != CODE_FOR_nothing);
30161 /* Load up the constant 1.5 either as a scalar, or as a vector. */
30162 real_from_integer (&dconst3_2, VOIDmode, 3, SIGNED);
30163 SET_REAL_EXP (&dconst3_2, REAL_EXP (&dconst3_2) - 1);
30165 halfthree = rs6000_load_constant_and_splat (mode, dconst3_2);
30167 /* x0 = rsqrt estimate */
30168 emit_insn (gen_rtx_SET (VOIDmode, x0,
30169 gen_rtx_UNSPEC (mode, gen_rtvec (1, src),
30170 UNSPEC_RSQRT)));
30172 /* y = 0.5 * src = 1.5 * src - src -> fewer constants */
30173 rs6000_emit_msub (y, src, halfthree, src);
30175 for (i = 0; i < passes; i++)
30177 rtx x1 = gen_reg_rtx (mode);
30178 rtx u = gen_reg_rtx (mode);
30179 rtx v = gen_reg_rtx (mode);
30181 /* x1 = x0 * (1.5 - y * (x0 * x0)) */
30182 emit_insn (gen_mul (u, x0, x0));
30183 rs6000_emit_nmsub (v, y, u, halfthree);
30184 emit_insn (gen_mul (x1, x0, v));
30185 x0 = x1;
30188 emit_move_insn (dst, x0);
30189 return;
30192 /* Emit popcount intrinsic on TARGET_POPCNTB (Power5) and TARGET_POPCNTD
30193 (Power7) targets. DST is the target, and SRC is the argument operand. */
30195 void
30196 rs6000_emit_popcount (rtx dst, rtx src)
30198 enum machine_mode mode = GET_MODE (dst);
30199 rtx tmp1, tmp2;
30201 /* Use the PPC ISA 2.06 popcnt{w,d} instruction if we can. */
30202 if (TARGET_POPCNTD)
30204 if (mode == SImode)
30205 emit_insn (gen_popcntdsi2 (dst, src));
30206 else
30207 emit_insn (gen_popcntddi2 (dst, src));
30208 return;
30211 tmp1 = gen_reg_rtx (mode);
30213 if (mode == SImode)
30215 emit_insn (gen_popcntbsi2 (tmp1, src));
30216 tmp2 = expand_mult (SImode, tmp1, GEN_INT (0x01010101),
30217 NULL_RTX, 0);
30218 tmp2 = force_reg (SImode, tmp2);
30219 emit_insn (gen_lshrsi3 (dst, tmp2, GEN_INT (24)));
30221 else
30223 emit_insn (gen_popcntbdi2 (tmp1, src));
30224 tmp2 = expand_mult (DImode, tmp1,
30225 GEN_INT ((HOST_WIDE_INT)
30226 0x01010101 << 32 | 0x01010101),
30227 NULL_RTX, 0);
30228 tmp2 = force_reg (DImode, tmp2);
30229 emit_insn (gen_lshrdi3 (dst, tmp2, GEN_INT (56)));
30234 /* Emit parity intrinsic on TARGET_POPCNTB targets. DST is the
30235 target, and SRC is the argument operand. */
30237 void
30238 rs6000_emit_parity (rtx dst, rtx src)
30240 enum machine_mode mode = GET_MODE (dst);
30241 rtx tmp;
30243 tmp = gen_reg_rtx (mode);
30245 /* Use the PPC ISA 2.05 prtyw/prtyd instruction if we can. */
30246 if (TARGET_CMPB)
30248 if (mode == SImode)
30250 emit_insn (gen_popcntbsi2 (tmp, src));
30251 emit_insn (gen_paritysi2_cmpb (dst, tmp));
30253 else
30255 emit_insn (gen_popcntbdi2 (tmp, src));
30256 emit_insn (gen_paritydi2_cmpb (dst, tmp));
30258 return;
30261 if (mode == SImode)
30263 /* Is mult+shift >= shift+xor+shift+xor? */
30264 if (rs6000_cost->mulsi_const >= COSTS_N_INSNS (3))
30266 rtx tmp1, tmp2, tmp3, tmp4;
30268 tmp1 = gen_reg_rtx (SImode);
30269 emit_insn (gen_popcntbsi2 (tmp1, src));
30271 tmp2 = gen_reg_rtx (SImode);
30272 emit_insn (gen_lshrsi3 (tmp2, tmp1, GEN_INT (16)));
30273 tmp3 = gen_reg_rtx (SImode);
30274 emit_insn (gen_xorsi3 (tmp3, tmp1, tmp2));
30276 tmp4 = gen_reg_rtx (SImode);
30277 emit_insn (gen_lshrsi3 (tmp4, tmp3, GEN_INT (8)));
30278 emit_insn (gen_xorsi3 (tmp, tmp3, tmp4));
30280 else
30281 rs6000_emit_popcount (tmp, src);
30282 emit_insn (gen_andsi3 (dst, tmp, const1_rtx));
30284 else
30286 /* Is mult+shift >= shift+xor+shift+xor+shift+xor? */
30287 if (rs6000_cost->muldi >= COSTS_N_INSNS (5))
30289 rtx tmp1, tmp2, tmp3, tmp4, tmp5, tmp6;
30291 tmp1 = gen_reg_rtx (DImode);
30292 emit_insn (gen_popcntbdi2 (tmp1, src));
30294 tmp2 = gen_reg_rtx (DImode);
30295 emit_insn (gen_lshrdi3 (tmp2, tmp1, GEN_INT (32)));
30296 tmp3 = gen_reg_rtx (DImode);
30297 emit_insn (gen_xordi3 (tmp3, tmp1, tmp2));
30299 tmp4 = gen_reg_rtx (DImode);
30300 emit_insn (gen_lshrdi3 (tmp4, tmp3, GEN_INT (16)));
30301 tmp5 = gen_reg_rtx (DImode);
30302 emit_insn (gen_xordi3 (tmp5, tmp3, tmp4));
30304 tmp6 = gen_reg_rtx (DImode);
30305 emit_insn (gen_lshrdi3 (tmp6, tmp5, GEN_INT (8)));
30306 emit_insn (gen_xordi3 (tmp, tmp5, tmp6));
30308 else
30309 rs6000_emit_popcount (tmp, src);
30310 emit_insn (gen_anddi3 (dst, tmp, const1_rtx));
30314 /* Expand an Altivec constant permutation for little endian mode.
30315 There are two issues: First, the two input operands must be
30316 swapped so that together they form a double-wide array in LE
30317 order. Second, the vperm instruction has surprising behavior
30318 in LE mode: it interprets the elements of the source vectors
30319 in BE mode ("left to right") and interprets the elements of
30320 the destination vector in LE mode ("right to left"). To
30321 correct for this, we must subtract each element of the permute
30322 control vector from 31.
30324 For example, suppose we want to concatenate vr10 = {0, 1, 2, 3}
30325 with vr11 = {4, 5, 6, 7} and extract {0, 2, 4, 6} using a vperm.
30326 We place {0,1,2,3,8,9,10,11,16,17,18,19,24,25,26,27} in vr12 to
30327 serve as the permute control vector. Then, in BE mode,
30329 vperm 9,10,11,12
30331 places the desired result in vr9. However, in LE mode the
30332 vector contents will be
30334 vr10 = 00000003 00000002 00000001 00000000
30335 vr11 = 00000007 00000006 00000005 00000004
30337 The result of the vperm using the same permute control vector is
30339 vr9 = 05000000 07000000 01000000 03000000
30341 That is, the leftmost 4 bytes of vr10 are interpreted as the
30342 source for the rightmost 4 bytes of vr9, and so on.
30344 If we change the permute control vector to
30346 vr12 = {31,20,29,28,23,22,21,20,15,14,13,12,7,6,5,4}
30348 and issue
30350 vperm 9,11,10,12
30352 we get the desired
30354 vr9 = 00000006 00000004 00000002 00000000. */
30356 void
30357 altivec_expand_vec_perm_const_le (rtx operands[4])
30359 unsigned int i;
30360 rtx perm[16];
30361 rtx constv, unspec;
30362 rtx target = operands[0];
30363 rtx op0 = operands[1];
30364 rtx op1 = operands[2];
30365 rtx sel = operands[3];
30367 /* Unpack and adjust the constant selector. */
30368 for (i = 0; i < 16; ++i)
30370 rtx e = XVECEXP (sel, 0, i);
30371 unsigned int elt = 31 - (INTVAL (e) & 31);
30372 perm[i] = GEN_INT (elt);
30375 /* Expand to a permute, swapping the inputs and using the
30376 adjusted selector. */
30377 if (!REG_P (op0))
30378 op0 = force_reg (V16QImode, op0);
30379 if (!REG_P (op1))
30380 op1 = force_reg (V16QImode, op1);
30382 constv = gen_rtx_CONST_VECTOR (V16QImode, gen_rtvec_v (16, perm));
30383 constv = force_reg (V16QImode, constv);
30384 unspec = gen_rtx_UNSPEC (V16QImode, gen_rtvec (3, op1, op0, constv),
30385 UNSPEC_VPERM);
30386 if (!REG_P (target))
30388 rtx tmp = gen_reg_rtx (V16QImode);
30389 emit_move_insn (tmp, unspec);
30390 unspec = tmp;
30393 emit_move_insn (target, unspec);
30396 /* Similarly to altivec_expand_vec_perm_const_le, we must adjust the
30397 permute control vector. But here it's not a constant, so we must
30398 generate a vector NAND or NOR to do the adjustment. */
30400 void
30401 altivec_expand_vec_perm_le (rtx operands[4])
30403 rtx notx, iorx, unspec;
30404 rtx target = operands[0];
30405 rtx op0 = operands[1];
30406 rtx op1 = operands[2];
30407 rtx sel = operands[3];
30408 rtx tmp = target;
30409 rtx norreg = gen_reg_rtx (V16QImode);
30410 enum machine_mode mode = GET_MODE (target);
30412 /* Get everything in regs so the pattern matches. */
30413 if (!REG_P (op0))
30414 op0 = force_reg (mode, op0);
30415 if (!REG_P (op1))
30416 op1 = force_reg (mode, op1);
30417 if (!REG_P (sel))
30418 sel = force_reg (V16QImode, sel);
30419 if (!REG_P (target))
30420 tmp = gen_reg_rtx (mode);
30422 /* Invert the selector with a VNAND if available, else a VNOR.
30423 The VNAND is preferred for future fusion opportunities. */
30424 notx = gen_rtx_NOT (V16QImode, sel);
30425 iorx = (TARGET_P8_VECTOR
30426 ? gen_rtx_IOR (V16QImode, notx, notx)
30427 : gen_rtx_AND (V16QImode, notx, notx));
30428 emit_insn (gen_rtx_SET (VOIDmode, norreg, iorx));
30430 /* Permute with operands reversed and adjusted selector. */
30431 unspec = gen_rtx_UNSPEC (mode, gen_rtvec (3, op1, op0, norreg),
30432 UNSPEC_VPERM);
30434 /* Copy into target, possibly by way of a register. */
30435 if (!REG_P (target))
30437 emit_move_insn (tmp, unspec);
30438 unspec = tmp;
30441 emit_move_insn (target, unspec);
30444 /* Expand an Altivec constant permutation. Return true if we match
30445 an efficient implementation; false to fall back to VPERM. */
30447 bool
30448 altivec_expand_vec_perm_const (rtx operands[4])
30450 struct altivec_perm_insn {
30451 HOST_WIDE_INT mask;
30452 enum insn_code impl;
30453 unsigned char perm[16];
30455 static const struct altivec_perm_insn patterns[] = {
30456 { OPTION_MASK_ALTIVEC, CODE_FOR_altivec_vpkuhum_direct,
30457 { 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31 } },
30458 { OPTION_MASK_ALTIVEC, CODE_FOR_altivec_vpkuwum_direct,
30459 { 2, 3, 6, 7, 10, 11, 14, 15, 18, 19, 22, 23, 26, 27, 30, 31 } },
30460 { OPTION_MASK_ALTIVEC,
30461 (BYTES_BIG_ENDIAN ? CODE_FOR_altivec_vmrghb_direct
30462 : CODE_FOR_altivec_vmrglb_direct),
30463 { 0, 16, 1, 17, 2, 18, 3, 19, 4, 20, 5, 21, 6, 22, 7, 23 } },
30464 { OPTION_MASK_ALTIVEC,
30465 (BYTES_BIG_ENDIAN ? CODE_FOR_altivec_vmrghh_direct
30466 : CODE_FOR_altivec_vmrglh_direct),
30467 { 0, 1, 16, 17, 2, 3, 18, 19, 4, 5, 20, 21, 6, 7, 22, 23 } },
30468 { OPTION_MASK_ALTIVEC,
30469 (BYTES_BIG_ENDIAN ? CODE_FOR_altivec_vmrghw_direct
30470 : CODE_FOR_altivec_vmrglw_direct),
30471 { 0, 1, 2, 3, 16, 17, 18, 19, 4, 5, 6, 7, 20, 21, 22, 23 } },
30472 { OPTION_MASK_ALTIVEC,
30473 (BYTES_BIG_ENDIAN ? CODE_FOR_altivec_vmrglb_direct
30474 : CODE_FOR_altivec_vmrghb_direct),
30475 { 8, 24, 9, 25, 10, 26, 11, 27, 12, 28, 13, 29, 14, 30, 15, 31 } },
30476 { OPTION_MASK_ALTIVEC,
30477 (BYTES_BIG_ENDIAN ? CODE_FOR_altivec_vmrglh_direct
30478 : CODE_FOR_altivec_vmrghh_direct),
30479 { 8, 9, 24, 25, 10, 11, 26, 27, 12, 13, 28, 29, 14, 15, 30, 31 } },
30480 { OPTION_MASK_ALTIVEC,
30481 (BYTES_BIG_ENDIAN ? CODE_FOR_altivec_vmrglw_direct
30482 : CODE_FOR_altivec_vmrghw_direct),
30483 { 8, 9, 10, 11, 24, 25, 26, 27, 12, 13, 14, 15, 28, 29, 30, 31 } },
30484 { OPTION_MASK_P8_VECTOR, CODE_FOR_p8_vmrgew,
30485 { 0, 1, 2, 3, 16, 17, 18, 19, 8, 9, 10, 11, 24, 25, 26, 27 } },
30486 { OPTION_MASK_P8_VECTOR, CODE_FOR_p8_vmrgow,
30487 { 4, 5, 6, 7, 20, 21, 22, 23, 12, 13, 14, 15, 28, 29, 30, 31 } }
30490 unsigned int i, j, elt, which;
30491 unsigned char perm[16];
30492 rtx target, op0, op1, sel, x;
30493 bool one_vec;
30495 target = operands[0];
30496 op0 = operands[1];
30497 op1 = operands[2];
30498 sel = operands[3];
30500 /* Unpack the constant selector. */
30501 for (i = which = 0; i < 16; ++i)
30503 rtx e = XVECEXP (sel, 0, i);
30504 elt = INTVAL (e) & 31;
30505 which |= (elt < 16 ? 1 : 2);
30506 perm[i] = elt;
30509 /* Simplify the constant selector based on operands. */
30510 switch (which)
30512 default:
30513 gcc_unreachable ();
30515 case 3:
30516 one_vec = false;
30517 if (!rtx_equal_p (op0, op1))
30518 break;
30519 /* FALLTHRU */
30521 case 2:
30522 for (i = 0; i < 16; ++i)
30523 perm[i] &= 15;
30524 op0 = op1;
30525 one_vec = true;
30526 break;
30528 case 1:
30529 op1 = op0;
30530 one_vec = true;
30531 break;
30534 /* Look for splat patterns. */
30535 if (one_vec)
30537 elt = perm[0];
30539 for (i = 0; i < 16; ++i)
30540 if (perm[i] != elt)
30541 break;
30542 if (i == 16)
30544 if (!BYTES_BIG_ENDIAN)
30545 elt = 15 - elt;
30546 emit_insn (gen_altivec_vspltb_direct (target, op0, GEN_INT (elt)));
30547 return true;
30550 if (elt % 2 == 0)
30552 for (i = 0; i < 16; i += 2)
30553 if (perm[i] != elt || perm[i + 1] != elt + 1)
30554 break;
30555 if (i == 16)
30557 int field = BYTES_BIG_ENDIAN ? elt / 2 : 7 - elt / 2;
30558 x = gen_reg_rtx (V8HImode);
30559 emit_insn (gen_altivec_vsplth_direct (x, gen_lowpart (V8HImode, op0),
30560 GEN_INT (field)));
30561 emit_move_insn (target, gen_lowpart (V16QImode, x));
30562 return true;
30566 if (elt % 4 == 0)
30568 for (i = 0; i < 16; i += 4)
30569 if (perm[i] != elt
30570 || perm[i + 1] != elt + 1
30571 || perm[i + 2] != elt + 2
30572 || perm[i + 3] != elt + 3)
30573 break;
30574 if (i == 16)
30576 int field = BYTES_BIG_ENDIAN ? elt / 4 : 3 - elt / 4;
30577 x = gen_reg_rtx (V4SImode);
30578 emit_insn (gen_altivec_vspltw_direct (x, gen_lowpart (V4SImode, op0),
30579 GEN_INT (field)));
30580 emit_move_insn (target, gen_lowpart (V16QImode, x));
30581 return true;
30586 /* Look for merge and pack patterns. */
30587 for (j = 0; j < ARRAY_SIZE (patterns); ++j)
30589 bool swapped;
30591 if ((patterns[j].mask & rs6000_isa_flags) == 0)
30592 continue;
30594 elt = patterns[j].perm[0];
30595 if (perm[0] == elt)
30596 swapped = false;
30597 else if (perm[0] == elt + 16)
30598 swapped = true;
30599 else
30600 continue;
30601 for (i = 1; i < 16; ++i)
30603 elt = patterns[j].perm[i];
30604 if (swapped)
30605 elt = (elt >= 16 ? elt - 16 : elt + 16);
30606 else if (one_vec && elt >= 16)
30607 elt -= 16;
30608 if (perm[i] != elt)
30609 break;
30611 if (i == 16)
30613 enum insn_code icode = patterns[j].impl;
30614 enum machine_mode omode = insn_data[icode].operand[0].mode;
30615 enum machine_mode imode = insn_data[icode].operand[1].mode;
30617 /* For little-endian, don't use vpkuwum and vpkuhum if the
30618 underlying vector type is not V4SI and V8HI, respectively.
30619 For example, using vpkuwum with a V8HI picks up the even
30620 halfwords (BE numbering) when the even halfwords (LE
30621 numbering) are what we need. */
30622 if (!BYTES_BIG_ENDIAN
30623 && icode == CODE_FOR_altivec_vpkuwum_direct
30624 && ((GET_CODE (op0) == REG
30625 && GET_MODE (op0) != V4SImode)
30626 || (GET_CODE (op0) == SUBREG
30627 && GET_MODE (XEXP (op0, 0)) != V4SImode)))
30628 continue;
30629 if (!BYTES_BIG_ENDIAN
30630 && icode == CODE_FOR_altivec_vpkuhum_direct
30631 && ((GET_CODE (op0) == REG
30632 && GET_MODE (op0) != V8HImode)
30633 || (GET_CODE (op0) == SUBREG
30634 && GET_MODE (XEXP (op0, 0)) != V8HImode)))
30635 continue;
30637 /* For little-endian, the two input operands must be swapped
30638 (or swapped back) to ensure proper right-to-left numbering
30639 from 0 to 2N-1. */
30640 if (swapped ^ !BYTES_BIG_ENDIAN)
30641 x = op0, op0 = op1, op1 = x;
30642 if (imode != V16QImode)
30644 op0 = gen_lowpart (imode, op0);
30645 op1 = gen_lowpart (imode, op1);
30647 if (omode == V16QImode)
30648 x = target;
30649 else
30650 x = gen_reg_rtx (omode);
30651 emit_insn (GEN_FCN (icode) (x, op0, op1));
30652 if (omode != V16QImode)
30653 emit_move_insn (target, gen_lowpart (V16QImode, x));
30654 return true;
30658 if (!BYTES_BIG_ENDIAN)
30660 altivec_expand_vec_perm_const_le (operands);
30661 return true;
30664 return false;
30667 /* Expand a Paired Single, VSX Permute Doubleword, or SPE constant permutation.
30668 Return true if we match an efficient implementation. */
30670 static bool
30671 rs6000_expand_vec_perm_const_1 (rtx target, rtx op0, rtx op1,
30672 unsigned char perm0, unsigned char perm1)
30674 rtx x;
30676 /* If both selectors come from the same operand, fold to single op. */
30677 if ((perm0 & 2) == (perm1 & 2))
30679 if (perm0 & 2)
30680 op0 = op1;
30681 else
30682 op1 = op0;
30684 /* If both operands are equal, fold to simpler permutation. */
30685 if (rtx_equal_p (op0, op1))
30687 perm0 = perm0 & 1;
30688 perm1 = (perm1 & 1) + 2;
30690 /* If the first selector comes from the second operand, swap. */
30691 else if (perm0 & 2)
30693 if (perm1 & 2)
30694 return false;
30695 perm0 -= 2;
30696 perm1 += 2;
30697 x = op0, op0 = op1, op1 = x;
30699 /* If the second selector does not come from the second operand, fail. */
30700 else if ((perm1 & 2) == 0)
30701 return false;
30703 /* Success! */
30704 if (target != NULL)
30706 enum machine_mode vmode, dmode;
30707 rtvec v;
30709 vmode = GET_MODE (target);
30710 gcc_assert (GET_MODE_NUNITS (vmode) == 2);
30711 dmode = mode_for_vector (GET_MODE_INNER (vmode), 4);
30712 x = gen_rtx_VEC_CONCAT (dmode, op0, op1);
30713 v = gen_rtvec (2, GEN_INT (perm0), GEN_INT (perm1));
30714 x = gen_rtx_VEC_SELECT (vmode, x, gen_rtx_PARALLEL (VOIDmode, v));
30715 emit_insn (gen_rtx_SET (VOIDmode, target, x));
30717 return true;
30720 bool
30721 rs6000_expand_vec_perm_const (rtx operands[4])
30723 rtx target, op0, op1, sel;
30724 unsigned char perm0, perm1;
30726 target = operands[0];
30727 op0 = operands[1];
30728 op1 = operands[2];
30729 sel = operands[3];
30731 /* Unpack the constant selector. */
30732 perm0 = INTVAL (XVECEXP (sel, 0, 0)) & 3;
30733 perm1 = INTVAL (XVECEXP (sel, 0, 1)) & 3;
30735 return rs6000_expand_vec_perm_const_1 (target, op0, op1, perm0, perm1);
30738 /* Test whether a constant permutation is supported. */
30740 static bool
30741 rs6000_vectorize_vec_perm_const_ok (enum machine_mode vmode,
30742 const unsigned char *sel)
30744 /* AltiVec (and thus VSX) can handle arbitrary permutations. */
30745 if (TARGET_ALTIVEC)
30746 return true;
30748 /* Check for ps_merge* or evmerge* insns. */
30749 if ((TARGET_PAIRED_FLOAT && vmode == V2SFmode)
30750 || (TARGET_SPE && vmode == V2SImode))
30752 rtx op0 = gen_raw_REG (vmode, LAST_VIRTUAL_REGISTER + 1);
30753 rtx op1 = gen_raw_REG (vmode, LAST_VIRTUAL_REGISTER + 2);
30754 return rs6000_expand_vec_perm_const_1 (NULL, op0, op1, sel[0], sel[1]);
30757 return false;
30760 /* A subroutine for rs6000_expand_extract_even & rs6000_expand_interleave. */
30762 static void
30763 rs6000_do_expand_vec_perm (rtx target, rtx op0, rtx op1,
30764 enum machine_mode vmode, unsigned nelt, rtx perm[])
30766 enum machine_mode imode;
30767 rtx x;
30769 imode = vmode;
30770 if (GET_MODE_CLASS (vmode) != MODE_VECTOR_INT)
30772 imode = GET_MODE_INNER (vmode);
30773 imode = mode_for_size (GET_MODE_BITSIZE (imode), MODE_INT, 0);
30774 imode = mode_for_vector (imode, nelt);
30777 x = gen_rtx_CONST_VECTOR (imode, gen_rtvec_v (nelt, perm));
30778 x = expand_vec_perm (vmode, op0, op1, x, target);
30779 if (x != target)
30780 emit_move_insn (target, x);
30783 /* Expand an extract even operation. */
30785 void
30786 rs6000_expand_extract_even (rtx target, rtx op0, rtx op1)
30788 enum machine_mode vmode = GET_MODE (target);
30789 unsigned i, nelt = GET_MODE_NUNITS (vmode);
30790 rtx perm[16];
30792 for (i = 0; i < nelt; i++)
30793 perm[i] = GEN_INT (i * 2);
30795 rs6000_do_expand_vec_perm (target, op0, op1, vmode, nelt, perm);
30798 /* Expand a vector interleave operation. */
30800 void
30801 rs6000_expand_interleave (rtx target, rtx op0, rtx op1, bool highp)
30803 enum machine_mode vmode = GET_MODE (target);
30804 unsigned i, high, nelt = GET_MODE_NUNITS (vmode);
30805 rtx perm[16];
30807 high = (highp ? 0 : nelt / 2);
30808 for (i = 0; i < nelt / 2; i++)
30810 perm[i * 2] = GEN_INT (i + high);
30811 perm[i * 2 + 1] = GEN_INT (i + nelt + high);
30814 rs6000_do_expand_vec_perm (target, op0, op1, vmode, nelt, perm);
30817 /* Return an RTX representing where to find the function value of a
30818 function returning MODE. */
30819 static rtx
30820 rs6000_complex_function_value (enum machine_mode mode)
30822 unsigned int regno;
30823 rtx r1, r2;
30824 enum machine_mode inner = GET_MODE_INNER (mode);
30825 unsigned int inner_bytes = GET_MODE_SIZE (inner);
30827 if (FLOAT_MODE_P (mode) && TARGET_HARD_FLOAT && TARGET_FPRS)
30828 regno = FP_ARG_RETURN;
30829 else
30831 regno = GP_ARG_RETURN;
30833 /* 32-bit is OK since it'll go in r3/r4. */
30834 if (TARGET_32BIT && inner_bytes >= 4)
30835 return gen_rtx_REG (mode, regno);
30838 if (inner_bytes >= 8)
30839 return gen_rtx_REG (mode, regno);
30841 r1 = gen_rtx_EXPR_LIST (inner, gen_rtx_REG (inner, regno),
30842 const0_rtx);
30843 r2 = gen_rtx_EXPR_LIST (inner, gen_rtx_REG (inner, regno + 1),
30844 GEN_INT (inner_bytes));
30845 return gen_rtx_PARALLEL (mode, gen_rtvec (2, r1, r2));
30848 /* Target hook for TARGET_FUNCTION_VALUE.
30850 On the SPE, both FPs and vectors are returned in r3.
30852 On RS/6000 an integer value is in r3 and a floating-point value is in
30853 fp1, unless -msoft-float. */
30855 static rtx
30856 rs6000_function_value (const_tree valtype,
30857 const_tree fn_decl_or_type ATTRIBUTE_UNUSED,
30858 bool outgoing ATTRIBUTE_UNUSED)
30860 enum machine_mode mode;
30861 unsigned int regno;
30862 enum machine_mode elt_mode;
30863 int n_elts;
30865 /* Special handling for structs in darwin64. */
30866 if (TARGET_MACHO
30867 && rs6000_darwin64_struct_check_p (TYPE_MODE (valtype), valtype))
30869 CUMULATIVE_ARGS valcum;
30870 rtx valret;
30872 valcum.words = 0;
30873 valcum.fregno = FP_ARG_MIN_REG;
30874 valcum.vregno = ALTIVEC_ARG_MIN_REG;
30875 /* Do a trial code generation as if this were going to be passed as
30876 an argument; if any part goes in memory, we return NULL. */
30877 valret = rs6000_darwin64_record_arg (&valcum, valtype, true, /* retval= */ true);
30878 if (valret)
30879 return valret;
30880 /* Otherwise fall through to standard ABI rules. */
30883 /* The ELFv2 ABI returns homogeneous VFP aggregates in registers. */
30884 if (rs6000_discover_homogeneous_aggregate (TYPE_MODE (valtype), valtype,
30885 &elt_mode, &n_elts))
30887 int first_reg, n_regs, i;
30888 rtx par;
30890 if (SCALAR_FLOAT_MODE_P (elt_mode))
30892 /* _Decimal128 must use even/odd register pairs. */
30893 first_reg = (elt_mode == TDmode) ? FP_ARG_RETURN + 1 : FP_ARG_RETURN;
30894 n_regs = (GET_MODE_SIZE (elt_mode) + 7) >> 3;
30896 else
30898 first_reg = ALTIVEC_ARG_RETURN;
30899 n_regs = 1;
30902 par = gen_rtx_PARALLEL (TYPE_MODE (valtype), rtvec_alloc (n_elts));
30903 for (i = 0; i < n_elts; i++)
30905 rtx r = gen_rtx_REG (elt_mode, first_reg + i * n_regs);
30906 rtx off = GEN_INT (i * GET_MODE_SIZE (elt_mode));
30907 XVECEXP (par, 0, i) = gen_rtx_EXPR_LIST (VOIDmode, r, off);
30910 return par;
30913 if (TARGET_32BIT && TARGET_POWERPC64 && TYPE_MODE (valtype) == DImode)
30915 /* Long long return value need be split in -mpowerpc64, 32bit ABI. */
30916 return gen_rtx_PARALLEL (DImode,
30917 gen_rtvec (2,
30918 gen_rtx_EXPR_LIST (VOIDmode,
30919 gen_rtx_REG (SImode, GP_ARG_RETURN),
30920 const0_rtx),
30921 gen_rtx_EXPR_LIST (VOIDmode,
30922 gen_rtx_REG (SImode,
30923 GP_ARG_RETURN + 1),
30924 GEN_INT (4))));
30926 if (TARGET_32BIT && TARGET_POWERPC64 && TYPE_MODE (valtype) == DCmode)
30928 return gen_rtx_PARALLEL (DCmode,
30929 gen_rtvec (4,
30930 gen_rtx_EXPR_LIST (VOIDmode,
30931 gen_rtx_REG (SImode, GP_ARG_RETURN),
30932 const0_rtx),
30933 gen_rtx_EXPR_LIST (VOIDmode,
30934 gen_rtx_REG (SImode,
30935 GP_ARG_RETURN + 1),
30936 GEN_INT (4)),
30937 gen_rtx_EXPR_LIST (VOIDmode,
30938 gen_rtx_REG (SImode,
30939 GP_ARG_RETURN + 2),
30940 GEN_INT (8)),
30941 gen_rtx_EXPR_LIST (VOIDmode,
30942 gen_rtx_REG (SImode,
30943 GP_ARG_RETURN + 3),
30944 GEN_INT (12))));
30947 mode = TYPE_MODE (valtype);
30948 if ((INTEGRAL_TYPE_P (valtype) && GET_MODE_BITSIZE (mode) < BITS_PER_WORD)
30949 || POINTER_TYPE_P (valtype))
30950 mode = TARGET_32BIT ? SImode : DImode;
30952 if (DECIMAL_FLOAT_MODE_P (mode) && TARGET_HARD_FLOAT && TARGET_FPRS)
30953 /* _Decimal128 must use an even/odd register pair. */
30954 regno = (mode == TDmode) ? FP_ARG_RETURN + 1 : FP_ARG_RETURN;
30955 else if (SCALAR_FLOAT_TYPE_P (valtype) && TARGET_HARD_FLOAT && TARGET_FPRS
30956 && ((TARGET_SINGLE_FLOAT && (mode == SFmode)) || TARGET_DOUBLE_FLOAT))
30957 regno = FP_ARG_RETURN;
30958 else if (TREE_CODE (valtype) == COMPLEX_TYPE
30959 && targetm.calls.split_complex_arg)
30960 return rs6000_complex_function_value (mode);
30961 /* VSX is a superset of Altivec and adds V2DImode/V2DFmode. Since the same
30962 return register is used in both cases, and we won't see V2DImode/V2DFmode
30963 for pure altivec, combine the two cases. */
30964 else if (TREE_CODE (valtype) == VECTOR_TYPE
30965 && TARGET_ALTIVEC && TARGET_ALTIVEC_ABI
30966 && ALTIVEC_OR_VSX_VECTOR_MODE (mode))
30967 regno = ALTIVEC_ARG_RETURN;
30968 else if (TARGET_E500_DOUBLE && TARGET_HARD_FLOAT
30969 && (mode == DFmode || mode == DCmode
30970 || mode == TFmode || mode == TCmode))
30971 return spe_build_register_parallel (mode, GP_ARG_RETURN);
30972 else
30973 regno = GP_ARG_RETURN;
30975 return gen_rtx_REG (mode, regno);
30978 /* Define how to find the value returned by a library function
30979 assuming the value has mode MODE. */
30981 rs6000_libcall_value (enum machine_mode mode)
30983 unsigned int regno;
30985 if (TARGET_32BIT && TARGET_POWERPC64 && mode == DImode)
30987 /* Long long return value need be split in -mpowerpc64, 32bit ABI. */
30988 return gen_rtx_PARALLEL (DImode,
30989 gen_rtvec (2,
30990 gen_rtx_EXPR_LIST (VOIDmode,
30991 gen_rtx_REG (SImode, GP_ARG_RETURN),
30992 const0_rtx),
30993 gen_rtx_EXPR_LIST (VOIDmode,
30994 gen_rtx_REG (SImode,
30995 GP_ARG_RETURN + 1),
30996 GEN_INT (4))));
30999 if (DECIMAL_FLOAT_MODE_P (mode) && TARGET_HARD_FLOAT && TARGET_FPRS)
31000 /* _Decimal128 must use an even/odd register pair. */
31001 regno = (mode == TDmode) ? FP_ARG_RETURN + 1 : FP_ARG_RETURN;
31002 else if (SCALAR_FLOAT_MODE_P (mode)
31003 && TARGET_HARD_FLOAT && TARGET_FPRS
31004 && ((TARGET_SINGLE_FLOAT && mode == SFmode) || TARGET_DOUBLE_FLOAT))
31005 regno = FP_ARG_RETURN;
31006 /* VSX is a superset of Altivec and adds V2DImode/V2DFmode. Since the same
31007 return register is used in both cases, and we won't see V2DImode/V2DFmode
31008 for pure altivec, combine the two cases. */
31009 else if (ALTIVEC_OR_VSX_VECTOR_MODE (mode)
31010 && TARGET_ALTIVEC && TARGET_ALTIVEC_ABI)
31011 regno = ALTIVEC_ARG_RETURN;
31012 else if (COMPLEX_MODE_P (mode) && targetm.calls.split_complex_arg)
31013 return rs6000_complex_function_value (mode);
31014 else if (TARGET_E500_DOUBLE && TARGET_HARD_FLOAT
31015 && (mode == DFmode || mode == DCmode
31016 || mode == TFmode || mode == TCmode))
31017 return spe_build_register_parallel (mode, GP_ARG_RETURN);
31018 else
31019 regno = GP_ARG_RETURN;
31021 return gen_rtx_REG (mode, regno);
31025 /* Return true if we use LRA instead of reload pass. */
31026 static bool
31027 rs6000_lra_p (void)
31029 return rs6000_lra_flag;
31032 /* Given FROM and TO register numbers, say whether this elimination is allowed.
31033 Frame pointer elimination is automatically handled.
31035 For the RS/6000, if frame pointer elimination is being done, we would like
31036 to convert ap into fp, not sp.
31038 We need r30 if -mminimal-toc was specified, and there are constant pool
31039 references. */
31041 static bool
31042 rs6000_can_eliminate (const int from, const int to)
31044 return (from == ARG_POINTER_REGNUM && to == STACK_POINTER_REGNUM
31045 ? ! frame_pointer_needed
31046 : from == RS6000_PIC_OFFSET_TABLE_REGNUM
31047 ? ! TARGET_MINIMAL_TOC || TARGET_NO_TOC || get_pool_size () == 0
31048 : true);
31051 /* Define the offset between two registers, FROM to be eliminated and its
31052 replacement TO, at the start of a routine. */
31053 HOST_WIDE_INT
31054 rs6000_initial_elimination_offset (int from, int to)
31056 rs6000_stack_t *info = rs6000_stack_info ();
31057 HOST_WIDE_INT offset;
31059 if (from == HARD_FRAME_POINTER_REGNUM && to == STACK_POINTER_REGNUM)
31060 offset = info->push_p ? 0 : -info->total_size;
31061 else if (from == FRAME_POINTER_REGNUM && to == STACK_POINTER_REGNUM)
31063 offset = info->push_p ? 0 : -info->total_size;
31064 if (FRAME_GROWS_DOWNWARD)
31065 offset += info->fixed_size + info->vars_size + info->parm_size;
31067 else if (from == FRAME_POINTER_REGNUM && to == HARD_FRAME_POINTER_REGNUM)
31068 offset = FRAME_GROWS_DOWNWARD
31069 ? info->fixed_size + info->vars_size + info->parm_size
31070 : 0;
31071 else if (from == ARG_POINTER_REGNUM && to == HARD_FRAME_POINTER_REGNUM)
31072 offset = info->total_size;
31073 else if (from == ARG_POINTER_REGNUM && to == STACK_POINTER_REGNUM)
31074 offset = info->push_p ? info->total_size : 0;
31075 else if (from == RS6000_PIC_OFFSET_TABLE_REGNUM)
31076 offset = 0;
31077 else
31078 gcc_unreachable ();
31080 return offset;
31083 static rtx
31084 rs6000_dwarf_register_span (rtx reg)
31086 rtx parts[8];
31087 int i, words;
31088 unsigned regno = REGNO (reg);
31089 enum machine_mode mode = GET_MODE (reg);
31091 if (TARGET_SPE
31092 && regno < 32
31093 && (SPE_VECTOR_MODE (GET_MODE (reg))
31094 || (TARGET_E500_DOUBLE && FLOAT_MODE_P (mode)
31095 && mode != SFmode && mode != SDmode && mode != SCmode)))
31097 else
31098 return NULL_RTX;
31100 regno = REGNO (reg);
31102 /* The duality of the SPE register size wreaks all kinds of havoc.
31103 This is a way of distinguishing r0 in 32-bits from r0 in
31104 64-bits. */
31105 words = (GET_MODE_SIZE (mode) + UNITS_PER_FP_WORD - 1) / UNITS_PER_FP_WORD;
31106 gcc_assert (words <= 4);
31107 for (i = 0; i < words; i++, regno++)
31109 if (BYTES_BIG_ENDIAN)
31111 parts[2 * i] = gen_rtx_REG (SImode, regno + 1200);
31112 parts[2 * i + 1] = gen_rtx_REG (SImode, regno);
31114 else
31116 parts[2 * i] = gen_rtx_REG (SImode, regno);
31117 parts[2 * i + 1] = gen_rtx_REG (SImode, regno + 1200);
31121 return gen_rtx_PARALLEL (VOIDmode, gen_rtvec_v (words * 2, parts));
31124 /* Fill in sizes for SPE register high parts in table used by unwinder. */
31126 static void
31127 rs6000_init_dwarf_reg_sizes_extra (tree address)
31129 if (TARGET_SPE)
31131 int i;
31132 enum machine_mode mode = TYPE_MODE (char_type_node);
31133 rtx addr = expand_expr (address, NULL_RTX, VOIDmode, EXPAND_NORMAL);
31134 rtx mem = gen_rtx_MEM (BLKmode, addr);
31135 rtx value = gen_int_mode (4, mode);
31137 for (i = 1201; i < 1232; i++)
31139 int column = DWARF_REG_TO_UNWIND_COLUMN (i);
31140 HOST_WIDE_INT offset
31141 = DWARF_FRAME_REGNUM (column) * GET_MODE_SIZE (mode);
31143 emit_move_insn (adjust_address (mem, mode, offset), value);
31147 if (TARGET_MACHO && ! TARGET_ALTIVEC)
31149 int i;
31150 enum machine_mode mode = TYPE_MODE (char_type_node);
31151 rtx addr = expand_expr (address, NULL_RTX, VOIDmode, EXPAND_NORMAL);
31152 rtx mem = gen_rtx_MEM (BLKmode, addr);
31153 rtx value = gen_int_mode (16, mode);
31155 /* On Darwin, libgcc may be built to run on both G3 and G4/5.
31156 The unwinder still needs to know the size of Altivec registers. */
31158 for (i = FIRST_ALTIVEC_REGNO; i < LAST_ALTIVEC_REGNO+1; i++)
31160 int column = DWARF_REG_TO_UNWIND_COLUMN (i);
31161 HOST_WIDE_INT offset
31162 = DWARF_FRAME_REGNUM (column) * GET_MODE_SIZE (mode);
31164 emit_move_insn (adjust_address (mem, mode, offset), value);
31169 /* Map internal gcc register numbers to DWARF2 register numbers. */
31171 unsigned int
31172 rs6000_dbx_register_number (unsigned int regno)
31174 if (regno <= 63 || write_symbols != DWARF2_DEBUG)
31175 return regno;
31176 if (regno == LR_REGNO)
31177 return 108;
31178 if (regno == CTR_REGNO)
31179 return 109;
31180 if (CR_REGNO_P (regno))
31181 return regno - CR0_REGNO + 86;
31182 if (regno == CA_REGNO)
31183 return 101; /* XER */
31184 if (ALTIVEC_REGNO_P (regno))
31185 return regno - FIRST_ALTIVEC_REGNO + 1124;
31186 if (regno == VRSAVE_REGNO)
31187 return 356;
31188 if (regno == VSCR_REGNO)
31189 return 67;
31190 if (regno == SPE_ACC_REGNO)
31191 return 99;
31192 if (regno == SPEFSCR_REGNO)
31193 return 612;
31194 /* SPE high reg number. We get these values of regno from
31195 rs6000_dwarf_register_span. */
31196 gcc_assert (regno >= 1200 && regno < 1232);
31197 return regno;
31200 /* target hook eh_return_filter_mode */
31201 static enum machine_mode
31202 rs6000_eh_return_filter_mode (void)
31204 return TARGET_32BIT ? SImode : word_mode;
31207 /* Target hook for scalar_mode_supported_p. */
31208 static bool
31209 rs6000_scalar_mode_supported_p (enum machine_mode mode)
31211 if (DECIMAL_FLOAT_MODE_P (mode))
31212 return default_decimal_float_supported_p ();
31213 else
31214 return default_scalar_mode_supported_p (mode);
31217 /* Target hook for vector_mode_supported_p. */
31218 static bool
31219 rs6000_vector_mode_supported_p (enum machine_mode mode)
31222 if (TARGET_PAIRED_FLOAT && PAIRED_VECTOR_MODE (mode))
31223 return true;
31225 if (TARGET_SPE && SPE_VECTOR_MODE (mode))
31226 return true;
31228 else if (VECTOR_MEM_ALTIVEC_OR_VSX_P (mode))
31229 return true;
31231 else
31232 return false;
31235 /* Target hook for invalid_arg_for_unprototyped_fn. */
31236 static const char *
31237 invalid_arg_for_unprototyped_fn (const_tree typelist, const_tree funcdecl, const_tree val)
31239 return (!rs6000_darwin64_abi
31240 && typelist == 0
31241 && TREE_CODE (TREE_TYPE (val)) == VECTOR_TYPE
31242 && (funcdecl == NULL_TREE
31243 || (TREE_CODE (funcdecl) == FUNCTION_DECL
31244 && DECL_BUILT_IN_CLASS (funcdecl) != BUILT_IN_MD)))
31245 ? N_("AltiVec argument passed to unprototyped function")
31246 : NULL;
31249 /* For TARGET_SECURE_PLT 32-bit PIC code we can save PIC register
31250 setup by using __stack_chk_fail_local hidden function instead of
31251 calling __stack_chk_fail directly. Otherwise it is better to call
31252 __stack_chk_fail directly. */
31254 static tree ATTRIBUTE_UNUSED
31255 rs6000_stack_protect_fail (void)
31257 return (DEFAULT_ABI == ABI_V4 && TARGET_SECURE_PLT && flag_pic)
31258 ? default_hidden_stack_protect_fail ()
31259 : default_external_stack_protect_fail ();
31262 void
31263 rs6000_final_prescan_insn (rtx insn, rtx *operand ATTRIBUTE_UNUSED,
31264 int num_operands ATTRIBUTE_UNUSED)
31266 if (rs6000_warn_cell_microcode)
31268 const char *temp;
31269 int insn_code_number = recog_memoized (insn);
31270 location_t location = INSN_LOCATION (insn);
31272 /* Punt on insns we cannot recognize. */
31273 if (insn_code_number < 0)
31274 return;
31276 temp = get_insn_template (insn_code_number, insn);
31278 if (get_attr_cell_micro (insn) == CELL_MICRO_ALWAYS)
31279 warning_at (location, OPT_mwarn_cell_microcode,
31280 "emitting microcode insn %s\t[%s] #%d",
31281 temp, insn_data[INSN_CODE (insn)].name, INSN_UID (insn));
31282 else if (get_attr_cell_micro (insn) == CELL_MICRO_CONDITIONAL)
31283 warning_at (location, OPT_mwarn_cell_microcode,
31284 "emitting conditional microcode insn %s\t[%s] #%d",
31285 temp, insn_data[INSN_CODE (insn)].name, INSN_UID (insn));
31289 /* Implement the TARGET_ASAN_SHADOW_OFFSET hook. */
31291 #if TARGET_ELF
31292 static unsigned HOST_WIDE_INT
31293 rs6000_asan_shadow_offset (void)
31295 return (unsigned HOST_WIDE_INT) 1 << (TARGET_64BIT ? 41 : 29);
31297 #endif
31299 /* Mask options that we want to support inside of attribute((target)) and
31300 #pragma GCC target operations. Note, we do not include things like
31301 64/32-bit, endianess, hard/soft floating point, etc. that would have
31302 different calling sequences. */
31304 struct rs6000_opt_mask {
31305 const char *name; /* option name */
31306 HOST_WIDE_INT mask; /* mask to set */
31307 bool invert; /* invert sense of mask */
31308 bool valid_target; /* option is a target option */
31311 static struct rs6000_opt_mask const rs6000_opt_masks[] =
31313 { "altivec", OPTION_MASK_ALTIVEC, false, true },
31314 { "cmpb", OPTION_MASK_CMPB, false, true },
31315 { "crypto", OPTION_MASK_CRYPTO, false, true },
31316 { "direct-move", OPTION_MASK_DIRECT_MOVE, false, true },
31317 { "dlmzb", OPTION_MASK_DLMZB, false, true },
31318 { "fprnd", OPTION_MASK_FPRND, false, true },
31319 { "hard-dfp", OPTION_MASK_DFP, false, true },
31320 { "htm", OPTION_MASK_HTM, false, true },
31321 { "isel", OPTION_MASK_ISEL, false, true },
31322 { "mfcrf", OPTION_MASK_MFCRF, false, true },
31323 { "mfpgpr", OPTION_MASK_MFPGPR, false, true },
31324 { "mulhw", OPTION_MASK_MULHW, false, true },
31325 { "multiple", OPTION_MASK_MULTIPLE, false, true },
31326 { "popcntb", OPTION_MASK_POPCNTB, false, true },
31327 { "popcntd", OPTION_MASK_POPCNTD, false, true },
31328 { "power8-fusion", OPTION_MASK_P8_FUSION, false, true },
31329 { "power8-fusion-sign", OPTION_MASK_P8_FUSION_SIGN, false, true },
31330 { "power8-vector", OPTION_MASK_P8_VECTOR, false, true },
31331 { "powerpc-gfxopt", OPTION_MASK_PPC_GFXOPT, false, true },
31332 { "powerpc-gpopt", OPTION_MASK_PPC_GPOPT, false, true },
31333 { "quad-memory", OPTION_MASK_QUAD_MEMORY, false, true },
31334 { "quad-memory-atomic", OPTION_MASK_QUAD_MEMORY_ATOMIC, false, true },
31335 { "recip-precision", OPTION_MASK_RECIP_PRECISION, false, true },
31336 { "string", OPTION_MASK_STRING, false, true },
31337 { "update", OPTION_MASK_NO_UPDATE, true , true },
31338 { "upper-regs-df", OPTION_MASK_UPPER_REGS_DF, false, false },
31339 { "upper-regs-sf", OPTION_MASK_UPPER_REGS_SF, false, false },
31340 { "vsx", OPTION_MASK_VSX, false, true },
31341 { "vsx-timode", OPTION_MASK_VSX_TIMODE, false, true },
31342 #ifdef OPTION_MASK_64BIT
31343 #if TARGET_AIX_OS
31344 { "aix64", OPTION_MASK_64BIT, false, false },
31345 { "aix32", OPTION_MASK_64BIT, true, false },
31346 #else
31347 { "64", OPTION_MASK_64BIT, false, false },
31348 { "32", OPTION_MASK_64BIT, true, false },
31349 #endif
31350 #endif
31351 #ifdef OPTION_MASK_EABI
31352 { "eabi", OPTION_MASK_EABI, false, false },
31353 #endif
31354 #ifdef OPTION_MASK_LITTLE_ENDIAN
31355 { "little", OPTION_MASK_LITTLE_ENDIAN, false, false },
31356 { "big", OPTION_MASK_LITTLE_ENDIAN, true, false },
31357 #endif
31358 #ifdef OPTION_MASK_RELOCATABLE
31359 { "relocatable", OPTION_MASK_RELOCATABLE, false, false },
31360 #endif
31361 #ifdef OPTION_MASK_STRICT_ALIGN
31362 { "strict-align", OPTION_MASK_STRICT_ALIGN, false, false },
31363 #endif
31364 { "soft-float", OPTION_MASK_SOFT_FLOAT, false, false },
31365 { "string", OPTION_MASK_STRING, false, false },
31368 /* Builtin mask mapping for printing the flags. */
31369 static struct rs6000_opt_mask const rs6000_builtin_mask_names[] =
31371 { "altivec", RS6000_BTM_ALTIVEC, false, false },
31372 { "vsx", RS6000_BTM_VSX, false, false },
31373 { "spe", RS6000_BTM_SPE, false, false },
31374 { "paired", RS6000_BTM_PAIRED, false, false },
31375 { "fre", RS6000_BTM_FRE, false, false },
31376 { "fres", RS6000_BTM_FRES, false, false },
31377 { "frsqrte", RS6000_BTM_FRSQRTE, false, false },
31378 { "frsqrtes", RS6000_BTM_FRSQRTES, false, false },
31379 { "popcntd", RS6000_BTM_POPCNTD, false, false },
31380 { "cell", RS6000_BTM_CELL, false, false },
31381 { "power8-vector", RS6000_BTM_P8_VECTOR, false, false },
31382 { "crypto", RS6000_BTM_CRYPTO, false, false },
31383 { "htm", RS6000_BTM_HTM, false, false },
31384 { "hard-dfp", RS6000_BTM_DFP, false, false },
31385 { "hard-float", RS6000_BTM_HARD_FLOAT, false, false },
31388 /* Option variables that we want to support inside attribute((target)) and
31389 #pragma GCC target operations. */
31391 struct rs6000_opt_var {
31392 const char *name; /* option name */
31393 size_t global_offset; /* offset of the option in global_options. */
31394 size_t target_offset; /* offset of the option in target optiosn. */
31397 static struct rs6000_opt_var const rs6000_opt_vars[] =
31399 { "friz",
31400 offsetof (struct gcc_options, x_TARGET_FRIZ),
31401 offsetof (struct cl_target_option, x_TARGET_FRIZ), },
31402 { "avoid-indexed-addresses",
31403 offsetof (struct gcc_options, x_TARGET_AVOID_XFORM),
31404 offsetof (struct cl_target_option, x_TARGET_AVOID_XFORM) },
31405 { "paired",
31406 offsetof (struct gcc_options, x_rs6000_paired_float),
31407 offsetof (struct cl_target_option, x_rs6000_paired_float), },
31408 { "longcall",
31409 offsetof (struct gcc_options, x_rs6000_default_long_calls),
31410 offsetof (struct cl_target_option, x_rs6000_default_long_calls), },
31413 /* Inner function to handle attribute((target("..."))) and #pragma GCC target
31414 parsing. Return true if there were no errors. */
31416 static bool
31417 rs6000_inner_target_options (tree args, bool attr_p)
31419 bool ret = true;
31421 if (args == NULL_TREE)
31424 else if (TREE_CODE (args) == STRING_CST)
31426 char *p = ASTRDUP (TREE_STRING_POINTER (args));
31427 char *q;
31429 while ((q = strtok (p, ",")) != NULL)
31431 bool error_p = false;
31432 bool not_valid_p = false;
31433 const char *cpu_opt = NULL;
31435 p = NULL;
31436 if (strncmp (q, "cpu=", 4) == 0)
31438 int cpu_index = rs6000_cpu_name_lookup (q+4);
31439 if (cpu_index >= 0)
31440 rs6000_cpu_index = cpu_index;
31441 else
31443 error_p = true;
31444 cpu_opt = q+4;
31447 else if (strncmp (q, "tune=", 5) == 0)
31449 int tune_index = rs6000_cpu_name_lookup (q+5);
31450 if (tune_index >= 0)
31451 rs6000_tune_index = tune_index;
31452 else
31454 error_p = true;
31455 cpu_opt = q+5;
31458 else
31460 size_t i;
31461 bool invert = false;
31462 char *r = q;
31464 error_p = true;
31465 if (strncmp (r, "no-", 3) == 0)
31467 invert = true;
31468 r += 3;
31471 for (i = 0; i < ARRAY_SIZE (rs6000_opt_masks); i++)
31472 if (strcmp (r, rs6000_opt_masks[i].name) == 0)
31474 HOST_WIDE_INT mask = rs6000_opt_masks[i].mask;
31476 if (!rs6000_opt_masks[i].valid_target)
31477 not_valid_p = true;
31478 else
31480 error_p = false;
31481 rs6000_isa_flags_explicit |= mask;
31483 /* VSX needs altivec, so -mvsx automagically sets
31484 altivec. */
31485 if (mask == OPTION_MASK_VSX && !invert)
31486 mask |= OPTION_MASK_ALTIVEC;
31488 if (rs6000_opt_masks[i].invert)
31489 invert = !invert;
31491 if (invert)
31492 rs6000_isa_flags &= ~mask;
31493 else
31494 rs6000_isa_flags |= mask;
31496 break;
31499 if (error_p && !not_valid_p)
31501 for (i = 0; i < ARRAY_SIZE (rs6000_opt_vars); i++)
31502 if (strcmp (r, rs6000_opt_vars[i].name) == 0)
31504 size_t j = rs6000_opt_vars[i].global_offset;
31505 *((int *) ((char *)&global_options + j)) = !invert;
31506 error_p = false;
31507 break;
31512 if (error_p)
31514 const char *eprefix, *esuffix;
31516 ret = false;
31517 if (attr_p)
31519 eprefix = "__attribute__((__target__(";
31520 esuffix = ")))";
31522 else
31524 eprefix = "#pragma GCC target ";
31525 esuffix = "";
31528 if (cpu_opt)
31529 error ("invalid cpu \"%s\" for %s\"%s\"%s", cpu_opt, eprefix,
31530 q, esuffix);
31531 else if (not_valid_p)
31532 error ("%s\"%s\"%s is not allowed", eprefix, q, esuffix);
31533 else
31534 error ("%s\"%s\"%s is invalid", eprefix, q, esuffix);
31539 else if (TREE_CODE (args) == TREE_LIST)
31543 tree value = TREE_VALUE (args);
31544 if (value)
31546 bool ret2 = rs6000_inner_target_options (value, attr_p);
31547 if (!ret2)
31548 ret = false;
31550 args = TREE_CHAIN (args);
31552 while (args != NULL_TREE);
31555 else
31556 gcc_unreachable ();
31558 return ret;
31561 /* Print out the target options as a list for -mdebug=target. */
31563 static void
31564 rs6000_debug_target_options (tree args, const char *prefix)
31566 if (args == NULL_TREE)
31567 fprintf (stderr, "%s<NULL>", prefix);
31569 else if (TREE_CODE (args) == STRING_CST)
31571 char *p = ASTRDUP (TREE_STRING_POINTER (args));
31572 char *q;
31574 while ((q = strtok (p, ",")) != NULL)
31576 p = NULL;
31577 fprintf (stderr, "%s\"%s\"", prefix, q);
31578 prefix = ", ";
31582 else if (TREE_CODE (args) == TREE_LIST)
31586 tree value = TREE_VALUE (args);
31587 if (value)
31589 rs6000_debug_target_options (value, prefix);
31590 prefix = ", ";
31592 args = TREE_CHAIN (args);
31594 while (args != NULL_TREE);
31597 else
31598 gcc_unreachable ();
31600 return;
31604 /* Hook to validate attribute((target("..."))). */
31606 static bool
31607 rs6000_valid_attribute_p (tree fndecl,
31608 tree ARG_UNUSED (name),
31609 tree args,
31610 int flags)
31612 struct cl_target_option cur_target;
31613 bool ret;
31614 tree old_optimize = build_optimization_node (&global_options);
31615 tree new_target, new_optimize;
31616 tree func_optimize = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (fndecl);
31618 gcc_assert ((fndecl != NULL_TREE) && (args != NULL_TREE));
31620 if (TARGET_DEBUG_TARGET)
31622 tree tname = DECL_NAME (fndecl);
31623 fprintf (stderr, "\n==================== rs6000_valid_attribute_p:\n");
31624 if (tname)
31625 fprintf (stderr, "function: %.*s\n",
31626 (int) IDENTIFIER_LENGTH (tname),
31627 IDENTIFIER_POINTER (tname));
31628 else
31629 fprintf (stderr, "function: unknown\n");
31631 fprintf (stderr, "args:");
31632 rs6000_debug_target_options (args, " ");
31633 fprintf (stderr, "\n");
31635 if (flags)
31636 fprintf (stderr, "flags: 0x%x\n", flags);
31638 fprintf (stderr, "--------------------\n");
31641 old_optimize = build_optimization_node (&global_options);
31642 func_optimize = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (fndecl);
31644 /* If the function changed the optimization levels as well as setting target
31645 options, start with the optimizations specified. */
31646 if (func_optimize && func_optimize != old_optimize)
31647 cl_optimization_restore (&global_options,
31648 TREE_OPTIMIZATION (func_optimize));
31650 /* The target attributes may also change some optimization flags, so update
31651 the optimization options if necessary. */
31652 cl_target_option_save (&cur_target, &global_options);
31653 rs6000_cpu_index = rs6000_tune_index = -1;
31654 ret = rs6000_inner_target_options (args, true);
31656 /* Set up any additional state. */
31657 if (ret)
31659 ret = rs6000_option_override_internal (false);
31660 new_target = build_target_option_node (&global_options);
31662 else
31663 new_target = NULL;
31665 new_optimize = build_optimization_node (&global_options);
31667 if (!new_target)
31668 ret = false;
31670 else if (fndecl)
31672 DECL_FUNCTION_SPECIFIC_TARGET (fndecl) = new_target;
31674 if (old_optimize != new_optimize)
31675 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (fndecl) = new_optimize;
31678 cl_target_option_restore (&global_options, &cur_target);
31680 if (old_optimize != new_optimize)
31681 cl_optimization_restore (&global_options,
31682 TREE_OPTIMIZATION (old_optimize));
31684 return ret;
31688 /* Hook to validate the current #pragma GCC target and set the state, and
31689 update the macros based on what was changed. If ARGS is NULL, then
31690 POP_TARGET is used to reset the options. */
31692 bool
31693 rs6000_pragma_target_parse (tree args, tree pop_target)
31695 tree prev_tree = build_target_option_node (&global_options);
31696 tree cur_tree;
31697 struct cl_target_option *prev_opt, *cur_opt;
31698 HOST_WIDE_INT prev_flags, cur_flags, diff_flags;
31699 HOST_WIDE_INT prev_bumask, cur_bumask, diff_bumask;
31701 if (TARGET_DEBUG_TARGET)
31703 fprintf (stderr, "\n==================== rs6000_pragma_target_parse\n");
31704 fprintf (stderr, "args:");
31705 rs6000_debug_target_options (args, " ");
31706 fprintf (stderr, "\n");
31708 if (pop_target)
31710 fprintf (stderr, "pop_target:\n");
31711 debug_tree (pop_target);
31713 else
31714 fprintf (stderr, "pop_target: <NULL>\n");
31716 fprintf (stderr, "--------------------\n");
31719 if (! args)
31721 cur_tree = ((pop_target)
31722 ? pop_target
31723 : target_option_default_node);
31724 cl_target_option_restore (&global_options,
31725 TREE_TARGET_OPTION (cur_tree));
31727 else
31729 rs6000_cpu_index = rs6000_tune_index = -1;
31730 if (!rs6000_inner_target_options (args, false)
31731 || !rs6000_option_override_internal (false)
31732 || (cur_tree = build_target_option_node (&global_options))
31733 == NULL_TREE)
31735 if (TARGET_DEBUG_BUILTIN || TARGET_DEBUG_TARGET)
31736 fprintf (stderr, "invalid pragma\n");
31738 return false;
31742 target_option_current_node = cur_tree;
31744 /* If we have the preprocessor linked in (i.e. C or C++ languages), possibly
31745 change the macros that are defined. */
31746 if (rs6000_target_modify_macros_ptr)
31748 prev_opt = TREE_TARGET_OPTION (prev_tree);
31749 prev_bumask = prev_opt->x_rs6000_builtin_mask;
31750 prev_flags = prev_opt->x_rs6000_isa_flags;
31752 cur_opt = TREE_TARGET_OPTION (cur_tree);
31753 cur_flags = cur_opt->x_rs6000_isa_flags;
31754 cur_bumask = cur_opt->x_rs6000_builtin_mask;
31756 diff_bumask = (prev_bumask ^ cur_bumask);
31757 diff_flags = (prev_flags ^ cur_flags);
31759 if ((diff_flags != 0) || (diff_bumask != 0))
31761 /* Delete old macros. */
31762 rs6000_target_modify_macros_ptr (false,
31763 prev_flags & diff_flags,
31764 prev_bumask & diff_bumask);
31766 /* Define new macros. */
31767 rs6000_target_modify_macros_ptr (true,
31768 cur_flags & diff_flags,
31769 cur_bumask & diff_bumask);
31773 return true;
31777 /* Remember the last target of rs6000_set_current_function. */
31778 static GTY(()) tree rs6000_previous_fndecl;
31780 /* Establish appropriate back-end context for processing the function
31781 FNDECL. The argument might be NULL to indicate processing at top
31782 level, outside of any function scope. */
31783 static void
31784 rs6000_set_current_function (tree fndecl)
31786 tree old_tree = (rs6000_previous_fndecl
31787 ? DECL_FUNCTION_SPECIFIC_TARGET (rs6000_previous_fndecl)
31788 : NULL_TREE);
31790 tree new_tree = (fndecl
31791 ? DECL_FUNCTION_SPECIFIC_TARGET (fndecl)
31792 : NULL_TREE);
31794 if (TARGET_DEBUG_TARGET)
31796 bool print_final = false;
31797 fprintf (stderr, "\n==================== rs6000_set_current_function");
31799 if (fndecl)
31800 fprintf (stderr, ", fndecl %s (%p)",
31801 (DECL_NAME (fndecl)
31802 ? IDENTIFIER_POINTER (DECL_NAME (fndecl))
31803 : "<unknown>"), (void *)fndecl);
31805 if (rs6000_previous_fndecl)
31806 fprintf (stderr, ", prev_fndecl (%p)", (void *)rs6000_previous_fndecl);
31808 fprintf (stderr, "\n");
31809 if (new_tree)
31811 fprintf (stderr, "\nnew fndecl target specific options:\n");
31812 debug_tree (new_tree);
31813 print_final = true;
31816 if (old_tree)
31818 fprintf (stderr, "\nold fndecl target specific options:\n");
31819 debug_tree (old_tree);
31820 print_final = true;
31823 if (print_final)
31824 fprintf (stderr, "--------------------\n");
31827 /* Only change the context if the function changes. This hook is called
31828 several times in the course of compiling a function, and we don't want to
31829 slow things down too much or call target_reinit when it isn't safe. */
31830 if (fndecl && fndecl != rs6000_previous_fndecl)
31832 rs6000_previous_fndecl = fndecl;
31833 if (old_tree == new_tree)
31836 else if (new_tree)
31838 cl_target_option_restore (&global_options,
31839 TREE_TARGET_OPTION (new_tree));
31840 if (TREE_TARGET_GLOBALS (new_tree))
31841 restore_target_globals (TREE_TARGET_GLOBALS (new_tree));
31842 else
31843 TREE_TARGET_GLOBALS (new_tree)
31844 = save_target_globals_default_opts ();
31847 else if (old_tree)
31849 new_tree = target_option_current_node;
31850 cl_target_option_restore (&global_options,
31851 TREE_TARGET_OPTION (new_tree));
31852 if (TREE_TARGET_GLOBALS (new_tree))
31853 restore_target_globals (TREE_TARGET_GLOBALS (new_tree));
31854 else if (new_tree == target_option_default_node)
31855 restore_target_globals (&default_target_globals);
31856 else
31857 TREE_TARGET_GLOBALS (new_tree)
31858 = save_target_globals_default_opts ();
31864 /* Save the current options */
31866 static void
31867 rs6000_function_specific_save (struct cl_target_option *ptr,
31868 struct gcc_options *opts)
31870 ptr->x_rs6000_isa_flags = opts->x_rs6000_isa_flags;
31871 ptr->x_rs6000_isa_flags_explicit = opts->x_rs6000_isa_flags_explicit;
31874 /* Restore the current options */
31876 static void
31877 rs6000_function_specific_restore (struct gcc_options *opts,
31878 struct cl_target_option *ptr)
31881 opts->x_rs6000_isa_flags = ptr->x_rs6000_isa_flags;
31882 opts->x_rs6000_isa_flags_explicit = ptr->x_rs6000_isa_flags_explicit;
31883 (void) rs6000_option_override_internal (false);
31886 /* Print the current options */
31888 static void
31889 rs6000_function_specific_print (FILE *file, int indent,
31890 struct cl_target_option *ptr)
31892 rs6000_print_isa_options (file, indent, "Isa options set",
31893 ptr->x_rs6000_isa_flags);
31895 rs6000_print_isa_options (file, indent, "Isa options explicit",
31896 ptr->x_rs6000_isa_flags_explicit);
31899 /* Helper function to print the current isa or misc options on a line. */
31901 static void
31902 rs6000_print_options_internal (FILE *file,
31903 int indent,
31904 const char *string,
31905 HOST_WIDE_INT flags,
31906 const char *prefix,
31907 const struct rs6000_opt_mask *opts,
31908 size_t num_elements)
31910 size_t i;
31911 size_t start_column = 0;
31912 size_t cur_column;
31913 size_t max_column = 76;
31914 const char *comma = "";
31916 if (indent)
31917 start_column += fprintf (file, "%*s", indent, "");
31919 if (!flags)
31921 fprintf (stderr, DEBUG_FMT_S, string, "<none>");
31922 return;
31925 start_column += fprintf (stderr, DEBUG_FMT_WX, string, flags);
31927 /* Print the various mask options. */
31928 cur_column = start_column;
31929 for (i = 0; i < num_elements; i++)
31931 if ((flags & opts[i].mask) != 0)
31933 const char *no_str = rs6000_opt_masks[i].invert ? "no-" : "";
31934 size_t len = (strlen (comma)
31935 + strlen (prefix)
31936 + strlen (no_str)
31937 + strlen (rs6000_opt_masks[i].name));
31939 cur_column += len;
31940 if (cur_column > max_column)
31942 fprintf (stderr, ", \\\n%*s", (int)start_column, "");
31943 cur_column = start_column + len;
31944 comma = "";
31947 fprintf (file, "%s%s%s%s", comma, prefix, no_str,
31948 rs6000_opt_masks[i].name);
31949 flags &= ~ opts[i].mask;
31950 comma = ", ";
31954 fputs ("\n", file);
31957 /* Helper function to print the current isa options on a line. */
31959 static void
31960 rs6000_print_isa_options (FILE *file, int indent, const char *string,
31961 HOST_WIDE_INT flags)
31963 rs6000_print_options_internal (file, indent, string, flags, "-m",
31964 &rs6000_opt_masks[0],
31965 ARRAY_SIZE (rs6000_opt_masks));
31968 static void
31969 rs6000_print_builtin_options (FILE *file, int indent, const char *string,
31970 HOST_WIDE_INT flags)
31972 rs6000_print_options_internal (file, indent, string, flags, "",
31973 &rs6000_builtin_mask_names[0],
31974 ARRAY_SIZE (rs6000_builtin_mask_names));
31978 /* Hook to determine if one function can safely inline another. */
31980 static bool
31981 rs6000_can_inline_p (tree caller, tree callee)
31983 bool ret = false;
31984 tree caller_tree = DECL_FUNCTION_SPECIFIC_TARGET (caller);
31985 tree callee_tree = DECL_FUNCTION_SPECIFIC_TARGET (callee);
31987 /* If callee has no option attributes, then it is ok to inline. */
31988 if (!callee_tree)
31989 ret = true;
31991 /* If caller has no option attributes, but callee does then it is not ok to
31992 inline. */
31993 else if (!caller_tree)
31994 ret = false;
31996 else
31998 struct cl_target_option *caller_opts = TREE_TARGET_OPTION (caller_tree);
31999 struct cl_target_option *callee_opts = TREE_TARGET_OPTION (callee_tree);
32001 /* Callee's options should a subset of the caller's, i.e. a vsx function
32002 can inline an altivec function but a non-vsx function can't inline a
32003 vsx function. */
32004 if ((caller_opts->x_rs6000_isa_flags & callee_opts->x_rs6000_isa_flags)
32005 == callee_opts->x_rs6000_isa_flags)
32006 ret = true;
32009 if (TARGET_DEBUG_TARGET)
32010 fprintf (stderr, "rs6000_can_inline_p:, caller %s, callee %s, %s inline\n",
32011 (DECL_NAME (caller)
32012 ? IDENTIFIER_POINTER (DECL_NAME (caller))
32013 : "<unknown>"),
32014 (DECL_NAME (callee)
32015 ? IDENTIFIER_POINTER (DECL_NAME (callee))
32016 : "<unknown>"),
32017 (ret ? "can" : "cannot"));
32019 return ret;
32022 /* Allocate a stack temp and fixup the address so it meets the particular
32023 memory requirements (either offetable or REG+REG addressing). */
32026 rs6000_allocate_stack_temp (enum machine_mode mode,
32027 bool offsettable_p,
32028 bool reg_reg_p)
32030 rtx stack = assign_stack_temp (mode, GET_MODE_SIZE (mode));
32031 rtx addr = XEXP (stack, 0);
32032 int strict_p = (reload_in_progress || reload_completed);
32034 if (!legitimate_indirect_address_p (addr, strict_p))
32036 if (offsettable_p
32037 && !rs6000_legitimate_offset_address_p (mode, addr, strict_p, true))
32038 stack = replace_equiv_address (stack, copy_addr_to_reg (addr));
32040 else if (reg_reg_p && !legitimate_indexed_address_p (addr, strict_p))
32041 stack = replace_equiv_address (stack, copy_addr_to_reg (addr));
32044 return stack;
32047 /* Given a memory reference, if it is not a reg or reg+reg addressing, convert
32048 to such a form to deal with memory reference instructions like STFIWX that
32049 only take reg+reg addressing. */
32052 rs6000_address_for_fpconvert (rtx x)
32054 int strict_p = (reload_in_progress || reload_completed);
32055 rtx addr;
32057 gcc_assert (MEM_P (x));
32058 addr = XEXP (x, 0);
32059 if (! legitimate_indirect_address_p (addr, strict_p)
32060 && ! legitimate_indexed_address_p (addr, strict_p))
32062 if (GET_CODE (addr) == PRE_INC || GET_CODE (addr) == PRE_DEC)
32064 rtx reg = XEXP (addr, 0);
32065 HOST_WIDE_INT size = GET_MODE_SIZE (GET_MODE (x));
32066 rtx size_rtx = GEN_INT ((GET_CODE (addr) == PRE_DEC) ? -size : size);
32067 gcc_assert (REG_P (reg));
32068 emit_insn (gen_add3_insn (reg, reg, size_rtx));
32069 addr = reg;
32071 else if (GET_CODE (addr) == PRE_MODIFY)
32073 rtx reg = XEXP (addr, 0);
32074 rtx expr = XEXP (addr, 1);
32075 gcc_assert (REG_P (reg));
32076 gcc_assert (GET_CODE (expr) == PLUS);
32077 emit_insn (gen_add3_insn (reg, XEXP (expr, 0), XEXP (expr, 1)));
32078 addr = reg;
32081 x = replace_equiv_address (x, copy_addr_to_reg (addr));
32084 return x;
32087 /* Given a memory reference, if it is not in the form for altivec memory
32088 reference instructions (i.e. reg or reg+reg addressing with AND of -16),
32089 convert to the altivec format. */
32092 rs6000_address_for_altivec (rtx x)
32094 gcc_assert (MEM_P (x));
32095 if (!altivec_indexed_or_indirect_operand (x, GET_MODE (x)))
32097 rtx addr = XEXP (x, 0);
32098 int strict_p = (reload_in_progress || reload_completed);
32100 if (!legitimate_indexed_address_p (addr, strict_p)
32101 && !legitimate_indirect_address_p (addr, strict_p))
32102 addr = copy_to_mode_reg (Pmode, addr);
32104 addr = gen_rtx_AND (Pmode, addr, GEN_INT (-16));
32105 x = change_address (x, GET_MODE (x), addr);
32108 return x;
32111 /* Implement TARGET_LEGITIMATE_CONSTANT_P.
32113 On the RS/6000, all integer constants are acceptable, most won't be valid
32114 for particular insns, though. Only easy FP constants are acceptable. */
32116 static bool
32117 rs6000_legitimate_constant_p (enum machine_mode mode, rtx x)
32119 if (TARGET_ELF && rs6000_tls_referenced_p (x))
32120 return false;
32122 return ((GET_CODE (x) != CONST_DOUBLE && GET_CODE (x) != CONST_VECTOR)
32123 || GET_MODE (x) == VOIDmode
32124 || (TARGET_POWERPC64 && mode == DImode)
32125 || easy_fp_constant (x, mode)
32126 || easy_vector_constant (x, mode));
32131 /* Expand code to perform a call under the AIX or ELFv2 ABI. */
32133 void
32134 rs6000_call_aix (rtx value, rtx func_desc, rtx flag, rtx cookie)
32136 rtx toc_reg = gen_rtx_REG (Pmode, TOC_REGNUM);
32137 rtx toc_load = NULL_RTX;
32138 rtx toc_restore = NULL_RTX;
32139 rtx func_addr;
32140 rtx abi_reg = NULL_RTX;
32141 rtx call[4];
32142 int n_call;
32143 rtx insn;
32145 /* Handle longcall attributes. */
32146 if (INTVAL (cookie) & CALL_LONG)
32147 func_desc = rs6000_longcall_ref (func_desc);
32149 /* Handle indirect calls. */
32150 if (GET_CODE (func_desc) != SYMBOL_REF
32151 || (DEFAULT_ABI == ABI_AIX && !SYMBOL_REF_FUNCTION_P (func_desc)))
32153 /* Save the TOC into its reserved slot before the call,
32154 and prepare to restore it after the call. */
32155 rtx stack_ptr = gen_rtx_REG (Pmode, STACK_POINTER_REGNUM);
32156 rtx stack_toc_offset = GEN_INT (RS6000_TOC_SAVE_SLOT);
32157 rtx stack_toc_mem = gen_frame_mem (Pmode,
32158 gen_rtx_PLUS (Pmode, stack_ptr,
32159 stack_toc_offset));
32160 toc_restore = gen_rtx_SET (VOIDmode, toc_reg, stack_toc_mem);
32162 /* Can we optimize saving the TOC in the prologue or
32163 do we need to do it at every call? */
32164 if (TARGET_SAVE_TOC_INDIRECT && !cfun->calls_alloca)
32165 cfun->machine->save_toc_in_prologue = true;
32166 else
32168 MEM_VOLATILE_P (stack_toc_mem) = 1;
32169 emit_move_insn (stack_toc_mem, toc_reg);
32172 if (DEFAULT_ABI == ABI_ELFv2)
32174 /* A function pointer in the ELFv2 ABI is just a plain address, but
32175 the ABI requires it to be loaded into r12 before the call. */
32176 func_addr = gen_rtx_REG (Pmode, 12);
32177 emit_move_insn (func_addr, func_desc);
32178 abi_reg = func_addr;
32180 else
32182 /* A function pointer under AIX is a pointer to a data area whose
32183 first word contains the actual address of the function, whose
32184 second word contains a pointer to its TOC, and whose third word
32185 contains a value to place in the static chain register (r11).
32186 Note that if we load the static chain, our "trampoline" need
32187 not have any executable code. */
32189 /* Load up address of the actual function. */
32190 func_desc = force_reg (Pmode, func_desc);
32191 func_addr = gen_reg_rtx (Pmode);
32192 emit_move_insn (func_addr, gen_rtx_MEM (Pmode, func_desc));
32194 /* Prepare to load the TOC of the called function. Note that the
32195 TOC load must happen immediately before the actual call so
32196 that unwinding the TOC registers works correctly. See the
32197 comment in frob_update_context. */
32198 rtx func_toc_offset = GEN_INT (GET_MODE_SIZE (Pmode));
32199 rtx func_toc_mem = gen_rtx_MEM (Pmode,
32200 gen_rtx_PLUS (Pmode, func_desc,
32201 func_toc_offset));
32202 toc_load = gen_rtx_USE (VOIDmode, func_toc_mem);
32204 /* If we have a static chain, load it up. */
32205 if (TARGET_POINTERS_TO_NESTED_FUNCTIONS)
32207 rtx sc_reg = gen_rtx_REG (Pmode, STATIC_CHAIN_REGNUM);
32208 rtx func_sc_offset = GEN_INT (2 * GET_MODE_SIZE (Pmode));
32209 rtx func_sc_mem = gen_rtx_MEM (Pmode,
32210 gen_rtx_PLUS (Pmode, func_desc,
32211 func_sc_offset));
32212 emit_move_insn (sc_reg, func_sc_mem);
32213 abi_reg = sc_reg;
32217 else
32219 /* Direct calls use the TOC: for local calls, the callee will
32220 assume the TOC register is set; for non-local calls, the
32221 PLT stub needs the TOC register. */
32222 abi_reg = toc_reg;
32223 func_addr = func_desc;
32226 /* Create the call. */
32227 call[0] = gen_rtx_CALL (VOIDmode, gen_rtx_MEM (SImode, func_addr), flag);
32228 if (value != NULL_RTX)
32229 call[0] = gen_rtx_SET (VOIDmode, value, call[0]);
32230 n_call = 1;
32232 if (toc_load)
32233 call[n_call++] = toc_load;
32234 if (toc_restore)
32235 call[n_call++] = toc_restore;
32237 call[n_call++] = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, LR_REGNO));
32239 insn = gen_rtx_PARALLEL (VOIDmode, gen_rtvec_v (n_call, call));
32240 insn = emit_call_insn (insn);
32242 /* Mention all registers defined by the ABI to hold information
32243 as uses in CALL_INSN_FUNCTION_USAGE. */
32244 if (abi_reg)
32245 use_reg (&CALL_INSN_FUNCTION_USAGE (insn), abi_reg);
32248 /* Expand code to perform a sibling call under the AIX or ELFv2 ABI. */
32250 void
32251 rs6000_sibcall_aix (rtx value, rtx func_desc, rtx flag, rtx cookie)
32253 rtx call[2];
32254 rtx insn;
32256 gcc_assert (INTVAL (cookie) == 0);
32258 /* Create the call. */
32259 call[0] = gen_rtx_CALL (VOIDmode, gen_rtx_MEM (SImode, func_desc), flag);
32260 if (value != NULL_RTX)
32261 call[0] = gen_rtx_SET (VOIDmode, value, call[0]);
32263 call[1] = simple_return_rtx;
32265 insn = gen_rtx_PARALLEL (VOIDmode, gen_rtvec_v (2, call));
32266 insn = emit_call_insn (insn);
32268 /* Note use of the TOC register. */
32269 use_reg (&CALL_INSN_FUNCTION_USAGE (insn), gen_rtx_REG (Pmode, TOC_REGNUM));
32270 /* We need to also mark a use of the link register since the function we
32271 sibling-call to will use it to return to our caller. */
32272 use_reg (&CALL_INSN_FUNCTION_USAGE (insn), gen_rtx_REG (Pmode, LR_REGNO));
32275 /* Return whether we need to always update the saved TOC pointer when we update
32276 the stack pointer. */
32278 static bool
32279 rs6000_save_toc_in_prologue_p (void)
32281 return (cfun && cfun->machine && cfun->machine->save_toc_in_prologue);
32284 #ifdef HAVE_GAS_HIDDEN
32285 # define USE_HIDDEN_LINKONCE 1
32286 #else
32287 # define USE_HIDDEN_LINKONCE 0
32288 #endif
32290 /* Fills in the label name that should be used for a 476 link stack thunk. */
32292 void
32293 get_ppc476_thunk_name (char name[32])
32295 gcc_assert (TARGET_LINK_STACK);
32297 if (USE_HIDDEN_LINKONCE)
32298 sprintf (name, "__ppc476.get_thunk");
32299 else
32300 ASM_GENERATE_INTERNAL_LABEL (name, "LPPC476_", 0);
32303 /* This function emits the simple thunk routine that is used to preserve
32304 the link stack on the 476 cpu. */
32306 static void rs6000_code_end (void) ATTRIBUTE_UNUSED;
32307 static void
32308 rs6000_code_end (void)
32310 char name[32];
32311 tree decl;
32313 if (!TARGET_LINK_STACK)
32314 return;
32316 get_ppc476_thunk_name (name);
32318 decl = build_decl (BUILTINS_LOCATION, FUNCTION_DECL, get_identifier (name),
32319 build_function_type_list (void_type_node, NULL_TREE));
32320 DECL_RESULT (decl) = build_decl (BUILTINS_LOCATION, RESULT_DECL,
32321 NULL_TREE, void_type_node);
32322 TREE_PUBLIC (decl) = 1;
32323 TREE_STATIC (decl) = 1;
32325 #if RS6000_WEAK
32326 if (USE_HIDDEN_LINKONCE)
32328 DECL_COMDAT_GROUP (decl) = DECL_ASSEMBLER_NAME (decl);
32329 targetm.asm_out.unique_section (decl, 0);
32330 switch_to_section (get_named_section (decl, NULL, 0));
32331 DECL_WEAK (decl) = 1;
32332 ASM_WEAKEN_DECL (asm_out_file, decl, name, 0);
32333 targetm.asm_out.globalize_label (asm_out_file, name);
32334 targetm.asm_out.assemble_visibility (decl, VISIBILITY_HIDDEN);
32335 ASM_DECLARE_FUNCTION_NAME (asm_out_file, name, decl);
32337 else
32338 #endif
32340 switch_to_section (text_section);
32341 ASM_OUTPUT_LABEL (asm_out_file, name);
32344 DECL_INITIAL (decl) = make_node (BLOCK);
32345 current_function_decl = decl;
32346 init_function_start (decl);
32347 first_function_block_is_cold = false;
32348 /* Make sure unwind info is emitted for the thunk if needed. */
32349 final_start_function (emit_barrier (), asm_out_file, 1);
32351 fputs ("\tblr\n", asm_out_file);
32353 final_end_function ();
32354 init_insn_lengths ();
32355 free_after_compilation (cfun);
32356 set_cfun (NULL);
32357 current_function_decl = NULL;
32360 /* Add r30 to hard reg set if the prologue sets it up and it is not
32361 pic_offset_table_rtx. */
32363 static void
32364 rs6000_set_up_by_prologue (struct hard_reg_set_container *set)
32366 if (!TARGET_SINGLE_PIC_BASE
32367 && TARGET_TOC
32368 && TARGET_MINIMAL_TOC
32369 && get_pool_size () != 0)
32370 add_to_hard_reg_set (&set->set, Pmode, RS6000_PIC_OFFSET_TABLE_REGNUM);
32374 /* Helper function for rs6000_split_logical to emit a logical instruction after
32375 spliting the operation to single GPR registers.
32377 DEST is the destination register.
32378 OP1 and OP2 are the input source registers.
32379 CODE is the base operation (AND, IOR, XOR, NOT).
32380 MODE is the machine mode.
32381 If COMPLEMENT_FINAL_P is true, wrap the whole operation with NOT.
32382 If COMPLEMENT_OP1_P is true, wrap operand1 with NOT.
32383 If COMPLEMENT_OP2_P is true, wrap operand2 with NOT.
32384 CLOBBER_REG is either NULL or a scratch register of type CC to allow
32385 formation of the AND instructions. */
32387 static void
32388 rs6000_split_logical_inner (rtx dest,
32389 rtx op1,
32390 rtx op2,
32391 enum rtx_code code,
32392 enum machine_mode mode,
32393 bool complement_final_p,
32394 bool complement_op1_p,
32395 bool complement_op2_p,
32396 rtx clobber_reg)
32398 rtx bool_rtx;
32399 rtx set_rtx;
32401 /* Optimize AND of 0/0xffffffff and IOR/XOR of 0. */
32402 if (op2 && GET_CODE (op2) == CONST_INT
32403 && (mode == SImode || (mode == DImode && TARGET_POWERPC64))
32404 && !complement_final_p && !complement_op1_p && !complement_op2_p)
32406 HOST_WIDE_INT mask = GET_MODE_MASK (mode);
32407 HOST_WIDE_INT value = INTVAL (op2) & mask;
32409 /* Optimize AND of 0 to just set 0. Optimize AND of -1 to be a move. */
32410 if (code == AND)
32412 if (value == 0)
32414 emit_insn (gen_rtx_SET (VOIDmode, dest, const0_rtx));
32415 return;
32418 else if (value == mask)
32420 if (!rtx_equal_p (dest, op1))
32421 emit_insn (gen_rtx_SET (VOIDmode, dest, op1));
32422 return;
32426 /* Optimize IOR/XOR of 0 to be a simple move. Split large operations
32427 into separate ORI/ORIS or XORI/XORIS instrucitons. */
32428 else if (code == IOR || code == XOR)
32430 if (value == 0)
32432 if (!rtx_equal_p (dest, op1))
32433 emit_insn (gen_rtx_SET (VOIDmode, dest, op1));
32434 return;
32439 if (complement_op1_p)
32440 op1 = gen_rtx_NOT (mode, op1);
32442 if (complement_op2_p)
32443 op2 = gen_rtx_NOT (mode, op2);
32445 bool_rtx = ((code == NOT)
32446 ? gen_rtx_NOT (mode, op1)
32447 : gen_rtx_fmt_ee (code, mode, op1, op2));
32449 if (complement_final_p)
32450 bool_rtx = gen_rtx_NOT (mode, bool_rtx);
32452 set_rtx = gen_rtx_SET (VOIDmode, dest, bool_rtx);
32454 /* Is this AND with an explicit clobber? */
32455 if (clobber_reg)
32457 rtx clobber = gen_rtx_CLOBBER (VOIDmode, clobber_reg);
32458 set_rtx = gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, set_rtx, clobber));
32461 emit_insn (set_rtx);
32462 return;
32465 /* Split a DImode AND/IOR/XOR with a constant on a 32-bit system. These
32466 operations are split immediately during RTL generation to allow for more
32467 optimizations of the AND/IOR/XOR.
32469 OPERANDS is an array containing the destination and two input operands.
32470 CODE is the base operation (AND, IOR, XOR, NOT).
32471 MODE is the machine mode.
32472 If COMPLEMENT_FINAL_P is true, wrap the whole operation with NOT.
32473 If COMPLEMENT_OP1_P is true, wrap operand1 with NOT.
32474 If COMPLEMENT_OP2_P is true, wrap operand2 with NOT.
32475 CLOBBER_REG is either NULL or a scratch register of type CC to allow
32476 formation of the AND instructions. */
32478 static void
32479 rs6000_split_logical_di (rtx operands[3],
32480 enum rtx_code code,
32481 bool complement_final_p,
32482 bool complement_op1_p,
32483 bool complement_op2_p,
32484 rtx clobber_reg)
32486 const HOST_WIDE_INT lower_32bits = HOST_WIDE_INT_C(0xffffffff);
32487 const HOST_WIDE_INT upper_32bits = ~ lower_32bits;
32488 const HOST_WIDE_INT sign_bit = HOST_WIDE_INT_C(0x80000000);
32489 enum hi_lo { hi = 0, lo = 1 };
32490 rtx op0_hi_lo[2], op1_hi_lo[2], op2_hi_lo[2];
32491 size_t i;
32493 op0_hi_lo[hi] = gen_highpart (SImode, operands[0]);
32494 op1_hi_lo[hi] = gen_highpart (SImode, operands[1]);
32495 op0_hi_lo[lo] = gen_lowpart (SImode, operands[0]);
32496 op1_hi_lo[lo] = gen_lowpart (SImode, operands[1]);
32498 if (code == NOT)
32499 op2_hi_lo[hi] = op2_hi_lo[lo] = NULL_RTX;
32500 else
32502 if (GET_CODE (operands[2]) != CONST_INT)
32504 op2_hi_lo[hi] = gen_highpart_mode (SImode, DImode, operands[2]);
32505 op2_hi_lo[lo] = gen_lowpart (SImode, operands[2]);
32507 else
32509 HOST_WIDE_INT value = INTVAL (operands[2]);
32510 HOST_WIDE_INT value_hi_lo[2];
32512 gcc_assert (!complement_final_p);
32513 gcc_assert (!complement_op1_p);
32514 gcc_assert (!complement_op2_p);
32516 value_hi_lo[hi] = value >> 32;
32517 value_hi_lo[lo] = value & lower_32bits;
32519 for (i = 0; i < 2; i++)
32521 HOST_WIDE_INT sub_value = value_hi_lo[i];
32523 if (sub_value & sign_bit)
32524 sub_value |= upper_32bits;
32526 op2_hi_lo[i] = GEN_INT (sub_value);
32528 /* If this is an AND instruction, check to see if we need to load
32529 the value in a register. */
32530 if (code == AND && sub_value != -1 && sub_value != 0
32531 && !and_operand (op2_hi_lo[i], SImode))
32532 op2_hi_lo[i] = force_reg (SImode, op2_hi_lo[i]);
32537 for (i = 0; i < 2; i++)
32539 /* Split large IOR/XOR operations. */
32540 if ((code == IOR || code == XOR)
32541 && GET_CODE (op2_hi_lo[i]) == CONST_INT
32542 && !complement_final_p
32543 && !complement_op1_p
32544 && !complement_op2_p
32545 && clobber_reg == NULL_RTX
32546 && !logical_const_operand (op2_hi_lo[i], SImode))
32548 HOST_WIDE_INT value = INTVAL (op2_hi_lo[i]);
32549 HOST_WIDE_INT hi_16bits = value & HOST_WIDE_INT_C(0xffff0000);
32550 HOST_WIDE_INT lo_16bits = value & HOST_WIDE_INT_C(0x0000ffff);
32551 rtx tmp = gen_reg_rtx (SImode);
32553 /* Make sure the constant is sign extended. */
32554 if ((hi_16bits & sign_bit) != 0)
32555 hi_16bits |= upper_32bits;
32557 rs6000_split_logical_inner (tmp, op1_hi_lo[i], GEN_INT (hi_16bits),
32558 code, SImode, false, false, false,
32559 NULL_RTX);
32561 rs6000_split_logical_inner (op0_hi_lo[i], tmp, GEN_INT (lo_16bits),
32562 code, SImode, false, false, false,
32563 NULL_RTX);
32565 else
32566 rs6000_split_logical_inner (op0_hi_lo[i], op1_hi_lo[i], op2_hi_lo[i],
32567 code, SImode, complement_final_p,
32568 complement_op1_p, complement_op2_p,
32569 clobber_reg);
32572 return;
32575 /* Split the insns that make up boolean operations operating on multiple GPR
32576 registers. The boolean MD patterns ensure that the inputs either are
32577 exactly the same as the output registers, or there is no overlap.
32579 OPERANDS is an array containing the destination and two input operands.
32580 CODE is the base operation (AND, IOR, XOR, NOT).
32581 MODE is the machine mode.
32582 If COMPLEMENT_FINAL_P is true, wrap the whole operation with NOT.
32583 If COMPLEMENT_OP1_P is true, wrap operand1 with NOT.
32584 If COMPLEMENT_OP2_P is true, wrap operand2 with NOT.
32585 CLOBBER_REG is either NULL or a scratch register of type CC to allow
32586 formation of the AND instructions. */
32588 void
32589 rs6000_split_logical (rtx operands[3],
32590 enum rtx_code code,
32591 bool complement_final_p,
32592 bool complement_op1_p,
32593 bool complement_op2_p,
32594 rtx clobber_reg)
32596 enum machine_mode mode = GET_MODE (operands[0]);
32597 enum machine_mode sub_mode;
32598 rtx op0, op1, op2;
32599 int sub_size, regno0, regno1, nregs, i;
32601 /* If this is DImode, use the specialized version that can run before
32602 register allocation. */
32603 if (mode == DImode && !TARGET_POWERPC64)
32605 rs6000_split_logical_di (operands, code, complement_final_p,
32606 complement_op1_p, complement_op2_p,
32607 clobber_reg);
32608 return;
32611 op0 = operands[0];
32612 op1 = operands[1];
32613 op2 = (code == NOT) ? NULL_RTX : operands[2];
32614 sub_mode = (TARGET_POWERPC64) ? DImode : SImode;
32615 sub_size = GET_MODE_SIZE (sub_mode);
32616 regno0 = REGNO (op0);
32617 regno1 = REGNO (op1);
32619 gcc_assert (reload_completed);
32620 gcc_assert (IN_RANGE (regno0, FIRST_GPR_REGNO, LAST_GPR_REGNO));
32621 gcc_assert (IN_RANGE (regno1, FIRST_GPR_REGNO, LAST_GPR_REGNO));
32623 nregs = rs6000_hard_regno_nregs[(int)mode][regno0];
32624 gcc_assert (nregs > 1);
32626 if (op2 && REG_P (op2))
32627 gcc_assert (IN_RANGE (REGNO (op2), FIRST_GPR_REGNO, LAST_GPR_REGNO));
32629 for (i = 0; i < nregs; i++)
32631 int offset = i * sub_size;
32632 rtx sub_op0 = simplify_subreg (sub_mode, op0, mode, offset);
32633 rtx sub_op1 = simplify_subreg (sub_mode, op1, mode, offset);
32634 rtx sub_op2 = ((code == NOT)
32635 ? NULL_RTX
32636 : simplify_subreg (sub_mode, op2, mode, offset));
32638 rs6000_split_logical_inner (sub_op0, sub_op1, sub_op2, code, sub_mode,
32639 complement_final_p, complement_op1_p,
32640 complement_op2_p, clobber_reg);
32643 return;
32647 /* Return true if the peephole2 can combine a load involving a combination of
32648 an addis instruction and a load with an offset that can be fused together on
32649 a power8.
32651 The operands are:
32652 operands[0] register set with addis
32653 operands[1] value set via addis
32654 operands[2] target register being loaded
32655 operands[3] D-form memory reference using operands[0].
32657 In addition, we are passed a boolean that is true if this is a peephole2,
32658 and we can use see if the addis_reg is dead after the insn and can be
32659 replaced by the target register. */
32661 bool
32662 fusion_gpr_load_p (rtx *operands, bool peep2_p)
32664 rtx addis_reg = operands[0];
32665 rtx addis_value = operands[1];
32666 rtx target = operands[2];
32667 rtx mem = operands[3];
32668 rtx addr;
32669 rtx base_reg;
32671 /* Validate arguments. */
32672 if (!base_reg_operand (addis_reg, GET_MODE (addis_reg)))
32673 return false;
32675 if (!base_reg_operand (target, GET_MODE (target)))
32676 return false;
32678 if (!fusion_gpr_addis (addis_value, GET_MODE (addis_value)))
32679 return false;
32681 if (!fusion_gpr_mem_load (mem, GET_MODE (mem)))
32682 return false;
32684 /* Allow sign/zero extension. */
32685 if (GET_CODE (mem) == ZERO_EXTEND
32686 || (GET_CODE (mem) == SIGN_EXTEND && TARGET_P8_FUSION_SIGN))
32687 mem = XEXP (mem, 0);
32689 if (!MEM_P (mem))
32690 return false;
32692 addr = XEXP (mem, 0); /* either PLUS or LO_SUM. */
32693 if (GET_CODE (addr) != PLUS && GET_CODE (addr) != LO_SUM)
32694 return false;
32696 /* Validate that the register used to load the high value is either the
32697 register being loaded, or we can safely replace its use in a peephole2.
32699 If this is a peephole2, we assume that there are 2 instructions in the
32700 peephole (addis and load), so we want to check if the target register was
32701 not used in the memory address and the register to hold the addis result
32702 is dead after the peephole. */
32703 if (REGNO (addis_reg) != REGNO (target))
32705 if (!peep2_p)
32706 return false;
32708 if (reg_mentioned_p (target, mem))
32709 return false;
32711 if (!peep2_reg_dead_p (2, addis_reg))
32712 return false;
32714 /* If the target register being loaded is the stack pointer, we must
32715 avoid loading any other value into it, even temporarily. */
32716 if (REG_P (target) && REGNO (target) == STACK_POINTER_REGNUM)
32717 return false;
32720 base_reg = XEXP (addr, 0);
32721 return REGNO (addis_reg) == REGNO (base_reg);
32724 /* During the peephole2 pass, adjust and expand the insns for a load fusion
32725 sequence. We adjust the addis register to use the target register. If the
32726 load sign extends, we adjust the code to do the zero extending load, and an
32727 explicit sign extension later since the fusion only covers zero extending
32728 loads.
32730 The operands are:
32731 operands[0] register set with addis (to be replaced with target)
32732 operands[1] value set via addis
32733 operands[2] target register being loaded
32734 operands[3] D-form memory reference using operands[0]. */
32736 void
32737 expand_fusion_gpr_load (rtx *operands)
32739 rtx addis_value = operands[1];
32740 rtx target = operands[2];
32741 rtx orig_mem = operands[3];
32742 rtx new_addr, new_mem, orig_addr, offset;
32743 enum rtx_code plus_or_lo_sum;
32744 enum machine_mode target_mode = GET_MODE (target);
32745 enum machine_mode extend_mode = target_mode;
32746 enum machine_mode ptr_mode = Pmode;
32747 enum rtx_code extend = UNKNOWN;
32748 rtx addis_reg = ((ptr_mode == target_mode)
32749 ? target
32750 : simplify_subreg (ptr_mode, target, target_mode, 0));
32752 if (GET_CODE (orig_mem) == ZERO_EXTEND
32753 || (TARGET_P8_FUSION_SIGN && GET_CODE (orig_mem) == SIGN_EXTEND))
32755 extend = GET_CODE (orig_mem);
32756 orig_mem = XEXP (orig_mem, 0);
32757 target_mode = GET_MODE (orig_mem);
32760 gcc_assert (MEM_P (orig_mem));
32762 orig_addr = XEXP (orig_mem, 0);
32763 plus_or_lo_sum = GET_CODE (orig_addr);
32764 gcc_assert (plus_or_lo_sum == PLUS || plus_or_lo_sum == LO_SUM);
32766 offset = XEXP (orig_addr, 1);
32767 new_addr = gen_rtx_fmt_ee (plus_or_lo_sum, ptr_mode, addis_reg, offset);
32768 new_mem = change_address (orig_mem, target_mode, new_addr);
32770 if (extend != UNKNOWN)
32771 new_mem = gen_rtx_fmt_e (ZERO_EXTEND, extend_mode, new_mem);
32773 emit_insn (gen_rtx_SET (VOIDmode, addis_reg, addis_value));
32774 emit_insn (gen_rtx_SET (VOIDmode, target, new_mem));
32776 if (extend == SIGN_EXTEND)
32778 int sub_off = ((BYTES_BIG_ENDIAN)
32779 ? GET_MODE_SIZE (extend_mode) - GET_MODE_SIZE (target_mode)
32780 : 0);
32781 rtx sign_reg
32782 = simplify_subreg (target_mode, target, extend_mode, sub_off);
32784 emit_insn (gen_rtx_SET (VOIDmode, target,
32785 gen_rtx_SIGN_EXTEND (extend_mode, sign_reg)));
32788 return;
32791 /* Return a string to fuse an addis instruction with a gpr load to the same
32792 register that we loaded up the addis instruction. The code is complicated,
32793 so we call output_asm_insn directly, and just return "".
32795 The operands are:
32796 operands[0] register set with addis (must be same reg as target).
32797 operands[1] value set via addis
32798 operands[2] target register being loaded
32799 operands[3] D-form memory reference using operands[0]. */
32801 const char *
32802 emit_fusion_gpr_load (rtx *operands)
32804 rtx addis_reg = operands[0];
32805 rtx addis_value = operands[1];
32806 rtx target = operands[2];
32807 rtx mem = operands[3];
32808 rtx fuse_ops[10];
32809 rtx addr;
32810 rtx load_offset;
32811 const char *addis_str = NULL;
32812 const char *load_str = NULL;
32813 const char *extend_insn = NULL;
32814 const char *mode_name = NULL;
32815 char insn_template[80];
32816 enum machine_mode mode;
32817 const char *comment_str = ASM_COMMENT_START;
32818 bool sign_p = false;
32820 gcc_assert (REG_P (addis_reg) && REG_P (target));
32821 gcc_assert (REGNO (addis_reg) == REGNO (target));
32823 if (*comment_str == ' ')
32824 comment_str++;
32826 /* Allow sign/zero extension. */
32827 if (GET_CODE (mem) == ZERO_EXTEND)
32828 mem = XEXP (mem, 0);
32830 else if (GET_CODE (mem) == SIGN_EXTEND && TARGET_P8_FUSION_SIGN)
32832 sign_p = true;
32833 mem = XEXP (mem, 0);
32836 gcc_assert (MEM_P (mem));
32837 addr = XEXP (mem, 0);
32838 if (GET_CODE (addr) != PLUS && GET_CODE (addr) != LO_SUM)
32839 gcc_unreachable ();
32841 load_offset = XEXP (addr, 1);
32843 /* Now emit the load instruction to the same register. */
32844 mode = GET_MODE (mem);
32845 switch (mode)
32847 case QImode:
32848 mode_name = "char";
32849 load_str = "lbz";
32850 extend_insn = "extsb %0,%0";
32851 break;
32853 case HImode:
32854 mode_name = "short";
32855 load_str = "lhz";
32856 extend_insn = "extsh %0,%0";
32857 break;
32859 case SImode:
32860 mode_name = "int";
32861 load_str = "lwz";
32862 extend_insn = "extsw %0,%0";
32863 break;
32865 case DImode:
32866 if (TARGET_POWERPC64)
32868 mode_name = "long";
32869 load_str = "ld";
32871 else
32872 gcc_unreachable ();
32873 break;
32875 default:
32876 gcc_unreachable ();
32879 /* Emit the addis instruction. */
32880 fuse_ops[0] = target;
32881 if (satisfies_constraint_L (addis_value))
32883 fuse_ops[1] = addis_value;
32884 addis_str = "lis %0,%v1";
32887 else if (GET_CODE (addis_value) == PLUS)
32889 rtx op0 = XEXP (addis_value, 0);
32890 rtx op1 = XEXP (addis_value, 1);
32892 if (REG_P (op0) && CONST_INT_P (op1)
32893 && satisfies_constraint_L (op1))
32895 fuse_ops[1] = op0;
32896 fuse_ops[2] = op1;
32897 addis_str = "addis %0,%1,%v2";
32901 else if (GET_CODE (addis_value) == HIGH)
32903 rtx value = XEXP (addis_value, 0);
32904 if (GET_CODE (value) == UNSPEC && XINT (value, 1) == UNSPEC_TOCREL)
32906 fuse_ops[1] = XVECEXP (value, 0, 0); /* symbol ref. */
32907 fuse_ops[2] = XVECEXP (value, 0, 1); /* TOC register. */
32908 if (TARGET_ELF)
32909 addis_str = "addis %0,%2,%1@toc@ha";
32911 else if (TARGET_XCOFF)
32912 addis_str = "addis %0,%1@u(%2)";
32914 else
32915 gcc_unreachable ();
32918 else if (GET_CODE (value) == PLUS)
32920 rtx op0 = XEXP (value, 0);
32921 rtx op1 = XEXP (value, 1);
32923 if (GET_CODE (op0) == UNSPEC
32924 && XINT (op0, 1) == UNSPEC_TOCREL
32925 && CONST_INT_P (op1))
32927 fuse_ops[1] = XVECEXP (op0, 0, 0); /* symbol ref. */
32928 fuse_ops[2] = XVECEXP (op0, 0, 1); /* TOC register. */
32929 fuse_ops[3] = op1;
32930 if (TARGET_ELF)
32931 addis_str = "addis %0,%2,%1+%3@toc@ha";
32933 else if (TARGET_XCOFF)
32934 addis_str = "addis %0,%1+%3@u(%2)";
32936 else
32937 gcc_unreachable ();
32941 else if (satisfies_constraint_L (value))
32943 fuse_ops[1] = value;
32944 addis_str = "lis %0,%v1";
32947 else if (TARGET_ELF && !TARGET_POWERPC64 && CONSTANT_P (value))
32949 fuse_ops[1] = value;
32950 addis_str = "lis %0,%1@ha";
32954 if (!addis_str)
32955 fatal_insn ("Could not generate addis value for fusion", addis_value);
32957 sprintf (insn_template, "%s\t\t%s gpr load fusion, type %s", addis_str,
32958 comment_str, mode_name);
32959 output_asm_insn (insn_template, fuse_ops);
32961 /* Emit the D-form load instruction. */
32962 if (CONST_INT_P (load_offset) && satisfies_constraint_I (load_offset))
32964 sprintf (insn_template, "%s %%0,%%1(%%0)", load_str);
32965 fuse_ops[1] = load_offset;
32966 output_asm_insn (insn_template, fuse_ops);
32969 else if (GET_CODE (load_offset) == UNSPEC
32970 && XINT (load_offset, 1) == UNSPEC_TOCREL)
32972 if (TARGET_ELF)
32973 sprintf (insn_template, "%s %%0,%%1@toc@l(%%0)", load_str);
32975 else if (TARGET_XCOFF)
32976 sprintf (insn_template, "%s %%0,%%1@l(%%0)", load_str);
32978 else
32979 gcc_unreachable ();
32981 fuse_ops[1] = XVECEXP (load_offset, 0, 0);
32982 output_asm_insn (insn_template, fuse_ops);
32985 else if (GET_CODE (load_offset) == PLUS
32986 && GET_CODE (XEXP (load_offset, 0)) == UNSPEC
32987 && XINT (XEXP (load_offset, 0), 1) == UNSPEC_TOCREL
32988 && CONST_INT_P (XEXP (load_offset, 1)))
32990 rtx tocrel_unspec = XEXP (load_offset, 0);
32991 if (TARGET_ELF)
32992 sprintf (insn_template, "%s %%0,%%1+%%2@toc@l(%%0)", load_str);
32994 else if (TARGET_XCOFF)
32995 sprintf (insn_template, "%s %%0,%%1+%%2@l(%%0)", load_str);
32997 else
32998 gcc_unreachable ();
33000 fuse_ops[1] = XVECEXP (tocrel_unspec, 0, 0);
33001 fuse_ops[2] = XEXP (load_offset, 1);
33002 output_asm_insn (insn_template, fuse_ops);
33005 else if (TARGET_ELF && !TARGET_POWERPC64 && CONSTANT_P (load_offset))
33007 sprintf (insn_template, "%s %%0,%%1@l(%%0)", load_str);
33009 fuse_ops[1] = load_offset;
33010 output_asm_insn (insn_template, fuse_ops);
33013 else
33014 fatal_insn ("Unable to generate load offset for fusion", load_offset);
33016 /* Handle sign extension. The peephole2 pass generates this as a separate
33017 insn, but we handle it just in case it got reattached. */
33018 if (sign_p)
33020 gcc_assert (extend_insn != NULL);
33021 output_asm_insn (extend_insn, fuse_ops);
33024 return "";
33028 struct gcc_target targetm = TARGET_INITIALIZER;
33030 #include "gt-rs6000.h"