aix.h (TARGET_IEEEQUAD_DEFAULT): Set long double default to IBM.
[official-gcc.git] / gcc / config / rs6000 / rs6000.c
blob3162d522fe388ad779f25d473b0c7cd384a79755
1 /* Subroutines used for code generation on IBM RS/6000.
2 Copyright (C) 1991-2017 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 "backend.h"
25 #include "rtl.h"
26 #include "tree.h"
27 #include "memmodel.h"
28 #include "gimple.h"
29 #include "cfghooks.h"
30 #include "cfgloop.h"
31 #include "df.h"
32 #include "tm_p.h"
33 #include "stringpool.h"
34 #include "expmed.h"
35 #include "optabs.h"
36 #include "regs.h"
37 #include "ira.h"
38 #include "recog.h"
39 #include "cgraph.h"
40 #include "diagnostic-core.h"
41 #include "insn-attr.h"
42 #include "flags.h"
43 #include "alias.h"
44 #include "fold-const.h"
45 #include "attribs.h"
46 #include "stor-layout.h"
47 #include "calls.h"
48 #include "print-tree.h"
49 #include "varasm.h"
50 #include "explow.h"
51 #include "expr.h"
52 #include "output.h"
53 #include "dbxout.h"
54 #include "common/common-target.h"
55 #include "langhooks.h"
56 #include "reload.h"
57 #include "sched-int.h"
58 #include "gimplify.h"
59 #include "gimple-fold.h"
60 #include "gimple-iterator.h"
61 #include "gimple-ssa.h"
62 #include "gimple-walk.h"
63 #include "intl.h"
64 #include "params.h"
65 #include "tm-constrs.h"
66 #include "tree-vectorizer.h"
67 #include "target-globals.h"
68 #include "builtins.h"
69 #include "context.h"
70 #include "tree-pass.h"
71 #include "except.h"
72 #if TARGET_XCOFF
73 #include "xcoffout.h" /* get declarations of xcoff_*_section_name */
74 #endif
75 #if TARGET_MACHO
76 #include "gstab.h" /* for N_SLINE */
77 #endif
78 #include "case-cfn-macros.h"
79 #include "ppc-auxv.h"
80 #include "tree-ssa-propagate.h"
82 /* This file should be included last. */
83 #include "target-def.h"
85 #ifndef TARGET_NO_PROTOTYPE
86 #define TARGET_NO_PROTOTYPE 0
87 #endif
89 /* Set -mabi=ieeelongdouble on some old targets. In the future, power server
90 systems will also set long double to be IEEE 128-bit. AIX and Darwin
91 explicitly redefine TARGET_IEEEQUAD and TARGET_IEEEQUAD_DEFAULT to 0, so
92 those systems will not pick up this default. This needs to be after all
93 of the include files, so that POWERPC_LINUX and POWERPC_FREEBSD are
94 properly defined. */
95 #ifndef TARGET_IEEEQUAD_DEFAULT
96 #if !defined (POWERPC_LINUX) && !defined (POWERPC_FREEBSD)
97 #define TARGET_IEEEQUAD_DEFAULT 1
98 #else
99 #define TARGET_IEEEQUAD_DEFAULT 0
100 #endif
101 #endif
103 #define min(A,B) ((A) < (B) ? (A) : (B))
104 #define max(A,B) ((A) > (B) ? (A) : (B))
106 static pad_direction rs6000_function_arg_padding (machine_mode, const_tree);
108 /* Structure used to define the rs6000 stack */
109 typedef struct rs6000_stack {
110 int reload_completed; /* stack info won't change from here on */
111 int first_gp_reg_save; /* first callee saved GP register used */
112 int first_fp_reg_save; /* first callee saved FP register used */
113 int first_altivec_reg_save; /* first callee saved AltiVec register used */
114 int lr_save_p; /* true if the link reg needs to be saved */
115 int cr_save_p; /* true if the CR reg needs to be saved */
116 unsigned int vrsave_mask; /* mask of vec registers to save */
117 int push_p; /* true if we need to allocate stack space */
118 int calls_p; /* true if the function makes any calls */
119 int world_save_p; /* true if we're saving *everything*:
120 r13-r31, cr, f14-f31, vrsave, v20-v31 */
121 enum rs6000_abi abi; /* which ABI to use */
122 int gp_save_offset; /* offset to save GP regs from initial SP */
123 int fp_save_offset; /* offset to save FP regs from initial SP */
124 int altivec_save_offset; /* offset to save AltiVec regs from initial SP */
125 int lr_save_offset; /* offset to save LR from initial SP */
126 int cr_save_offset; /* offset to save CR from initial SP */
127 int vrsave_save_offset; /* offset to save VRSAVE from initial SP */
128 int varargs_save_offset; /* offset to save the varargs registers */
129 int ehrd_offset; /* offset to EH return data */
130 int ehcr_offset; /* offset to EH CR field data */
131 int reg_size; /* register size (4 or 8) */
132 HOST_WIDE_INT vars_size; /* variable save area size */
133 int parm_size; /* outgoing parameter size */
134 int save_size; /* save area size */
135 int fixed_size; /* fixed size of stack frame */
136 int gp_size; /* size of saved GP registers */
137 int fp_size; /* size of saved FP registers */
138 int altivec_size; /* size of saved AltiVec registers */
139 int cr_size; /* size to hold CR if not in fixed area */
140 int vrsave_size; /* size to hold VRSAVE */
141 int altivec_padding_size; /* size of altivec alignment padding */
142 HOST_WIDE_INT total_size; /* total bytes allocated for stack */
143 int savres_strategy;
144 } rs6000_stack_t;
146 /* A C structure for machine-specific, per-function data.
147 This is added to the cfun structure. */
148 typedef struct GTY(()) machine_function
150 /* Flags if __builtin_return_address (n) with n >= 1 was used. */
151 int ra_needs_full_frame;
152 /* Flags if __builtin_return_address (0) was used. */
153 int ra_need_lr;
154 /* Cache lr_save_p after expansion of builtin_eh_return. */
155 int lr_save_state;
156 /* Whether we need to save the TOC to the reserved stack location in the
157 function prologue. */
158 bool save_toc_in_prologue;
159 /* Offset from virtual_stack_vars_rtx to the start of the ABI_V4
160 varargs save area. */
161 HOST_WIDE_INT varargs_save_offset;
162 /* Alternative internal arg pointer for -fsplit-stack. */
163 rtx split_stack_arg_pointer;
164 bool split_stack_argp_used;
165 /* Flag if r2 setup is needed with ELFv2 ABI. */
166 bool r2_setup_needed;
167 /* The number of components we use for separate shrink-wrapping. */
168 int n_components;
169 /* The components already handled by separate shrink-wrapping, which should
170 not be considered by the prologue and epilogue. */
171 bool gpr_is_wrapped_separately[32];
172 bool fpr_is_wrapped_separately[32];
173 bool lr_is_wrapped_separately;
174 } machine_function;
176 /* Support targetm.vectorize.builtin_mask_for_load. */
177 static GTY(()) tree altivec_builtin_mask_for_load;
179 /* Set to nonzero once AIX common-mode calls have been defined. */
180 static GTY(()) int common_mode_defined;
182 /* Label number of label created for -mrelocatable, to call to so we can
183 get the address of the GOT section */
184 static int rs6000_pic_labelno;
186 #ifdef USING_ELFOS_H
187 /* Counter for labels which are to be placed in .fixup. */
188 int fixuplabelno = 0;
189 #endif
191 /* Whether to use variant of AIX ABI for PowerPC64 Linux. */
192 int dot_symbols;
194 /* Specify the machine mode that pointers have. After generation of rtl, the
195 compiler makes no further distinction between pointers and any other objects
196 of this machine mode. */
197 scalar_int_mode rs6000_pmode;
199 /* Width in bits of a pointer. */
200 unsigned rs6000_pointer_size;
202 #ifdef HAVE_AS_GNU_ATTRIBUTE
203 # ifndef HAVE_LD_PPC_GNU_ATTR_LONG_DOUBLE
204 # define HAVE_LD_PPC_GNU_ATTR_LONG_DOUBLE 0
205 # endif
206 /* Flag whether floating point values have been passed/returned.
207 Note that this doesn't say whether fprs are used, since the
208 Tag_GNU_Power_ABI_FP .gnu.attributes value this flag controls
209 should be set for soft-float values passed in gprs and ieee128
210 values passed in vsx registers. */
211 static bool rs6000_passes_float;
212 static bool rs6000_passes_long_double;
213 /* Flag whether vector values have been passed/returned. */
214 static bool rs6000_passes_vector;
215 /* Flag whether small (<= 8 byte) structures have been returned. */
216 static bool rs6000_returns_struct;
217 #endif
219 /* Value is TRUE if register/mode pair is acceptable. */
220 static bool rs6000_hard_regno_mode_ok_p
221 [NUM_MACHINE_MODES][FIRST_PSEUDO_REGISTER];
223 /* Maximum number of registers needed for a given register class and mode. */
224 unsigned char rs6000_class_max_nregs[NUM_MACHINE_MODES][LIM_REG_CLASSES];
226 /* How many registers are needed for a given register and mode. */
227 unsigned char rs6000_hard_regno_nregs[NUM_MACHINE_MODES][FIRST_PSEUDO_REGISTER];
229 /* Map register number to register class. */
230 enum reg_class rs6000_regno_regclass[FIRST_PSEUDO_REGISTER];
232 static int dbg_cost_ctrl;
234 /* Built in types. */
235 tree rs6000_builtin_types[RS6000_BTI_MAX];
236 tree rs6000_builtin_decls[RS6000_BUILTIN_COUNT];
238 /* Flag to say the TOC is initialized */
239 int toc_initialized, need_toc_init;
240 char toc_label_name[10];
242 /* Cached value of rs6000_variable_issue. This is cached in
243 rs6000_variable_issue hook and returned from rs6000_sched_reorder2. */
244 static short cached_can_issue_more;
246 static GTY(()) section *read_only_data_section;
247 static GTY(()) section *private_data_section;
248 static GTY(()) section *tls_data_section;
249 static GTY(()) section *tls_private_data_section;
250 static GTY(()) section *read_only_private_data_section;
251 static GTY(()) section *sdata2_section;
252 static GTY(()) section *toc_section;
254 struct builtin_description
256 const HOST_WIDE_INT mask;
257 const enum insn_code icode;
258 const char *const name;
259 const enum rs6000_builtins code;
262 /* Describe the vector unit used for modes. */
263 enum rs6000_vector rs6000_vector_unit[NUM_MACHINE_MODES];
264 enum rs6000_vector rs6000_vector_mem[NUM_MACHINE_MODES];
266 /* Register classes for various constraints that are based on the target
267 switches. */
268 enum reg_class rs6000_constraints[RS6000_CONSTRAINT_MAX];
270 /* Describe the alignment of a vector. */
271 int rs6000_vector_align[NUM_MACHINE_MODES];
273 /* Map selected modes to types for builtins. */
274 static GTY(()) tree builtin_mode_to_type[MAX_MACHINE_MODE][2];
276 /* What modes to automatically generate reciprocal divide estimate (fre) and
277 reciprocal sqrt (frsqrte) for. */
278 unsigned char rs6000_recip_bits[MAX_MACHINE_MODE];
280 /* Masks to determine which reciprocal esitmate instructions to generate
281 automatically. */
282 enum rs6000_recip_mask {
283 RECIP_SF_DIV = 0x001, /* Use divide estimate */
284 RECIP_DF_DIV = 0x002,
285 RECIP_V4SF_DIV = 0x004,
286 RECIP_V2DF_DIV = 0x008,
288 RECIP_SF_RSQRT = 0x010, /* Use reciprocal sqrt estimate. */
289 RECIP_DF_RSQRT = 0x020,
290 RECIP_V4SF_RSQRT = 0x040,
291 RECIP_V2DF_RSQRT = 0x080,
293 /* Various combination of flags for -mrecip=xxx. */
294 RECIP_NONE = 0,
295 RECIP_ALL = (RECIP_SF_DIV | RECIP_DF_DIV | RECIP_V4SF_DIV
296 | RECIP_V2DF_DIV | RECIP_SF_RSQRT | RECIP_DF_RSQRT
297 | RECIP_V4SF_RSQRT | RECIP_V2DF_RSQRT),
299 RECIP_HIGH_PRECISION = RECIP_ALL,
301 /* On low precision machines like the power5, don't enable double precision
302 reciprocal square root estimate, since it isn't accurate enough. */
303 RECIP_LOW_PRECISION = (RECIP_ALL & ~(RECIP_DF_RSQRT | RECIP_V2DF_RSQRT))
306 /* -mrecip options. */
307 static struct
309 const char *string; /* option name */
310 unsigned int mask; /* mask bits to set */
311 } recip_options[] = {
312 { "all", RECIP_ALL },
313 { "none", RECIP_NONE },
314 { "div", (RECIP_SF_DIV | RECIP_DF_DIV | RECIP_V4SF_DIV
315 | RECIP_V2DF_DIV) },
316 { "divf", (RECIP_SF_DIV | RECIP_V4SF_DIV) },
317 { "divd", (RECIP_DF_DIV | RECIP_V2DF_DIV) },
318 { "rsqrt", (RECIP_SF_RSQRT | RECIP_DF_RSQRT | RECIP_V4SF_RSQRT
319 | RECIP_V2DF_RSQRT) },
320 { "rsqrtf", (RECIP_SF_RSQRT | RECIP_V4SF_RSQRT) },
321 { "rsqrtd", (RECIP_DF_RSQRT | RECIP_V2DF_RSQRT) },
324 /* Used by __builtin_cpu_is(), mapping from PLATFORM names to values. */
325 static const struct
327 const char *cpu;
328 unsigned int cpuid;
329 } cpu_is_info[] = {
330 { "power9", PPC_PLATFORM_POWER9 },
331 { "power8", PPC_PLATFORM_POWER8 },
332 { "power7", PPC_PLATFORM_POWER7 },
333 { "power6x", PPC_PLATFORM_POWER6X },
334 { "power6", PPC_PLATFORM_POWER6 },
335 { "power5+", PPC_PLATFORM_POWER5_PLUS },
336 { "power5", PPC_PLATFORM_POWER5 },
337 { "ppc970", PPC_PLATFORM_PPC970 },
338 { "power4", PPC_PLATFORM_POWER4 },
339 { "ppca2", PPC_PLATFORM_PPCA2 },
340 { "ppc476", PPC_PLATFORM_PPC476 },
341 { "ppc464", PPC_PLATFORM_PPC464 },
342 { "ppc440", PPC_PLATFORM_PPC440 },
343 { "ppc405", PPC_PLATFORM_PPC405 },
344 { "ppc-cell-be", PPC_PLATFORM_CELL_BE }
347 /* Used by __builtin_cpu_supports(), mapping from HWCAP names to masks. */
348 static const struct
350 const char *hwcap;
351 int mask;
352 unsigned int id;
353 } cpu_supports_info[] = {
354 /* AT_HWCAP masks. */
355 { "4xxmac", PPC_FEATURE_HAS_4xxMAC, 0 },
356 { "altivec", PPC_FEATURE_HAS_ALTIVEC, 0 },
357 { "arch_2_05", PPC_FEATURE_ARCH_2_05, 0 },
358 { "arch_2_06", PPC_FEATURE_ARCH_2_06, 0 },
359 { "archpmu", PPC_FEATURE_PERFMON_COMPAT, 0 },
360 { "booke", PPC_FEATURE_BOOKE, 0 },
361 { "cellbe", PPC_FEATURE_CELL_BE, 0 },
362 { "dfp", PPC_FEATURE_HAS_DFP, 0 },
363 { "efpdouble", PPC_FEATURE_HAS_EFP_DOUBLE, 0 },
364 { "efpsingle", PPC_FEATURE_HAS_EFP_SINGLE, 0 },
365 { "fpu", PPC_FEATURE_HAS_FPU, 0 },
366 { "ic_snoop", PPC_FEATURE_ICACHE_SNOOP, 0 },
367 { "mmu", PPC_FEATURE_HAS_MMU, 0 },
368 { "notb", PPC_FEATURE_NO_TB, 0 },
369 { "pa6t", PPC_FEATURE_PA6T, 0 },
370 { "power4", PPC_FEATURE_POWER4, 0 },
371 { "power5", PPC_FEATURE_POWER5, 0 },
372 { "power5+", PPC_FEATURE_POWER5_PLUS, 0 },
373 { "power6x", PPC_FEATURE_POWER6_EXT, 0 },
374 { "ppc32", PPC_FEATURE_32, 0 },
375 { "ppc601", PPC_FEATURE_601_INSTR, 0 },
376 { "ppc64", PPC_FEATURE_64, 0 },
377 { "ppcle", PPC_FEATURE_PPC_LE, 0 },
378 { "smt", PPC_FEATURE_SMT, 0 },
379 { "spe", PPC_FEATURE_HAS_SPE, 0 },
380 { "true_le", PPC_FEATURE_TRUE_LE, 0 },
381 { "ucache", PPC_FEATURE_UNIFIED_CACHE, 0 },
382 { "vsx", PPC_FEATURE_HAS_VSX, 0 },
384 /* AT_HWCAP2 masks. */
385 { "arch_2_07", PPC_FEATURE2_ARCH_2_07, 1 },
386 { "dscr", PPC_FEATURE2_HAS_DSCR, 1 },
387 { "ebb", PPC_FEATURE2_HAS_EBB, 1 },
388 { "htm", PPC_FEATURE2_HAS_HTM, 1 },
389 { "htm-nosc", PPC_FEATURE2_HTM_NOSC, 1 },
390 { "isel", PPC_FEATURE2_HAS_ISEL, 1 },
391 { "tar", PPC_FEATURE2_HAS_TAR, 1 },
392 { "vcrypto", PPC_FEATURE2_HAS_VEC_CRYPTO, 1 },
393 { "arch_3_00", PPC_FEATURE2_ARCH_3_00, 1 },
394 { "ieee128", PPC_FEATURE2_HAS_IEEE128, 1 },
395 { "darn", PPC_FEATURE2_DARN, 1 },
396 { "scv", PPC_FEATURE2_SCV, 1 }
399 /* On PowerPC, we have a limited number of target clones that we care about
400 which means we can use an array to hold the options, rather than having more
401 elaborate data structures to identify each possible variation. Order the
402 clones from the default to the highest ISA. */
403 enum {
404 CLONE_DEFAULT = 0, /* default clone. */
405 CLONE_ISA_2_05, /* ISA 2.05 (power6). */
406 CLONE_ISA_2_06, /* ISA 2.06 (power7). */
407 CLONE_ISA_2_07, /* ISA 2.07 (power8). */
408 CLONE_ISA_3_00, /* ISA 3.00 (power9). */
409 CLONE_MAX
412 /* Map compiler ISA bits into HWCAP names. */
413 struct clone_map {
414 HOST_WIDE_INT isa_mask; /* rs6000_isa mask */
415 const char *name; /* name to use in __builtin_cpu_supports. */
418 static const struct clone_map rs6000_clone_map[CLONE_MAX] = {
419 { 0, "" }, /* Default options. */
420 { OPTION_MASK_CMPB, "arch_2_05" }, /* ISA 2.05 (power6). */
421 { OPTION_MASK_POPCNTD, "arch_2_06" }, /* ISA 2.06 (power7). */
422 { OPTION_MASK_P8_VECTOR, "arch_2_07" }, /* ISA 2.07 (power8). */
423 { OPTION_MASK_P9_VECTOR, "arch_3_00" }, /* ISA 3.00 (power9). */
427 /* Newer LIBCs explicitly export this symbol to declare that they provide
428 the AT_PLATFORM and AT_HWCAP/AT_HWCAP2 values in the TCB. We emit a
429 reference to this symbol whenever we expand a CPU builtin, so that
430 we never link against an old LIBC. */
431 const char *tcb_verification_symbol = "__parse_hwcap_and_convert_at_platform";
433 /* True if we have expanded a CPU builtin. */
434 bool cpu_builtin_p;
436 /* Pointer to function (in rs6000-c.c) that can define or undefine target
437 macros that have changed. Languages that don't support the preprocessor
438 don't link in rs6000-c.c, so we can't call it directly. */
439 void (*rs6000_target_modify_macros_ptr) (bool, HOST_WIDE_INT, HOST_WIDE_INT);
441 /* Simplfy register classes into simpler classifications. We assume
442 GPR_REG_TYPE - FPR_REG_TYPE are ordered so that we can use a simple range
443 check for standard register classes (gpr/floating/altivec/vsx) and
444 floating/vector classes (float/altivec/vsx). */
446 enum rs6000_reg_type {
447 NO_REG_TYPE,
448 PSEUDO_REG_TYPE,
449 GPR_REG_TYPE,
450 VSX_REG_TYPE,
451 ALTIVEC_REG_TYPE,
452 FPR_REG_TYPE,
453 SPR_REG_TYPE,
454 CR_REG_TYPE
457 /* Map register class to register type. */
458 static enum rs6000_reg_type reg_class_to_reg_type[N_REG_CLASSES];
460 /* First/last register type for the 'normal' register types (i.e. general
461 purpose, floating point, altivec, and VSX registers). */
462 #define IS_STD_REG_TYPE(RTYPE) IN_RANGE(RTYPE, GPR_REG_TYPE, FPR_REG_TYPE)
464 #define IS_FP_VECT_REG_TYPE(RTYPE) IN_RANGE(RTYPE, VSX_REG_TYPE, FPR_REG_TYPE)
467 /* Register classes we care about in secondary reload or go if legitimate
468 address. We only need to worry about GPR, FPR, and Altivec registers here,
469 along an ANY field that is the OR of the 3 register classes. */
471 enum rs6000_reload_reg_type {
472 RELOAD_REG_GPR, /* General purpose registers. */
473 RELOAD_REG_FPR, /* Traditional floating point regs. */
474 RELOAD_REG_VMX, /* Altivec (VMX) registers. */
475 RELOAD_REG_ANY, /* OR of GPR, FPR, Altivec masks. */
476 N_RELOAD_REG
479 /* For setting up register classes, loop through the 3 register classes mapping
480 into real registers, and skip the ANY class, which is just an OR of the
481 bits. */
482 #define FIRST_RELOAD_REG_CLASS RELOAD_REG_GPR
483 #define LAST_RELOAD_REG_CLASS RELOAD_REG_VMX
485 /* Map reload register type to a register in the register class. */
486 struct reload_reg_map_type {
487 const char *name; /* Register class name. */
488 int reg; /* Register in the register class. */
491 static const struct reload_reg_map_type reload_reg_map[N_RELOAD_REG] = {
492 { "Gpr", FIRST_GPR_REGNO }, /* RELOAD_REG_GPR. */
493 { "Fpr", FIRST_FPR_REGNO }, /* RELOAD_REG_FPR. */
494 { "VMX", FIRST_ALTIVEC_REGNO }, /* RELOAD_REG_VMX. */
495 { "Any", -1 }, /* RELOAD_REG_ANY. */
498 /* Mask bits for each register class, indexed per mode. Historically the
499 compiler has been more restrictive which types can do PRE_MODIFY instead of
500 PRE_INC and PRE_DEC, so keep track of sepaate bits for these two. */
501 typedef unsigned char addr_mask_type;
503 #define RELOAD_REG_VALID 0x01 /* Mode valid in register.. */
504 #define RELOAD_REG_MULTIPLE 0x02 /* Mode takes multiple registers. */
505 #define RELOAD_REG_INDEXED 0x04 /* Reg+reg addressing. */
506 #define RELOAD_REG_OFFSET 0x08 /* Reg+offset addressing. */
507 #define RELOAD_REG_PRE_INCDEC 0x10 /* PRE_INC/PRE_DEC valid. */
508 #define RELOAD_REG_PRE_MODIFY 0x20 /* PRE_MODIFY valid. */
509 #define RELOAD_REG_AND_M16 0x40 /* AND -16 addressing. */
510 #define RELOAD_REG_QUAD_OFFSET 0x80 /* quad offset is limited. */
512 /* Register type masks based on the type, of valid addressing modes. */
513 struct rs6000_reg_addr {
514 enum insn_code reload_load; /* INSN to reload for loading. */
515 enum insn_code reload_store; /* INSN to reload for storing. */
516 enum insn_code reload_fpr_gpr; /* INSN to move from FPR to GPR. */
517 enum insn_code reload_gpr_vsx; /* INSN to move from GPR to VSX. */
518 enum insn_code reload_vsx_gpr; /* INSN to move from VSX to GPR. */
519 enum insn_code fusion_gpr_ld; /* INSN for fusing gpr ADDIS/loads. */
520 /* INSNs for fusing addi with loads
521 or stores for each reg. class. */
522 enum insn_code fusion_addi_ld[(int)N_RELOAD_REG];
523 enum insn_code fusion_addi_st[(int)N_RELOAD_REG];
524 /* INSNs for fusing addis with loads
525 or stores for each reg. class. */
526 enum insn_code fusion_addis_ld[(int)N_RELOAD_REG];
527 enum insn_code fusion_addis_st[(int)N_RELOAD_REG];
528 addr_mask_type addr_mask[(int)N_RELOAD_REG]; /* Valid address masks. */
529 bool scalar_in_vmx_p; /* Scalar value can go in VMX. */
530 bool fused_toc; /* Mode supports TOC fusion. */
533 static struct rs6000_reg_addr reg_addr[NUM_MACHINE_MODES];
535 /* Helper function to say whether a mode supports PRE_INC or PRE_DEC. */
536 static inline bool
537 mode_supports_pre_incdec_p (machine_mode mode)
539 return ((reg_addr[mode].addr_mask[RELOAD_REG_ANY] & RELOAD_REG_PRE_INCDEC)
540 != 0);
543 /* Helper function to say whether a mode supports PRE_MODIFY. */
544 static inline bool
545 mode_supports_pre_modify_p (machine_mode mode)
547 return ((reg_addr[mode].addr_mask[RELOAD_REG_ANY] & RELOAD_REG_PRE_MODIFY)
548 != 0);
551 /* Given that there exists at least one variable that is set (produced)
552 by OUT_INSN and read (consumed) by IN_INSN, return true iff
553 IN_INSN represents one or more memory store operations and none of
554 the variables set by OUT_INSN is used by IN_INSN as the address of a
555 store operation. If either IN_INSN or OUT_INSN does not represent
556 a "single" RTL SET expression (as loosely defined by the
557 implementation of the single_set function) or a PARALLEL with only
558 SETs, CLOBBERs, and USEs inside, this function returns false.
560 This rs6000-specific version of store_data_bypass_p checks for
561 certain conditions that result in assertion failures (and internal
562 compiler errors) in the generic store_data_bypass_p function and
563 returns false rather than calling store_data_bypass_p if one of the
564 problematic conditions is detected. */
567 rs6000_store_data_bypass_p (rtx_insn *out_insn, rtx_insn *in_insn)
569 rtx out_set, in_set;
570 rtx out_pat, in_pat;
571 rtx out_exp, in_exp;
572 int i, j;
574 in_set = single_set (in_insn);
575 if (in_set)
577 if (MEM_P (SET_DEST (in_set)))
579 out_set = single_set (out_insn);
580 if (!out_set)
582 out_pat = PATTERN (out_insn);
583 if (GET_CODE (out_pat) == PARALLEL)
585 for (i = 0; i < XVECLEN (out_pat, 0); i++)
587 out_exp = XVECEXP (out_pat, 0, i);
588 if ((GET_CODE (out_exp) == CLOBBER)
589 || (GET_CODE (out_exp) == USE))
590 continue;
591 else if (GET_CODE (out_exp) != SET)
592 return false;
598 else
600 in_pat = PATTERN (in_insn);
601 if (GET_CODE (in_pat) != PARALLEL)
602 return false;
604 for (i = 0; i < XVECLEN (in_pat, 0); i++)
606 in_exp = XVECEXP (in_pat, 0, i);
607 if ((GET_CODE (in_exp) == CLOBBER) || (GET_CODE (in_exp) == USE))
608 continue;
609 else if (GET_CODE (in_exp) != SET)
610 return false;
612 if (MEM_P (SET_DEST (in_exp)))
614 out_set = single_set (out_insn);
615 if (!out_set)
617 out_pat = PATTERN (out_insn);
618 if (GET_CODE (out_pat) != PARALLEL)
619 return false;
620 for (j = 0; j < XVECLEN (out_pat, 0); j++)
622 out_exp = XVECEXP (out_pat, 0, j);
623 if ((GET_CODE (out_exp) == CLOBBER)
624 || (GET_CODE (out_exp) == USE))
625 continue;
626 else if (GET_CODE (out_exp) != SET)
627 return false;
633 return store_data_bypass_p (out_insn, in_insn);
636 /* Return true if we have D-form addressing in altivec registers. */
637 static inline bool
638 mode_supports_vmx_dform (machine_mode mode)
640 return ((reg_addr[mode].addr_mask[RELOAD_REG_VMX] & RELOAD_REG_OFFSET) != 0);
643 /* Return true if we have D-form addressing in VSX registers. This addressing
644 is more limited than normal d-form addressing in that the offset must be
645 aligned on a 16-byte boundary. */
646 static inline bool
647 mode_supports_vsx_dform_quad (machine_mode mode)
649 return ((reg_addr[mode].addr_mask[RELOAD_REG_ANY] & RELOAD_REG_QUAD_OFFSET)
650 != 0);
654 /* Processor costs (relative to an add) */
656 const struct processor_costs *rs6000_cost;
658 /* Instruction size costs on 32bit processors. */
659 static const
660 struct processor_costs size32_cost = {
661 COSTS_N_INSNS (1), /* mulsi */
662 COSTS_N_INSNS (1), /* mulsi_const */
663 COSTS_N_INSNS (1), /* mulsi_const9 */
664 COSTS_N_INSNS (1), /* muldi */
665 COSTS_N_INSNS (1), /* divsi */
666 COSTS_N_INSNS (1), /* divdi */
667 COSTS_N_INSNS (1), /* fp */
668 COSTS_N_INSNS (1), /* dmul */
669 COSTS_N_INSNS (1), /* sdiv */
670 COSTS_N_INSNS (1), /* ddiv */
671 32, /* cache line size */
672 0, /* l1 cache */
673 0, /* l2 cache */
674 0, /* streams */
675 0, /* SF->DF convert */
678 /* Instruction size costs on 64bit processors. */
679 static const
680 struct processor_costs size64_cost = {
681 COSTS_N_INSNS (1), /* mulsi */
682 COSTS_N_INSNS (1), /* mulsi_const */
683 COSTS_N_INSNS (1), /* mulsi_const9 */
684 COSTS_N_INSNS (1), /* muldi */
685 COSTS_N_INSNS (1), /* divsi */
686 COSTS_N_INSNS (1), /* divdi */
687 COSTS_N_INSNS (1), /* fp */
688 COSTS_N_INSNS (1), /* dmul */
689 COSTS_N_INSNS (1), /* sdiv */
690 COSTS_N_INSNS (1), /* ddiv */
691 128, /* cache line size */
692 0, /* l1 cache */
693 0, /* l2 cache */
694 0, /* streams */
695 0, /* SF->DF convert */
698 /* Instruction costs on RS64A processors. */
699 static const
700 struct processor_costs rs64a_cost = {
701 COSTS_N_INSNS (20), /* mulsi */
702 COSTS_N_INSNS (12), /* mulsi_const */
703 COSTS_N_INSNS (8), /* mulsi_const9 */
704 COSTS_N_INSNS (34), /* muldi */
705 COSTS_N_INSNS (65), /* divsi */
706 COSTS_N_INSNS (67), /* divdi */
707 COSTS_N_INSNS (4), /* fp */
708 COSTS_N_INSNS (4), /* dmul */
709 COSTS_N_INSNS (31), /* sdiv */
710 COSTS_N_INSNS (31), /* ddiv */
711 128, /* cache line size */
712 128, /* l1 cache */
713 2048, /* l2 cache */
714 1, /* streams */
715 0, /* SF->DF convert */
718 /* Instruction costs on MPCCORE processors. */
719 static const
720 struct processor_costs mpccore_cost = {
721 COSTS_N_INSNS (2), /* mulsi */
722 COSTS_N_INSNS (2), /* mulsi_const */
723 COSTS_N_INSNS (2), /* mulsi_const9 */
724 COSTS_N_INSNS (2), /* muldi */
725 COSTS_N_INSNS (6), /* divsi */
726 COSTS_N_INSNS (6), /* divdi */
727 COSTS_N_INSNS (4), /* fp */
728 COSTS_N_INSNS (5), /* dmul */
729 COSTS_N_INSNS (10), /* sdiv */
730 COSTS_N_INSNS (17), /* ddiv */
731 32, /* cache line size */
732 4, /* l1 cache */
733 16, /* l2 cache */
734 1, /* streams */
735 0, /* SF->DF convert */
738 /* Instruction costs on PPC403 processors. */
739 static const
740 struct processor_costs ppc403_cost = {
741 COSTS_N_INSNS (4), /* mulsi */
742 COSTS_N_INSNS (4), /* mulsi_const */
743 COSTS_N_INSNS (4), /* mulsi_const9 */
744 COSTS_N_INSNS (4), /* muldi */
745 COSTS_N_INSNS (33), /* divsi */
746 COSTS_N_INSNS (33), /* divdi */
747 COSTS_N_INSNS (11), /* fp */
748 COSTS_N_INSNS (11), /* dmul */
749 COSTS_N_INSNS (11), /* sdiv */
750 COSTS_N_INSNS (11), /* ddiv */
751 32, /* cache line size */
752 4, /* l1 cache */
753 16, /* l2 cache */
754 1, /* streams */
755 0, /* SF->DF convert */
758 /* Instruction costs on PPC405 processors. */
759 static const
760 struct processor_costs ppc405_cost = {
761 COSTS_N_INSNS (5), /* mulsi */
762 COSTS_N_INSNS (4), /* mulsi_const */
763 COSTS_N_INSNS (3), /* mulsi_const9 */
764 COSTS_N_INSNS (5), /* muldi */
765 COSTS_N_INSNS (35), /* divsi */
766 COSTS_N_INSNS (35), /* divdi */
767 COSTS_N_INSNS (11), /* fp */
768 COSTS_N_INSNS (11), /* dmul */
769 COSTS_N_INSNS (11), /* sdiv */
770 COSTS_N_INSNS (11), /* ddiv */
771 32, /* cache line size */
772 16, /* l1 cache */
773 128, /* l2 cache */
774 1, /* streams */
775 0, /* SF->DF convert */
778 /* Instruction costs on PPC440 processors. */
779 static const
780 struct processor_costs ppc440_cost = {
781 COSTS_N_INSNS (3), /* mulsi */
782 COSTS_N_INSNS (2), /* mulsi_const */
783 COSTS_N_INSNS (2), /* mulsi_const9 */
784 COSTS_N_INSNS (3), /* muldi */
785 COSTS_N_INSNS (34), /* divsi */
786 COSTS_N_INSNS (34), /* divdi */
787 COSTS_N_INSNS (5), /* fp */
788 COSTS_N_INSNS (5), /* dmul */
789 COSTS_N_INSNS (19), /* sdiv */
790 COSTS_N_INSNS (33), /* ddiv */
791 32, /* cache line size */
792 32, /* l1 cache */
793 256, /* l2 cache */
794 1, /* streams */
795 0, /* SF->DF convert */
798 /* Instruction costs on PPC476 processors. */
799 static const
800 struct processor_costs ppc476_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 (11), /* divsi */
806 COSTS_N_INSNS (11), /* divdi */
807 COSTS_N_INSNS (6), /* fp */
808 COSTS_N_INSNS (6), /* dmul */
809 COSTS_N_INSNS (19), /* sdiv */
810 COSTS_N_INSNS (33), /* ddiv */
811 32, /* l1 cache line size */
812 32, /* l1 cache */
813 512, /* l2 cache */
814 1, /* streams */
815 0, /* SF->DF convert */
818 /* Instruction costs on PPC601 processors. */
819 static const
820 struct processor_costs ppc601_cost = {
821 COSTS_N_INSNS (5), /* mulsi */
822 COSTS_N_INSNS (5), /* mulsi_const */
823 COSTS_N_INSNS (5), /* mulsi_const9 */
824 COSTS_N_INSNS (5), /* muldi */
825 COSTS_N_INSNS (36), /* divsi */
826 COSTS_N_INSNS (36), /* divdi */
827 COSTS_N_INSNS (4), /* fp */
828 COSTS_N_INSNS (5), /* dmul */
829 COSTS_N_INSNS (17), /* sdiv */
830 COSTS_N_INSNS (31), /* ddiv */
831 32, /* cache line size */
832 32, /* l1 cache */
833 256, /* l2 cache */
834 1, /* streams */
835 0, /* SF->DF convert */
838 /* Instruction costs on PPC603 processors. */
839 static const
840 struct processor_costs ppc603_cost = {
841 COSTS_N_INSNS (5), /* mulsi */
842 COSTS_N_INSNS (3), /* mulsi_const */
843 COSTS_N_INSNS (2), /* mulsi_const9 */
844 COSTS_N_INSNS (5), /* muldi */
845 COSTS_N_INSNS (37), /* divsi */
846 COSTS_N_INSNS (37), /* divdi */
847 COSTS_N_INSNS (3), /* fp */
848 COSTS_N_INSNS (4), /* dmul */
849 COSTS_N_INSNS (18), /* sdiv */
850 COSTS_N_INSNS (33), /* ddiv */
851 32, /* cache line size */
852 8, /* l1 cache */
853 64, /* l2 cache */
854 1, /* streams */
855 0, /* SF->DF convert */
858 /* Instruction costs on PPC604 processors. */
859 static const
860 struct processor_costs ppc604_cost = {
861 COSTS_N_INSNS (4), /* mulsi */
862 COSTS_N_INSNS (4), /* mulsi_const */
863 COSTS_N_INSNS (4), /* mulsi_const9 */
864 COSTS_N_INSNS (4), /* muldi */
865 COSTS_N_INSNS (20), /* divsi */
866 COSTS_N_INSNS (20), /* divdi */
867 COSTS_N_INSNS (3), /* fp */
868 COSTS_N_INSNS (3), /* dmul */
869 COSTS_N_INSNS (18), /* sdiv */
870 COSTS_N_INSNS (32), /* ddiv */
871 32, /* cache line size */
872 16, /* l1 cache */
873 512, /* l2 cache */
874 1, /* streams */
875 0, /* SF->DF convert */
878 /* Instruction costs on PPC604e processors. */
879 static const
880 struct processor_costs ppc604e_cost = {
881 COSTS_N_INSNS (2), /* mulsi */
882 COSTS_N_INSNS (2), /* mulsi_const */
883 COSTS_N_INSNS (2), /* mulsi_const9 */
884 COSTS_N_INSNS (2), /* muldi */
885 COSTS_N_INSNS (20), /* divsi */
886 COSTS_N_INSNS (20), /* divdi */
887 COSTS_N_INSNS (3), /* fp */
888 COSTS_N_INSNS (3), /* dmul */
889 COSTS_N_INSNS (18), /* sdiv */
890 COSTS_N_INSNS (32), /* ddiv */
891 32, /* cache line size */
892 32, /* l1 cache */
893 1024, /* l2 cache */
894 1, /* streams */
895 0, /* SF->DF convert */
898 /* Instruction costs on PPC620 processors. */
899 static const
900 struct processor_costs ppc620_cost = {
901 COSTS_N_INSNS (5), /* mulsi */
902 COSTS_N_INSNS (4), /* mulsi_const */
903 COSTS_N_INSNS (3), /* mulsi_const9 */
904 COSTS_N_INSNS (7), /* muldi */
905 COSTS_N_INSNS (21), /* divsi */
906 COSTS_N_INSNS (37), /* divdi */
907 COSTS_N_INSNS (3), /* fp */
908 COSTS_N_INSNS (3), /* dmul */
909 COSTS_N_INSNS (18), /* sdiv */
910 COSTS_N_INSNS (32), /* ddiv */
911 128, /* cache line size */
912 32, /* l1 cache */
913 1024, /* l2 cache */
914 1, /* streams */
915 0, /* SF->DF convert */
918 /* Instruction costs on PPC630 processors. */
919 static const
920 struct processor_costs ppc630_cost = {
921 COSTS_N_INSNS (5), /* mulsi */
922 COSTS_N_INSNS (4), /* mulsi_const */
923 COSTS_N_INSNS (3), /* mulsi_const9 */
924 COSTS_N_INSNS (7), /* muldi */
925 COSTS_N_INSNS (21), /* divsi */
926 COSTS_N_INSNS (37), /* divdi */
927 COSTS_N_INSNS (3), /* fp */
928 COSTS_N_INSNS (3), /* dmul */
929 COSTS_N_INSNS (17), /* sdiv */
930 COSTS_N_INSNS (21), /* ddiv */
931 128, /* cache line size */
932 64, /* l1 cache */
933 1024, /* l2 cache */
934 1, /* streams */
935 0, /* SF->DF convert */
938 /* Instruction costs on Cell processor. */
939 /* COSTS_N_INSNS (1) ~ one add. */
940 static const
941 struct processor_costs ppccell_cost = {
942 COSTS_N_INSNS (9/2)+2, /* mulsi */
943 COSTS_N_INSNS (6/2), /* mulsi_const */
944 COSTS_N_INSNS (6/2), /* mulsi_const9 */
945 COSTS_N_INSNS (15/2)+2, /* muldi */
946 COSTS_N_INSNS (38/2), /* divsi */
947 COSTS_N_INSNS (70/2), /* divdi */
948 COSTS_N_INSNS (10/2), /* fp */
949 COSTS_N_INSNS (10/2), /* dmul */
950 COSTS_N_INSNS (74/2), /* sdiv */
951 COSTS_N_INSNS (74/2), /* ddiv */
952 128, /* cache line size */
953 32, /* l1 cache */
954 512, /* l2 cache */
955 6, /* streams */
956 0, /* SF->DF convert */
959 /* Instruction costs on PPC750 and PPC7400 processors. */
960 static const
961 struct processor_costs ppc750_cost = {
962 COSTS_N_INSNS (5), /* mulsi */
963 COSTS_N_INSNS (3), /* mulsi_const */
964 COSTS_N_INSNS (2), /* mulsi_const9 */
965 COSTS_N_INSNS (5), /* muldi */
966 COSTS_N_INSNS (17), /* divsi */
967 COSTS_N_INSNS (17), /* divdi */
968 COSTS_N_INSNS (3), /* fp */
969 COSTS_N_INSNS (3), /* dmul */
970 COSTS_N_INSNS (17), /* sdiv */
971 COSTS_N_INSNS (31), /* ddiv */
972 32, /* cache line size */
973 32, /* l1 cache */
974 512, /* l2 cache */
975 1, /* streams */
976 0, /* SF->DF convert */
979 /* Instruction costs on PPC7450 processors. */
980 static const
981 struct processor_costs ppc7450_cost = {
982 COSTS_N_INSNS (4), /* mulsi */
983 COSTS_N_INSNS (3), /* mulsi_const */
984 COSTS_N_INSNS (3), /* mulsi_const9 */
985 COSTS_N_INSNS (4), /* muldi */
986 COSTS_N_INSNS (23), /* divsi */
987 COSTS_N_INSNS (23), /* divdi */
988 COSTS_N_INSNS (5), /* fp */
989 COSTS_N_INSNS (5), /* dmul */
990 COSTS_N_INSNS (21), /* sdiv */
991 COSTS_N_INSNS (35), /* ddiv */
992 32, /* cache line size */
993 32, /* l1 cache */
994 1024, /* l2 cache */
995 1, /* streams */
996 0, /* SF->DF convert */
999 /* Instruction costs on PPC8540 processors. */
1000 static const
1001 struct processor_costs ppc8540_cost = {
1002 COSTS_N_INSNS (4), /* mulsi */
1003 COSTS_N_INSNS (4), /* mulsi_const */
1004 COSTS_N_INSNS (4), /* mulsi_const9 */
1005 COSTS_N_INSNS (4), /* muldi */
1006 COSTS_N_INSNS (19), /* divsi */
1007 COSTS_N_INSNS (19), /* divdi */
1008 COSTS_N_INSNS (4), /* fp */
1009 COSTS_N_INSNS (4), /* dmul */
1010 COSTS_N_INSNS (29), /* sdiv */
1011 COSTS_N_INSNS (29), /* ddiv */
1012 32, /* cache line size */
1013 32, /* l1 cache */
1014 256, /* l2 cache */
1015 1, /* prefetch streams /*/
1016 0, /* SF->DF convert */
1019 /* Instruction costs on E300C2 and E300C3 cores. */
1020 static const
1021 struct processor_costs ppce300c2c3_cost = {
1022 COSTS_N_INSNS (4), /* mulsi */
1023 COSTS_N_INSNS (4), /* mulsi_const */
1024 COSTS_N_INSNS (4), /* mulsi_const9 */
1025 COSTS_N_INSNS (4), /* muldi */
1026 COSTS_N_INSNS (19), /* divsi */
1027 COSTS_N_INSNS (19), /* divdi */
1028 COSTS_N_INSNS (3), /* fp */
1029 COSTS_N_INSNS (4), /* dmul */
1030 COSTS_N_INSNS (18), /* sdiv */
1031 COSTS_N_INSNS (33), /* ddiv */
1033 16, /* l1 cache */
1034 16, /* l2 cache */
1035 1, /* prefetch streams /*/
1036 0, /* SF->DF convert */
1039 /* Instruction costs on PPCE500MC processors. */
1040 static const
1041 struct processor_costs ppce500mc_cost = {
1042 COSTS_N_INSNS (4), /* mulsi */
1043 COSTS_N_INSNS (4), /* mulsi_const */
1044 COSTS_N_INSNS (4), /* mulsi_const9 */
1045 COSTS_N_INSNS (4), /* muldi */
1046 COSTS_N_INSNS (14), /* divsi */
1047 COSTS_N_INSNS (14), /* divdi */
1048 COSTS_N_INSNS (8), /* fp */
1049 COSTS_N_INSNS (10), /* dmul */
1050 COSTS_N_INSNS (36), /* sdiv */
1051 COSTS_N_INSNS (66), /* ddiv */
1052 64, /* cache line size */
1053 32, /* l1 cache */
1054 128, /* l2 cache */
1055 1, /* prefetch streams /*/
1056 0, /* SF->DF convert */
1059 /* Instruction costs on PPCE500MC64 processors. */
1060 static const
1061 struct processor_costs ppce500mc64_cost = {
1062 COSTS_N_INSNS (4), /* mulsi */
1063 COSTS_N_INSNS (4), /* mulsi_const */
1064 COSTS_N_INSNS (4), /* mulsi_const9 */
1065 COSTS_N_INSNS (4), /* muldi */
1066 COSTS_N_INSNS (14), /* divsi */
1067 COSTS_N_INSNS (14), /* divdi */
1068 COSTS_N_INSNS (4), /* fp */
1069 COSTS_N_INSNS (10), /* dmul */
1070 COSTS_N_INSNS (36), /* sdiv */
1071 COSTS_N_INSNS (66), /* ddiv */
1072 64, /* cache line size */
1073 32, /* l1 cache */
1074 128, /* l2 cache */
1075 1, /* prefetch streams /*/
1076 0, /* SF->DF convert */
1079 /* Instruction costs on PPCE5500 processors. */
1080 static const
1081 struct processor_costs ppce5500_cost = {
1082 COSTS_N_INSNS (5), /* mulsi */
1083 COSTS_N_INSNS (5), /* mulsi_const */
1084 COSTS_N_INSNS (4), /* mulsi_const9 */
1085 COSTS_N_INSNS (5), /* muldi */
1086 COSTS_N_INSNS (14), /* divsi */
1087 COSTS_N_INSNS (14), /* divdi */
1088 COSTS_N_INSNS (7), /* fp */
1089 COSTS_N_INSNS (10), /* dmul */
1090 COSTS_N_INSNS (36), /* sdiv */
1091 COSTS_N_INSNS (66), /* ddiv */
1092 64, /* cache line size */
1093 32, /* l1 cache */
1094 128, /* l2 cache */
1095 1, /* prefetch streams /*/
1096 0, /* SF->DF convert */
1099 /* Instruction costs on PPCE6500 processors. */
1100 static const
1101 struct processor_costs ppce6500_cost = {
1102 COSTS_N_INSNS (5), /* mulsi */
1103 COSTS_N_INSNS (5), /* mulsi_const */
1104 COSTS_N_INSNS (4), /* mulsi_const9 */
1105 COSTS_N_INSNS (5), /* muldi */
1106 COSTS_N_INSNS (14), /* divsi */
1107 COSTS_N_INSNS (14), /* divdi */
1108 COSTS_N_INSNS (7), /* fp */
1109 COSTS_N_INSNS (10), /* dmul */
1110 COSTS_N_INSNS (36), /* sdiv */
1111 COSTS_N_INSNS (66), /* ddiv */
1112 64, /* cache line size */
1113 32, /* l1 cache */
1114 128, /* l2 cache */
1115 1, /* prefetch streams /*/
1116 0, /* SF->DF convert */
1119 /* Instruction costs on AppliedMicro Titan processors. */
1120 static const
1121 struct processor_costs titan_cost = {
1122 COSTS_N_INSNS (5), /* mulsi */
1123 COSTS_N_INSNS (5), /* mulsi_const */
1124 COSTS_N_INSNS (5), /* mulsi_const9 */
1125 COSTS_N_INSNS (5), /* muldi */
1126 COSTS_N_INSNS (18), /* divsi */
1127 COSTS_N_INSNS (18), /* divdi */
1128 COSTS_N_INSNS (10), /* fp */
1129 COSTS_N_INSNS (10), /* dmul */
1130 COSTS_N_INSNS (46), /* sdiv */
1131 COSTS_N_INSNS (72), /* ddiv */
1132 32, /* cache line size */
1133 32, /* l1 cache */
1134 512, /* l2 cache */
1135 1, /* prefetch streams /*/
1136 0, /* SF->DF convert */
1139 /* Instruction costs on POWER4 and POWER5 processors. */
1140 static const
1141 struct processor_costs power4_cost = {
1142 COSTS_N_INSNS (3), /* mulsi */
1143 COSTS_N_INSNS (2), /* mulsi_const */
1144 COSTS_N_INSNS (2), /* mulsi_const9 */
1145 COSTS_N_INSNS (4), /* muldi */
1146 COSTS_N_INSNS (18), /* divsi */
1147 COSTS_N_INSNS (34), /* divdi */
1148 COSTS_N_INSNS (3), /* fp */
1149 COSTS_N_INSNS (3), /* dmul */
1150 COSTS_N_INSNS (17), /* sdiv */
1151 COSTS_N_INSNS (17), /* ddiv */
1152 128, /* cache line size */
1153 32, /* l1 cache */
1154 1024, /* l2 cache */
1155 8, /* prefetch streams /*/
1156 0, /* SF->DF convert */
1159 /* Instruction costs on POWER6 processors. */
1160 static const
1161 struct processor_costs power6_cost = {
1162 COSTS_N_INSNS (8), /* mulsi */
1163 COSTS_N_INSNS (8), /* mulsi_const */
1164 COSTS_N_INSNS (8), /* mulsi_const9 */
1165 COSTS_N_INSNS (8), /* muldi */
1166 COSTS_N_INSNS (22), /* divsi */
1167 COSTS_N_INSNS (28), /* divdi */
1168 COSTS_N_INSNS (3), /* fp */
1169 COSTS_N_INSNS (3), /* dmul */
1170 COSTS_N_INSNS (13), /* sdiv */
1171 COSTS_N_INSNS (16), /* ddiv */
1172 128, /* cache line size */
1173 64, /* l1 cache */
1174 2048, /* l2 cache */
1175 16, /* prefetch streams */
1176 0, /* SF->DF convert */
1179 /* Instruction costs on POWER7 processors. */
1180 static const
1181 struct processor_costs power7_cost = {
1182 COSTS_N_INSNS (2), /* mulsi */
1183 COSTS_N_INSNS (2), /* mulsi_const */
1184 COSTS_N_INSNS (2), /* mulsi_const9 */
1185 COSTS_N_INSNS (2), /* muldi */
1186 COSTS_N_INSNS (18), /* divsi */
1187 COSTS_N_INSNS (34), /* divdi */
1188 COSTS_N_INSNS (3), /* fp */
1189 COSTS_N_INSNS (3), /* dmul */
1190 COSTS_N_INSNS (13), /* sdiv */
1191 COSTS_N_INSNS (16), /* ddiv */
1192 128, /* cache line size */
1193 32, /* l1 cache */
1194 256, /* l2 cache */
1195 12, /* prefetch streams */
1196 COSTS_N_INSNS (3), /* SF->DF convert */
1199 /* Instruction costs on POWER8 processors. */
1200 static const
1201 struct processor_costs power8_cost = {
1202 COSTS_N_INSNS (3), /* mulsi */
1203 COSTS_N_INSNS (3), /* mulsi_const */
1204 COSTS_N_INSNS (3), /* mulsi_const9 */
1205 COSTS_N_INSNS (3), /* muldi */
1206 COSTS_N_INSNS (19), /* divsi */
1207 COSTS_N_INSNS (35), /* divdi */
1208 COSTS_N_INSNS (3), /* fp */
1209 COSTS_N_INSNS (3), /* dmul */
1210 COSTS_N_INSNS (14), /* sdiv */
1211 COSTS_N_INSNS (17), /* ddiv */
1212 128, /* cache line size */
1213 32, /* l1 cache */
1214 256, /* l2 cache */
1215 12, /* prefetch streams */
1216 COSTS_N_INSNS (3), /* SF->DF convert */
1219 /* Instruction costs on POWER9 processors. */
1220 static const
1221 struct processor_costs power9_cost = {
1222 COSTS_N_INSNS (3), /* mulsi */
1223 COSTS_N_INSNS (3), /* mulsi_const */
1224 COSTS_N_INSNS (3), /* mulsi_const9 */
1225 COSTS_N_INSNS (3), /* muldi */
1226 COSTS_N_INSNS (8), /* divsi */
1227 COSTS_N_INSNS (12), /* divdi */
1228 COSTS_N_INSNS (3), /* fp */
1229 COSTS_N_INSNS (3), /* dmul */
1230 COSTS_N_INSNS (13), /* sdiv */
1231 COSTS_N_INSNS (18), /* ddiv */
1232 128, /* cache line size */
1233 32, /* l1 cache */
1234 512, /* l2 cache */
1235 8, /* prefetch streams */
1236 COSTS_N_INSNS (3), /* SF->DF convert */
1239 /* Instruction costs on POWER A2 processors. */
1240 static const
1241 struct processor_costs ppca2_cost = {
1242 COSTS_N_INSNS (16), /* mulsi */
1243 COSTS_N_INSNS (16), /* mulsi_const */
1244 COSTS_N_INSNS (16), /* mulsi_const9 */
1245 COSTS_N_INSNS (16), /* muldi */
1246 COSTS_N_INSNS (22), /* divsi */
1247 COSTS_N_INSNS (28), /* divdi */
1248 COSTS_N_INSNS (3), /* fp */
1249 COSTS_N_INSNS (3), /* dmul */
1250 COSTS_N_INSNS (59), /* sdiv */
1251 COSTS_N_INSNS (72), /* ddiv */
1253 16, /* l1 cache */
1254 2048, /* l2 cache */
1255 16, /* prefetch streams */
1256 0, /* SF->DF convert */
1260 /* Table that classifies rs6000 builtin functions (pure, const, etc.). */
1261 #undef RS6000_BUILTIN_0
1262 #undef RS6000_BUILTIN_1
1263 #undef RS6000_BUILTIN_2
1264 #undef RS6000_BUILTIN_3
1265 #undef RS6000_BUILTIN_A
1266 #undef RS6000_BUILTIN_D
1267 #undef RS6000_BUILTIN_H
1268 #undef RS6000_BUILTIN_P
1269 #undef RS6000_BUILTIN_Q
1270 #undef RS6000_BUILTIN_X
1272 #define RS6000_BUILTIN_0(ENUM, NAME, MASK, ATTR, ICODE) \
1273 { NAME, ICODE, MASK, ATTR },
1275 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE) \
1276 { NAME, ICODE, MASK, ATTR },
1278 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE) \
1279 { NAME, ICODE, MASK, ATTR },
1281 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE) \
1282 { NAME, ICODE, MASK, ATTR },
1284 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE) \
1285 { NAME, ICODE, MASK, ATTR },
1287 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE) \
1288 { NAME, ICODE, MASK, ATTR },
1290 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE) \
1291 { NAME, ICODE, MASK, ATTR },
1293 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE) \
1294 { NAME, ICODE, MASK, ATTR },
1296 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE) \
1297 { NAME, ICODE, MASK, ATTR },
1299 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE) \
1300 { NAME, ICODE, MASK, ATTR },
1302 struct rs6000_builtin_info_type {
1303 const char *name;
1304 const enum insn_code icode;
1305 const HOST_WIDE_INT mask;
1306 const unsigned attr;
1309 static const struct rs6000_builtin_info_type rs6000_builtin_info[] =
1311 #include "rs6000-builtin.def"
1314 #undef RS6000_BUILTIN_0
1315 #undef RS6000_BUILTIN_1
1316 #undef RS6000_BUILTIN_2
1317 #undef RS6000_BUILTIN_3
1318 #undef RS6000_BUILTIN_A
1319 #undef RS6000_BUILTIN_D
1320 #undef RS6000_BUILTIN_H
1321 #undef RS6000_BUILTIN_P
1322 #undef RS6000_BUILTIN_Q
1323 #undef RS6000_BUILTIN_X
1325 /* Support for -mveclibabi=<xxx> to control which vector library to use. */
1326 static tree (*rs6000_veclib_handler) (combined_fn, tree, tree);
1329 static bool rs6000_debug_legitimate_address_p (machine_mode, rtx, bool);
1330 static struct machine_function * rs6000_init_machine_status (void);
1331 static int rs6000_ra_ever_killed (void);
1332 static tree rs6000_handle_longcall_attribute (tree *, tree, tree, int, bool *);
1333 static tree rs6000_handle_altivec_attribute (tree *, tree, tree, int, bool *);
1334 static tree rs6000_handle_struct_attribute (tree *, tree, tree, int, bool *);
1335 static tree rs6000_builtin_vectorized_libmass (combined_fn, tree, tree);
1336 static void rs6000_emit_set_long_const (rtx, HOST_WIDE_INT);
1337 static int rs6000_memory_move_cost (machine_mode, reg_class_t, bool);
1338 static bool rs6000_debug_rtx_costs (rtx, machine_mode, int, int, int *, bool);
1339 static int rs6000_debug_address_cost (rtx, machine_mode, addr_space_t,
1340 bool);
1341 static int rs6000_debug_adjust_cost (rtx_insn *, int, rtx_insn *, int,
1342 unsigned int);
1343 static bool is_microcoded_insn (rtx_insn *);
1344 static bool is_nonpipeline_insn (rtx_insn *);
1345 static bool is_cracked_insn (rtx_insn *);
1346 static bool is_load_insn (rtx, rtx *);
1347 static bool is_store_insn (rtx, rtx *);
1348 static bool set_to_load_agen (rtx_insn *,rtx_insn *);
1349 static bool insn_terminates_group_p (rtx_insn *, enum group_termination);
1350 static bool insn_must_be_first_in_group (rtx_insn *);
1351 static bool insn_must_be_last_in_group (rtx_insn *);
1352 static void altivec_init_builtins (void);
1353 static tree builtin_function_type (machine_mode, machine_mode,
1354 machine_mode, machine_mode,
1355 enum rs6000_builtins, const char *name);
1356 static void rs6000_common_init_builtins (void);
1357 static void paired_init_builtins (void);
1358 static rtx paired_expand_predicate_builtin (enum insn_code, tree, rtx);
1359 static void htm_init_builtins (void);
1360 static int rs6000_emit_int_cmove (rtx, rtx, rtx, rtx);
1361 static rs6000_stack_t *rs6000_stack_info (void);
1362 static void is_altivec_return_reg (rtx, void *);
1363 int easy_vector_constant (rtx, machine_mode);
1364 static rtx rs6000_debug_legitimize_address (rtx, rtx, machine_mode);
1365 static rtx rs6000_legitimize_tls_address (rtx, enum tls_model);
1366 static rtx rs6000_darwin64_record_arg (CUMULATIVE_ARGS *, const_tree,
1367 bool, bool);
1368 #if TARGET_MACHO
1369 static void macho_branch_islands (void);
1370 #endif
1371 static rtx rs6000_legitimize_reload_address (rtx, machine_mode, int, int,
1372 int, int *);
1373 static rtx rs6000_debug_legitimize_reload_address (rtx, machine_mode, int,
1374 int, int, int *);
1375 static bool rs6000_mode_dependent_address (const_rtx);
1376 static bool rs6000_debug_mode_dependent_address (const_rtx);
1377 static enum reg_class rs6000_secondary_reload_class (enum reg_class,
1378 machine_mode, rtx);
1379 static enum reg_class rs6000_debug_secondary_reload_class (enum reg_class,
1380 machine_mode,
1381 rtx);
1382 static enum reg_class rs6000_preferred_reload_class (rtx, enum reg_class);
1383 static enum reg_class rs6000_debug_preferred_reload_class (rtx,
1384 enum reg_class);
1385 static bool rs6000_debug_secondary_memory_needed (machine_mode,
1386 reg_class_t,
1387 reg_class_t);
1388 static bool rs6000_debug_can_change_mode_class (machine_mode,
1389 machine_mode,
1390 reg_class_t);
1391 static bool rs6000_save_toc_in_prologue_p (void);
1392 static rtx rs6000_internal_arg_pointer (void);
1394 rtx (*rs6000_legitimize_reload_address_ptr) (rtx, machine_mode, int, int,
1395 int, int *)
1396 = rs6000_legitimize_reload_address;
1398 static bool (*rs6000_mode_dependent_address_ptr) (const_rtx)
1399 = rs6000_mode_dependent_address;
1401 enum reg_class (*rs6000_secondary_reload_class_ptr) (enum reg_class,
1402 machine_mode, rtx)
1403 = rs6000_secondary_reload_class;
1405 enum reg_class (*rs6000_preferred_reload_class_ptr) (rtx, enum reg_class)
1406 = rs6000_preferred_reload_class;
1408 const int INSN_NOT_AVAILABLE = -1;
1410 static void rs6000_print_isa_options (FILE *, int, const char *,
1411 HOST_WIDE_INT);
1412 static void rs6000_print_builtin_options (FILE *, int, const char *,
1413 HOST_WIDE_INT);
1414 static HOST_WIDE_INT rs6000_disable_incompatible_switches (void);
1416 static enum rs6000_reg_type register_to_reg_type (rtx, bool *);
1417 static bool rs6000_secondary_reload_move (enum rs6000_reg_type,
1418 enum rs6000_reg_type,
1419 machine_mode,
1420 secondary_reload_info *,
1421 bool);
1422 rtl_opt_pass *make_pass_analyze_swaps (gcc::context*);
1423 static bool rs6000_keep_leaf_when_profiled () __attribute__ ((unused));
1424 static tree rs6000_fold_builtin (tree, int, tree *, bool);
1426 /* Hash table stuff for keeping track of TOC entries. */
1428 struct GTY((for_user)) toc_hash_struct
1430 /* `key' will satisfy CONSTANT_P; in fact, it will satisfy
1431 ASM_OUTPUT_SPECIAL_POOL_ENTRY_P. */
1432 rtx key;
1433 machine_mode key_mode;
1434 int labelno;
1437 struct toc_hasher : ggc_ptr_hash<toc_hash_struct>
1439 static hashval_t hash (toc_hash_struct *);
1440 static bool equal (toc_hash_struct *, toc_hash_struct *);
1443 static GTY (()) hash_table<toc_hasher> *toc_hash_table;
1445 /* Hash table to keep track of the argument types for builtin functions. */
1447 struct GTY((for_user)) builtin_hash_struct
1449 tree type;
1450 machine_mode mode[4]; /* return value + 3 arguments. */
1451 unsigned char uns_p[4]; /* and whether the types are unsigned. */
1454 struct builtin_hasher : ggc_ptr_hash<builtin_hash_struct>
1456 static hashval_t hash (builtin_hash_struct *);
1457 static bool equal (builtin_hash_struct *, builtin_hash_struct *);
1460 static GTY (()) hash_table<builtin_hasher> *builtin_hash_table;
1463 /* Default register names. */
1464 char rs6000_reg_names[][8] =
1466 "0", "1", "2", "3", "4", "5", "6", "7",
1467 "8", "9", "10", "11", "12", "13", "14", "15",
1468 "16", "17", "18", "19", "20", "21", "22", "23",
1469 "24", "25", "26", "27", "28", "29", "30", "31",
1470 "0", "1", "2", "3", "4", "5", "6", "7",
1471 "8", "9", "10", "11", "12", "13", "14", "15",
1472 "16", "17", "18", "19", "20", "21", "22", "23",
1473 "24", "25", "26", "27", "28", "29", "30", "31",
1474 "mq", "lr", "ctr","ap",
1475 "0", "1", "2", "3", "4", "5", "6", "7",
1476 "ca",
1477 /* AltiVec registers. */
1478 "0", "1", "2", "3", "4", "5", "6", "7",
1479 "8", "9", "10", "11", "12", "13", "14", "15",
1480 "16", "17", "18", "19", "20", "21", "22", "23",
1481 "24", "25", "26", "27", "28", "29", "30", "31",
1482 "vrsave", "vscr",
1483 /* Soft frame pointer. */
1484 "sfp",
1485 /* HTM SPR registers. */
1486 "tfhar", "tfiar", "texasr"
1489 #ifdef TARGET_REGNAMES
1490 static const char alt_reg_names[][8] =
1492 "%r0", "%r1", "%r2", "%r3", "%r4", "%r5", "%r6", "%r7",
1493 "%r8", "%r9", "%r10", "%r11", "%r12", "%r13", "%r14", "%r15",
1494 "%r16", "%r17", "%r18", "%r19", "%r20", "%r21", "%r22", "%r23",
1495 "%r24", "%r25", "%r26", "%r27", "%r28", "%r29", "%r30", "%r31",
1496 "%f0", "%f1", "%f2", "%f3", "%f4", "%f5", "%f6", "%f7",
1497 "%f8", "%f9", "%f10", "%f11", "%f12", "%f13", "%f14", "%f15",
1498 "%f16", "%f17", "%f18", "%f19", "%f20", "%f21", "%f22", "%f23",
1499 "%f24", "%f25", "%f26", "%f27", "%f28", "%f29", "%f30", "%f31",
1500 "mq", "lr", "ctr", "ap",
1501 "%cr0", "%cr1", "%cr2", "%cr3", "%cr4", "%cr5", "%cr6", "%cr7",
1502 "ca",
1503 /* AltiVec registers. */
1504 "%v0", "%v1", "%v2", "%v3", "%v4", "%v5", "%v6", "%v7",
1505 "%v8", "%v9", "%v10", "%v11", "%v12", "%v13", "%v14", "%v15",
1506 "%v16", "%v17", "%v18", "%v19", "%v20", "%v21", "%v22", "%v23",
1507 "%v24", "%v25", "%v26", "%v27", "%v28", "%v29", "%v30", "%v31",
1508 "vrsave", "vscr",
1509 /* Soft frame pointer. */
1510 "sfp",
1511 /* HTM SPR registers. */
1512 "tfhar", "tfiar", "texasr"
1514 #endif
1516 /* Table of valid machine attributes. */
1518 static const struct attribute_spec rs6000_attribute_table[] =
1520 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler,
1521 affects_type_identity } */
1522 { "altivec", 1, 1, false, true, false, rs6000_handle_altivec_attribute,
1523 false },
1524 { "longcall", 0, 0, false, true, true, rs6000_handle_longcall_attribute,
1525 false },
1526 { "shortcall", 0, 0, false, true, true, rs6000_handle_longcall_attribute,
1527 false },
1528 { "ms_struct", 0, 0, false, false, false, rs6000_handle_struct_attribute,
1529 false },
1530 { "gcc_struct", 0, 0, false, false, false, rs6000_handle_struct_attribute,
1531 false },
1532 #ifdef SUBTARGET_ATTRIBUTE_TABLE
1533 SUBTARGET_ATTRIBUTE_TABLE,
1534 #endif
1535 { NULL, 0, 0, false, false, false, NULL, false }
1538 #ifndef TARGET_PROFILE_KERNEL
1539 #define TARGET_PROFILE_KERNEL 0
1540 #endif
1542 /* The VRSAVE bitmask puts bit %v0 as the most significant bit. */
1543 #define ALTIVEC_REG_BIT(REGNO) (0x80000000 >> ((REGNO) - FIRST_ALTIVEC_REGNO))
1545 /* Initialize the GCC target structure. */
1546 #undef TARGET_ATTRIBUTE_TABLE
1547 #define TARGET_ATTRIBUTE_TABLE rs6000_attribute_table
1548 #undef TARGET_SET_DEFAULT_TYPE_ATTRIBUTES
1549 #define TARGET_SET_DEFAULT_TYPE_ATTRIBUTES rs6000_set_default_type_attributes
1550 #undef TARGET_ATTRIBUTE_TAKES_IDENTIFIER_P
1551 #define TARGET_ATTRIBUTE_TAKES_IDENTIFIER_P rs6000_attribute_takes_identifier_p
1553 #undef TARGET_ASM_ALIGNED_DI_OP
1554 #define TARGET_ASM_ALIGNED_DI_OP DOUBLE_INT_ASM_OP
1556 /* Default unaligned ops are only provided for ELF. Find the ops needed
1557 for non-ELF systems. */
1558 #ifndef OBJECT_FORMAT_ELF
1559 #if TARGET_XCOFF
1560 /* For XCOFF. rs6000_assemble_integer will handle unaligned DIs on
1561 64-bit targets. */
1562 #undef TARGET_ASM_UNALIGNED_HI_OP
1563 #define TARGET_ASM_UNALIGNED_HI_OP "\t.vbyte\t2,"
1564 #undef TARGET_ASM_UNALIGNED_SI_OP
1565 #define TARGET_ASM_UNALIGNED_SI_OP "\t.vbyte\t4,"
1566 #undef TARGET_ASM_UNALIGNED_DI_OP
1567 #define TARGET_ASM_UNALIGNED_DI_OP "\t.vbyte\t8,"
1568 #else
1569 /* For Darwin. */
1570 #undef TARGET_ASM_UNALIGNED_HI_OP
1571 #define TARGET_ASM_UNALIGNED_HI_OP "\t.short\t"
1572 #undef TARGET_ASM_UNALIGNED_SI_OP
1573 #define TARGET_ASM_UNALIGNED_SI_OP "\t.long\t"
1574 #undef TARGET_ASM_UNALIGNED_DI_OP
1575 #define TARGET_ASM_UNALIGNED_DI_OP "\t.quad\t"
1576 #undef TARGET_ASM_ALIGNED_DI_OP
1577 #define TARGET_ASM_ALIGNED_DI_OP "\t.quad\t"
1578 #endif
1579 #endif
1581 /* This hook deals with fixups for relocatable code and DI-mode objects
1582 in 64-bit code. */
1583 #undef TARGET_ASM_INTEGER
1584 #define TARGET_ASM_INTEGER rs6000_assemble_integer
1586 #if defined (HAVE_GAS_HIDDEN) && !TARGET_MACHO
1587 #undef TARGET_ASM_ASSEMBLE_VISIBILITY
1588 #define TARGET_ASM_ASSEMBLE_VISIBILITY rs6000_assemble_visibility
1589 #endif
1591 #undef TARGET_SET_UP_BY_PROLOGUE
1592 #define TARGET_SET_UP_BY_PROLOGUE rs6000_set_up_by_prologue
1594 #undef TARGET_SHRINK_WRAP_GET_SEPARATE_COMPONENTS
1595 #define TARGET_SHRINK_WRAP_GET_SEPARATE_COMPONENTS rs6000_get_separate_components
1596 #undef TARGET_SHRINK_WRAP_COMPONENTS_FOR_BB
1597 #define TARGET_SHRINK_WRAP_COMPONENTS_FOR_BB rs6000_components_for_bb
1598 #undef TARGET_SHRINK_WRAP_DISQUALIFY_COMPONENTS
1599 #define TARGET_SHRINK_WRAP_DISQUALIFY_COMPONENTS rs6000_disqualify_components
1600 #undef TARGET_SHRINK_WRAP_EMIT_PROLOGUE_COMPONENTS
1601 #define TARGET_SHRINK_WRAP_EMIT_PROLOGUE_COMPONENTS rs6000_emit_prologue_components
1602 #undef TARGET_SHRINK_WRAP_EMIT_EPILOGUE_COMPONENTS
1603 #define TARGET_SHRINK_WRAP_EMIT_EPILOGUE_COMPONENTS rs6000_emit_epilogue_components
1604 #undef TARGET_SHRINK_WRAP_SET_HANDLED_COMPONENTS
1605 #define TARGET_SHRINK_WRAP_SET_HANDLED_COMPONENTS rs6000_set_handled_components
1607 #undef TARGET_EXTRA_LIVE_ON_ENTRY
1608 #define TARGET_EXTRA_LIVE_ON_ENTRY rs6000_live_on_entry
1610 #undef TARGET_INTERNAL_ARG_POINTER
1611 #define TARGET_INTERNAL_ARG_POINTER rs6000_internal_arg_pointer
1613 #undef TARGET_HAVE_TLS
1614 #define TARGET_HAVE_TLS HAVE_AS_TLS
1616 #undef TARGET_CANNOT_FORCE_CONST_MEM
1617 #define TARGET_CANNOT_FORCE_CONST_MEM rs6000_cannot_force_const_mem
1619 #undef TARGET_DELEGITIMIZE_ADDRESS
1620 #define TARGET_DELEGITIMIZE_ADDRESS rs6000_delegitimize_address
1622 #undef TARGET_CONST_NOT_OK_FOR_DEBUG_P
1623 #define TARGET_CONST_NOT_OK_FOR_DEBUG_P rs6000_const_not_ok_for_debug_p
1625 #undef TARGET_LEGITIMATE_COMBINED_INSN
1626 #define TARGET_LEGITIMATE_COMBINED_INSN rs6000_legitimate_combined_insn
1628 #undef TARGET_ASM_FUNCTION_PROLOGUE
1629 #define TARGET_ASM_FUNCTION_PROLOGUE rs6000_output_function_prologue
1630 #undef TARGET_ASM_FUNCTION_EPILOGUE
1631 #define TARGET_ASM_FUNCTION_EPILOGUE rs6000_output_function_epilogue
1633 #undef TARGET_ASM_OUTPUT_ADDR_CONST_EXTRA
1634 #define TARGET_ASM_OUTPUT_ADDR_CONST_EXTRA rs6000_output_addr_const_extra
1636 #undef TARGET_LEGITIMIZE_ADDRESS
1637 #define TARGET_LEGITIMIZE_ADDRESS rs6000_legitimize_address
1639 #undef TARGET_SCHED_VARIABLE_ISSUE
1640 #define TARGET_SCHED_VARIABLE_ISSUE rs6000_variable_issue
1642 #undef TARGET_SCHED_ISSUE_RATE
1643 #define TARGET_SCHED_ISSUE_RATE rs6000_issue_rate
1644 #undef TARGET_SCHED_ADJUST_COST
1645 #define TARGET_SCHED_ADJUST_COST rs6000_adjust_cost
1646 #undef TARGET_SCHED_ADJUST_PRIORITY
1647 #define TARGET_SCHED_ADJUST_PRIORITY rs6000_adjust_priority
1648 #undef TARGET_SCHED_IS_COSTLY_DEPENDENCE
1649 #define TARGET_SCHED_IS_COSTLY_DEPENDENCE rs6000_is_costly_dependence
1650 #undef TARGET_SCHED_INIT
1651 #define TARGET_SCHED_INIT rs6000_sched_init
1652 #undef TARGET_SCHED_FINISH
1653 #define TARGET_SCHED_FINISH rs6000_sched_finish
1654 #undef TARGET_SCHED_REORDER
1655 #define TARGET_SCHED_REORDER rs6000_sched_reorder
1656 #undef TARGET_SCHED_REORDER2
1657 #define TARGET_SCHED_REORDER2 rs6000_sched_reorder2
1659 #undef TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD
1660 #define TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD rs6000_use_sched_lookahead
1662 #undef TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD
1663 #define TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD_GUARD rs6000_use_sched_lookahead_guard
1665 #undef TARGET_SCHED_ALLOC_SCHED_CONTEXT
1666 #define TARGET_SCHED_ALLOC_SCHED_CONTEXT rs6000_alloc_sched_context
1667 #undef TARGET_SCHED_INIT_SCHED_CONTEXT
1668 #define TARGET_SCHED_INIT_SCHED_CONTEXT rs6000_init_sched_context
1669 #undef TARGET_SCHED_SET_SCHED_CONTEXT
1670 #define TARGET_SCHED_SET_SCHED_CONTEXT rs6000_set_sched_context
1671 #undef TARGET_SCHED_FREE_SCHED_CONTEXT
1672 #define TARGET_SCHED_FREE_SCHED_CONTEXT rs6000_free_sched_context
1674 #undef TARGET_SCHED_CAN_SPECULATE_INSN
1675 #define TARGET_SCHED_CAN_SPECULATE_INSN rs6000_sched_can_speculate_insn
1677 #undef TARGET_VECTORIZE_BUILTIN_MASK_FOR_LOAD
1678 #define TARGET_VECTORIZE_BUILTIN_MASK_FOR_LOAD rs6000_builtin_mask_for_load
1679 #undef TARGET_VECTORIZE_SUPPORT_VECTOR_MISALIGNMENT
1680 #define TARGET_VECTORIZE_SUPPORT_VECTOR_MISALIGNMENT \
1681 rs6000_builtin_support_vector_misalignment
1682 #undef TARGET_VECTORIZE_VECTOR_ALIGNMENT_REACHABLE
1683 #define TARGET_VECTORIZE_VECTOR_ALIGNMENT_REACHABLE rs6000_vector_alignment_reachable
1684 #undef TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST
1685 #define TARGET_VECTORIZE_BUILTIN_VECTORIZATION_COST \
1686 rs6000_builtin_vectorization_cost
1687 #undef TARGET_VECTORIZE_PREFERRED_SIMD_MODE
1688 #define TARGET_VECTORIZE_PREFERRED_SIMD_MODE \
1689 rs6000_preferred_simd_mode
1690 #undef TARGET_VECTORIZE_INIT_COST
1691 #define TARGET_VECTORIZE_INIT_COST rs6000_init_cost
1692 #undef TARGET_VECTORIZE_ADD_STMT_COST
1693 #define TARGET_VECTORIZE_ADD_STMT_COST rs6000_add_stmt_cost
1694 #undef TARGET_VECTORIZE_FINISH_COST
1695 #define TARGET_VECTORIZE_FINISH_COST rs6000_finish_cost
1696 #undef TARGET_VECTORIZE_DESTROY_COST_DATA
1697 #define TARGET_VECTORIZE_DESTROY_COST_DATA rs6000_destroy_cost_data
1699 #undef TARGET_INIT_BUILTINS
1700 #define TARGET_INIT_BUILTINS rs6000_init_builtins
1701 #undef TARGET_BUILTIN_DECL
1702 #define TARGET_BUILTIN_DECL rs6000_builtin_decl
1704 #undef TARGET_FOLD_BUILTIN
1705 #define TARGET_FOLD_BUILTIN rs6000_fold_builtin
1706 #undef TARGET_GIMPLE_FOLD_BUILTIN
1707 #define TARGET_GIMPLE_FOLD_BUILTIN rs6000_gimple_fold_builtin
1709 #undef TARGET_EXPAND_BUILTIN
1710 #define TARGET_EXPAND_BUILTIN rs6000_expand_builtin
1712 #undef TARGET_MANGLE_TYPE
1713 #define TARGET_MANGLE_TYPE rs6000_mangle_type
1715 #undef TARGET_INIT_LIBFUNCS
1716 #define TARGET_INIT_LIBFUNCS rs6000_init_libfuncs
1718 #if TARGET_MACHO
1719 #undef TARGET_BINDS_LOCAL_P
1720 #define TARGET_BINDS_LOCAL_P darwin_binds_local_p
1721 #endif
1723 #undef TARGET_MS_BITFIELD_LAYOUT_P
1724 #define TARGET_MS_BITFIELD_LAYOUT_P rs6000_ms_bitfield_layout_p
1726 #undef TARGET_ASM_OUTPUT_MI_THUNK
1727 #define TARGET_ASM_OUTPUT_MI_THUNK rs6000_output_mi_thunk
1729 #undef TARGET_ASM_CAN_OUTPUT_MI_THUNK
1730 #define TARGET_ASM_CAN_OUTPUT_MI_THUNK hook_bool_const_tree_hwi_hwi_const_tree_true
1732 #undef TARGET_FUNCTION_OK_FOR_SIBCALL
1733 #define TARGET_FUNCTION_OK_FOR_SIBCALL rs6000_function_ok_for_sibcall
1735 #undef TARGET_REGISTER_MOVE_COST
1736 #define TARGET_REGISTER_MOVE_COST rs6000_register_move_cost
1737 #undef TARGET_MEMORY_MOVE_COST
1738 #define TARGET_MEMORY_MOVE_COST rs6000_memory_move_cost
1739 #undef TARGET_CANNOT_COPY_INSN_P
1740 #define TARGET_CANNOT_COPY_INSN_P rs6000_cannot_copy_insn_p
1741 #undef TARGET_RTX_COSTS
1742 #define TARGET_RTX_COSTS rs6000_rtx_costs
1743 #undef TARGET_ADDRESS_COST
1744 #define TARGET_ADDRESS_COST hook_int_rtx_mode_as_bool_0
1745 #undef TARGET_INSN_COST
1746 #define TARGET_INSN_COST rs6000_insn_cost
1748 #undef TARGET_INIT_DWARF_REG_SIZES_EXTRA
1749 #define TARGET_INIT_DWARF_REG_SIZES_EXTRA rs6000_init_dwarf_reg_sizes_extra
1751 #undef TARGET_PROMOTE_FUNCTION_MODE
1752 #define TARGET_PROMOTE_FUNCTION_MODE rs6000_promote_function_mode
1754 #undef TARGET_RETURN_IN_MEMORY
1755 #define TARGET_RETURN_IN_MEMORY rs6000_return_in_memory
1757 #undef TARGET_RETURN_IN_MSB
1758 #define TARGET_RETURN_IN_MSB rs6000_return_in_msb
1760 #undef TARGET_SETUP_INCOMING_VARARGS
1761 #define TARGET_SETUP_INCOMING_VARARGS setup_incoming_varargs
1763 /* Always strict argument naming on rs6000. */
1764 #undef TARGET_STRICT_ARGUMENT_NAMING
1765 #define TARGET_STRICT_ARGUMENT_NAMING hook_bool_CUMULATIVE_ARGS_true
1766 #undef TARGET_PRETEND_OUTGOING_VARARGS_NAMED
1767 #define TARGET_PRETEND_OUTGOING_VARARGS_NAMED hook_bool_CUMULATIVE_ARGS_true
1768 #undef TARGET_SPLIT_COMPLEX_ARG
1769 #define TARGET_SPLIT_COMPLEX_ARG hook_bool_const_tree_true
1770 #undef TARGET_MUST_PASS_IN_STACK
1771 #define TARGET_MUST_PASS_IN_STACK rs6000_must_pass_in_stack
1772 #undef TARGET_PASS_BY_REFERENCE
1773 #define TARGET_PASS_BY_REFERENCE rs6000_pass_by_reference
1774 #undef TARGET_ARG_PARTIAL_BYTES
1775 #define TARGET_ARG_PARTIAL_BYTES rs6000_arg_partial_bytes
1776 #undef TARGET_FUNCTION_ARG_ADVANCE
1777 #define TARGET_FUNCTION_ARG_ADVANCE rs6000_function_arg_advance
1778 #undef TARGET_FUNCTION_ARG
1779 #define TARGET_FUNCTION_ARG rs6000_function_arg
1780 #undef TARGET_FUNCTION_ARG_PADDING
1781 #define TARGET_FUNCTION_ARG_PADDING rs6000_function_arg_padding
1782 #undef TARGET_FUNCTION_ARG_BOUNDARY
1783 #define TARGET_FUNCTION_ARG_BOUNDARY rs6000_function_arg_boundary
1785 #undef TARGET_BUILD_BUILTIN_VA_LIST
1786 #define TARGET_BUILD_BUILTIN_VA_LIST rs6000_build_builtin_va_list
1788 #undef TARGET_EXPAND_BUILTIN_VA_START
1789 #define TARGET_EXPAND_BUILTIN_VA_START rs6000_va_start
1791 #undef TARGET_GIMPLIFY_VA_ARG_EXPR
1792 #define TARGET_GIMPLIFY_VA_ARG_EXPR rs6000_gimplify_va_arg
1794 #undef TARGET_EH_RETURN_FILTER_MODE
1795 #define TARGET_EH_RETURN_FILTER_MODE rs6000_eh_return_filter_mode
1797 #undef TARGET_SCALAR_MODE_SUPPORTED_P
1798 #define TARGET_SCALAR_MODE_SUPPORTED_P rs6000_scalar_mode_supported_p
1800 #undef TARGET_VECTOR_MODE_SUPPORTED_P
1801 #define TARGET_VECTOR_MODE_SUPPORTED_P rs6000_vector_mode_supported_p
1803 #undef TARGET_FLOATN_MODE
1804 #define TARGET_FLOATN_MODE rs6000_floatn_mode
1806 #undef TARGET_INVALID_ARG_FOR_UNPROTOTYPED_FN
1807 #define TARGET_INVALID_ARG_FOR_UNPROTOTYPED_FN invalid_arg_for_unprototyped_fn
1809 #undef TARGET_ASM_LOOP_ALIGN_MAX_SKIP
1810 #define TARGET_ASM_LOOP_ALIGN_MAX_SKIP rs6000_loop_align_max_skip
1812 #undef TARGET_MD_ASM_ADJUST
1813 #define TARGET_MD_ASM_ADJUST rs6000_md_asm_adjust
1815 #undef TARGET_OPTION_OVERRIDE
1816 #define TARGET_OPTION_OVERRIDE rs6000_option_override
1818 #undef TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION
1819 #define TARGET_VECTORIZE_BUILTIN_VECTORIZED_FUNCTION \
1820 rs6000_builtin_vectorized_function
1822 #undef TARGET_VECTORIZE_BUILTIN_MD_VECTORIZED_FUNCTION
1823 #define TARGET_VECTORIZE_BUILTIN_MD_VECTORIZED_FUNCTION \
1824 rs6000_builtin_md_vectorized_function
1826 #undef TARGET_STACK_PROTECT_GUARD
1827 #define TARGET_STACK_PROTECT_GUARD rs6000_init_stack_protect_guard
1829 #if !TARGET_MACHO
1830 #undef TARGET_STACK_PROTECT_FAIL
1831 #define TARGET_STACK_PROTECT_FAIL rs6000_stack_protect_fail
1832 #endif
1834 #ifdef HAVE_AS_TLS
1835 #undef TARGET_ASM_OUTPUT_DWARF_DTPREL
1836 #define TARGET_ASM_OUTPUT_DWARF_DTPREL rs6000_output_dwarf_dtprel
1837 #endif
1839 /* Use a 32-bit anchor range. This leads to sequences like:
1841 addis tmp,anchor,high
1842 add dest,tmp,low
1844 where tmp itself acts as an anchor, and can be shared between
1845 accesses to the same 64k page. */
1846 #undef TARGET_MIN_ANCHOR_OFFSET
1847 #define TARGET_MIN_ANCHOR_OFFSET -0x7fffffff - 1
1848 #undef TARGET_MAX_ANCHOR_OFFSET
1849 #define TARGET_MAX_ANCHOR_OFFSET 0x7fffffff
1850 #undef TARGET_USE_BLOCKS_FOR_CONSTANT_P
1851 #define TARGET_USE_BLOCKS_FOR_CONSTANT_P rs6000_use_blocks_for_constant_p
1852 #undef TARGET_USE_BLOCKS_FOR_DECL_P
1853 #define TARGET_USE_BLOCKS_FOR_DECL_P rs6000_use_blocks_for_decl_p
1855 #undef TARGET_BUILTIN_RECIPROCAL
1856 #define TARGET_BUILTIN_RECIPROCAL rs6000_builtin_reciprocal
1858 #undef TARGET_SECONDARY_RELOAD
1859 #define TARGET_SECONDARY_RELOAD rs6000_secondary_reload
1860 #undef TARGET_SECONDARY_MEMORY_NEEDED
1861 #define TARGET_SECONDARY_MEMORY_NEEDED rs6000_secondary_memory_needed
1862 #undef TARGET_SECONDARY_MEMORY_NEEDED_MODE
1863 #define TARGET_SECONDARY_MEMORY_NEEDED_MODE rs6000_secondary_memory_needed_mode
1865 #undef TARGET_LEGITIMATE_ADDRESS_P
1866 #define TARGET_LEGITIMATE_ADDRESS_P rs6000_legitimate_address_p
1868 #undef TARGET_MODE_DEPENDENT_ADDRESS_P
1869 #define TARGET_MODE_DEPENDENT_ADDRESS_P rs6000_mode_dependent_address_p
1871 #undef TARGET_COMPUTE_PRESSURE_CLASSES
1872 #define TARGET_COMPUTE_PRESSURE_CLASSES rs6000_compute_pressure_classes
1874 #undef TARGET_CAN_ELIMINATE
1875 #define TARGET_CAN_ELIMINATE rs6000_can_eliminate
1877 #undef TARGET_CONDITIONAL_REGISTER_USAGE
1878 #define TARGET_CONDITIONAL_REGISTER_USAGE rs6000_conditional_register_usage
1880 #undef TARGET_SCHED_REASSOCIATION_WIDTH
1881 #define TARGET_SCHED_REASSOCIATION_WIDTH rs6000_reassociation_width
1883 #undef TARGET_TRAMPOLINE_INIT
1884 #define TARGET_TRAMPOLINE_INIT rs6000_trampoline_init
1886 #undef TARGET_FUNCTION_VALUE
1887 #define TARGET_FUNCTION_VALUE rs6000_function_value
1889 #undef TARGET_OPTION_VALID_ATTRIBUTE_P
1890 #define TARGET_OPTION_VALID_ATTRIBUTE_P rs6000_valid_attribute_p
1892 #undef TARGET_OPTION_SAVE
1893 #define TARGET_OPTION_SAVE rs6000_function_specific_save
1895 #undef TARGET_OPTION_RESTORE
1896 #define TARGET_OPTION_RESTORE rs6000_function_specific_restore
1898 #undef TARGET_OPTION_PRINT
1899 #define TARGET_OPTION_PRINT rs6000_function_specific_print
1901 #undef TARGET_CAN_INLINE_P
1902 #define TARGET_CAN_INLINE_P rs6000_can_inline_p
1904 #undef TARGET_SET_CURRENT_FUNCTION
1905 #define TARGET_SET_CURRENT_FUNCTION rs6000_set_current_function
1907 #undef TARGET_LEGITIMATE_CONSTANT_P
1908 #define TARGET_LEGITIMATE_CONSTANT_P rs6000_legitimate_constant_p
1910 #undef TARGET_VECTORIZE_VEC_PERM_CONST_OK
1911 #define TARGET_VECTORIZE_VEC_PERM_CONST_OK rs6000_vectorize_vec_perm_const_ok
1913 #undef TARGET_CAN_USE_DOLOOP_P
1914 #define TARGET_CAN_USE_DOLOOP_P can_use_doloop_if_innermost
1916 #undef TARGET_ATOMIC_ASSIGN_EXPAND_FENV
1917 #define TARGET_ATOMIC_ASSIGN_EXPAND_FENV rs6000_atomic_assign_expand_fenv
1919 #undef TARGET_LIBGCC_CMP_RETURN_MODE
1920 #define TARGET_LIBGCC_CMP_RETURN_MODE rs6000_abi_word_mode
1921 #undef TARGET_LIBGCC_SHIFT_COUNT_MODE
1922 #define TARGET_LIBGCC_SHIFT_COUNT_MODE rs6000_abi_word_mode
1923 #undef TARGET_UNWIND_WORD_MODE
1924 #define TARGET_UNWIND_WORD_MODE rs6000_abi_word_mode
1926 #undef TARGET_OFFLOAD_OPTIONS
1927 #define TARGET_OFFLOAD_OPTIONS rs6000_offload_options
1929 #undef TARGET_C_MODE_FOR_SUFFIX
1930 #define TARGET_C_MODE_FOR_SUFFIX rs6000_c_mode_for_suffix
1932 #undef TARGET_INVALID_BINARY_OP
1933 #define TARGET_INVALID_BINARY_OP rs6000_invalid_binary_op
1935 #undef TARGET_OPTAB_SUPPORTED_P
1936 #define TARGET_OPTAB_SUPPORTED_P rs6000_optab_supported_p
1938 #undef TARGET_CUSTOM_FUNCTION_DESCRIPTORS
1939 #define TARGET_CUSTOM_FUNCTION_DESCRIPTORS 1
1941 #undef TARGET_COMPARE_VERSION_PRIORITY
1942 #define TARGET_COMPARE_VERSION_PRIORITY rs6000_compare_version_priority
1944 #undef TARGET_GENERATE_VERSION_DISPATCHER_BODY
1945 #define TARGET_GENERATE_VERSION_DISPATCHER_BODY \
1946 rs6000_generate_version_dispatcher_body
1948 #undef TARGET_GET_FUNCTION_VERSIONS_DISPATCHER
1949 #define TARGET_GET_FUNCTION_VERSIONS_DISPATCHER \
1950 rs6000_get_function_versions_dispatcher
1952 #undef TARGET_OPTION_FUNCTION_VERSIONS
1953 #define TARGET_OPTION_FUNCTION_VERSIONS common_function_versions
1955 #undef TARGET_HARD_REGNO_NREGS
1956 #define TARGET_HARD_REGNO_NREGS rs6000_hard_regno_nregs_hook
1957 #undef TARGET_HARD_REGNO_MODE_OK
1958 #define TARGET_HARD_REGNO_MODE_OK rs6000_hard_regno_mode_ok
1960 #undef TARGET_MODES_TIEABLE_P
1961 #define TARGET_MODES_TIEABLE_P rs6000_modes_tieable_p
1963 #undef TARGET_HARD_REGNO_CALL_PART_CLOBBERED
1964 #define TARGET_HARD_REGNO_CALL_PART_CLOBBERED \
1965 rs6000_hard_regno_call_part_clobbered
1967 #undef TARGET_SLOW_UNALIGNED_ACCESS
1968 #define TARGET_SLOW_UNALIGNED_ACCESS rs6000_slow_unaligned_access
1970 #undef TARGET_CAN_CHANGE_MODE_CLASS
1971 #define TARGET_CAN_CHANGE_MODE_CLASS rs6000_can_change_mode_class
1973 #undef TARGET_CONSTANT_ALIGNMENT
1974 #define TARGET_CONSTANT_ALIGNMENT rs6000_constant_alignment
1976 #undef TARGET_STARTING_FRAME_OFFSET
1977 #define TARGET_STARTING_FRAME_OFFSET rs6000_starting_frame_offset
1980 /* Processor table. */
1981 struct rs6000_ptt
1983 const char *const name; /* Canonical processor name. */
1984 const enum processor_type processor; /* Processor type enum value. */
1985 const HOST_WIDE_INT target_enable; /* Target flags to enable. */
1988 static struct rs6000_ptt const processor_target_table[] =
1990 #define RS6000_CPU(NAME, CPU, FLAGS) { NAME, CPU, FLAGS },
1991 #include "rs6000-cpus.def"
1992 #undef RS6000_CPU
1995 /* Look up a processor name for -mcpu=xxx and -mtune=xxx. Return -1 if the
1996 name is invalid. */
1998 static int
1999 rs6000_cpu_name_lookup (const char *name)
2001 size_t i;
2003 if (name != NULL)
2005 for (i = 0; i < ARRAY_SIZE (processor_target_table); i++)
2006 if (! strcmp (name, processor_target_table[i].name))
2007 return (int)i;
2010 return -1;
2014 /* Return number of consecutive hard regs needed starting at reg REGNO
2015 to hold something of mode MODE.
2016 This is ordinarily the length in words of a value of mode MODE
2017 but can be less for certain modes in special long registers.
2019 POWER and PowerPC GPRs hold 32 bits worth;
2020 PowerPC64 GPRs and FPRs point register holds 64 bits worth. */
2022 static int
2023 rs6000_hard_regno_nregs_internal (int regno, machine_mode mode)
2025 unsigned HOST_WIDE_INT reg_size;
2027 /* 128-bit floating point usually takes 2 registers, unless it is IEEE
2028 128-bit floating point that can go in vector registers, which has VSX
2029 memory addressing. */
2030 if (FP_REGNO_P (regno))
2031 reg_size = (VECTOR_MEM_VSX_P (mode) || FLOAT128_VECTOR_P (mode)
2032 ? UNITS_PER_VSX_WORD
2033 : UNITS_PER_FP_WORD);
2035 else if (ALTIVEC_REGNO_P (regno))
2036 reg_size = UNITS_PER_ALTIVEC_WORD;
2038 else
2039 reg_size = UNITS_PER_WORD;
2041 return (GET_MODE_SIZE (mode) + reg_size - 1) / reg_size;
2044 /* Value is 1 if hard register REGNO can hold a value of machine-mode
2045 MODE. */
2046 static int
2047 rs6000_hard_regno_mode_ok_uncached (int regno, machine_mode mode)
2049 int last_regno = regno + rs6000_hard_regno_nregs[mode][regno] - 1;
2051 if (COMPLEX_MODE_P (mode))
2052 mode = GET_MODE_INNER (mode);
2054 /* PTImode can only go in GPRs. Quad word memory operations require even/odd
2055 register combinations, and use PTImode where we need to deal with quad
2056 word memory operations. Don't allow quad words in the argument or frame
2057 pointer registers, just registers 0..31. */
2058 if (mode == PTImode)
2059 return (IN_RANGE (regno, FIRST_GPR_REGNO, LAST_GPR_REGNO)
2060 && IN_RANGE (last_regno, FIRST_GPR_REGNO, LAST_GPR_REGNO)
2061 && ((regno & 1) == 0));
2063 /* VSX registers that overlap the FPR registers are larger than for non-VSX
2064 implementations. Don't allow an item to be split between a FP register
2065 and an Altivec register. Allow TImode in all VSX registers if the user
2066 asked for it. */
2067 if (TARGET_VSX && VSX_REGNO_P (regno)
2068 && (VECTOR_MEM_VSX_P (mode)
2069 || FLOAT128_VECTOR_P (mode)
2070 || reg_addr[mode].scalar_in_vmx_p
2071 || mode == TImode
2072 || (TARGET_VADDUQM && mode == V1TImode)))
2074 if (FP_REGNO_P (regno))
2075 return FP_REGNO_P (last_regno);
2077 if (ALTIVEC_REGNO_P (regno))
2079 if (GET_MODE_SIZE (mode) != 16 && !reg_addr[mode].scalar_in_vmx_p)
2080 return 0;
2082 return ALTIVEC_REGNO_P (last_regno);
2086 /* The GPRs can hold any mode, but values bigger than one register
2087 cannot go past R31. */
2088 if (INT_REGNO_P (regno))
2089 return INT_REGNO_P (last_regno);
2091 /* The float registers (except for VSX vector modes) can only hold floating
2092 modes and DImode. */
2093 if (FP_REGNO_P (regno))
2095 if (FLOAT128_VECTOR_P (mode))
2096 return false;
2098 if (SCALAR_FLOAT_MODE_P (mode)
2099 && (mode != TDmode || (regno % 2) == 0)
2100 && FP_REGNO_P (last_regno))
2101 return 1;
2103 if (GET_MODE_CLASS (mode) == MODE_INT)
2105 if(GET_MODE_SIZE (mode) == UNITS_PER_FP_WORD)
2106 return 1;
2108 if (TARGET_P8_VECTOR && (mode == SImode))
2109 return 1;
2111 if (TARGET_P9_VECTOR && (mode == QImode || mode == HImode))
2112 return 1;
2115 if (PAIRED_SIMD_REGNO_P (regno) && TARGET_PAIRED_FLOAT
2116 && PAIRED_VECTOR_MODE (mode))
2117 return 1;
2119 return 0;
2122 /* The CR register can only hold CC modes. */
2123 if (CR_REGNO_P (regno))
2124 return GET_MODE_CLASS (mode) == MODE_CC;
2126 if (CA_REGNO_P (regno))
2127 return mode == Pmode || mode == SImode;
2129 /* AltiVec only in AldyVec registers. */
2130 if (ALTIVEC_REGNO_P (regno))
2131 return (VECTOR_MEM_ALTIVEC_OR_VSX_P (mode)
2132 || mode == V1TImode);
2134 /* We cannot put non-VSX TImode or PTImode anywhere except general register
2135 and it must be able to fit within the register set. */
2137 return GET_MODE_SIZE (mode) <= UNITS_PER_WORD;
2140 /* Implement TARGET_HARD_REGNO_NREGS. */
2142 static unsigned int
2143 rs6000_hard_regno_nregs_hook (unsigned int regno, machine_mode mode)
2145 return rs6000_hard_regno_nregs[mode][regno];
2148 /* Implement TARGET_HARD_REGNO_MODE_OK. */
2150 static bool
2151 rs6000_hard_regno_mode_ok (unsigned int regno, machine_mode mode)
2153 return rs6000_hard_regno_mode_ok_p[mode][regno];
2156 /* Implement TARGET_MODES_TIEABLE_P.
2158 PTImode cannot tie with other modes because PTImode is restricted to even
2159 GPR registers, and TImode can go in any GPR as well as VSX registers (PR
2160 57744).
2162 Altivec/VSX vector tests were moved ahead of scalar float mode, so that IEEE
2163 128-bit floating point on VSX systems ties with other vectors. */
2165 static bool
2166 rs6000_modes_tieable_p (machine_mode mode1, machine_mode mode2)
2168 if (mode1 == PTImode)
2169 return mode2 == PTImode;
2170 if (mode2 == PTImode)
2171 return false;
2173 if (ALTIVEC_OR_VSX_VECTOR_MODE (mode1))
2174 return ALTIVEC_OR_VSX_VECTOR_MODE (mode2);
2175 if (ALTIVEC_OR_VSX_VECTOR_MODE (mode2))
2176 return false;
2178 if (SCALAR_FLOAT_MODE_P (mode1))
2179 return SCALAR_FLOAT_MODE_P (mode2);
2180 if (SCALAR_FLOAT_MODE_P (mode2))
2181 return false;
2183 if (GET_MODE_CLASS (mode1) == MODE_CC)
2184 return GET_MODE_CLASS (mode2) == MODE_CC;
2185 if (GET_MODE_CLASS (mode2) == MODE_CC)
2186 return false;
2188 if (PAIRED_VECTOR_MODE (mode1))
2189 return PAIRED_VECTOR_MODE (mode2);
2190 if (PAIRED_VECTOR_MODE (mode2))
2191 return false;
2193 return true;
2196 /* Implement TARGET_HARD_REGNO_CALL_PART_CLOBBERED. */
2198 static bool
2199 rs6000_hard_regno_call_part_clobbered (unsigned int regno, machine_mode mode)
2201 if (TARGET_32BIT
2202 && TARGET_POWERPC64
2203 && GET_MODE_SIZE (mode) > 4
2204 && INT_REGNO_P (regno))
2205 return true;
2207 if (TARGET_VSX
2208 && FP_REGNO_P (regno)
2209 && GET_MODE_SIZE (mode) > 8
2210 && !FLOAT128_2REG_P (mode))
2211 return true;
2213 return false;
2216 /* Print interesting facts about registers. */
2217 static void
2218 rs6000_debug_reg_print (int first_regno, int last_regno, const char *reg_name)
2220 int r, m;
2222 for (r = first_regno; r <= last_regno; ++r)
2224 const char *comma = "";
2225 int len;
2227 if (first_regno == last_regno)
2228 fprintf (stderr, "%s:\t", reg_name);
2229 else
2230 fprintf (stderr, "%s%d:\t", reg_name, r - first_regno);
2232 len = 8;
2233 for (m = 0; m < NUM_MACHINE_MODES; ++m)
2234 if (rs6000_hard_regno_mode_ok_p[m][r] && rs6000_hard_regno_nregs[m][r])
2236 if (len > 70)
2238 fprintf (stderr, ",\n\t");
2239 len = 8;
2240 comma = "";
2243 if (rs6000_hard_regno_nregs[m][r] > 1)
2244 len += fprintf (stderr, "%s%s/%d", comma, GET_MODE_NAME (m),
2245 rs6000_hard_regno_nregs[m][r]);
2246 else
2247 len += fprintf (stderr, "%s%s", comma, GET_MODE_NAME (m));
2249 comma = ", ";
2252 if (call_used_regs[r])
2254 if (len > 70)
2256 fprintf (stderr, ",\n\t");
2257 len = 8;
2258 comma = "";
2261 len += fprintf (stderr, "%s%s", comma, "call-used");
2262 comma = ", ";
2265 if (fixed_regs[r])
2267 if (len > 70)
2269 fprintf (stderr, ",\n\t");
2270 len = 8;
2271 comma = "";
2274 len += fprintf (stderr, "%s%s", comma, "fixed");
2275 comma = ", ";
2278 if (len > 70)
2280 fprintf (stderr, ",\n\t");
2281 comma = "";
2284 len += fprintf (stderr, "%sreg-class = %s", comma,
2285 reg_class_names[(int)rs6000_regno_regclass[r]]);
2286 comma = ", ";
2288 if (len > 70)
2290 fprintf (stderr, ",\n\t");
2291 comma = "";
2294 fprintf (stderr, "%sregno = %d\n", comma, r);
2298 static const char *
2299 rs6000_debug_vector_unit (enum rs6000_vector v)
2301 const char *ret;
2303 switch (v)
2305 case VECTOR_NONE: ret = "none"; break;
2306 case VECTOR_ALTIVEC: ret = "altivec"; break;
2307 case VECTOR_VSX: ret = "vsx"; break;
2308 case VECTOR_P8_VECTOR: ret = "p8_vector"; break;
2309 case VECTOR_PAIRED: ret = "paired"; break;
2310 case VECTOR_OTHER: ret = "other"; break;
2311 default: ret = "unknown"; break;
2314 return ret;
2317 /* Inner function printing just the address mask for a particular reload
2318 register class. */
2319 DEBUG_FUNCTION char *
2320 rs6000_debug_addr_mask (addr_mask_type mask, bool keep_spaces)
2322 static char ret[8];
2323 char *p = ret;
2325 if ((mask & RELOAD_REG_VALID) != 0)
2326 *p++ = 'v';
2327 else if (keep_spaces)
2328 *p++ = ' ';
2330 if ((mask & RELOAD_REG_MULTIPLE) != 0)
2331 *p++ = 'm';
2332 else if (keep_spaces)
2333 *p++ = ' ';
2335 if ((mask & RELOAD_REG_INDEXED) != 0)
2336 *p++ = 'i';
2337 else if (keep_spaces)
2338 *p++ = ' ';
2340 if ((mask & RELOAD_REG_QUAD_OFFSET) != 0)
2341 *p++ = 'O';
2342 else if ((mask & RELOAD_REG_OFFSET) != 0)
2343 *p++ = 'o';
2344 else if (keep_spaces)
2345 *p++ = ' ';
2347 if ((mask & RELOAD_REG_PRE_INCDEC) != 0)
2348 *p++ = '+';
2349 else if (keep_spaces)
2350 *p++ = ' ';
2352 if ((mask & RELOAD_REG_PRE_MODIFY) != 0)
2353 *p++ = '+';
2354 else if (keep_spaces)
2355 *p++ = ' ';
2357 if ((mask & RELOAD_REG_AND_M16) != 0)
2358 *p++ = '&';
2359 else if (keep_spaces)
2360 *p++ = ' ';
2362 *p = '\0';
2364 return ret;
2367 /* Print the address masks in a human readble fashion. */
2368 DEBUG_FUNCTION void
2369 rs6000_debug_print_mode (ssize_t m)
2371 ssize_t rc;
2372 int spaces = 0;
2373 bool fuse_extra_p;
2375 fprintf (stderr, "Mode: %-5s", GET_MODE_NAME (m));
2376 for (rc = 0; rc < N_RELOAD_REG; rc++)
2377 fprintf (stderr, " %s: %s", reload_reg_map[rc].name,
2378 rs6000_debug_addr_mask (reg_addr[m].addr_mask[rc], true));
2380 if ((reg_addr[m].reload_store != CODE_FOR_nothing)
2381 || (reg_addr[m].reload_load != CODE_FOR_nothing))
2382 fprintf (stderr, " Reload=%c%c",
2383 (reg_addr[m].reload_store != CODE_FOR_nothing) ? 's' : '*',
2384 (reg_addr[m].reload_load != CODE_FOR_nothing) ? 'l' : '*');
2385 else
2386 spaces += sizeof (" Reload=sl") - 1;
2388 if (reg_addr[m].scalar_in_vmx_p)
2390 fprintf (stderr, "%*s Upper=y", spaces, "");
2391 spaces = 0;
2393 else
2394 spaces += sizeof (" Upper=y") - 1;
2396 fuse_extra_p = ((reg_addr[m].fusion_gpr_ld != CODE_FOR_nothing)
2397 || reg_addr[m].fused_toc);
2398 if (!fuse_extra_p)
2400 for (rc = 0; rc < N_RELOAD_REG; rc++)
2402 if (rc != RELOAD_REG_ANY)
2404 if (reg_addr[m].fusion_addi_ld[rc] != CODE_FOR_nothing
2405 || reg_addr[m].fusion_addi_ld[rc] != CODE_FOR_nothing
2406 || reg_addr[m].fusion_addi_st[rc] != CODE_FOR_nothing
2407 || reg_addr[m].fusion_addis_ld[rc] != CODE_FOR_nothing
2408 || reg_addr[m].fusion_addis_st[rc] != CODE_FOR_nothing)
2410 fuse_extra_p = true;
2411 break;
2417 if (fuse_extra_p)
2419 fprintf (stderr, "%*s Fuse:", spaces, "");
2420 spaces = 0;
2422 for (rc = 0; rc < N_RELOAD_REG; rc++)
2424 if (rc != RELOAD_REG_ANY)
2426 char load, store;
2428 if (reg_addr[m].fusion_addis_ld[rc] != CODE_FOR_nothing)
2429 load = 'l';
2430 else if (reg_addr[m].fusion_addi_ld[rc] != CODE_FOR_nothing)
2431 load = 'L';
2432 else
2433 load = '-';
2435 if (reg_addr[m].fusion_addis_st[rc] != CODE_FOR_nothing)
2436 store = 's';
2437 else if (reg_addr[m].fusion_addi_st[rc] != CODE_FOR_nothing)
2438 store = 'S';
2439 else
2440 store = '-';
2442 if (load == '-' && store == '-')
2443 spaces += 5;
2444 else
2446 fprintf (stderr, "%*s%c=%c%c", (spaces + 1), "",
2447 reload_reg_map[rc].name[0], load, store);
2448 spaces = 0;
2453 if (reg_addr[m].fusion_gpr_ld != CODE_FOR_nothing)
2455 fprintf (stderr, "%*sP8gpr", (spaces + 1), "");
2456 spaces = 0;
2458 else
2459 spaces += sizeof (" P8gpr") - 1;
2461 if (reg_addr[m].fused_toc)
2463 fprintf (stderr, "%*sToc", (spaces + 1), "");
2464 spaces = 0;
2466 else
2467 spaces += sizeof (" Toc") - 1;
2469 else
2470 spaces += sizeof (" Fuse: G=ls F=ls v=ls P8gpr Toc") - 1;
2472 if (rs6000_vector_unit[m] != VECTOR_NONE
2473 || rs6000_vector_mem[m] != VECTOR_NONE)
2475 fprintf (stderr, "%*s vector: arith=%-10s mem=%s",
2476 spaces, "",
2477 rs6000_debug_vector_unit (rs6000_vector_unit[m]),
2478 rs6000_debug_vector_unit (rs6000_vector_mem[m]));
2481 fputs ("\n", stderr);
2484 #define DEBUG_FMT_ID "%-32s= "
2485 #define DEBUG_FMT_D DEBUG_FMT_ID "%d\n"
2486 #define DEBUG_FMT_WX DEBUG_FMT_ID "%#.12" HOST_WIDE_INT_PRINT "x: "
2487 #define DEBUG_FMT_S DEBUG_FMT_ID "%s\n"
2489 /* Print various interesting information with -mdebug=reg. */
2490 static void
2491 rs6000_debug_reg_global (void)
2493 static const char *const tf[2] = { "false", "true" };
2494 const char *nl = (const char *)0;
2495 int m;
2496 size_t m1, m2, v;
2497 char costly_num[20];
2498 char nop_num[20];
2499 char flags_buffer[40];
2500 const char *costly_str;
2501 const char *nop_str;
2502 const char *trace_str;
2503 const char *abi_str;
2504 const char *cmodel_str;
2505 struct cl_target_option cl_opts;
2507 /* Modes we want tieable information on. */
2508 static const machine_mode print_tieable_modes[] = {
2509 QImode,
2510 HImode,
2511 SImode,
2512 DImode,
2513 TImode,
2514 PTImode,
2515 SFmode,
2516 DFmode,
2517 TFmode,
2518 IFmode,
2519 KFmode,
2520 SDmode,
2521 DDmode,
2522 TDmode,
2523 V2SImode,
2524 V16QImode,
2525 V8HImode,
2526 V4SImode,
2527 V2DImode,
2528 V1TImode,
2529 V32QImode,
2530 V16HImode,
2531 V8SImode,
2532 V4DImode,
2533 V2TImode,
2534 V2SFmode,
2535 V4SFmode,
2536 V2DFmode,
2537 V8SFmode,
2538 V4DFmode,
2539 CCmode,
2540 CCUNSmode,
2541 CCEQmode,
2544 /* Virtual regs we are interested in. */
2545 const static struct {
2546 int regno; /* register number. */
2547 const char *name; /* register name. */
2548 } virtual_regs[] = {
2549 { STACK_POINTER_REGNUM, "stack pointer:" },
2550 { TOC_REGNUM, "toc: " },
2551 { STATIC_CHAIN_REGNUM, "static chain: " },
2552 { RS6000_PIC_OFFSET_TABLE_REGNUM, "pic offset: " },
2553 { HARD_FRAME_POINTER_REGNUM, "hard frame: " },
2554 { ARG_POINTER_REGNUM, "arg pointer: " },
2555 { FRAME_POINTER_REGNUM, "frame pointer:" },
2556 { FIRST_PSEUDO_REGISTER, "first pseudo: " },
2557 { FIRST_VIRTUAL_REGISTER, "first virtual:" },
2558 { VIRTUAL_INCOMING_ARGS_REGNUM, "incoming_args:" },
2559 { VIRTUAL_STACK_VARS_REGNUM, "stack_vars: " },
2560 { VIRTUAL_STACK_DYNAMIC_REGNUM, "stack_dynamic:" },
2561 { VIRTUAL_OUTGOING_ARGS_REGNUM, "outgoing_args:" },
2562 { VIRTUAL_CFA_REGNUM, "cfa (frame): " },
2563 { VIRTUAL_PREFERRED_STACK_BOUNDARY_REGNUM, "stack boundry:" },
2564 { LAST_VIRTUAL_REGISTER, "last virtual: " },
2567 fputs ("\nHard register information:\n", stderr);
2568 rs6000_debug_reg_print (FIRST_GPR_REGNO, LAST_GPR_REGNO, "gr");
2569 rs6000_debug_reg_print (FIRST_FPR_REGNO, LAST_FPR_REGNO, "fp");
2570 rs6000_debug_reg_print (FIRST_ALTIVEC_REGNO,
2571 LAST_ALTIVEC_REGNO,
2572 "vs");
2573 rs6000_debug_reg_print (LR_REGNO, LR_REGNO, "lr");
2574 rs6000_debug_reg_print (CTR_REGNO, CTR_REGNO, "ctr");
2575 rs6000_debug_reg_print (CR0_REGNO, CR7_REGNO, "cr");
2576 rs6000_debug_reg_print (CA_REGNO, CA_REGNO, "ca");
2577 rs6000_debug_reg_print (VRSAVE_REGNO, VRSAVE_REGNO, "vrsave");
2578 rs6000_debug_reg_print (VSCR_REGNO, VSCR_REGNO, "vscr");
2580 fputs ("\nVirtual/stack/frame registers:\n", stderr);
2581 for (v = 0; v < ARRAY_SIZE (virtual_regs); v++)
2582 fprintf (stderr, "%s regno = %3d\n", virtual_regs[v].name, virtual_regs[v].regno);
2584 fprintf (stderr,
2585 "\n"
2586 "d reg_class = %s\n"
2587 "f reg_class = %s\n"
2588 "v reg_class = %s\n"
2589 "wa reg_class = %s\n"
2590 "wb reg_class = %s\n"
2591 "wd reg_class = %s\n"
2592 "we reg_class = %s\n"
2593 "wf reg_class = %s\n"
2594 "wg reg_class = %s\n"
2595 "wh reg_class = %s\n"
2596 "wi reg_class = %s\n"
2597 "wj reg_class = %s\n"
2598 "wk reg_class = %s\n"
2599 "wl reg_class = %s\n"
2600 "wm reg_class = %s\n"
2601 "wo reg_class = %s\n"
2602 "wp reg_class = %s\n"
2603 "wq reg_class = %s\n"
2604 "wr reg_class = %s\n"
2605 "ws reg_class = %s\n"
2606 "wt reg_class = %s\n"
2607 "wu reg_class = %s\n"
2608 "wv reg_class = %s\n"
2609 "ww reg_class = %s\n"
2610 "wx reg_class = %s\n"
2611 "wy reg_class = %s\n"
2612 "wz reg_class = %s\n"
2613 "wA reg_class = %s\n"
2614 "wH reg_class = %s\n"
2615 "wI reg_class = %s\n"
2616 "wJ reg_class = %s\n"
2617 "wK reg_class = %s\n"
2618 "\n",
2619 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_d]],
2620 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_f]],
2621 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_v]],
2622 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wa]],
2623 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wb]],
2624 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wd]],
2625 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_we]],
2626 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wf]],
2627 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wg]],
2628 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wh]],
2629 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wi]],
2630 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wj]],
2631 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wk]],
2632 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wl]],
2633 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wm]],
2634 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wo]],
2635 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wp]],
2636 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wq]],
2637 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wr]],
2638 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_ws]],
2639 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wt]],
2640 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wu]],
2641 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wv]],
2642 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_ww]],
2643 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wx]],
2644 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wy]],
2645 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wz]],
2646 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wA]],
2647 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wH]],
2648 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wI]],
2649 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wJ]],
2650 reg_class_names[rs6000_constraints[RS6000_CONSTRAINT_wK]]);
2652 nl = "\n";
2653 for (m = 0; m < NUM_MACHINE_MODES; ++m)
2654 rs6000_debug_print_mode (m);
2656 fputs ("\n", stderr);
2658 for (m1 = 0; m1 < ARRAY_SIZE (print_tieable_modes); m1++)
2660 machine_mode mode1 = print_tieable_modes[m1];
2661 bool first_time = true;
2663 nl = (const char *)0;
2664 for (m2 = 0; m2 < ARRAY_SIZE (print_tieable_modes); m2++)
2666 machine_mode mode2 = print_tieable_modes[m2];
2667 if (mode1 != mode2 && rs6000_modes_tieable_p (mode1, mode2))
2669 if (first_time)
2671 fprintf (stderr, "Tieable modes %s:", GET_MODE_NAME (mode1));
2672 nl = "\n";
2673 first_time = false;
2676 fprintf (stderr, " %s", GET_MODE_NAME (mode2));
2680 if (!first_time)
2681 fputs ("\n", stderr);
2684 if (nl)
2685 fputs (nl, stderr);
2687 if (rs6000_recip_control)
2689 fprintf (stderr, "\nReciprocal mask = 0x%x\n", rs6000_recip_control);
2691 for (m = 0; m < NUM_MACHINE_MODES; ++m)
2692 if (rs6000_recip_bits[m])
2694 fprintf (stderr,
2695 "Reciprocal estimate mode: %-5s divide: %s rsqrt: %s\n",
2696 GET_MODE_NAME (m),
2697 (RS6000_RECIP_AUTO_RE_P (m)
2698 ? "auto"
2699 : (RS6000_RECIP_HAVE_RE_P (m) ? "have" : "none")),
2700 (RS6000_RECIP_AUTO_RSQRTE_P (m)
2701 ? "auto"
2702 : (RS6000_RECIP_HAVE_RSQRTE_P (m) ? "have" : "none")));
2705 fputs ("\n", stderr);
2708 if (rs6000_cpu_index >= 0)
2710 const char *name = processor_target_table[rs6000_cpu_index].name;
2711 HOST_WIDE_INT flags
2712 = processor_target_table[rs6000_cpu_index].target_enable;
2714 sprintf (flags_buffer, "-mcpu=%s flags", name);
2715 rs6000_print_isa_options (stderr, 0, flags_buffer, flags);
2717 else
2718 fprintf (stderr, DEBUG_FMT_S, "cpu", "<none>");
2720 if (rs6000_tune_index >= 0)
2722 const char *name = processor_target_table[rs6000_tune_index].name;
2723 HOST_WIDE_INT flags
2724 = processor_target_table[rs6000_tune_index].target_enable;
2726 sprintf (flags_buffer, "-mtune=%s flags", name);
2727 rs6000_print_isa_options (stderr, 0, flags_buffer, flags);
2729 else
2730 fprintf (stderr, DEBUG_FMT_S, "tune", "<none>");
2732 cl_target_option_save (&cl_opts, &global_options);
2733 rs6000_print_isa_options (stderr, 0, "rs6000_isa_flags",
2734 rs6000_isa_flags);
2736 rs6000_print_isa_options (stderr, 0, "rs6000_isa_flags_explicit",
2737 rs6000_isa_flags_explicit);
2739 rs6000_print_builtin_options (stderr, 0, "rs6000_builtin_mask",
2740 rs6000_builtin_mask);
2742 rs6000_print_isa_options (stderr, 0, "TARGET_DEFAULT", TARGET_DEFAULT);
2744 fprintf (stderr, DEBUG_FMT_S, "--with-cpu default",
2745 OPTION_TARGET_CPU_DEFAULT ? OPTION_TARGET_CPU_DEFAULT : "<none>");
2747 switch (rs6000_sched_costly_dep)
2749 case max_dep_latency:
2750 costly_str = "max_dep_latency";
2751 break;
2753 case no_dep_costly:
2754 costly_str = "no_dep_costly";
2755 break;
2757 case all_deps_costly:
2758 costly_str = "all_deps_costly";
2759 break;
2761 case true_store_to_load_dep_costly:
2762 costly_str = "true_store_to_load_dep_costly";
2763 break;
2765 case store_to_load_dep_costly:
2766 costly_str = "store_to_load_dep_costly";
2767 break;
2769 default:
2770 costly_str = costly_num;
2771 sprintf (costly_num, "%d", (int)rs6000_sched_costly_dep);
2772 break;
2775 fprintf (stderr, DEBUG_FMT_S, "sched_costly_dep", costly_str);
2777 switch (rs6000_sched_insert_nops)
2779 case sched_finish_regroup_exact:
2780 nop_str = "sched_finish_regroup_exact";
2781 break;
2783 case sched_finish_pad_groups:
2784 nop_str = "sched_finish_pad_groups";
2785 break;
2787 case sched_finish_none:
2788 nop_str = "sched_finish_none";
2789 break;
2791 default:
2792 nop_str = nop_num;
2793 sprintf (nop_num, "%d", (int)rs6000_sched_insert_nops);
2794 break;
2797 fprintf (stderr, DEBUG_FMT_S, "sched_insert_nops", nop_str);
2799 switch (rs6000_sdata)
2801 default:
2802 case SDATA_NONE:
2803 break;
2805 case SDATA_DATA:
2806 fprintf (stderr, DEBUG_FMT_S, "sdata", "data");
2807 break;
2809 case SDATA_SYSV:
2810 fprintf (stderr, DEBUG_FMT_S, "sdata", "sysv");
2811 break;
2813 case SDATA_EABI:
2814 fprintf (stderr, DEBUG_FMT_S, "sdata", "eabi");
2815 break;
2819 switch (rs6000_traceback)
2821 case traceback_default: trace_str = "default"; break;
2822 case traceback_none: trace_str = "none"; break;
2823 case traceback_part: trace_str = "part"; break;
2824 case traceback_full: trace_str = "full"; break;
2825 default: trace_str = "unknown"; break;
2828 fprintf (stderr, DEBUG_FMT_S, "traceback", trace_str);
2830 switch (rs6000_current_cmodel)
2832 case CMODEL_SMALL: cmodel_str = "small"; break;
2833 case CMODEL_MEDIUM: cmodel_str = "medium"; break;
2834 case CMODEL_LARGE: cmodel_str = "large"; break;
2835 default: cmodel_str = "unknown"; break;
2838 fprintf (stderr, DEBUG_FMT_S, "cmodel", cmodel_str);
2840 switch (rs6000_current_abi)
2842 case ABI_NONE: abi_str = "none"; break;
2843 case ABI_AIX: abi_str = "aix"; break;
2844 case ABI_ELFv2: abi_str = "ELFv2"; break;
2845 case ABI_V4: abi_str = "V4"; break;
2846 case ABI_DARWIN: abi_str = "darwin"; break;
2847 default: abi_str = "unknown"; break;
2850 fprintf (stderr, DEBUG_FMT_S, "abi", abi_str);
2852 if (rs6000_altivec_abi)
2853 fprintf (stderr, DEBUG_FMT_S, "altivec_abi", "true");
2855 if (rs6000_darwin64_abi)
2856 fprintf (stderr, DEBUG_FMT_S, "darwin64_abi", "true");
2858 fprintf (stderr, DEBUG_FMT_S, "single_float",
2859 (TARGET_SINGLE_FLOAT ? "true" : "false"));
2861 fprintf (stderr, DEBUG_FMT_S, "double_float",
2862 (TARGET_DOUBLE_FLOAT ? "true" : "false"));
2864 fprintf (stderr, DEBUG_FMT_S, "soft_float",
2865 (TARGET_SOFT_FLOAT ? "true" : "false"));
2867 if (TARGET_LINK_STACK)
2868 fprintf (stderr, DEBUG_FMT_S, "link_stack", "true");
2870 if (TARGET_P8_FUSION)
2872 char options[80];
2874 strcpy (options, (TARGET_P9_FUSION) ? "power9" : "power8");
2875 if (TARGET_TOC_FUSION)
2876 strcat (options, ", toc");
2878 if (TARGET_P8_FUSION_SIGN)
2879 strcat (options, ", sign");
2881 fprintf (stderr, DEBUG_FMT_S, "fusion", options);
2884 fprintf (stderr, DEBUG_FMT_S, "plt-format",
2885 TARGET_SECURE_PLT ? "secure" : "bss");
2886 fprintf (stderr, DEBUG_FMT_S, "struct-return",
2887 aix_struct_return ? "aix" : "sysv");
2888 fprintf (stderr, DEBUG_FMT_S, "always_hint", tf[!!rs6000_always_hint]);
2889 fprintf (stderr, DEBUG_FMT_S, "sched_groups", tf[!!rs6000_sched_groups]);
2890 fprintf (stderr, DEBUG_FMT_S, "align_branch",
2891 tf[!!rs6000_align_branch_targets]);
2892 fprintf (stderr, DEBUG_FMT_D, "tls_size", rs6000_tls_size);
2893 fprintf (stderr, DEBUG_FMT_D, "long_double_size",
2894 rs6000_long_double_type_size);
2895 if (rs6000_long_double_type_size == 128)
2897 fprintf (stderr, DEBUG_FMT_S, "long double type",
2898 TARGET_IEEEQUAD ? "IEEE" : "IBM");
2899 fprintf (stderr, DEBUG_FMT_S, "default long double type",
2900 TARGET_IEEEQUAD_DEFAULT ? "IEEE" : "IBM");
2902 fprintf (stderr, DEBUG_FMT_D, "sched_restricted_insns_priority",
2903 (int)rs6000_sched_restricted_insns_priority);
2904 fprintf (stderr, DEBUG_FMT_D, "Number of standard builtins",
2905 (int)END_BUILTINS);
2906 fprintf (stderr, DEBUG_FMT_D, "Number of rs6000 builtins",
2907 (int)RS6000_BUILTIN_COUNT);
2909 fprintf (stderr, DEBUG_FMT_D, "Enable float128 on VSX",
2910 (int)TARGET_FLOAT128_ENABLE_TYPE);
2912 if (TARGET_VSX)
2913 fprintf (stderr, DEBUG_FMT_D, "VSX easy 64-bit scalar element",
2914 (int)VECTOR_ELEMENT_SCALAR_64BIT);
2916 if (TARGET_DIRECT_MOVE_128)
2917 fprintf (stderr, DEBUG_FMT_D, "VSX easy 64-bit mfvsrld element",
2918 (int)VECTOR_ELEMENT_MFVSRLD_64BIT);
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. */
2926 static void
2927 rs6000_setup_reg_addr_masks (void)
2929 ssize_t rc, reg, m, nregs;
2930 addr_mask_type any_addr_mask, addr_mask;
2932 for (m = 0; m < NUM_MACHINE_MODES; ++m)
2934 machine_mode m2 = (machine_mode) m;
2935 bool complex_p = false;
2936 bool small_int_p = (m2 == QImode || m2 == HImode || m2 == SImode);
2937 size_t msize;
2939 if (COMPLEX_MODE_P (m2))
2941 complex_p = true;
2942 m2 = GET_MODE_INNER (m2);
2945 msize = GET_MODE_SIZE (m2);
2947 /* SDmode is special in that we want to access it only via REG+REG
2948 addressing on power7 and above, since we want to use the LFIWZX and
2949 STFIWZX instructions to load it. */
2950 bool indexed_only_p = (m == SDmode && TARGET_NO_SDMODE_STACK);
2952 any_addr_mask = 0;
2953 for (rc = FIRST_RELOAD_REG_CLASS; rc <= LAST_RELOAD_REG_CLASS; rc++)
2955 addr_mask = 0;
2956 reg = reload_reg_map[rc].reg;
2958 /* Can mode values go in the GPR/FPR/Altivec registers? */
2959 if (reg >= 0 && rs6000_hard_regno_mode_ok_p[m][reg])
2961 bool small_int_vsx_p = (small_int_p
2962 && (rc == RELOAD_REG_FPR
2963 || rc == RELOAD_REG_VMX));
2965 nregs = rs6000_hard_regno_nregs[m][reg];
2966 addr_mask |= RELOAD_REG_VALID;
2968 /* Indicate if the mode takes more than 1 physical register. If
2969 it takes a single register, indicate it can do REG+REG
2970 addressing. Small integers in VSX registers can only do
2971 REG+REG addressing. */
2972 if (small_int_vsx_p)
2973 addr_mask |= RELOAD_REG_INDEXED;
2974 else if (nregs > 1 || m == BLKmode || complex_p)
2975 addr_mask |= RELOAD_REG_MULTIPLE;
2976 else
2977 addr_mask |= RELOAD_REG_INDEXED;
2979 /* Figure out if we can do PRE_INC, PRE_DEC, or PRE_MODIFY
2980 addressing. If we allow scalars into Altivec registers,
2981 don't allow PRE_INC, PRE_DEC, or PRE_MODIFY. */
2983 if (TARGET_UPDATE
2984 && (rc == RELOAD_REG_GPR || rc == RELOAD_REG_FPR)
2985 && msize <= 8
2986 && !VECTOR_MODE_P (m2)
2987 && !FLOAT128_VECTOR_P (m2)
2988 && !complex_p
2989 && !small_int_vsx_p)
2991 addr_mask |= RELOAD_REG_PRE_INCDEC;
2993 /* PRE_MODIFY is more restricted than PRE_INC/PRE_DEC in that
2994 we don't allow PRE_MODIFY for some multi-register
2995 operations. */
2996 switch (m)
2998 default:
2999 addr_mask |= RELOAD_REG_PRE_MODIFY;
3000 break;
3002 case E_DImode:
3003 if (TARGET_POWERPC64)
3004 addr_mask |= RELOAD_REG_PRE_MODIFY;
3005 break;
3007 case E_DFmode:
3008 case E_DDmode:
3009 if (TARGET_DF_INSN)
3010 addr_mask |= RELOAD_REG_PRE_MODIFY;
3011 break;
3016 /* GPR and FPR registers can do REG+OFFSET addressing, except
3017 possibly for SDmode. ISA 3.0 (i.e. power9) adds D-form addressing
3018 for 64-bit scalars and 32-bit SFmode to altivec registers. */
3019 if ((addr_mask != 0) && !indexed_only_p
3020 && msize <= 8
3021 && (rc == RELOAD_REG_GPR
3022 || ((msize == 8 || m2 == SFmode)
3023 && (rc == RELOAD_REG_FPR
3024 || (rc == RELOAD_REG_VMX && TARGET_P9_VECTOR)))))
3025 addr_mask |= RELOAD_REG_OFFSET;
3027 /* VSX registers can do REG+OFFSET addresssing if ISA 3.0
3028 instructions are enabled. The offset for 128-bit VSX registers is
3029 only 12-bits. While GPRs can handle the full offset range, VSX
3030 registers can only handle the restricted range. */
3031 else if ((addr_mask != 0) && !indexed_only_p
3032 && msize == 16 && TARGET_P9_VECTOR
3033 && (ALTIVEC_OR_VSX_VECTOR_MODE (m2)
3034 || (m2 == TImode && TARGET_VSX)))
3036 addr_mask |= RELOAD_REG_OFFSET;
3037 if (rc == RELOAD_REG_FPR || rc == RELOAD_REG_VMX)
3038 addr_mask |= RELOAD_REG_QUAD_OFFSET;
3041 /* VMX registers can do (REG & -16) and ((REG+REG) & -16)
3042 addressing on 128-bit types. */
3043 if (rc == RELOAD_REG_VMX && msize == 16
3044 && (addr_mask & RELOAD_REG_VALID) != 0)
3045 addr_mask |= RELOAD_REG_AND_M16;
3047 reg_addr[m].addr_mask[rc] = addr_mask;
3048 any_addr_mask |= addr_mask;
3051 reg_addr[m].addr_mask[RELOAD_REG_ANY] = any_addr_mask;
3056 /* Initialize the various global tables that are based on register size. */
3057 static void
3058 rs6000_init_hard_regno_mode_ok (bool global_init_p)
3060 ssize_t r, m, c;
3061 int align64;
3062 int align32;
3064 /* Precalculate REGNO_REG_CLASS. */
3065 rs6000_regno_regclass[0] = GENERAL_REGS;
3066 for (r = 1; r < 32; ++r)
3067 rs6000_regno_regclass[r] = BASE_REGS;
3069 for (r = 32; r < 64; ++r)
3070 rs6000_regno_regclass[r] = FLOAT_REGS;
3072 for (r = 64; r < FIRST_PSEUDO_REGISTER; ++r)
3073 rs6000_regno_regclass[r] = NO_REGS;
3075 for (r = FIRST_ALTIVEC_REGNO; r <= LAST_ALTIVEC_REGNO; ++r)
3076 rs6000_regno_regclass[r] = ALTIVEC_REGS;
3078 rs6000_regno_regclass[CR0_REGNO] = CR0_REGS;
3079 for (r = CR1_REGNO; r <= CR7_REGNO; ++r)
3080 rs6000_regno_regclass[r] = CR_REGS;
3082 rs6000_regno_regclass[LR_REGNO] = LINK_REGS;
3083 rs6000_regno_regclass[CTR_REGNO] = CTR_REGS;
3084 rs6000_regno_regclass[CA_REGNO] = NO_REGS;
3085 rs6000_regno_regclass[VRSAVE_REGNO] = VRSAVE_REGS;
3086 rs6000_regno_regclass[VSCR_REGNO] = VRSAVE_REGS;
3087 rs6000_regno_regclass[TFHAR_REGNO] = SPR_REGS;
3088 rs6000_regno_regclass[TFIAR_REGNO] = SPR_REGS;
3089 rs6000_regno_regclass[TEXASR_REGNO] = SPR_REGS;
3090 rs6000_regno_regclass[ARG_POINTER_REGNUM] = BASE_REGS;
3091 rs6000_regno_regclass[FRAME_POINTER_REGNUM] = BASE_REGS;
3093 /* Precalculate register class to simpler reload register class. We don't
3094 need all of the register classes that are combinations of different
3095 classes, just the simple ones that have constraint letters. */
3096 for (c = 0; c < N_REG_CLASSES; c++)
3097 reg_class_to_reg_type[c] = NO_REG_TYPE;
3099 reg_class_to_reg_type[(int)GENERAL_REGS] = GPR_REG_TYPE;
3100 reg_class_to_reg_type[(int)BASE_REGS] = GPR_REG_TYPE;
3101 reg_class_to_reg_type[(int)VSX_REGS] = VSX_REG_TYPE;
3102 reg_class_to_reg_type[(int)VRSAVE_REGS] = SPR_REG_TYPE;
3103 reg_class_to_reg_type[(int)VSCR_REGS] = SPR_REG_TYPE;
3104 reg_class_to_reg_type[(int)LINK_REGS] = SPR_REG_TYPE;
3105 reg_class_to_reg_type[(int)CTR_REGS] = SPR_REG_TYPE;
3106 reg_class_to_reg_type[(int)LINK_OR_CTR_REGS] = SPR_REG_TYPE;
3107 reg_class_to_reg_type[(int)CR_REGS] = CR_REG_TYPE;
3108 reg_class_to_reg_type[(int)CR0_REGS] = CR_REG_TYPE;
3110 if (TARGET_VSX)
3112 reg_class_to_reg_type[(int)FLOAT_REGS] = VSX_REG_TYPE;
3113 reg_class_to_reg_type[(int)ALTIVEC_REGS] = VSX_REG_TYPE;
3115 else
3117 reg_class_to_reg_type[(int)FLOAT_REGS] = FPR_REG_TYPE;
3118 reg_class_to_reg_type[(int)ALTIVEC_REGS] = ALTIVEC_REG_TYPE;
3121 /* Precalculate the valid memory formats as well as the vector information,
3122 this must be set up before the rs6000_hard_regno_nregs_internal calls
3123 below. */
3124 gcc_assert ((int)VECTOR_NONE == 0);
3125 memset ((void *) &rs6000_vector_unit[0], '\0', sizeof (rs6000_vector_unit));
3126 memset ((void *) &rs6000_vector_mem[0], '\0', sizeof (rs6000_vector_unit));
3128 gcc_assert ((int)CODE_FOR_nothing == 0);
3129 memset ((void *) &reg_addr[0], '\0', sizeof (reg_addr));
3131 gcc_assert ((int)NO_REGS == 0);
3132 memset ((void *) &rs6000_constraints[0], '\0', sizeof (rs6000_constraints));
3134 /* The VSX hardware allows native alignment for vectors, but control whether the compiler
3135 believes it can use native alignment or still uses 128-bit alignment. */
3136 if (TARGET_VSX && !TARGET_VSX_ALIGN_128)
3138 align64 = 64;
3139 align32 = 32;
3141 else
3143 align64 = 128;
3144 align32 = 128;
3147 /* KF mode (IEEE 128-bit in VSX registers). We do not have arithmetic, so
3148 only set the memory modes. Include TFmode if -mabi=ieeelongdouble. */
3149 if (TARGET_FLOAT128_TYPE)
3151 rs6000_vector_mem[KFmode] = VECTOR_VSX;
3152 rs6000_vector_align[KFmode] = 128;
3154 if (FLOAT128_IEEE_P (TFmode))
3156 rs6000_vector_mem[TFmode] = VECTOR_VSX;
3157 rs6000_vector_align[TFmode] = 128;
3161 /* V2DF mode, VSX only. */
3162 if (TARGET_VSX)
3164 rs6000_vector_unit[V2DFmode] = VECTOR_VSX;
3165 rs6000_vector_mem[V2DFmode] = VECTOR_VSX;
3166 rs6000_vector_align[V2DFmode] = align64;
3169 /* V4SF mode, either VSX or Altivec. */
3170 if (TARGET_VSX)
3172 rs6000_vector_unit[V4SFmode] = VECTOR_VSX;
3173 rs6000_vector_mem[V4SFmode] = VECTOR_VSX;
3174 rs6000_vector_align[V4SFmode] = align32;
3176 else if (TARGET_ALTIVEC)
3178 rs6000_vector_unit[V4SFmode] = VECTOR_ALTIVEC;
3179 rs6000_vector_mem[V4SFmode] = VECTOR_ALTIVEC;
3180 rs6000_vector_align[V4SFmode] = align32;
3183 /* V16QImode, V8HImode, V4SImode are Altivec only, but possibly do VSX loads
3184 and stores. */
3185 if (TARGET_ALTIVEC)
3187 rs6000_vector_unit[V4SImode] = VECTOR_ALTIVEC;
3188 rs6000_vector_unit[V8HImode] = VECTOR_ALTIVEC;
3189 rs6000_vector_unit[V16QImode] = VECTOR_ALTIVEC;
3190 rs6000_vector_align[V4SImode] = align32;
3191 rs6000_vector_align[V8HImode] = align32;
3192 rs6000_vector_align[V16QImode] = align32;
3194 if (TARGET_VSX)
3196 rs6000_vector_mem[V4SImode] = VECTOR_VSX;
3197 rs6000_vector_mem[V8HImode] = VECTOR_VSX;
3198 rs6000_vector_mem[V16QImode] = VECTOR_VSX;
3200 else
3202 rs6000_vector_mem[V4SImode] = VECTOR_ALTIVEC;
3203 rs6000_vector_mem[V8HImode] = VECTOR_ALTIVEC;
3204 rs6000_vector_mem[V16QImode] = VECTOR_ALTIVEC;
3208 /* V2DImode, full mode depends on ISA 2.07 vector mode. Allow under VSX to
3209 do insert/splat/extract. Altivec doesn't have 64-bit integer support. */
3210 if (TARGET_VSX)
3212 rs6000_vector_mem[V2DImode] = VECTOR_VSX;
3213 rs6000_vector_unit[V2DImode]
3214 = (TARGET_P8_VECTOR) ? VECTOR_P8_VECTOR : VECTOR_NONE;
3215 rs6000_vector_align[V2DImode] = align64;
3217 rs6000_vector_mem[V1TImode] = VECTOR_VSX;
3218 rs6000_vector_unit[V1TImode]
3219 = (TARGET_P8_VECTOR) ? VECTOR_P8_VECTOR : VECTOR_NONE;
3220 rs6000_vector_align[V1TImode] = 128;
3223 /* DFmode, see if we want to use the VSX unit. Memory is handled
3224 differently, so don't set rs6000_vector_mem. */
3225 if (TARGET_VSX)
3227 rs6000_vector_unit[DFmode] = VECTOR_VSX;
3228 rs6000_vector_align[DFmode] = 64;
3231 /* SFmode, see if we want to use the VSX unit. */
3232 if (TARGET_P8_VECTOR)
3234 rs6000_vector_unit[SFmode] = VECTOR_VSX;
3235 rs6000_vector_align[SFmode] = 32;
3238 /* Allow TImode in VSX register and set the VSX memory macros. */
3239 if (TARGET_VSX)
3241 rs6000_vector_mem[TImode] = VECTOR_VSX;
3242 rs6000_vector_align[TImode] = align64;
3245 /* TODO add paired floating point vector support. */
3247 /* Register class constraints for the constraints that depend on compile
3248 switches. When the VSX code was added, different constraints were added
3249 based on the type (DFmode, V2DFmode, V4SFmode). For the vector types, all
3250 of the VSX registers are used. The register classes for scalar floating
3251 point types is set, based on whether we allow that type into the upper
3252 (Altivec) registers. GCC has register classes to target the Altivec
3253 registers for load/store operations, to select using a VSX memory
3254 operation instead of the traditional floating point operation. The
3255 constraints are:
3257 d - Register class to use with traditional DFmode instructions.
3258 f - Register class to use with traditional SFmode instructions.
3259 v - Altivec register.
3260 wa - Any VSX register.
3261 wc - Reserved to represent individual CR bits (used in LLVM).
3262 wd - Preferred register class for V2DFmode.
3263 wf - Preferred register class for V4SFmode.
3264 wg - Float register for power6x move insns.
3265 wh - FP register for direct move instructions.
3266 wi - FP or VSX register to hold 64-bit integers for VSX insns.
3267 wj - FP or VSX register to hold 64-bit integers for direct moves.
3268 wk - FP or VSX register to hold 64-bit doubles for direct moves.
3269 wl - Float register if we can do 32-bit signed int loads.
3270 wm - VSX register for ISA 2.07 direct move operations.
3271 wn - always NO_REGS.
3272 wr - GPR if 64-bit mode is permitted.
3273 ws - Register class to do ISA 2.06 DF operations.
3274 wt - VSX register for TImode in VSX registers.
3275 wu - Altivec register for ISA 2.07 VSX SF/SI load/stores.
3276 wv - Altivec register for ISA 2.06 VSX DF/DI load/stores.
3277 ww - Register class to do SF conversions in with VSX operations.
3278 wx - Float register if we can do 32-bit int stores.
3279 wy - Register class to do ISA 2.07 SF operations.
3280 wz - Float register if we can do 32-bit unsigned int loads.
3281 wH - Altivec register if SImode is allowed in VSX registers.
3282 wI - VSX register if SImode is allowed in VSX registers.
3283 wJ - VSX register if QImode/HImode are allowed in VSX registers.
3284 wK - Altivec register if QImode/HImode are allowed in VSX registers. */
3286 if (TARGET_HARD_FLOAT)
3287 rs6000_constraints[RS6000_CONSTRAINT_f] = FLOAT_REGS; /* SFmode */
3289 if (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
3290 rs6000_constraints[RS6000_CONSTRAINT_d] = FLOAT_REGS; /* DFmode */
3292 if (TARGET_VSX)
3294 rs6000_constraints[RS6000_CONSTRAINT_wa] = VSX_REGS;
3295 rs6000_constraints[RS6000_CONSTRAINT_wd] = VSX_REGS; /* V2DFmode */
3296 rs6000_constraints[RS6000_CONSTRAINT_wf] = VSX_REGS; /* V4SFmode */
3297 rs6000_constraints[RS6000_CONSTRAINT_ws] = VSX_REGS; /* DFmode */
3298 rs6000_constraints[RS6000_CONSTRAINT_wv] = ALTIVEC_REGS; /* DFmode */
3299 rs6000_constraints[RS6000_CONSTRAINT_wi] = VSX_REGS; /* DImode */
3300 rs6000_constraints[RS6000_CONSTRAINT_wt] = VSX_REGS; /* TImode */
3303 /* Add conditional constraints based on various options, to allow us to
3304 collapse multiple insn patterns. */
3305 if (TARGET_ALTIVEC)
3306 rs6000_constraints[RS6000_CONSTRAINT_v] = ALTIVEC_REGS;
3308 if (TARGET_MFPGPR) /* DFmode */
3309 rs6000_constraints[RS6000_CONSTRAINT_wg] = FLOAT_REGS;
3311 if (TARGET_LFIWAX)
3312 rs6000_constraints[RS6000_CONSTRAINT_wl] = FLOAT_REGS; /* DImode */
3314 if (TARGET_DIRECT_MOVE)
3316 rs6000_constraints[RS6000_CONSTRAINT_wh] = FLOAT_REGS;
3317 rs6000_constraints[RS6000_CONSTRAINT_wj] /* DImode */
3318 = rs6000_constraints[RS6000_CONSTRAINT_wi];
3319 rs6000_constraints[RS6000_CONSTRAINT_wk] /* DFmode */
3320 = rs6000_constraints[RS6000_CONSTRAINT_ws];
3321 rs6000_constraints[RS6000_CONSTRAINT_wm] = VSX_REGS;
3324 if (TARGET_POWERPC64)
3326 rs6000_constraints[RS6000_CONSTRAINT_wr] = GENERAL_REGS;
3327 rs6000_constraints[RS6000_CONSTRAINT_wA] = BASE_REGS;
3330 if (TARGET_P8_VECTOR) /* SFmode */
3332 rs6000_constraints[RS6000_CONSTRAINT_wu] = ALTIVEC_REGS;
3333 rs6000_constraints[RS6000_CONSTRAINT_wy] = VSX_REGS;
3334 rs6000_constraints[RS6000_CONSTRAINT_ww] = VSX_REGS;
3336 else if (TARGET_VSX)
3337 rs6000_constraints[RS6000_CONSTRAINT_ww] = FLOAT_REGS;
3339 if (TARGET_STFIWX)
3340 rs6000_constraints[RS6000_CONSTRAINT_wx] = FLOAT_REGS; /* DImode */
3342 if (TARGET_LFIWZX)
3343 rs6000_constraints[RS6000_CONSTRAINT_wz] = FLOAT_REGS; /* DImode */
3345 if (TARGET_FLOAT128_TYPE)
3347 rs6000_constraints[RS6000_CONSTRAINT_wq] = VSX_REGS; /* KFmode */
3348 if (FLOAT128_IEEE_P (TFmode))
3349 rs6000_constraints[RS6000_CONSTRAINT_wp] = VSX_REGS; /* TFmode */
3352 if (TARGET_P9_VECTOR)
3354 /* Support for new D-form instructions. */
3355 rs6000_constraints[RS6000_CONSTRAINT_wb] = ALTIVEC_REGS;
3357 /* Support for ISA 3.0 (power9) vectors. */
3358 rs6000_constraints[RS6000_CONSTRAINT_wo] = VSX_REGS;
3361 /* Support for new direct moves (ISA 3.0 + 64bit). */
3362 if (TARGET_DIRECT_MOVE_128)
3363 rs6000_constraints[RS6000_CONSTRAINT_we] = VSX_REGS;
3365 /* Support small integers in VSX registers. */
3366 if (TARGET_P8_VECTOR)
3368 rs6000_constraints[RS6000_CONSTRAINT_wH] = ALTIVEC_REGS;
3369 rs6000_constraints[RS6000_CONSTRAINT_wI] = FLOAT_REGS;
3370 if (TARGET_P9_VECTOR)
3372 rs6000_constraints[RS6000_CONSTRAINT_wJ] = FLOAT_REGS;
3373 rs6000_constraints[RS6000_CONSTRAINT_wK] = ALTIVEC_REGS;
3377 /* Set up the reload helper and direct move functions. */
3378 if (TARGET_VSX || TARGET_ALTIVEC)
3380 if (TARGET_64BIT)
3382 reg_addr[V16QImode].reload_store = CODE_FOR_reload_v16qi_di_store;
3383 reg_addr[V16QImode].reload_load = CODE_FOR_reload_v16qi_di_load;
3384 reg_addr[V8HImode].reload_store = CODE_FOR_reload_v8hi_di_store;
3385 reg_addr[V8HImode].reload_load = CODE_FOR_reload_v8hi_di_load;
3386 reg_addr[V4SImode].reload_store = CODE_FOR_reload_v4si_di_store;
3387 reg_addr[V4SImode].reload_load = CODE_FOR_reload_v4si_di_load;
3388 reg_addr[V2DImode].reload_store = CODE_FOR_reload_v2di_di_store;
3389 reg_addr[V2DImode].reload_load = CODE_FOR_reload_v2di_di_load;
3390 reg_addr[V1TImode].reload_store = CODE_FOR_reload_v1ti_di_store;
3391 reg_addr[V1TImode].reload_load = CODE_FOR_reload_v1ti_di_load;
3392 reg_addr[V4SFmode].reload_store = CODE_FOR_reload_v4sf_di_store;
3393 reg_addr[V4SFmode].reload_load = CODE_FOR_reload_v4sf_di_load;
3394 reg_addr[V2DFmode].reload_store = CODE_FOR_reload_v2df_di_store;
3395 reg_addr[V2DFmode].reload_load = CODE_FOR_reload_v2df_di_load;
3396 reg_addr[DFmode].reload_store = CODE_FOR_reload_df_di_store;
3397 reg_addr[DFmode].reload_load = CODE_FOR_reload_df_di_load;
3398 reg_addr[DDmode].reload_store = CODE_FOR_reload_dd_di_store;
3399 reg_addr[DDmode].reload_load = CODE_FOR_reload_dd_di_load;
3400 reg_addr[SFmode].reload_store = CODE_FOR_reload_sf_di_store;
3401 reg_addr[SFmode].reload_load = CODE_FOR_reload_sf_di_load;
3403 if (FLOAT128_VECTOR_P (KFmode))
3405 reg_addr[KFmode].reload_store = CODE_FOR_reload_kf_di_store;
3406 reg_addr[KFmode].reload_load = CODE_FOR_reload_kf_di_load;
3409 if (FLOAT128_VECTOR_P (TFmode))
3411 reg_addr[TFmode].reload_store = CODE_FOR_reload_tf_di_store;
3412 reg_addr[TFmode].reload_load = CODE_FOR_reload_tf_di_load;
3415 /* Only provide a reload handler for SDmode if lfiwzx/stfiwx are
3416 available. */
3417 if (TARGET_NO_SDMODE_STACK)
3419 reg_addr[SDmode].reload_store = CODE_FOR_reload_sd_di_store;
3420 reg_addr[SDmode].reload_load = CODE_FOR_reload_sd_di_load;
3423 if (TARGET_VSX)
3425 reg_addr[TImode].reload_store = CODE_FOR_reload_ti_di_store;
3426 reg_addr[TImode].reload_load = CODE_FOR_reload_ti_di_load;
3429 if (TARGET_DIRECT_MOVE && !TARGET_DIRECT_MOVE_128)
3431 reg_addr[TImode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxti;
3432 reg_addr[V1TImode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxv1ti;
3433 reg_addr[V2DFmode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxv2df;
3434 reg_addr[V2DImode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxv2di;
3435 reg_addr[V4SFmode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxv4sf;
3436 reg_addr[V4SImode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxv4si;
3437 reg_addr[V8HImode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxv8hi;
3438 reg_addr[V16QImode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxv16qi;
3439 reg_addr[SFmode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxsf;
3441 reg_addr[TImode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprti;
3442 reg_addr[V1TImode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprv1ti;
3443 reg_addr[V2DFmode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprv2df;
3444 reg_addr[V2DImode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprv2di;
3445 reg_addr[V4SFmode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprv4sf;
3446 reg_addr[V4SImode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprv4si;
3447 reg_addr[V8HImode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprv8hi;
3448 reg_addr[V16QImode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprv16qi;
3449 reg_addr[SFmode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprsf;
3451 if (FLOAT128_VECTOR_P (KFmode))
3453 reg_addr[KFmode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxkf;
3454 reg_addr[KFmode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprkf;
3457 if (FLOAT128_VECTOR_P (TFmode))
3459 reg_addr[TFmode].reload_gpr_vsx = CODE_FOR_reload_gpr_from_vsxtf;
3460 reg_addr[TFmode].reload_vsx_gpr = CODE_FOR_reload_vsx_from_gprtf;
3464 else
3466 reg_addr[V16QImode].reload_store = CODE_FOR_reload_v16qi_si_store;
3467 reg_addr[V16QImode].reload_load = CODE_FOR_reload_v16qi_si_load;
3468 reg_addr[V8HImode].reload_store = CODE_FOR_reload_v8hi_si_store;
3469 reg_addr[V8HImode].reload_load = CODE_FOR_reload_v8hi_si_load;
3470 reg_addr[V4SImode].reload_store = CODE_FOR_reload_v4si_si_store;
3471 reg_addr[V4SImode].reload_load = CODE_FOR_reload_v4si_si_load;
3472 reg_addr[V2DImode].reload_store = CODE_FOR_reload_v2di_si_store;
3473 reg_addr[V2DImode].reload_load = CODE_FOR_reload_v2di_si_load;
3474 reg_addr[V1TImode].reload_store = CODE_FOR_reload_v1ti_si_store;
3475 reg_addr[V1TImode].reload_load = CODE_FOR_reload_v1ti_si_load;
3476 reg_addr[V4SFmode].reload_store = CODE_FOR_reload_v4sf_si_store;
3477 reg_addr[V4SFmode].reload_load = CODE_FOR_reload_v4sf_si_load;
3478 reg_addr[V2DFmode].reload_store = CODE_FOR_reload_v2df_si_store;
3479 reg_addr[V2DFmode].reload_load = CODE_FOR_reload_v2df_si_load;
3480 reg_addr[DFmode].reload_store = CODE_FOR_reload_df_si_store;
3481 reg_addr[DFmode].reload_load = CODE_FOR_reload_df_si_load;
3482 reg_addr[DDmode].reload_store = CODE_FOR_reload_dd_si_store;
3483 reg_addr[DDmode].reload_load = CODE_FOR_reload_dd_si_load;
3484 reg_addr[SFmode].reload_store = CODE_FOR_reload_sf_si_store;
3485 reg_addr[SFmode].reload_load = CODE_FOR_reload_sf_si_load;
3487 if (FLOAT128_VECTOR_P (KFmode))
3489 reg_addr[KFmode].reload_store = CODE_FOR_reload_kf_si_store;
3490 reg_addr[KFmode].reload_load = CODE_FOR_reload_kf_si_load;
3493 if (FLOAT128_IEEE_P (TFmode))
3495 reg_addr[TFmode].reload_store = CODE_FOR_reload_tf_si_store;
3496 reg_addr[TFmode].reload_load = CODE_FOR_reload_tf_si_load;
3499 /* Only provide a reload handler for SDmode if lfiwzx/stfiwx are
3500 available. */
3501 if (TARGET_NO_SDMODE_STACK)
3503 reg_addr[SDmode].reload_store = CODE_FOR_reload_sd_si_store;
3504 reg_addr[SDmode].reload_load = CODE_FOR_reload_sd_si_load;
3507 if (TARGET_VSX)
3509 reg_addr[TImode].reload_store = CODE_FOR_reload_ti_si_store;
3510 reg_addr[TImode].reload_load = CODE_FOR_reload_ti_si_load;
3513 if (TARGET_DIRECT_MOVE)
3515 reg_addr[DImode].reload_fpr_gpr = CODE_FOR_reload_fpr_from_gprdi;
3516 reg_addr[DDmode].reload_fpr_gpr = CODE_FOR_reload_fpr_from_gprdd;
3517 reg_addr[DFmode].reload_fpr_gpr = CODE_FOR_reload_fpr_from_gprdf;
3521 reg_addr[DFmode].scalar_in_vmx_p = true;
3522 reg_addr[DImode].scalar_in_vmx_p = true;
3524 if (TARGET_P8_VECTOR)
3526 reg_addr[SFmode].scalar_in_vmx_p = true;
3527 reg_addr[SImode].scalar_in_vmx_p = true;
3529 if (TARGET_P9_VECTOR)
3531 reg_addr[HImode].scalar_in_vmx_p = true;
3532 reg_addr[QImode].scalar_in_vmx_p = true;
3537 /* Setup the fusion operations. */
3538 if (TARGET_P8_FUSION)
3540 reg_addr[QImode].fusion_gpr_ld = CODE_FOR_fusion_gpr_load_qi;
3541 reg_addr[HImode].fusion_gpr_ld = CODE_FOR_fusion_gpr_load_hi;
3542 reg_addr[SImode].fusion_gpr_ld = CODE_FOR_fusion_gpr_load_si;
3543 if (TARGET_64BIT)
3544 reg_addr[DImode].fusion_gpr_ld = CODE_FOR_fusion_gpr_load_di;
3547 if (TARGET_P9_FUSION)
3549 struct fuse_insns {
3550 enum machine_mode mode; /* mode of the fused type. */
3551 enum machine_mode pmode; /* pointer mode. */
3552 enum rs6000_reload_reg_type rtype; /* register type. */
3553 enum insn_code load; /* load insn. */
3554 enum insn_code store; /* store insn. */
3557 static const struct fuse_insns addis_insns[] = {
3558 { E_SFmode, E_DImode, RELOAD_REG_FPR,
3559 CODE_FOR_fusion_vsx_di_sf_load,
3560 CODE_FOR_fusion_vsx_di_sf_store },
3562 { E_SFmode, E_SImode, RELOAD_REG_FPR,
3563 CODE_FOR_fusion_vsx_si_sf_load,
3564 CODE_FOR_fusion_vsx_si_sf_store },
3566 { E_DFmode, E_DImode, RELOAD_REG_FPR,
3567 CODE_FOR_fusion_vsx_di_df_load,
3568 CODE_FOR_fusion_vsx_di_df_store },
3570 { E_DFmode, E_SImode, RELOAD_REG_FPR,
3571 CODE_FOR_fusion_vsx_si_df_load,
3572 CODE_FOR_fusion_vsx_si_df_store },
3574 { E_DImode, E_DImode, RELOAD_REG_FPR,
3575 CODE_FOR_fusion_vsx_di_di_load,
3576 CODE_FOR_fusion_vsx_di_di_store },
3578 { E_DImode, E_SImode, RELOAD_REG_FPR,
3579 CODE_FOR_fusion_vsx_si_di_load,
3580 CODE_FOR_fusion_vsx_si_di_store },
3582 { E_QImode, E_DImode, RELOAD_REG_GPR,
3583 CODE_FOR_fusion_gpr_di_qi_load,
3584 CODE_FOR_fusion_gpr_di_qi_store },
3586 { E_QImode, E_SImode, RELOAD_REG_GPR,
3587 CODE_FOR_fusion_gpr_si_qi_load,
3588 CODE_FOR_fusion_gpr_si_qi_store },
3590 { E_HImode, E_DImode, RELOAD_REG_GPR,
3591 CODE_FOR_fusion_gpr_di_hi_load,
3592 CODE_FOR_fusion_gpr_di_hi_store },
3594 { E_HImode, E_SImode, RELOAD_REG_GPR,
3595 CODE_FOR_fusion_gpr_si_hi_load,
3596 CODE_FOR_fusion_gpr_si_hi_store },
3598 { E_SImode, E_DImode, RELOAD_REG_GPR,
3599 CODE_FOR_fusion_gpr_di_si_load,
3600 CODE_FOR_fusion_gpr_di_si_store },
3602 { E_SImode, E_SImode, RELOAD_REG_GPR,
3603 CODE_FOR_fusion_gpr_si_si_load,
3604 CODE_FOR_fusion_gpr_si_si_store },
3606 { E_SFmode, E_DImode, RELOAD_REG_GPR,
3607 CODE_FOR_fusion_gpr_di_sf_load,
3608 CODE_FOR_fusion_gpr_di_sf_store },
3610 { E_SFmode, E_SImode, RELOAD_REG_GPR,
3611 CODE_FOR_fusion_gpr_si_sf_load,
3612 CODE_FOR_fusion_gpr_si_sf_store },
3614 { E_DImode, E_DImode, RELOAD_REG_GPR,
3615 CODE_FOR_fusion_gpr_di_di_load,
3616 CODE_FOR_fusion_gpr_di_di_store },
3618 { E_DFmode, E_DImode, RELOAD_REG_GPR,
3619 CODE_FOR_fusion_gpr_di_df_load,
3620 CODE_FOR_fusion_gpr_di_df_store },
3623 machine_mode cur_pmode = Pmode;
3624 size_t i;
3626 for (i = 0; i < ARRAY_SIZE (addis_insns); i++)
3628 machine_mode xmode = addis_insns[i].mode;
3629 enum rs6000_reload_reg_type rtype = addis_insns[i].rtype;
3631 if (addis_insns[i].pmode != cur_pmode)
3632 continue;
3634 if (rtype == RELOAD_REG_FPR && !TARGET_HARD_FLOAT)
3635 continue;
3637 reg_addr[xmode].fusion_addis_ld[rtype] = addis_insns[i].load;
3638 reg_addr[xmode].fusion_addis_st[rtype] = addis_insns[i].store;
3640 if (rtype == RELOAD_REG_FPR && TARGET_P9_VECTOR)
3642 reg_addr[xmode].fusion_addis_ld[RELOAD_REG_VMX]
3643 = addis_insns[i].load;
3644 reg_addr[xmode].fusion_addis_st[RELOAD_REG_VMX]
3645 = addis_insns[i].store;
3650 /* Note which types we support fusing TOC setup plus memory insn. We only do
3651 fused TOCs for medium/large code models. */
3652 if (TARGET_P8_FUSION && TARGET_TOC_FUSION && TARGET_POWERPC64
3653 && (TARGET_CMODEL != CMODEL_SMALL))
3655 reg_addr[QImode].fused_toc = true;
3656 reg_addr[HImode].fused_toc = true;
3657 reg_addr[SImode].fused_toc = true;
3658 reg_addr[DImode].fused_toc = true;
3659 if (TARGET_HARD_FLOAT)
3661 if (TARGET_SINGLE_FLOAT)
3662 reg_addr[SFmode].fused_toc = true;
3663 if (TARGET_DOUBLE_FLOAT)
3664 reg_addr[DFmode].fused_toc = true;
3668 /* Precalculate HARD_REGNO_NREGS. */
3669 for (r = 0; r < FIRST_PSEUDO_REGISTER; ++r)
3670 for (m = 0; m < NUM_MACHINE_MODES; ++m)
3671 rs6000_hard_regno_nregs[m][r]
3672 = rs6000_hard_regno_nregs_internal (r, (machine_mode)m);
3674 /* Precalculate TARGET_HARD_REGNO_MODE_OK. */
3675 for (r = 0; r < FIRST_PSEUDO_REGISTER; ++r)
3676 for (m = 0; m < NUM_MACHINE_MODES; ++m)
3677 if (rs6000_hard_regno_mode_ok_uncached (r, (machine_mode)m))
3678 rs6000_hard_regno_mode_ok_p[m][r] = true;
3680 /* Precalculate CLASS_MAX_NREGS sizes. */
3681 for (c = 0; c < LIM_REG_CLASSES; ++c)
3683 int reg_size;
3685 if (TARGET_VSX && VSX_REG_CLASS_P (c))
3686 reg_size = UNITS_PER_VSX_WORD;
3688 else if (c == ALTIVEC_REGS)
3689 reg_size = UNITS_PER_ALTIVEC_WORD;
3691 else if (c == FLOAT_REGS)
3692 reg_size = UNITS_PER_FP_WORD;
3694 else
3695 reg_size = UNITS_PER_WORD;
3697 for (m = 0; m < NUM_MACHINE_MODES; ++m)
3699 machine_mode m2 = (machine_mode)m;
3700 int reg_size2 = reg_size;
3702 /* TDmode & IBM 128-bit floating point always takes 2 registers, even
3703 in VSX. */
3704 if (TARGET_VSX && VSX_REG_CLASS_P (c) && FLOAT128_2REG_P (m))
3705 reg_size2 = UNITS_PER_FP_WORD;
3707 rs6000_class_max_nregs[m][c]
3708 = (GET_MODE_SIZE (m2) + reg_size2 - 1) / reg_size2;
3712 /* Calculate which modes to automatically generate code to use a the
3713 reciprocal divide and square root instructions. In the future, possibly
3714 automatically generate the instructions even if the user did not specify
3715 -mrecip. The older machines double precision reciprocal sqrt estimate is
3716 not accurate enough. */
3717 memset (rs6000_recip_bits, 0, sizeof (rs6000_recip_bits));
3718 if (TARGET_FRES)
3719 rs6000_recip_bits[SFmode] = RS6000_RECIP_MASK_HAVE_RE;
3720 if (TARGET_FRE)
3721 rs6000_recip_bits[DFmode] = RS6000_RECIP_MASK_HAVE_RE;
3722 if (VECTOR_UNIT_ALTIVEC_OR_VSX_P (V4SFmode))
3723 rs6000_recip_bits[V4SFmode] = RS6000_RECIP_MASK_HAVE_RE;
3724 if (VECTOR_UNIT_VSX_P (V2DFmode))
3725 rs6000_recip_bits[V2DFmode] = RS6000_RECIP_MASK_HAVE_RE;
3727 if (TARGET_FRSQRTES)
3728 rs6000_recip_bits[SFmode] |= RS6000_RECIP_MASK_HAVE_RSQRTE;
3729 if (TARGET_FRSQRTE)
3730 rs6000_recip_bits[DFmode] |= RS6000_RECIP_MASK_HAVE_RSQRTE;
3731 if (VECTOR_UNIT_ALTIVEC_OR_VSX_P (V4SFmode))
3732 rs6000_recip_bits[V4SFmode] |= RS6000_RECIP_MASK_HAVE_RSQRTE;
3733 if (VECTOR_UNIT_VSX_P (V2DFmode))
3734 rs6000_recip_bits[V2DFmode] |= RS6000_RECIP_MASK_HAVE_RSQRTE;
3736 if (rs6000_recip_control)
3738 if (!flag_finite_math_only)
3739 warning (0, "%qs requires %qs or %qs", "-mrecip", "-ffinite-math",
3740 "-ffast-math");
3741 if (flag_trapping_math)
3742 warning (0, "%qs requires %qs or %qs", "-mrecip",
3743 "-fno-trapping-math", "-ffast-math");
3744 if (!flag_reciprocal_math)
3745 warning (0, "%qs requires %qs or %qs", "-mrecip", "-freciprocal-math",
3746 "-ffast-math");
3747 if (flag_finite_math_only && !flag_trapping_math && flag_reciprocal_math)
3749 if (RS6000_RECIP_HAVE_RE_P (SFmode)
3750 && (rs6000_recip_control & RECIP_SF_DIV) != 0)
3751 rs6000_recip_bits[SFmode] |= RS6000_RECIP_MASK_AUTO_RE;
3753 if (RS6000_RECIP_HAVE_RE_P (DFmode)
3754 && (rs6000_recip_control & RECIP_DF_DIV) != 0)
3755 rs6000_recip_bits[DFmode] |= RS6000_RECIP_MASK_AUTO_RE;
3757 if (RS6000_RECIP_HAVE_RE_P (V4SFmode)
3758 && (rs6000_recip_control & RECIP_V4SF_DIV) != 0)
3759 rs6000_recip_bits[V4SFmode] |= RS6000_RECIP_MASK_AUTO_RE;
3761 if (RS6000_RECIP_HAVE_RE_P (V2DFmode)
3762 && (rs6000_recip_control & RECIP_V2DF_DIV) != 0)
3763 rs6000_recip_bits[V2DFmode] |= RS6000_RECIP_MASK_AUTO_RE;
3765 if (RS6000_RECIP_HAVE_RSQRTE_P (SFmode)
3766 && (rs6000_recip_control & RECIP_SF_RSQRT) != 0)
3767 rs6000_recip_bits[SFmode] |= RS6000_RECIP_MASK_AUTO_RSQRTE;
3769 if (RS6000_RECIP_HAVE_RSQRTE_P (DFmode)
3770 && (rs6000_recip_control & RECIP_DF_RSQRT) != 0)
3771 rs6000_recip_bits[DFmode] |= RS6000_RECIP_MASK_AUTO_RSQRTE;
3773 if (RS6000_RECIP_HAVE_RSQRTE_P (V4SFmode)
3774 && (rs6000_recip_control & RECIP_V4SF_RSQRT) != 0)
3775 rs6000_recip_bits[V4SFmode] |= RS6000_RECIP_MASK_AUTO_RSQRTE;
3777 if (RS6000_RECIP_HAVE_RSQRTE_P (V2DFmode)
3778 && (rs6000_recip_control & RECIP_V2DF_RSQRT) != 0)
3779 rs6000_recip_bits[V2DFmode] |= RS6000_RECIP_MASK_AUTO_RSQRTE;
3783 /* Update the addr mask bits in reg_addr to help secondary reload and go if
3784 legitimate address support to figure out the appropriate addressing to
3785 use. */
3786 rs6000_setup_reg_addr_masks ();
3788 if (global_init_p || TARGET_DEBUG_TARGET)
3790 if (TARGET_DEBUG_REG)
3791 rs6000_debug_reg_global ();
3793 if (TARGET_DEBUG_COST || TARGET_DEBUG_REG)
3794 fprintf (stderr,
3795 "SImode variable mult cost = %d\n"
3796 "SImode constant mult cost = %d\n"
3797 "SImode short constant mult cost = %d\n"
3798 "DImode multipliciation cost = %d\n"
3799 "SImode division cost = %d\n"
3800 "DImode division cost = %d\n"
3801 "Simple fp operation cost = %d\n"
3802 "DFmode multiplication cost = %d\n"
3803 "SFmode division cost = %d\n"
3804 "DFmode division cost = %d\n"
3805 "cache line size = %d\n"
3806 "l1 cache size = %d\n"
3807 "l2 cache size = %d\n"
3808 "simultaneous prefetches = %d\n"
3809 "\n",
3810 rs6000_cost->mulsi,
3811 rs6000_cost->mulsi_const,
3812 rs6000_cost->mulsi_const9,
3813 rs6000_cost->muldi,
3814 rs6000_cost->divsi,
3815 rs6000_cost->divdi,
3816 rs6000_cost->fp,
3817 rs6000_cost->dmul,
3818 rs6000_cost->sdiv,
3819 rs6000_cost->ddiv,
3820 rs6000_cost->cache_line_size,
3821 rs6000_cost->l1_cache_size,
3822 rs6000_cost->l2_cache_size,
3823 rs6000_cost->simultaneous_prefetches);
3827 #if TARGET_MACHO
3828 /* The Darwin version of SUBTARGET_OVERRIDE_OPTIONS. */
3830 static void
3831 darwin_rs6000_override_options (void)
3833 /* The Darwin ABI always includes AltiVec, can't be (validly) turned
3834 off. */
3835 rs6000_altivec_abi = 1;
3836 TARGET_ALTIVEC_VRSAVE = 1;
3837 rs6000_current_abi = ABI_DARWIN;
3839 if (DEFAULT_ABI == ABI_DARWIN
3840 && TARGET_64BIT)
3841 darwin_one_byte_bool = 1;
3843 if (TARGET_64BIT && ! TARGET_POWERPC64)
3845 rs6000_isa_flags |= OPTION_MASK_POWERPC64;
3846 warning (0, "%qs requires PowerPC64 architecture, enabling", "-m64");
3848 if (flag_mkernel)
3850 rs6000_default_long_calls = 1;
3851 rs6000_isa_flags |= OPTION_MASK_SOFT_FLOAT;
3854 /* Make -m64 imply -maltivec. Darwin's 64-bit ABI includes
3855 Altivec. */
3856 if (!flag_mkernel && !flag_apple_kext
3857 && TARGET_64BIT
3858 && ! (rs6000_isa_flags_explicit & OPTION_MASK_ALTIVEC))
3859 rs6000_isa_flags |= OPTION_MASK_ALTIVEC;
3861 /* Unless the user (not the configurer) has explicitly overridden
3862 it with -mcpu=G3 or -mno-altivec, then 10.5+ targets default to
3863 G4 unless targeting the kernel. */
3864 if (!flag_mkernel
3865 && !flag_apple_kext
3866 && strverscmp (darwin_macosx_version_min, "10.5") >= 0
3867 && ! (rs6000_isa_flags_explicit & OPTION_MASK_ALTIVEC)
3868 && ! global_options_set.x_rs6000_cpu_index)
3870 rs6000_isa_flags |= OPTION_MASK_ALTIVEC;
3873 #endif
3875 /* If not otherwise specified by a target, make 'long double' equivalent to
3876 'double'. */
3878 #ifndef RS6000_DEFAULT_LONG_DOUBLE_SIZE
3879 #define RS6000_DEFAULT_LONG_DOUBLE_SIZE 64
3880 #endif
3882 /* Return the builtin mask of the various options used that could affect which
3883 builtins were used. In the past we used target_flags, but we've run out of
3884 bits, and some options like PAIRED are no longer in target_flags. */
3886 HOST_WIDE_INT
3887 rs6000_builtin_mask_calculate (void)
3889 return (((TARGET_ALTIVEC) ? RS6000_BTM_ALTIVEC : 0)
3890 | ((TARGET_CMPB) ? RS6000_BTM_CMPB : 0)
3891 | ((TARGET_VSX) ? RS6000_BTM_VSX : 0)
3892 | ((TARGET_PAIRED_FLOAT) ? RS6000_BTM_PAIRED : 0)
3893 | ((TARGET_FRE) ? RS6000_BTM_FRE : 0)
3894 | ((TARGET_FRES) ? RS6000_BTM_FRES : 0)
3895 | ((TARGET_FRSQRTE) ? RS6000_BTM_FRSQRTE : 0)
3896 | ((TARGET_FRSQRTES) ? RS6000_BTM_FRSQRTES : 0)
3897 | ((TARGET_POPCNTD) ? RS6000_BTM_POPCNTD : 0)
3898 | ((rs6000_cpu == PROCESSOR_CELL) ? RS6000_BTM_CELL : 0)
3899 | ((TARGET_P8_VECTOR) ? RS6000_BTM_P8_VECTOR : 0)
3900 | ((TARGET_P9_VECTOR) ? RS6000_BTM_P9_VECTOR : 0)
3901 | ((TARGET_P9_MISC) ? RS6000_BTM_P9_MISC : 0)
3902 | ((TARGET_MODULO) ? RS6000_BTM_MODULO : 0)
3903 | ((TARGET_64BIT) ? RS6000_BTM_64BIT : 0)
3904 | ((TARGET_CRYPTO) ? RS6000_BTM_CRYPTO : 0)
3905 | ((TARGET_HTM) ? RS6000_BTM_HTM : 0)
3906 | ((TARGET_DFP) ? RS6000_BTM_DFP : 0)
3907 | ((TARGET_HARD_FLOAT) ? RS6000_BTM_HARD_FLOAT : 0)
3908 | ((TARGET_LONG_DOUBLE_128) ? RS6000_BTM_LDBL128 : 0)
3909 | ((TARGET_FLOAT128_TYPE) ? RS6000_BTM_FLOAT128 : 0)
3910 | ((TARGET_FLOAT128_HW) ? RS6000_BTM_FLOAT128_HW : 0));
3913 /* Implement TARGET_MD_ASM_ADJUST. All asm statements are considered
3914 to clobber the XER[CA] bit because clobbering that bit without telling
3915 the compiler worked just fine with versions of GCC before GCC 5, and
3916 breaking a lot of older code in ways that are hard to track down is
3917 not such a great idea. */
3919 static rtx_insn *
3920 rs6000_md_asm_adjust (vec<rtx> &/*outputs*/, vec<rtx> &/*inputs*/,
3921 vec<const char *> &/*constraints*/,
3922 vec<rtx> &clobbers, HARD_REG_SET &clobbered_regs)
3924 clobbers.safe_push (gen_rtx_REG (SImode, CA_REGNO));
3925 SET_HARD_REG_BIT (clobbered_regs, CA_REGNO);
3926 return NULL;
3929 /* Override command line options.
3931 Combine build-specific configuration information with options
3932 specified on the command line to set various state variables which
3933 influence code generation, optimization, and expansion of built-in
3934 functions. Assure that command-line configuration preferences are
3935 compatible with each other and with the build configuration; issue
3936 warnings while adjusting configuration or error messages while
3937 rejecting configuration.
3939 Upon entry to this function:
3941 This function is called once at the beginning of
3942 compilation, and then again at the start and end of compiling
3943 each section of code that has a different configuration, as
3944 indicated, for example, by adding the
3946 __attribute__((__target__("cpu=power9")))
3948 qualifier to a function definition or, for example, by bracketing
3949 code between
3951 #pragma GCC target("altivec")
3955 #pragma GCC reset_options
3957 directives. Parameter global_init_p is true for the initial
3958 invocation, which initializes global variables, and false for all
3959 subsequent invocations.
3962 Various global state information is assumed to be valid. This
3963 includes OPTION_TARGET_CPU_DEFAULT, representing the name of the
3964 default CPU specified at build configure time, TARGET_DEFAULT,
3965 representing the default set of option flags for the default
3966 target, and global_options_set.x_rs6000_isa_flags, representing
3967 which options were requested on the command line.
3969 Upon return from this function:
3971 rs6000_isa_flags_explicit has a non-zero bit for each flag that
3972 was set by name on the command line. Additionally, if certain
3973 attributes are automatically enabled or disabled by this function
3974 in order to assure compatibility between options and
3975 configuration, the flags associated with those attributes are
3976 also set. By setting these "explicit bits", we avoid the risk
3977 that other code might accidentally overwrite these particular
3978 attributes with "default values".
3980 The various bits of rs6000_isa_flags are set to indicate the
3981 target options that have been selected for the most current
3982 compilation efforts. This has the effect of also turning on the
3983 associated TARGET_XXX values since these are macros which are
3984 generally defined to test the corresponding bit of the
3985 rs6000_isa_flags variable.
3987 The variable rs6000_builtin_mask is set to represent the target
3988 options for the most current compilation efforts, consistent with
3989 the current contents of rs6000_isa_flags. This variable controls
3990 expansion of built-in functions.
3992 Various other global variables and fields of global structures
3993 (over 50 in all) are initialized to reflect the desired options
3994 for the most current compilation efforts. */
3996 static bool
3997 rs6000_option_override_internal (bool global_init_p)
3999 bool ret = true;
4001 HOST_WIDE_INT set_masks;
4002 HOST_WIDE_INT ignore_masks;
4003 int cpu_index = -1;
4004 int tune_index;
4005 struct cl_target_option *main_target_opt
4006 = ((global_init_p || target_option_default_node == NULL)
4007 ? NULL : TREE_TARGET_OPTION (target_option_default_node));
4009 /* Print defaults. */
4010 if ((TARGET_DEBUG_REG || TARGET_DEBUG_TARGET) && global_init_p)
4011 rs6000_print_isa_options (stderr, 0, "TARGET_DEFAULT", TARGET_DEFAULT);
4013 /* Remember the explicit arguments. */
4014 if (global_init_p)
4015 rs6000_isa_flags_explicit = global_options_set.x_rs6000_isa_flags;
4017 /* On 64-bit Darwin, power alignment is ABI-incompatible with some C
4018 library functions, so warn about it. The flag may be useful for
4019 performance studies from time to time though, so don't disable it
4020 entirely. */
4021 if (global_options_set.x_rs6000_alignment_flags
4022 && rs6000_alignment_flags == MASK_ALIGN_POWER
4023 && DEFAULT_ABI == ABI_DARWIN
4024 && TARGET_64BIT)
4025 warning (0, "%qs is not supported for 64-bit Darwin;"
4026 " it is incompatible with the installed C and C++ libraries",
4027 "-malign-power");
4029 /* Numerous experiment shows that IRA based loop pressure
4030 calculation works better for RTL loop invariant motion on targets
4031 with enough (>= 32) registers. It is an expensive optimization.
4032 So it is on only for peak performance. */
4033 if (optimize >= 3 && global_init_p
4034 && !global_options_set.x_flag_ira_loop_pressure)
4035 flag_ira_loop_pressure = 1;
4037 /* -fsanitize=address needs to turn on -fasynchronous-unwind-tables in order
4038 for tracebacks to be complete but not if any -fasynchronous-unwind-tables
4039 options were already specified. */
4040 if (flag_sanitize & SANITIZE_USER_ADDRESS
4041 && !global_options_set.x_flag_asynchronous_unwind_tables)
4042 flag_asynchronous_unwind_tables = 1;
4044 /* Set the pointer size. */
4045 if (TARGET_64BIT)
4047 rs6000_pmode = DImode;
4048 rs6000_pointer_size = 64;
4050 else
4052 rs6000_pmode = SImode;
4053 rs6000_pointer_size = 32;
4056 /* Some OSs don't support saving the high part of 64-bit registers on context
4057 switch. Other OSs don't support saving Altivec registers. On those OSs,
4058 we don't touch the OPTION_MASK_POWERPC64 or OPTION_MASK_ALTIVEC settings;
4059 if the user wants either, the user must explicitly specify them and we
4060 won't interfere with the user's specification. */
4062 set_masks = POWERPC_MASKS;
4063 #ifdef OS_MISSING_POWERPC64
4064 if (OS_MISSING_POWERPC64)
4065 set_masks &= ~OPTION_MASK_POWERPC64;
4066 #endif
4067 #ifdef OS_MISSING_ALTIVEC
4068 if (OS_MISSING_ALTIVEC)
4069 set_masks &= ~(OPTION_MASK_ALTIVEC | OPTION_MASK_VSX
4070 | OTHER_VSX_VECTOR_MASKS);
4071 #endif
4073 /* Don't override by the processor default if given explicitly. */
4074 set_masks &= ~rs6000_isa_flags_explicit;
4076 /* Process the -mcpu=<xxx> and -mtune=<xxx> argument. If the user changed
4077 the cpu in a target attribute or pragma, but did not specify a tuning
4078 option, use the cpu for the tuning option rather than the option specified
4079 with -mtune on the command line. Process a '--with-cpu' configuration
4080 request as an implicit --cpu. */
4081 if (rs6000_cpu_index >= 0)
4082 cpu_index = rs6000_cpu_index;
4083 else if (main_target_opt != NULL && main_target_opt->x_rs6000_cpu_index >= 0)
4084 cpu_index = main_target_opt->x_rs6000_cpu_index;
4085 else if (OPTION_TARGET_CPU_DEFAULT)
4086 cpu_index = rs6000_cpu_name_lookup (OPTION_TARGET_CPU_DEFAULT);
4088 if (cpu_index >= 0)
4090 const char *unavailable_cpu = NULL;
4091 switch (processor_target_table[cpu_index].processor)
4093 #ifndef HAVE_AS_POWER9
4094 case PROCESSOR_POWER9:
4095 unavailable_cpu = "power9";
4096 break;
4097 #endif
4098 #ifndef HAVE_AS_POWER8
4099 case PROCESSOR_POWER8:
4100 unavailable_cpu = "power8";
4101 break;
4102 #endif
4103 #ifndef HAVE_AS_POPCNTD
4104 case PROCESSOR_POWER7:
4105 unavailable_cpu = "power7";
4106 break;
4107 #endif
4108 #ifndef HAVE_AS_DFP
4109 case PROCESSOR_POWER6:
4110 unavailable_cpu = "power6";
4111 break;
4112 #endif
4113 #ifndef HAVE_AS_POPCNTB
4114 case PROCESSOR_POWER5:
4115 unavailable_cpu = "power5";
4116 break;
4117 #endif
4118 default:
4119 break;
4121 if (unavailable_cpu)
4123 cpu_index = -1;
4124 warning (0, "will not generate %qs instructions because "
4125 "assembler lacks %qs support", unavailable_cpu,
4126 unavailable_cpu);
4130 /* If we have a cpu, either through an explicit -mcpu=<xxx> or if the
4131 compiler was configured with --with-cpu=<xxx>, replace all of the ISA bits
4132 with those from the cpu, except for options that were explicitly set. If
4133 we don't have a cpu, do not override the target bits set in
4134 TARGET_DEFAULT. */
4135 if (cpu_index >= 0)
4137 rs6000_cpu_index = cpu_index;
4138 rs6000_isa_flags &= ~set_masks;
4139 rs6000_isa_flags |= (processor_target_table[cpu_index].target_enable
4140 & set_masks);
4142 else
4144 /* If no -mcpu=<xxx>, inherit any default options that were cleared via
4145 POWERPC_MASKS. Originally, TARGET_DEFAULT was used to initialize
4146 target_flags via the TARGET_DEFAULT_TARGET_FLAGS hook. When we switched
4147 to using rs6000_isa_flags, we need to do the initialization here.
4149 If there is a TARGET_DEFAULT, use that. Otherwise fall back to using
4150 -mcpu=powerpc, -mcpu=powerpc64, or -mcpu=powerpc64le defaults. */
4151 HOST_WIDE_INT flags;
4152 if (TARGET_DEFAULT)
4153 flags = TARGET_DEFAULT;
4154 else
4156 /* PowerPC 64-bit LE requires at least ISA 2.07. */
4157 const char *default_cpu = (!TARGET_POWERPC64
4158 ? "powerpc"
4159 : (BYTES_BIG_ENDIAN
4160 ? "powerpc64"
4161 : "powerpc64le"));
4162 int default_cpu_index = rs6000_cpu_name_lookup (default_cpu);
4163 flags = processor_target_table[default_cpu_index].target_enable;
4165 rs6000_isa_flags |= (flags & ~rs6000_isa_flags_explicit);
4168 if (rs6000_tune_index >= 0)
4169 tune_index = rs6000_tune_index;
4170 else if (cpu_index >= 0)
4171 rs6000_tune_index = tune_index = cpu_index;
4172 else
4174 size_t i;
4175 enum processor_type tune_proc
4176 = (TARGET_POWERPC64 ? PROCESSOR_DEFAULT64 : PROCESSOR_DEFAULT);
4178 tune_index = -1;
4179 for (i = 0; i < ARRAY_SIZE (processor_target_table); i++)
4180 if (processor_target_table[i].processor == tune_proc)
4182 tune_index = i;
4183 break;
4187 gcc_assert (tune_index >= 0);
4188 rs6000_cpu = processor_target_table[tune_index].processor;
4190 if (rs6000_cpu == PROCESSOR_PPCE300C2 || rs6000_cpu == PROCESSOR_PPCE300C3
4191 || rs6000_cpu == PROCESSOR_PPCE500MC || rs6000_cpu == PROCESSOR_PPCE500MC64
4192 || rs6000_cpu == PROCESSOR_PPCE5500)
4194 if (TARGET_ALTIVEC)
4195 error ("AltiVec not supported in this target");
4198 /* If we are optimizing big endian systems for space, use the load/store
4199 multiple and string instructions. */
4200 if (BYTES_BIG_ENDIAN && optimize_size)
4201 rs6000_isa_flags |= ~rs6000_isa_flags_explicit & (OPTION_MASK_MULTIPLE
4202 | OPTION_MASK_STRING);
4204 /* Don't allow -mmultiple or -mstring on little endian systems
4205 unless the cpu is a 750, because the hardware doesn't support the
4206 instructions used in little endian mode, and causes an alignment
4207 trap. The 750 does not cause an alignment trap (except when the
4208 target is unaligned). */
4210 if (!BYTES_BIG_ENDIAN && rs6000_cpu != PROCESSOR_PPC750)
4212 if (TARGET_MULTIPLE)
4214 rs6000_isa_flags &= ~OPTION_MASK_MULTIPLE;
4215 if ((rs6000_isa_flags_explicit & OPTION_MASK_MULTIPLE) != 0)
4216 warning (0, "%qs is not supported on little endian systems",
4217 "-mmultiple");
4220 if (TARGET_STRING)
4222 rs6000_isa_flags &= ~OPTION_MASK_STRING;
4223 if ((rs6000_isa_flags_explicit & OPTION_MASK_STRING) != 0)
4224 warning (0, "%qs is not supported on little endian systems",
4225 "-mstring");
4229 /* If little-endian, default to -mstrict-align on older processors.
4230 Testing for htm matches power8 and later. */
4231 if (!BYTES_BIG_ENDIAN
4232 && !(processor_target_table[tune_index].target_enable & OPTION_MASK_HTM))
4233 rs6000_isa_flags |= ~rs6000_isa_flags_explicit & OPTION_MASK_STRICT_ALIGN;
4235 /* -maltivec={le,be} implies -maltivec. */
4236 if (rs6000_altivec_element_order != 0)
4237 rs6000_isa_flags |= OPTION_MASK_ALTIVEC;
4239 /* Disallow -maltivec=le in big endian mode for now. This is not
4240 known to be useful for anyone. */
4241 if (BYTES_BIG_ENDIAN && rs6000_altivec_element_order == 1)
4243 warning (0, N_("-maltivec=le not allowed for big-endian targets"));
4244 rs6000_altivec_element_order = 0;
4247 if (!rs6000_fold_gimple)
4248 fprintf (stderr,
4249 "gimple folding of rs6000 builtins has been disabled.\n");
4251 /* Add some warnings for VSX. */
4252 if (TARGET_VSX)
4254 const char *msg = NULL;
4255 if (!TARGET_HARD_FLOAT || !TARGET_SINGLE_FLOAT || !TARGET_DOUBLE_FLOAT)
4257 if (rs6000_isa_flags_explicit & OPTION_MASK_VSX)
4258 msg = N_("-mvsx requires hardware floating point");
4259 else
4261 rs6000_isa_flags &= ~ OPTION_MASK_VSX;
4262 rs6000_isa_flags_explicit |= OPTION_MASK_VSX;
4265 else if (TARGET_PAIRED_FLOAT)
4266 msg = N_("-mvsx and -mpaired are incompatible");
4267 else if (TARGET_AVOID_XFORM > 0)
4268 msg = N_("-mvsx needs indexed addressing");
4269 else if (!TARGET_ALTIVEC && (rs6000_isa_flags_explicit
4270 & OPTION_MASK_ALTIVEC))
4272 if (rs6000_isa_flags_explicit & OPTION_MASK_VSX)
4273 msg = N_("-mvsx and -mno-altivec are incompatible");
4274 else
4275 msg = N_("-mno-altivec disables vsx");
4278 if (msg)
4280 warning (0, msg);
4281 rs6000_isa_flags &= ~ OPTION_MASK_VSX;
4282 rs6000_isa_flags_explicit |= OPTION_MASK_VSX;
4286 /* If hard-float/altivec/vsx were explicitly turned off then don't allow
4287 the -mcpu setting to enable options that conflict. */
4288 if ((!TARGET_HARD_FLOAT || !TARGET_ALTIVEC || !TARGET_VSX)
4289 && (rs6000_isa_flags_explicit & (OPTION_MASK_SOFT_FLOAT
4290 | OPTION_MASK_ALTIVEC
4291 | OPTION_MASK_VSX)) != 0)
4292 rs6000_isa_flags &= ~((OPTION_MASK_P8_VECTOR | OPTION_MASK_CRYPTO
4293 | OPTION_MASK_DIRECT_MOVE)
4294 & ~rs6000_isa_flags_explicit);
4296 if (TARGET_DEBUG_REG || TARGET_DEBUG_TARGET)
4297 rs6000_print_isa_options (stderr, 0, "before defaults", rs6000_isa_flags);
4299 /* Handle explicit -mno-{altivec,vsx,power8-vector,power9-vector} and turn
4300 off all of the options that depend on those flags. */
4301 ignore_masks = rs6000_disable_incompatible_switches ();
4303 /* For the newer switches (vsx, dfp, etc.) set some of the older options,
4304 unless the user explicitly used the -mno-<option> to disable the code. */
4305 if (TARGET_P9_VECTOR || TARGET_MODULO || TARGET_P9_MISC)
4306 rs6000_isa_flags |= (ISA_3_0_MASKS_SERVER & ~ignore_masks);
4307 else if (TARGET_P9_MINMAX)
4309 if (cpu_index >= 0)
4311 if (cpu_index == PROCESSOR_POWER9)
4313 /* legacy behavior: allow -mcpu=power9 with certain
4314 capabilities explicitly disabled. */
4315 rs6000_isa_flags |= (ISA_3_0_MASKS_SERVER & ~ignore_masks);
4317 else
4318 error ("power9 target option is incompatible with %<%s=<xxx>%> "
4319 "for <xxx> less than power9", "-mcpu");
4321 else if ((ISA_3_0_MASKS_SERVER & rs6000_isa_flags_explicit)
4322 != (ISA_3_0_MASKS_SERVER & rs6000_isa_flags
4323 & rs6000_isa_flags_explicit))
4324 /* Enforce that none of the ISA_3_0_MASKS_SERVER flags
4325 were explicitly cleared. */
4326 error ("%qs incompatible with explicitly disabled options",
4327 "-mpower9-minmax");
4328 else
4329 rs6000_isa_flags |= ISA_3_0_MASKS_SERVER;
4331 else if (TARGET_P8_VECTOR || TARGET_DIRECT_MOVE || TARGET_CRYPTO)
4332 rs6000_isa_flags |= (ISA_2_7_MASKS_SERVER & ~ignore_masks);
4333 else if (TARGET_VSX)
4334 rs6000_isa_flags |= (ISA_2_6_MASKS_SERVER & ~ignore_masks);
4335 else if (TARGET_POPCNTD)
4336 rs6000_isa_flags |= (ISA_2_6_MASKS_EMBEDDED & ~ignore_masks);
4337 else if (TARGET_DFP)
4338 rs6000_isa_flags |= (ISA_2_5_MASKS_SERVER & ~ignore_masks);
4339 else if (TARGET_CMPB)
4340 rs6000_isa_flags |= (ISA_2_5_MASKS_EMBEDDED & ~ignore_masks);
4341 else if (TARGET_FPRND)
4342 rs6000_isa_flags |= (ISA_2_4_MASKS & ~ignore_masks);
4343 else if (TARGET_POPCNTB)
4344 rs6000_isa_flags |= (ISA_2_2_MASKS & ~ignore_masks);
4345 else if (TARGET_ALTIVEC)
4346 rs6000_isa_flags |= (OPTION_MASK_PPC_GFXOPT & ~ignore_masks);
4348 if (TARGET_CRYPTO && !TARGET_ALTIVEC)
4350 if (rs6000_isa_flags_explicit & OPTION_MASK_CRYPTO)
4351 error ("%qs requires %qs", "-mcrypto", "-maltivec");
4352 rs6000_isa_flags &= ~OPTION_MASK_CRYPTO;
4355 if (TARGET_DIRECT_MOVE && !TARGET_VSX)
4357 if (rs6000_isa_flags_explicit & OPTION_MASK_DIRECT_MOVE)
4358 error ("%qs requires %qs", "-mdirect-move", "-mvsx");
4359 rs6000_isa_flags &= ~OPTION_MASK_DIRECT_MOVE;
4362 if (TARGET_P8_VECTOR && !TARGET_ALTIVEC)
4364 if (rs6000_isa_flags_explicit & OPTION_MASK_P8_VECTOR)
4365 error ("%qs requires %qs", "-mpower8-vector", "-maltivec");
4366 rs6000_isa_flags &= ~OPTION_MASK_P8_VECTOR;
4369 if (TARGET_P8_VECTOR && !TARGET_VSX)
4371 if ((rs6000_isa_flags_explicit & OPTION_MASK_P8_VECTOR)
4372 && (rs6000_isa_flags_explicit & OPTION_MASK_VSX))
4373 error ("%qs requires %qs", "-mpower8-vector", "-mvsx");
4374 else if ((rs6000_isa_flags_explicit & OPTION_MASK_P8_VECTOR) == 0)
4376 rs6000_isa_flags &= ~OPTION_MASK_P8_VECTOR;
4377 if (rs6000_isa_flags_explicit & OPTION_MASK_VSX)
4378 rs6000_isa_flags_explicit |= OPTION_MASK_P8_VECTOR;
4380 else
4382 /* OPTION_MASK_P8_VECTOR is explicit, and OPTION_MASK_VSX is
4383 not explicit. */
4384 rs6000_isa_flags |= OPTION_MASK_VSX;
4385 rs6000_isa_flags_explicit |= OPTION_MASK_VSX;
4389 if (TARGET_DFP && !TARGET_HARD_FLOAT)
4391 if (rs6000_isa_flags_explicit & OPTION_MASK_DFP)
4392 error ("%qs requires %qs", "-mhard-dfp", "-mhard-float");
4393 rs6000_isa_flags &= ~OPTION_MASK_DFP;
4396 /* The quad memory instructions only works in 64-bit mode. In 32-bit mode,
4397 silently turn off quad memory mode. */
4398 if ((TARGET_QUAD_MEMORY || TARGET_QUAD_MEMORY_ATOMIC) && !TARGET_POWERPC64)
4400 if ((rs6000_isa_flags_explicit & OPTION_MASK_QUAD_MEMORY) != 0)
4401 warning (0, N_("-mquad-memory requires 64-bit mode"));
4403 if ((rs6000_isa_flags_explicit & OPTION_MASK_QUAD_MEMORY_ATOMIC) != 0)
4404 warning (0, N_("-mquad-memory-atomic requires 64-bit mode"));
4406 rs6000_isa_flags &= ~(OPTION_MASK_QUAD_MEMORY
4407 | OPTION_MASK_QUAD_MEMORY_ATOMIC);
4410 /* Non-atomic quad memory load/store are disabled for little endian, since
4411 the words are reversed, but atomic operations can still be done by
4412 swapping the words. */
4413 if (TARGET_QUAD_MEMORY && !WORDS_BIG_ENDIAN)
4415 if ((rs6000_isa_flags_explicit & OPTION_MASK_QUAD_MEMORY) != 0)
4416 warning (0, N_("-mquad-memory is not available in little endian "
4417 "mode"));
4419 rs6000_isa_flags &= ~OPTION_MASK_QUAD_MEMORY;
4422 /* Assume if the user asked for normal quad memory instructions, they want
4423 the atomic versions as well, unless they explicity told us not to use quad
4424 word atomic instructions. */
4425 if (TARGET_QUAD_MEMORY
4426 && !TARGET_QUAD_MEMORY_ATOMIC
4427 && ((rs6000_isa_flags_explicit & OPTION_MASK_QUAD_MEMORY_ATOMIC) == 0))
4428 rs6000_isa_flags |= OPTION_MASK_QUAD_MEMORY_ATOMIC;
4430 /* Enable power8 fusion if we are tuning for power8, even if we aren't
4431 generating power8 instructions. */
4432 if (!(rs6000_isa_flags_explicit & OPTION_MASK_P8_FUSION))
4433 rs6000_isa_flags |= (processor_target_table[tune_index].target_enable
4434 & OPTION_MASK_P8_FUSION);
4436 /* Setting additional fusion flags turns on base fusion. */
4437 if (!TARGET_P8_FUSION && (TARGET_P8_FUSION_SIGN || TARGET_TOC_FUSION))
4439 if (rs6000_isa_flags_explicit & OPTION_MASK_P8_FUSION)
4441 if (TARGET_P8_FUSION_SIGN)
4442 error ("%qs requires %qs", "-mpower8-fusion-sign",
4443 "-mpower8-fusion");
4445 if (TARGET_TOC_FUSION)
4446 error ("%qs requires %qs", "-mtoc-fusion", "-mpower8-fusion");
4448 rs6000_isa_flags &= ~OPTION_MASK_P8_FUSION;
4450 else
4451 rs6000_isa_flags |= OPTION_MASK_P8_FUSION;
4454 /* Power9 fusion is a superset over power8 fusion. */
4455 if (TARGET_P9_FUSION && !TARGET_P8_FUSION)
4457 if (rs6000_isa_flags_explicit & OPTION_MASK_P8_FUSION)
4459 /* We prefer to not mention undocumented options in
4460 error messages. However, if users have managed to select
4461 power9-fusion without selecting power8-fusion, they
4462 already know about undocumented flags. */
4463 error ("%qs requires %qs", "-mpower9-fusion", "-mpower8-fusion");
4464 rs6000_isa_flags &= ~OPTION_MASK_P9_FUSION;
4466 else
4467 rs6000_isa_flags |= OPTION_MASK_P8_FUSION;
4470 /* Enable power9 fusion if we are tuning for power9, even if we aren't
4471 generating power9 instructions. */
4472 if (!(rs6000_isa_flags_explicit & OPTION_MASK_P9_FUSION))
4473 rs6000_isa_flags |= (processor_target_table[tune_index].target_enable
4474 & OPTION_MASK_P9_FUSION);
4476 /* Power8 does not fuse sign extended loads with the addis. If we are
4477 optimizing at high levels for speed, convert a sign extended load into a
4478 zero extending load, and an explicit sign extension. */
4479 if (TARGET_P8_FUSION
4480 && !(rs6000_isa_flags_explicit & OPTION_MASK_P8_FUSION_SIGN)
4481 && optimize_function_for_speed_p (cfun)
4482 && optimize >= 3)
4483 rs6000_isa_flags |= OPTION_MASK_P8_FUSION_SIGN;
4485 /* TOC fusion requires 64-bit and medium/large code model. */
4486 if (TARGET_TOC_FUSION && !TARGET_POWERPC64)
4488 rs6000_isa_flags &= ~OPTION_MASK_TOC_FUSION;
4489 if ((rs6000_isa_flags_explicit & OPTION_MASK_TOC_FUSION) != 0)
4490 warning (0, N_("-mtoc-fusion requires 64-bit"));
4493 if (TARGET_TOC_FUSION && (TARGET_CMODEL == CMODEL_SMALL))
4495 rs6000_isa_flags &= ~OPTION_MASK_TOC_FUSION;
4496 if ((rs6000_isa_flags_explicit & OPTION_MASK_TOC_FUSION) != 0)
4497 warning (0, N_("-mtoc-fusion requires medium/large code model"));
4500 /* Turn on -mtoc-fusion by default if p8-fusion and 64-bit medium/large code
4501 model. */
4502 if (TARGET_P8_FUSION && !TARGET_TOC_FUSION && TARGET_POWERPC64
4503 && (TARGET_CMODEL != CMODEL_SMALL)
4504 && !(rs6000_isa_flags_explicit & OPTION_MASK_TOC_FUSION))
4505 rs6000_isa_flags |= OPTION_MASK_TOC_FUSION;
4507 /* ISA 3.0 vector instructions include ISA 2.07. */
4508 if (TARGET_P9_VECTOR && !TARGET_P8_VECTOR)
4510 /* We prefer to not mention undocumented options in
4511 error messages. However, if users have managed to select
4512 power9-vector without selecting power8-vector, they
4513 already know about undocumented flags. */
4514 if ((rs6000_isa_flags_explicit & OPTION_MASK_P9_VECTOR) &&
4515 (rs6000_isa_flags_explicit & OPTION_MASK_P8_VECTOR))
4516 error ("%qs requires %qs", "-mpower9-vector", "-mpower8-vector");
4517 else if ((rs6000_isa_flags_explicit & OPTION_MASK_P9_VECTOR) == 0)
4519 rs6000_isa_flags &= ~OPTION_MASK_P9_VECTOR;
4520 if (rs6000_isa_flags_explicit & OPTION_MASK_P8_VECTOR)
4521 rs6000_isa_flags_explicit |= OPTION_MASK_P9_VECTOR;
4523 else
4525 /* OPTION_MASK_P9_VECTOR is explicit and
4526 OPTION_MASK_P8_VECTOR is not explicit. */
4527 rs6000_isa_flags |= OPTION_MASK_P8_VECTOR;
4528 rs6000_isa_flags_explicit |= OPTION_MASK_P8_VECTOR;
4532 /* Set -mallow-movmisalign to explicitly on if we have full ISA 2.07
4533 support. If we only have ISA 2.06 support, and the user did not specify
4534 the switch, leave it set to -1 so the movmisalign patterns are enabled,
4535 but we don't enable the full vectorization support */
4536 if (TARGET_ALLOW_MOVMISALIGN == -1 && TARGET_P8_VECTOR && TARGET_DIRECT_MOVE)
4537 TARGET_ALLOW_MOVMISALIGN = 1;
4539 else if (TARGET_ALLOW_MOVMISALIGN && !TARGET_VSX)
4541 if (TARGET_ALLOW_MOVMISALIGN > 0
4542 && global_options_set.x_TARGET_ALLOW_MOVMISALIGN)
4543 error ("%qs requires %qs", "-mallow-movmisalign", "-mvsx");
4545 TARGET_ALLOW_MOVMISALIGN = 0;
4548 /* Determine when unaligned vector accesses are permitted, and when
4549 they are preferred over masked Altivec loads. Note that if
4550 TARGET_ALLOW_MOVMISALIGN has been disabled by the user, then
4551 TARGET_EFFICIENT_UNALIGNED_VSX must be as well. The converse is
4552 not true. */
4553 if (TARGET_EFFICIENT_UNALIGNED_VSX)
4555 if (!TARGET_VSX)
4557 if (rs6000_isa_flags_explicit & OPTION_MASK_EFFICIENT_UNALIGNED_VSX)
4558 error ("%qs requires %qs", "-mefficient-unaligned-vsx", "-mvsx");
4560 rs6000_isa_flags &= ~OPTION_MASK_EFFICIENT_UNALIGNED_VSX;
4563 else if (!TARGET_ALLOW_MOVMISALIGN)
4565 if (rs6000_isa_flags_explicit & OPTION_MASK_EFFICIENT_UNALIGNED_VSX)
4566 error ("%qs requires %qs", "-munefficient-unaligned-vsx",
4567 "-mallow-movmisalign");
4569 rs6000_isa_flags &= ~OPTION_MASK_EFFICIENT_UNALIGNED_VSX;
4573 /* Set long double size before the IEEE 128-bit tests. */
4574 if (!global_options_set.x_rs6000_long_double_type_size)
4576 if (main_target_opt != NULL
4577 && (main_target_opt->x_rs6000_long_double_type_size
4578 != RS6000_DEFAULT_LONG_DOUBLE_SIZE))
4579 error ("target attribute or pragma changes long double size");
4580 else
4581 rs6000_long_double_type_size = RS6000_DEFAULT_LONG_DOUBLE_SIZE;
4584 /* Set -mabi=ieeelongdouble on some old targets. In the future, power server
4585 systems will also set long double to be IEEE 128-bit. AIX and Darwin
4586 explicitly redefine TARGET_IEEEQUAD and TARGET_IEEEQUAD_DEFAULT to 0, so
4587 those systems will not pick up this default. Warn if the user changes the
4588 default unless -Wno-psabi. */
4589 if (!global_options_set.x_rs6000_ieeequad)
4590 rs6000_ieeequad = TARGET_IEEEQUAD_DEFAULT;
4592 else if (rs6000_ieeequad != TARGET_IEEEQUAD_DEFAULT && TARGET_LONG_DOUBLE_128)
4594 static bool warned_change_long_double;
4595 if (!warned_change_long_double)
4597 warned_change_long_double = true;
4598 if (TARGET_IEEEQUAD)
4599 warning (OPT_Wpsabi, "Using IEEE extended precision long double");
4600 else
4601 warning (OPT_Wpsabi, "Using IBM extended precision long double");
4605 /* Enable the default support for IEEE 128-bit floating point on Linux VSX
4606 sytems. In GCC 7, we would enable the the IEEE 128-bit floating point
4607 infrastructure (-mfloat128-type) but not enable the actual __float128 type
4608 unless the user used the explicit -mfloat128. In GCC 8, we enable both
4609 the keyword as well as the type. */
4610 TARGET_FLOAT128_TYPE = TARGET_FLOAT128_ENABLE_TYPE && TARGET_VSX;
4612 /* IEEE 128-bit floating point requires VSX support. */
4613 if (TARGET_FLOAT128_KEYWORD)
4615 if (!TARGET_VSX)
4617 if ((rs6000_isa_flags_explicit & OPTION_MASK_FLOAT128_KEYWORD) != 0)
4618 error ("%qs requires VSX support", "-mfloat128");
4620 TARGET_FLOAT128_TYPE = 0;
4621 rs6000_isa_flags &= ~(OPTION_MASK_FLOAT128_KEYWORD
4622 | OPTION_MASK_FLOAT128_HW);
4624 else if (!TARGET_FLOAT128_TYPE)
4626 TARGET_FLOAT128_TYPE = 1;
4627 warning (0, "The -mfloat128 option may not be fully supported");
4631 /* Enable the __float128 keyword under Linux by default. */
4632 if (TARGET_FLOAT128_TYPE && !TARGET_FLOAT128_KEYWORD
4633 && (rs6000_isa_flags_explicit & OPTION_MASK_FLOAT128_KEYWORD) == 0)
4634 rs6000_isa_flags |= OPTION_MASK_FLOAT128_KEYWORD;
4636 /* If we have are supporting the float128 type and full ISA 3.0 support,
4637 enable -mfloat128-hardware by default. However, don't enable the
4638 __float128 keyword if it was explicitly turned off. 64-bit mode is needed
4639 because sometimes the compiler wants to put things in an integer
4640 container, and if we don't have __int128 support, it is impossible. */
4641 if (TARGET_FLOAT128_TYPE && !TARGET_FLOAT128_HW && TARGET_64BIT
4642 && (rs6000_isa_flags & ISA_3_0_MASKS_IEEE) == ISA_3_0_MASKS_IEEE
4643 && !(rs6000_isa_flags_explicit & OPTION_MASK_FLOAT128_HW))
4644 rs6000_isa_flags |= OPTION_MASK_FLOAT128_HW;
4646 if (TARGET_FLOAT128_HW
4647 && (rs6000_isa_flags & ISA_3_0_MASKS_IEEE) != ISA_3_0_MASKS_IEEE)
4649 if ((rs6000_isa_flags_explicit & OPTION_MASK_FLOAT128_HW) != 0)
4650 error ("%qs requires full ISA 3.0 support", "-mfloat128-hardware");
4652 rs6000_isa_flags &= ~OPTION_MASK_FLOAT128_HW;
4655 if (TARGET_FLOAT128_HW && !TARGET_64BIT)
4657 if ((rs6000_isa_flags_explicit & OPTION_MASK_FLOAT128_HW) != 0)
4658 error ("%qs requires %qs", "-mfloat128-hardware", "-m64");
4660 rs6000_isa_flags &= ~OPTION_MASK_FLOAT128_HW;
4663 /* Print the options after updating the defaults. */
4664 if (TARGET_DEBUG_REG || TARGET_DEBUG_TARGET)
4665 rs6000_print_isa_options (stderr, 0, "after defaults", rs6000_isa_flags);
4667 /* E500mc does "better" if we inline more aggressively. Respect the
4668 user's opinion, though. */
4669 if (rs6000_block_move_inline_limit == 0
4670 && (rs6000_cpu == PROCESSOR_PPCE500MC
4671 || rs6000_cpu == PROCESSOR_PPCE500MC64
4672 || rs6000_cpu == PROCESSOR_PPCE5500
4673 || rs6000_cpu == PROCESSOR_PPCE6500))
4674 rs6000_block_move_inline_limit = 128;
4676 /* store_one_arg depends on expand_block_move to handle at least the
4677 size of reg_parm_stack_space. */
4678 if (rs6000_block_move_inline_limit < (TARGET_POWERPC64 ? 64 : 32))
4679 rs6000_block_move_inline_limit = (TARGET_POWERPC64 ? 64 : 32);
4681 if (global_init_p)
4683 /* If the appropriate debug option is enabled, replace the target hooks
4684 with debug versions that call the real version and then prints
4685 debugging information. */
4686 if (TARGET_DEBUG_COST)
4688 targetm.rtx_costs = rs6000_debug_rtx_costs;
4689 targetm.address_cost = rs6000_debug_address_cost;
4690 targetm.sched.adjust_cost = rs6000_debug_adjust_cost;
4693 if (TARGET_DEBUG_ADDR)
4695 targetm.legitimate_address_p = rs6000_debug_legitimate_address_p;
4696 targetm.legitimize_address = rs6000_debug_legitimize_address;
4697 rs6000_secondary_reload_class_ptr
4698 = rs6000_debug_secondary_reload_class;
4699 targetm.secondary_memory_needed
4700 = rs6000_debug_secondary_memory_needed;
4701 targetm.can_change_mode_class
4702 = rs6000_debug_can_change_mode_class;
4703 rs6000_preferred_reload_class_ptr
4704 = rs6000_debug_preferred_reload_class;
4705 rs6000_legitimize_reload_address_ptr
4706 = rs6000_debug_legitimize_reload_address;
4707 rs6000_mode_dependent_address_ptr
4708 = rs6000_debug_mode_dependent_address;
4711 if (rs6000_veclibabi_name)
4713 if (strcmp (rs6000_veclibabi_name, "mass") == 0)
4714 rs6000_veclib_handler = rs6000_builtin_vectorized_libmass;
4715 else
4717 error ("unknown vectorization library ABI type (%qs) for "
4718 "%qs switch", rs6000_veclibabi_name, "-mveclibabi=");
4719 ret = false;
4724 /* Disable VSX and Altivec silently if the user switched cpus to power7 in a
4725 target attribute or pragma which automatically enables both options,
4726 unless the altivec ABI was set. This is set by default for 64-bit, but
4727 not for 32-bit. */
4728 if (main_target_opt != NULL && !main_target_opt->x_rs6000_altivec_abi)
4730 TARGET_FLOAT128_TYPE = 0;
4731 rs6000_isa_flags &= ~((OPTION_MASK_VSX | OPTION_MASK_ALTIVEC
4732 | OPTION_MASK_FLOAT128_KEYWORD)
4733 & ~rs6000_isa_flags_explicit);
4736 /* Enable Altivec ABI for AIX -maltivec. */
4737 if (TARGET_XCOFF && (TARGET_ALTIVEC || TARGET_VSX))
4739 if (main_target_opt != NULL && !main_target_opt->x_rs6000_altivec_abi)
4740 error ("target attribute or pragma changes AltiVec ABI");
4741 else
4742 rs6000_altivec_abi = 1;
4745 /* The AltiVec ABI is the default for PowerPC-64 GNU/Linux. For
4746 PowerPC-32 GNU/Linux, -maltivec implies the AltiVec ABI. It can
4747 be explicitly overridden in either case. */
4748 if (TARGET_ELF)
4750 if (!global_options_set.x_rs6000_altivec_abi
4751 && (TARGET_64BIT || TARGET_ALTIVEC || TARGET_VSX))
4753 if (main_target_opt != NULL &&
4754 !main_target_opt->x_rs6000_altivec_abi)
4755 error ("target attribute or pragma changes AltiVec ABI");
4756 else
4757 rs6000_altivec_abi = 1;
4761 /* Set the Darwin64 ABI as default for 64-bit Darwin.
4762 So far, the only darwin64 targets are also MACH-O. */
4763 if (TARGET_MACHO
4764 && DEFAULT_ABI == ABI_DARWIN
4765 && TARGET_64BIT)
4767 if (main_target_opt != NULL && !main_target_opt->x_rs6000_darwin64_abi)
4768 error ("target attribute or pragma changes darwin64 ABI");
4769 else
4771 rs6000_darwin64_abi = 1;
4772 /* Default to natural alignment, for better performance. */
4773 rs6000_alignment_flags = MASK_ALIGN_NATURAL;
4777 /* Place FP constants in the constant pool instead of TOC
4778 if section anchors enabled. */
4779 if (flag_section_anchors
4780 && !global_options_set.x_TARGET_NO_FP_IN_TOC)
4781 TARGET_NO_FP_IN_TOC = 1;
4783 if (TARGET_DEBUG_REG || TARGET_DEBUG_TARGET)
4784 rs6000_print_isa_options (stderr, 0, "before subtarget", rs6000_isa_flags);
4786 #ifdef SUBTARGET_OVERRIDE_OPTIONS
4787 SUBTARGET_OVERRIDE_OPTIONS;
4788 #endif
4789 #ifdef SUBSUBTARGET_OVERRIDE_OPTIONS
4790 SUBSUBTARGET_OVERRIDE_OPTIONS;
4791 #endif
4792 #ifdef SUB3TARGET_OVERRIDE_OPTIONS
4793 SUB3TARGET_OVERRIDE_OPTIONS;
4794 #endif
4796 if (TARGET_DEBUG_REG || TARGET_DEBUG_TARGET)
4797 rs6000_print_isa_options (stderr, 0, "after subtarget", rs6000_isa_flags);
4799 /* For the E500 family of cores, reset the single/double FP flags to let us
4800 check that they remain constant across attributes or pragmas. Also,
4801 clear a possible request for string instructions, not supported and which
4802 we might have silently queried above for -Os.
4804 For other families, clear ISEL in case it was set implicitly.
4807 switch (rs6000_cpu)
4809 case PROCESSOR_PPC8540:
4810 case PROCESSOR_PPC8548:
4811 case PROCESSOR_PPCE500MC:
4812 case PROCESSOR_PPCE500MC64:
4813 case PROCESSOR_PPCE5500:
4814 case PROCESSOR_PPCE6500:
4816 rs6000_single_float = 0;
4817 rs6000_double_float = 0;
4819 rs6000_isa_flags &= ~OPTION_MASK_STRING;
4821 break;
4823 default:
4825 if (cpu_index >= 0 && !(rs6000_isa_flags_explicit & OPTION_MASK_ISEL))
4826 rs6000_isa_flags &= ~OPTION_MASK_ISEL;
4828 break;
4831 if (main_target_opt)
4833 if (main_target_opt->x_rs6000_single_float != rs6000_single_float)
4834 error ("target attribute or pragma changes single precision floating "
4835 "point");
4836 if (main_target_opt->x_rs6000_double_float != rs6000_double_float)
4837 error ("target attribute or pragma changes double precision floating "
4838 "point");
4841 rs6000_always_hint = (rs6000_cpu != PROCESSOR_POWER4
4842 && rs6000_cpu != PROCESSOR_POWER5
4843 && rs6000_cpu != PROCESSOR_POWER6
4844 && rs6000_cpu != PROCESSOR_POWER7
4845 && rs6000_cpu != PROCESSOR_POWER8
4846 && rs6000_cpu != PROCESSOR_POWER9
4847 && rs6000_cpu != PROCESSOR_PPCA2
4848 && rs6000_cpu != PROCESSOR_CELL
4849 && rs6000_cpu != PROCESSOR_PPC476);
4850 rs6000_sched_groups = (rs6000_cpu == PROCESSOR_POWER4
4851 || rs6000_cpu == PROCESSOR_POWER5
4852 || rs6000_cpu == PROCESSOR_POWER7
4853 || rs6000_cpu == PROCESSOR_POWER8);
4854 rs6000_align_branch_targets = (rs6000_cpu == PROCESSOR_POWER4
4855 || rs6000_cpu == PROCESSOR_POWER5
4856 || rs6000_cpu == PROCESSOR_POWER6
4857 || rs6000_cpu == PROCESSOR_POWER7
4858 || rs6000_cpu == PROCESSOR_POWER8
4859 || rs6000_cpu == PROCESSOR_POWER9
4860 || rs6000_cpu == PROCESSOR_PPCE500MC
4861 || rs6000_cpu == PROCESSOR_PPCE500MC64
4862 || rs6000_cpu == PROCESSOR_PPCE5500
4863 || rs6000_cpu == PROCESSOR_PPCE6500);
4865 /* Allow debug switches to override the above settings. These are set to -1
4866 in rs6000.opt to indicate the user hasn't directly set the switch. */
4867 if (TARGET_ALWAYS_HINT >= 0)
4868 rs6000_always_hint = TARGET_ALWAYS_HINT;
4870 if (TARGET_SCHED_GROUPS >= 0)
4871 rs6000_sched_groups = TARGET_SCHED_GROUPS;
4873 if (TARGET_ALIGN_BRANCH_TARGETS >= 0)
4874 rs6000_align_branch_targets = TARGET_ALIGN_BRANCH_TARGETS;
4876 rs6000_sched_restricted_insns_priority
4877 = (rs6000_sched_groups ? 1 : 0);
4879 /* Handle -msched-costly-dep option. */
4880 rs6000_sched_costly_dep
4881 = (rs6000_sched_groups ? true_store_to_load_dep_costly : no_dep_costly);
4883 if (rs6000_sched_costly_dep_str)
4885 if (! strcmp (rs6000_sched_costly_dep_str, "no"))
4886 rs6000_sched_costly_dep = no_dep_costly;
4887 else if (! strcmp (rs6000_sched_costly_dep_str, "all"))
4888 rs6000_sched_costly_dep = all_deps_costly;
4889 else if (! strcmp (rs6000_sched_costly_dep_str, "true_store_to_load"))
4890 rs6000_sched_costly_dep = true_store_to_load_dep_costly;
4891 else if (! strcmp (rs6000_sched_costly_dep_str, "store_to_load"))
4892 rs6000_sched_costly_dep = store_to_load_dep_costly;
4893 else
4894 rs6000_sched_costly_dep = ((enum rs6000_dependence_cost)
4895 atoi (rs6000_sched_costly_dep_str));
4898 /* Handle -minsert-sched-nops option. */
4899 rs6000_sched_insert_nops
4900 = (rs6000_sched_groups ? sched_finish_regroup_exact : sched_finish_none);
4902 if (rs6000_sched_insert_nops_str)
4904 if (! strcmp (rs6000_sched_insert_nops_str, "no"))
4905 rs6000_sched_insert_nops = sched_finish_none;
4906 else if (! strcmp (rs6000_sched_insert_nops_str, "pad"))
4907 rs6000_sched_insert_nops = sched_finish_pad_groups;
4908 else if (! strcmp (rs6000_sched_insert_nops_str, "regroup_exact"))
4909 rs6000_sched_insert_nops = sched_finish_regroup_exact;
4910 else
4911 rs6000_sched_insert_nops = ((enum rs6000_nop_insertion)
4912 atoi (rs6000_sched_insert_nops_str));
4915 /* Handle stack protector */
4916 if (!global_options_set.x_rs6000_stack_protector_guard)
4917 #ifdef TARGET_THREAD_SSP_OFFSET
4918 rs6000_stack_protector_guard = SSP_TLS;
4919 #else
4920 rs6000_stack_protector_guard = SSP_GLOBAL;
4921 #endif
4923 #ifdef TARGET_THREAD_SSP_OFFSET
4924 rs6000_stack_protector_guard_offset = TARGET_THREAD_SSP_OFFSET;
4925 rs6000_stack_protector_guard_reg = TARGET_64BIT ? 13 : 2;
4926 #endif
4928 if (global_options_set.x_rs6000_stack_protector_guard_offset_str)
4930 char *endp;
4931 const char *str = rs6000_stack_protector_guard_offset_str;
4933 errno = 0;
4934 long offset = strtol (str, &endp, 0);
4935 if (!*str || *endp || errno)
4936 error ("%qs is not a valid number in %qs", str,
4937 "-mstack-protector-guard-offset=");
4939 if (!IN_RANGE (offset, -0x8000, 0x7fff)
4940 || (TARGET_64BIT && (offset & 3)))
4941 error ("%qs is not a valid offset in %qs", str,
4942 "-mstack-protector-guard-offset=");
4944 rs6000_stack_protector_guard_offset = offset;
4947 if (global_options_set.x_rs6000_stack_protector_guard_reg_str)
4949 const char *str = rs6000_stack_protector_guard_reg_str;
4950 int reg = decode_reg_name (str);
4952 if (!IN_RANGE (reg, 1, 31))
4953 error ("%qs is not a valid base register in %qs", str,
4954 "-mstack-protector-guard-reg=");
4956 rs6000_stack_protector_guard_reg = reg;
4959 if (rs6000_stack_protector_guard == SSP_TLS
4960 && !IN_RANGE (rs6000_stack_protector_guard_reg, 1, 31))
4961 error ("%qs needs a valid base register", "-mstack-protector-guard=tls");
4963 if (global_init_p)
4965 #ifdef TARGET_REGNAMES
4966 /* If the user desires alternate register names, copy in the
4967 alternate names now. */
4968 if (TARGET_REGNAMES)
4969 memcpy (rs6000_reg_names, alt_reg_names, sizeof (rs6000_reg_names));
4970 #endif
4972 /* Set aix_struct_return last, after the ABI is determined.
4973 If -maix-struct-return or -msvr4-struct-return was explicitly
4974 used, don't override with the ABI default. */
4975 if (!global_options_set.x_aix_struct_return)
4976 aix_struct_return = (DEFAULT_ABI != ABI_V4 || DRAFT_V4_STRUCT_RET);
4978 #if 0
4979 /* IBM XL compiler defaults to unsigned bitfields. */
4980 if (TARGET_XL_COMPAT)
4981 flag_signed_bitfields = 0;
4982 #endif
4984 if (TARGET_LONG_DOUBLE_128 && !TARGET_IEEEQUAD)
4985 REAL_MODE_FORMAT (TFmode) = &ibm_extended_format;
4987 ASM_GENERATE_INTERNAL_LABEL (toc_label_name, "LCTOC", 1);
4989 /* We can only guarantee the availability of DI pseudo-ops when
4990 assembling for 64-bit targets. */
4991 if (!TARGET_64BIT)
4993 targetm.asm_out.aligned_op.di = NULL;
4994 targetm.asm_out.unaligned_op.di = NULL;
4998 /* Set branch target alignment, if not optimizing for size. */
4999 if (!optimize_size)
5001 /* Cell wants to be aligned 8byte for dual issue. Titan wants to be
5002 aligned 8byte to avoid misprediction by the branch predictor. */
5003 if (rs6000_cpu == PROCESSOR_TITAN
5004 || rs6000_cpu == PROCESSOR_CELL)
5006 if (align_functions <= 0)
5007 align_functions = 8;
5008 if (align_jumps <= 0)
5009 align_jumps = 8;
5010 if (align_loops <= 0)
5011 align_loops = 8;
5013 if (rs6000_align_branch_targets)
5015 if (align_functions <= 0)
5016 align_functions = 16;
5017 if (align_jumps <= 0)
5018 align_jumps = 16;
5019 if (align_loops <= 0)
5021 can_override_loop_align = 1;
5022 align_loops = 16;
5025 if (align_jumps_max_skip <= 0)
5026 align_jumps_max_skip = 15;
5027 if (align_loops_max_skip <= 0)
5028 align_loops_max_skip = 15;
5031 /* Arrange to save and restore machine status around nested functions. */
5032 init_machine_status = rs6000_init_machine_status;
5034 /* We should always be splitting complex arguments, but we can't break
5035 Linux and Darwin ABIs at the moment. For now, only AIX is fixed. */
5036 if (DEFAULT_ABI == ABI_V4 || DEFAULT_ABI == ABI_DARWIN)
5037 targetm.calls.split_complex_arg = NULL;
5039 /* The AIX and ELFv1 ABIs define standard function descriptors. */
5040 if (DEFAULT_ABI == ABI_AIX)
5041 targetm.calls.custom_function_descriptors = 0;
5044 /* Initialize rs6000_cost with the appropriate target costs. */
5045 if (optimize_size)
5046 rs6000_cost = TARGET_POWERPC64 ? &size64_cost : &size32_cost;
5047 else
5048 switch (rs6000_cpu)
5050 case PROCESSOR_RS64A:
5051 rs6000_cost = &rs64a_cost;
5052 break;
5054 case PROCESSOR_MPCCORE:
5055 rs6000_cost = &mpccore_cost;
5056 break;
5058 case PROCESSOR_PPC403:
5059 rs6000_cost = &ppc403_cost;
5060 break;
5062 case PROCESSOR_PPC405:
5063 rs6000_cost = &ppc405_cost;
5064 break;
5066 case PROCESSOR_PPC440:
5067 rs6000_cost = &ppc440_cost;
5068 break;
5070 case PROCESSOR_PPC476:
5071 rs6000_cost = &ppc476_cost;
5072 break;
5074 case PROCESSOR_PPC601:
5075 rs6000_cost = &ppc601_cost;
5076 break;
5078 case PROCESSOR_PPC603:
5079 rs6000_cost = &ppc603_cost;
5080 break;
5082 case PROCESSOR_PPC604:
5083 rs6000_cost = &ppc604_cost;
5084 break;
5086 case PROCESSOR_PPC604e:
5087 rs6000_cost = &ppc604e_cost;
5088 break;
5090 case PROCESSOR_PPC620:
5091 rs6000_cost = &ppc620_cost;
5092 break;
5094 case PROCESSOR_PPC630:
5095 rs6000_cost = &ppc630_cost;
5096 break;
5098 case PROCESSOR_CELL:
5099 rs6000_cost = &ppccell_cost;
5100 break;
5102 case PROCESSOR_PPC750:
5103 case PROCESSOR_PPC7400:
5104 rs6000_cost = &ppc750_cost;
5105 break;
5107 case PROCESSOR_PPC7450:
5108 rs6000_cost = &ppc7450_cost;
5109 break;
5111 case PROCESSOR_PPC8540:
5112 case PROCESSOR_PPC8548:
5113 rs6000_cost = &ppc8540_cost;
5114 break;
5116 case PROCESSOR_PPCE300C2:
5117 case PROCESSOR_PPCE300C3:
5118 rs6000_cost = &ppce300c2c3_cost;
5119 break;
5121 case PROCESSOR_PPCE500MC:
5122 rs6000_cost = &ppce500mc_cost;
5123 break;
5125 case PROCESSOR_PPCE500MC64:
5126 rs6000_cost = &ppce500mc64_cost;
5127 break;
5129 case PROCESSOR_PPCE5500:
5130 rs6000_cost = &ppce5500_cost;
5131 break;
5133 case PROCESSOR_PPCE6500:
5134 rs6000_cost = &ppce6500_cost;
5135 break;
5137 case PROCESSOR_TITAN:
5138 rs6000_cost = &titan_cost;
5139 break;
5141 case PROCESSOR_POWER4:
5142 case PROCESSOR_POWER5:
5143 rs6000_cost = &power4_cost;
5144 break;
5146 case PROCESSOR_POWER6:
5147 rs6000_cost = &power6_cost;
5148 break;
5150 case PROCESSOR_POWER7:
5151 rs6000_cost = &power7_cost;
5152 break;
5154 case PROCESSOR_POWER8:
5155 rs6000_cost = &power8_cost;
5156 break;
5158 case PROCESSOR_POWER9:
5159 rs6000_cost = &power9_cost;
5160 break;
5162 case PROCESSOR_PPCA2:
5163 rs6000_cost = &ppca2_cost;
5164 break;
5166 default:
5167 gcc_unreachable ();
5170 if (global_init_p)
5172 maybe_set_param_value (PARAM_SIMULTANEOUS_PREFETCHES,
5173 rs6000_cost->simultaneous_prefetches,
5174 global_options.x_param_values,
5175 global_options_set.x_param_values);
5176 maybe_set_param_value (PARAM_L1_CACHE_SIZE, rs6000_cost->l1_cache_size,
5177 global_options.x_param_values,
5178 global_options_set.x_param_values);
5179 maybe_set_param_value (PARAM_L1_CACHE_LINE_SIZE,
5180 rs6000_cost->cache_line_size,
5181 global_options.x_param_values,
5182 global_options_set.x_param_values);
5183 maybe_set_param_value (PARAM_L2_CACHE_SIZE, rs6000_cost->l2_cache_size,
5184 global_options.x_param_values,
5185 global_options_set.x_param_values);
5187 /* Increase loop peeling limits based on performance analysis. */
5188 maybe_set_param_value (PARAM_MAX_PEELED_INSNS, 400,
5189 global_options.x_param_values,
5190 global_options_set.x_param_values);
5191 maybe_set_param_value (PARAM_MAX_COMPLETELY_PEELED_INSNS, 400,
5192 global_options.x_param_values,
5193 global_options_set.x_param_values);
5195 /* Use the 'model' -fsched-pressure algorithm by default. */
5196 maybe_set_param_value (PARAM_SCHED_PRESSURE_ALGORITHM,
5197 SCHED_PRESSURE_MODEL,
5198 global_options.x_param_values,
5199 global_options_set.x_param_values);
5201 /* If using typedef char *va_list, signal that
5202 __builtin_va_start (&ap, 0) can be optimized to
5203 ap = __builtin_next_arg (0). */
5204 if (DEFAULT_ABI != ABI_V4)
5205 targetm.expand_builtin_va_start = NULL;
5208 /* Set up single/double float flags.
5209 If TARGET_HARD_FLOAT is set, but neither single or double is set,
5210 then set both flags. */
5211 if (TARGET_HARD_FLOAT && rs6000_single_float == 0 && rs6000_double_float == 0)
5212 rs6000_single_float = rs6000_double_float = 1;
5214 /* If not explicitly specified via option, decide whether to generate indexed
5215 load/store instructions. A value of -1 indicates that the
5216 initial value of this variable has not been overwritten. During
5217 compilation, TARGET_AVOID_XFORM is either 0 or 1. */
5218 if (TARGET_AVOID_XFORM == -1)
5219 /* Avoid indexed addressing when targeting Power6 in order to avoid the
5220 DERAT mispredict penalty. However the LVE and STVE altivec instructions
5221 need indexed accesses and the type used is the scalar type of the element
5222 being loaded or stored. */
5223 TARGET_AVOID_XFORM = (rs6000_cpu == PROCESSOR_POWER6 && TARGET_CMPB
5224 && !TARGET_ALTIVEC);
5226 /* Set the -mrecip options. */
5227 if (rs6000_recip_name)
5229 char *p = ASTRDUP (rs6000_recip_name);
5230 char *q;
5231 unsigned int mask, i;
5232 bool invert;
5234 while ((q = strtok (p, ",")) != NULL)
5236 p = NULL;
5237 if (*q == '!')
5239 invert = true;
5240 q++;
5242 else
5243 invert = false;
5245 if (!strcmp (q, "default"))
5246 mask = ((TARGET_RECIP_PRECISION)
5247 ? RECIP_HIGH_PRECISION : RECIP_LOW_PRECISION);
5248 else
5250 for (i = 0; i < ARRAY_SIZE (recip_options); i++)
5251 if (!strcmp (q, recip_options[i].string))
5253 mask = recip_options[i].mask;
5254 break;
5257 if (i == ARRAY_SIZE (recip_options))
5259 error ("unknown option for %<%s=%s%>", "-mrecip", q);
5260 invert = false;
5261 mask = 0;
5262 ret = false;
5266 if (invert)
5267 rs6000_recip_control &= ~mask;
5268 else
5269 rs6000_recip_control |= mask;
5273 /* Set the builtin mask of the various options used that could affect which
5274 builtins were used. In the past we used target_flags, but we've run out
5275 of bits, and some options like PAIRED are no longer in target_flags. */
5276 rs6000_builtin_mask = rs6000_builtin_mask_calculate ();
5277 if (TARGET_DEBUG_BUILTIN || TARGET_DEBUG_TARGET)
5278 rs6000_print_builtin_options (stderr, 0, "builtin mask",
5279 rs6000_builtin_mask);
5281 /* Initialize all of the registers. */
5282 rs6000_init_hard_regno_mode_ok (global_init_p);
5284 /* Save the initial options in case the user does function specific options */
5285 if (global_init_p)
5286 target_option_default_node = target_option_current_node
5287 = build_target_option_node (&global_options);
5289 /* If not explicitly specified via option, decide whether to generate the
5290 extra blr's required to preserve the link stack on some cpus (eg, 476). */
5291 if (TARGET_LINK_STACK == -1)
5292 SET_TARGET_LINK_STACK (rs6000_cpu == PROCESSOR_PPC476 && flag_pic);
5294 return ret;
5297 /* Implement TARGET_OPTION_OVERRIDE. On the RS/6000 this is used to
5298 define the target cpu type. */
5300 static void
5301 rs6000_option_override (void)
5303 (void) rs6000_option_override_internal (true);
5307 /* Implement targetm.vectorize.builtin_mask_for_load. */
5308 static tree
5309 rs6000_builtin_mask_for_load (void)
5311 /* Don't use lvsl/vperm for P8 and similarly efficient machines. */
5312 if ((TARGET_ALTIVEC && !TARGET_VSX)
5313 || (TARGET_VSX && !TARGET_EFFICIENT_UNALIGNED_VSX))
5314 return altivec_builtin_mask_for_load;
5315 else
5316 return 0;
5319 /* Implement LOOP_ALIGN. */
5321 rs6000_loop_align (rtx label)
5323 basic_block bb;
5324 int ninsns;
5326 /* Don't override loop alignment if -falign-loops was specified. */
5327 if (!can_override_loop_align)
5328 return align_loops_log;
5330 bb = BLOCK_FOR_INSN (label);
5331 ninsns = num_loop_insns(bb->loop_father);
5333 /* Align small loops to 32 bytes to fit in an icache sector, otherwise return default. */
5334 if (ninsns > 4 && ninsns <= 8
5335 && (rs6000_cpu == PROCESSOR_POWER4
5336 || rs6000_cpu == PROCESSOR_POWER5
5337 || rs6000_cpu == PROCESSOR_POWER6
5338 || rs6000_cpu == PROCESSOR_POWER7
5339 || rs6000_cpu == PROCESSOR_POWER8
5340 || rs6000_cpu == PROCESSOR_POWER9))
5341 return 5;
5342 else
5343 return align_loops_log;
5346 /* Implement TARGET_LOOP_ALIGN_MAX_SKIP. */
5347 static int
5348 rs6000_loop_align_max_skip (rtx_insn *label)
5350 return (1 << rs6000_loop_align (label)) - 1;
5353 /* Return true iff, data reference of TYPE can reach vector alignment (16)
5354 after applying N number of iterations. This routine does not determine
5355 how may iterations are required to reach desired alignment. */
5357 static bool
5358 rs6000_vector_alignment_reachable (const_tree type ATTRIBUTE_UNUSED, bool is_packed)
5360 if (is_packed)
5361 return false;
5363 if (TARGET_32BIT)
5365 if (rs6000_alignment_flags == MASK_ALIGN_NATURAL)
5366 return true;
5368 if (rs6000_alignment_flags == MASK_ALIGN_POWER)
5369 return true;
5371 return false;
5373 else
5375 if (TARGET_MACHO)
5376 return false;
5378 /* Assuming that all other types are naturally aligned. CHECKME! */
5379 return true;
5383 /* Return true if the vector misalignment factor is supported by the
5384 target. */
5385 static bool
5386 rs6000_builtin_support_vector_misalignment (machine_mode mode,
5387 const_tree type,
5388 int misalignment,
5389 bool is_packed)
5391 if (TARGET_VSX)
5393 if (TARGET_EFFICIENT_UNALIGNED_VSX)
5394 return true;
5396 /* Return if movmisalign pattern is not supported for this mode. */
5397 if (optab_handler (movmisalign_optab, mode) == CODE_FOR_nothing)
5398 return false;
5400 if (misalignment == -1)
5402 /* Misalignment factor is unknown at compile time but we know
5403 it's word aligned. */
5404 if (rs6000_vector_alignment_reachable (type, is_packed))
5406 int element_size = TREE_INT_CST_LOW (TYPE_SIZE (type));
5408 if (element_size == 64 || element_size == 32)
5409 return true;
5412 return false;
5415 /* VSX supports word-aligned vector. */
5416 if (misalignment % 4 == 0)
5417 return true;
5419 return false;
5422 /* Implement targetm.vectorize.builtin_vectorization_cost. */
5423 static int
5424 rs6000_builtin_vectorization_cost (enum vect_cost_for_stmt type_of_cost,
5425 tree vectype, int misalign)
5427 unsigned elements;
5428 tree elem_type;
5430 switch (type_of_cost)
5432 case scalar_stmt:
5433 case scalar_load:
5434 case scalar_store:
5435 case vector_stmt:
5436 case vector_load:
5437 case vector_store:
5438 case vec_to_scalar:
5439 case scalar_to_vec:
5440 case cond_branch_not_taken:
5441 return 1;
5443 case vec_perm:
5444 if (TARGET_VSX)
5445 return 3;
5446 else
5447 return 1;
5449 case vec_promote_demote:
5450 if (TARGET_VSX)
5451 return 4;
5452 else
5453 return 1;
5455 case cond_branch_taken:
5456 return 3;
5458 case unaligned_load:
5459 case vector_gather_load:
5460 if (TARGET_EFFICIENT_UNALIGNED_VSX)
5461 return 1;
5463 if (TARGET_VSX && TARGET_ALLOW_MOVMISALIGN)
5465 elements = TYPE_VECTOR_SUBPARTS (vectype);
5466 if (elements == 2)
5467 /* Double word aligned. */
5468 return 2;
5470 if (elements == 4)
5472 switch (misalign)
5474 case 8:
5475 /* Double word aligned. */
5476 return 2;
5478 case -1:
5479 /* Unknown misalignment. */
5480 case 4:
5481 case 12:
5482 /* Word aligned. */
5483 return 22;
5485 default:
5486 gcc_unreachable ();
5491 if (TARGET_ALTIVEC)
5492 /* Misaligned loads are not supported. */
5493 gcc_unreachable ();
5495 return 2;
5497 case unaligned_store:
5498 case vector_scatter_store:
5499 if (TARGET_EFFICIENT_UNALIGNED_VSX)
5500 return 1;
5502 if (TARGET_VSX && TARGET_ALLOW_MOVMISALIGN)
5504 elements = TYPE_VECTOR_SUBPARTS (vectype);
5505 if (elements == 2)
5506 /* Double word aligned. */
5507 return 2;
5509 if (elements == 4)
5511 switch (misalign)
5513 case 8:
5514 /* Double word aligned. */
5515 return 2;
5517 case -1:
5518 /* Unknown misalignment. */
5519 case 4:
5520 case 12:
5521 /* Word aligned. */
5522 return 23;
5524 default:
5525 gcc_unreachable ();
5530 if (TARGET_ALTIVEC)
5531 /* Misaligned stores are not supported. */
5532 gcc_unreachable ();
5534 return 2;
5536 case vec_construct:
5537 /* This is a rough approximation assuming non-constant elements
5538 constructed into a vector via element insertion. FIXME:
5539 vec_construct is not granular enough for uniformly good
5540 decisions. If the initialization is a splat, this is
5541 cheaper than we estimate. Improve this someday. */
5542 elem_type = TREE_TYPE (vectype);
5543 /* 32-bit vectors loaded into registers are stored as double
5544 precision, so we need 2 permutes, 2 converts, and 1 merge
5545 to construct a vector of short floats from them. */
5546 if (SCALAR_FLOAT_TYPE_P (elem_type)
5547 && TYPE_PRECISION (elem_type) == 32)
5548 return 5;
5549 /* On POWER9, integer vector types are built up in GPRs and then
5550 use a direct move (2 cycles). For POWER8 this is even worse,
5551 as we need two direct moves and a merge, and the direct moves
5552 are five cycles. */
5553 else if (INTEGRAL_TYPE_P (elem_type))
5555 if (TARGET_P9_VECTOR)
5556 return TYPE_VECTOR_SUBPARTS (vectype) - 1 + 2;
5557 else
5558 return TYPE_VECTOR_SUBPARTS (vectype) - 1 + 5;
5560 else
5561 /* V2DFmode doesn't need a direct move. */
5562 return 2;
5564 default:
5565 gcc_unreachable ();
5569 /* Implement targetm.vectorize.preferred_simd_mode. */
5571 static machine_mode
5572 rs6000_preferred_simd_mode (scalar_mode mode)
5574 if (TARGET_VSX)
5575 switch (mode)
5577 case E_DFmode:
5578 return V2DFmode;
5579 default:;
5581 if (TARGET_ALTIVEC || TARGET_VSX)
5582 switch (mode)
5584 case E_SFmode:
5585 return V4SFmode;
5586 case E_TImode:
5587 return V1TImode;
5588 case E_DImode:
5589 return V2DImode;
5590 case E_SImode:
5591 return V4SImode;
5592 case E_HImode:
5593 return V8HImode;
5594 case E_QImode:
5595 return V16QImode;
5596 default:;
5598 if (TARGET_PAIRED_FLOAT
5599 && mode == SFmode)
5600 return V2SFmode;
5601 return word_mode;
5604 typedef struct _rs6000_cost_data
5606 struct loop *loop_info;
5607 unsigned cost[3];
5608 } rs6000_cost_data;
5610 /* Test for likely overcommitment of vector hardware resources. If a
5611 loop iteration is relatively large, and too large a percentage of
5612 instructions in the loop are vectorized, the cost model may not
5613 adequately reflect delays from unavailable vector resources.
5614 Penalize the loop body cost for this case. */
5616 static void
5617 rs6000_density_test (rs6000_cost_data *data)
5619 const int DENSITY_PCT_THRESHOLD = 85;
5620 const int DENSITY_SIZE_THRESHOLD = 70;
5621 const int DENSITY_PENALTY = 10;
5622 struct loop *loop = data->loop_info;
5623 basic_block *bbs = get_loop_body (loop);
5624 int nbbs = loop->num_nodes;
5625 int vec_cost = data->cost[vect_body], not_vec_cost = 0;
5626 int i, density_pct;
5628 for (i = 0; i < nbbs; i++)
5630 basic_block bb = bbs[i];
5631 gimple_stmt_iterator gsi;
5633 for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi))
5635 gimple *stmt = gsi_stmt (gsi);
5636 stmt_vec_info stmt_info = vinfo_for_stmt (stmt);
5638 if (!STMT_VINFO_RELEVANT_P (stmt_info)
5639 && !STMT_VINFO_IN_PATTERN_P (stmt_info))
5640 not_vec_cost++;
5644 free (bbs);
5645 density_pct = (vec_cost * 100) / (vec_cost + not_vec_cost);
5647 if (density_pct > DENSITY_PCT_THRESHOLD
5648 && vec_cost + not_vec_cost > DENSITY_SIZE_THRESHOLD)
5650 data->cost[vect_body] = vec_cost * (100 + DENSITY_PENALTY) / 100;
5651 if (dump_enabled_p ())
5652 dump_printf_loc (MSG_NOTE, vect_location,
5653 "density %d%%, cost %d exceeds threshold, penalizing "
5654 "loop body cost by %d%%", density_pct,
5655 vec_cost + not_vec_cost, DENSITY_PENALTY);
5659 /* Implement targetm.vectorize.init_cost. */
5661 /* For each vectorized loop, this var holds TRUE iff a non-memory vector
5662 instruction is needed by the vectorization. */
5663 static bool rs6000_vect_nonmem;
5665 static void *
5666 rs6000_init_cost (struct loop *loop_info)
5668 rs6000_cost_data *data = XNEW (struct _rs6000_cost_data);
5669 data->loop_info = loop_info;
5670 data->cost[vect_prologue] = 0;
5671 data->cost[vect_body] = 0;
5672 data->cost[vect_epilogue] = 0;
5673 rs6000_vect_nonmem = false;
5674 return data;
5677 /* Implement targetm.vectorize.add_stmt_cost. */
5679 static unsigned
5680 rs6000_add_stmt_cost (void *data, int count, enum vect_cost_for_stmt kind,
5681 struct _stmt_vec_info *stmt_info, int misalign,
5682 enum vect_cost_model_location where)
5684 rs6000_cost_data *cost_data = (rs6000_cost_data*) data;
5685 unsigned retval = 0;
5687 if (flag_vect_cost_model)
5689 tree vectype = stmt_info ? stmt_vectype (stmt_info) : NULL_TREE;
5690 int stmt_cost = rs6000_builtin_vectorization_cost (kind, vectype,
5691 misalign);
5692 /* Statements in an inner loop relative to the loop being
5693 vectorized are weighted more heavily. The value here is
5694 arbitrary and could potentially be improved with analysis. */
5695 if (where == vect_body && stmt_info && stmt_in_inner_loop_p (stmt_info))
5696 count *= 50; /* FIXME. */
5698 retval = (unsigned) (count * stmt_cost);
5699 cost_data->cost[where] += retval;
5701 /* Check whether we're doing something other than just a copy loop.
5702 Not all such loops may be profitably vectorized; see
5703 rs6000_finish_cost. */
5704 if ((kind == vec_to_scalar || kind == vec_perm
5705 || kind == vec_promote_demote || kind == vec_construct
5706 || kind == scalar_to_vec)
5707 || (where == vect_body && kind == vector_stmt))
5708 rs6000_vect_nonmem = true;
5711 return retval;
5714 /* Implement targetm.vectorize.finish_cost. */
5716 static void
5717 rs6000_finish_cost (void *data, unsigned *prologue_cost,
5718 unsigned *body_cost, unsigned *epilogue_cost)
5720 rs6000_cost_data *cost_data = (rs6000_cost_data*) data;
5722 if (cost_data->loop_info)
5723 rs6000_density_test (cost_data);
5725 /* Don't vectorize minimum-vectorization-factor, simple copy loops
5726 that require versioning for any reason. The vectorization is at
5727 best a wash inside the loop, and the versioning checks make
5728 profitability highly unlikely and potentially quite harmful. */
5729 if (cost_data->loop_info)
5731 loop_vec_info vec_info = loop_vec_info_for_loop (cost_data->loop_info);
5732 if (!rs6000_vect_nonmem
5733 && LOOP_VINFO_VECT_FACTOR (vec_info) == 2
5734 && LOOP_REQUIRES_VERSIONING (vec_info))
5735 cost_data->cost[vect_body] += 10000;
5738 *prologue_cost = cost_data->cost[vect_prologue];
5739 *body_cost = cost_data->cost[vect_body];
5740 *epilogue_cost = cost_data->cost[vect_epilogue];
5743 /* Implement targetm.vectorize.destroy_cost_data. */
5745 static void
5746 rs6000_destroy_cost_data (void *data)
5748 free (data);
5751 /* Handler for the Mathematical Acceleration Subsystem (mass) interface to a
5752 library with vectorized intrinsics. */
5754 static tree
5755 rs6000_builtin_vectorized_libmass (combined_fn fn, tree type_out,
5756 tree type_in)
5758 char name[32];
5759 const char *suffix = NULL;
5760 tree fntype, new_fndecl, bdecl = NULL_TREE;
5761 int n_args = 1;
5762 const char *bname;
5763 machine_mode el_mode, in_mode;
5764 int n, in_n;
5766 /* Libmass is suitable for unsafe math only as it does not correctly support
5767 parts of IEEE with the required precision such as denormals. Only support
5768 it if we have VSX to use the simd d2 or f4 functions.
5769 XXX: Add variable length support. */
5770 if (!flag_unsafe_math_optimizations || !TARGET_VSX)
5771 return NULL_TREE;
5773 el_mode = TYPE_MODE (TREE_TYPE (type_out));
5774 n = TYPE_VECTOR_SUBPARTS (type_out);
5775 in_mode = TYPE_MODE (TREE_TYPE (type_in));
5776 in_n = TYPE_VECTOR_SUBPARTS (type_in);
5777 if (el_mode != in_mode
5778 || n != in_n)
5779 return NULL_TREE;
5781 switch (fn)
5783 CASE_CFN_ATAN2:
5784 CASE_CFN_HYPOT:
5785 CASE_CFN_POW:
5786 n_args = 2;
5787 gcc_fallthrough ();
5789 CASE_CFN_ACOS:
5790 CASE_CFN_ACOSH:
5791 CASE_CFN_ASIN:
5792 CASE_CFN_ASINH:
5793 CASE_CFN_ATAN:
5794 CASE_CFN_ATANH:
5795 CASE_CFN_CBRT:
5796 CASE_CFN_COS:
5797 CASE_CFN_COSH:
5798 CASE_CFN_ERF:
5799 CASE_CFN_ERFC:
5800 CASE_CFN_EXP2:
5801 CASE_CFN_EXP:
5802 CASE_CFN_EXPM1:
5803 CASE_CFN_LGAMMA:
5804 CASE_CFN_LOG10:
5805 CASE_CFN_LOG1P:
5806 CASE_CFN_LOG2:
5807 CASE_CFN_LOG:
5808 CASE_CFN_SIN:
5809 CASE_CFN_SINH:
5810 CASE_CFN_SQRT:
5811 CASE_CFN_TAN:
5812 CASE_CFN_TANH:
5813 if (el_mode == DFmode && n == 2)
5815 bdecl = mathfn_built_in (double_type_node, fn);
5816 suffix = "d2"; /* pow -> powd2 */
5818 else if (el_mode == SFmode && n == 4)
5820 bdecl = mathfn_built_in (float_type_node, fn);
5821 suffix = "4"; /* powf -> powf4 */
5823 else
5824 return NULL_TREE;
5825 if (!bdecl)
5826 return NULL_TREE;
5827 break;
5829 default:
5830 return NULL_TREE;
5833 gcc_assert (suffix != NULL);
5834 bname = IDENTIFIER_POINTER (DECL_NAME (bdecl));
5835 if (!bname)
5836 return NULL_TREE;
5838 strcpy (name, bname + sizeof ("__builtin_") - 1);
5839 strcat (name, suffix);
5841 if (n_args == 1)
5842 fntype = build_function_type_list (type_out, type_in, NULL);
5843 else if (n_args == 2)
5844 fntype = build_function_type_list (type_out, type_in, type_in, NULL);
5845 else
5846 gcc_unreachable ();
5848 /* Build a function declaration for the vectorized function. */
5849 new_fndecl = build_decl (BUILTINS_LOCATION,
5850 FUNCTION_DECL, get_identifier (name), fntype);
5851 TREE_PUBLIC (new_fndecl) = 1;
5852 DECL_EXTERNAL (new_fndecl) = 1;
5853 DECL_IS_NOVOPS (new_fndecl) = 1;
5854 TREE_READONLY (new_fndecl) = 1;
5856 return new_fndecl;
5859 /* Returns a function decl for a vectorized version of the builtin function
5860 with builtin function code FN and the result vector type TYPE, or NULL_TREE
5861 if it is not available. */
5863 static tree
5864 rs6000_builtin_vectorized_function (unsigned int fn, tree type_out,
5865 tree type_in)
5867 machine_mode in_mode, out_mode;
5868 int in_n, out_n;
5870 if (TARGET_DEBUG_BUILTIN)
5871 fprintf (stderr, "rs6000_builtin_vectorized_function (%s, %s, %s)\n",
5872 combined_fn_name (combined_fn (fn)),
5873 GET_MODE_NAME (TYPE_MODE (type_out)),
5874 GET_MODE_NAME (TYPE_MODE (type_in)));
5876 if (TREE_CODE (type_out) != VECTOR_TYPE
5877 || TREE_CODE (type_in) != VECTOR_TYPE)
5878 return NULL_TREE;
5880 out_mode = TYPE_MODE (TREE_TYPE (type_out));
5881 out_n = TYPE_VECTOR_SUBPARTS (type_out);
5882 in_mode = TYPE_MODE (TREE_TYPE (type_in));
5883 in_n = TYPE_VECTOR_SUBPARTS (type_in);
5885 switch (fn)
5887 CASE_CFN_COPYSIGN:
5888 if (VECTOR_UNIT_VSX_P (V2DFmode)
5889 && out_mode == DFmode && out_n == 2
5890 && in_mode == DFmode && in_n == 2)
5891 return rs6000_builtin_decls[VSX_BUILTIN_CPSGNDP];
5892 if (VECTOR_UNIT_VSX_P (V4SFmode)
5893 && out_mode == SFmode && out_n == 4
5894 && in_mode == SFmode && in_n == 4)
5895 return rs6000_builtin_decls[VSX_BUILTIN_CPSGNSP];
5896 if (VECTOR_UNIT_ALTIVEC_P (V4SFmode)
5897 && out_mode == SFmode && out_n == 4
5898 && in_mode == SFmode && in_n == 4)
5899 return rs6000_builtin_decls[ALTIVEC_BUILTIN_COPYSIGN_V4SF];
5900 break;
5901 CASE_CFN_CEIL:
5902 if (VECTOR_UNIT_VSX_P (V2DFmode)
5903 && out_mode == DFmode && out_n == 2
5904 && in_mode == DFmode && in_n == 2)
5905 return rs6000_builtin_decls[VSX_BUILTIN_XVRDPIP];
5906 if (VECTOR_UNIT_VSX_P (V4SFmode)
5907 && out_mode == SFmode && out_n == 4
5908 && in_mode == SFmode && in_n == 4)
5909 return rs6000_builtin_decls[VSX_BUILTIN_XVRSPIP];
5910 if (VECTOR_UNIT_ALTIVEC_P (V4SFmode)
5911 && out_mode == SFmode && out_n == 4
5912 && in_mode == SFmode && in_n == 4)
5913 return rs6000_builtin_decls[ALTIVEC_BUILTIN_VRFIP];
5914 break;
5915 CASE_CFN_FLOOR:
5916 if (VECTOR_UNIT_VSX_P (V2DFmode)
5917 && out_mode == DFmode && out_n == 2
5918 && in_mode == DFmode && in_n == 2)
5919 return rs6000_builtin_decls[VSX_BUILTIN_XVRDPIM];
5920 if (VECTOR_UNIT_VSX_P (V4SFmode)
5921 && out_mode == SFmode && out_n == 4
5922 && in_mode == SFmode && in_n == 4)
5923 return rs6000_builtin_decls[VSX_BUILTIN_XVRSPIM];
5924 if (VECTOR_UNIT_ALTIVEC_P (V4SFmode)
5925 && out_mode == SFmode && out_n == 4
5926 && in_mode == SFmode && in_n == 4)
5927 return rs6000_builtin_decls[ALTIVEC_BUILTIN_VRFIM];
5928 break;
5929 CASE_CFN_FMA:
5930 if (VECTOR_UNIT_VSX_P (V2DFmode)
5931 && out_mode == DFmode && out_n == 2
5932 && in_mode == DFmode && in_n == 2)
5933 return rs6000_builtin_decls[VSX_BUILTIN_XVMADDDP];
5934 if (VECTOR_UNIT_VSX_P (V4SFmode)
5935 && out_mode == SFmode && out_n == 4
5936 && in_mode == SFmode && in_n == 4)
5937 return rs6000_builtin_decls[VSX_BUILTIN_XVMADDSP];
5938 if (VECTOR_UNIT_ALTIVEC_P (V4SFmode)
5939 && out_mode == SFmode && out_n == 4
5940 && in_mode == SFmode && in_n == 4)
5941 return rs6000_builtin_decls[ALTIVEC_BUILTIN_VMADDFP];
5942 break;
5943 CASE_CFN_TRUNC:
5944 if (VECTOR_UNIT_VSX_P (V2DFmode)
5945 && out_mode == DFmode && out_n == 2
5946 && in_mode == DFmode && in_n == 2)
5947 return rs6000_builtin_decls[VSX_BUILTIN_XVRDPIZ];
5948 if (VECTOR_UNIT_VSX_P (V4SFmode)
5949 && out_mode == SFmode && out_n == 4
5950 && in_mode == SFmode && in_n == 4)
5951 return rs6000_builtin_decls[VSX_BUILTIN_XVRSPIZ];
5952 if (VECTOR_UNIT_ALTIVEC_P (V4SFmode)
5953 && out_mode == SFmode && out_n == 4
5954 && in_mode == SFmode && in_n == 4)
5955 return rs6000_builtin_decls[ALTIVEC_BUILTIN_VRFIZ];
5956 break;
5957 CASE_CFN_NEARBYINT:
5958 if (VECTOR_UNIT_VSX_P (V2DFmode)
5959 && flag_unsafe_math_optimizations
5960 && out_mode == DFmode && out_n == 2
5961 && in_mode == DFmode && in_n == 2)
5962 return rs6000_builtin_decls[VSX_BUILTIN_XVRDPI];
5963 if (VECTOR_UNIT_VSX_P (V4SFmode)
5964 && flag_unsafe_math_optimizations
5965 && out_mode == SFmode && out_n == 4
5966 && in_mode == SFmode && in_n == 4)
5967 return rs6000_builtin_decls[VSX_BUILTIN_XVRSPI];
5968 break;
5969 CASE_CFN_RINT:
5970 if (VECTOR_UNIT_VSX_P (V2DFmode)
5971 && !flag_trapping_math
5972 && out_mode == DFmode && out_n == 2
5973 && in_mode == DFmode && in_n == 2)
5974 return rs6000_builtin_decls[VSX_BUILTIN_XVRDPIC];
5975 if (VECTOR_UNIT_VSX_P (V4SFmode)
5976 && !flag_trapping_math
5977 && out_mode == SFmode && out_n == 4
5978 && in_mode == SFmode && in_n == 4)
5979 return rs6000_builtin_decls[VSX_BUILTIN_XVRSPIC];
5980 break;
5981 default:
5982 break;
5985 /* Generate calls to libmass if appropriate. */
5986 if (rs6000_veclib_handler)
5987 return rs6000_veclib_handler (combined_fn (fn), type_out, type_in);
5989 return NULL_TREE;
5992 /* Implement TARGET_VECTORIZE_BUILTIN_MD_VECTORIZED_FUNCTION. */
5994 static tree
5995 rs6000_builtin_md_vectorized_function (tree fndecl, tree type_out,
5996 tree type_in)
5998 machine_mode in_mode, out_mode;
5999 int in_n, out_n;
6001 if (TARGET_DEBUG_BUILTIN)
6002 fprintf (stderr, "rs6000_builtin_md_vectorized_function (%s, %s, %s)\n",
6003 IDENTIFIER_POINTER (DECL_NAME (fndecl)),
6004 GET_MODE_NAME (TYPE_MODE (type_out)),
6005 GET_MODE_NAME (TYPE_MODE (type_in)));
6007 if (TREE_CODE (type_out) != VECTOR_TYPE
6008 || TREE_CODE (type_in) != VECTOR_TYPE)
6009 return NULL_TREE;
6011 out_mode = TYPE_MODE (TREE_TYPE (type_out));
6012 out_n = TYPE_VECTOR_SUBPARTS (type_out);
6013 in_mode = TYPE_MODE (TREE_TYPE (type_in));
6014 in_n = TYPE_VECTOR_SUBPARTS (type_in);
6016 enum rs6000_builtins fn
6017 = (enum rs6000_builtins) DECL_FUNCTION_CODE (fndecl);
6018 switch (fn)
6020 case RS6000_BUILTIN_RSQRTF:
6021 if (VECTOR_UNIT_ALTIVEC_OR_VSX_P (V4SFmode)
6022 && out_mode == SFmode && out_n == 4
6023 && in_mode == SFmode && in_n == 4)
6024 return rs6000_builtin_decls[ALTIVEC_BUILTIN_VRSQRTFP];
6025 break;
6026 case RS6000_BUILTIN_RSQRT:
6027 if (VECTOR_UNIT_VSX_P (V2DFmode)
6028 && out_mode == DFmode && out_n == 2
6029 && in_mode == DFmode && in_n == 2)
6030 return rs6000_builtin_decls[VSX_BUILTIN_RSQRT_2DF];
6031 break;
6032 case RS6000_BUILTIN_RECIPF:
6033 if (VECTOR_UNIT_ALTIVEC_OR_VSX_P (V4SFmode)
6034 && out_mode == SFmode && out_n == 4
6035 && in_mode == SFmode && in_n == 4)
6036 return rs6000_builtin_decls[ALTIVEC_BUILTIN_VRECIPFP];
6037 break;
6038 case RS6000_BUILTIN_RECIP:
6039 if (VECTOR_UNIT_VSX_P (V2DFmode)
6040 && out_mode == DFmode && out_n == 2
6041 && in_mode == DFmode && in_n == 2)
6042 return rs6000_builtin_decls[VSX_BUILTIN_RECIP_V2DF];
6043 break;
6044 default:
6045 break;
6047 return NULL_TREE;
6050 /* Default CPU string for rs6000*_file_start functions. */
6051 static const char *rs6000_default_cpu;
6053 /* Do anything needed at the start of the asm file. */
6055 static void
6056 rs6000_file_start (void)
6058 char buffer[80];
6059 const char *start = buffer;
6060 FILE *file = asm_out_file;
6062 rs6000_default_cpu = TARGET_CPU_DEFAULT;
6064 default_file_start ();
6066 if (flag_verbose_asm)
6068 sprintf (buffer, "\n%s rs6000/powerpc options:", ASM_COMMENT_START);
6070 if (rs6000_default_cpu != 0 && rs6000_default_cpu[0] != '\0')
6072 fprintf (file, "%s --with-cpu=%s", start, rs6000_default_cpu);
6073 start = "";
6076 if (global_options_set.x_rs6000_cpu_index)
6078 fprintf (file, "%s -mcpu=%s", start,
6079 processor_target_table[rs6000_cpu_index].name);
6080 start = "";
6083 if (global_options_set.x_rs6000_tune_index)
6085 fprintf (file, "%s -mtune=%s", start,
6086 processor_target_table[rs6000_tune_index].name);
6087 start = "";
6090 if (PPC405_ERRATUM77)
6092 fprintf (file, "%s PPC405CR_ERRATUM77", start);
6093 start = "";
6096 #ifdef USING_ELFOS_H
6097 switch (rs6000_sdata)
6099 case SDATA_NONE: fprintf (file, "%s -msdata=none", start); start = ""; break;
6100 case SDATA_DATA: fprintf (file, "%s -msdata=data", start); start = ""; break;
6101 case SDATA_SYSV: fprintf (file, "%s -msdata=sysv", start); start = ""; break;
6102 case SDATA_EABI: fprintf (file, "%s -msdata=eabi", start); start = ""; break;
6105 if (rs6000_sdata && g_switch_value)
6107 fprintf (file, "%s -G %d", start,
6108 g_switch_value);
6109 start = "";
6111 #endif
6113 if (*start == '\0')
6114 putc ('\n', file);
6117 #ifdef USING_ELFOS_H
6118 if (!(rs6000_default_cpu && rs6000_default_cpu[0])
6119 && !global_options_set.x_rs6000_cpu_index)
6121 fputs ("\t.machine ", asm_out_file);
6122 if ((rs6000_isa_flags & OPTION_MASK_MODULO) != 0)
6123 fputs ("power9\n", asm_out_file);
6124 else if ((rs6000_isa_flags & OPTION_MASK_DIRECT_MOVE) != 0)
6125 fputs ("power8\n", asm_out_file);
6126 else if ((rs6000_isa_flags & OPTION_MASK_POPCNTD) != 0)
6127 fputs ("power7\n", asm_out_file);
6128 else if ((rs6000_isa_flags & OPTION_MASK_CMPB) != 0)
6129 fputs ("power6\n", asm_out_file);
6130 else if ((rs6000_isa_flags & OPTION_MASK_POPCNTB) != 0)
6131 fputs ("power5\n", asm_out_file);
6132 else if ((rs6000_isa_flags & OPTION_MASK_MFCRF) != 0)
6133 fputs ("power4\n", asm_out_file);
6134 else if ((rs6000_isa_flags & OPTION_MASK_POWERPC64) != 0)
6135 fputs ("ppc64\n", asm_out_file);
6136 else
6137 fputs ("ppc\n", asm_out_file);
6139 #endif
6141 if (DEFAULT_ABI == ABI_ELFv2)
6142 fprintf (file, "\t.abiversion 2\n");
6146 /* Return nonzero if this function is known to have a null epilogue. */
6149 direct_return (void)
6151 if (reload_completed)
6153 rs6000_stack_t *info = rs6000_stack_info ();
6155 if (info->first_gp_reg_save == 32
6156 && info->first_fp_reg_save == 64
6157 && info->first_altivec_reg_save == LAST_ALTIVEC_REGNO + 1
6158 && ! info->lr_save_p
6159 && ! info->cr_save_p
6160 && info->vrsave_size == 0
6161 && ! info->push_p)
6162 return 1;
6165 return 0;
6168 /* Return the number of instructions it takes to form a constant in an
6169 integer register. */
6172 num_insns_constant_wide (HOST_WIDE_INT value)
6174 /* signed constant loadable with addi */
6175 if (((unsigned HOST_WIDE_INT) value + 0x8000) < 0x10000)
6176 return 1;
6178 /* constant loadable with addis */
6179 else if ((value & 0xffff) == 0
6180 && (value >> 31 == -1 || value >> 31 == 0))
6181 return 1;
6183 else if (TARGET_POWERPC64)
6185 HOST_WIDE_INT low = ((value & 0xffffffff) ^ 0x80000000) - 0x80000000;
6186 HOST_WIDE_INT high = value >> 31;
6188 if (high == 0 || high == -1)
6189 return 2;
6191 high >>= 1;
6193 if (low == 0)
6194 return num_insns_constant_wide (high) + 1;
6195 else if (high == 0)
6196 return num_insns_constant_wide (low) + 1;
6197 else
6198 return (num_insns_constant_wide (high)
6199 + num_insns_constant_wide (low) + 1);
6202 else
6203 return 2;
6207 num_insns_constant (rtx op, machine_mode mode)
6209 HOST_WIDE_INT low, high;
6211 switch (GET_CODE (op))
6213 case CONST_INT:
6214 if ((INTVAL (op) >> 31) != 0 && (INTVAL (op) >> 31) != -1
6215 && rs6000_is_valid_and_mask (op, mode))
6216 return 2;
6217 else
6218 return num_insns_constant_wide (INTVAL (op));
6220 case CONST_WIDE_INT:
6222 int i;
6223 int ins = CONST_WIDE_INT_NUNITS (op) - 1;
6224 for (i = 0; i < CONST_WIDE_INT_NUNITS (op); i++)
6225 ins += num_insns_constant_wide (CONST_WIDE_INT_ELT (op, i));
6226 return ins;
6229 case CONST_DOUBLE:
6230 if (mode == SFmode || mode == SDmode)
6232 long l;
6234 if (DECIMAL_FLOAT_MODE_P (mode))
6235 REAL_VALUE_TO_TARGET_DECIMAL32
6236 (*CONST_DOUBLE_REAL_VALUE (op), l);
6237 else
6238 REAL_VALUE_TO_TARGET_SINGLE (*CONST_DOUBLE_REAL_VALUE (op), l);
6239 return num_insns_constant_wide ((HOST_WIDE_INT) l);
6242 long l[2];
6243 if (DECIMAL_FLOAT_MODE_P (mode))
6244 REAL_VALUE_TO_TARGET_DECIMAL64 (*CONST_DOUBLE_REAL_VALUE (op), l);
6245 else
6246 REAL_VALUE_TO_TARGET_DOUBLE (*CONST_DOUBLE_REAL_VALUE (op), l);
6247 high = l[WORDS_BIG_ENDIAN == 0];
6248 low = l[WORDS_BIG_ENDIAN != 0];
6250 if (TARGET_32BIT)
6251 return (num_insns_constant_wide (low)
6252 + num_insns_constant_wide (high));
6253 else
6255 if ((high == 0 && low >= 0)
6256 || (high == -1 && low < 0))
6257 return num_insns_constant_wide (low);
6259 else if (rs6000_is_valid_and_mask (op, mode))
6260 return 2;
6262 else if (low == 0)
6263 return num_insns_constant_wide (high) + 1;
6265 else
6266 return (num_insns_constant_wide (high)
6267 + num_insns_constant_wide (low) + 1);
6270 default:
6271 gcc_unreachable ();
6275 /* Interpret element ELT of the CONST_VECTOR OP as an integer value.
6276 If the mode of OP is MODE_VECTOR_INT, this simply returns the
6277 corresponding element of the vector, but for V4SFmode and V2SFmode,
6278 the corresponding "float" is interpreted as an SImode integer. */
6280 HOST_WIDE_INT
6281 const_vector_elt_as_int (rtx op, unsigned int elt)
6283 rtx tmp;
6285 /* We can't handle V2DImode and V2DFmode vector constants here yet. */
6286 gcc_assert (GET_MODE (op) != V2DImode
6287 && GET_MODE (op) != V2DFmode);
6289 tmp = CONST_VECTOR_ELT (op, elt);
6290 if (GET_MODE (op) == V4SFmode
6291 || GET_MODE (op) == V2SFmode)
6292 tmp = gen_lowpart (SImode, tmp);
6293 return INTVAL (tmp);
6296 /* Return true if OP can be synthesized with a particular vspltisb, vspltish
6297 or vspltisw instruction. OP is a CONST_VECTOR. Which instruction is used
6298 depends on STEP and COPIES, one of which will be 1. If COPIES > 1,
6299 all items are set to the same value and contain COPIES replicas of the
6300 vsplt's operand; if STEP > 1, one in STEP elements is set to the vsplt's
6301 operand and the others are set to the value of the operand's msb. */
6303 static bool
6304 vspltis_constant (rtx op, unsigned step, unsigned copies)
6306 machine_mode mode = GET_MODE (op);
6307 machine_mode inner = GET_MODE_INNER (mode);
6309 unsigned i;
6310 unsigned nunits;
6311 unsigned bitsize;
6312 unsigned mask;
6314 HOST_WIDE_INT val;
6315 HOST_WIDE_INT splat_val;
6316 HOST_WIDE_INT msb_val;
6318 if (mode == V2DImode || mode == V2DFmode || mode == V1TImode)
6319 return false;
6321 nunits = GET_MODE_NUNITS (mode);
6322 bitsize = GET_MODE_BITSIZE (inner);
6323 mask = GET_MODE_MASK (inner);
6325 val = const_vector_elt_as_int (op, BYTES_BIG_ENDIAN ? nunits - 1 : 0);
6326 splat_val = val;
6327 msb_val = val >= 0 ? 0 : -1;
6329 /* Construct the value to be splatted, if possible. If not, return 0. */
6330 for (i = 2; i <= copies; i *= 2)
6332 HOST_WIDE_INT small_val;
6333 bitsize /= 2;
6334 small_val = splat_val >> bitsize;
6335 mask >>= bitsize;
6336 if (splat_val != ((HOST_WIDE_INT)
6337 ((unsigned HOST_WIDE_INT) small_val << bitsize)
6338 | (small_val & mask)))
6339 return false;
6340 splat_val = small_val;
6343 /* Check if SPLAT_VAL can really be the operand of a vspltis[bhw]. */
6344 if (EASY_VECTOR_15 (splat_val))
6347 /* Also check if we can splat, and then add the result to itself. Do so if
6348 the value is positive, of if the splat instruction is using OP's mode;
6349 for splat_val < 0, the splat and the add should use the same mode. */
6350 else if (EASY_VECTOR_15_ADD_SELF (splat_val)
6351 && (splat_val >= 0 || (step == 1 && copies == 1)))
6354 /* Also check if are loading up the most significant bit which can be done by
6355 loading up -1 and shifting the value left by -1. */
6356 else if (EASY_VECTOR_MSB (splat_val, inner))
6359 else
6360 return false;
6362 /* Check if VAL is present in every STEP-th element, and the
6363 other elements are filled with its most significant bit. */
6364 for (i = 1; i < nunits; ++i)
6366 HOST_WIDE_INT desired_val;
6367 unsigned elt = BYTES_BIG_ENDIAN ? nunits - 1 - i : i;
6368 if ((i & (step - 1)) == 0)
6369 desired_val = val;
6370 else
6371 desired_val = msb_val;
6373 if (desired_val != const_vector_elt_as_int (op, elt))
6374 return false;
6377 return true;
6380 /* Like vsplitis_constant, but allow the value to be shifted left with a VSLDOI
6381 instruction, filling in the bottom elements with 0 or -1.
6383 Return 0 if the constant cannot be generated with VSLDOI. Return positive
6384 for the number of zeroes to shift in, or negative for the number of 0xff
6385 bytes to shift in.
6387 OP is a CONST_VECTOR. */
6390 vspltis_shifted (rtx op)
6392 machine_mode mode = GET_MODE (op);
6393 machine_mode inner = GET_MODE_INNER (mode);
6395 unsigned i, j;
6396 unsigned nunits;
6397 unsigned mask;
6399 HOST_WIDE_INT val;
6401 if (mode != V16QImode && mode != V8HImode && mode != V4SImode)
6402 return false;
6404 /* We need to create pseudo registers to do the shift, so don't recognize
6405 shift vector constants after reload. */
6406 if (!can_create_pseudo_p ())
6407 return false;
6409 nunits = GET_MODE_NUNITS (mode);
6410 mask = GET_MODE_MASK (inner);
6412 val = const_vector_elt_as_int (op, BYTES_BIG_ENDIAN ? 0 : nunits - 1);
6414 /* Check if the value can really be the operand of a vspltis[bhw]. */
6415 if (EASY_VECTOR_15 (val))
6418 /* Also check if we are loading up the most significant bit which can be done
6419 by loading up -1 and shifting the value left by -1. */
6420 else if (EASY_VECTOR_MSB (val, inner))
6423 else
6424 return 0;
6426 /* Check if VAL is present in every STEP-th element until we find elements
6427 that are 0 or all 1 bits. */
6428 for (i = 1; i < nunits; ++i)
6430 unsigned elt = BYTES_BIG_ENDIAN ? i : nunits - 1 - i;
6431 HOST_WIDE_INT elt_val = const_vector_elt_as_int (op, elt);
6433 /* If the value isn't the splat value, check for the remaining elements
6434 being 0/-1. */
6435 if (val != elt_val)
6437 if (elt_val == 0)
6439 for (j = i+1; j < nunits; ++j)
6441 unsigned elt2 = BYTES_BIG_ENDIAN ? j : nunits - 1 - j;
6442 if (const_vector_elt_as_int (op, elt2) != 0)
6443 return 0;
6446 return (nunits - i) * GET_MODE_SIZE (inner);
6449 else if ((elt_val & mask) == mask)
6451 for (j = i+1; j < nunits; ++j)
6453 unsigned elt2 = BYTES_BIG_ENDIAN ? j : nunits - 1 - j;
6454 if ((const_vector_elt_as_int (op, elt2) & mask) != mask)
6455 return 0;
6458 return -((nunits - i) * GET_MODE_SIZE (inner));
6461 else
6462 return 0;
6466 /* If all elements are equal, we don't need to do VLSDOI. */
6467 return 0;
6471 /* Return true if OP is of the given MODE and can be synthesized
6472 with a vspltisb, vspltish or vspltisw. */
6474 bool
6475 easy_altivec_constant (rtx op, machine_mode mode)
6477 unsigned step, copies;
6479 if (mode == VOIDmode)
6480 mode = GET_MODE (op);
6481 else if (mode != GET_MODE (op))
6482 return false;
6484 /* V2DI/V2DF was added with VSX. Only allow 0 and all 1's as easy
6485 constants. */
6486 if (mode == V2DFmode)
6487 return zero_constant (op, mode);
6489 else if (mode == V2DImode)
6491 if (GET_CODE (CONST_VECTOR_ELT (op, 0)) != CONST_INT
6492 || GET_CODE (CONST_VECTOR_ELT (op, 1)) != CONST_INT)
6493 return false;
6495 if (zero_constant (op, mode))
6496 return true;
6498 if (INTVAL (CONST_VECTOR_ELT (op, 0)) == -1
6499 && INTVAL (CONST_VECTOR_ELT (op, 1)) == -1)
6500 return true;
6502 return false;
6505 /* V1TImode is a special container for TImode. Ignore for now. */
6506 else if (mode == V1TImode)
6507 return false;
6509 /* Start with a vspltisw. */
6510 step = GET_MODE_NUNITS (mode) / 4;
6511 copies = 1;
6513 if (vspltis_constant (op, step, copies))
6514 return true;
6516 /* Then try with a vspltish. */
6517 if (step == 1)
6518 copies <<= 1;
6519 else
6520 step >>= 1;
6522 if (vspltis_constant (op, step, copies))
6523 return true;
6525 /* And finally a vspltisb. */
6526 if (step == 1)
6527 copies <<= 1;
6528 else
6529 step >>= 1;
6531 if (vspltis_constant (op, step, copies))
6532 return true;
6534 if (vspltis_shifted (op) != 0)
6535 return true;
6537 return false;
6540 /* Generate a VEC_DUPLICATE representing a vspltis[bhw] instruction whose
6541 result is OP. Abort if it is not possible. */
6544 gen_easy_altivec_constant (rtx op)
6546 machine_mode mode = GET_MODE (op);
6547 int nunits = GET_MODE_NUNITS (mode);
6548 rtx val = CONST_VECTOR_ELT (op, BYTES_BIG_ENDIAN ? nunits - 1 : 0);
6549 unsigned step = nunits / 4;
6550 unsigned copies = 1;
6552 /* Start with a vspltisw. */
6553 if (vspltis_constant (op, step, copies))
6554 return gen_rtx_VEC_DUPLICATE (V4SImode, gen_lowpart (SImode, val));
6556 /* Then try with a vspltish. */
6557 if (step == 1)
6558 copies <<= 1;
6559 else
6560 step >>= 1;
6562 if (vspltis_constant (op, step, copies))
6563 return gen_rtx_VEC_DUPLICATE (V8HImode, gen_lowpart (HImode, val));
6565 /* And finally a vspltisb. */
6566 if (step == 1)
6567 copies <<= 1;
6568 else
6569 step >>= 1;
6571 if (vspltis_constant (op, step, copies))
6572 return gen_rtx_VEC_DUPLICATE (V16QImode, gen_lowpart (QImode, val));
6574 gcc_unreachable ();
6577 /* Return true if OP is of the given MODE and can be synthesized with ISA 3.0
6578 instructions (xxspltib, vupkhsb/vextsb2w/vextb2d).
6580 Return the number of instructions needed (1 or 2) into the address pointed
6581 via NUM_INSNS_PTR.
6583 Return the constant that is being split via CONSTANT_PTR. */
6585 bool
6586 xxspltib_constant_p (rtx op,
6587 machine_mode mode,
6588 int *num_insns_ptr,
6589 int *constant_ptr)
6591 size_t nunits = GET_MODE_NUNITS (mode);
6592 size_t i;
6593 HOST_WIDE_INT value;
6594 rtx element;
6596 /* Set the returned values to out of bound values. */
6597 *num_insns_ptr = -1;
6598 *constant_ptr = 256;
6600 if (!TARGET_P9_VECTOR)
6601 return false;
6603 if (mode == VOIDmode)
6604 mode = GET_MODE (op);
6606 else if (mode != GET_MODE (op) && GET_MODE (op) != VOIDmode)
6607 return false;
6609 /* Handle (vec_duplicate <constant>). */
6610 if (GET_CODE (op) == VEC_DUPLICATE)
6612 if (mode != V16QImode && mode != V8HImode && mode != V4SImode
6613 && mode != V2DImode)
6614 return false;
6616 element = XEXP (op, 0);
6617 if (!CONST_INT_P (element))
6618 return false;
6620 value = INTVAL (element);
6621 if (!IN_RANGE (value, -128, 127))
6622 return false;
6625 /* Handle (const_vector [...]). */
6626 else if (GET_CODE (op) == CONST_VECTOR)
6628 if (mode != V16QImode && mode != V8HImode && mode != V4SImode
6629 && mode != V2DImode)
6630 return false;
6632 element = CONST_VECTOR_ELT (op, 0);
6633 if (!CONST_INT_P (element))
6634 return false;
6636 value = INTVAL (element);
6637 if (!IN_RANGE (value, -128, 127))
6638 return false;
6640 for (i = 1; i < nunits; i++)
6642 element = CONST_VECTOR_ELT (op, i);
6643 if (!CONST_INT_P (element))
6644 return false;
6646 if (value != INTVAL (element))
6647 return false;
6651 /* Handle integer constants being loaded into the upper part of the VSX
6652 register as a scalar. If the value isn't 0/-1, only allow it if the mode
6653 can go in Altivec registers. Prefer VSPLTISW/VUPKHSW over XXSPLITIB. */
6654 else if (CONST_INT_P (op))
6656 if (!SCALAR_INT_MODE_P (mode))
6657 return false;
6659 value = INTVAL (op);
6660 if (!IN_RANGE (value, -128, 127))
6661 return false;
6663 if (!IN_RANGE (value, -1, 0))
6665 if (!(reg_addr[mode].addr_mask[RELOAD_REG_VMX] & RELOAD_REG_VALID))
6666 return false;
6668 if (EASY_VECTOR_15 (value))
6669 return false;
6673 else
6674 return false;
6676 /* See if we could generate vspltisw/vspltish directly instead of xxspltib +
6677 sign extend. Special case 0/-1 to allow getting any VSX register instead
6678 of an Altivec register. */
6679 if ((mode == V4SImode || mode == V8HImode) && !IN_RANGE (value, -1, 0)
6680 && EASY_VECTOR_15 (value))
6681 return false;
6683 /* Return # of instructions and the constant byte for XXSPLTIB. */
6684 if (mode == V16QImode)
6685 *num_insns_ptr = 1;
6687 else if (IN_RANGE (value, -1, 0))
6688 *num_insns_ptr = 1;
6690 else
6691 *num_insns_ptr = 2;
6693 *constant_ptr = (int) value;
6694 return true;
6697 const char *
6698 output_vec_const_move (rtx *operands)
6700 int shift;
6701 machine_mode mode;
6702 rtx dest, vec;
6704 dest = operands[0];
6705 vec = operands[1];
6706 mode = GET_MODE (dest);
6708 if (TARGET_VSX)
6710 bool dest_vmx_p = ALTIVEC_REGNO_P (REGNO (dest));
6711 int xxspltib_value = 256;
6712 int num_insns = -1;
6714 if (zero_constant (vec, mode))
6716 if (TARGET_P9_VECTOR)
6717 return "xxspltib %x0,0";
6719 else if (dest_vmx_p)
6720 return "vspltisw %0,0";
6722 else
6723 return "xxlxor %x0,%x0,%x0";
6726 if (all_ones_constant (vec, mode))
6728 if (TARGET_P9_VECTOR)
6729 return "xxspltib %x0,255";
6731 else if (dest_vmx_p)
6732 return "vspltisw %0,-1";
6734 else if (TARGET_P8_VECTOR)
6735 return "xxlorc %x0,%x0,%x0";
6737 else
6738 gcc_unreachable ();
6741 if (TARGET_P9_VECTOR
6742 && xxspltib_constant_p (vec, mode, &num_insns, &xxspltib_value))
6744 if (num_insns == 1)
6746 operands[2] = GEN_INT (xxspltib_value & 0xff);
6747 return "xxspltib %x0,%2";
6750 return "#";
6754 if (TARGET_ALTIVEC)
6756 rtx splat_vec;
6758 gcc_assert (ALTIVEC_REGNO_P (REGNO (dest)));
6759 if (zero_constant (vec, mode))
6760 return "vspltisw %0,0";
6762 if (all_ones_constant (vec, mode))
6763 return "vspltisw %0,-1";
6765 /* Do we need to construct a value using VSLDOI? */
6766 shift = vspltis_shifted (vec);
6767 if (shift != 0)
6768 return "#";
6770 splat_vec = gen_easy_altivec_constant (vec);
6771 gcc_assert (GET_CODE (splat_vec) == VEC_DUPLICATE);
6772 operands[1] = XEXP (splat_vec, 0);
6773 if (!EASY_VECTOR_15 (INTVAL (operands[1])))
6774 return "#";
6776 switch (GET_MODE (splat_vec))
6778 case E_V4SImode:
6779 return "vspltisw %0,%1";
6781 case E_V8HImode:
6782 return "vspltish %0,%1";
6784 case E_V16QImode:
6785 return "vspltisb %0,%1";
6787 default:
6788 gcc_unreachable ();
6792 gcc_unreachable ();
6795 /* Initialize TARGET of vector PAIRED to VALS. */
6797 void
6798 paired_expand_vector_init (rtx target, rtx vals)
6800 machine_mode mode = GET_MODE (target);
6801 int n_elts = GET_MODE_NUNITS (mode);
6802 int n_var = 0;
6803 rtx x, new_rtx, tmp, constant_op, op1, op2;
6804 int i;
6806 for (i = 0; i < n_elts; ++i)
6808 x = XVECEXP (vals, 0, i);
6809 if (!(CONST_SCALAR_INT_P (x) || CONST_DOUBLE_P (x) || CONST_FIXED_P (x)))
6810 ++n_var;
6812 if (n_var == 0)
6814 /* Load from constant pool. */
6815 emit_move_insn (target, gen_rtx_CONST_VECTOR (mode, XVEC (vals, 0)));
6816 return;
6819 if (n_var == 2)
6821 /* The vector is initialized only with non-constants. */
6822 new_rtx = gen_rtx_VEC_CONCAT (V2SFmode, XVECEXP (vals, 0, 0),
6823 XVECEXP (vals, 0, 1));
6825 emit_move_insn (target, new_rtx);
6826 return;
6829 /* One field is non-constant and the other one is a constant. Load the
6830 constant from the constant pool and use ps_merge instruction to
6831 construct the whole vector. */
6832 op1 = XVECEXP (vals, 0, 0);
6833 op2 = XVECEXP (vals, 0, 1);
6835 constant_op = (CONSTANT_P (op1)) ? op1 : op2;
6837 tmp = gen_reg_rtx (GET_MODE (constant_op));
6838 emit_move_insn (tmp, constant_op);
6840 if (CONSTANT_P (op1))
6841 new_rtx = gen_rtx_VEC_CONCAT (V2SFmode, tmp, op2);
6842 else
6843 new_rtx = gen_rtx_VEC_CONCAT (V2SFmode, op1, tmp);
6845 emit_move_insn (target, new_rtx);
6848 void
6849 paired_expand_vector_move (rtx operands[])
6851 rtx op0 = operands[0], op1 = operands[1];
6853 emit_move_insn (op0, op1);
6856 /* Emit vector compare for code RCODE. DEST is destination, OP1 and
6857 OP2 are two VEC_COND_EXPR operands, CC_OP0 and CC_OP1 are the two
6858 operands for the relation operation COND. This is a recursive
6859 function. */
6861 static void
6862 paired_emit_vector_compare (enum rtx_code rcode,
6863 rtx dest, rtx op0, rtx op1,
6864 rtx cc_op0, rtx cc_op1)
6866 rtx tmp = gen_reg_rtx (V2SFmode);
6867 rtx tmp1, max, min;
6869 gcc_assert (TARGET_PAIRED_FLOAT);
6870 gcc_assert (GET_MODE (op0) == GET_MODE (op1));
6872 switch (rcode)
6874 case LT:
6875 case LTU:
6876 paired_emit_vector_compare (GE, dest, op1, op0, cc_op0, cc_op1);
6877 return;
6878 case GE:
6879 case GEU:
6880 emit_insn (gen_subv2sf3 (tmp, cc_op0, cc_op1));
6881 emit_insn (gen_selv2sf4 (dest, tmp, op0, op1, CONST0_RTX (SFmode)));
6882 return;
6883 case LE:
6884 case LEU:
6885 paired_emit_vector_compare (GE, dest, op0, op1, cc_op1, cc_op0);
6886 return;
6887 case GT:
6888 paired_emit_vector_compare (LE, dest, op1, op0, cc_op0, cc_op1);
6889 return;
6890 case EQ:
6891 tmp1 = gen_reg_rtx (V2SFmode);
6892 max = gen_reg_rtx (V2SFmode);
6893 min = gen_reg_rtx (V2SFmode);
6894 gen_reg_rtx (V2SFmode);
6896 emit_insn (gen_subv2sf3 (tmp, cc_op0, cc_op1));
6897 emit_insn (gen_selv2sf4
6898 (max, tmp, cc_op0, cc_op1, CONST0_RTX (SFmode)));
6899 emit_insn (gen_subv2sf3 (tmp, cc_op1, cc_op0));
6900 emit_insn (gen_selv2sf4
6901 (min, tmp, cc_op0, cc_op1, CONST0_RTX (SFmode)));
6902 emit_insn (gen_subv2sf3 (tmp1, min, max));
6903 emit_insn (gen_selv2sf4 (dest, tmp1, op0, op1, CONST0_RTX (SFmode)));
6904 return;
6905 case NE:
6906 paired_emit_vector_compare (EQ, dest, op1, op0, cc_op0, cc_op1);
6907 return;
6908 case UNLE:
6909 paired_emit_vector_compare (LE, dest, op1, op0, cc_op0, cc_op1);
6910 return;
6911 case UNLT:
6912 paired_emit_vector_compare (LT, dest, op1, op0, cc_op0, cc_op1);
6913 return;
6914 case UNGE:
6915 paired_emit_vector_compare (GE, dest, op1, op0, cc_op0, cc_op1);
6916 return;
6917 case UNGT:
6918 paired_emit_vector_compare (GT, dest, op1, op0, cc_op0, cc_op1);
6919 return;
6920 default:
6921 gcc_unreachable ();
6924 return;
6927 /* Emit vector conditional expression.
6928 DEST is destination. OP1 and OP2 are two VEC_COND_EXPR operands.
6929 CC_OP0 and CC_OP1 are the two operands for the relation operation COND. */
6932 paired_emit_vector_cond_expr (rtx dest, rtx op1, rtx op2,
6933 rtx cond, rtx cc_op0, rtx cc_op1)
6935 enum rtx_code rcode = GET_CODE (cond);
6937 if (!TARGET_PAIRED_FLOAT)
6938 return 0;
6940 paired_emit_vector_compare (rcode, dest, op1, op2, cc_op0, cc_op1);
6942 return 1;
6945 /* Initialize vector TARGET to VALS. */
6947 void
6948 rs6000_expand_vector_init (rtx target, rtx vals)
6950 machine_mode mode = GET_MODE (target);
6951 machine_mode inner_mode = GET_MODE_INNER (mode);
6952 int n_elts = GET_MODE_NUNITS (mode);
6953 int n_var = 0, one_var = -1;
6954 bool all_same = true, all_const_zero = true;
6955 rtx x, mem;
6956 int i;
6958 for (i = 0; i < n_elts; ++i)
6960 x = XVECEXP (vals, 0, i);
6961 if (!(CONST_SCALAR_INT_P (x) || CONST_DOUBLE_P (x) || CONST_FIXED_P (x)))
6962 ++n_var, one_var = i;
6963 else if (x != CONST0_RTX (inner_mode))
6964 all_const_zero = false;
6966 if (i > 0 && !rtx_equal_p (x, XVECEXP (vals, 0, 0)))
6967 all_same = false;
6970 if (n_var == 0)
6972 rtx const_vec = gen_rtx_CONST_VECTOR (mode, XVEC (vals, 0));
6973 bool int_vector_p = (GET_MODE_CLASS (mode) == MODE_VECTOR_INT);
6974 if ((int_vector_p || TARGET_VSX) && all_const_zero)
6976 /* Zero register. */
6977 emit_move_insn (target, CONST0_RTX (mode));
6978 return;
6980 else if (int_vector_p && easy_vector_constant (const_vec, mode))
6982 /* Splat immediate. */
6983 emit_insn (gen_rtx_SET (target, const_vec));
6984 return;
6986 else
6988 /* Load from constant pool. */
6989 emit_move_insn (target, const_vec);
6990 return;
6994 /* Double word values on VSX can use xxpermdi or lxvdsx. */
6995 if (VECTOR_MEM_VSX_P (mode) && (mode == V2DFmode || mode == V2DImode))
6997 rtx op[2];
6998 size_t i;
6999 size_t num_elements = all_same ? 1 : 2;
7000 for (i = 0; i < num_elements; i++)
7002 op[i] = XVECEXP (vals, 0, i);
7003 /* Just in case there is a SUBREG with a smaller mode, do a
7004 conversion. */
7005 if (GET_MODE (op[i]) != inner_mode)
7007 rtx tmp = gen_reg_rtx (inner_mode);
7008 convert_move (tmp, op[i], 0);
7009 op[i] = tmp;
7011 /* Allow load with splat double word. */
7012 else if (MEM_P (op[i]))
7014 if (!all_same)
7015 op[i] = force_reg (inner_mode, op[i]);
7017 else if (!REG_P (op[i]))
7018 op[i] = force_reg (inner_mode, op[i]);
7021 if (all_same)
7023 if (mode == V2DFmode)
7024 emit_insn (gen_vsx_splat_v2df (target, op[0]));
7025 else
7026 emit_insn (gen_vsx_splat_v2di (target, op[0]));
7028 else
7030 if (mode == V2DFmode)
7031 emit_insn (gen_vsx_concat_v2df (target, op[0], op[1]));
7032 else
7033 emit_insn (gen_vsx_concat_v2di (target, op[0], op[1]));
7035 return;
7038 /* Special case initializing vector int if we are on 64-bit systems with
7039 direct move or we have the ISA 3.0 instructions. */
7040 if (mode == V4SImode && VECTOR_MEM_VSX_P (V4SImode)
7041 && TARGET_DIRECT_MOVE_64BIT)
7043 if (all_same)
7045 rtx element0 = XVECEXP (vals, 0, 0);
7046 if (MEM_P (element0))
7047 element0 = rs6000_address_for_fpconvert (element0);
7048 else
7049 element0 = force_reg (SImode, element0);
7051 if (TARGET_P9_VECTOR)
7052 emit_insn (gen_vsx_splat_v4si (target, element0));
7053 else
7055 rtx tmp = gen_reg_rtx (DImode);
7056 emit_insn (gen_zero_extendsidi2 (tmp, element0));
7057 emit_insn (gen_vsx_splat_v4si_di (target, tmp));
7059 return;
7061 else
7063 rtx elements[4];
7064 size_t i;
7066 for (i = 0; i < 4; i++)
7068 elements[i] = XVECEXP (vals, 0, i);
7069 if (!CONST_INT_P (elements[i]) && !REG_P (elements[i]))
7070 elements[i] = copy_to_mode_reg (SImode, elements[i]);
7073 emit_insn (gen_vsx_init_v4si (target, elements[0], elements[1],
7074 elements[2], elements[3]));
7075 return;
7079 /* With single precision floating point on VSX, know that internally single
7080 precision is actually represented as a double, and either make 2 V2DF
7081 vectors, and convert these vectors to single precision, or do one
7082 conversion, and splat the result to the other elements. */
7083 if (mode == V4SFmode && VECTOR_MEM_VSX_P (V4SFmode))
7085 if (all_same)
7087 rtx element0 = XVECEXP (vals, 0, 0);
7089 if (TARGET_P9_VECTOR)
7091 if (MEM_P (element0))
7092 element0 = rs6000_address_for_fpconvert (element0);
7094 emit_insn (gen_vsx_splat_v4sf (target, element0));
7097 else
7099 rtx freg = gen_reg_rtx (V4SFmode);
7100 rtx sreg = force_reg (SFmode, element0);
7101 rtx cvt = (TARGET_XSCVDPSPN
7102 ? gen_vsx_xscvdpspn_scalar (freg, sreg)
7103 : gen_vsx_xscvdpsp_scalar (freg, sreg));
7105 emit_insn (cvt);
7106 emit_insn (gen_vsx_xxspltw_v4sf_direct (target, freg,
7107 const0_rtx));
7110 else
7112 rtx dbl_even = gen_reg_rtx (V2DFmode);
7113 rtx dbl_odd = gen_reg_rtx (V2DFmode);
7114 rtx flt_even = gen_reg_rtx (V4SFmode);
7115 rtx flt_odd = gen_reg_rtx (V4SFmode);
7116 rtx op0 = force_reg (SFmode, XVECEXP (vals, 0, 0));
7117 rtx op1 = force_reg (SFmode, XVECEXP (vals, 0, 1));
7118 rtx op2 = force_reg (SFmode, XVECEXP (vals, 0, 2));
7119 rtx op3 = force_reg (SFmode, XVECEXP (vals, 0, 3));
7121 /* Use VMRGEW if we can instead of doing a permute. */
7122 if (TARGET_P8_VECTOR)
7124 emit_insn (gen_vsx_concat_v2sf (dbl_even, op0, op2));
7125 emit_insn (gen_vsx_concat_v2sf (dbl_odd, op1, op3));
7126 emit_insn (gen_vsx_xvcvdpsp (flt_even, dbl_even));
7127 emit_insn (gen_vsx_xvcvdpsp (flt_odd, dbl_odd));
7128 if (BYTES_BIG_ENDIAN)
7129 emit_insn (gen_p8_vmrgew_v4sf_direct (target, flt_even, flt_odd));
7130 else
7131 emit_insn (gen_p8_vmrgew_v4sf_direct (target, flt_odd, flt_even));
7133 else
7135 emit_insn (gen_vsx_concat_v2sf (dbl_even, op0, op1));
7136 emit_insn (gen_vsx_concat_v2sf (dbl_odd, op2, op3));
7137 emit_insn (gen_vsx_xvcvdpsp (flt_even, dbl_even));
7138 emit_insn (gen_vsx_xvcvdpsp (flt_odd, dbl_odd));
7139 rs6000_expand_extract_even (target, flt_even, flt_odd);
7142 return;
7145 /* Special case initializing vector short/char that are splats if we are on
7146 64-bit systems with direct move. */
7147 if (all_same && TARGET_DIRECT_MOVE_64BIT
7148 && (mode == V16QImode || mode == V8HImode))
7150 rtx op0 = XVECEXP (vals, 0, 0);
7151 rtx di_tmp = gen_reg_rtx (DImode);
7153 if (!REG_P (op0))
7154 op0 = force_reg (GET_MODE_INNER (mode), op0);
7156 if (mode == V16QImode)
7158 emit_insn (gen_zero_extendqidi2 (di_tmp, op0));
7159 emit_insn (gen_vsx_vspltb_di (target, di_tmp));
7160 return;
7163 if (mode == V8HImode)
7165 emit_insn (gen_zero_extendhidi2 (di_tmp, op0));
7166 emit_insn (gen_vsx_vsplth_di (target, di_tmp));
7167 return;
7171 /* Store value to stack temp. Load vector element. Splat. However, splat
7172 of 64-bit items is not supported on Altivec. */
7173 if (all_same && GET_MODE_SIZE (inner_mode) <= 4)
7175 mem = assign_stack_temp (mode, GET_MODE_SIZE (inner_mode));
7176 emit_move_insn (adjust_address_nv (mem, inner_mode, 0),
7177 XVECEXP (vals, 0, 0));
7178 x = gen_rtx_UNSPEC (VOIDmode,
7179 gen_rtvec (1, const0_rtx), UNSPEC_LVE);
7180 emit_insn (gen_rtx_PARALLEL (VOIDmode,
7181 gen_rtvec (2,
7182 gen_rtx_SET (target, mem),
7183 x)));
7184 x = gen_rtx_VEC_SELECT (inner_mode, target,
7185 gen_rtx_PARALLEL (VOIDmode,
7186 gen_rtvec (1, const0_rtx)));
7187 emit_insn (gen_rtx_SET (target, gen_rtx_VEC_DUPLICATE (mode, x)));
7188 return;
7191 /* One field is non-constant. Load constant then overwrite
7192 varying field. */
7193 if (n_var == 1)
7195 rtx copy = copy_rtx (vals);
7197 /* Load constant part of vector, substitute neighboring value for
7198 varying element. */
7199 XVECEXP (copy, 0, one_var) = XVECEXP (vals, 0, (one_var + 1) % n_elts);
7200 rs6000_expand_vector_init (target, copy);
7202 /* Insert variable. */
7203 rs6000_expand_vector_set (target, XVECEXP (vals, 0, one_var), one_var);
7204 return;
7207 /* Construct the vector in memory one field at a time
7208 and load the whole vector. */
7209 mem = assign_stack_temp (mode, GET_MODE_SIZE (mode));
7210 for (i = 0; i < n_elts; i++)
7211 emit_move_insn (adjust_address_nv (mem, inner_mode,
7212 i * GET_MODE_SIZE (inner_mode)),
7213 XVECEXP (vals, 0, i));
7214 emit_move_insn (target, mem);
7217 /* Set field ELT of TARGET to VAL. */
7219 void
7220 rs6000_expand_vector_set (rtx target, rtx val, int elt)
7222 machine_mode mode = GET_MODE (target);
7223 machine_mode inner_mode = GET_MODE_INNER (mode);
7224 rtx reg = gen_reg_rtx (mode);
7225 rtx mask, mem, x;
7226 int width = GET_MODE_SIZE (inner_mode);
7227 int i;
7229 val = force_reg (GET_MODE (val), val);
7231 if (VECTOR_MEM_VSX_P (mode))
7233 rtx insn = NULL_RTX;
7234 rtx elt_rtx = GEN_INT (elt);
7236 if (mode == V2DFmode)
7237 insn = gen_vsx_set_v2df (target, target, val, elt_rtx);
7239 else if (mode == V2DImode)
7240 insn = gen_vsx_set_v2di (target, target, val, elt_rtx);
7242 else if (TARGET_P9_VECTOR && TARGET_POWERPC64)
7244 if (mode == V4SImode)
7245 insn = gen_vsx_set_v4si_p9 (target, target, val, elt_rtx);
7246 else if (mode == V8HImode)
7247 insn = gen_vsx_set_v8hi_p9 (target, target, val, elt_rtx);
7248 else if (mode == V16QImode)
7249 insn = gen_vsx_set_v16qi_p9 (target, target, val, elt_rtx);
7250 else if (mode == V4SFmode)
7251 insn = gen_vsx_set_v4sf_p9 (target, target, val, elt_rtx);
7254 if (insn)
7256 emit_insn (insn);
7257 return;
7261 /* Simplify setting single element vectors like V1TImode. */
7262 if (GET_MODE_SIZE (mode) == GET_MODE_SIZE (inner_mode) && elt == 0)
7264 emit_move_insn (target, gen_lowpart (mode, val));
7265 return;
7268 /* Load single variable value. */
7269 mem = assign_stack_temp (mode, GET_MODE_SIZE (inner_mode));
7270 emit_move_insn (adjust_address_nv (mem, inner_mode, 0), val);
7271 x = gen_rtx_UNSPEC (VOIDmode,
7272 gen_rtvec (1, const0_rtx), UNSPEC_LVE);
7273 emit_insn (gen_rtx_PARALLEL (VOIDmode,
7274 gen_rtvec (2,
7275 gen_rtx_SET (reg, mem),
7276 x)));
7278 /* Linear sequence. */
7279 mask = gen_rtx_PARALLEL (V16QImode, rtvec_alloc (16));
7280 for (i = 0; i < 16; ++i)
7281 XVECEXP (mask, 0, i) = GEN_INT (i);
7283 /* Set permute mask to insert element into target. */
7284 for (i = 0; i < width; ++i)
7285 XVECEXP (mask, 0, elt*width + i)
7286 = GEN_INT (i + 0x10);
7287 x = gen_rtx_CONST_VECTOR (V16QImode, XVEC (mask, 0));
7289 if (BYTES_BIG_ENDIAN)
7290 x = gen_rtx_UNSPEC (mode,
7291 gen_rtvec (3, target, reg,
7292 force_reg (V16QImode, x)),
7293 UNSPEC_VPERM);
7294 else
7296 if (TARGET_P9_VECTOR)
7297 x = gen_rtx_UNSPEC (mode,
7298 gen_rtvec (3, target, reg,
7299 force_reg (V16QImode, x)),
7300 UNSPEC_VPERMR);
7301 else
7303 /* Invert selector. We prefer to generate VNAND on P8 so
7304 that future fusion opportunities can kick in, but must
7305 generate VNOR elsewhere. */
7306 rtx notx = gen_rtx_NOT (V16QImode, force_reg (V16QImode, x));
7307 rtx iorx = (TARGET_P8_VECTOR
7308 ? gen_rtx_IOR (V16QImode, notx, notx)
7309 : gen_rtx_AND (V16QImode, notx, notx));
7310 rtx tmp = gen_reg_rtx (V16QImode);
7311 emit_insn (gen_rtx_SET (tmp, iorx));
7313 /* Permute with operands reversed and adjusted selector. */
7314 x = gen_rtx_UNSPEC (mode, gen_rtvec (3, reg, target, tmp),
7315 UNSPEC_VPERM);
7319 emit_insn (gen_rtx_SET (target, x));
7322 /* Extract field ELT from VEC into TARGET. */
7324 void
7325 rs6000_expand_vector_extract (rtx target, rtx vec, rtx elt)
7327 machine_mode mode = GET_MODE (vec);
7328 machine_mode inner_mode = GET_MODE_INNER (mode);
7329 rtx mem;
7331 if (VECTOR_MEM_VSX_P (mode) && CONST_INT_P (elt))
7333 switch (mode)
7335 default:
7336 break;
7337 case E_V1TImode:
7338 gcc_assert (INTVAL (elt) == 0 && inner_mode == TImode);
7339 emit_move_insn (target, gen_lowpart (TImode, vec));
7340 break;
7341 case E_V2DFmode:
7342 emit_insn (gen_vsx_extract_v2df (target, vec, elt));
7343 return;
7344 case E_V2DImode:
7345 emit_insn (gen_vsx_extract_v2di (target, vec, elt));
7346 return;
7347 case E_V4SFmode:
7348 emit_insn (gen_vsx_extract_v4sf (target, vec, elt));
7349 return;
7350 case E_V16QImode:
7351 if (TARGET_DIRECT_MOVE_64BIT)
7353 emit_insn (gen_vsx_extract_v16qi (target, vec, elt));
7354 return;
7356 else
7357 break;
7358 case E_V8HImode:
7359 if (TARGET_DIRECT_MOVE_64BIT)
7361 emit_insn (gen_vsx_extract_v8hi (target, vec, elt));
7362 return;
7364 else
7365 break;
7366 case E_V4SImode:
7367 if (TARGET_DIRECT_MOVE_64BIT)
7369 emit_insn (gen_vsx_extract_v4si (target, vec, elt));
7370 return;
7372 break;
7375 else if (VECTOR_MEM_VSX_P (mode) && !CONST_INT_P (elt)
7376 && TARGET_DIRECT_MOVE_64BIT)
7378 if (GET_MODE (elt) != DImode)
7380 rtx tmp = gen_reg_rtx (DImode);
7381 convert_move (tmp, elt, 0);
7382 elt = tmp;
7384 else if (!REG_P (elt))
7385 elt = force_reg (DImode, elt);
7387 switch (mode)
7389 case E_V2DFmode:
7390 emit_insn (gen_vsx_extract_v2df_var (target, vec, elt));
7391 return;
7393 case E_V2DImode:
7394 emit_insn (gen_vsx_extract_v2di_var (target, vec, elt));
7395 return;
7397 case E_V4SFmode:
7398 emit_insn (gen_vsx_extract_v4sf_var (target, vec, elt));
7399 return;
7401 case E_V4SImode:
7402 emit_insn (gen_vsx_extract_v4si_var (target, vec, elt));
7403 return;
7405 case E_V8HImode:
7406 emit_insn (gen_vsx_extract_v8hi_var (target, vec, elt));
7407 return;
7409 case E_V16QImode:
7410 emit_insn (gen_vsx_extract_v16qi_var (target, vec, elt));
7411 return;
7413 default:
7414 gcc_unreachable ();
7418 gcc_assert (CONST_INT_P (elt));
7420 /* Allocate mode-sized buffer. */
7421 mem = assign_stack_temp (mode, GET_MODE_SIZE (mode));
7423 emit_move_insn (mem, vec);
7425 /* Add offset to field within buffer matching vector element. */
7426 mem = adjust_address_nv (mem, inner_mode,
7427 INTVAL (elt) * GET_MODE_SIZE (inner_mode));
7429 emit_move_insn (target, adjust_address_nv (mem, inner_mode, 0));
7432 /* Helper function to return the register number of a RTX. */
7433 static inline int
7434 regno_or_subregno (rtx op)
7436 if (REG_P (op))
7437 return REGNO (op);
7438 else if (SUBREG_P (op))
7439 return subreg_regno (op);
7440 else
7441 gcc_unreachable ();
7444 /* Adjust a memory address (MEM) of a vector type to point to a scalar field
7445 within the vector (ELEMENT) with a mode (SCALAR_MODE). Use a base register
7446 temporary (BASE_TMP) to fixup the address. Return the new memory address
7447 that is valid for reads or writes to a given register (SCALAR_REG). */
7450 rs6000_adjust_vec_address (rtx scalar_reg,
7451 rtx mem,
7452 rtx element,
7453 rtx base_tmp,
7454 machine_mode scalar_mode)
7456 unsigned scalar_size = GET_MODE_SIZE (scalar_mode);
7457 rtx addr = XEXP (mem, 0);
7458 rtx element_offset;
7459 rtx new_addr;
7460 bool valid_addr_p;
7462 /* Vector addresses should not have PRE_INC, PRE_DEC, or PRE_MODIFY. */
7463 gcc_assert (GET_RTX_CLASS (GET_CODE (addr)) != RTX_AUTOINC);
7465 /* Calculate what we need to add to the address to get the element
7466 address. */
7467 if (CONST_INT_P (element))
7468 element_offset = GEN_INT (INTVAL (element) * scalar_size);
7469 else
7471 int byte_shift = exact_log2 (scalar_size);
7472 gcc_assert (byte_shift >= 0);
7474 if (byte_shift == 0)
7475 element_offset = element;
7477 else
7479 if (TARGET_POWERPC64)
7480 emit_insn (gen_ashldi3 (base_tmp, element, GEN_INT (byte_shift)));
7481 else
7482 emit_insn (gen_ashlsi3 (base_tmp, element, GEN_INT (byte_shift)));
7484 element_offset = base_tmp;
7488 /* Create the new address pointing to the element within the vector. If we
7489 are adding 0, we don't have to change the address. */
7490 if (element_offset == const0_rtx)
7491 new_addr = addr;
7493 /* A simple indirect address can be converted into a reg + offset
7494 address. */
7495 else if (REG_P (addr) || SUBREG_P (addr))
7496 new_addr = gen_rtx_PLUS (Pmode, addr, element_offset);
7498 /* Optimize D-FORM addresses with constant offset with a constant element, to
7499 include the element offset in the address directly. */
7500 else if (GET_CODE (addr) == PLUS)
7502 rtx op0 = XEXP (addr, 0);
7503 rtx op1 = XEXP (addr, 1);
7504 rtx insn;
7506 gcc_assert (REG_P (op0) || SUBREG_P (op0));
7507 if (CONST_INT_P (op1) && CONST_INT_P (element_offset))
7509 HOST_WIDE_INT offset = INTVAL (op1) + INTVAL (element_offset);
7510 rtx offset_rtx = GEN_INT (offset);
7512 if (IN_RANGE (offset, -32768, 32767)
7513 && (scalar_size < 8 || (offset & 0x3) == 0))
7514 new_addr = gen_rtx_PLUS (Pmode, op0, offset_rtx);
7515 else
7517 emit_move_insn (base_tmp, offset_rtx);
7518 new_addr = gen_rtx_PLUS (Pmode, op0, base_tmp);
7521 else
7523 bool op1_reg_p = (REG_P (op1) || SUBREG_P (op1));
7524 bool ele_reg_p = (REG_P (element_offset) || SUBREG_P (element_offset));
7526 /* Note, ADDI requires the register being added to be a base
7527 register. If the register was R0, load it up into the temporary
7528 and do the add. */
7529 if (op1_reg_p
7530 && (ele_reg_p || reg_or_subregno (op1) != FIRST_GPR_REGNO))
7532 insn = gen_add3_insn (base_tmp, op1, element_offset);
7533 gcc_assert (insn != NULL_RTX);
7534 emit_insn (insn);
7537 else if (ele_reg_p
7538 && reg_or_subregno (element_offset) != FIRST_GPR_REGNO)
7540 insn = gen_add3_insn (base_tmp, element_offset, op1);
7541 gcc_assert (insn != NULL_RTX);
7542 emit_insn (insn);
7545 else
7547 emit_move_insn (base_tmp, op1);
7548 emit_insn (gen_add2_insn (base_tmp, element_offset));
7551 new_addr = gen_rtx_PLUS (Pmode, op0, base_tmp);
7555 else
7557 emit_move_insn (base_tmp, addr);
7558 new_addr = gen_rtx_PLUS (Pmode, base_tmp, element_offset);
7561 /* If we have a PLUS, we need to see whether the particular register class
7562 allows for D-FORM or X-FORM addressing. */
7563 if (GET_CODE (new_addr) == PLUS)
7565 rtx op1 = XEXP (new_addr, 1);
7566 addr_mask_type addr_mask;
7567 int scalar_regno = regno_or_subregno (scalar_reg);
7569 gcc_assert (scalar_regno < FIRST_PSEUDO_REGISTER);
7570 if (INT_REGNO_P (scalar_regno))
7571 addr_mask = reg_addr[scalar_mode].addr_mask[RELOAD_REG_GPR];
7573 else if (FP_REGNO_P (scalar_regno))
7574 addr_mask = reg_addr[scalar_mode].addr_mask[RELOAD_REG_FPR];
7576 else if (ALTIVEC_REGNO_P (scalar_regno))
7577 addr_mask = reg_addr[scalar_mode].addr_mask[RELOAD_REG_VMX];
7579 else
7580 gcc_unreachable ();
7582 if (REG_P (op1) || SUBREG_P (op1))
7583 valid_addr_p = (addr_mask & RELOAD_REG_INDEXED) != 0;
7584 else
7585 valid_addr_p = (addr_mask & RELOAD_REG_OFFSET) != 0;
7588 else if (REG_P (new_addr) || SUBREG_P (new_addr))
7589 valid_addr_p = true;
7591 else
7592 valid_addr_p = false;
7594 if (!valid_addr_p)
7596 emit_move_insn (base_tmp, new_addr);
7597 new_addr = base_tmp;
7600 return change_address (mem, scalar_mode, new_addr);
7603 /* Split a variable vec_extract operation into the component instructions. */
7605 void
7606 rs6000_split_vec_extract_var (rtx dest, rtx src, rtx element, rtx tmp_gpr,
7607 rtx tmp_altivec)
7609 machine_mode mode = GET_MODE (src);
7610 machine_mode scalar_mode = GET_MODE (dest);
7611 unsigned scalar_size = GET_MODE_SIZE (scalar_mode);
7612 int byte_shift = exact_log2 (scalar_size);
7614 gcc_assert (byte_shift >= 0);
7616 /* If we are given a memory address, optimize to load just the element. We
7617 don't have to adjust the vector element number on little endian
7618 systems. */
7619 if (MEM_P (src))
7621 gcc_assert (REG_P (tmp_gpr));
7622 emit_move_insn (dest, rs6000_adjust_vec_address (dest, src, element,
7623 tmp_gpr, scalar_mode));
7624 return;
7627 else if (REG_P (src) || SUBREG_P (src))
7629 int bit_shift = byte_shift + 3;
7630 rtx element2;
7631 int dest_regno = regno_or_subregno (dest);
7632 int src_regno = regno_or_subregno (src);
7633 int element_regno = regno_or_subregno (element);
7635 gcc_assert (REG_P (tmp_gpr));
7637 /* See if we want to generate VEXTU{B,H,W}{L,R}X if the destination is in
7638 a general purpose register. */
7639 if (TARGET_P9_VECTOR
7640 && (mode == V16QImode || mode == V8HImode || mode == V4SImode)
7641 && INT_REGNO_P (dest_regno)
7642 && ALTIVEC_REGNO_P (src_regno)
7643 && INT_REGNO_P (element_regno))
7645 rtx dest_si = gen_rtx_REG (SImode, dest_regno);
7646 rtx element_si = gen_rtx_REG (SImode, element_regno);
7648 if (mode == V16QImode)
7649 emit_insn (VECTOR_ELT_ORDER_BIG
7650 ? gen_vextublx (dest_si, element_si, src)
7651 : gen_vextubrx (dest_si, element_si, src));
7653 else if (mode == V8HImode)
7655 rtx tmp_gpr_si = gen_rtx_REG (SImode, REGNO (tmp_gpr));
7656 emit_insn (gen_ashlsi3 (tmp_gpr_si, element_si, const1_rtx));
7657 emit_insn (VECTOR_ELT_ORDER_BIG
7658 ? gen_vextuhlx (dest_si, tmp_gpr_si, src)
7659 : gen_vextuhrx (dest_si, tmp_gpr_si, src));
7663 else
7665 rtx tmp_gpr_si = gen_rtx_REG (SImode, REGNO (tmp_gpr));
7666 emit_insn (gen_ashlsi3 (tmp_gpr_si, element_si, const2_rtx));
7667 emit_insn (VECTOR_ELT_ORDER_BIG
7668 ? gen_vextuwlx (dest_si, tmp_gpr_si, src)
7669 : gen_vextuwrx (dest_si, tmp_gpr_si, src));
7672 return;
7676 gcc_assert (REG_P (tmp_altivec));
7678 /* For little endian, adjust element ordering. For V2DI/V2DF, we can use
7679 an XOR, otherwise we need to subtract. The shift amount is so VSLO
7680 will shift the element into the upper position (adding 3 to convert a
7681 byte shift into a bit shift). */
7682 if (scalar_size == 8)
7684 if (!VECTOR_ELT_ORDER_BIG)
7686 emit_insn (gen_xordi3 (tmp_gpr, element, const1_rtx));
7687 element2 = tmp_gpr;
7689 else
7690 element2 = element;
7692 /* Generate RLDIC directly to shift left 6 bits and retrieve 1
7693 bit. */
7694 emit_insn (gen_rtx_SET (tmp_gpr,
7695 gen_rtx_AND (DImode,
7696 gen_rtx_ASHIFT (DImode,
7697 element2,
7698 GEN_INT (6)),
7699 GEN_INT (64))));
7701 else
7703 if (!VECTOR_ELT_ORDER_BIG)
7705 rtx num_ele_m1 = GEN_INT (GET_MODE_NUNITS (mode) - 1);
7707 emit_insn (gen_anddi3 (tmp_gpr, element, num_ele_m1));
7708 emit_insn (gen_subdi3 (tmp_gpr, num_ele_m1, tmp_gpr));
7709 element2 = tmp_gpr;
7711 else
7712 element2 = element;
7714 emit_insn (gen_ashldi3 (tmp_gpr, element2, GEN_INT (bit_shift)));
7717 /* Get the value into the lower byte of the Altivec register where VSLO
7718 expects it. */
7719 if (TARGET_P9_VECTOR)
7720 emit_insn (gen_vsx_splat_v2di (tmp_altivec, tmp_gpr));
7721 else if (can_create_pseudo_p ())
7722 emit_insn (gen_vsx_concat_v2di (tmp_altivec, tmp_gpr, tmp_gpr));
7723 else
7725 rtx tmp_di = gen_rtx_REG (DImode, REGNO (tmp_altivec));
7726 emit_move_insn (tmp_di, tmp_gpr);
7727 emit_insn (gen_vsx_concat_v2di (tmp_altivec, tmp_di, tmp_di));
7730 /* Do the VSLO to get the value into the final location. */
7731 switch (mode)
7733 case E_V2DFmode:
7734 emit_insn (gen_vsx_vslo_v2df (dest, src, tmp_altivec));
7735 return;
7737 case E_V2DImode:
7738 emit_insn (gen_vsx_vslo_v2di (dest, src, tmp_altivec));
7739 return;
7741 case E_V4SFmode:
7743 rtx tmp_altivec_di = gen_rtx_REG (DImode, REGNO (tmp_altivec));
7744 rtx tmp_altivec_v4sf = gen_rtx_REG (V4SFmode, REGNO (tmp_altivec));
7745 rtx src_v2di = gen_rtx_REG (V2DImode, REGNO (src));
7746 emit_insn (gen_vsx_vslo_v2di (tmp_altivec_di, src_v2di,
7747 tmp_altivec));
7749 emit_insn (gen_vsx_xscvspdp_scalar2 (dest, tmp_altivec_v4sf));
7750 return;
7753 case E_V4SImode:
7754 case E_V8HImode:
7755 case E_V16QImode:
7757 rtx tmp_altivec_di = gen_rtx_REG (DImode, REGNO (tmp_altivec));
7758 rtx src_v2di = gen_rtx_REG (V2DImode, REGNO (src));
7759 rtx tmp_gpr_di = gen_rtx_REG (DImode, REGNO (dest));
7760 emit_insn (gen_vsx_vslo_v2di (tmp_altivec_di, src_v2di,
7761 tmp_altivec));
7762 emit_move_insn (tmp_gpr_di, tmp_altivec_di);
7763 emit_insn (gen_ashrdi3 (tmp_gpr_di, tmp_gpr_di,
7764 GEN_INT (64 - (8 * scalar_size))));
7765 return;
7768 default:
7769 gcc_unreachable ();
7772 return;
7774 else
7775 gcc_unreachable ();
7778 /* Helper function for rs6000_split_v4si_init to build up a DImode value from
7779 two SImode values. */
7781 static void
7782 rs6000_split_v4si_init_di_reg (rtx dest, rtx si1, rtx si2, rtx tmp)
7784 const unsigned HOST_WIDE_INT mask_32bit = HOST_WIDE_INT_C (0xffffffff);
7786 if (CONST_INT_P (si1) && CONST_INT_P (si2))
7788 unsigned HOST_WIDE_INT const1 = (UINTVAL (si1) & mask_32bit) << 32;
7789 unsigned HOST_WIDE_INT const2 = UINTVAL (si2) & mask_32bit;
7791 emit_move_insn (dest, GEN_INT (const1 | const2));
7792 return;
7795 /* Put si1 into upper 32-bits of dest. */
7796 if (CONST_INT_P (si1))
7797 emit_move_insn (dest, GEN_INT ((UINTVAL (si1) & mask_32bit) << 32));
7798 else
7800 /* Generate RLDIC. */
7801 rtx si1_di = gen_rtx_REG (DImode, regno_or_subregno (si1));
7802 rtx shift_rtx = gen_rtx_ASHIFT (DImode, si1_di, GEN_INT (32));
7803 rtx mask_rtx = GEN_INT (mask_32bit << 32);
7804 rtx and_rtx = gen_rtx_AND (DImode, shift_rtx, mask_rtx);
7805 gcc_assert (!reg_overlap_mentioned_p (dest, si1));
7806 emit_insn (gen_rtx_SET (dest, and_rtx));
7809 /* Put si2 into the temporary. */
7810 gcc_assert (!reg_overlap_mentioned_p (dest, tmp));
7811 if (CONST_INT_P (si2))
7812 emit_move_insn (tmp, GEN_INT (UINTVAL (si2) & mask_32bit));
7813 else
7814 emit_insn (gen_zero_extendsidi2 (tmp, si2));
7816 /* Combine the two parts. */
7817 emit_insn (gen_iordi3 (dest, dest, tmp));
7818 return;
7821 /* Split a V4SI initialization. */
7823 void
7824 rs6000_split_v4si_init (rtx operands[])
7826 rtx dest = operands[0];
7828 /* Destination is a GPR, build up the two DImode parts in place. */
7829 if (REG_P (dest) || SUBREG_P (dest))
7831 int d_regno = regno_or_subregno (dest);
7832 rtx scalar1 = operands[1];
7833 rtx scalar2 = operands[2];
7834 rtx scalar3 = operands[3];
7835 rtx scalar4 = operands[4];
7836 rtx tmp1 = operands[5];
7837 rtx tmp2 = operands[6];
7839 /* Even though we only need one temporary (plus the destination, which
7840 has an early clobber constraint, try to use two temporaries, one for
7841 each double word created. That way the 2nd insn scheduling pass can
7842 rearrange things so the two parts are done in parallel. */
7843 if (BYTES_BIG_ENDIAN)
7845 rtx di_lo = gen_rtx_REG (DImode, d_regno);
7846 rtx di_hi = gen_rtx_REG (DImode, d_regno + 1);
7847 rs6000_split_v4si_init_di_reg (di_lo, scalar1, scalar2, tmp1);
7848 rs6000_split_v4si_init_di_reg (di_hi, scalar3, scalar4, tmp2);
7850 else
7852 rtx di_lo = gen_rtx_REG (DImode, d_regno + 1);
7853 rtx di_hi = gen_rtx_REG (DImode, d_regno);
7854 gcc_assert (!VECTOR_ELT_ORDER_BIG);
7855 rs6000_split_v4si_init_di_reg (di_lo, scalar4, scalar3, tmp1);
7856 rs6000_split_v4si_init_di_reg (di_hi, scalar2, scalar1, tmp2);
7858 return;
7861 else
7862 gcc_unreachable ();
7865 /* Return alignment of TYPE. Existing alignment is ALIGN. HOW
7866 selects whether the alignment is abi mandated, optional, or
7867 both abi and optional alignment. */
7869 unsigned int
7870 rs6000_data_alignment (tree type, unsigned int align, enum data_align how)
7872 if (how != align_opt)
7874 if (TREE_CODE (type) == VECTOR_TYPE)
7876 if (TARGET_PAIRED_FLOAT && PAIRED_VECTOR_MODE (TYPE_MODE (type)))
7878 if (align < 64)
7879 align = 64;
7881 else if (align < 128)
7882 align = 128;
7886 if (how != align_abi)
7888 if (TREE_CODE (type) == ARRAY_TYPE
7889 && TYPE_MODE (TREE_TYPE (type)) == QImode)
7891 if (align < BITS_PER_WORD)
7892 align = BITS_PER_WORD;
7896 return align;
7899 /* Implement TARGET_SLOW_UNALIGNED_ACCESS. Altivec vector memory
7900 instructions simply ignore the low bits; VSX memory instructions
7901 are aligned to 4 or 8 bytes. */
7903 static bool
7904 rs6000_slow_unaligned_access (machine_mode mode, unsigned int align)
7906 return (STRICT_ALIGNMENT
7907 || (!TARGET_EFFICIENT_UNALIGNED_VSX
7908 && ((SCALAR_FLOAT_MODE_NOT_VECTOR_P (mode) && align < 32)
7909 || ((VECTOR_MODE_P (mode) || FLOAT128_VECTOR_P (mode))
7910 && (int) align < VECTOR_ALIGN (mode)))));
7913 /* Previous GCC releases forced all vector types to have 16-byte alignment. */
7915 bool
7916 rs6000_special_adjust_field_align_p (tree type, unsigned int computed)
7918 if (TARGET_ALTIVEC && TREE_CODE (type) == VECTOR_TYPE)
7920 if (computed != 128)
7922 static bool warned;
7923 if (!warned && warn_psabi)
7925 warned = true;
7926 inform (input_location,
7927 "the layout of aggregates containing vectors with"
7928 " %d-byte alignment has changed in GCC 5",
7929 computed / BITS_PER_UNIT);
7932 /* In current GCC there is no special case. */
7933 return false;
7936 return false;
7939 /* AIX increases natural record alignment to doubleword if the first
7940 field is an FP double while the FP fields remain word aligned. */
7942 unsigned int
7943 rs6000_special_round_type_align (tree type, unsigned int computed,
7944 unsigned int specified)
7946 unsigned int align = MAX (computed, specified);
7947 tree field = TYPE_FIELDS (type);
7949 /* Skip all non field decls */
7950 while (field != NULL && TREE_CODE (field) != FIELD_DECL)
7951 field = DECL_CHAIN (field);
7953 if (field != NULL && field != type)
7955 type = TREE_TYPE (field);
7956 while (TREE_CODE (type) == ARRAY_TYPE)
7957 type = TREE_TYPE (type);
7959 if (type != error_mark_node && TYPE_MODE (type) == DFmode)
7960 align = MAX (align, 64);
7963 return align;
7966 /* Darwin increases record alignment to the natural alignment of
7967 the first field. */
7969 unsigned int
7970 darwin_rs6000_special_round_type_align (tree type, unsigned int computed,
7971 unsigned int specified)
7973 unsigned int align = MAX (computed, specified);
7975 if (TYPE_PACKED (type))
7976 return align;
7978 /* Find the first field, looking down into aggregates. */
7979 do {
7980 tree field = TYPE_FIELDS (type);
7981 /* Skip all non field decls */
7982 while (field != NULL && TREE_CODE (field) != FIELD_DECL)
7983 field = DECL_CHAIN (field);
7984 if (! field)
7985 break;
7986 /* A packed field does not contribute any extra alignment. */
7987 if (DECL_PACKED (field))
7988 return align;
7989 type = TREE_TYPE (field);
7990 while (TREE_CODE (type) == ARRAY_TYPE)
7991 type = TREE_TYPE (type);
7992 } while (AGGREGATE_TYPE_P (type));
7994 if (! AGGREGATE_TYPE_P (type) && type != error_mark_node)
7995 align = MAX (align, TYPE_ALIGN (type));
7997 return align;
8000 /* Return 1 for an operand in small memory on V.4/eabi. */
8003 small_data_operand (rtx op ATTRIBUTE_UNUSED,
8004 machine_mode mode ATTRIBUTE_UNUSED)
8006 #if TARGET_ELF
8007 rtx sym_ref;
8009 if (rs6000_sdata == SDATA_NONE || rs6000_sdata == SDATA_DATA)
8010 return 0;
8012 if (DEFAULT_ABI != ABI_V4)
8013 return 0;
8015 if (GET_CODE (op) == SYMBOL_REF)
8016 sym_ref = op;
8018 else if (GET_CODE (op) != CONST
8019 || GET_CODE (XEXP (op, 0)) != PLUS
8020 || GET_CODE (XEXP (XEXP (op, 0), 0)) != SYMBOL_REF
8021 || GET_CODE (XEXP (XEXP (op, 0), 1)) != CONST_INT)
8022 return 0;
8024 else
8026 rtx sum = XEXP (op, 0);
8027 HOST_WIDE_INT summand;
8029 /* We have to be careful here, because it is the referenced address
8030 that must be 32k from _SDA_BASE_, not just the symbol. */
8031 summand = INTVAL (XEXP (sum, 1));
8032 if (summand < 0 || summand > g_switch_value)
8033 return 0;
8035 sym_ref = XEXP (sum, 0);
8038 return SYMBOL_REF_SMALL_P (sym_ref);
8039 #else
8040 return 0;
8041 #endif
8044 /* Return true if either operand is a general purpose register. */
8046 bool
8047 gpr_or_gpr_p (rtx op0, rtx op1)
8049 return ((REG_P (op0) && INT_REGNO_P (REGNO (op0)))
8050 || (REG_P (op1) && INT_REGNO_P (REGNO (op1))));
8053 /* Return true if this is a move direct operation between GPR registers and
8054 floating point/VSX registers. */
8056 bool
8057 direct_move_p (rtx op0, rtx op1)
8059 int regno0, regno1;
8061 if (!REG_P (op0) || !REG_P (op1))
8062 return false;
8064 if (!TARGET_DIRECT_MOVE && !TARGET_MFPGPR)
8065 return false;
8067 regno0 = REGNO (op0);
8068 regno1 = REGNO (op1);
8069 if (regno0 >= FIRST_PSEUDO_REGISTER || regno1 >= FIRST_PSEUDO_REGISTER)
8070 return false;
8072 if (INT_REGNO_P (regno0))
8073 return (TARGET_DIRECT_MOVE) ? VSX_REGNO_P (regno1) : FP_REGNO_P (regno1);
8075 else if (INT_REGNO_P (regno1))
8077 if (TARGET_MFPGPR && FP_REGNO_P (regno0))
8078 return true;
8080 else if (TARGET_DIRECT_MOVE && VSX_REGNO_P (regno0))
8081 return true;
8084 return false;
8087 /* Return true if the OFFSET is valid for the quad address instructions that
8088 use d-form (register + offset) addressing. */
8090 static inline bool
8091 quad_address_offset_p (HOST_WIDE_INT offset)
8093 return (IN_RANGE (offset, -32768, 32767) && ((offset) & 0xf) == 0);
8096 /* Return true if the ADDR is an acceptable address for a quad memory
8097 operation of mode MODE (either LQ/STQ for general purpose registers, or
8098 LXV/STXV for vector registers under ISA 3.0. GPR_P is true if this address
8099 is intended for LQ/STQ. If it is false, the address is intended for the ISA
8100 3.0 LXV/STXV instruction. */
8102 bool
8103 quad_address_p (rtx addr, machine_mode mode, bool strict)
8105 rtx op0, op1;
8107 if (GET_MODE_SIZE (mode) != 16)
8108 return false;
8110 if (legitimate_indirect_address_p (addr, strict))
8111 return true;
8113 if (VECTOR_MODE_P (mode) && !mode_supports_vsx_dform_quad (mode))
8114 return false;
8116 if (GET_CODE (addr) != PLUS)
8117 return false;
8119 op0 = XEXP (addr, 0);
8120 if (!REG_P (op0) || !INT_REG_OK_FOR_BASE_P (op0, strict))
8121 return false;
8123 op1 = XEXP (addr, 1);
8124 if (!CONST_INT_P (op1))
8125 return false;
8127 return quad_address_offset_p (INTVAL (op1));
8130 /* Return true if this is a load or store quad operation. This function does
8131 not handle the atomic quad memory instructions. */
8133 bool
8134 quad_load_store_p (rtx op0, rtx op1)
8136 bool ret;
8138 if (!TARGET_QUAD_MEMORY)
8139 ret = false;
8141 else if (REG_P (op0) && MEM_P (op1))
8142 ret = (quad_int_reg_operand (op0, GET_MODE (op0))
8143 && quad_memory_operand (op1, GET_MODE (op1))
8144 && !reg_overlap_mentioned_p (op0, op1));
8146 else if (MEM_P (op0) && REG_P (op1))
8147 ret = (quad_memory_operand (op0, GET_MODE (op0))
8148 && quad_int_reg_operand (op1, GET_MODE (op1)));
8150 else
8151 ret = false;
8153 if (TARGET_DEBUG_ADDR)
8155 fprintf (stderr, "\n========== quad_load_store, return %s\n",
8156 ret ? "true" : "false");
8157 debug_rtx (gen_rtx_SET (op0, op1));
8160 return ret;
8163 /* Given an address, return a constant offset term if one exists. */
8165 static rtx
8166 address_offset (rtx op)
8168 if (GET_CODE (op) == PRE_INC
8169 || GET_CODE (op) == PRE_DEC)
8170 op = XEXP (op, 0);
8171 else if (GET_CODE (op) == PRE_MODIFY
8172 || GET_CODE (op) == LO_SUM)
8173 op = XEXP (op, 1);
8175 if (GET_CODE (op) == CONST)
8176 op = XEXP (op, 0);
8178 if (GET_CODE (op) == PLUS)
8179 op = XEXP (op, 1);
8181 if (CONST_INT_P (op))
8182 return op;
8184 return NULL_RTX;
8187 /* Return true if the MEM operand is a memory operand suitable for use
8188 with a (full width, possibly multiple) gpr load/store. On
8189 powerpc64 this means the offset must be divisible by 4.
8190 Implements 'Y' constraint.
8192 Accept direct, indexed, offset, lo_sum and tocref. Since this is
8193 a constraint function we know the operand has satisfied a suitable
8194 memory predicate. Also accept some odd rtl generated by reload
8195 (see rs6000_legitimize_reload_address for various forms). It is
8196 important that reload rtl be accepted by appropriate constraints
8197 but not by the operand predicate.
8199 Offsetting a lo_sum should not be allowed, except where we know by
8200 alignment that a 32k boundary is not crossed, but see the ???
8201 comment in rs6000_legitimize_reload_address. Note that by
8202 "offsetting" here we mean a further offset to access parts of the
8203 MEM. It's fine to have a lo_sum where the inner address is offset
8204 from a sym, since the same sym+offset will appear in the high part
8205 of the address calculation. */
8207 bool
8208 mem_operand_gpr (rtx op, machine_mode mode)
8210 unsigned HOST_WIDE_INT offset;
8211 int extra;
8212 rtx addr = XEXP (op, 0);
8214 op = address_offset (addr);
8215 if (op == NULL_RTX)
8216 return true;
8218 offset = INTVAL (op);
8219 if (TARGET_POWERPC64 && (offset & 3) != 0)
8220 return false;
8222 extra = GET_MODE_SIZE (mode) - UNITS_PER_WORD;
8223 if (extra < 0)
8224 extra = 0;
8226 if (GET_CODE (addr) == LO_SUM)
8227 /* For lo_sum addresses, we must allow any offset except one that
8228 causes a wrap, so test only the low 16 bits. */
8229 offset = ((offset & 0xffff) ^ 0x8000) - 0x8000;
8231 return offset + 0x8000 < 0x10000u - extra;
8234 /* As above, but for DS-FORM VSX insns. Unlike mem_operand_gpr,
8235 enforce an offset divisible by 4 even for 32-bit. */
8237 bool
8238 mem_operand_ds_form (rtx op, machine_mode mode)
8240 unsigned HOST_WIDE_INT offset;
8241 int extra;
8242 rtx addr = XEXP (op, 0);
8244 if (!offsettable_address_p (false, mode, addr))
8245 return false;
8247 op = address_offset (addr);
8248 if (op == NULL_RTX)
8249 return true;
8251 offset = INTVAL (op);
8252 if ((offset & 3) != 0)
8253 return false;
8255 extra = GET_MODE_SIZE (mode) - UNITS_PER_WORD;
8256 if (extra < 0)
8257 extra = 0;
8259 if (GET_CODE (addr) == LO_SUM)
8260 /* For lo_sum addresses, we must allow any offset except one that
8261 causes a wrap, so test only the low 16 bits. */
8262 offset = ((offset & 0xffff) ^ 0x8000) - 0x8000;
8264 return offset + 0x8000 < 0x10000u - extra;
8267 /* Subroutines of rs6000_legitimize_address and rs6000_legitimate_address_p. */
8269 static bool
8270 reg_offset_addressing_ok_p (machine_mode mode)
8272 switch (mode)
8274 case E_V16QImode:
8275 case E_V8HImode:
8276 case E_V4SFmode:
8277 case E_V4SImode:
8278 case E_V2DFmode:
8279 case E_V2DImode:
8280 case E_V1TImode:
8281 case E_TImode:
8282 case E_TFmode:
8283 case E_KFmode:
8284 /* AltiVec/VSX vector modes. Only reg+reg addressing was valid until the
8285 ISA 3.0 vector d-form addressing mode was added. While TImode is not
8286 a vector mode, if we want to use the VSX registers to move it around,
8287 we need to restrict ourselves to reg+reg addressing. Similarly for
8288 IEEE 128-bit floating point that is passed in a single vector
8289 register. */
8290 if (VECTOR_MEM_ALTIVEC_OR_VSX_P (mode))
8291 return mode_supports_vsx_dform_quad (mode);
8292 break;
8294 case E_V2SImode:
8295 case E_V2SFmode:
8296 /* Paired vector modes. Only reg+reg addressing is valid. */
8297 if (TARGET_PAIRED_FLOAT)
8298 return false;
8299 break;
8301 case E_SDmode:
8302 /* If we can do direct load/stores of SDmode, restrict it to reg+reg
8303 addressing for the LFIWZX and STFIWX instructions. */
8304 if (TARGET_NO_SDMODE_STACK)
8305 return false;
8306 break;
8308 default:
8309 break;
8312 return true;
8315 static bool
8316 virtual_stack_registers_memory_p (rtx op)
8318 int regnum;
8320 if (GET_CODE (op) == REG)
8321 regnum = REGNO (op);
8323 else if (GET_CODE (op) == PLUS
8324 && GET_CODE (XEXP (op, 0)) == REG
8325 && GET_CODE (XEXP (op, 1)) == CONST_INT)
8326 regnum = REGNO (XEXP (op, 0));
8328 else
8329 return false;
8331 return (regnum >= FIRST_VIRTUAL_REGISTER
8332 && regnum <= LAST_VIRTUAL_POINTER_REGISTER);
8335 /* Return true if a MODE sized memory accesses to OP plus OFFSET
8336 is known to not straddle a 32k boundary. This function is used
8337 to determine whether -mcmodel=medium code can use TOC pointer
8338 relative addressing for OP. This means the alignment of the TOC
8339 pointer must also be taken into account, and unfortunately that is
8340 only 8 bytes. */
8342 #ifndef POWERPC64_TOC_POINTER_ALIGNMENT
8343 #define POWERPC64_TOC_POINTER_ALIGNMENT 8
8344 #endif
8346 static bool
8347 offsettable_ok_by_alignment (rtx op, HOST_WIDE_INT offset,
8348 machine_mode mode)
8350 tree decl;
8351 unsigned HOST_WIDE_INT dsize, dalign, lsb, mask;
8353 if (GET_CODE (op) != SYMBOL_REF)
8354 return false;
8356 /* ISA 3.0 vector d-form addressing is restricted, don't allow
8357 SYMBOL_REF. */
8358 if (mode_supports_vsx_dform_quad (mode))
8359 return false;
8361 dsize = GET_MODE_SIZE (mode);
8362 decl = SYMBOL_REF_DECL (op);
8363 if (!decl)
8365 if (dsize == 0)
8366 return false;
8368 /* -fsection-anchors loses the original SYMBOL_REF_DECL when
8369 replacing memory addresses with an anchor plus offset. We
8370 could find the decl by rummaging around in the block->objects
8371 VEC for the given offset but that seems like too much work. */
8372 dalign = BITS_PER_UNIT;
8373 if (SYMBOL_REF_HAS_BLOCK_INFO_P (op)
8374 && SYMBOL_REF_ANCHOR_P (op)
8375 && SYMBOL_REF_BLOCK (op) != NULL)
8377 struct object_block *block = SYMBOL_REF_BLOCK (op);
8379 dalign = block->alignment;
8380 offset += SYMBOL_REF_BLOCK_OFFSET (op);
8382 else if (CONSTANT_POOL_ADDRESS_P (op))
8384 /* It would be nice to have get_pool_align().. */
8385 machine_mode cmode = get_pool_mode (op);
8387 dalign = GET_MODE_ALIGNMENT (cmode);
8390 else if (DECL_P (decl))
8392 dalign = DECL_ALIGN (decl);
8394 if (dsize == 0)
8396 /* Allow BLKmode when the entire object is known to not
8397 cross a 32k boundary. */
8398 if (!DECL_SIZE_UNIT (decl))
8399 return false;
8401 if (!tree_fits_uhwi_p (DECL_SIZE_UNIT (decl)))
8402 return false;
8404 dsize = tree_to_uhwi (DECL_SIZE_UNIT (decl));
8405 if (dsize > 32768)
8406 return false;
8408 dalign /= BITS_PER_UNIT;
8409 if (dalign > POWERPC64_TOC_POINTER_ALIGNMENT)
8410 dalign = POWERPC64_TOC_POINTER_ALIGNMENT;
8411 return dalign >= dsize;
8414 else
8415 gcc_unreachable ();
8417 /* Find how many bits of the alignment we know for this access. */
8418 dalign /= BITS_PER_UNIT;
8419 if (dalign > POWERPC64_TOC_POINTER_ALIGNMENT)
8420 dalign = POWERPC64_TOC_POINTER_ALIGNMENT;
8421 mask = dalign - 1;
8422 lsb = offset & -offset;
8423 mask &= lsb - 1;
8424 dalign = mask + 1;
8426 return dalign >= dsize;
8429 static bool
8430 constant_pool_expr_p (rtx op)
8432 rtx base, offset;
8434 split_const (op, &base, &offset);
8435 return (GET_CODE (base) == SYMBOL_REF
8436 && CONSTANT_POOL_ADDRESS_P (base)
8437 && ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (get_pool_constant (base), Pmode));
8440 /* These are only used to pass through from print_operand/print_operand_address
8441 to rs6000_output_addr_const_extra over the intervening function
8442 output_addr_const which is not target code. */
8443 static const_rtx tocrel_base_oac, tocrel_offset_oac;
8445 /* Return true if OP is a toc pointer relative address (the output
8446 of create_TOC_reference). If STRICT, do not match non-split
8447 -mcmodel=large/medium toc pointer relative addresses. If the pointers
8448 are non-NULL, place base and offset pieces in TOCREL_BASE_RET and
8449 TOCREL_OFFSET_RET respectively. */
8451 bool
8452 toc_relative_expr_p (const_rtx op, bool strict, const_rtx *tocrel_base_ret,
8453 const_rtx *tocrel_offset_ret)
8455 if (!TARGET_TOC)
8456 return false;
8458 if (TARGET_CMODEL != CMODEL_SMALL)
8460 /* When strict ensure we have everything tidy. */
8461 if (strict
8462 && !(GET_CODE (op) == LO_SUM
8463 && REG_P (XEXP (op, 0))
8464 && INT_REG_OK_FOR_BASE_P (XEXP (op, 0), strict)))
8465 return false;
8467 /* When not strict, allow non-split TOC addresses and also allow
8468 (lo_sum (high ..)) TOC addresses created during reload. */
8469 if (GET_CODE (op) == LO_SUM)
8470 op = XEXP (op, 1);
8473 const_rtx tocrel_base = op;
8474 const_rtx tocrel_offset = const0_rtx;
8476 if (GET_CODE (op) == PLUS && add_cint_operand (XEXP (op, 1), GET_MODE (op)))
8478 tocrel_base = XEXP (op, 0);
8479 tocrel_offset = XEXP (op, 1);
8482 if (tocrel_base_ret)
8483 *tocrel_base_ret = tocrel_base;
8484 if (tocrel_offset_ret)
8485 *tocrel_offset_ret = tocrel_offset;
8487 return (GET_CODE (tocrel_base) == UNSPEC
8488 && XINT (tocrel_base, 1) == UNSPEC_TOCREL);
8491 /* Return true if X is a constant pool address, and also for cmodel=medium
8492 if X is a toc-relative address known to be offsettable within MODE. */
8494 bool
8495 legitimate_constant_pool_address_p (const_rtx x, machine_mode mode,
8496 bool strict)
8498 const_rtx tocrel_base, tocrel_offset;
8499 return (toc_relative_expr_p (x, strict, &tocrel_base, &tocrel_offset)
8500 && (TARGET_CMODEL != CMODEL_MEDIUM
8501 || constant_pool_expr_p (XVECEXP (tocrel_base, 0, 0))
8502 || mode == QImode
8503 || offsettable_ok_by_alignment (XVECEXP (tocrel_base, 0, 0),
8504 INTVAL (tocrel_offset), mode)));
8507 static bool
8508 legitimate_small_data_p (machine_mode mode, rtx x)
8510 return (DEFAULT_ABI == ABI_V4
8511 && !flag_pic && !TARGET_TOC
8512 && (GET_CODE (x) == SYMBOL_REF || GET_CODE (x) == CONST)
8513 && small_data_operand (x, mode));
8516 bool
8517 rs6000_legitimate_offset_address_p (machine_mode mode, rtx x,
8518 bool strict, bool worst_case)
8520 unsigned HOST_WIDE_INT offset;
8521 unsigned int extra;
8523 if (GET_CODE (x) != PLUS)
8524 return false;
8525 if (!REG_P (XEXP (x, 0)))
8526 return false;
8527 if (!INT_REG_OK_FOR_BASE_P (XEXP (x, 0), strict))
8528 return false;
8529 if (mode_supports_vsx_dform_quad (mode))
8530 return quad_address_p (x, mode, strict);
8531 if (!reg_offset_addressing_ok_p (mode))
8532 return virtual_stack_registers_memory_p (x);
8533 if (legitimate_constant_pool_address_p (x, mode, strict || lra_in_progress))
8534 return true;
8535 if (GET_CODE (XEXP (x, 1)) != CONST_INT)
8536 return false;
8538 offset = INTVAL (XEXP (x, 1));
8539 extra = 0;
8540 switch (mode)
8542 case E_V2SImode:
8543 case E_V2SFmode:
8544 /* Paired single modes: offset addressing isn't valid. */
8545 return false;
8547 case E_DFmode:
8548 case E_DDmode:
8549 case E_DImode:
8550 /* If we are using VSX scalar loads, restrict ourselves to reg+reg
8551 addressing. */
8552 if (VECTOR_MEM_VSX_P (mode))
8553 return false;
8555 if (!worst_case)
8556 break;
8557 if (!TARGET_POWERPC64)
8558 extra = 4;
8559 else if (offset & 3)
8560 return false;
8561 break;
8563 case E_TFmode:
8564 case E_IFmode:
8565 case E_KFmode:
8566 case E_TDmode:
8567 case E_TImode:
8568 case E_PTImode:
8569 extra = 8;
8570 if (!worst_case)
8571 break;
8572 if (!TARGET_POWERPC64)
8573 extra = 12;
8574 else if (offset & 3)
8575 return false;
8576 break;
8578 default:
8579 break;
8582 offset += 0x8000;
8583 return offset < 0x10000 - extra;
8586 bool
8587 legitimate_indexed_address_p (rtx x, int strict)
8589 rtx op0, op1;
8591 if (GET_CODE (x) != PLUS)
8592 return false;
8594 op0 = XEXP (x, 0);
8595 op1 = XEXP (x, 1);
8597 return (REG_P (op0) && REG_P (op1)
8598 && ((INT_REG_OK_FOR_BASE_P (op0, strict)
8599 && INT_REG_OK_FOR_INDEX_P (op1, strict))
8600 || (INT_REG_OK_FOR_BASE_P (op1, strict)
8601 && INT_REG_OK_FOR_INDEX_P (op0, strict))));
8604 bool
8605 avoiding_indexed_address_p (machine_mode mode)
8607 /* Avoid indexed addressing for modes that have non-indexed
8608 load/store instruction forms. */
8609 return (TARGET_AVOID_XFORM && VECTOR_MEM_NONE_P (mode));
8612 bool
8613 legitimate_indirect_address_p (rtx x, int strict)
8615 return GET_CODE (x) == REG && INT_REG_OK_FOR_BASE_P (x, strict);
8618 bool
8619 macho_lo_sum_memory_operand (rtx x, machine_mode mode)
8621 if (!TARGET_MACHO || !flag_pic
8622 || mode != SImode || GET_CODE (x) != MEM)
8623 return false;
8624 x = XEXP (x, 0);
8626 if (GET_CODE (x) != LO_SUM)
8627 return false;
8628 if (GET_CODE (XEXP (x, 0)) != REG)
8629 return false;
8630 if (!INT_REG_OK_FOR_BASE_P (XEXP (x, 0), 0))
8631 return false;
8632 x = XEXP (x, 1);
8634 return CONSTANT_P (x);
8637 static bool
8638 legitimate_lo_sum_address_p (machine_mode mode, rtx x, int strict)
8640 if (GET_CODE (x) != LO_SUM)
8641 return false;
8642 if (GET_CODE (XEXP (x, 0)) != REG)
8643 return false;
8644 if (!INT_REG_OK_FOR_BASE_P (XEXP (x, 0), strict))
8645 return false;
8646 /* quad word addresses are restricted, and we can't use LO_SUM. */
8647 if (mode_supports_vsx_dform_quad (mode))
8648 return false;
8649 x = XEXP (x, 1);
8651 if (TARGET_ELF || TARGET_MACHO)
8653 bool large_toc_ok;
8655 if (DEFAULT_ABI == ABI_V4 && flag_pic)
8656 return false;
8657 /* LRA doesn't use LEGITIMIZE_RELOAD_ADDRESS as it usually calls
8658 push_reload from reload pass code. LEGITIMIZE_RELOAD_ADDRESS
8659 recognizes some LO_SUM addresses as valid although this
8660 function says opposite. In most cases, LRA through different
8661 transformations can generate correct code for address reloads.
8662 It can not manage only some LO_SUM cases. So we need to add
8663 code analogous to one in rs6000_legitimize_reload_address for
8664 LOW_SUM here saying that some addresses are still valid. */
8665 large_toc_ok = (lra_in_progress && TARGET_CMODEL != CMODEL_SMALL
8666 && small_toc_ref (x, VOIDmode));
8667 if (TARGET_TOC && ! large_toc_ok)
8668 return false;
8669 if (GET_MODE_NUNITS (mode) != 1)
8670 return false;
8671 if (GET_MODE_SIZE (mode) > UNITS_PER_WORD
8672 && !(/* ??? Assume floating point reg based on mode? */
8673 TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT
8674 && (mode == DFmode || mode == DDmode)))
8675 return false;
8677 return CONSTANT_P (x) || large_toc_ok;
8680 return false;
8684 /* Try machine-dependent ways of modifying an illegitimate address
8685 to be legitimate. If we find one, return the new, valid address.
8686 This is used from only one place: `memory_address' in explow.c.
8688 OLDX is the address as it was before break_out_memory_refs was
8689 called. In some cases it is useful to look at this to decide what
8690 needs to be done.
8692 It is always safe for this function to do nothing. It exists to
8693 recognize opportunities to optimize the output.
8695 On RS/6000, first check for the sum of a register with a constant
8696 integer that is out of range. If so, generate code to add the
8697 constant with the low-order 16 bits masked to the register and force
8698 this result into another register (this can be done with `cau').
8699 Then generate an address of REG+(CONST&0xffff), allowing for the
8700 possibility of bit 16 being a one.
8702 Then check for the sum of a register and something not constant, try to
8703 load the other things into a register and return the sum. */
8705 static rtx
8706 rs6000_legitimize_address (rtx x, rtx oldx ATTRIBUTE_UNUSED,
8707 machine_mode mode)
8709 unsigned int extra;
8711 if (!reg_offset_addressing_ok_p (mode)
8712 || mode_supports_vsx_dform_quad (mode))
8714 if (virtual_stack_registers_memory_p (x))
8715 return x;
8717 /* In theory we should not be seeing addresses of the form reg+0,
8718 but just in case it is generated, optimize it away. */
8719 if (GET_CODE (x) == PLUS && XEXP (x, 1) == const0_rtx)
8720 return force_reg (Pmode, XEXP (x, 0));
8722 /* For TImode with load/store quad, restrict addresses to just a single
8723 pointer, so it works with both GPRs and VSX registers. */
8724 /* Make sure both operands are registers. */
8725 else if (GET_CODE (x) == PLUS
8726 && (mode != TImode || !TARGET_VSX))
8727 return gen_rtx_PLUS (Pmode,
8728 force_reg (Pmode, XEXP (x, 0)),
8729 force_reg (Pmode, XEXP (x, 1)));
8730 else
8731 return force_reg (Pmode, x);
8733 if (GET_CODE (x) == SYMBOL_REF)
8735 enum tls_model model = SYMBOL_REF_TLS_MODEL (x);
8736 if (model != 0)
8737 return rs6000_legitimize_tls_address (x, model);
8740 extra = 0;
8741 switch (mode)
8743 case E_TFmode:
8744 case E_TDmode:
8745 case E_TImode:
8746 case E_PTImode:
8747 case E_IFmode:
8748 case E_KFmode:
8749 /* As in legitimate_offset_address_p we do not assume
8750 worst-case. The mode here is just a hint as to the registers
8751 used. A TImode is usually in gprs, but may actually be in
8752 fprs. Leave worst-case scenario for reload to handle via
8753 insn constraints. PTImode is only GPRs. */
8754 extra = 8;
8755 break;
8756 default:
8757 break;
8760 if (GET_CODE (x) == PLUS
8761 && GET_CODE (XEXP (x, 0)) == REG
8762 && GET_CODE (XEXP (x, 1)) == CONST_INT
8763 && ((unsigned HOST_WIDE_INT) (INTVAL (XEXP (x, 1)) + 0x8000)
8764 >= 0x10000 - extra)
8765 && !PAIRED_VECTOR_MODE (mode))
8767 HOST_WIDE_INT high_int, low_int;
8768 rtx sum;
8769 low_int = ((INTVAL (XEXP (x, 1)) & 0xffff) ^ 0x8000) - 0x8000;
8770 if (low_int >= 0x8000 - extra)
8771 low_int = 0;
8772 high_int = INTVAL (XEXP (x, 1)) - low_int;
8773 sum = force_operand (gen_rtx_PLUS (Pmode, XEXP (x, 0),
8774 GEN_INT (high_int)), 0);
8775 return plus_constant (Pmode, sum, low_int);
8777 else if (GET_CODE (x) == PLUS
8778 && GET_CODE (XEXP (x, 0)) == REG
8779 && GET_CODE (XEXP (x, 1)) != CONST_INT
8780 && GET_MODE_NUNITS (mode) == 1
8781 && (GET_MODE_SIZE (mode) <= UNITS_PER_WORD
8782 || (/* ??? Assume floating point reg based on mode? */
8783 (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
8784 && (mode == DFmode || mode == DDmode)))
8785 && !avoiding_indexed_address_p (mode))
8787 return gen_rtx_PLUS (Pmode, XEXP (x, 0),
8788 force_reg (Pmode, force_operand (XEXP (x, 1), 0)));
8790 else if (PAIRED_VECTOR_MODE (mode))
8792 if (mode == DImode)
8793 return x;
8794 /* We accept [reg + reg]. */
8796 if (GET_CODE (x) == PLUS)
8798 rtx op1 = XEXP (x, 0);
8799 rtx op2 = XEXP (x, 1);
8800 rtx y;
8802 op1 = force_reg (Pmode, op1);
8803 op2 = force_reg (Pmode, op2);
8805 /* We can't always do [reg + reg] for these, because [reg +
8806 reg + offset] is not a legitimate addressing mode. */
8807 y = gen_rtx_PLUS (Pmode, op1, op2);
8809 if ((GET_MODE_SIZE (mode) > 8 || mode == DDmode) && REG_P (op2))
8810 return force_reg (Pmode, y);
8811 else
8812 return y;
8815 return force_reg (Pmode, x);
8817 else if ((TARGET_ELF
8818 #if TARGET_MACHO
8819 || !MACHO_DYNAMIC_NO_PIC_P
8820 #endif
8822 && TARGET_32BIT
8823 && TARGET_NO_TOC
8824 && ! flag_pic
8825 && GET_CODE (x) != CONST_INT
8826 && GET_CODE (x) != CONST_WIDE_INT
8827 && GET_CODE (x) != CONST_DOUBLE
8828 && CONSTANT_P (x)
8829 && GET_MODE_NUNITS (mode) == 1
8830 && (GET_MODE_SIZE (mode) <= UNITS_PER_WORD
8831 || (/* ??? Assume floating point reg based on mode? */
8832 (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
8833 && (mode == DFmode || mode == DDmode))))
8835 rtx reg = gen_reg_rtx (Pmode);
8836 if (TARGET_ELF)
8837 emit_insn (gen_elf_high (reg, x));
8838 else
8839 emit_insn (gen_macho_high (reg, x));
8840 return gen_rtx_LO_SUM (Pmode, reg, x);
8842 else if (TARGET_TOC
8843 && GET_CODE (x) == SYMBOL_REF
8844 && constant_pool_expr_p (x)
8845 && ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (get_pool_constant (x), Pmode))
8846 return create_TOC_reference (x, NULL_RTX);
8847 else
8848 return x;
8851 /* Debug version of rs6000_legitimize_address. */
8852 static rtx
8853 rs6000_debug_legitimize_address (rtx x, rtx oldx, machine_mode mode)
8855 rtx ret;
8856 rtx_insn *insns;
8858 start_sequence ();
8859 ret = rs6000_legitimize_address (x, oldx, mode);
8860 insns = get_insns ();
8861 end_sequence ();
8863 if (ret != x)
8865 fprintf (stderr,
8866 "\nrs6000_legitimize_address: mode %s, old code %s, "
8867 "new code %s, modified\n",
8868 GET_MODE_NAME (mode), GET_RTX_NAME (GET_CODE (x)),
8869 GET_RTX_NAME (GET_CODE (ret)));
8871 fprintf (stderr, "Original address:\n");
8872 debug_rtx (x);
8874 fprintf (stderr, "oldx:\n");
8875 debug_rtx (oldx);
8877 fprintf (stderr, "New address:\n");
8878 debug_rtx (ret);
8880 if (insns)
8882 fprintf (stderr, "Insns added:\n");
8883 debug_rtx_list (insns, 20);
8886 else
8888 fprintf (stderr,
8889 "\nrs6000_legitimize_address: mode %s, code %s, no change:\n",
8890 GET_MODE_NAME (mode), GET_RTX_NAME (GET_CODE (x)));
8892 debug_rtx (x);
8895 if (insns)
8896 emit_insn (insns);
8898 return ret;
8901 /* This is called from dwarf2out.c via TARGET_ASM_OUTPUT_DWARF_DTPREL.
8902 We need to emit DTP-relative relocations. */
8904 static void rs6000_output_dwarf_dtprel (FILE *, int, rtx) ATTRIBUTE_UNUSED;
8905 static void
8906 rs6000_output_dwarf_dtprel (FILE *file, int size, rtx x)
8908 switch (size)
8910 case 4:
8911 fputs ("\t.long\t", file);
8912 break;
8913 case 8:
8914 fputs (DOUBLE_INT_ASM_OP, file);
8915 break;
8916 default:
8917 gcc_unreachable ();
8919 output_addr_const (file, x);
8920 if (TARGET_ELF)
8921 fputs ("@dtprel+0x8000", file);
8922 else if (TARGET_XCOFF && GET_CODE (x) == SYMBOL_REF)
8924 switch (SYMBOL_REF_TLS_MODEL (x))
8926 case 0:
8927 break;
8928 case TLS_MODEL_LOCAL_EXEC:
8929 fputs ("@le", file);
8930 break;
8931 case TLS_MODEL_INITIAL_EXEC:
8932 fputs ("@ie", file);
8933 break;
8934 case TLS_MODEL_GLOBAL_DYNAMIC:
8935 case TLS_MODEL_LOCAL_DYNAMIC:
8936 fputs ("@m", file);
8937 break;
8938 default:
8939 gcc_unreachable ();
8944 /* Return true if X is a symbol that refers to real (rather than emulated)
8945 TLS. */
8947 static bool
8948 rs6000_real_tls_symbol_ref_p (rtx x)
8950 return (GET_CODE (x) == SYMBOL_REF
8951 && SYMBOL_REF_TLS_MODEL (x) >= TLS_MODEL_REAL);
8954 /* In the name of slightly smaller debug output, and to cater to
8955 general assembler lossage, recognize various UNSPEC sequences
8956 and turn them back into a direct symbol reference. */
8958 static rtx
8959 rs6000_delegitimize_address (rtx orig_x)
8961 rtx x, y, offset;
8963 orig_x = delegitimize_mem_from_attrs (orig_x);
8964 x = orig_x;
8965 if (MEM_P (x))
8966 x = XEXP (x, 0);
8968 y = x;
8969 if (TARGET_CMODEL != CMODEL_SMALL
8970 && GET_CODE (y) == LO_SUM)
8971 y = XEXP (y, 1);
8973 offset = NULL_RTX;
8974 if (GET_CODE (y) == PLUS
8975 && GET_MODE (y) == Pmode
8976 && CONST_INT_P (XEXP (y, 1)))
8978 offset = XEXP (y, 1);
8979 y = XEXP (y, 0);
8982 if (GET_CODE (y) == UNSPEC
8983 && XINT (y, 1) == UNSPEC_TOCREL)
8985 y = XVECEXP (y, 0, 0);
8987 #ifdef HAVE_AS_TLS
8988 /* Do not associate thread-local symbols with the original
8989 constant pool symbol. */
8990 if (TARGET_XCOFF
8991 && GET_CODE (y) == SYMBOL_REF
8992 && CONSTANT_POOL_ADDRESS_P (y)
8993 && rs6000_real_tls_symbol_ref_p (get_pool_constant (y)))
8994 return orig_x;
8995 #endif
8997 if (offset != NULL_RTX)
8998 y = gen_rtx_PLUS (Pmode, y, offset);
8999 if (!MEM_P (orig_x))
9000 return y;
9001 else
9002 return replace_equiv_address_nv (orig_x, y);
9005 if (TARGET_MACHO
9006 && GET_CODE (orig_x) == LO_SUM
9007 && GET_CODE (XEXP (orig_x, 1)) == CONST)
9009 y = XEXP (XEXP (orig_x, 1), 0);
9010 if (GET_CODE (y) == UNSPEC
9011 && XINT (y, 1) == UNSPEC_MACHOPIC_OFFSET)
9012 return XVECEXP (y, 0, 0);
9015 return orig_x;
9018 /* Return true if X shouldn't be emitted into the debug info.
9019 The linker doesn't like .toc section references from
9020 .debug_* sections, so reject .toc section symbols. */
9022 static bool
9023 rs6000_const_not_ok_for_debug_p (rtx x)
9025 if (GET_CODE (x) == UNSPEC)
9026 return true;
9027 if (GET_CODE (x) == SYMBOL_REF
9028 && CONSTANT_POOL_ADDRESS_P (x))
9030 rtx c = get_pool_constant (x);
9031 machine_mode cmode = get_pool_mode (x);
9032 if (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (c, cmode))
9033 return true;
9036 return false;
9040 /* Implement the TARGET_LEGITIMATE_COMBINED_INSN hook. */
9042 static bool
9043 rs6000_legitimate_combined_insn (rtx_insn *insn)
9045 int icode = INSN_CODE (insn);
9047 /* Reject creating doloop insns. Combine should not be allowed
9048 to create these for a number of reasons:
9049 1) In a nested loop, if combine creates one of these in an
9050 outer loop and the register allocator happens to allocate ctr
9051 to the outer loop insn, then the inner loop can't use ctr.
9052 Inner loops ought to be more highly optimized.
9053 2) Combine often wants to create one of these from what was
9054 originally a three insn sequence, first combining the three
9055 insns to two, then to ctrsi/ctrdi. When ctrsi/ctrdi is not
9056 allocated ctr, the splitter takes use back to the three insn
9057 sequence. It's better to stop combine at the two insn
9058 sequence.
9059 3) Faced with not being able to allocate ctr for ctrsi/crtdi
9060 insns, the register allocator sometimes uses floating point
9061 or vector registers for the pseudo. Since ctrsi/ctrdi is a
9062 jump insn and output reloads are not implemented for jumps,
9063 the ctrsi/ctrdi splitters need to handle all possible cases.
9064 That's a pain, and it gets to be seriously difficult when a
9065 splitter that runs after reload needs memory to transfer from
9066 a gpr to fpr. See PR70098 and PR71763 which are not fixed
9067 for the difficult case. It's better to not create problems
9068 in the first place. */
9069 if (icode != CODE_FOR_nothing
9070 && (icode == CODE_FOR_ctrsi_internal1
9071 || icode == CODE_FOR_ctrdi_internal1
9072 || icode == CODE_FOR_ctrsi_internal2
9073 || icode == CODE_FOR_ctrdi_internal2))
9074 return false;
9076 return true;
9079 /* Construct the SYMBOL_REF for the tls_get_addr function. */
9081 static GTY(()) rtx rs6000_tls_symbol;
9082 static rtx
9083 rs6000_tls_get_addr (void)
9085 if (!rs6000_tls_symbol)
9086 rs6000_tls_symbol = init_one_libfunc ("__tls_get_addr");
9088 return rs6000_tls_symbol;
9091 /* Construct the SYMBOL_REF for TLS GOT references. */
9093 static GTY(()) rtx rs6000_got_symbol;
9094 static rtx
9095 rs6000_got_sym (void)
9097 if (!rs6000_got_symbol)
9099 rs6000_got_symbol = gen_rtx_SYMBOL_REF (Pmode, "_GLOBAL_OFFSET_TABLE_");
9100 SYMBOL_REF_FLAGS (rs6000_got_symbol) |= SYMBOL_FLAG_LOCAL;
9101 SYMBOL_REF_FLAGS (rs6000_got_symbol) |= SYMBOL_FLAG_EXTERNAL;
9104 return rs6000_got_symbol;
9107 /* AIX Thread-Local Address support. */
9109 static rtx
9110 rs6000_legitimize_tls_address_aix (rtx addr, enum tls_model model)
9112 rtx sym, mem, tocref, tlsreg, tmpreg, dest, tlsaddr;
9113 const char *name;
9114 char *tlsname;
9116 name = XSTR (addr, 0);
9117 /* Append TLS CSECT qualifier, unless the symbol already is qualified
9118 or the symbol will be in TLS private data section. */
9119 if (name[strlen (name) - 1] != ']'
9120 && (TREE_PUBLIC (SYMBOL_REF_DECL (addr))
9121 || bss_initializer_p (SYMBOL_REF_DECL (addr))))
9123 tlsname = XALLOCAVEC (char, strlen (name) + 4);
9124 strcpy (tlsname, name);
9125 strcat (tlsname,
9126 bss_initializer_p (SYMBOL_REF_DECL (addr)) ? "[UL]" : "[TL]");
9127 tlsaddr = copy_rtx (addr);
9128 XSTR (tlsaddr, 0) = ggc_strdup (tlsname);
9130 else
9131 tlsaddr = addr;
9133 /* Place addr into TOC constant pool. */
9134 sym = force_const_mem (GET_MODE (tlsaddr), tlsaddr);
9136 /* Output the TOC entry and create the MEM referencing the value. */
9137 if (constant_pool_expr_p (XEXP (sym, 0))
9138 && ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (get_pool_constant (XEXP (sym, 0)), Pmode))
9140 tocref = create_TOC_reference (XEXP (sym, 0), NULL_RTX);
9141 mem = gen_const_mem (Pmode, tocref);
9142 set_mem_alias_set (mem, get_TOC_alias_set ());
9144 else
9145 return sym;
9147 /* Use global-dynamic for local-dynamic. */
9148 if (model == TLS_MODEL_GLOBAL_DYNAMIC
9149 || model == TLS_MODEL_LOCAL_DYNAMIC)
9151 /* Create new TOC reference for @m symbol. */
9152 name = XSTR (XVECEXP (XEXP (mem, 0), 0, 0), 0);
9153 tlsname = XALLOCAVEC (char, strlen (name) + 1);
9154 strcpy (tlsname, "*LCM");
9155 strcat (tlsname, name + 3);
9156 rtx modaddr = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (tlsname));
9157 SYMBOL_REF_FLAGS (modaddr) |= SYMBOL_FLAG_LOCAL;
9158 tocref = create_TOC_reference (modaddr, NULL_RTX);
9159 rtx modmem = gen_const_mem (Pmode, tocref);
9160 set_mem_alias_set (modmem, get_TOC_alias_set ());
9162 rtx modreg = gen_reg_rtx (Pmode);
9163 emit_insn (gen_rtx_SET (modreg, modmem));
9165 tmpreg = gen_reg_rtx (Pmode);
9166 emit_insn (gen_rtx_SET (tmpreg, mem));
9168 dest = gen_reg_rtx (Pmode);
9169 if (TARGET_32BIT)
9170 emit_insn (gen_tls_get_addrsi (dest, modreg, tmpreg));
9171 else
9172 emit_insn (gen_tls_get_addrdi (dest, modreg, tmpreg));
9173 return dest;
9175 /* Obtain TLS pointer: 32 bit call or 64 bit GPR 13. */
9176 else if (TARGET_32BIT)
9178 tlsreg = gen_reg_rtx (SImode);
9179 emit_insn (gen_tls_get_tpointer (tlsreg));
9181 else
9182 tlsreg = gen_rtx_REG (DImode, 13);
9184 /* Load the TOC value into temporary register. */
9185 tmpreg = gen_reg_rtx (Pmode);
9186 emit_insn (gen_rtx_SET (tmpreg, mem));
9187 set_unique_reg_note (get_last_insn (), REG_EQUAL,
9188 gen_rtx_MINUS (Pmode, addr, tlsreg));
9190 /* Add TOC symbol value to TLS pointer. */
9191 dest = force_reg (Pmode, gen_rtx_PLUS (Pmode, tmpreg, tlsreg));
9193 return dest;
9196 /* ADDR contains a thread-local SYMBOL_REF. Generate code to compute
9197 this (thread-local) address. */
9199 static rtx
9200 rs6000_legitimize_tls_address (rtx addr, enum tls_model model)
9202 rtx dest, insn;
9204 if (TARGET_XCOFF)
9205 return rs6000_legitimize_tls_address_aix (addr, model);
9207 dest = gen_reg_rtx (Pmode);
9208 if (model == TLS_MODEL_LOCAL_EXEC && rs6000_tls_size == 16)
9210 rtx tlsreg;
9212 if (TARGET_64BIT)
9214 tlsreg = gen_rtx_REG (Pmode, 13);
9215 insn = gen_tls_tprel_64 (dest, tlsreg, addr);
9217 else
9219 tlsreg = gen_rtx_REG (Pmode, 2);
9220 insn = gen_tls_tprel_32 (dest, tlsreg, addr);
9222 emit_insn (insn);
9224 else if (model == TLS_MODEL_LOCAL_EXEC && rs6000_tls_size == 32)
9226 rtx tlsreg, tmp;
9228 tmp = gen_reg_rtx (Pmode);
9229 if (TARGET_64BIT)
9231 tlsreg = gen_rtx_REG (Pmode, 13);
9232 insn = gen_tls_tprel_ha_64 (tmp, tlsreg, addr);
9234 else
9236 tlsreg = gen_rtx_REG (Pmode, 2);
9237 insn = gen_tls_tprel_ha_32 (tmp, tlsreg, addr);
9239 emit_insn (insn);
9240 if (TARGET_64BIT)
9241 insn = gen_tls_tprel_lo_64 (dest, tmp, addr);
9242 else
9243 insn = gen_tls_tprel_lo_32 (dest, tmp, addr);
9244 emit_insn (insn);
9246 else
9248 rtx r3, got, tga, tmp1, tmp2, call_insn;
9250 /* We currently use relocations like @got@tlsgd for tls, which
9251 means the linker will handle allocation of tls entries, placing
9252 them in the .got section. So use a pointer to the .got section,
9253 not one to secondary TOC sections used by 64-bit -mminimal-toc,
9254 or to secondary GOT sections used by 32-bit -fPIC. */
9255 if (TARGET_64BIT)
9256 got = gen_rtx_REG (Pmode, 2);
9257 else
9259 if (flag_pic == 1)
9260 got = gen_rtx_REG (Pmode, RS6000_PIC_OFFSET_TABLE_REGNUM);
9261 else
9263 rtx gsym = rs6000_got_sym ();
9264 got = gen_reg_rtx (Pmode);
9265 if (flag_pic == 0)
9266 rs6000_emit_move (got, gsym, Pmode);
9267 else
9269 rtx mem, lab;
9271 tmp1 = gen_reg_rtx (Pmode);
9272 tmp2 = gen_reg_rtx (Pmode);
9273 mem = gen_const_mem (Pmode, tmp1);
9274 lab = gen_label_rtx ();
9275 emit_insn (gen_load_toc_v4_PIC_1b (gsym, lab));
9276 emit_move_insn (tmp1, gen_rtx_REG (Pmode, LR_REGNO));
9277 if (TARGET_LINK_STACK)
9278 emit_insn (gen_addsi3 (tmp1, tmp1, GEN_INT (4)));
9279 emit_move_insn (tmp2, mem);
9280 rtx_insn *last = emit_insn (gen_addsi3 (got, tmp1, tmp2));
9281 set_unique_reg_note (last, REG_EQUAL, gsym);
9286 if (model == TLS_MODEL_GLOBAL_DYNAMIC)
9288 tga = rs6000_tls_get_addr ();
9289 emit_library_call_value (tga, dest, LCT_CONST, Pmode,
9290 const0_rtx, Pmode);
9292 r3 = gen_rtx_REG (Pmode, 3);
9293 if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
9295 if (TARGET_64BIT)
9296 insn = gen_tls_gd_aix64 (r3, got, addr, tga, const0_rtx);
9297 else
9298 insn = gen_tls_gd_aix32 (r3, got, addr, tga, const0_rtx);
9300 else if (DEFAULT_ABI == ABI_V4)
9301 insn = gen_tls_gd_sysvsi (r3, got, addr, tga, const0_rtx);
9302 else
9303 gcc_unreachable ();
9304 call_insn = last_call_insn ();
9305 PATTERN (call_insn) = insn;
9306 if (DEFAULT_ABI == ABI_V4 && TARGET_SECURE_PLT && flag_pic)
9307 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn),
9308 pic_offset_table_rtx);
9310 else if (model == TLS_MODEL_LOCAL_DYNAMIC)
9312 tga = rs6000_tls_get_addr ();
9313 tmp1 = gen_reg_rtx (Pmode);
9314 emit_library_call_value (tga, tmp1, LCT_CONST, Pmode,
9315 const0_rtx, Pmode);
9317 r3 = gen_rtx_REG (Pmode, 3);
9318 if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
9320 if (TARGET_64BIT)
9321 insn = gen_tls_ld_aix64 (r3, got, tga, const0_rtx);
9322 else
9323 insn = gen_tls_ld_aix32 (r3, got, tga, const0_rtx);
9325 else if (DEFAULT_ABI == ABI_V4)
9326 insn = gen_tls_ld_sysvsi (r3, got, tga, const0_rtx);
9327 else
9328 gcc_unreachable ();
9329 call_insn = last_call_insn ();
9330 PATTERN (call_insn) = insn;
9331 if (DEFAULT_ABI == ABI_V4 && TARGET_SECURE_PLT && flag_pic)
9332 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn),
9333 pic_offset_table_rtx);
9335 if (rs6000_tls_size == 16)
9337 if (TARGET_64BIT)
9338 insn = gen_tls_dtprel_64 (dest, tmp1, addr);
9339 else
9340 insn = gen_tls_dtprel_32 (dest, tmp1, addr);
9342 else if (rs6000_tls_size == 32)
9344 tmp2 = gen_reg_rtx (Pmode);
9345 if (TARGET_64BIT)
9346 insn = gen_tls_dtprel_ha_64 (tmp2, tmp1, addr);
9347 else
9348 insn = gen_tls_dtprel_ha_32 (tmp2, tmp1, addr);
9349 emit_insn (insn);
9350 if (TARGET_64BIT)
9351 insn = gen_tls_dtprel_lo_64 (dest, tmp2, addr);
9352 else
9353 insn = gen_tls_dtprel_lo_32 (dest, tmp2, addr);
9355 else
9357 tmp2 = gen_reg_rtx (Pmode);
9358 if (TARGET_64BIT)
9359 insn = gen_tls_got_dtprel_64 (tmp2, got, addr);
9360 else
9361 insn = gen_tls_got_dtprel_32 (tmp2, got, addr);
9362 emit_insn (insn);
9363 insn = gen_rtx_SET (dest, gen_rtx_PLUS (Pmode, tmp2, tmp1));
9365 emit_insn (insn);
9367 else
9369 /* IE, or 64-bit offset LE. */
9370 tmp2 = gen_reg_rtx (Pmode);
9371 if (TARGET_64BIT)
9372 insn = gen_tls_got_tprel_64 (tmp2, got, addr);
9373 else
9374 insn = gen_tls_got_tprel_32 (tmp2, got, addr);
9375 emit_insn (insn);
9376 if (TARGET_64BIT)
9377 insn = gen_tls_tls_64 (dest, tmp2, addr);
9378 else
9379 insn = gen_tls_tls_32 (dest, tmp2, addr);
9380 emit_insn (insn);
9384 return dest;
9387 /* Only create the global variable for the stack protect guard if we are using
9388 the global flavor of that guard. */
9389 static tree
9390 rs6000_init_stack_protect_guard (void)
9392 if (rs6000_stack_protector_guard == SSP_GLOBAL)
9393 return default_stack_protect_guard ();
9395 return NULL_TREE;
9398 /* Implement TARGET_CANNOT_FORCE_CONST_MEM. */
9400 static bool
9401 rs6000_cannot_force_const_mem (machine_mode mode ATTRIBUTE_UNUSED, rtx x)
9403 if (GET_CODE (x) == HIGH
9404 && GET_CODE (XEXP (x, 0)) == UNSPEC)
9405 return true;
9407 /* A TLS symbol in the TOC cannot contain a sum. */
9408 if (GET_CODE (x) == CONST
9409 && GET_CODE (XEXP (x, 0)) == PLUS
9410 && GET_CODE (XEXP (XEXP (x, 0), 0)) == SYMBOL_REF
9411 && SYMBOL_REF_TLS_MODEL (XEXP (XEXP (x, 0), 0)) != 0)
9412 return true;
9414 /* Do not place an ELF TLS symbol in the constant pool. */
9415 return TARGET_ELF && tls_referenced_p (x);
9418 /* Return true iff the given SYMBOL_REF refers to a constant pool entry
9419 that we have put in the TOC, or for cmodel=medium, if the SYMBOL_REF
9420 can be addressed relative to the toc pointer. */
9422 static bool
9423 use_toc_relative_ref (rtx sym, machine_mode mode)
9425 return ((constant_pool_expr_p (sym)
9426 && ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (get_pool_constant (sym),
9427 get_pool_mode (sym)))
9428 || (TARGET_CMODEL == CMODEL_MEDIUM
9429 && SYMBOL_REF_LOCAL_P (sym)
9430 && GET_MODE_SIZE (mode) <= POWERPC64_TOC_POINTER_ALIGNMENT));
9433 /* Our implementation of LEGITIMIZE_RELOAD_ADDRESS. Returns a value to
9434 replace the input X, or the original X if no replacement is called for.
9435 The output parameter *WIN is 1 if the calling macro should goto WIN,
9436 0 if it should not.
9438 For RS/6000, we wish to handle large displacements off a base
9439 register by splitting the addend across an addiu/addis and the mem insn.
9440 This cuts number of extra insns needed from 3 to 1.
9442 On Darwin, we use this to generate code for floating point constants.
9443 A movsf_low is generated so we wind up with 2 instructions rather than 3.
9444 The Darwin code is inside #if TARGET_MACHO because only then are the
9445 machopic_* functions defined. */
9446 static rtx
9447 rs6000_legitimize_reload_address (rtx x, machine_mode mode,
9448 int opnum, int type,
9449 int ind_levels ATTRIBUTE_UNUSED, int *win)
9451 bool reg_offset_p = reg_offset_addressing_ok_p (mode);
9452 bool quad_offset_p = mode_supports_vsx_dform_quad (mode);
9454 /* Nasty hack for vsx_splat_v2df/v2di load from mem, which takes a
9455 DFmode/DImode MEM. Ditto for ISA 3.0 vsx_splat_v4sf/v4si. */
9456 if (reg_offset_p
9457 && opnum == 1
9458 && ((mode == DFmode && recog_data.operand_mode[0] == V2DFmode)
9459 || (mode == DImode && recog_data.operand_mode[0] == V2DImode)
9460 || (mode == SFmode && recog_data.operand_mode[0] == V4SFmode
9461 && TARGET_P9_VECTOR)
9462 || (mode == SImode && recog_data.operand_mode[0] == V4SImode
9463 && TARGET_P9_VECTOR)))
9464 reg_offset_p = false;
9466 /* We must recognize output that we have already generated ourselves. */
9467 if (GET_CODE (x) == PLUS
9468 && GET_CODE (XEXP (x, 0)) == PLUS
9469 && GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
9470 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
9471 && GET_CODE (XEXP (x, 1)) == CONST_INT)
9473 if (TARGET_DEBUG_ADDR)
9475 fprintf (stderr, "\nlegitimize_reload_address push_reload #1:\n");
9476 debug_rtx (x);
9478 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
9479 BASE_REG_CLASS, GET_MODE (x), VOIDmode, 0, 0,
9480 opnum, (enum reload_type) type);
9481 *win = 1;
9482 return x;
9485 /* Likewise for (lo_sum (high ...) ...) output we have generated. */
9486 if (GET_CODE (x) == LO_SUM
9487 && GET_CODE (XEXP (x, 0)) == HIGH)
9489 if (TARGET_DEBUG_ADDR)
9491 fprintf (stderr, "\nlegitimize_reload_address push_reload #2:\n");
9492 debug_rtx (x);
9494 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
9495 BASE_REG_CLASS, Pmode, VOIDmode, 0, 0,
9496 opnum, (enum reload_type) type);
9497 *win = 1;
9498 return x;
9501 #if TARGET_MACHO
9502 if (DEFAULT_ABI == ABI_DARWIN && flag_pic
9503 && GET_CODE (x) == LO_SUM
9504 && GET_CODE (XEXP (x, 0)) == PLUS
9505 && XEXP (XEXP (x, 0), 0) == pic_offset_table_rtx
9506 && GET_CODE (XEXP (XEXP (x, 0), 1)) == HIGH
9507 && XEXP (XEXP (XEXP (x, 0), 1), 0) == XEXP (x, 1)
9508 && machopic_operand_p (XEXP (x, 1)))
9510 /* Result of previous invocation of this function on Darwin
9511 floating point constant. */
9512 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
9513 BASE_REG_CLASS, Pmode, VOIDmode, 0, 0,
9514 opnum, (enum reload_type) type);
9515 *win = 1;
9516 return x;
9518 #endif
9520 if (TARGET_CMODEL != CMODEL_SMALL
9521 && reg_offset_p
9522 && !quad_offset_p
9523 && small_toc_ref (x, VOIDmode))
9525 rtx hi = gen_rtx_HIGH (Pmode, copy_rtx (x));
9526 x = gen_rtx_LO_SUM (Pmode, hi, x);
9527 if (TARGET_DEBUG_ADDR)
9529 fprintf (stderr, "\nlegitimize_reload_address push_reload #3:\n");
9530 debug_rtx (x);
9532 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
9533 BASE_REG_CLASS, Pmode, VOIDmode, 0, 0,
9534 opnum, (enum reload_type) type);
9535 *win = 1;
9536 return x;
9539 if (GET_CODE (x) == PLUS
9540 && REG_P (XEXP (x, 0))
9541 && REGNO (XEXP (x, 0)) < FIRST_PSEUDO_REGISTER
9542 && INT_REG_OK_FOR_BASE_P (XEXP (x, 0), 1)
9543 && CONST_INT_P (XEXP (x, 1))
9544 && reg_offset_p
9545 && !PAIRED_VECTOR_MODE (mode)
9546 && (quad_offset_p || !VECTOR_MODE_P (mode) || VECTOR_MEM_NONE_P (mode)))
9548 HOST_WIDE_INT val = INTVAL (XEXP (x, 1));
9549 HOST_WIDE_INT low = ((val & 0xffff) ^ 0x8000) - 0x8000;
9550 HOST_WIDE_INT high
9551 = (((val - low) & 0xffffffff) ^ 0x80000000) - 0x80000000;
9553 /* Check for 32-bit overflow or quad addresses with one of the
9554 four least significant bits set. */
9555 if (high + low != val
9556 || (quad_offset_p && (low & 0xf)))
9558 *win = 0;
9559 return x;
9562 /* Reload the high part into a base reg; leave the low part
9563 in the mem directly. */
9565 x = gen_rtx_PLUS (GET_MODE (x),
9566 gen_rtx_PLUS (GET_MODE (x), XEXP (x, 0),
9567 GEN_INT (high)),
9568 GEN_INT (low));
9570 if (TARGET_DEBUG_ADDR)
9572 fprintf (stderr, "\nlegitimize_reload_address push_reload #4:\n");
9573 debug_rtx (x);
9575 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
9576 BASE_REG_CLASS, GET_MODE (x), VOIDmode, 0, 0,
9577 opnum, (enum reload_type) type);
9578 *win = 1;
9579 return x;
9582 if (GET_CODE (x) == SYMBOL_REF
9583 && reg_offset_p
9584 && !quad_offset_p
9585 && (!VECTOR_MODE_P (mode) || VECTOR_MEM_NONE_P (mode))
9586 && !PAIRED_VECTOR_MODE (mode)
9587 #if TARGET_MACHO
9588 && DEFAULT_ABI == ABI_DARWIN
9589 && (flag_pic || MACHO_DYNAMIC_NO_PIC_P)
9590 && machopic_symbol_defined_p (x)
9591 #else
9592 && DEFAULT_ABI == ABI_V4
9593 && !flag_pic
9594 #endif
9595 /* Don't do this for TFmode or TDmode, since the result isn't offsettable.
9596 The same goes for DImode without 64-bit gprs and DFmode and DDmode
9597 without fprs.
9598 ??? Assume floating point reg based on mode? This assumption is
9599 violated by eg. powerpc-linux -m32 compile of gcc.dg/pr28796-2.c
9600 where reload ends up doing a DFmode load of a constant from
9601 mem using two gprs. Unfortunately, at this point reload
9602 hasn't yet selected regs so poking around in reload data
9603 won't help and even if we could figure out the regs reliably,
9604 we'd still want to allow this transformation when the mem is
9605 naturally aligned. Since we say the address is good here, we
9606 can't disable offsets from LO_SUMs in mem_operand_gpr.
9607 FIXME: Allow offset from lo_sum for other modes too, when
9608 mem is sufficiently aligned.
9610 Also disallow this if the type can go in VMX/Altivec registers, since
9611 those registers do not have d-form (reg+offset) address modes. */
9612 && !reg_addr[mode].scalar_in_vmx_p
9613 && mode != TFmode
9614 && mode != TDmode
9615 && mode != IFmode
9616 && mode != KFmode
9617 && (mode != TImode || !TARGET_VSX)
9618 && mode != PTImode
9619 && (mode != DImode || TARGET_POWERPC64)
9620 && ((mode != DFmode && mode != DDmode) || TARGET_POWERPC64
9621 || (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)))
9623 #if TARGET_MACHO
9624 if (flag_pic)
9626 rtx offset = machopic_gen_offset (x);
9627 x = gen_rtx_LO_SUM (GET_MODE (x),
9628 gen_rtx_PLUS (Pmode, pic_offset_table_rtx,
9629 gen_rtx_HIGH (Pmode, offset)), offset);
9631 else
9632 #endif
9633 x = gen_rtx_LO_SUM (GET_MODE (x),
9634 gen_rtx_HIGH (Pmode, x), x);
9636 if (TARGET_DEBUG_ADDR)
9638 fprintf (stderr, "\nlegitimize_reload_address push_reload #5:\n");
9639 debug_rtx (x);
9641 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
9642 BASE_REG_CLASS, Pmode, VOIDmode, 0, 0,
9643 opnum, (enum reload_type) type);
9644 *win = 1;
9645 return x;
9648 /* Reload an offset address wrapped by an AND that represents the
9649 masking of the lower bits. Strip the outer AND and let reload
9650 convert the offset address into an indirect address. For VSX,
9651 force reload to create the address with an AND in a separate
9652 register, because we can't guarantee an altivec register will
9653 be used. */
9654 if (VECTOR_MEM_ALTIVEC_P (mode)
9655 && GET_CODE (x) == AND
9656 && GET_CODE (XEXP (x, 0)) == PLUS
9657 && GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
9658 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
9659 && GET_CODE (XEXP (x, 1)) == CONST_INT
9660 && INTVAL (XEXP (x, 1)) == -16)
9662 x = XEXP (x, 0);
9663 *win = 1;
9664 return x;
9667 if (TARGET_TOC
9668 && reg_offset_p
9669 && !quad_offset_p
9670 && GET_CODE (x) == SYMBOL_REF
9671 && use_toc_relative_ref (x, mode))
9673 x = create_TOC_reference (x, NULL_RTX);
9674 if (TARGET_CMODEL != CMODEL_SMALL)
9676 if (TARGET_DEBUG_ADDR)
9678 fprintf (stderr, "\nlegitimize_reload_address push_reload #6:\n");
9679 debug_rtx (x);
9681 push_reload (XEXP (x, 0), NULL_RTX, &XEXP (x, 0), NULL,
9682 BASE_REG_CLASS, Pmode, VOIDmode, 0, 0,
9683 opnum, (enum reload_type) type);
9685 *win = 1;
9686 return x;
9688 *win = 0;
9689 return x;
9692 /* Debug version of rs6000_legitimize_reload_address. */
9693 static rtx
9694 rs6000_debug_legitimize_reload_address (rtx x, machine_mode mode,
9695 int opnum, int type,
9696 int ind_levels, int *win)
9698 rtx ret = rs6000_legitimize_reload_address (x, mode, opnum, type,
9699 ind_levels, win);
9700 fprintf (stderr,
9701 "\nrs6000_legitimize_reload_address: mode = %s, opnum = %d, "
9702 "type = %d, ind_levels = %d, win = %d, original addr:\n",
9703 GET_MODE_NAME (mode), opnum, type, ind_levels, *win);
9704 debug_rtx (x);
9706 if (x == ret)
9707 fprintf (stderr, "Same address returned\n");
9708 else if (!ret)
9709 fprintf (stderr, "NULL returned\n");
9710 else
9712 fprintf (stderr, "New address:\n");
9713 debug_rtx (ret);
9716 return ret;
9719 /* TARGET_LEGITIMATE_ADDRESS_P recognizes an RTL expression
9720 that is a valid memory address for an instruction.
9721 The MODE argument is the machine mode for the MEM expression
9722 that wants to use this address.
9724 On the RS/6000, there are four valid address: a SYMBOL_REF that
9725 refers to a constant pool entry of an address (or the sum of it
9726 plus a constant), a short (16-bit signed) constant plus a register,
9727 the sum of two registers, or a register indirect, possibly with an
9728 auto-increment. For DFmode, DDmode and DImode with a constant plus
9729 register, we must ensure that both words are addressable or PowerPC64
9730 with offset word aligned.
9732 For modes spanning multiple registers (DFmode and DDmode in 32-bit GPRs,
9733 32-bit DImode, TImode, TFmode, TDmode), indexed addressing cannot be used
9734 because adjacent memory cells are accessed by adding word-sized offsets
9735 during assembly output. */
9736 static bool
9737 rs6000_legitimate_address_p (machine_mode mode, rtx x, bool reg_ok_strict)
9739 bool reg_offset_p = reg_offset_addressing_ok_p (mode);
9740 bool quad_offset_p = mode_supports_vsx_dform_quad (mode);
9742 /* If this is an unaligned stvx/ldvx type address, discard the outer AND. */
9743 if (VECTOR_MEM_ALTIVEC_P (mode)
9744 && GET_CODE (x) == AND
9745 && GET_CODE (XEXP (x, 1)) == CONST_INT
9746 && INTVAL (XEXP (x, 1)) == -16)
9747 x = XEXP (x, 0);
9749 if (TARGET_ELF && RS6000_SYMBOL_REF_TLS_P (x))
9750 return 0;
9751 if (legitimate_indirect_address_p (x, reg_ok_strict))
9752 return 1;
9753 if (TARGET_UPDATE
9754 && (GET_CODE (x) == PRE_INC || GET_CODE (x) == PRE_DEC)
9755 && mode_supports_pre_incdec_p (mode)
9756 && legitimate_indirect_address_p (XEXP (x, 0), reg_ok_strict))
9757 return 1;
9758 /* Handle restricted vector d-form offsets in ISA 3.0. */
9759 if (quad_offset_p)
9761 if (quad_address_p (x, mode, reg_ok_strict))
9762 return 1;
9764 else if (virtual_stack_registers_memory_p (x))
9765 return 1;
9767 else if (reg_offset_p)
9769 if (legitimate_small_data_p (mode, x))
9770 return 1;
9771 if (legitimate_constant_pool_address_p (x, mode,
9772 reg_ok_strict || lra_in_progress))
9773 return 1;
9774 if (reg_addr[mode].fused_toc && GET_CODE (x) == UNSPEC
9775 && XINT (x, 1) == UNSPEC_FUSION_ADDIS)
9776 return 1;
9779 /* For TImode, if we have TImode in VSX registers, only allow register
9780 indirect addresses. This will allow the values to go in either GPRs
9781 or VSX registers without reloading. The vector types would tend to
9782 go into VSX registers, so we allow REG+REG, while TImode seems
9783 somewhat split, in that some uses are GPR based, and some VSX based. */
9784 /* FIXME: We could loosen this by changing the following to
9785 if (mode == TImode && TARGET_QUAD_MEMORY && TARGET_VSX)
9786 but currently we cannot allow REG+REG addressing for TImode. See
9787 PR72827 for complete details on how this ends up hoodwinking DSE. */
9788 if (mode == TImode && TARGET_VSX)
9789 return 0;
9790 /* If not REG_OK_STRICT (before reload) let pass any stack offset. */
9791 if (! reg_ok_strict
9792 && reg_offset_p
9793 && GET_CODE (x) == PLUS
9794 && GET_CODE (XEXP (x, 0)) == REG
9795 && (XEXP (x, 0) == virtual_stack_vars_rtx
9796 || XEXP (x, 0) == arg_pointer_rtx)
9797 && GET_CODE (XEXP (x, 1)) == CONST_INT)
9798 return 1;
9799 if (rs6000_legitimate_offset_address_p (mode, x, reg_ok_strict, false))
9800 return 1;
9801 if (!FLOAT128_2REG_P (mode)
9802 && ((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
9803 || TARGET_POWERPC64
9804 || (mode != DFmode && mode != DDmode))
9805 && (TARGET_POWERPC64 || mode != DImode)
9806 && (mode != TImode || VECTOR_MEM_VSX_P (TImode))
9807 && mode != PTImode
9808 && !avoiding_indexed_address_p (mode)
9809 && legitimate_indexed_address_p (x, reg_ok_strict))
9810 return 1;
9811 if (TARGET_UPDATE && GET_CODE (x) == PRE_MODIFY
9812 && mode_supports_pre_modify_p (mode)
9813 && legitimate_indirect_address_p (XEXP (x, 0), reg_ok_strict)
9814 && (rs6000_legitimate_offset_address_p (mode, XEXP (x, 1),
9815 reg_ok_strict, false)
9816 || (!avoiding_indexed_address_p (mode)
9817 && legitimate_indexed_address_p (XEXP (x, 1), reg_ok_strict)))
9818 && rtx_equal_p (XEXP (XEXP (x, 1), 0), XEXP (x, 0)))
9819 return 1;
9820 if (reg_offset_p && !quad_offset_p
9821 && legitimate_lo_sum_address_p (mode, x, reg_ok_strict))
9822 return 1;
9823 return 0;
9826 /* Debug version of rs6000_legitimate_address_p. */
9827 static bool
9828 rs6000_debug_legitimate_address_p (machine_mode mode, rtx x,
9829 bool reg_ok_strict)
9831 bool ret = rs6000_legitimate_address_p (mode, x, reg_ok_strict);
9832 fprintf (stderr,
9833 "\nrs6000_legitimate_address_p: return = %s, mode = %s, "
9834 "strict = %d, reload = %s, code = %s\n",
9835 ret ? "true" : "false",
9836 GET_MODE_NAME (mode),
9837 reg_ok_strict,
9838 (reload_completed ? "after" : "before"),
9839 GET_RTX_NAME (GET_CODE (x)));
9840 debug_rtx (x);
9842 return ret;
9845 /* Implement TARGET_MODE_DEPENDENT_ADDRESS_P. */
9847 static bool
9848 rs6000_mode_dependent_address_p (const_rtx addr,
9849 addr_space_t as ATTRIBUTE_UNUSED)
9851 return rs6000_mode_dependent_address_ptr (addr);
9854 /* Go to LABEL if ADDR (a legitimate address expression)
9855 has an effect that depends on the machine mode it is used for.
9857 On the RS/6000 this is true of all integral offsets (since AltiVec
9858 and VSX modes don't allow them) or is a pre-increment or decrement.
9860 ??? Except that due to conceptual problems in offsettable_address_p
9861 we can't really report the problems of integral offsets. So leave
9862 this assuming that the adjustable offset must be valid for the
9863 sub-words of a TFmode operand, which is what we had before. */
9865 static bool
9866 rs6000_mode_dependent_address (const_rtx addr)
9868 switch (GET_CODE (addr))
9870 case PLUS:
9871 /* Any offset from virtual_stack_vars_rtx and arg_pointer_rtx
9872 is considered a legitimate address before reload, so there
9873 are no offset restrictions in that case. Note that this
9874 condition is safe in strict mode because any address involving
9875 virtual_stack_vars_rtx or arg_pointer_rtx would already have
9876 been rejected as illegitimate. */
9877 if (XEXP (addr, 0) != virtual_stack_vars_rtx
9878 && XEXP (addr, 0) != arg_pointer_rtx
9879 && GET_CODE (XEXP (addr, 1)) == CONST_INT)
9881 unsigned HOST_WIDE_INT val = INTVAL (XEXP (addr, 1));
9882 return val + 0x8000 >= 0x10000 - (TARGET_POWERPC64 ? 8 : 12);
9884 break;
9886 case LO_SUM:
9887 /* Anything in the constant pool is sufficiently aligned that
9888 all bytes have the same high part address. */
9889 return !legitimate_constant_pool_address_p (addr, QImode, false);
9891 /* Auto-increment cases are now treated generically in recog.c. */
9892 case PRE_MODIFY:
9893 return TARGET_UPDATE;
9895 /* AND is only allowed in Altivec loads. */
9896 case AND:
9897 return true;
9899 default:
9900 break;
9903 return false;
9906 /* Debug version of rs6000_mode_dependent_address. */
9907 static bool
9908 rs6000_debug_mode_dependent_address (const_rtx addr)
9910 bool ret = rs6000_mode_dependent_address (addr);
9912 fprintf (stderr, "\nrs6000_mode_dependent_address: ret = %s\n",
9913 ret ? "true" : "false");
9914 debug_rtx (addr);
9916 return ret;
9919 /* Implement FIND_BASE_TERM. */
9922 rs6000_find_base_term (rtx op)
9924 rtx base;
9926 base = op;
9927 if (GET_CODE (base) == CONST)
9928 base = XEXP (base, 0);
9929 if (GET_CODE (base) == PLUS)
9930 base = XEXP (base, 0);
9931 if (GET_CODE (base) == UNSPEC)
9932 switch (XINT (base, 1))
9934 case UNSPEC_TOCREL:
9935 case UNSPEC_MACHOPIC_OFFSET:
9936 /* OP represents SYM [+ OFFSET] - ANCHOR. SYM is the base term
9937 for aliasing purposes. */
9938 return XVECEXP (base, 0, 0);
9941 return op;
9944 /* More elaborate version of recog's offsettable_memref_p predicate
9945 that works around the ??? note of rs6000_mode_dependent_address.
9946 In particular it accepts
9948 (mem:DI (plus:SI (reg/f:SI 31 31) (const_int 32760 [0x7ff8])))
9950 in 32-bit mode, that the recog predicate rejects. */
9952 static bool
9953 rs6000_offsettable_memref_p (rtx op, machine_mode reg_mode)
9955 bool worst_case;
9957 if (!MEM_P (op))
9958 return false;
9960 /* First mimic offsettable_memref_p. */
9961 if (offsettable_address_p (true, GET_MODE (op), XEXP (op, 0)))
9962 return true;
9964 /* offsettable_address_p invokes rs6000_mode_dependent_address, but
9965 the latter predicate knows nothing about the mode of the memory
9966 reference and, therefore, assumes that it is the largest supported
9967 mode (TFmode). As a consequence, legitimate offsettable memory
9968 references are rejected. rs6000_legitimate_offset_address_p contains
9969 the correct logic for the PLUS case of rs6000_mode_dependent_address,
9970 at least with a little bit of help here given that we know the
9971 actual registers used. */
9972 worst_case = ((TARGET_POWERPC64 && GET_MODE_CLASS (reg_mode) == MODE_INT)
9973 || GET_MODE_SIZE (reg_mode) == 4);
9974 return rs6000_legitimate_offset_address_p (GET_MODE (op), XEXP (op, 0),
9975 true, worst_case);
9978 /* Determine the reassociation width to be used in reassociate_bb.
9979 This takes into account how many parallel operations we
9980 can actually do of a given type, and also the latency.
9982 int add/sub 6/cycle
9983 mul 2/cycle
9984 vect add/sub/mul 2/cycle
9985 fp add/sub/mul 2/cycle
9986 dfp 1/cycle
9989 static int
9990 rs6000_reassociation_width (unsigned int opc ATTRIBUTE_UNUSED,
9991 machine_mode mode)
9993 switch (rs6000_cpu)
9995 case PROCESSOR_POWER8:
9996 case PROCESSOR_POWER9:
9997 if (DECIMAL_FLOAT_MODE_P (mode))
9998 return 1;
9999 if (VECTOR_MODE_P (mode))
10000 return 4;
10001 if (INTEGRAL_MODE_P (mode))
10002 return opc == MULT_EXPR ? 4 : 6;
10003 if (FLOAT_MODE_P (mode))
10004 return 4;
10005 break;
10006 default:
10007 break;
10009 return 1;
10012 /* Change register usage conditional on target flags. */
10013 static void
10014 rs6000_conditional_register_usage (void)
10016 int i;
10018 if (TARGET_DEBUG_TARGET)
10019 fprintf (stderr, "rs6000_conditional_register_usage called\n");
10021 /* Set MQ register fixed (already call_used) so that it will not be
10022 allocated. */
10023 fixed_regs[64] = 1;
10025 /* 64-bit AIX and Linux reserve GPR13 for thread-private data. */
10026 if (TARGET_64BIT)
10027 fixed_regs[13] = call_used_regs[13]
10028 = call_really_used_regs[13] = 1;
10030 /* Conditionally disable FPRs. */
10031 if (TARGET_SOFT_FLOAT)
10032 for (i = 32; i < 64; i++)
10033 fixed_regs[i] = call_used_regs[i]
10034 = call_really_used_regs[i] = 1;
10036 /* The TOC register is not killed across calls in a way that is
10037 visible to the compiler. */
10038 if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
10039 call_really_used_regs[2] = 0;
10041 if (DEFAULT_ABI == ABI_V4 && flag_pic == 2)
10042 fixed_regs[RS6000_PIC_OFFSET_TABLE_REGNUM] = 1;
10044 if (DEFAULT_ABI == ABI_V4 && flag_pic == 1)
10045 fixed_regs[RS6000_PIC_OFFSET_TABLE_REGNUM]
10046 = call_used_regs[RS6000_PIC_OFFSET_TABLE_REGNUM]
10047 = call_really_used_regs[RS6000_PIC_OFFSET_TABLE_REGNUM] = 1;
10049 if (DEFAULT_ABI == ABI_DARWIN && flag_pic)
10050 fixed_regs[RS6000_PIC_OFFSET_TABLE_REGNUM]
10051 = call_used_regs[RS6000_PIC_OFFSET_TABLE_REGNUM]
10052 = call_really_used_regs[RS6000_PIC_OFFSET_TABLE_REGNUM] = 1;
10054 if (TARGET_TOC && TARGET_MINIMAL_TOC)
10055 fixed_regs[RS6000_PIC_OFFSET_TABLE_REGNUM]
10056 = call_used_regs[RS6000_PIC_OFFSET_TABLE_REGNUM] = 1;
10058 if (!TARGET_ALTIVEC && !TARGET_VSX)
10060 for (i = FIRST_ALTIVEC_REGNO; i <= LAST_ALTIVEC_REGNO; ++i)
10061 fixed_regs[i] = call_used_regs[i] = call_really_used_regs[i] = 1;
10062 call_really_used_regs[VRSAVE_REGNO] = 1;
10065 if (TARGET_ALTIVEC || TARGET_VSX)
10066 global_regs[VSCR_REGNO] = 1;
10068 if (TARGET_ALTIVEC_ABI)
10070 for (i = FIRST_ALTIVEC_REGNO; i < FIRST_ALTIVEC_REGNO + 20; ++i)
10071 call_used_regs[i] = call_really_used_regs[i] = 1;
10073 /* AIX reserves VR20:31 in non-extended ABI mode. */
10074 if (TARGET_XCOFF)
10075 for (i = FIRST_ALTIVEC_REGNO + 20; i < FIRST_ALTIVEC_REGNO + 32; ++i)
10076 fixed_regs[i] = call_used_regs[i] = call_really_used_regs[i] = 1;
10081 /* Output insns to set DEST equal to the constant SOURCE as a series of
10082 lis, ori and shl instructions and return TRUE. */
10084 bool
10085 rs6000_emit_set_const (rtx dest, rtx source)
10087 machine_mode mode = GET_MODE (dest);
10088 rtx temp, set;
10089 rtx_insn *insn;
10090 HOST_WIDE_INT c;
10092 gcc_checking_assert (CONST_INT_P (source));
10093 c = INTVAL (source);
10094 switch (mode)
10096 case E_QImode:
10097 case E_HImode:
10098 emit_insn (gen_rtx_SET (dest, source));
10099 return true;
10101 case E_SImode:
10102 temp = !can_create_pseudo_p () ? dest : gen_reg_rtx (SImode);
10104 emit_insn (gen_rtx_SET (copy_rtx (temp),
10105 GEN_INT (c & ~(HOST_WIDE_INT) 0xffff)));
10106 emit_insn (gen_rtx_SET (dest,
10107 gen_rtx_IOR (SImode, copy_rtx (temp),
10108 GEN_INT (c & 0xffff))));
10109 break;
10111 case E_DImode:
10112 if (!TARGET_POWERPC64)
10114 rtx hi, lo;
10116 hi = operand_subword_force (copy_rtx (dest), WORDS_BIG_ENDIAN == 0,
10117 DImode);
10118 lo = operand_subword_force (dest, WORDS_BIG_ENDIAN != 0,
10119 DImode);
10120 emit_move_insn (hi, GEN_INT (c >> 32));
10121 c = ((c & 0xffffffff) ^ 0x80000000) - 0x80000000;
10122 emit_move_insn (lo, GEN_INT (c));
10124 else
10125 rs6000_emit_set_long_const (dest, c);
10126 break;
10128 default:
10129 gcc_unreachable ();
10132 insn = get_last_insn ();
10133 set = single_set (insn);
10134 if (! CONSTANT_P (SET_SRC (set)))
10135 set_unique_reg_note (insn, REG_EQUAL, GEN_INT (c));
10137 return true;
10140 /* Subroutine of rs6000_emit_set_const, handling PowerPC64 DImode.
10141 Output insns to set DEST equal to the constant C as a series of
10142 lis, ori and shl instructions. */
10144 static void
10145 rs6000_emit_set_long_const (rtx dest, HOST_WIDE_INT c)
10147 rtx temp;
10148 HOST_WIDE_INT ud1, ud2, ud3, ud4;
10150 ud1 = c & 0xffff;
10151 c = c >> 16;
10152 ud2 = c & 0xffff;
10153 c = c >> 16;
10154 ud3 = c & 0xffff;
10155 c = c >> 16;
10156 ud4 = c & 0xffff;
10158 if ((ud4 == 0xffff && ud3 == 0xffff && ud2 == 0xffff && (ud1 & 0x8000))
10159 || (ud4 == 0 && ud3 == 0 && ud2 == 0 && ! (ud1 & 0x8000)))
10160 emit_move_insn (dest, GEN_INT ((ud1 ^ 0x8000) - 0x8000));
10162 else if ((ud4 == 0xffff && ud3 == 0xffff && (ud2 & 0x8000))
10163 || (ud4 == 0 && ud3 == 0 && ! (ud2 & 0x8000)))
10165 temp = !can_create_pseudo_p () ? dest : gen_reg_rtx (DImode);
10167 emit_move_insn (ud1 != 0 ? copy_rtx (temp) : dest,
10168 GEN_INT (((ud2 << 16) ^ 0x80000000) - 0x80000000));
10169 if (ud1 != 0)
10170 emit_move_insn (dest,
10171 gen_rtx_IOR (DImode, copy_rtx (temp),
10172 GEN_INT (ud1)));
10174 else if (ud3 == 0 && ud4 == 0)
10176 temp = !can_create_pseudo_p () ? dest : gen_reg_rtx (DImode);
10178 gcc_assert (ud2 & 0x8000);
10179 emit_move_insn (copy_rtx (temp),
10180 GEN_INT (((ud2 << 16) ^ 0x80000000) - 0x80000000));
10181 if (ud1 != 0)
10182 emit_move_insn (copy_rtx (temp),
10183 gen_rtx_IOR (DImode, copy_rtx (temp),
10184 GEN_INT (ud1)));
10185 emit_move_insn (dest,
10186 gen_rtx_ZERO_EXTEND (DImode,
10187 gen_lowpart (SImode,
10188 copy_rtx (temp))));
10190 else if ((ud4 == 0xffff && (ud3 & 0x8000))
10191 || (ud4 == 0 && ! (ud3 & 0x8000)))
10193 temp = !can_create_pseudo_p () ? dest : gen_reg_rtx (DImode);
10195 emit_move_insn (copy_rtx (temp),
10196 GEN_INT (((ud3 << 16) ^ 0x80000000) - 0x80000000));
10197 if (ud2 != 0)
10198 emit_move_insn (copy_rtx (temp),
10199 gen_rtx_IOR (DImode, copy_rtx (temp),
10200 GEN_INT (ud2)));
10201 emit_move_insn (ud1 != 0 ? copy_rtx (temp) : dest,
10202 gen_rtx_ASHIFT (DImode, copy_rtx (temp),
10203 GEN_INT (16)));
10204 if (ud1 != 0)
10205 emit_move_insn (dest,
10206 gen_rtx_IOR (DImode, copy_rtx (temp),
10207 GEN_INT (ud1)));
10209 else
10211 temp = !can_create_pseudo_p () ? dest : gen_reg_rtx (DImode);
10213 emit_move_insn (copy_rtx (temp),
10214 GEN_INT (((ud4 << 16) ^ 0x80000000) - 0x80000000));
10215 if (ud3 != 0)
10216 emit_move_insn (copy_rtx (temp),
10217 gen_rtx_IOR (DImode, copy_rtx (temp),
10218 GEN_INT (ud3)));
10220 emit_move_insn (ud2 != 0 || ud1 != 0 ? copy_rtx (temp) : dest,
10221 gen_rtx_ASHIFT (DImode, copy_rtx (temp),
10222 GEN_INT (32)));
10223 if (ud2 != 0)
10224 emit_move_insn (ud1 != 0 ? copy_rtx (temp) : dest,
10225 gen_rtx_IOR (DImode, copy_rtx (temp),
10226 GEN_INT (ud2 << 16)));
10227 if (ud1 != 0)
10228 emit_move_insn (dest,
10229 gen_rtx_IOR (DImode, copy_rtx (temp),
10230 GEN_INT (ud1)));
10234 /* Helper for the following. Get rid of [r+r] memory refs
10235 in cases where it won't work (TImode, TFmode, TDmode, PTImode). */
10237 static void
10238 rs6000_eliminate_indexed_memrefs (rtx operands[2])
10240 if (GET_CODE (operands[0]) == MEM
10241 && GET_CODE (XEXP (operands[0], 0)) != REG
10242 && ! legitimate_constant_pool_address_p (XEXP (operands[0], 0),
10243 GET_MODE (operands[0]), false))
10244 operands[0]
10245 = replace_equiv_address (operands[0],
10246 copy_addr_to_reg (XEXP (operands[0], 0)));
10248 if (GET_CODE (operands[1]) == MEM
10249 && GET_CODE (XEXP (operands[1], 0)) != REG
10250 && ! legitimate_constant_pool_address_p (XEXP (operands[1], 0),
10251 GET_MODE (operands[1]), false))
10252 operands[1]
10253 = replace_equiv_address (operands[1],
10254 copy_addr_to_reg (XEXP (operands[1], 0)));
10257 /* Generate a vector of constants to permute MODE for a little-endian
10258 storage operation by swapping the two halves of a vector. */
10259 static rtvec
10260 rs6000_const_vec (machine_mode mode)
10262 int i, subparts;
10263 rtvec v;
10265 switch (mode)
10267 case E_V1TImode:
10268 subparts = 1;
10269 break;
10270 case E_V2DFmode:
10271 case E_V2DImode:
10272 subparts = 2;
10273 break;
10274 case E_V4SFmode:
10275 case E_V4SImode:
10276 subparts = 4;
10277 break;
10278 case E_V8HImode:
10279 subparts = 8;
10280 break;
10281 case E_V16QImode:
10282 subparts = 16;
10283 break;
10284 default:
10285 gcc_unreachable();
10288 v = rtvec_alloc (subparts);
10290 for (i = 0; i < subparts / 2; ++i)
10291 RTVEC_ELT (v, i) = gen_rtx_CONST_INT (DImode, i + subparts / 2);
10292 for (i = subparts / 2; i < subparts; ++i)
10293 RTVEC_ELT (v, i) = gen_rtx_CONST_INT (DImode, i - subparts / 2);
10295 return v;
10298 /* Emit an lxvd2x, stxvd2x, or xxpermdi instruction for a VSX load or
10299 store operation. */
10300 void
10301 rs6000_emit_le_vsx_permute (rtx dest, rtx source, machine_mode mode)
10303 /* Scalar permutations are easier to express in integer modes rather than
10304 floating-point modes, so cast them here. We use V1TImode instead
10305 of TImode to ensure that the values don't go through GPRs. */
10306 if (FLOAT128_VECTOR_P (mode))
10308 dest = gen_lowpart (V1TImode, dest);
10309 source = gen_lowpart (V1TImode, source);
10310 mode = V1TImode;
10313 /* Use ROTATE instead of VEC_SELECT if the mode contains only a single
10314 scalar. */
10315 if (mode == TImode || mode == V1TImode)
10316 emit_insn (gen_rtx_SET (dest, gen_rtx_ROTATE (mode, source,
10317 GEN_INT (64))));
10318 else
10320 rtx par = gen_rtx_PARALLEL (VOIDmode, rs6000_const_vec (mode));
10321 emit_insn (gen_rtx_SET (dest, gen_rtx_VEC_SELECT (mode, source, par)));
10325 /* Emit a little-endian load from vector memory location SOURCE to VSX
10326 register DEST in mode MODE. The load is done with two permuting
10327 insn's that represent an lxvd2x and xxpermdi. */
10328 void
10329 rs6000_emit_le_vsx_load (rtx dest, rtx source, machine_mode mode)
10331 /* Use V2DImode to do swaps of types with 128-bit scalare parts (TImode,
10332 V1TImode). */
10333 if (mode == TImode || mode == V1TImode)
10335 mode = V2DImode;
10336 dest = gen_lowpart (V2DImode, dest);
10337 source = adjust_address (source, V2DImode, 0);
10340 rtx tmp = can_create_pseudo_p () ? gen_reg_rtx_and_attrs (dest) : dest;
10341 rs6000_emit_le_vsx_permute (tmp, source, mode);
10342 rs6000_emit_le_vsx_permute (dest, tmp, mode);
10345 /* Emit a little-endian store to vector memory location DEST from VSX
10346 register SOURCE in mode MODE. The store is done with two permuting
10347 insn's that represent an xxpermdi and an stxvd2x. */
10348 void
10349 rs6000_emit_le_vsx_store (rtx dest, rtx source, machine_mode mode)
10351 /* This should never be called during or after LRA, because it does
10352 not re-permute the source register. It is intended only for use
10353 during expand. */
10354 gcc_assert (!lra_in_progress && !reload_completed);
10356 /* Use V2DImode to do swaps of types with 128-bit scalar parts (TImode,
10357 V1TImode). */
10358 if (mode == TImode || mode == V1TImode)
10360 mode = V2DImode;
10361 dest = adjust_address (dest, V2DImode, 0);
10362 source = gen_lowpart (V2DImode, source);
10365 rtx tmp = can_create_pseudo_p () ? gen_reg_rtx_and_attrs (source) : source;
10366 rs6000_emit_le_vsx_permute (tmp, source, mode);
10367 rs6000_emit_le_vsx_permute (dest, tmp, mode);
10370 /* Emit a sequence representing a little-endian VSX load or store,
10371 moving data from SOURCE to DEST in mode MODE. This is done
10372 separately from rs6000_emit_move to ensure it is called only
10373 during expand. LE VSX loads and stores introduced later are
10374 handled with a split. The expand-time RTL generation allows
10375 us to optimize away redundant pairs of register-permutes. */
10376 void
10377 rs6000_emit_le_vsx_move (rtx dest, rtx source, machine_mode mode)
10379 gcc_assert (!BYTES_BIG_ENDIAN
10380 && VECTOR_MEM_VSX_P (mode)
10381 && !TARGET_P9_VECTOR
10382 && !gpr_or_gpr_p (dest, source)
10383 && (MEM_P (source) ^ MEM_P (dest)));
10385 if (MEM_P (source))
10387 gcc_assert (REG_P (dest) || GET_CODE (dest) == SUBREG);
10388 rs6000_emit_le_vsx_load (dest, source, mode);
10390 else
10392 if (!REG_P (source))
10393 source = force_reg (mode, source);
10394 rs6000_emit_le_vsx_store (dest, source, mode);
10398 /* Return whether a SFmode or SImode move can be done without converting one
10399 mode to another. This arrises when we have:
10401 (SUBREG:SF (REG:SI ...))
10402 (SUBREG:SI (REG:SF ...))
10404 and one of the values is in a floating point/vector register, where SFmode
10405 scalars are stored in DFmode format. */
10407 bool
10408 valid_sf_si_move (rtx dest, rtx src, machine_mode mode)
10410 if (TARGET_ALLOW_SF_SUBREG)
10411 return true;
10413 if (mode != SFmode && GET_MODE_CLASS (mode) != MODE_INT)
10414 return true;
10416 if (!SUBREG_P (src) || !sf_subreg_operand (src, mode))
10417 return true;
10419 /*. Allow (set (SUBREG:SI (REG:SF)) (SUBREG:SI (REG:SF))). */
10420 if (SUBREG_P (dest))
10422 rtx dest_subreg = SUBREG_REG (dest);
10423 rtx src_subreg = SUBREG_REG (src);
10424 return GET_MODE (dest_subreg) == GET_MODE (src_subreg);
10427 return false;
10431 /* Helper function to change moves with:
10433 (SUBREG:SF (REG:SI)) and
10434 (SUBREG:SI (REG:SF))
10436 into separate UNSPEC insns. In the PowerPC architecture, scalar SFmode
10437 values are stored as DFmode values in the VSX registers. We need to convert
10438 the bits before we can use a direct move or operate on the bits in the
10439 vector register as an integer type.
10441 Skip things like (set (SUBREG:SI (...) (SUBREG:SI (...)). */
10443 static bool
10444 rs6000_emit_move_si_sf_subreg (rtx dest, rtx source, machine_mode mode)
10446 if (TARGET_DIRECT_MOVE_64BIT && !lra_in_progress && !reload_completed
10447 && (!SUBREG_P (dest) || !sf_subreg_operand (dest, mode))
10448 && SUBREG_P (source) && sf_subreg_operand (source, mode))
10450 rtx inner_source = SUBREG_REG (source);
10451 machine_mode inner_mode = GET_MODE (inner_source);
10453 if (mode == SImode && inner_mode == SFmode)
10455 emit_insn (gen_movsi_from_sf (dest, inner_source));
10456 return true;
10459 if (mode == SFmode && inner_mode == SImode)
10461 emit_insn (gen_movsf_from_si (dest, inner_source));
10462 return true;
10466 return false;
10469 /* Emit a move from SOURCE to DEST in mode MODE. */
10470 void
10471 rs6000_emit_move (rtx dest, rtx source, machine_mode mode)
10473 rtx operands[2];
10474 operands[0] = dest;
10475 operands[1] = source;
10477 if (TARGET_DEBUG_ADDR)
10479 fprintf (stderr,
10480 "\nrs6000_emit_move: mode = %s, lra_in_progress = %d, "
10481 "reload_completed = %d, can_create_pseudos = %d.\ndest:\n",
10482 GET_MODE_NAME (mode),
10483 lra_in_progress,
10484 reload_completed,
10485 can_create_pseudo_p ());
10486 debug_rtx (dest);
10487 fprintf (stderr, "source:\n");
10488 debug_rtx (source);
10491 /* Sanity checks. Check that we get CONST_DOUBLE only when we should. */
10492 if (CONST_WIDE_INT_P (operands[1])
10493 && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
10495 /* This should be fixed with the introduction of CONST_WIDE_INT. */
10496 gcc_unreachable ();
10499 /* See if we need to special case SImode/SFmode SUBREG moves. */
10500 if ((mode == SImode || mode == SFmode) && SUBREG_P (source)
10501 && rs6000_emit_move_si_sf_subreg (dest, source, mode))
10502 return;
10504 /* Check if GCC is setting up a block move that will end up using FP
10505 registers as temporaries. We must make sure this is acceptable. */
10506 if (GET_CODE (operands[0]) == MEM
10507 && GET_CODE (operands[1]) == MEM
10508 && mode == DImode
10509 && (rs6000_slow_unaligned_access (DImode, MEM_ALIGN (operands[0]))
10510 || rs6000_slow_unaligned_access (DImode, MEM_ALIGN (operands[1])))
10511 && ! (rs6000_slow_unaligned_access (SImode,
10512 (MEM_ALIGN (operands[0]) > 32
10513 ? 32 : MEM_ALIGN (operands[0])))
10514 || rs6000_slow_unaligned_access (SImode,
10515 (MEM_ALIGN (operands[1]) > 32
10516 ? 32 : MEM_ALIGN (operands[1]))))
10517 && ! MEM_VOLATILE_P (operands [0])
10518 && ! MEM_VOLATILE_P (operands [1]))
10520 emit_move_insn (adjust_address (operands[0], SImode, 0),
10521 adjust_address (operands[1], SImode, 0));
10522 emit_move_insn (adjust_address (copy_rtx (operands[0]), SImode, 4),
10523 adjust_address (copy_rtx (operands[1]), SImode, 4));
10524 return;
10527 if (can_create_pseudo_p () && GET_CODE (operands[0]) == MEM
10528 && !gpc_reg_operand (operands[1], mode))
10529 operands[1] = force_reg (mode, operands[1]);
10531 /* Recognize the case where operand[1] is a reference to thread-local
10532 data and load its address to a register. */
10533 if (tls_referenced_p (operands[1]))
10535 enum tls_model model;
10536 rtx tmp = operands[1];
10537 rtx addend = NULL;
10539 if (GET_CODE (tmp) == CONST && GET_CODE (XEXP (tmp, 0)) == PLUS)
10541 addend = XEXP (XEXP (tmp, 0), 1);
10542 tmp = XEXP (XEXP (tmp, 0), 0);
10545 gcc_assert (GET_CODE (tmp) == SYMBOL_REF);
10546 model = SYMBOL_REF_TLS_MODEL (tmp);
10547 gcc_assert (model != 0);
10549 tmp = rs6000_legitimize_tls_address (tmp, model);
10550 if (addend)
10552 tmp = gen_rtx_PLUS (mode, tmp, addend);
10553 tmp = force_operand (tmp, operands[0]);
10555 operands[1] = tmp;
10558 /* 128-bit constant floating-point values on Darwin should really be loaded
10559 as two parts. However, this premature splitting is a problem when DFmode
10560 values can go into Altivec registers. */
10561 if (FLOAT128_IBM_P (mode) && !reg_addr[DFmode].scalar_in_vmx_p
10562 && GET_CODE (operands[1]) == CONST_DOUBLE)
10564 rs6000_emit_move (simplify_gen_subreg (DFmode, operands[0], mode, 0),
10565 simplify_gen_subreg (DFmode, operands[1], mode, 0),
10566 DFmode);
10567 rs6000_emit_move (simplify_gen_subreg (DFmode, operands[0], mode,
10568 GET_MODE_SIZE (DFmode)),
10569 simplify_gen_subreg (DFmode, operands[1], mode,
10570 GET_MODE_SIZE (DFmode)),
10571 DFmode);
10572 return;
10575 /* Transform (p0:DD, (SUBREG:DD p1:SD)) to ((SUBREG:SD p0:DD),
10576 p1:SD) if p1 is not of floating point class and p0 is spilled as
10577 we can have no analogous movsd_store for this. */
10578 if (lra_in_progress && mode == DDmode
10579 && REG_P (operands[0]) && REGNO (operands[0]) >= FIRST_PSEUDO_REGISTER
10580 && reg_preferred_class (REGNO (operands[0])) == NO_REGS
10581 && GET_CODE (operands[1]) == SUBREG && REG_P (SUBREG_REG (operands[1]))
10582 && GET_MODE (SUBREG_REG (operands[1])) == SDmode)
10584 enum reg_class cl;
10585 int regno = REGNO (SUBREG_REG (operands[1]));
10587 if (regno >= FIRST_PSEUDO_REGISTER)
10589 cl = reg_preferred_class (regno);
10590 regno = cl == NO_REGS ? -1 : ira_class_hard_regs[cl][1];
10592 if (regno >= 0 && ! FP_REGNO_P (regno))
10594 mode = SDmode;
10595 operands[0] = gen_lowpart_SUBREG (SDmode, operands[0]);
10596 operands[1] = SUBREG_REG (operands[1]);
10599 if (lra_in_progress
10600 && mode == SDmode
10601 && REG_P (operands[0]) && REGNO (operands[0]) >= FIRST_PSEUDO_REGISTER
10602 && reg_preferred_class (REGNO (operands[0])) == NO_REGS
10603 && (REG_P (operands[1])
10604 || (GET_CODE (operands[1]) == SUBREG
10605 && REG_P (SUBREG_REG (operands[1])))))
10607 int regno = REGNO (GET_CODE (operands[1]) == SUBREG
10608 ? SUBREG_REG (operands[1]) : operands[1]);
10609 enum reg_class cl;
10611 if (regno >= FIRST_PSEUDO_REGISTER)
10613 cl = reg_preferred_class (regno);
10614 gcc_assert (cl != NO_REGS);
10615 regno = ira_class_hard_regs[cl][0];
10617 if (FP_REGNO_P (regno))
10619 if (GET_MODE (operands[0]) != DDmode)
10620 operands[0] = gen_rtx_SUBREG (DDmode, operands[0], 0);
10621 emit_insn (gen_movsd_store (operands[0], operands[1]));
10623 else if (INT_REGNO_P (regno))
10624 emit_insn (gen_movsd_hardfloat (operands[0], operands[1]));
10625 else
10626 gcc_unreachable();
10627 return;
10629 /* Transform ((SUBREG:DD p0:SD), p1:DD) to (p0:SD, (SUBREG:SD
10630 p:DD)) if p0 is not of floating point class and p1 is spilled as
10631 we can have no analogous movsd_load for this. */
10632 if (lra_in_progress && mode == DDmode
10633 && GET_CODE (operands[0]) == SUBREG && REG_P (SUBREG_REG (operands[0]))
10634 && GET_MODE (SUBREG_REG (operands[0])) == SDmode
10635 && REG_P (operands[1]) && REGNO (operands[1]) >= FIRST_PSEUDO_REGISTER
10636 && reg_preferred_class (REGNO (operands[1])) == NO_REGS)
10638 enum reg_class cl;
10639 int regno = REGNO (SUBREG_REG (operands[0]));
10641 if (regno >= FIRST_PSEUDO_REGISTER)
10643 cl = reg_preferred_class (regno);
10644 regno = cl == NO_REGS ? -1 : ira_class_hard_regs[cl][0];
10646 if (regno >= 0 && ! FP_REGNO_P (regno))
10648 mode = SDmode;
10649 operands[0] = SUBREG_REG (operands[0]);
10650 operands[1] = gen_lowpart_SUBREG (SDmode, operands[1]);
10653 if (lra_in_progress
10654 && mode == SDmode
10655 && (REG_P (operands[0])
10656 || (GET_CODE (operands[0]) == SUBREG
10657 && REG_P (SUBREG_REG (operands[0]))))
10658 && REG_P (operands[1]) && REGNO (operands[1]) >= FIRST_PSEUDO_REGISTER
10659 && reg_preferred_class (REGNO (operands[1])) == NO_REGS)
10661 int regno = REGNO (GET_CODE (operands[0]) == SUBREG
10662 ? SUBREG_REG (operands[0]) : operands[0]);
10663 enum reg_class cl;
10665 if (regno >= FIRST_PSEUDO_REGISTER)
10667 cl = reg_preferred_class (regno);
10668 gcc_assert (cl != NO_REGS);
10669 regno = ira_class_hard_regs[cl][0];
10671 if (FP_REGNO_P (regno))
10673 if (GET_MODE (operands[1]) != DDmode)
10674 operands[1] = gen_rtx_SUBREG (DDmode, operands[1], 0);
10675 emit_insn (gen_movsd_load (operands[0], operands[1]));
10677 else if (INT_REGNO_P (regno))
10678 emit_insn (gen_movsd_hardfloat (operands[0], operands[1]));
10679 else
10680 gcc_unreachable();
10681 return;
10684 /* FIXME: In the long term, this switch statement should go away
10685 and be replaced by a sequence of tests based on things like
10686 mode == Pmode. */
10687 switch (mode)
10689 case E_HImode:
10690 case E_QImode:
10691 if (CONSTANT_P (operands[1])
10692 && GET_CODE (operands[1]) != CONST_INT)
10693 operands[1] = force_const_mem (mode, operands[1]);
10694 break;
10696 case E_TFmode:
10697 case E_TDmode:
10698 case E_IFmode:
10699 case E_KFmode:
10700 if (FLOAT128_2REG_P (mode))
10701 rs6000_eliminate_indexed_memrefs (operands);
10702 /* fall through */
10704 case E_DFmode:
10705 case E_DDmode:
10706 case E_SFmode:
10707 case E_SDmode:
10708 if (CONSTANT_P (operands[1])
10709 && ! easy_fp_constant (operands[1], mode))
10710 operands[1] = force_const_mem (mode, operands[1]);
10711 break;
10713 case E_V16QImode:
10714 case E_V8HImode:
10715 case E_V4SFmode:
10716 case E_V4SImode:
10717 case E_V2SFmode:
10718 case E_V2SImode:
10719 case E_V2DFmode:
10720 case E_V2DImode:
10721 case E_V1TImode:
10722 if (CONSTANT_P (operands[1])
10723 && !easy_vector_constant (operands[1], mode))
10724 operands[1] = force_const_mem (mode, operands[1]);
10725 break;
10727 case E_SImode:
10728 case E_DImode:
10729 /* Use default pattern for address of ELF small data */
10730 if (TARGET_ELF
10731 && mode == Pmode
10732 && DEFAULT_ABI == ABI_V4
10733 && (GET_CODE (operands[1]) == SYMBOL_REF
10734 || GET_CODE (operands[1]) == CONST)
10735 && small_data_operand (operands[1], mode))
10737 emit_insn (gen_rtx_SET (operands[0], operands[1]));
10738 return;
10741 if (DEFAULT_ABI == ABI_V4
10742 && mode == Pmode && mode == SImode
10743 && flag_pic == 1 && got_operand (operands[1], mode))
10745 emit_insn (gen_movsi_got (operands[0], operands[1]));
10746 return;
10749 if ((TARGET_ELF || DEFAULT_ABI == ABI_DARWIN)
10750 && TARGET_NO_TOC
10751 && ! flag_pic
10752 && mode == Pmode
10753 && CONSTANT_P (operands[1])
10754 && GET_CODE (operands[1]) != HIGH
10755 && GET_CODE (operands[1]) != CONST_INT)
10757 rtx target = (!can_create_pseudo_p ()
10758 ? operands[0]
10759 : gen_reg_rtx (mode));
10761 /* If this is a function address on -mcall-aixdesc,
10762 convert it to the address of the descriptor. */
10763 if (DEFAULT_ABI == ABI_AIX
10764 && GET_CODE (operands[1]) == SYMBOL_REF
10765 && XSTR (operands[1], 0)[0] == '.')
10767 const char *name = XSTR (operands[1], 0);
10768 rtx new_ref;
10769 while (*name == '.')
10770 name++;
10771 new_ref = gen_rtx_SYMBOL_REF (Pmode, name);
10772 CONSTANT_POOL_ADDRESS_P (new_ref)
10773 = CONSTANT_POOL_ADDRESS_P (operands[1]);
10774 SYMBOL_REF_FLAGS (new_ref) = SYMBOL_REF_FLAGS (operands[1]);
10775 SYMBOL_REF_USED (new_ref) = SYMBOL_REF_USED (operands[1]);
10776 SYMBOL_REF_DATA (new_ref) = SYMBOL_REF_DATA (operands[1]);
10777 operands[1] = new_ref;
10780 if (DEFAULT_ABI == ABI_DARWIN)
10782 #if TARGET_MACHO
10783 if (MACHO_DYNAMIC_NO_PIC_P)
10785 /* Take care of any required data indirection. */
10786 operands[1] = rs6000_machopic_legitimize_pic_address (
10787 operands[1], mode, operands[0]);
10788 if (operands[0] != operands[1])
10789 emit_insn (gen_rtx_SET (operands[0], operands[1]));
10790 return;
10792 #endif
10793 emit_insn (gen_macho_high (target, operands[1]));
10794 emit_insn (gen_macho_low (operands[0], target, operands[1]));
10795 return;
10798 emit_insn (gen_elf_high (target, operands[1]));
10799 emit_insn (gen_elf_low (operands[0], target, operands[1]));
10800 return;
10803 /* If this is a SYMBOL_REF that refers to a constant pool entry,
10804 and we have put it in the TOC, we just need to make a TOC-relative
10805 reference to it. */
10806 if (TARGET_TOC
10807 && GET_CODE (operands[1]) == SYMBOL_REF
10808 && use_toc_relative_ref (operands[1], mode))
10809 operands[1] = create_TOC_reference (operands[1], operands[0]);
10810 else if (mode == Pmode
10811 && CONSTANT_P (operands[1])
10812 && GET_CODE (operands[1]) != HIGH
10813 && ((GET_CODE (operands[1]) != CONST_INT
10814 && ! easy_fp_constant (operands[1], mode))
10815 || (GET_CODE (operands[1]) == CONST_INT
10816 && (num_insns_constant (operands[1], mode)
10817 > (TARGET_CMODEL != CMODEL_SMALL ? 3 : 2)))
10818 || (GET_CODE (operands[0]) == REG
10819 && FP_REGNO_P (REGNO (operands[0]))))
10820 && !toc_relative_expr_p (operands[1], false, NULL, NULL)
10821 && (TARGET_CMODEL == CMODEL_SMALL
10822 || can_create_pseudo_p ()
10823 || (REG_P (operands[0])
10824 && INT_REG_OK_FOR_BASE_P (operands[0], true))))
10827 #if TARGET_MACHO
10828 /* Darwin uses a special PIC legitimizer. */
10829 if (DEFAULT_ABI == ABI_DARWIN && MACHOPIC_INDIRECT)
10831 operands[1] =
10832 rs6000_machopic_legitimize_pic_address (operands[1], mode,
10833 operands[0]);
10834 if (operands[0] != operands[1])
10835 emit_insn (gen_rtx_SET (operands[0], operands[1]));
10836 return;
10838 #endif
10840 /* If we are to limit the number of things we put in the TOC and
10841 this is a symbol plus a constant we can add in one insn,
10842 just put the symbol in the TOC and add the constant. */
10843 if (GET_CODE (operands[1]) == CONST
10844 && TARGET_NO_SUM_IN_TOC
10845 && GET_CODE (XEXP (operands[1], 0)) == PLUS
10846 && add_operand (XEXP (XEXP (operands[1], 0), 1), mode)
10847 && (GET_CODE (XEXP (XEXP (operands[1], 0), 0)) == LABEL_REF
10848 || GET_CODE (XEXP (XEXP (operands[1], 0), 0)) == SYMBOL_REF)
10849 && ! side_effects_p (operands[0]))
10851 rtx sym =
10852 force_const_mem (mode, XEXP (XEXP (operands[1], 0), 0));
10853 rtx other = XEXP (XEXP (operands[1], 0), 1);
10855 sym = force_reg (mode, sym);
10856 emit_insn (gen_add3_insn (operands[0], sym, other));
10857 return;
10860 operands[1] = force_const_mem (mode, operands[1]);
10862 if (TARGET_TOC
10863 && GET_CODE (XEXP (operands[1], 0)) == SYMBOL_REF
10864 && use_toc_relative_ref (XEXP (operands[1], 0), mode))
10866 rtx tocref = create_TOC_reference (XEXP (operands[1], 0),
10867 operands[0]);
10868 operands[1] = gen_const_mem (mode, tocref);
10869 set_mem_alias_set (operands[1], get_TOC_alias_set ());
10872 break;
10874 case E_TImode:
10875 if (!VECTOR_MEM_VSX_P (TImode))
10876 rs6000_eliminate_indexed_memrefs (operands);
10877 break;
10879 case E_PTImode:
10880 rs6000_eliminate_indexed_memrefs (operands);
10881 break;
10883 default:
10884 fatal_insn ("bad move", gen_rtx_SET (dest, source));
10887 /* Above, we may have called force_const_mem which may have returned
10888 an invalid address. If we can, fix this up; otherwise, reload will
10889 have to deal with it. */
10890 if (GET_CODE (operands[1]) == MEM)
10891 operands[1] = validize_mem (operands[1]);
10893 emit_insn (gen_rtx_SET (operands[0], operands[1]));
10896 /* Nonzero if we can use a floating-point register to pass this arg. */
10897 #define USE_FP_FOR_ARG_P(CUM,MODE) \
10898 (SCALAR_FLOAT_MODE_NOT_VECTOR_P (MODE) \
10899 && (CUM)->fregno <= FP_ARG_MAX_REG \
10900 && TARGET_HARD_FLOAT)
10902 /* Nonzero if we can use an AltiVec register to pass this arg. */
10903 #define USE_ALTIVEC_FOR_ARG_P(CUM,MODE,NAMED) \
10904 (ALTIVEC_OR_VSX_VECTOR_MODE (MODE) \
10905 && (CUM)->vregno <= ALTIVEC_ARG_MAX_REG \
10906 && TARGET_ALTIVEC_ABI \
10907 && (NAMED))
10909 /* Walk down the type tree of TYPE counting consecutive base elements.
10910 If *MODEP is VOIDmode, then set it to the first valid floating point
10911 or vector type. If a non-floating point or vector type is found, or
10912 if a floating point or vector type that doesn't match a non-VOIDmode
10913 *MODEP is found, then return -1, otherwise return the count in the
10914 sub-tree. */
10916 static int
10917 rs6000_aggregate_candidate (const_tree type, machine_mode *modep)
10919 machine_mode mode;
10920 HOST_WIDE_INT size;
10922 switch (TREE_CODE (type))
10924 case REAL_TYPE:
10925 mode = TYPE_MODE (type);
10926 if (!SCALAR_FLOAT_MODE_P (mode))
10927 return -1;
10929 if (*modep == VOIDmode)
10930 *modep = mode;
10932 if (*modep == mode)
10933 return 1;
10935 break;
10937 case COMPLEX_TYPE:
10938 mode = TYPE_MODE (TREE_TYPE (type));
10939 if (!SCALAR_FLOAT_MODE_P (mode))
10940 return -1;
10942 if (*modep == VOIDmode)
10943 *modep = mode;
10945 if (*modep == mode)
10946 return 2;
10948 break;
10950 case VECTOR_TYPE:
10951 if (!TARGET_ALTIVEC_ABI || !TARGET_ALTIVEC)
10952 return -1;
10954 /* Use V4SImode as representative of all 128-bit vector types. */
10955 size = int_size_in_bytes (type);
10956 switch (size)
10958 case 16:
10959 mode = V4SImode;
10960 break;
10961 default:
10962 return -1;
10965 if (*modep == VOIDmode)
10966 *modep = mode;
10968 /* Vector modes are considered to be opaque: two vectors are
10969 equivalent for the purposes of being homogeneous aggregates
10970 if they are the same size. */
10971 if (*modep == mode)
10972 return 1;
10974 break;
10976 case ARRAY_TYPE:
10978 int count;
10979 tree index = TYPE_DOMAIN (type);
10981 /* Can't handle incomplete types nor sizes that are not
10982 fixed. */
10983 if (!COMPLETE_TYPE_P (type)
10984 || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
10985 return -1;
10987 count = rs6000_aggregate_candidate (TREE_TYPE (type), modep);
10988 if (count == -1
10989 || !index
10990 || !TYPE_MAX_VALUE (index)
10991 || !tree_fits_uhwi_p (TYPE_MAX_VALUE (index))
10992 || !TYPE_MIN_VALUE (index)
10993 || !tree_fits_uhwi_p (TYPE_MIN_VALUE (index))
10994 || count < 0)
10995 return -1;
10997 count *= (1 + tree_to_uhwi (TYPE_MAX_VALUE (index))
10998 - tree_to_uhwi (TYPE_MIN_VALUE (index)));
11000 /* There must be no padding. */
11001 if (wi::to_wide (TYPE_SIZE (type))
11002 != count * GET_MODE_BITSIZE (*modep))
11003 return -1;
11005 return count;
11008 case RECORD_TYPE:
11010 int count = 0;
11011 int sub_count;
11012 tree field;
11014 /* Can't handle incomplete types nor sizes that are not
11015 fixed. */
11016 if (!COMPLETE_TYPE_P (type)
11017 || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
11018 return -1;
11020 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
11022 if (TREE_CODE (field) != FIELD_DECL)
11023 continue;
11025 sub_count = rs6000_aggregate_candidate (TREE_TYPE (field), modep);
11026 if (sub_count < 0)
11027 return -1;
11028 count += sub_count;
11031 /* There must be no padding. */
11032 if (wi::to_wide (TYPE_SIZE (type))
11033 != count * GET_MODE_BITSIZE (*modep))
11034 return -1;
11036 return count;
11039 case UNION_TYPE:
11040 case QUAL_UNION_TYPE:
11042 /* These aren't very interesting except in a degenerate case. */
11043 int count = 0;
11044 int sub_count;
11045 tree field;
11047 /* Can't handle incomplete types nor sizes that are not
11048 fixed. */
11049 if (!COMPLETE_TYPE_P (type)
11050 || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
11051 return -1;
11053 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
11055 if (TREE_CODE (field) != FIELD_DECL)
11056 continue;
11058 sub_count = rs6000_aggregate_candidate (TREE_TYPE (field), modep);
11059 if (sub_count < 0)
11060 return -1;
11061 count = count > sub_count ? count : sub_count;
11064 /* There must be no padding. */
11065 if (wi::to_wide (TYPE_SIZE (type))
11066 != count * GET_MODE_BITSIZE (*modep))
11067 return -1;
11069 return count;
11072 default:
11073 break;
11076 return -1;
11079 /* If an argument, whose type is described by TYPE and MODE, is a homogeneous
11080 float or vector aggregate that shall be passed in FP/vector registers
11081 according to the ELFv2 ABI, return the homogeneous element mode in
11082 *ELT_MODE and the number of elements in *N_ELTS, and return TRUE.
11084 Otherwise, set *ELT_MODE to MODE and *N_ELTS to 1, and return FALSE. */
11086 static bool
11087 rs6000_discover_homogeneous_aggregate (machine_mode mode, const_tree type,
11088 machine_mode *elt_mode,
11089 int *n_elts)
11091 /* Note that we do not accept complex types at the top level as
11092 homogeneous aggregates; these types are handled via the
11093 targetm.calls.split_complex_arg mechanism. Complex types
11094 can be elements of homogeneous aggregates, however. */
11095 if (DEFAULT_ABI == ABI_ELFv2 && type && AGGREGATE_TYPE_P (type))
11097 machine_mode field_mode = VOIDmode;
11098 int field_count = rs6000_aggregate_candidate (type, &field_mode);
11100 if (field_count > 0)
11102 int n_regs = (SCALAR_FLOAT_MODE_P (field_mode) ?
11103 (GET_MODE_SIZE (field_mode) + 7) >> 3 : 1);
11105 /* The ELFv2 ABI allows homogeneous aggregates to occupy
11106 up to AGGR_ARG_NUM_REG registers. */
11107 if (field_count * n_regs <= AGGR_ARG_NUM_REG)
11109 if (elt_mode)
11110 *elt_mode = field_mode;
11111 if (n_elts)
11112 *n_elts = field_count;
11113 return true;
11118 if (elt_mode)
11119 *elt_mode = mode;
11120 if (n_elts)
11121 *n_elts = 1;
11122 return false;
11125 /* Return a nonzero value to say to return the function value in
11126 memory, just as large structures are always returned. TYPE will be
11127 the data type of the value, and FNTYPE will be the type of the
11128 function doing the returning, or @code{NULL} for libcalls.
11130 The AIX ABI for the RS/6000 specifies that all structures are
11131 returned in memory. The Darwin ABI does the same.
11133 For the Darwin 64 Bit ABI, a function result can be returned in
11134 registers or in memory, depending on the size of the return data
11135 type. If it is returned in registers, the value occupies the same
11136 registers as it would if it were the first and only function
11137 argument. Otherwise, the function places its result in memory at
11138 the location pointed to by GPR3.
11140 The SVR4 ABI specifies that structures <= 8 bytes are returned in r3/r4,
11141 but a draft put them in memory, and GCC used to implement the draft
11142 instead of the final standard. Therefore, aix_struct_return
11143 controls this instead of DEFAULT_ABI; V.4 targets needing backward
11144 compatibility can change DRAFT_V4_STRUCT_RET to override the
11145 default, and -m switches get the final word. See
11146 rs6000_option_override_internal for more details.
11148 The PPC32 SVR4 ABI uses IEEE double extended for long double, if 128-bit
11149 long double support is enabled. These values are returned in memory.
11151 int_size_in_bytes returns -1 for variable size objects, which go in
11152 memory always. The cast to unsigned makes -1 > 8. */
11154 static bool
11155 rs6000_return_in_memory (const_tree type, const_tree fntype ATTRIBUTE_UNUSED)
11157 /* For the Darwin64 ABI, test if we can fit the return value in regs. */
11158 if (TARGET_MACHO
11159 && rs6000_darwin64_abi
11160 && TREE_CODE (type) == RECORD_TYPE
11161 && int_size_in_bytes (type) > 0)
11163 CUMULATIVE_ARGS valcum;
11164 rtx valret;
11166 valcum.words = 0;
11167 valcum.fregno = FP_ARG_MIN_REG;
11168 valcum.vregno = ALTIVEC_ARG_MIN_REG;
11169 /* Do a trial code generation as if this were going to be passed
11170 as an argument; if any part goes in memory, we return NULL. */
11171 valret = rs6000_darwin64_record_arg (&valcum, type, true, true);
11172 if (valret)
11173 return false;
11174 /* Otherwise fall through to more conventional ABI rules. */
11177 /* The ELFv2 ABI returns homogeneous VFP aggregates in registers */
11178 if (rs6000_discover_homogeneous_aggregate (TYPE_MODE (type), type,
11179 NULL, NULL))
11180 return false;
11182 /* The ELFv2 ABI returns aggregates up to 16B in registers */
11183 if (DEFAULT_ABI == ABI_ELFv2 && AGGREGATE_TYPE_P (type)
11184 && (unsigned HOST_WIDE_INT) int_size_in_bytes (type) <= 16)
11185 return false;
11187 if (AGGREGATE_TYPE_P (type)
11188 && (aix_struct_return
11189 || (unsigned HOST_WIDE_INT) int_size_in_bytes (type) > 8))
11190 return true;
11192 /* Allow -maltivec -mabi=no-altivec without warning. Altivec vector
11193 modes only exist for GCC vector types if -maltivec. */
11194 if (TARGET_32BIT && !TARGET_ALTIVEC_ABI
11195 && ALTIVEC_VECTOR_MODE (TYPE_MODE (type)))
11196 return false;
11198 /* Return synthetic vectors in memory. */
11199 if (TREE_CODE (type) == VECTOR_TYPE
11200 && int_size_in_bytes (type) > (TARGET_ALTIVEC_ABI ? 16 : 8))
11202 static bool warned_for_return_big_vectors = false;
11203 if (!warned_for_return_big_vectors)
11205 warning (OPT_Wpsabi, "GCC vector returned by reference: "
11206 "non-standard ABI extension with no compatibility "
11207 "guarantee");
11208 warned_for_return_big_vectors = true;
11210 return true;
11213 if (DEFAULT_ABI == ABI_V4 && TARGET_IEEEQUAD
11214 && FLOAT128_IEEE_P (TYPE_MODE (type)))
11215 return true;
11217 return false;
11220 /* Specify whether values returned in registers should be at the most
11221 significant end of a register. We want aggregates returned by
11222 value to match the way aggregates are passed to functions. */
11224 static bool
11225 rs6000_return_in_msb (const_tree valtype)
11227 return (DEFAULT_ABI == ABI_ELFv2
11228 && BYTES_BIG_ENDIAN
11229 && AGGREGATE_TYPE_P (valtype)
11230 && (rs6000_function_arg_padding (TYPE_MODE (valtype), valtype)
11231 == PAD_UPWARD));
11234 #ifdef HAVE_AS_GNU_ATTRIBUTE
11235 /* Return TRUE if a call to function FNDECL may be one that
11236 potentially affects the function calling ABI of the object file. */
11238 static bool
11239 call_ABI_of_interest (tree fndecl)
11241 if (rs6000_gnu_attr && symtab->state == EXPANSION)
11243 struct cgraph_node *c_node;
11245 /* Libcalls are always interesting. */
11246 if (fndecl == NULL_TREE)
11247 return true;
11249 /* Any call to an external function is interesting. */
11250 if (DECL_EXTERNAL (fndecl))
11251 return true;
11253 /* Interesting functions that we are emitting in this object file. */
11254 c_node = cgraph_node::get (fndecl);
11255 c_node = c_node->ultimate_alias_target ();
11256 return !c_node->only_called_directly_p ();
11258 return false;
11260 #endif
11262 /* Initialize a variable CUM of type CUMULATIVE_ARGS
11263 for a call to a function whose data type is FNTYPE.
11264 For a library call, FNTYPE is 0 and RETURN_MODE the return value mode.
11266 For incoming args we set the number of arguments in the prototype large
11267 so we never return a PARALLEL. */
11269 void
11270 init_cumulative_args (CUMULATIVE_ARGS *cum, tree fntype,
11271 rtx libname ATTRIBUTE_UNUSED, int incoming,
11272 int libcall, int n_named_args,
11273 tree fndecl ATTRIBUTE_UNUSED,
11274 machine_mode return_mode ATTRIBUTE_UNUSED)
11276 static CUMULATIVE_ARGS zero_cumulative;
11278 *cum = zero_cumulative;
11279 cum->words = 0;
11280 cum->fregno = FP_ARG_MIN_REG;
11281 cum->vregno = ALTIVEC_ARG_MIN_REG;
11282 cum->prototype = (fntype && prototype_p (fntype));
11283 cum->call_cookie = ((DEFAULT_ABI == ABI_V4 && libcall)
11284 ? CALL_LIBCALL : CALL_NORMAL);
11285 cum->sysv_gregno = GP_ARG_MIN_REG;
11286 cum->stdarg = stdarg_p (fntype);
11287 cum->libcall = libcall;
11289 cum->nargs_prototype = 0;
11290 if (incoming || cum->prototype)
11291 cum->nargs_prototype = n_named_args;
11293 /* Check for a longcall attribute. */
11294 if ((!fntype && rs6000_default_long_calls)
11295 || (fntype
11296 && lookup_attribute ("longcall", TYPE_ATTRIBUTES (fntype))
11297 && !lookup_attribute ("shortcall", TYPE_ATTRIBUTES (fntype))))
11298 cum->call_cookie |= CALL_LONG;
11300 if (TARGET_DEBUG_ARG)
11302 fprintf (stderr, "\ninit_cumulative_args:");
11303 if (fntype)
11305 tree ret_type = TREE_TYPE (fntype);
11306 fprintf (stderr, " ret code = %s,",
11307 get_tree_code_name (TREE_CODE (ret_type)));
11310 if (cum->call_cookie & CALL_LONG)
11311 fprintf (stderr, " longcall,");
11313 fprintf (stderr, " proto = %d, nargs = %d\n",
11314 cum->prototype, cum->nargs_prototype);
11317 #ifdef HAVE_AS_GNU_ATTRIBUTE
11318 if (TARGET_ELF && (TARGET_64BIT || DEFAULT_ABI == ABI_V4))
11320 cum->escapes = call_ABI_of_interest (fndecl);
11321 if (cum->escapes)
11323 tree return_type;
11325 if (fntype)
11327 return_type = TREE_TYPE (fntype);
11328 return_mode = TYPE_MODE (return_type);
11330 else
11331 return_type = lang_hooks.types.type_for_mode (return_mode, 0);
11333 if (return_type != NULL)
11335 if (TREE_CODE (return_type) == RECORD_TYPE
11336 && TYPE_TRANSPARENT_AGGR (return_type))
11338 return_type = TREE_TYPE (first_field (return_type));
11339 return_mode = TYPE_MODE (return_type);
11341 if (AGGREGATE_TYPE_P (return_type)
11342 && ((unsigned HOST_WIDE_INT) int_size_in_bytes (return_type)
11343 <= 8))
11344 rs6000_returns_struct = true;
11346 if (SCALAR_FLOAT_MODE_P (return_mode))
11348 rs6000_passes_float = true;
11349 if ((HAVE_LD_PPC_GNU_ATTR_LONG_DOUBLE || TARGET_64BIT)
11350 && (FLOAT128_IBM_P (return_mode)
11351 || FLOAT128_IEEE_P (return_mode)
11352 || (return_type != NULL
11353 && (TYPE_MAIN_VARIANT (return_type)
11354 == long_double_type_node))))
11355 rs6000_passes_long_double = true;
11357 if (ALTIVEC_OR_VSX_VECTOR_MODE (return_mode)
11358 || PAIRED_VECTOR_MODE (return_mode))
11359 rs6000_passes_vector = true;
11362 #endif
11364 if (fntype
11365 && !TARGET_ALTIVEC
11366 && TARGET_ALTIVEC_ABI
11367 && ALTIVEC_VECTOR_MODE (TYPE_MODE (TREE_TYPE (fntype))))
11369 error ("cannot return value in vector register because"
11370 " altivec instructions are disabled, use %qs"
11371 " to enable them", "-maltivec");
11375 /* The mode the ABI uses for a word. This is not the same as word_mode
11376 for -m32 -mpowerpc64. This is used to implement various target hooks. */
11378 static scalar_int_mode
11379 rs6000_abi_word_mode (void)
11381 return TARGET_32BIT ? SImode : DImode;
11384 /* Implement the TARGET_OFFLOAD_OPTIONS hook. */
11385 static char *
11386 rs6000_offload_options (void)
11388 if (TARGET_64BIT)
11389 return xstrdup ("-foffload-abi=lp64");
11390 else
11391 return xstrdup ("-foffload-abi=ilp32");
11394 /* On rs6000, function arguments are promoted, as are function return
11395 values. */
11397 static machine_mode
11398 rs6000_promote_function_mode (const_tree type ATTRIBUTE_UNUSED,
11399 machine_mode mode,
11400 int *punsignedp ATTRIBUTE_UNUSED,
11401 const_tree, int)
11403 PROMOTE_MODE (mode, *punsignedp, type);
11405 return mode;
11408 /* Return true if TYPE must be passed on the stack and not in registers. */
11410 static bool
11411 rs6000_must_pass_in_stack (machine_mode mode, const_tree type)
11413 if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2 || TARGET_64BIT)
11414 return must_pass_in_stack_var_size (mode, type);
11415 else
11416 return must_pass_in_stack_var_size_or_pad (mode, type);
11419 static inline bool
11420 is_complex_IBM_long_double (machine_mode mode)
11422 return mode == ICmode || (!TARGET_IEEEQUAD && mode == TCmode);
11425 /* Whether ABI_V4 passes MODE args to a function in floating point
11426 registers. */
11428 static bool
11429 abi_v4_pass_in_fpr (machine_mode mode)
11431 if (!TARGET_HARD_FLOAT)
11432 return false;
11433 if (TARGET_SINGLE_FLOAT && mode == SFmode)
11434 return true;
11435 if (TARGET_DOUBLE_FLOAT && mode == DFmode)
11436 return true;
11437 /* ABI_V4 passes complex IBM long double in 8 gprs.
11438 Stupid, but we can't change the ABI now. */
11439 if (is_complex_IBM_long_double (mode))
11440 return false;
11441 if (FLOAT128_2REG_P (mode))
11442 return true;
11443 if (DECIMAL_FLOAT_MODE_P (mode))
11444 return true;
11445 return false;
11448 /* Implement TARGET_FUNCTION_ARG_PADDING.
11450 For the AIX ABI structs are always stored left shifted in their
11451 argument slot. */
11453 static pad_direction
11454 rs6000_function_arg_padding (machine_mode mode, const_tree type)
11456 #ifndef AGGREGATE_PADDING_FIXED
11457 #define AGGREGATE_PADDING_FIXED 0
11458 #endif
11459 #ifndef AGGREGATES_PAD_UPWARD_ALWAYS
11460 #define AGGREGATES_PAD_UPWARD_ALWAYS 0
11461 #endif
11463 if (!AGGREGATE_PADDING_FIXED)
11465 /* GCC used to pass structures of the same size as integer types as
11466 if they were in fact integers, ignoring TARGET_FUNCTION_ARG_PADDING.
11467 i.e. Structures of size 1 or 2 (or 4 when TARGET_64BIT) were
11468 passed padded downward, except that -mstrict-align further
11469 muddied the water in that multi-component structures of 2 and 4
11470 bytes in size were passed padded upward.
11472 The following arranges for best compatibility with previous
11473 versions of gcc, but removes the -mstrict-align dependency. */
11474 if (BYTES_BIG_ENDIAN)
11476 HOST_WIDE_INT size = 0;
11478 if (mode == BLKmode)
11480 if (type && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST)
11481 size = int_size_in_bytes (type);
11483 else
11484 size = GET_MODE_SIZE (mode);
11486 if (size == 1 || size == 2 || size == 4)
11487 return PAD_DOWNWARD;
11489 return PAD_UPWARD;
11492 if (AGGREGATES_PAD_UPWARD_ALWAYS)
11494 if (type != 0 && AGGREGATE_TYPE_P (type))
11495 return PAD_UPWARD;
11498 /* Fall back to the default. */
11499 return default_function_arg_padding (mode, type);
11502 /* If defined, a C expression that gives the alignment boundary, in bits,
11503 of an argument with the specified mode and type. If it is not defined,
11504 PARM_BOUNDARY is used for all arguments.
11506 V.4 wants long longs and doubles to be double word aligned. Just
11507 testing the mode size is a boneheaded way to do this as it means
11508 that other types such as complex int are also double word aligned.
11509 However, we're stuck with this because changing the ABI might break
11510 existing library interfaces.
11512 Quadword align Altivec/VSX vectors.
11513 Quadword align large synthetic vector types. */
11515 static unsigned int
11516 rs6000_function_arg_boundary (machine_mode mode, const_tree type)
11518 machine_mode elt_mode;
11519 int n_elts;
11521 rs6000_discover_homogeneous_aggregate (mode, type, &elt_mode, &n_elts);
11523 if (DEFAULT_ABI == ABI_V4
11524 && (GET_MODE_SIZE (mode) == 8
11525 || (TARGET_HARD_FLOAT
11526 && !is_complex_IBM_long_double (mode)
11527 && FLOAT128_2REG_P (mode))))
11528 return 64;
11529 else if (FLOAT128_VECTOR_P (mode))
11530 return 128;
11531 else if (PAIRED_VECTOR_MODE (mode)
11532 || (type && TREE_CODE (type) == VECTOR_TYPE
11533 && int_size_in_bytes (type) >= 8
11534 && int_size_in_bytes (type) < 16))
11535 return 64;
11536 else if (ALTIVEC_OR_VSX_VECTOR_MODE (elt_mode)
11537 || (type && TREE_CODE (type) == VECTOR_TYPE
11538 && int_size_in_bytes (type) >= 16))
11539 return 128;
11541 /* Aggregate types that need > 8 byte alignment are quadword-aligned
11542 in the parameter area in the ELFv2 ABI, and in the AIX ABI unless
11543 -mcompat-align-parm is used. */
11544 if (((DEFAULT_ABI == ABI_AIX && !rs6000_compat_align_parm)
11545 || DEFAULT_ABI == ABI_ELFv2)
11546 && type && TYPE_ALIGN (type) > 64)
11548 /* "Aggregate" means any AGGREGATE_TYPE except for single-element
11549 or homogeneous float/vector aggregates here. We already handled
11550 vector aggregates above, but still need to check for float here. */
11551 bool aggregate_p = (AGGREGATE_TYPE_P (type)
11552 && !SCALAR_FLOAT_MODE_P (elt_mode));
11554 /* We used to check for BLKmode instead of the above aggregate type
11555 check. Warn when this results in any difference to the ABI. */
11556 if (aggregate_p != (mode == BLKmode))
11558 static bool warned;
11559 if (!warned && warn_psabi)
11561 warned = true;
11562 inform (input_location,
11563 "the ABI of passing aggregates with %d-byte alignment"
11564 " has changed in GCC 5",
11565 (int) TYPE_ALIGN (type) / BITS_PER_UNIT);
11569 if (aggregate_p)
11570 return 128;
11573 /* Similar for the Darwin64 ABI. Note that for historical reasons we
11574 implement the "aggregate type" check as a BLKmode check here; this
11575 means certain aggregate types are in fact not aligned. */
11576 if (TARGET_MACHO && rs6000_darwin64_abi
11577 && mode == BLKmode
11578 && type && TYPE_ALIGN (type) > 64)
11579 return 128;
11581 return PARM_BOUNDARY;
11584 /* The offset in words to the start of the parameter save area. */
11586 static unsigned int
11587 rs6000_parm_offset (void)
11589 return (DEFAULT_ABI == ABI_V4 ? 2
11590 : DEFAULT_ABI == ABI_ELFv2 ? 4
11591 : 6);
11594 /* For a function parm of MODE and TYPE, return the starting word in
11595 the parameter area. NWORDS of the parameter area are already used. */
11597 static unsigned int
11598 rs6000_parm_start (machine_mode mode, const_tree type,
11599 unsigned int nwords)
11601 unsigned int align;
11603 align = rs6000_function_arg_boundary (mode, type) / PARM_BOUNDARY - 1;
11604 return nwords + (-(rs6000_parm_offset () + nwords) & align);
11607 /* Compute the size (in words) of a function argument. */
11609 static unsigned long
11610 rs6000_arg_size (machine_mode mode, const_tree type)
11612 unsigned long size;
11614 if (mode != BLKmode)
11615 size = GET_MODE_SIZE (mode);
11616 else
11617 size = int_size_in_bytes (type);
11619 if (TARGET_32BIT)
11620 return (size + 3) >> 2;
11621 else
11622 return (size + 7) >> 3;
11625 /* Use this to flush pending int fields. */
11627 static void
11628 rs6000_darwin64_record_arg_advance_flush (CUMULATIVE_ARGS *cum,
11629 HOST_WIDE_INT bitpos, int final)
11631 unsigned int startbit, endbit;
11632 int intregs, intoffset;
11634 /* Handle the situations where a float is taking up the first half
11635 of the GPR, and the other half is empty (typically due to
11636 alignment restrictions). We can detect this by a 8-byte-aligned
11637 int field, or by seeing that this is the final flush for this
11638 argument. Count the word and continue on. */
11639 if (cum->floats_in_gpr == 1
11640 && (cum->intoffset % 64 == 0
11641 || (cum->intoffset == -1 && final)))
11643 cum->words++;
11644 cum->floats_in_gpr = 0;
11647 if (cum->intoffset == -1)
11648 return;
11650 intoffset = cum->intoffset;
11651 cum->intoffset = -1;
11652 cum->floats_in_gpr = 0;
11654 if (intoffset % BITS_PER_WORD != 0)
11656 unsigned int bits = BITS_PER_WORD - intoffset % BITS_PER_WORD;
11657 if (!int_mode_for_size (bits, 0).exists ())
11659 /* We couldn't find an appropriate mode, which happens,
11660 e.g., in packed structs when there are 3 bytes to load.
11661 Back intoffset back to the beginning of the word in this
11662 case. */
11663 intoffset = ROUND_DOWN (intoffset, BITS_PER_WORD);
11667 startbit = ROUND_DOWN (intoffset, BITS_PER_WORD);
11668 endbit = ROUND_UP (bitpos, BITS_PER_WORD);
11669 intregs = (endbit - startbit) / BITS_PER_WORD;
11670 cum->words += intregs;
11671 /* words should be unsigned. */
11672 if ((unsigned)cum->words < (endbit/BITS_PER_WORD))
11674 int pad = (endbit/BITS_PER_WORD) - cum->words;
11675 cum->words += pad;
11679 /* The darwin64 ABI calls for us to recurse down through structs,
11680 looking for elements passed in registers. Unfortunately, we have
11681 to track int register count here also because of misalignments
11682 in powerpc alignment mode. */
11684 static void
11685 rs6000_darwin64_record_arg_advance_recurse (CUMULATIVE_ARGS *cum,
11686 const_tree type,
11687 HOST_WIDE_INT startbitpos)
11689 tree f;
11691 for (f = TYPE_FIELDS (type); f ; f = DECL_CHAIN (f))
11692 if (TREE_CODE (f) == FIELD_DECL)
11694 HOST_WIDE_INT bitpos = startbitpos;
11695 tree ftype = TREE_TYPE (f);
11696 machine_mode mode;
11697 if (ftype == error_mark_node)
11698 continue;
11699 mode = TYPE_MODE (ftype);
11701 if (DECL_SIZE (f) != 0
11702 && tree_fits_uhwi_p (bit_position (f)))
11703 bitpos += int_bit_position (f);
11705 /* ??? FIXME: else assume zero offset. */
11707 if (TREE_CODE (ftype) == RECORD_TYPE)
11708 rs6000_darwin64_record_arg_advance_recurse (cum, ftype, bitpos);
11709 else if (USE_FP_FOR_ARG_P (cum, mode))
11711 unsigned n_fpregs = (GET_MODE_SIZE (mode) + 7) >> 3;
11712 rs6000_darwin64_record_arg_advance_flush (cum, bitpos, 0);
11713 cum->fregno += n_fpregs;
11714 /* Single-precision floats present a special problem for
11715 us, because they are smaller than an 8-byte GPR, and so
11716 the structure-packing rules combined with the standard
11717 varargs behavior mean that we want to pack float/float
11718 and float/int combinations into a single register's
11719 space. This is complicated by the arg advance flushing,
11720 which works on arbitrarily large groups of int-type
11721 fields. */
11722 if (mode == SFmode)
11724 if (cum->floats_in_gpr == 1)
11726 /* Two floats in a word; count the word and reset
11727 the float count. */
11728 cum->words++;
11729 cum->floats_in_gpr = 0;
11731 else if (bitpos % 64 == 0)
11733 /* A float at the beginning of an 8-byte word;
11734 count it and put off adjusting cum->words until
11735 we see if a arg advance flush is going to do it
11736 for us. */
11737 cum->floats_in_gpr++;
11739 else
11741 /* The float is at the end of a word, preceded
11742 by integer fields, so the arg advance flush
11743 just above has already set cum->words and
11744 everything is taken care of. */
11747 else
11748 cum->words += n_fpregs;
11750 else if (USE_ALTIVEC_FOR_ARG_P (cum, mode, 1))
11752 rs6000_darwin64_record_arg_advance_flush (cum, bitpos, 0);
11753 cum->vregno++;
11754 cum->words += 2;
11756 else if (cum->intoffset == -1)
11757 cum->intoffset = bitpos;
11761 /* Check for an item that needs to be considered specially under the darwin 64
11762 bit ABI. These are record types where the mode is BLK or the structure is
11763 8 bytes in size. */
11764 static int
11765 rs6000_darwin64_struct_check_p (machine_mode mode, const_tree type)
11767 return rs6000_darwin64_abi
11768 && ((mode == BLKmode
11769 && TREE_CODE (type) == RECORD_TYPE
11770 && int_size_in_bytes (type) > 0)
11771 || (type && TREE_CODE (type) == RECORD_TYPE
11772 && int_size_in_bytes (type) == 8)) ? 1 : 0;
11775 /* Update the data in CUM to advance over an argument
11776 of mode MODE and data type TYPE.
11777 (TYPE is null for libcalls where that information may not be available.)
11779 Note that for args passed by reference, function_arg will be called
11780 with MODE and TYPE set to that of the pointer to the arg, not the arg
11781 itself. */
11783 static void
11784 rs6000_function_arg_advance_1 (CUMULATIVE_ARGS *cum, machine_mode mode,
11785 const_tree type, bool named, int depth)
11787 machine_mode elt_mode;
11788 int n_elts;
11790 rs6000_discover_homogeneous_aggregate (mode, type, &elt_mode, &n_elts);
11792 /* Only tick off an argument if we're not recursing. */
11793 if (depth == 0)
11794 cum->nargs_prototype--;
11796 #ifdef HAVE_AS_GNU_ATTRIBUTE
11797 if (TARGET_ELF && (TARGET_64BIT || DEFAULT_ABI == ABI_V4)
11798 && cum->escapes)
11800 if (SCALAR_FLOAT_MODE_P (mode))
11802 rs6000_passes_float = true;
11803 if ((HAVE_LD_PPC_GNU_ATTR_LONG_DOUBLE || TARGET_64BIT)
11804 && (FLOAT128_IBM_P (mode)
11805 || FLOAT128_IEEE_P (mode)
11806 || (type != NULL
11807 && TYPE_MAIN_VARIANT (type) == long_double_type_node)))
11808 rs6000_passes_long_double = true;
11810 if ((named && ALTIVEC_OR_VSX_VECTOR_MODE (mode))
11811 || (PAIRED_VECTOR_MODE (mode)
11812 && !cum->stdarg
11813 && cum->sysv_gregno <= GP_ARG_MAX_REG))
11814 rs6000_passes_vector = true;
11816 #endif
11818 if (TARGET_ALTIVEC_ABI
11819 && (ALTIVEC_OR_VSX_VECTOR_MODE (elt_mode)
11820 || (type && TREE_CODE (type) == VECTOR_TYPE
11821 && int_size_in_bytes (type) == 16)))
11823 bool stack = false;
11825 if (USE_ALTIVEC_FOR_ARG_P (cum, elt_mode, named))
11827 cum->vregno += n_elts;
11829 if (!TARGET_ALTIVEC)
11830 error ("cannot pass argument in vector register because"
11831 " altivec instructions are disabled, use %qs"
11832 " to enable them", "-maltivec");
11834 /* PowerPC64 Linux and AIX allocate GPRs for a vector argument
11835 even if it is going to be passed in a vector register.
11836 Darwin does the same for variable-argument functions. */
11837 if (((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
11838 && TARGET_64BIT)
11839 || (cum->stdarg && DEFAULT_ABI != ABI_V4))
11840 stack = true;
11842 else
11843 stack = true;
11845 if (stack)
11847 int align;
11849 /* Vector parameters must be 16-byte aligned. In 32-bit
11850 mode this means we need to take into account the offset
11851 to the parameter save area. In 64-bit mode, they just
11852 have to start on an even word, since the parameter save
11853 area is 16-byte aligned. */
11854 if (TARGET_32BIT)
11855 align = -(rs6000_parm_offset () + cum->words) & 3;
11856 else
11857 align = cum->words & 1;
11858 cum->words += align + rs6000_arg_size (mode, type);
11860 if (TARGET_DEBUG_ARG)
11862 fprintf (stderr, "function_adv: words = %2d, align=%d, ",
11863 cum->words, align);
11864 fprintf (stderr, "nargs = %4d, proto = %d, mode = %4s\n",
11865 cum->nargs_prototype, cum->prototype,
11866 GET_MODE_NAME (mode));
11870 else if (TARGET_MACHO && rs6000_darwin64_struct_check_p (mode, type))
11872 int size = int_size_in_bytes (type);
11873 /* Variable sized types have size == -1 and are
11874 treated as if consisting entirely of ints.
11875 Pad to 16 byte boundary if needed. */
11876 if (TYPE_ALIGN (type) >= 2 * BITS_PER_WORD
11877 && (cum->words % 2) != 0)
11878 cum->words++;
11879 /* For varargs, we can just go up by the size of the struct. */
11880 if (!named)
11881 cum->words += (size + 7) / 8;
11882 else
11884 /* It is tempting to say int register count just goes up by
11885 sizeof(type)/8, but this is wrong in a case such as
11886 { int; double; int; } [powerpc alignment]. We have to
11887 grovel through the fields for these too. */
11888 cum->intoffset = 0;
11889 cum->floats_in_gpr = 0;
11890 rs6000_darwin64_record_arg_advance_recurse (cum, type, 0);
11891 rs6000_darwin64_record_arg_advance_flush (cum,
11892 size * BITS_PER_UNIT, 1);
11894 if (TARGET_DEBUG_ARG)
11896 fprintf (stderr, "function_adv: words = %2d, align=%d, size=%d",
11897 cum->words, TYPE_ALIGN (type), size);
11898 fprintf (stderr,
11899 "nargs = %4d, proto = %d, mode = %4s (darwin64 abi)\n",
11900 cum->nargs_prototype, cum->prototype,
11901 GET_MODE_NAME (mode));
11904 else if (DEFAULT_ABI == ABI_V4)
11906 if (abi_v4_pass_in_fpr (mode))
11908 /* _Decimal128 must use an even/odd register pair. This assumes
11909 that the register number is odd when fregno is odd. */
11910 if (mode == TDmode && (cum->fregno % 2) == 1)
11911 cum->fregno++;
11913 if (cum->fregno + (FLOAT128_2REG_P (mode) ? 1 : 0)
11914 <= FP_ARG_V4_MAX_REG)
11915 cum->fregno += (GET_MODE_SIZE (mode) + 7) >> 3;
11916 else
11918 cum->fregno = FP_ARG_V4_MAX_REG + 1;
11919 if (mode == DFmode || FLOAT128_IBM_P (mode)
11920 || mode == DDmode || mode == TDmode)
11921 cum->words += cum->words & 1;
11922 cum->words += rs6000_arg_size (mode, type);
11925 else
11927 int n_words = rs6000_arg_size (mode, type);
11928 int gregno = cum->sysv_gregno;
11930 /* Long long is put in (r3,r4), (r5,r6), (r7,r8) or (r9,r10).
11931 As does any other 2 word item such as complex int due to a
11932 historical mistake. */
11933 if (n_words == 2)
11934 gregno += (1 - gregno) & 1;
11936 /* Multi-reg args are not split between registers and stack. */
11937 if (gregno + n_words - 1 > GP_ARG_MAX_REG)
11939 /* Long long is aligned on the stack. So are other 2 word
11940 items such as complex int due to a historical mistake. */
11941 if (n_words == 2)
11942 cum->words += cum->words & 1;
11943 cum->words += n_words;
11946 /* Note: continuing to accumulate gregno past when we've started
11947 spilling to the stack indicates the fact that we've started
11948 spilling to the stack to expand_builtin_saveregs. */
11949 cum->sysv_gregno = gregno + n_words;
11952 if (TARGET_DEBUG_ARG)
11954 fprintf (stderr, "function_adv: words = %2d, fregno = %2d, ",
11955 cum->words, cum->fregno);
11956 fprintf (stderr, "gregno = %2d, nargs = %4d, proto = %d, ",
11957 cum->sysv_gregno, cum->nargs_prototype, cum->prototype);
11958 fprintf (stderr, "mode = %4s, named = %d\n",
11959 GET_MODE_NAME (mode), named);
11962 else
11964 int n_words = rs6000_arg_size (mode, type);
11965 int start_words = cum->words;
11966 int align_words = rs6000_parm_start (mode, type, start_words);
11968 cum->words = align_words + n_words;
11970 if (SCALAR_FLOAT_MODE_P (elt_mode) && TARGET_HARD_FLOAT)
11972 /* _Decimal128 must be passed in an even/odd float register pair.
11973 This assumes that the register number is odd when fregno is
11974 odd. */
11975 if (elt_mode == TDmode && (cum->fregno % 2) == 1)
11976 cum->fregno++;
11977 cum->fregno += n_elts * ((GET_MODE_SIZE (elt_mode) + 7) >> 3);
11980 if (TARGET_DEBUG_ARG)
11982 fprintf (stderr, "function_adv: words = %2d, fregno = %2d, ",
11983 cum->words, cum->fregno);
11984 fprintf (stderr, "nargs = %4d, proto = %d, mode = %4s, ",
11985 cum->nargs_prototype, cum->prototype, GET_MODE_NAME (mode));
11986 fprintf (stderr, "named = %d, align = %d, depth = %d\n",
11987 named, align_words - start_words, depth);
11992 static void
11993 rs6000_function_arg_advance (cumulative_args_t cum, machine_mode mode,
11994 const_tree type, bool named)
11996 rs6000_function_arg_advance_1 (get_cumulative_args (cum), mode, type, named,
12000 /* A subroutine of rs6000_darwin64_record_arg. Assign the bits of the
12001 structure between cum->intoffset and bitpos to integer registers. */
12003 static void
12004 rs6000_darwin64_record_arg_flush (CUMULATIVE_ARGS *cum,
12005 HOST_WIDE_INT bitpos, rtx rvec[], int *k)
12007 machine_mode mode;
12008 unsigned int regno;
12009 unsigned int startbit, endbit;
12010 int this_regno, intregs, intoffset;
12011 rtx reg;
12013 if (cum->intoffset == -1)
12014 return;
12016 intoffset = cum->intoffset;
12017 cum->intoffset = -1;
12019 /* If this is the trailing part of a word, try to only load that
12020 much into the register. Otherwise load the whole register. Note
12021 that in the latter case we may pick up unwanted bits. It's not a
12022 problem at the moment but may wish to revisit. */
12024 if (intoffset % BITS_PER_WORD != 0)
12026 unsigned int bits = BITS_PER_WORD - intoffset % BITS_PER_WORD;
12027 if (!int_mode_for_size (bits, 0).exists (&mode))
12029 /* We couldn't find an appropriate mode, which happens,
12030 e.g., in packed structs when there are 3 bytes to load.
12031 Back intoffset back to the beginning of the word in this
12032 case. */
12033 intoffset = ROUND_DOWN (intoffset, BITS_PER_WORD);
12034 mode = word_mode;
12037 else
12038 mode = word_mode;
12040 startbit = ROUND_DOWN (intoffset, BITS_PER_WORD);
12041 endbit = ROUND_UP (bitpos, BITS_PER_WORD);
12042 intregs = (endbit - startbit) / BITS_PER_WORD;
12043 this_regno = cum->words + intoffset / BITS_PER_WORD;
12045 if (intregs > 0 && intregs > GP_ARG_NUM_REG - this_regno)
12046 cum->use_stack = 1;
12048 intregs = MIN (intregs, GP_ARG_NUM_REG - this_regno);
12049 if (intregs <= 0)
12050 return;
12052 intoffset /= BITS_PER_UNIT;
12055 regno = GP_ARG_MIN_REG + this_regno;
12056 reg = gen_rtx_REG (mode, regno);
12057 rvec[(*k)++] =
12058 gen_rtx_EXPR_LIST (VOIDmode, reg, GEN_INT (intoffset));
12060 this_regno += 1;
12061 intoffset = (intoffset | (UNITS_PER_WORD-1)) + 1;
12062 mode = word_mode;
12063 intregs -= 1;
12065 while (intregs > 0);
12068 /* Recursive workhorse for the following. */
12070 static void
12071 rs6000_darwin64_record_arg_recurse (CUMULATIVE_ARGS *cum, const_tree type,
12072 HOST_WIDE_INT startbitpos, rtx rvec[],
12073 int *k)
12075 tree f;
12077 for (f = TYPE_FIELDS (type); f ; f = DECL_CHAIN (f))
12078 if (TREE_CODE (f) == FIELD_DECL)
12080 HOST_WIDE_INT bitpos = startbitpos;
12081 tree ftype = TREE_TYPE (f);
12082 machine_mode mode;
12083 if (ftype == error_mark_node)
12084 continue;
12085 mode = TYPE_MODE (ftype);
12087 if (DECL_SIZE (f) != 0
12088 && tree_fits_uhwi_p (bit_position (f)))
12089 bitpos += int_bit_position (f);
12091 /* ??? FIXME: else assume zero offset. */
12093 if (TREE_CODE (ftype) == RECORD_TYPE)
12094 rs6000_darwin64_record_arg_recurse (cum, ftype, bitpos, rvec, k);
12095 else if (cum->named && USE_FP_FOR_ARG_P (cum, mode))
12097 unsigned n_fpreg = (GET_MODE_SIZE (mode) + 7) >> 3;
12098 #if 0
12099 switch (mode)
12101 case E_SCmode: mode = SFmode; break;
12102 case E_DCmode: mode = DFmode; break;
12103 case E_TCmode: mode = TFmode; break;
12104 default: break;
12106 #endif
12107 rs6000_darwin64_record_arg_flush (cum, bitpos, rvec, k);
12108 if (cum->fregno + n_fpreg > FP_ARG_MAX_REG + 1)
12110 gcc_assert (cum->fregno == FP_ARG_MAX_REG
12111 && (mode == TFmode || mode == TDmode));
12112 /* Long double or _Decimal128 split over regs and memory. */
12113 mode = DECIMAL_FLOAT_MODE_P (mode) ? DDmode : DFmode;
12114 cum->use_stack=1;
12116 rvec[(*k)++]
12117 = gen_rtx_EXPR_LIST (VOIDmode,
12118 gen_rtx_REG (mode, cum->fregno++),
12119 GEN_INT (bitpos / BITS_PER_UNIT));
12120 if (FLOAT128_2REG_P (mode))
12121 cum->fregno++;
12123 else if (cum->named && USE_ALTIVEC_FOR_ARG_P (cum, mode, 1))
12125 rs6000_darwin64_record_arg_flush (cum, bitpos, rvec, k);
12126 rvec[(*k)++]
12127 = gen_rtx_EXPR_LIST (VOIDmode,
12128 gen_rtx_REG (mode, cum->vregno++),
12129 GEN_INT (bitpos / BITS_PER_UNIT));
12131 else if (cum->intoffset == -1)
12132 cum->intoffset = bitpos;
12136 /* For the darwin64 ABI, we want to construct a PARALLEL consisting of
12137 the register(s) to be used for each field and subfield of a struct
12138 being passed by value, along with the offset of where the
12139 register's value may be found in the block. FP fields go in FP
12140 register, vector fields go in vector registers, and everything
12141 else goes in int registers, packed as in memory.
12143 This code is also used for function return values. RETVAL indicates
12144 whether this is the case.
12146 Much of this is taken from the SPARC V9 port, which has a similar
12147 calling convention. */
12149 static rtx
12150 rs6000_darwin64_record_arg (CUMULATIVE_ARGS *orig_cum, const_tree type,
12151 bool named, bool retval)
12153 rtx rvec[FIRST_PSEUDO_REGISTER];
12154 int k = 1, kbase = 1;
12155 HOST_WIDE_INT typesize = int_size_in_bytes (type);
12156 /* This is a copy; modifications are not visible to our caller. */
12157 CUMULATIVE_ARGS copy_cum = *orig_cum;
12158 CUMULATIVE_ARGS *cum = &copy_cum;
12160 /* Pad to 16 byte boundary if needed. */
12161 if (!retval && TYPE_ALIGN (type) >= 2 * BITS_PER_WORD
12162 && (cum->words % 2) != 0)
12163 cum->words++;
12165 cum->intoffset = 0;
12166 cum->use_stack = 0;
12167 cum->named = named;
12169 /* Put entries into rvec[] for individual FP and vector fields, and
12170 for the chunks of memory that go in int regs. Note we start at
12171 element 1; 0 is reserved for an indication of using memory, and
12172 may or may not be filled in below. */
12173 rs6000_darwin64_record_arg_recurse (cum, type, /* startbit pos= */ 0, rvec, &k);
12174 rs6000_darwin64_record_arg_flush (cum, typesize * BITS_PER_UNIT, rvec, &k);
12176 /* If any part of the struct went on the stack put all of it there.
12177 This hack is because the generic code for
12178 FUNCTION_ARG_PARTIAL_NREGS cannot handle cases where the register
12179 parts of the struct are not at the beginning. */
12180 if (cum->use_stack)
12182 if (retval)
12183 return NULL_RTX; /* doesn't go in registers at all */
12184 kbase = 0;
12185 rvec[0] = gen_rtx_EXPR_LIST (VOIDmode, NULL_RTX, const0_rtx);
12187 if (k > 1 || cum->use_stack)
12188 return gen_rtx_PARALLEL (BLKmode, gen_rtvec_v (k - kbase, &rvec[kbase]));
12189 else
12190 return NULL_RTX;
12193 /* Determine where to place an argument in 64-bit mode with 32-bit ABI. */
12195 static rtx
12196 rs6000_mixed_function_arg (machine_mode mode, const_tree type,
12197 int align_words)
12199 int n_units;
12200 int i, k;
12201 rtx rvec[GP_ARG_NUM_REG + 1];
12203 if (align_words >= GP_ARG_NUM_REG)
12204 return NULL_RTX;
12206 n_units = rs6000_arg_size (mode, type);
12208 /* Optimize the simple case where the arg fits in one gpr, except in
12209 the case of BLKmode due to assign_parms assuming that registers are
12210 BITS_PER_WORD wide. */
12211 if (n_units == 0
12212 || (n_units == 1 && mode != BLKmode))
12213 return gen_rtx_REG (mode, GP_ARG_MIN_REG + align_words);
12215 k = 0;
12216 if (align_words + n_units > GP_ARG_NUM_REG)
12217 /* Not all of the arg fits in gprs. Say that it goes in memory too,
12218 using a magic NULL_RTX component.
12219 This is not strictly correct. Only some of the arg belongs in
12220 memory, not all of it. However, the normal scheme using
12221 function_arg_partial_nregs can result in unusual subregs, eg.
12222 (subreg:SI (reg:DF) 4), which are not handled well. The code to
12223 store the whole arg to memory is often more efficient than code
12224 to store pieces, and we know that space is available in the right
12225 place for the whole arg. */
12226 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, NULL_RTX, const0_rtx);
12228 i = 0;
12231 rtx r = gen_rtx_REG (SImode, GP_ARG_MIN_REG + align_words);
12232 rtx off = GEN_INT (i++ * 4);
12233 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, r, off);
12235 while (++align_words < GP_ARG_NUM_REG && --n_units != 0);
12237 return gen_rtx_PARALLEL (mode, gen_rtvec_v (k, rvec));
12240 /* We have an argument of MODE and TYPE that goes into FPRs or VRs,
12241 but must also be copied into the parameter save area starting at
12242 offset ALIGN_WORDS. Fill in RVEC with the elements corresponding
12243 to the GPRs and/or memory. Return the number of elements used. */
12245 static int
12246 rs6000_psave_function_arg (machine_mode mode, const_tree type,
12247 int align_words, rtx *rvec)
12249 int k = 0;
12251 if (align_words < GP_ARG_NUM_REG)
12253 int n_words = rs6000_arg_size (mode, type);
12255 if (align_words + n_words > GP_ARG_NUM_REG
12256 || mode == BLKmode
12257 || (TARGET_32BIT && TARGET_POWERPC64))
12259 /* If this is partially on the stack, then we only
12260 include the portion actually in registers here. */
12261 machine_mode rmode = TARGET_32BIT ? SImode : DImode;
12262 int i = 0;
12264 if (align_words + n_words > GP_ARG_NUM_REG)
12266 /* Not all of the arg fits in gprs. Say that it goes in memory
12267 too, using a magic NULL_RTX component. Also see comment in
12268 rs6000_mixed_function_arg for why the normal
12269 function_arg_partial_nregs scheme doesn't work in this case. */
12270 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, NULL_RTX, const0_rtx);
12275 rtx r = gen_rtx_REG (rmode, GP_ARG_MIN_REG + align_words);
12276 rtx off = GEN_INT (i++ * GET_MODE_SIZE (rmode));
12277 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, r, off);
12279 while (++align_words < GP_ARG_NUM_REG && --n_words != 0);
12281 else
12283 /* The whole arg fits in gprs. */
12284 rtx r = gen_rtx_REG (mode, GP_ARG_MIN_REG + align_words);
12285 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, r, const0_rtx);
12288 else
12290 /* It's entirely in memory. */
12291 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, NULL_RTX, const0_rtx);
12294 return k;
12297 /* RVEC is a vector of K components of an argument of mode MODE.
12298 Construct the final function_arg return value from it. */
12300 static rtx
12301 rs6000_finish_function_arg (machine_mode mode, rtx *rvec, int k)
12303 gcc_assert (k >= 1);
12305 /* Avoid returning a PARALLEL in the trivial cases. */
12306 if (k == 1)
12308 if (XEXP (rvec[0], 0) == NULL_RTX)
12309 return NULL_RTX;
12311 if (GET_MODE (XEXP (rvec[0], 0)) == mode)
12312 return XEXP (rvec[0], 0);
12315 return gen_rtx_PARALLEL (mode, gen_rtvec_v (k, rvec));
12318 /* Determine where to put an argument to a function.
12319 Value is zero to push the argument on the stack,
12320 or a hard register in which to store the argument.
12322 MODE is the argument's machine mode.
12323 TYPE is the data type of the argument (as a tree).
12324 This is null for libcalls where that information may
12325 not be available.
12326 CUM is a variable of type CUMULATIVE_ARGS which gives info about
12327 the preceding args and about the function being called. It is
12328 not modified in this routine.
12329 NAMED is nonzero if this argument is a named parameter
12330 (otherwise it is an extra parameter matching an ellipsis).
12332 On RS/6000 the first eight words of non-FP are normally in registers
12333 and the rest are pushed. Under AIX, the first 13 FP args are in registers.
12334 Under V.4, the first 8 FP args are in registers.
12336 If this is floating-point and no prototype is specified, we use
12337 both an FP and integer register (or possibly FP reg and stack). Library
12338 functions (when CALL_LIBCALL is set) always have the proper types for args,
12339 so we can pass the FP value just in one register. emit_library_function
12340 doesn't support PARALLEL anyway.
12342 Note that for args passed by reference, function_arg will be called
12343 with MODE and TYPE set to that of the pointer to the arg, not the arg
12344 itself. */
12346 static rtx
12347 rs6000_function_arg (cumulative_args_t cum_v, machine_mode mode,
12348 const_tree type, bool named)
12350 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
12351 enum rs6000_abi abi = DEFAULT_ABI;
12352 machine_mode elt_mode;
12353 int n_elts;
12355 /* Return a marker to indicate whether CR1 needs to set or clear the
12356 bit that V.4 uses to say fp args were passed in registers.
12357 Assume that we don't need the marker for software floating point,
12358 or compiler generated library calls. */
12359 if (mode == VOIDmode)
12361 if (abi == ABI_V4
12362 && (cum->call_cookie & CALL_LIBCALL) == 0
12363 && (cum->stdarg
12364 || (cum->nargs_prototype < 0
12365 && (cum->prototype || TARGET_NO_PROTOTYPE)))
12366 && TARGET_HARD_FLOAT)
12367 return GEN_INT (cum->call_cookie
12368 | ((cum->fregno == FP_ARG_MIN_REG)
12369 ? CALL_V4_SET_FP_ARGS
12370 : CALL_V4_CLEAR_FP_ARGS));
12372 return GEN_INT (cum->call_cookie & ~CALL_LIBCALL);
12375 rs6000_discover_homogeneous_aggregate (mode, type, &elt_mode, &n_elts);
12377 if (TARGET_MACHO && rs6000_darwin64_struct_check_p (mode, type))
12379 rtx rslt = rs6000_darwin64_record_arg (cum, type, named, /*retval= */false);
12380 if (rslt != NULL_RTX)
12381 return rslt;
12382 /* Else fall through to usual handling. */
12385 if (USE_ALTIVEC_FOR_ARG_P (cum, elt_mode, named))
12387 rtx rvec[GP_ARG_NUM_REG + AGGR_ARG_NUM_REG + 1];
12388 rtx r, off;
12389 int i, k = 0;
12391 /* Do we also need to pass this argument in the parameter save area?
12392 Library support functions for IEEE 128-bit are assumed to not need the
12393 value passed both in GPRs and in vector registers. */
12394 if (TARGET_64BIT && !cum->prototype
12395 && (!cum->libcall || !FLOAT128_VECTOR_P (elt_mode)))
12397 int align_words = ROUND_UP (cum->words, 2);
12398 k = rs6000_psave_function_arg (mode, type, align_words, rvec);
12401 /* Describe where this argument goes in the vector registers. */
12402 for (i = 0; i < n_elts && cum->vregno + i <= ALTIVEC_ARG_MAX_REG; i++)
12404 r = gen_rtx_REG (elt_mode, cum->vregno + i);
12405 off = GEN_INT (i * GET_MODE_SIZE (elt_mode));
12406 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, r, off);
12409 return rs6000_finish_function_arg (mode, rvec, k);
12411 else if (TARGET_ALTIVEC_ABI
12412 && (ALTIVEC_OR_VSX_VECTOR_MODE (mode)
12413 || (type && TREE_CODE (type) == VECTOR_TYPE
12414 && int_size_in_bytes (type) == 16)))
12416 if (named || abi == ABI_V4)
12417 return NULL_RTX;
12418 else
12420 /* Vector parameters to varargs functions under AIX or Darwin
12421 get passed in memory and possibly also in GPRs. */
12422 int align, align_words, n_words;
12423 machine_mode part_mode;
12425 /* Vector parameters must be 16-byte aligned. In 32-bit
12426 mode this means we need to take into account the offset
12427 to the parameter save area. In 64-bit mode, they just
12428 have to start on an even word, since the parameter save
12429 area is 16-byte aligned. */
12430 if (TARGET_32BIT)
12431 align = -(rs6000_parm_offset () + cum->words) & 3;
12432 else
12433 align = cum->words & 1;
12434 align_words = cum->words + align;
12436 /* Out of registers? Memory, then. */
12437 if (align_words >= GP_ARG_NUM_REG)
12438 return NULL_RTX;
12440 if (TARGET_32BIT && TARGET_POWERPC64)
12441 return rs6000_mixed_function_arg (mode, type, align_words);
12443 /* The vector value goes in GPRs. Only the part of the
12444 value in GPRs is reported here. */
12445 part_mode = mode;
12446 n_words = rs6000_arg_size (mode, type);
12447 if (align_words + n_words > GP_ARG_NUM_REG)
12448 /* Fortunately, there are only two possibilities, the value
12449 is either wholly in GPRs or half in GPRs and half not. */
12450 part_mode = DImode;
12452 return gen_rtx_REG (part_mode, GP_ARG_MIN_REG + align_words);
12456 else if (abi == ABI_V4)
12458 if (abi_v4_pass_in_fpr (mode))
12460 /* _Decimal128 must use an even/odd register pair. This assumes
12461 that the register number is odd when fregno is odd. */
12462 if (mode == TDmode && (cum->fregno % 2) == 1)
12463 cum->fregno++;
12465 if (cum->fregno + (FLOAT128_2REG_P (mode) ? 1 : 0)
12466 <= FP_ARG_V4_MAX_REG)
12467 return gen_rtx_REG (mode, cum->fregno);
12468 else
12469 return NULL_RTX;
12471 else
12473 int n_words = rs6000_arg_size (mode, type);
12474 int gregno = cum->sysv_gregno;
12476 /* Long long is put in (r3,r4), (r5,r6), (r7,r8) or (r9,r10).
12477 As does any other 2 word item such as complex int due to a
12478 historical mistake. */
12479 if (n_words == 2)
12480 gregno += (1 - gregno) & 1;
12482 /* Multi-reg args are not split between registers and stack. */
12483 if (gregno + n_words - 1 > GP_ARG_MAX_REG)
12484 return NULL_RTX;
12486 if (TARGET_32BIT && TARGET_POWERPC64)
12487 return rs6000_mixed_function_arg (mode, type,
12488 gregno - GP_ARG_MIN_REG);
12489 return gen_rtx_REG (mode, gregno);
12492 else
12494 int align_words = rs6000_parm_start (mode, type, cum->words);
12496 /* _Decimal128 must be passed in an even/odd float register pair.
12497 This assumes that the register number is odd when fregno is odd. */
12498 if (elt_mode == TDmode && (cum->fregno % 2) == 1)
12499 cum->fregno++;
12501 if (USE_FP_FOR_ARG_P (cum, elt_mode))
12503 rtx rvec[GP_ARG_NUM_REG + AGGR_ARG_NUM_REG + 1];
12504 rtx r, off;
12505 int i, k = 0;
12506 unsigned long n_fpreg = (GET_MODE_SIZE (elt_mode) + 7) >> 3;
12507 int fpr_words;
12509 /* Do we also need to pass this argument in the parameter
12510 save area? */
12511 if (type && (cum->nargs_prototype <= 0
12512 || ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
12513 && TARGET_XL_COMPAT
12514 && align_words >= GP_ARG_NUM_REG)))
12515 k = rs6000_psave_function_arg (mode, type, align_words, rvec);
12517 /* Describe where this argument goes in the fprs. */
12518 for (i = 0; i < n_elts
12519 && cum->fregno + i * n_fpreg <= FP_ARG_MAX_REG; i++)
12521 /* Check if the argument is split over registers and memory.
12522 This can only ever happen for long double or _Decimal128;
12523 complex types are handled via split_complex_arg. */
12524 machine_mode fmode = elt_mode;
12525 if (cum->fregno + (i + 1) * n_fpreg > FP_ARG_MAX_REG + 1)
12527 gcc_assert (FLOAT128_2REG_P (fmode));
12528 fmode = DECIMAL_FLOAT_MODE_P (fmode) ? DDmode : DFmode;
12531 r = gen_rtx_REG (fmode, cum->fregno + i * n_fpreg);
12532 off = GEN_INT (i * GET_MODE_SIZE (elt_mode));
12533 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, r, off);
12536 /* If there were not enough FPRs to hold the argument, the rest
12537 usually goes into memory. However, if the current position
12538 is still within the register parameter area, a portion may
12539 actually have to go into GPRs.
12541 Note that it may happen that the portion of the argument
12542 passed in the first "half" of the first GPR was already
12543 passed in the last FPR as well.
12545 For unnamed arguments, we already set up GPRs to cover the
12546 whole argument in rs6000_psave_function_arg, so there is
12547 nothing further to do at this point. */
12548 fpr_words = (i * GET_MODE_SIZE (elt_mode)) / (TARGET_32BIT ? 4 : 8);
12549 if (i < n_elts && align_words + fpr_words < GP_ARG_NUM_REG
12550 && cum->nargs_prototype > 0)
12552 static bool warned;
12554 machine_mode rmode = TARGET_32BIT ? SImode : DImode;
12555 int n_words = rs6000_arg_size (mode, type);
12557 align_words += fpr_words;
12558 n_words -= fpr_words;
12562 r = gen_rtx_REG (rmode, GP_ARG_MIN_REG + align_words);
12563 off = GEN_INT (fpr_words++ * GET_MODE_SIZE (rmode));
12564 rvec[k++] = gen_rtx_EXPR_LIST (VOIDmode, r, off);
12566 while (++align_words < GP_ARG_NUM_REG && --n_words != 0);
12568 if (!warned && warn_psabi)
12570 warned = true;
12571 inform (input_location,
12572 "the ABI of passing homogeneous float aggregates"
12573 " has changed in GCC 5");
12577 return rs6000_finish_function_arg (mode, rvec, k);
12579 else if (align_words < GP_ARG_NUM_REG)
12581 if (TARGET_32BIT && TARGET_POWERPC64)
12582 return rs6000_mixed_function_arg (mode, type, align_words);
12584 return gen_rtx_REG (mode, GP_ARG_MIN_REG + align_words);
12586 else
12587 return NULL_RTX;
12591 /* For an arg passed partly in registers and partly in memory, this is
12592 the number of bytes passed in registers. For args passed entirely in
12593 registers or entirely in memory, zero. When an arg is described by a
12594 PARALLEL, perhaps using more than one register type, this function
12595 returns the number of bytes used by the first element of the PARALLEL. */
12597 static int
12598 rs6000_arg_partial_bytes (cumulative_args_t cum_v, machine_mode mode,
12599 tree type, bool named)
12601 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
12602 bool passed_in_gprs = true;
12603 int ret = 0;
12604 int align_words;
12605 machine_mode elt_mode;
12606 int n_elts;
12608 rs6000_discover_homogeneous_aggregate (mode, type, &elt_mode, &n_elts);
12610 if (DEFAULT_ABI == ABI_V4)
12611 return 0;
12613 if (USE_ALTIVEC_FOR_ARG_P (cum, elt_mode, named))
12615 /* If we are passing this arg in the fixed parameter save area (gprs or
12616 memory) as well as VRs, we do not use the partial bytes mechanism;
12617 instead, rs6000_function_arg will return a PARALLEL including a memory
12618 element as necessary. Library support functions for IEEE 128-bit are
12619 assumed to not need the value passed both in GPRs and in vector
12620 registers. */
12621 if (TARGET_64BIT && !cum->prototype
12622 && (!cum->libcall || !FLOAT128_VECTOR_P (elt_mode)))
12623 return 0;
12625 /* Otherwise, we pass in VRs only. Check for partial copies. */
12626 passed_in_gprs = false;
12627 if (cum->vregno + n_elts > ALTIVEC_ARG_MAX_REG + 1)
12628 ret = (ALTIVEC_ARG_MAX_REG + 1 - cum->vregno) * 16;
12631 /* In this complicated case we just disable the partial_nregs code. */
12632 if (TARGET_MACHO && rs6000_darwin64_struct_check_p (mode, type))
12633 return 0;
12635 align_words = rs6000_parm_start (mode, type, cum->words);
12637 if (USE_FP_FOR_ARG_P (cum, elt_mode))
12639 unsigned long n_fpreg = (GET_MODE_SIZE (elt_mode) + 7) >> 3;
12641 /* If we are passing this arg in the fixed parameter save area
12642 (gprs or memory) as well as FPRs, we do not use the partial
12643 bytes mechanism; instead, rs6000_function_arg will return a
12644 PARALLEL including a memory element as necessary. */
12645 if (type
12646 && (cum->nargs_prototype <= 0
12647 || ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
12648 && TARGET_XL_COMPAT
12649 && align_words >= GP_ARG_NUM_REG)))
12650 return 0;
12652 /* Otherwise, we pass in FPRs only. Check for partial copies. */
12653 passed_in_gprs = false;
12654 if (cum->fregno + n_elts * n_fpreg > FP_ARG_MAX_REG + 1)
12656 /* Compute number of bytes / words passed in FPRs. If there
12657 is still space available in the register parameter area
12658 *after* that amount, a part of the argument will be passed
12659 in GPRs. In that case, the total amount passed in any
12660 registers is equal to the amount that would have been passed
12661 in GPRs if everything were passed there, so we fall back to
12662 the GPR code below to compute the appropriate value. */
12663 int fpr = ((FP_ARG_MAX_REG + 1 - cum->fregno)
12664 * MIN (8, GET_MODE_SIZE (elt_mode)));
12665 int fpr_words = fpr / (TARGET_32BIT ? 4 : 8);
12667 if (align_words + fpr_words < GP_ARG_NUM_REG)
12668 passed_in_gprs = true;
12669 else
12670 ret = fpr;
12674 if (passed_in_gprs
12675 && align_words < GP_ARG_NUM_REG
12676 && GP_ARG_NUM_REG < align_words + rs6000_arg_size (mode, type))
12677 ret = (GP_ARG_NUM_REG - align_words) * (TARGET_32BIT ? 4 : 8);
12679 if (ret != 0 && TARGET_DEBUG_ARG)
12680 fprintf (stderr, "rs6000_arg_partial_bytes: %d\n", ret);
12682 return ret;
12685 /* A C expression that indicates when an argument must be passed by
12686 reference. If nonzero for an argument, a copy of that argument is
12687 made in memory and a pointer to the argument is passed instead of
12688 the argument itself. The pointer is passed in whatever way is
12689 appropriate for passing a pointer to that type.
12691 Under V.4, aggregates and long double are passed by reference.
12693 As an extension to all 32-bit ABIs, AltiVec vectors are passed by
12694 reference unless the AltiVec vector extension ABI is in force.
12696 As an extension to all ABIs, variable sized types are passed by
12697 reference. */
12699 static bool
12700 rs6000_pass_by_reference (cumulative_args_t cum ATTRIBUTE_UNUSED,
12701 machine_mode mode, const_tree type,
12702 bool named ATTRIBUTE_UNUSED)
12704 if (!type)
12705 return 0;
12707 if (DEFAULT_ABI == ABI_V4 && TARGET_IEEEQUAD
12708 && FLOAT128_IEEE_P (TYPE_MODE (type)))
12710 if (TARGET_DEBUG_ARG)
12711 fprintf (stderr, "function_arg_pass_by_reference: V4 IEEE 128-bit\n");
12712 return 1;
12715 if (DEFAULT_ABI == ABI_V4 && AGGREGATE_TYPE_P (type))
12717 if (TARGET_DEBUG_ARG)
12718 fprintf (stderr, "function_arg_pass_by_reference: V4 aggregate\n");
12719 return 1;
12722 if (int_size_in_bytes (type) < 0)
12724 if (TARGET_DEBUG_ARG)
12725 fprintf (stderr, "function_arg_pass_by_reference: variable size\n");
12726 return 1;
12729 /* Allow -maltivec -mabi=no-altivec without warning. Altivec vector
12730 modes only exist for GCC vector types if -maltivec. */
12731 if (TARGET_32BIT && !TARGET_ALTIVEC_ABI && ALTIVEC_VECTOR_MODE (mode))
12733 if (TARGET_DEBUG_ARG)
12734 fprintf (stderr, "function_arg_pass_by_reference: AltiVec\n");
12735 return 1;
12738 /* Pass synthetic vectors in memory. */
12739 if (TREE_CODE (type) == VECTOR_TYPE
12740 && int_size_in_bytes (type) > (TARGET_ALTIVEC_ABI ? 16 : 8))
12742 static bool warned_for_pass_big_vectors = false;
12743 if (TARGET_DEBUG_ARG)
12744 fprintf (stderr, "function_arg_pass_by_reference: synthetic vector\n");
12745 if (!warned_for_pass_big_vectors)
12747 warning (OPT_Wpsabi, "GCC vector passed by reference: "
12748 "non-standard ABI extension with no compatibility "
12749 "guarantee");
12750 warned_for_pass_big_vectors = true;
12752 return 1;
12755 return 0;
12758 /* Process parameter of type TYPE after ARGS_SO_FAR parameters were
12759 already processes. Return true if the parameter must be passed
12760 (fully or partially) on the stack. */
12762 static bool
12763 rs6000_parm_needs_stack (cumulative_args_t args_so_far, tree type)
12765 machine_mode mode;
12766 int unsignedp;
12767 rtx entry_parm;
12769 /* Catch errors. */
12770 if (type == NULL || type == error_mark_node)
12771 return true;
12773 /* Handle types with no storage requirement. */
12774 if (TYPE_MODE (type) == VOIDmode)
12775 return false;
12777 /* Handle complex types. */
12778 if (TREE_CODE (type) == COMPLEX_TYPE)
12779 return (rs6000_parm_needs_stack (args_so_far, TREE_TYPE (type))
12780 || rs6000_parm_needs_stack (args_so_far, TREE_TYPE (type)));
12782 /* Handle transparent aggregates. */
12783 if ((TREE_CODE (type) == UNION_TYPE || TREE_CODE (type) == RECORD_TYPE)
12784 && TYPE_TRANSPARENT_AGGR (type))
12785 type = TREE_TYPE (first_field (type));
12787 /* See if this arg was passed by invisible reference. */
12788 if (pass_by_reference (get_cumulative_args (args_so_far),
12789 TYPE_MODE (type), type, true))
12790 type = build_pointer_type (type);
12792 /* Find mode as it is passed by the ABI. */
12793 unsignedp = TYPE_UNSIGNED (type);
12794 mode = promote_mode (type, TYPE_MODE (type), &unsignedp);
12796 /* If we must pass in stack, we need a stack. */
12797 if (rs6000_must_pass_in_stack (mode, type))
12798 return true;
12800 /* If there is no incoming register, we need a stack. */
12801 entry_parm = rs6000_function_arg (args_so_far, mode, type, true);
12802 if (entry_parm == NULL)
12803 return true;
12805 /* Likewise if we need to pass both in registers and on the stack. */
12806 if (GET_CODE (entry_parm) == PARALLEL
12807 && XEXP (XVECEXP (entry_parm, 0, 0), 0) == NULL_RTX)
12808 return true;
12810 /* Also true if we're partially in registers and partially not. */
12811 if (rs6000_arg_partial_bytes (args_so_far, mode, type, true) != 0)
12812 return true;
12814 /* Update info on where next arg arrives in registers. */
12815 rs6000_function_arg_advance (args_so_far, mode, type, true);
12816 return false;
12819 /* Return true if FUN has no prototype, has a variable argument
12820 list, or passes any parameter in memory. */
12822 static bool
12823 rs6000_function_parms_need_stack (tree fun, bool incoming)
12825 tree fntype, result;
12826 CUMULATIVE_ARGS args_so_far_v;
12827 cumulative_args_t args_so_far;
12829 if (!fun)
12830 /* Must be a libcall, all of which only use reg parms. */
12831 return false;
12833 fntype = fun;
12834 if (!TYPE_P (fun))
12835 fntype = TREE_TYPE (fun);
12837 /* Varargs functions need the parameter save area. */
12838 if ((!incoming && !prototype_p (fntype)) || stdarg_p (fntype))
12839 return true;
12841 INIT_CUMULATIVE_INCOMING_ARGS (args_so_far_v, fntype, NULL_RTX);
12842 args_so_far = pack_cumulative_args (&args_so_far_v);
12844 /* When incoming, we will have been passed the function decl.
12845 It is necessary to use the decl to handle K&R style functions,
12846 where TYPE_ARG_TYPES may not be available. */
12847 if (incoming)
12849 gcc_assert (DECL_P (fun));
12850 result = DECL_RESULT (fun);
12852 else
12853 result = TREE_TYPE (fntype);
12855 if (result && aggregate_value_p (result, fntype))
12857 if (!TYPE_P (result))
12858 result = TREE_TYPE (result);
12859 result = build_pointer_type (result);
12860 rs6000_parm_needs_stack (args_so_far, result);
12863 if (incoming)
12865 tree parm;
12867 for (parm = DECL_ARGUMENTS (fun);
12868 parm && parm != void_list_node;
12869 parm = TREE_CHAIN (parm))
12870 if (rs6000_parm_needs_stack (args_so_far, TREE_TYPE (parm)))
12871 return true;
12873 else
12875 function_args_iterator args_iter;
12876 tree arg_type;
12878 FOREACH_FUNCTION_ARGS (fntype, arg_type, args_iter)
12879 if (rs6000_parm_needs_stack (args_so_far, arg_type))
12880 return true;
12883 return false;
12886 /* Return the size of the REG_PARM_STACK_SPACE are for FUN. This is
12887 usually a constant depending on the ABI. However, in the ELFv2 ABI
12888 the register parameter area is optional when calling a function that
12889 has a prototype is scope, has no variable argument list, and passes
12890 all parameters in registers. */
12893 rs6000_reg_parm_stack_space (tree fun, bool incoming)
12895 int reg_parm_stack_space;
12897 switch (DEFAULT_ABI)
12899 default:
12900 reg_parm_stack_space = 0;
12901 break;
12903 case ABI_AIX:
12904 case ABI_DARWIN:
12905 reg_parm_stack_space = TARGET_64BIT ? 64 : 32;
12906 break;
12908 case ABI_ELFv2:
12909 /* ??? Recomputing this every time is a bit expensive. Is there
12910 a place to cache this information? */
12911 if (rs6000_function_parms_need_stack (fun, incoming))
12912 reg_parm_stack_space = TARGET_64BIT ? 64 : 32;
12913 else
12914 reg_parm_stack_space = 0;
12915 break;
12918 return reg_parm_stack_space;
12921 static void
12922 rs6000_move_block_from_reg (int regno, rtx x, int nregs)
12924 int i;
12925 machine_mode reg_mode = TARGET_32BIT ? SImode : DImode;
12927 if (nregs == 0)
12928 return;
12930 for (i = 0; i < nregs; i++)
12932 rtx tem = adjust_address_nv (x, reg_mode, i * GET_MODE_SIZE (reg_mode));
12933 if (reload_completed)
12935 if (! strict_memory_address_p (reg_mode, XEXP (tem, 0)))
12936 tem = NULL_RTX;
12937 else
12938 tem = simplify_gen_subreg (reg_mode, x, BLKmode,
12939 i * GET_MODE_SIZE (reg_mode));
12941 else
12942 tem = replace_equiv_address (tem, XEXP (tem, 0));
12944 gcc_assert (tem);
12946 emit_move_insn (tem, gen_rtx_REG (reg_mode, regno + i));
12950 /* Perform any needed actions needed for a function that is receiving a
12951 variable number of arguments.
12953 CUM is as above.
12955 MODE and TYPE are the mode and type of the current parameter.
12957 PRETEND_SIZE is a variable that should be set to the amount of stack
12958 that must be pushed by the prolog to pretend that our caller pushed
12961 Normally, this macro will push all remaining incoming registers on the
12962 stack and set PRETEND_SIZE to the length of the registers pushed. */
12964 static void
12965 setup_incoming_varargs (cumulative_args_t cum, machine_mode mode,
12966 tree type, int *pretend_size ATTRIBUTE_UNUSED,
12967 int no_rtl)
12969 CUMULATIVE_ARGS next_cum;
12970 int reg_size = TARGET_32BIT ? 4 : 8;
12971 rtx save_area = NULL_RTX, mem;
12972 int first_reg_offset;
12973 alias_set_type set;
12975 /* Skip the last named argument. */
12976 next_cum = *get_cumulative_args (cum);
12977 rs6000_function_arg_advance_1 (&next_cum, mode, type, true, 0);
12979 if (DEFAULT_ABI == ABI_V4)
12981 first_reg_offset = next_cum.sysv_gregno - GP_ARG_MIN_REG;
12983 if (! no_rtl)
12985 int gpr_reg_num = 0, gpr_size = 0, fpr_size = 0;
12986 HOST_WIDE_INT offset = 0;
12988 /* Try to optimize the size of the varargs save area.
12989 The ABI requires that ap.reg_save_area is doubleword
12990 aligned, but we don't need to allocate space for all
12991 the bytes, only those to which we actually will save
12992 anything. */
12993 if (cfun->va_list_gpr_size && first_reg_offset < GP_ARG_NUM_REG)
12994 gpr_reg_num = GP_ARG_NUM_REG - first_reg_offset;
12995 if (TARGET_HARD_FLOAT
12996 && next_cum.fregno <= FP_ARG_V4_MAX_REG
12997 && cfun->va_list_fpr_size)
12999 if (gpr_reg_num)
13000 fpr_size = (next_cum.fregno - FP_ARG_MIN_REG)
13001 * UNITS_PER_FP_WORD;
13002 if (cfun->va_list_fpr_size
13003 < FP_ARG_V4_MAX_REG + 1 - next_cum.fregno)
13004 fpr_size += cfun->va_list_fpr_size * UNITS_PER_FP_WORD;
13005 else
13006 fpr_size += (FP_ARG_V4_MAX_REG + 1 - next_cum.fregno)
13007 * UNITS_PER_FP_WORD;
13009 if (gpr_reg_num)
13011 offset = -((first_reg_offset * reg_size) & ~7);
13012 if (!fpr_size && gpr_reg_num > cfun->va_list_gpr_size)
13014 gpr_reg_num = cfun->va_list_gpr_size;
13015 if (reg_size == 4 && (first_reg_offset & 1))
13016 gpr_reg_num++;
13018 gpr_size = (gpr_reg_num * reg_size + 7) & ~7;
13020 else if (fpr_size)
13021 offset = - (int) (next_cum.fregno - FP_ARG_MIN_REG)
13022 * UNITS_PER_FP_WORD
13023 - (int) (GP_ARG_NUM_REG * reg_size);
13025 if (gpr_size + fpr_size)
13027 rtx reg_save_area
13028 = assign_stack_local (BLKmode, gpr_size + fpr_size, 64);
13029 gcc_assert (GET_CODE (reg_save_area) == MEM);
13030 reg_save_area = XEXP (reg_save_area, 0);
13031 if (GET_CODE (reg_save_area) == PLUS)
13033 gcc_assert (XEXP (reg_save_area, 0)
13034 == virtual_stack_vars_rtx);
13035 gcc_assert (GET_CODE (XEXP (reg_save_area, 1)) == CONST_INT);
13036 offset += INTVAL (XEXP (reg_save_area, 1));
13038 else
13039 gcc_assert (reg_save_area == virtual_stack_vars_rtx);
13042 cfun->machine->varargs_save_offset = offset;
13043 save_area = plus_constant (Pmode, virtual_stack_vars_rtx, offset);
13046 else
13048 first_reg_offset = next_cum.words;
13049 save_area = crtl->args.internal_arg_pointer;
13051 if (targetm.calls.must_pass_in_stack (mode, type))
13052 first_reg_offset += rs6000_arg_size (TYPE_MODE (type), type);
13055 set = get_varargs_alias_set ();
13056 if (! no_rtl && first_reg_offset < GP_ARG_NUM_REG
13057 && cfun->va_list_gpr_size)
13059 int n_gpr, nregs = GP_ARG_NUM_REG - first_reg_offset;
13061 if (va_list_gpr_counter_field)
13062 /* V4 va_list_gpr_size counts number of registers needed. */
13063 n_gpr = cfun->va_list_gpr_size;
13064 else
13065 /* char * va_list instead counts number of bytes needed. */
13066 n_gpr = (cfun->va_list_gpr_size + reg_size - 1) / reg_size;
13068 if (nregs > n_gpr)
13069 nregs = n_gpr;
13071 mem = gen_rtx_MEM (BLKmode,
13072 plus_constant (Pmode, save_area,
13073 first_reg_offset * reg_size));
13074 MEM_NOTRAP_P (mem) = 1;
13075 set_mem_alias_set (mem, set);
13076 set_mem_align (mem, BITS_PER_WORD);
13078 rs6000_move_block_from_reg (GP_ARG_MIN_REG + first_reg_offset, mem,
13079 nregs);
13082 /* Save FP registers if needed. */
13083 if (DEFAULT_ABI == ABI_V4
13084 && TARGET_HARD_FLOAT
13085 && ! no_rtl
13086 && next_cum.fregno <= FP_ARG_V4_MAX_REG
13087 && cfun->va_list_fpr_size)
13089 int fregno = next_cum.fregno, nregs;
13090 rtx cr1 = gen_rtx_REG (CCmode, CR1_REGNO);
13091 rtx lab = gen_label_rtx ();
13092 int off = (GP_ARG_NUM_REG * reg_size) + ((fregno - FP_ARG_MIN_REG)
13093 * UNITS_PER_FP_WORD);
13095 emit_jump_insn
13096 (gen_rtx_SET (pc_rtx,
13097 gen_rtx_IF_THEN_ELSE (VOIDmode,
13098 gen_rtx_NE (VOIDmode, cr1,
13099 const0_rtx),
13100 gen_rtx_LABEL_REF (VOIDmode, lab),
13101 pc_rtx)));
13103 for (nregs = 0;
13104 fregno <= FP_ARG_V4_MAX_REG && nregs < cfun->va_list_fpr_size;
13105 fregno++, off += UNITS_PER_FP_WORD, nregs++)
13107 mem = gen_rtx_MEM ((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
13108 ? DFmode : SFmode,
13109 plus_constant (Pmode, save_area, off));
13110 MEM_NOTRAP_P (mem) = 1;
13111 set_mem_alias_set (mem, set);
13112 set_mem_align (mem, GET_MODE_ALIGNMENT (
13113 (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
13114 ? DFmode : SFmode));
13115 emit_move_insn (mem, gen_rtx_REG (
13116 (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
13117 ? DFmode : SFmode, fregno));
13120 emit_label (lab);
13124 /* Create the va_list data type. */
13126 static tree
13127 rs6000_build_builtin_va_list (void)
13129 tree f_gpr, f_fpr, f_res, f_ovf, f_sav, record, type_decl;
13131 /* For AIX, prefer 'char *' because that's what the system
13132 header files like. */
13133 if (DEFAULT_ABI != ABI_V4)
13134 return build_pointer_type (char_type_node);
13136 record = (*lang_hooks.types.make_type) (RECORD_TYPE);
13137 type_decl = build_decl (BUILTINS_LOCATION, TYPE_DECL,
13138 get_identifier ("__va_list_tag"), record);
13140 f_gpr = build_decl (BUILTINS_LOCATION, FIELD_DECL, get_identifier ("gpr"),
13141 unsigned_char_type_node);
13142 f_fpr = build_decl (BUILTINS_LOCATION, FIELD_DECL, get_identifier ("fpr"),
13143 unsigned_char_type_node);
13144 /* Give the two bytes of padding a name, so that -Wpadded won't warn on
13145 every user file. */
13146 f_res = build_decl (BUILTINS_LOCATION, FIELD_DECL,
13147 get_identifier ("reserved"), short_unsigned_type_node);
13148 f_ovf = build_decl (BUILTINS_LOCATION, FIELD_DECL,
13149 get_identifier ("overflow_arg_area"),
13150 ptr_type_node);
13151 f_sav = build_decl (BUILTINS_LOCATION, FIELD_DECL,
13152 get_identifier ("reg_save_area"),
13153 ptr_type_node);
13155 va_list_gpr_counter_field = f_gpr;
13156 va_list_fpr_counter_field = f_fpr;
13158 DECL_FIELD_CONTEXT (f_gpr) = record;
13159 DECL_FIELD_CONTEXT (f_fpr) = record;
13160 DECL_FIELD_CONTEXT (f_res) = record;
13161 DECL_FIELD_CONTEXT (f_ovf) = record;
13162 DECL_FIELD_CONTEXT (f_sav) = record;
13164 TYPE_STUB_DECL (record) = type_decl;
13165 TYPE_NAME (record) = type_decl;
13166 TYPE_FIELDS (record) = f_gpr;
13167 DECL_CHAIN (f_gpr) = f_fpr;
13168 DECL_CHAIN (f_fpr) = f_res;
13169 DECL_CHAIN (f_res) = f_ovf;
13170 DECL_CHAIN (f_ovf) = f_sav;
13172 layout_type (record);
13174 /* The correct type is an array type of one element. */
13175 return build_array_type (record, build_index_type (size_zero_node));
13178 /* Implement va_start. */
13180 static void
13181 rs6000_va_start (tree valist, rtx nextarg)
13183 HOST_WIDE_INT words, n_gpr, n_fpr;
13184 tree f_gpr, f_fpr, f_res, f_ovf, f_sav;
13185 tree gpr, fpr, ovf, sav, t;
13187 /* Only SVR4 needs something special. */
13188 if (DEFAULT_ABI != ABI_V4)
13190 std_expand_builtin_va_start (valist, nextarg);
13191 return;
13194 f_gpr = TYPE_FIELDS (TREE_TYPE (va_list_type_node));
13195 f_fpr = DECL_CHAIN (f_gpr);
13196 f_res = DECL_CHAIN (f_fpr);
13197 f_ovf = DECL_CHAIN (f_res);
13198 f_sav = DECL_CHAIN (f_ovf);
13200 valist = build_simple_mem_ref (valist);
13201 gpr = build3 (COMPONENT_REF, TREE_TYPE (f_gpr), valist, f_gpr, NULL_TREE);
13202 fpr = build3 (COMPONENT_REF, TREE_TYPE (f_fpr), unshare_expr (valist),
13203 f_fpr, NULL_TREE);
13204 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), unshare_expr (valist),
13205 f_ovf, NULL_TREE);
13206 sav = build3 (COMPONENT_REF, TREE_TYPE (f_sav), unshare_expr (valist),
13207 f_sav, NULL_TREE);
13209 /* Count number of gp and fp argument registers used. */
13210 words = crtl->args.info.words;
13211 n_gpr = MIN (crtl->args.info.sysv_gregno - GP_ARG_MIN_REG,
13212 GP_ARG_NUM_REG);
13213 n_fpr = MIN (crtl->args.info.fregno - FP_ARG_MIN_REG,
13214 FP_ARG_NUM_REG);
13216 if (TARGET_DEBUG_ARG)
13217 fprintf (stderr, "va_start: words = " HOST_WIDE_INT_PRINT_DEC", n_gpr = "
13218 HOST_WIDE_INT_PRINT_DEC", n_fpr = " HOST_WIDE_INT_PRINT_DEC"\n",
13219 words, n_gpr, n_fpr);
13221 if (cfun->va_list_gpr_size)
13223 t = build2 (MODIFY_EXPR, TREE_TYPE (gpr), gpr,
13224 build_int_cst (NULL_TREE, n_gpr));
13225 TREE_SIDE_EFFECTS (t) = 1;
13226 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
13229 if (cfun->va_list_fpr_size)
13231 t = build2 (MODIFY_EXPR, TREE_TYPE (fpr), fpr,
13232 build_int_cst (NULL_TREE, n_fpr));
13233 TREE_SIDE_EFFECTS (t) = 1;
13234 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
13236 #ifdef HAVE_AS_GNU_ATTRIBUTE
13237 if (call_ABI_of_interest (cfun->decl))
13238 rs6000_passes_float = true;
13239 #endif
13242 /* Find the overflow area. */
13243 t = make_tree (TREE_TYPE (ovf), crtl->args.internal_arg_pointer);
13244 if (words != 0)
13245 t = fold_build_pointer_plus_hwi (t, words * MIN_UNITS_PER_WORD);
13246 t = build2 (MODIFY_EXPR, TREE_TYPE (ovf), ovf, t);
13247 TREE_SIDE_EFFECTS (t) = 1;
13248 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
13250 /* If there were no va_arg invocations, don't set up the register
13251 save area. */
13252 if (!cfun->va_list_gpr_size
13253 && !cfun->va_list_fpr_size
13254 && n_gpr < GP_ARG_NUM_REG
13255 && n_fpr < FP_ARG_V4_MAX_REG)
13256 return;
13258 /* Find the register save area. */
13259 t = make_tree (TREE_TYPE (sav), virtual_stack_vars_rtx);
13260 if (cfun->machine->varargs_save_offset)
13261 t = fold_build_pointer_plus_hwi (t, cfun->machine->varargs_save_offset);
13262 t = build2 (MODIFY_EXPR, TREE_TYPE (sav), sav, t);
13263 TREE_SIDE_EFFECTS (t) = 1;
13264 expand_expr (t, const0_rtx, VOIDmode, EXPAND_NORMAL);
13267 /* Implement va_arg. */
13269 static tree
13270 rs6000_gimplify_va_arg (tree valist, tree type, gimple_seq *pre_p,
13271 gimple_seq *post_p)
13273 tree f_gpr, f_fpr, f_res, f_ovf, f_sav;
13274 tree gpr, fpr, ovf, sav, reg, t, u;
13275 int size, rsize, n_reg, sav_ofs, sav_scale;
13276 tree lab_false, lab_over, addr;
13277 int align;
13278 tree ptrtype = build_pointer_type_for_mode (type, ptr_mode, true);
13279 int regalign = 0;
13280 gimple *stmt;
13282 if (pass_by_reference (NULL, TYPE_MODE (type), type, false))
13284 t = rs6000_gimplify_va_arg (valist, ptrtype, pre_p, post_p);
13285 return build_va_arg_indirect_ref (t);
13288 /* We need to deal with the fact that the darwin ppc64 ABI is defined by an
13289 earlier version of gcc, with the property that it always applied alignment
13290 adjustments to the va-args (even for zero-sized types). The cheapest way
13291 to deal with this is to replicate the effect of the part of
13292 std_gimplify_va_arg_expr that carries out the align adjust, for the case
13293 of relevance.
13294 We don't need to check for pass-by-reference because of the test above.
13295 We can return a simplifed answer, since we know there's no offset to add. */
13297 if (((TARGET_MACHO
13298 && rs6000_darwin64_abi)
13299 || DEFAULT_ABI == ABI_ELFv2
13300 || (DEFAULT_ABI == ABI_AIX && !rs6000_compat_align_parm))
13301 && integer_zerop (TYPE_SIZE (type)))
13303 unsigned HOST_WIDE_INT align, boundary;
13304 tree valist_tmp = get_initialized_tmp_var (valist, pre_p, NULL);
13305 align = PARM_BOUNDARY / BITS_PER_UNIT;
13306 boundary = rs6000_function_arg_boundary (TYPE_MODE (type), type);
13307 if (boundary > MAX_SUPPORTED_STACK_ALIGNMENT)
13308 boundary = MAX_SUPPORTED_STACK_ALIGNMENT;
13309 boundary /= BITS_PER_UNIT;
13310 if (boundary > align)
13312 tree t ;
13313 /* This updates arg ptr by the amount that would be necessary
13314 to align the zero-sized (but not zero-alignment) item. */
13315 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist_tmp,
13316 fold_build_pointer_plus_hwi (valist_tmp, boundary - 1));
13317 gimplify_and_add (t, pre_p);
13319 t = fold_convert (sizetype, valist_tmp);
13320 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist_tmp,
13321 fold_convert (TREE_TYPE (valist),
13322 fold_build2 (BIT_AND_EXPR, sizetype, t,
13323 size_int (-boundary))));
13324 t = build2 (MODIFY_EXPR, TREE_TYPE (valist), valist, t);
13325 gimplify_and_add (t, pre_p);
13327 /* Since it is zero-sized there's no increment for the item itself. */
13328 valist_tmp = fold_convert (build_pointer_type (type), valist_tmp);
13329 return build_va_arg_indirect_ref (valist_tmp);
13332 if (DEFAULT_ABI != ABI_V4)
13334 if (targetm.calls.split_complex_arg && TREE_CODE (type) == COMPLEX_TYPE)
13336 tree elem_type = TREE_TYPE (type);
13337 machine_mode elem_mode = TYPE_MODE (elem_type);
13338 int elem_size = GET_MODE_SIZE (elem_mode);
13340 if (elem_size < UNITS_PER_WORD)
13342 tree real_part, imag_part;
13343 gimple_seq post = NULL;
13345 real_part = rs6000_gimplify_va_arg (valist, elem_type, pre_p,
13346 &post);
13347 /* Copy the value into a temporary, lest the formal temporary
13348 be reused out from under us. */
13349 real_part = get_initialized_tmp_var (real_part, pre_p, &post);
13350 gimple_seq_add_seq (pre_p, post);
13352 imag_part = rs6000_gimplify_va_arg (valist, elem_type, pre_p,
13353 post_p);
13355 return build2 (COMPLEX_EXPR, type, real_part, imag_part);
13359 return std_gimplify_va_arg_expr (valist, type, pre_p, post_p);
13362 f_gpr = TYPE_FIELDS (TREE_TYPE (va_list_type_node));
13363 f_fpr = DECL_CHAIN (f_gpr);
13364 f_res = DECL_CHAIN (f_fpr);
13365 f_ovf = DECL_CHAIN (f_res);
13366 f_sav = DECL_CHAIN (f_ovf);
13368 gpr = build3 (COMPONENT_REF, TREE_TYPE (f_gpr), valist, f_gpr, NULL_TREE);
13369 fpr = build3 (COMPONENT_REF, TREE_TYPE (f_fpr), unshare_expr (valist),
13370 f_fpr, NULL_TREE);
13371 ovf = build3 (COMPONENT_REF, TREE_TYPE (f_ovf), unshare_expr (valist),
13372 f_ovf, NULL_TREE);
13373 sav = build3 (COMPONENT_REF, TREE_TYPE (f_sav), unshare_expr (valist),
13374 f_sav, NULL_TREE);
13376 size = int_size_in_bytes (type);
13377 rsize = (size + 3) / 4;
13378 int pad = 4 * rsize - size;
13379 align = 1;
13381 machine_mode mode = TYPE_MODE (type);
13382 if (abi_v4_pass_in_fpr (mode))
13384 /* FP args go in FP registers, if present. */
13385 reg = fpr;
13386 n_reg = (size + 7) / 8;
13387 sav_ofs = ((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT) ? 8 : 4) * 4;
13388 sav_scale = ((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT) ? 8 : 4);
13389 if (mode != SFmode && mode != SDmode)
13390 align = 8;
13392 else
13394 /* Otherwise into GP registers. */
13395 reg = gpr;
13396 n_reg = rsize;
13397 sav_ofs = 0;
13398 sav_scale = 4;
13399 if (n_reg == 2)
13400 align = 8;
13403 /* Pull the value out of the saved registers.... */
13405 lab_over = NULL;
13406 addr = create_tmp_var (ptr_type_node, "addr");
13408 /* AltiVec vectors never go in registers when -mabi=altivec. */
13409 if (TARGET_ALTIVEC_ABI && ALTIVEC_VECTOR_MODE (mode))
13410 align = 16;
13411 else
13413 lab_false = create_artificial_label (input_location);
13414 lab_over = create_artificial_label (input_location);
13416 /* Long long is aligned in the registers. As are any other 2 gpr
13417 item such as complex int due to a historical mistake. */
13418 u = reg;
13419 if (n_reg == 2 && reg == gpr)
13421 regalign = 1;
13422 u = build2 (BIT_AND_EXPR, TREE_TYPE (reg), unshare_expr (reg),
13423 build_int_cst (TREE_TYPE (reg), n_reg - 1));
13424 u = build2 (POSTINCREMENT_EXPR, TREE_TYPE (reg),
13425 unshare_expr (reg), u);
13427 /* _Decimal128 is passed in even/odd fpr pairs; the stored
13428 reg number is 0 for f1, so we want to make it odd. */
13429 else if (reg == fpr && mode == TDmode)
13431 t = build2 (BIT_IOR_EXPR, TREE_TYPE (reg), unshare_expr (reg),
13432 build_int_cst (TREE_TYPE (reg), 1));
13433 u = build2 (MODIFY_EXPR, void_type_node, unshare_expr (reg), t);
13436 t = fold_convert (TREE_TYPE (reg), size_int (8 - n_reg + 1));
13437 t = build2 (GE_EXPR, boolean_type_node, u, t);
13438 u = build1 (GOTO_EXPR, void_type_node, lab_false);
13439 t = build3 (COND_EXPR, void_type_node, t, u, NULL_TREE);
13440 gimplify_and_add (t, pre_p);
13442 t = sav;
13443 if (sav_ofs)
13444 t = fold_build_pointer_plus_hwi (sav, sav_ofs);
13446 u = build2 (POSTINCREMENT_EXPR, TREE_TYPE (reg), unshare_expr (reg),
13447 build_int_cst (TREE_TYPE (reg), n_reg));
13448 u = fold_convert (sizetype, u);
13449 u = build2 (MULT_EXPR, sizetype, u, size_int (sav_scale));
13450 t = fold_build_pointer_plus (t, u);
13452 /* _Decimal32 varargs are located in the second word of the 64-bit
13453 FP register for 32-bit binaries. */
13454 if (TARGET_32BIT && TARGET_HARD_FLOAT && mode == SDmode)
13455 t = fold_build_pointer_plus_hwi (t, size);
13457 /* Args are passed right-aligned. */
13458 if (BYTES_BIG_ENDIAN)
13459 t = fold_build_pointer_plus_hwi (t, pad);
13461 gimplify_assign (addr, t, pre_p);
13463 gimple_seq_add_stmt (pre_p, gimple_build_goto (lab_over));
13465 stmt = gimple_build_label (lab_false);
13466 gimple_seq_add_stmt (pre_p, stmt);
13468 if ((n_reg == 2 && !regalign) || n_reg > 2)
13470 /* Ensure that we don't find any more args in regs.
13471 Alignment has taken care of for special cases. */
13472 gimplify_assign (reg, build_int_cst (TREE_TYPE (reg), 8), pre_p);
13476 /* ... otherwise out of the overflow area. */
13478 /* Care for on-stack alignment if needed. */
13479 t = ovf;
13480 if (align != 1)
13482 t = fold_build_pointer_plus_hwi (t, align - 1);
13483 t = build2 (BIT_AND_EXPR, TREE_TYPE (t), t,
13484 build_int_cst (TREE_TYPE (t), -align));
13487 /* Args are passed right-aligned. */
13488 if (BYTES_BIG_ENDIAN)
13489 t = fold_build_pointer_plus_hwi (t, pad);
13491 gimplify_expr (&t, pre_p, NULL, is_gimple_val, fb_rvalue);
13493 gimplify_assign (unshare_expr (addr), t, pre_p);
13495 t = fold_build_pointer_plus_hwi (t, size);
13496 gimplify_assign (unshare_expr (ovf), t, pre_p);
13498 if (lab_over)
13500 stmt = gimple_build_label (lab_over);
13501 gimple_seq_add_stmt (pre_p, stmt);
13504 if (STRICT_ALIGNMENT
13505 && (TYPE_ALIGN (type)
13506 > (unsigned) BITS_PER_UNIT * (align < 4 ? 4 : align)))
13508 /* The value (of type complex double, for example) may not be
13509 aligned in memory in the saved registers, so copy via a
13510 temporary. (This is the same code as used for SPARC.) */
13511 tree tmp = create_tmp_var (type, "va_arg_tmp");
13512 tree dest_addr = build_fold_addr_expr (tmp);
13514 tree copy = build_call_expr (builtin_decl_implicit (BUILT_IN_MEMCPY),
13515 3, dest_addr, addr, size_int (rsize * 4));
13517 gimplify_and_add (copy, pre_p);
13518 addr = dest_addr;
13521 addr = fold_convert (ptrtype, addr);
13522 return build_va_arg_indirect_ref (addr);
13525 /* Builtins. */
13527 static void
13528 def_builtin (const char *name, tree type, enum rs6000_builtins code)
13530 tree t;
13531 unsigned classify = rs6000_builtin_info[(int)code].attr;
13532 const char *attr_string = "";
13534 gcc_assert (name != NULL);
13535 gcc_assert (IN_RANGE ((int)code, 0, (int)RS6000_BUILTIN_COUNT));
13537 if (rs6000_builtin_decls[(int)code])
13538 fatal_error (input_location,
13539 "internal error: builtin function %qs already processed",
13540 name);
13542 rs6000_builtin_decls[(int)code] = t =
13543 add_builtin_function (name, type, (int)code, BUILT_IN_MD, NULL, NULL_TREE);
13545 /* Set any special attributes. */
13546 if ((classify & RS6000_BTC_CONST) != 0)
13548 /* const function, function only depends on the inputs. */
13549 TREE_READONLY (t) = 1;
13550 TREE_NOTHROW (t) = 1;
13551 attr_string = ", const";
13553 else if ((classify & RS6000_BTC_PURE) != 0)
13555 /* pure function, function can read global memory, but does not set any
13556 external state. */
13557 DECL_PURE_P (t) = 1;
13558 TREE_NOTHROW (t) = 1;
13559 attr_string = ", pure";
13561 else if ((classify & RS6000_BTC_FP) != 0)
13563 /* Function is a math function. If rounding mode is on, then treat the
13564 function as not reading global memory, but it can have arbitrary side
13565 effects. If it is off, then assume the function is a const function.
13566 This mimics the ATTR_MATHFN_FPROUNDING attribute in
13567 builtin-attribute.def that is used for the math functions. */
13568 TREE_NOTHROW (t) = 1;
13569 if (flag_rounding_math)
13571 DECL_PURE_P (t) = 1;
13572 DECL_IS_NOVOPS (t) = 1;
13573 attr_string = ", fp, pure";
13575 else
13577 TREE_READONLY (t) = 1;
13578 attr_string = ", fp, const";
13581 else if ((classify & RS6000_BTC_ATTR_MASK) != 0)
13582 gcc_unreachable ();
13584 if (TARGET_DEBUG_BUILTIN)
13585 fprintf (stderr, "rs6000_builtin, code = %4d, %s%s\n",
13586 (int)code, name, attr_string);
13589 /* Simple ternary operations: VECd = foo (VECa, VECb, VECc). */
13591 #undef RS6000_BUILTIN_0
13592 #undef RS6000_BUILTIN_1
13593 #undef RS6000_BUILTIN_2
13594 #undef RS6000_BUILTIN_3
13595 #undef RS6000_BUILTIN_A
13596 #undef RS6000_BUILTIN_D
13597 #undef RS6000_BUILTIN_H
13598 #undef RS6000_BUILTIN_P
13599 #undef RS6000_BUILTIN_Q
13600 #undef RS6000_BUILTIN_X
13602 #define RS6000_BUILTIN_0(ENUM, NAME, MASK, ATTR, ICODE)
13603 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
13604 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
13605 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE) \
13606 { MASK, ICODE, NAME, ENUM },
13608 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
13609 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
13610 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
13611 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
13612 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
13613 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
13615 static const struct builtin_description bdesc_3arg[] =
13617 #include "rs6000-builtin.def"
13620 /* DST operations: void foo (void *, const int, const char). */
13622 #undef RS6000_BUILTIN_0
13623 #undef RS6000_BUILTIN_1
13624 #undef RS6000_BUILTIN_2
13625 #undef RS6000_BUILTIN_3
13626 #undef RS6000_BUILTIN_A
13627 #undef RS6000_BUILTIN_D
13628 #undef RS6000_BUILTIN_H
13629 #undef RS6000_BUILTIN_P
13630 #undef RS6000_BUILTIN_Q
13631 #undef RS6000_BUILTIN_X
13633 #define RS6000_BUILTIN_0(ENUM, NAME, MASK, ATTR, ICODE)
13634 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
13635 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
13636 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
13637 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
13638 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE) \
13639 { MASK, ICODE, NAME, ENUM },
13641 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
13642 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
13643 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
13644 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
13646 static const struct builtin_description bdesc_dst[] =
13648 #include "rs6000-builtin.def"
13651 /* Simple binary operations: VECc = foo (VECa, VECb). */
13653 #undef RS6000_BUILTIN_0
13654 #undef RS6000_BUILTIN_1
13655 #undef RS6000_BUILTIN_2
13656 #undef RS6000_BUILTIN_3
13657 #undef RS6000_BUILTIN_A
13658 #undef RS6000_BUILTIN_D
13659 #undef RS6000_BUILTIN_H
13660 #undef RS6000_BUILTIN_P
13661 #undef RS6000_BUILTIN_Q
13662 #undef RS6000_BUILTIN_X
13664 #define RS6000_BUILTIN_0(ENUM, NAME, MASK, ATTR, ICODE)
13665 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
13666 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE) \
13667 { MASK, ICODE, NAME, ENUM },
13669 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
13670 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
13671 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
13672 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
13673 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
13674 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
13675 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
13677 static const struct builtin_description bdesc_2arg[] =
13679 #include "rs6000-builtin.def"
13682 #undef RS6000_BUILTIN_0
13683 #undef RS6000_BUILTIN_1
13684 #undef RS6000_BUILTIN_2
13685 #undef RS6000_BUILTIN_3
13686 #undef RS6000_BUILTIN_A
13687 #undef RS6000_BUILTIN_D
13688 #undef RS6000_BUILTIN_H
13689 #undef RS6000_BUILTIN_P
13690 #undef RS6000_BUILTIN_Q
13691 #undef RS6000_BUILTIN_X
13693 #define RS6000_BUILTIN_0(ENUM, NAME, MASK, ATTR, ICODE)
13694 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
13695 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
13696 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
13697 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
13698 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
13699 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
13700 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE) \
13701 { MASK, ICODE, NAME, ENUM },
13703 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
13704 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
13706 /* AltiVec predicates. */
13708 static const struct builtin_description bdesc_altivec_preds[] =
13710 #include "rs6000-builtin.def"
13713 /* PAIRED predicates. */
13714 #undef RS6000_BUILTIN_0
13715 #undef RS6000_BUILTIN_1
13716 #undef RS6000_BUILTIN_2
13717 #undef RS6000_BUILTIN_3
13718 #undef RS6000_BUILTIN_A
13719 #undef RS6000_BUILTIN_D
13720 #undef RS6000_BUILTIN_H
13721 #undef RS6000_BUILTIN_P
13722 #undef RS6000_BUILTIN_Q
13723 #undef RS6000_BUILTIN_X
13725 #define RS6000_BUILTIN_0(ENUM, NAME, MASK, ATTR, ICODE)
13726 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
13727 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
13728 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
13729 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
13730 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
13731 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
13732 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
13733 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE) \
13734 { MASK, ICODE, NAME, ENUM },
13736 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
13738 static const struct builtin_description bdesc_paired_preds[] =
13740 #include "rs6000-builtin.def"
13743 /* ABS* operations. */
13745 #undef RS6000_BUILTIN_0
13746 #undef RS6000_BUILTIN_1
13747 #undef RS6000_BUILTIN_2
13748 #undef RS6000_BUILTIN_3
13749 #undef RS6000_BUILTIN_A
13750 #undef RS6000_BUILTIN_D
13751 #undef RS6000_BUILTIN_H
13752 #undef RS6000_BUILTIN_P
13753 #undef RS6000_BUILTIN_Q
13754 #undef RS6000_BUILTIN_X
13756 #define RS6000_BUILTIN_0(ENUM, NAME, MASK, ATTR, ICODE)
13757 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
13758 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
13759 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
13760 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE) \
13761 { MASK, ICODE, NAME, ENUM },
13763 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
13764 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
13765 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
13766 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
13767 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
13769 static const struct builtin_description bdesc_abs[] =
13771 #include "rs6000-builtin.def"
13774 /* Simple unary operations: VECb = foo (unsigned literal) or VECb =
13775 foo (VECa). */
13777 #undef RS6000_BUILTIN_0
13778 #undef RS6000_BUILTIN_1
13779 #undef RS6000_BUILTIN_2
13780 #undef RS6000_BUILTIN_3
13781 #undef RS6000_BUILTIN_A
13782 #undef RS6000_BUILTIN_D
13783 #undef RS6000_BUILTIN_H
13784 #undef RS6000_BUILTIN_P
13785 #undef RS6000_BUILTIN_Q
13786 #undef RS6000_BUILTIN_X
13788 #define RS6000_BUILTIN_0(ENUM, NAME, MASK, ATTR, ICODE)
13789 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE) \
13790 { MASK, ICODE, NAME, ENUM },
13792 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
13793 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
13794 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
13795 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
13796 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
13797 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
13798 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
13799 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
13801 static const struct builtin_description bdesc_1arg[] =
13803 #include "rs6000-builtin.def"
13806 /* Simple no-argument operations: result = __builtin_darn_32 () */
13808 #undef RS6000_BUILTIN_0
13809 #undef RS6000_BUILTIN_1
13810 #undef RS6000_BUILTIN_2
13811 #undef RS6000_BUILTIN_3
13812 #undef RS6000_BUILTIN_A
13813 #undef RS6000_BUILTIN_D
13814 #undef RS6000_BUILTIN_H
13815 #undef RS6000_BUILTIN_P
13816 #undef RS6000_BUILTIN_Q
13817 #undef RS6000_BUILTIN_X
13819 #define RS6000_BUILTIN_0(ENUM, NAME, MASK, ATTR, ICODE) \
13820 { MASK, ICODE, NAME, ENUM },
13822 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
13823 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
13824 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
13825 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
13826 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
13827 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE)
13828 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
13829 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
13830 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
13832 static const struct builtin_description bdesc_0arg[] =
13834 #include "rs6000-builtin.def"
13837 /* HTM builtins. */
13838 #undef RS6000_BUILTIN_0
13839 #undef RS6000_BUILTIN_1
13840 #undef RS6000_BUILTIN_2
13841 #undef RS6000_BUILTIN_3
13842 #undef RS6000_BUILTIN_A
13843 #undef RS6000_BUILTIN_D
13844 #undef RS6000_BUILTIN_H
13845 #undef RS6000_BUILTIN_P
13846 #undef RS6000_BUILTIN_Q
13847 #undef RS6000_BUILTIN_X
13849 #define RS6000_BUILTIN_0(ENUM, NAME, MASK, ATTR, ICODE)
13850 #define RS6000_BUILTIN_1(ENUM, NAME, MASK, ATTR, ICODE)
13851 #define RS6000_BUILTIN_2(ENUM, NAME, MASK, ATTR, ICODE)
13852 #define RS6000_BUILTIN_3(ENUM, NAME, MASK, ATTR, ICODE)
13853 #define RS6000_BUILTIN_A(ENUM, NAME, MASK, ATTR, ICODE)
13854 #define RS6000_BUILTIN_D(ENUM, NAME, MASK, ATTR, ICODE)
13855 #define RS6000_BUILTIN_H(ENUM, NAME, MASK, ATTR, ICODE) \
13856 { MASK, ICODE, NAME, ENUM },
13858 #define RS6000_BUILTIN_P(ENUM, NAME, MASK, ATTR, ICODE)
13859 #define RS6000_BUILTIN_Q(ENUM, NAME, MASK, ATTR, ICODE)
13860 #define RS6000_BUILTIN_X(ENUM, NAME, MASK, ATTR, ICODE)
13862 static const struct builtin_description bdesc_htm[] =
13864 #include "rs6000-builtin.def"
13867 #undef RS6000_BUILTIN_0
13868 #undef RS6000_BUILTIN_1
13869 #undef RS6000_BUILTIN_2
13870 #undef RS6000_BUILTIN_3
13871 #undef RS6000_BUILTIN_A
13872 #undef RS6000_BUILTIN_D
13873 #undef RS6000_BUILTIN_H
13874 #undef RS6000_BUILTIN_P
13875 #undef RS6000_BUILTIN_Q
13877 /* Return true if a builtin function is overloaded. */
13878 bool
13879 rs6000_overloaded_builtin_p (enum rs6000_builtins fncode)
13881 return (rs6000_builtin_info[(int)fncode].attr & RS6000_BTC_OVERLOADED) != 0;
13884 const char *
13885 rs6000_overloaded_builtin_name (enum rs6000_builtins fncode)
13887 return rs6000_builtin_info[(int)fncode].name;
13890 /* Expand an expression EXP that calls a builtin without arguments. */
13891 static rtx
13892 rs6000_expand_zeroop_builtin (enum insn_code icode, rtx target)
13894 rtx pat;
13895 machine_mode tmode = insn_data[icode].operand[0].mode;
13897 if (icode == CODE_FOR_nothing)
13898 /* Builtin not supported on this processor. */
13899 return 0;
13901 if (target == 0
13902 || GET_MODE (target) != tmode
13903 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
13904 target = gen_reg_rtx (tmode);
13906 pat = GEN_FCN (icode) (target);
13907 if (! pat)
13908 return 0;
13909 emit_insn (pat);
13911 return target;
13915 static rtx
13916 rs6000_expand_mtfsf_builtin (enum insn_code icode, tree exp)
13918 rtx pat;
13919 tree arg0 = CALL_EXPR_ARG (exp, 0);
13920 tree arg1 = CALL_EXPR_ARG (exp, 1);
13921 rtx op0 = expand_normal (arg0);
13922 rtx op1 = expand_normal (arg1);
13923 machine_mode mode0 = insn_data[icode].operand[0].mode;
13924 machine_mode mode1 = insn_data[icode].operand[1].mode;
13926 if (icode == CODE_FOR_nothing)
13927 /* Builtin not supported on this processor. */
13928 return 0;
13930 /* If we got invalid arguments bail out before generating bad rtl. */
13931 if (arg0 == error_mark_node || arg1 == error_mark_node)
13932 return const0_rtx;
13934 if (GET_CODE (op0) != CONST_INT
13935 || INTVAL (op0) > 255
13936 || INTVAL (op0) < 0)
13938 error ("argument 1 must be an 8-bit field value");
13939 return const0_rtx;
13942 if (! (*insn_data[icode].operand[0].predicate) (op0, mode0))
13943 op0 = copy_to_mode_reg (mode0, op0);
13945 if (! (*insn_data[icode].operand[1].predicate) (op1, mode1))
13946 op1 = copy_to_mode_reg (mode1, op1);
13948 pat = GEN_FCN (icode) (op0, op1);
13949 if (! pat)
13950 return const0_rtx;
13951 emit_insn (pat);
13953 return NULL_RTX;
13956 static rtx
13957 rs6000_expand_unop_builtin (enum insn_code icode, tree exp, rtx target)
13959 rtx pat;
13960 tree arg0 = CALL_EXPR_ARG (exp, 0);
13961 rtx op0 = expand_normal (arg0);
13962 machine_mode tmode = insn_data[icode].operand[0].mode;
13963 machine_mode mode0 = insn_data[icode].operand[1].mode;
13965 if (icode == CODE_FOR_nothing)
13966 /* Builtin not supported on this processor. */
13967 return 0;
13969 /* If we got invalid arguments bail out before generating bad rtl. */
13970 if (arg0 == error_mark_node)
13971 return const0_rtx;
13973 if (icode == CODE_FOR_altivec_vspltisb
13974 || icode == CODE_FOR_altivec_vspltish
13975 || icode == CODE_FOR_altivec_vspltisw)
13977 /* Only allow 5-bit *signed* literals. */
13978 if (GET_CODE (op0) != CONST_INT
13979 || INTVAL (op0) > 15
13980 || INTVAL (op0) < -16)
13982 error ("argument 1 must be a 5-bit signed literal");
13983 return CONST0_RTX (tmode);
13987 if (target == 0
13988 || GET_MODE (target) != tmode
13989 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
13990 target = gen_reg_rtx (tmode);
13992 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
13993 op0 = copy_to_mode_reg (mode0, op0);
13995 pat = GEN_FCN (icode) (target, op0);
13996 if (! pat)
13997 return 0;
13998 emit_insn (pat);
14000 return target;
14003 static rtx
14004 altivec_expand_abs_builtin (enum insn_code icode, tree exp, rtx target)
14006 rtx pat, scratch1, scratch2;
14007 tree arg0 = CALL_EXPR_ARG (exp, 0);
14008 rtx op0 = expand_normal (arg0);
14009 machine_mode tmode = insn_data[icode].operand[0].mode;
14010 machine_mode mode0 = insn_data[icode].operand[1].mode;
14012 /* If we have invalid arguments, bail out before generating bad rtl. */
14013 if (arg0 == error_mark_node)
14014 return const0_rtx;
14016 if (target == 0
14017 || GET_MODE (target) != tmode
14018 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
14019 target = gen_reg_rtx (tmode);
14021 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
14022 op0 = copy_to_mode_reg (mode0, op0);
14024 scratch1 = gen_reg_rtx (mode0);
14025 scratch2 = gen_reg_rtx (mode0);
14027 pat = GEN_FCN (icode) (target, op0, scratch1, scratch2);
14028 if (! pat)
14029 return 0;
14030 emit_insn (pat);
14032 return target;
14035 static rtx
14036 rs6000_expand_binop_builtin (enum insn_code icode, tree exp, rtx target)
14038 rtx pat;
14039 tree arg0 = CALL_EXPR_ARG (exp, 0);
14040 tree arg1 = CALL_EXPR_ARG (exp, 1);
14041 rtx op0 = expand_normal (arg0);
14042 rtx op1 = expand_normal (arg1);
14043 machine_mode tmode = insn_data[icode].operand[0].mode;
14044 machine_mode mode0 = insn_data[icode].operand[1].mode;
14045 machine_mode mode1 = insn_data[icode].operand[2].mode;
14047 if (icode == CODE_FOR_nothing)
14048 /* Builtin not supported on this processor. */
14049 return 0;
14051 /* If we got invalid arguments bail out before generating bad rtl. */
14052 if (arg0 == error_mark_node || arg1 == error_mark_node)
14053 return const0_rtx;
14055 if (icode == CODE_FOR_altivec_vcfux
14056 || icode == CODE_FOR_altivec_vcfsx
14057 || icode == CODE_FOR_altivec_vctsxs
14058 || icode == CODE_FOR_altivec_vctuxs
14059 || icode == CODE_FOR_altivec_vspltb
14060 || icode == CODE_FOR_altivec_vsplth
14061 || icode == CODE_FOR_altivec_vspltw)
14063 /* Only allow 5-bit unsigned literals. */
14064 STRIP_NOPS (arg1);
14065 if (TREE_CODE (arg1) != INTEGER_CST
14066 || TREE_INT_CST_LOW (arg1) & ~0x1f)
14068 error ("argument 2 must be a 5-bit unsigned literal");
14069 return CONST0_RTX (tmode);
14072 else if (icode == CODE_FOR_dfptstsfi_eq_dd
14073 || icode == CODE_FOR_dfptstsfi_lt_dd
14074 || icode == CODE_FOR_dfptstsfi_gt_dd
14075 || icode == CODE_FOR_dfptstsfi_unordered_dd
14076 || icode == CODE_FOR_dfptstsfi_eq_td
14077 || icode == CODE_FOR_dfptstsfi_lt_td
14078 || icode == CODE_FOR_dfptstsfi_gt_td
14079 || icode == CODE_FOR_dfptstsfi_unordered_td)
14081 /* Only allow 6-bit unsigned literals. */
14082 STRIP_NOPS (arg0);
14083 if (TREE_CODE (arg0) != INTEGER_CST
14084 || !IN_RANGE (TREE_INT_CST_LOW (arg0), 0, 63))
14086 error ("argument 1 must be a 6-bit unsigned literal");
14087 return CONST0_RTX (tmode);
14090 else if (icode == CODE_FOR_xststdcqp
14091 || icode == CODE_FOR_xststdcdp
14092 || icode == CODE_FOR_xststdcsp
14093 || icode == CODE_FOR_xvtstdcdp
14094 || icode == CODE_FOR_xvtstdcsp)
14096 /* Only allow 7-bit unsigned literals. */
14097 STRIP_NOPS (arg1);
14098 if (TREE_CODE (arg1) != INTEGER_CST
14099 || !IN_RANGE (TREE_INT_CST_LOW (arg1), 0, 127))
14101 error ("argument 2 must be a 7-bit unsigned literal");
14102 return CONST0_RTX (tmode);
14105 else if (icode == CODE_FOR_unpackv1ti
14106 || icode == CODE_FOR_unpackkf
14107 || icode == CODE_FOR_unpacktf
14108 || icode == CODE_FOR_unpackif
14109 || icode == CODE_FOR_unpacktd)
14111 /* Only allow 1-bit unsigned literals. */
14112 STRIP_NOPS (arg1);
14113 if (TREE_CODE (arg1) != INTEGER_CST
14114 || !IN_RANGE (TREE_INT_CST_LOW (arg1), 0, 1))
14116 error ("argument 2 must be a 1-bit unsigned literal");
14117 return CONST0_RTX (tmode);
14121 if (target == 0
14122 || GET_MODE (target) != tmode
14123 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
14124 target = gen_reg_rtx (tmode);
14126 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
14127 op0 = copy_to_mode_reg (mode0, op0);
14128 if (! (*insn_data[icode].operand[2].predicate) (op1, mode1))
14129 op1 = copy_to_mode_reg (mode1, op1);
14131 pat = GEN_FCN (icode) (target, op0, op1);
14132 if (! pat)
14133 return 0;
14134 emit_insn (pat);
14136 return target;
14139 static rtx
14140 altivec_expand_predicate_builtin (enum insn_code icode, tree exp, rtx target)
14142 rtx pat, scratch;
14143 tree cr6_form = CALL_EXPR_ARG (exp, 0);
14144 tree arg0 = CALL_EXPR_ARG (exp, 1);
14145 tree arg1 = CALL_EXPR_ARG (exp, 2);
14146 rtx op0 = expand_normal (arg0);
14147 rtx op1 = expand_normal (arg1);
14148 machine_mode tmode = SImode;
14149 machine_mode mode0 = insn_data[icode].operand[1].mode;
14150 machine_mode mode1 = insn_data[icode].operand[2].mode;
14151 int cr6_form_int;
14153 if (TREE_CODE (cr6_form) != INTEGER_CST)
14155 error ("argument 1 of %qs must be a constant",
14156 "__builtin_altivec_predicate");
14157 return const0_rtx;
14159 else
14160 cr6_form_int = TREE_INT_CST_LOW (cr6_form);
14162 gcc_assert (mode0 == mode1);
14164 /* If we have invalid arguments, bail out before generating bad rtl. */
14165 if (arg0 == error_mark_node || arg1 == error_mark_node)
14166 return const0_rtx;
14168 if (target == 0
14169 || GET_MODE (target) != tmode
14170 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
14171 target = gen_reg_rtx (tmode);
14173 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
14174 op0 = copy_to_mode_reg (mode0, op0);
14175 if (! (*insn_data[icode].operand[2].predicate) (op1, mode1))
14176 op1 = copy_to_mode_reg (mode1, op1);
14178 /* Note that for many of the relevant operations (e.g. cmpne or
14179 cmpeq) with float or double operands, it makes more sense for the
14180 mode of the allocated scratch register to select a vector of
14181 integer. But the choice to copy the mode of operand 0 was made
14182 long ago and there are no plans to change it. */
14183 scratch = gen_reg_rtx (mode0);
14185 pat = GEN_FCN (icode) (scratch, op0, op1);
14186 if (! pat)
14187 return 0;
14188 emit_insn (pat);
14190 /* The vec_any* and vec_all* predicates use the same opcodes for two
14191 different operations, but the bits in CR6 will be different
14192 depending on what information we want. So we have to play tricks
14193 with CR6 to get the right bits out.
14195 If you think this is disgusting, look at the specs for the
14196 AltiVec predicates. */
14198 switch (cr6_form_int)
14200 case 0:
14201 emit_insn (gen_cr6_test_for_zero (target));
14202 break;
14203 case 1:
14204 emit_insn (gen_cr6_test_for_zero_reverse (target));
14205 break;
14206 case 2:
14207 emit_insn (gen_cr6_test_for_lt (target));
14208 break;
14209 case 3:
14210 emit_insn (gen_cr6_test_for_lt_reverse (target));
14211 break;
14212 default:
14213 error ("argument 1 of %qs is out of range",
14214 "__builtin_altivec_predicate");
14215 break;
14218 return target;
14221 static rtx
14222 paired_expand_lv_builtin (enum insn_code icode, tree exp, rtx target)
14224 rtx pat, addr;
14225 tree arg0 = CALL_EXPR_ARG (exp, 0);
14226 tree arg1 = CALL_EXPR_ARG (exp, 1);
14227 machine_mode tmode = insn_data[icode].operand[0].mode;
14228 machine_mode mode0 = Pmode;
14229 machine_mode mode1 = Pmode;
14230 rtx op0 = expand_normal (arg0);
14231 rtx op1 = expand_normal (arg1);
14233 if (icode == CODE_FOR_nothing)
14234 /* Builtin not supported on this processor. */
14235 return 0;
14237 /* If we got invalid arguments bail out before generating bad rtl. */
14238 if (arg0 == error_mark_node || arg1 == error_mark_node)
14239 return const0_rtx;
14241 if (target == 0
14242 || GET_MODE (target) != tmode
14243 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
14244 target = gen_reg_rtx (tmode);
14246 op1 = copy_to_mode_reg (mode1, op1);
14248 if (op0 == const0_rtx)
14250 addr = gen_rtx_MEM (tmode, op1);
14252 else
14254 op0 = copy_to_mode_reg (mode0, op0);
14255 addr = gen_rtx_MEM (tmode, gen_rtx_PLUS (Pmode, op0, op1));
14258 pat = GEN_FCN (icode) (target, addr);
14260 if (! pat)
14261 return 0;
14262 emit_insn (pat);
14264 return target;
14267 /* Return a constant vector for use as a little-endian permute control vector
14268 to reverse the order of elements of the given vector mode. */
14269 static rtx
14270 swap_selector_for_mode (machine_mode mode)
14272 /* These are little endian vectors, so their elements are reversed
14273 from what you would normally expect for a permute control vector. */
14274 unsigned int swap2[16] = {7,6,5,4,3,2,1,0,15,14,13,12,11,10,9,8};
14275 unsigned int swap4[16] = {3,2,1,0,7,6,5,4,11,10,9,8,15,14,13,12};
14276 unsigned int swap8[16] = {1,0,3,2,5,4,7,6,9,8,11,10,13,12,15,14};
14277 unsigned int swap16[16] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
14278 unsigned int *swaparray, i;
14279 rtx perm[16];
14281 switch (mode)
14283 case E_V2DFmode:
14284 case E_V2DImode:
14285 swaparray = swap2;
14286 break;
14287 case E_V4SFmode:
14288 case E_V4SImode:
14289 swaparray = swap4;
14290 break;
14291 case E_V8HImode:
14292 swaparray = swap8;
14293 break;
14294 case E_V16QImode:
14295 swaparray = swap16;
14296 break;
14297 default:
14298 gcc_unreachable ();
14301 for (i = 0; i < 16; ++i)
14302 perm[i] = GEN_INT (swaparray[i]);
14304 return force_reg (V16QImode, gen_rtx_CONST_VECTOR (V16QImode, gen_rtvec_v (16, perm)));
14307 /* Generate code for an "lvxl", or "lve*x" built-in for a little endian target
14308 with -maltivec=be specified. Issue the load followed by an element-
14309 reversing permute. */
14310 void
14311 altivec_expand_lvx_be (rtx op0, rtx op1, machine_mode mode, unsigned unspec)
14313 rtx tmp = gen_reg_rtx (mode);
14314 rtx load = gen_rtx_SET (tmp, op1);
14315 rtx lvx = gen_rtx_UNSPEC (mode, gen_rtvec (1, const0_rtx), unspec);
14316 rtx par = gen_rtx_PARALLEL (mode, gen_rtvec (2, load, lvx));
14317 rtx sel = swap_selector_for_mode (mode);
14318 rtx vperm = gen_rtx_UNSPEC (mode, gen_rtvec (3, tmp, tmp, sel), UNSPEC_VPERM);
14320 gcc_assert (REG_P (op0));
14321 emit_insn (par);
14322 emit_insn (gen_rtx_SET (op0, vperm));
14325 /* Generate code for a "stvxl" built-in for a little endian target with
14326 -maltivec=be specified. Issue the store preceded by an element-reversing
14327 permute. */
14328 void
14329 altivec_expand_stvx_be (rtx op0, rtx op1, machine_mode mode, unsigned unspec)
14331 rtx tmp = gen_reg_rtx (mode);
14332 rtx store = gen_rtx_SET (op0, tmp);
14333 rtx stvx = gen_rtx_UNSPEC (mode, gen_rtvec (1, const0_rtx), unspec);
14334 rtx par = gen_rtx_PARALLEL (mode, gen_rtvec (2, store, stvx));
14335 rtx sel = swap_selector_for_mode (mode);
14336 rtx vperm;
14338 gcc_assert (REG_P (op1));
14339 vperm = gen_rtx_UNSPEC (mode, gen_rtvec (3, op1, op1, sel), UNSPEC_VPERM);
14340 emit_insn (gen_rtx_SET (tmp, vperm));
14341 emit_insn (par);
14344 /* Generate code for a "stve*x" built-in for a little endian target with -maltivec=be
14345 specified. Issue the store preceded by an element-reversing permute. */
14346 void
14347 altivec_expand_stvex_be (rtx op0, rtx op1, machine_mode mode, unsigned unspec)
14349 machine_mode inner_mode = GET_MODE_INNER (mode);
14350 rtx tmp = gen_reg_rtx (mode);
14351 rtx stvx = gen_rtx_UNSPEC (inner_mode, gen_rtvec (1, tmp), unspec);
14352 rtx sel = swap_selector_for_mode (mode);
14353 rtx vperm;
14355 gcc_assert (REG_P (op1));
14356 vperm = gen_rtx_UNSPEC (mode, gen_rtvec (3, op1, op1, sel), UNSPEC_VPERM);
14357 emit_insn (gen_rtx_SET (tmp, vperm));
14358 emit_insn (gen_rtx_SET (op0, stvx));
14361 static rtx
14362 altivec_expand_lv_builtin (enum insn_code icode, tree exp, rtx target, bool blk)
14364 rtx pat, addr;
14365 tree arg0 = CALL_EXPR_ARG (exp, 0);
14366 tree arg1 = CALL_EXPR_ARG (exp, 1);
14367 machine_mode tmode = insn_data[icode].operand[0].mode;
14368 machine_mode mode0 = Pmode;
14369 machine_mode mode1 = Pmode;
14370 rtx op0 = expand_normal (arg0);
14371 rtx op1 = expand_normal (arg1);
14373 if (icode == CODE_FOR_nothing)
14374 /* Builtin not supported on this processor. */
14375 return 0;
14377 /* If we got invalid arguments bail out before generating bad rtl. */
14378 if (arg0 == error_mark_node || arg1 == error_mark_node)
14379 return const0_rtx;
14381 if (target == 0
14382 || GET_MODE (target) != tmode
14383 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
14384 target = gen_reg_rtx (tmode);
14386 op1 = copy_to_mode_reg (mode1, op1);
14388 /* For LVX, express the RTL accurately by ANDing the address with -16.
14389 LVXL and LVE*X expand to use UNSPECs to hide their special behavior,
14390 so the raw address is fine. */
14391 if (icode == CODE_FOR_altivec_lvx_v2df_2op
14392 || icode == CODE_FOR_altivec_lvx_v2di_2op
14393 || icode == CODE_FOR_altivec_lvx_v4sf_2op
14394 || icode == CODE_FOR_altivec_lvx_v4si_2op
14395 || icode == CODE_FOR_altivec_lvx_v8hi_2op
14396 || icode == CODE_FOR_altivec_lvx_v16qi_2op)
14398 rtx rawaddr;
14399 if (op0 == const0_rtx)
14400 rawaddr = op1;
14401 else
14403 op0 = copy_to_mode_reg (mode0, op0);
14404 rawaddr = gen_rtx_PLUS (Pmode, op1, op0);
14406 addr = gen_rtx_AND (Pmode, rawaddr, gen_rtx_CONST_INT (Pmode, -16));
14407 addr = gen_rtx_MEM (blk ? BLKmode : tmode, addr);
14409 /* For -maltivec=be, emit the load and follow it up with a
14410 permute to swap the elements. */
14411 if (!BYTES_BIG_ENDIAN && VECTOR_ELT_ORDER_BIG)
14413 rtx temp = gen_reg_rtx (tmode);
14414 emit_insn (gen_rtx_SET (temp, addr));
14416 rtx sel = swap_selector_for_mode (tmode);
14417 rtx vperm = gen_rtx_UNSPEC (tmode, gen_rtvec (3, temp, temp, sel),
14418 UNSPEC_VPERM);
14419 emit_insn (gen_rtx_SET (target, vperm));
14421 else
14422 emit_insn (gen_rtx_SET (target, addr));
14424 else
14426 if (op0 == const0_rtx)
14427 addr = gen_rtx_MEM (blk ? BLKmode : tmode, op1);
14428 else
14430 op0 = copy_to_mode_reg (mode0, op0);
14431 addr = gen_rtx_MEM (blk ? BLKmode : tmode,
14432 gen_rtx_PLUS (Pmode, op1, op0));
14435 pat = GEN_FCN (icode) (target, addr);
14436 if (! pat)
14437 return 0;
14438 emit_insn (pat);
14441 return target;
14444 static rtx
14445 altivec_expand_xl_be_builtin (enum insn_code icode, tree exp, rtx target, bool blk)
14447 rtx pat, addr;
14448 tree arg0 = CALL_EXPR_ARG (exp, 0);
14449 tree arg1 = CALL_EXPR_ARG (exp, 1);
14450 machine_mode tmode = insn_data[icode].operand[0].mode;
14451 machine_mode mode0 = Pmode;
14452 machine_mode mode1 = Pmode;
14453 rtx op0 = expand_normal (arg0);
14454 rtx op1 = expand_normal (arg1);
14456 if (icode == CODE_FOR_nothing)
14457 /* Builtin not supported on this processor. */
14458 return 0;
14460 /* If we got invalid arguments bail out before generating bad rtl. */
14461 if (arg0 == error_mark_node || arg1 == error_mark_node)
14462 return const0_rtx;
14464 if (target == 0
14465 || GET_MODE (target) != tmode
14466 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
14467 target = gen_reg_rtx (tmode);
14469 op1 = copy_to_mode_reg (mode1, op1);
14471 if (op0 == const0_rtx)
14472 addr = gen_rtx_MEM (blk ? BLKmode : tmode, op1);
14473 else
14475 op0 = copy_to_mode_reg (mode0, op0);
14476 addr = gen_rtx_MEM (blk ? BLKmode : tmode,
14477 gen_rtx_PLUS (Pmode, op1, op0));
14480 pat = GEN_FCN (icode) (target, addr);
14481 if (!pat)
14482 return 0;
14484 emit_insn (pat);
14485 /* Reverse element order of elements if in LE mode */
14486 if (!VECTOR_ELT_ORDER_BIG)
14488 rtx sel = swap_selector_for_mode (tmode);
14489 rtx vperm = gen_rtx_UNSPEC (tmode, gen_rtvec (3, target, target, sel),
14490 UNSPEC_VPERM);
14491 emit_insn (gen_rtx_SET (target, vperm));
14493 return target;
14496 static rtx
14497 paired_expand_stv_builtin (enum insn_code icode, tree exp)
14499 tree arg0 = CALL_EXPR_ARG (exp, 0);
14500 tree arg1 = CALL_EXPR_ARG (exp, 1);
14501 tree arg2 = CALL_EXPR_ARG (exp, 2);
14502 rtx op0 = expand_normal (arg0);
14503 rtx op1 = expand_normal (arg1);
14504 rtx op2 = expand_normal (arg2);
14505 rtx pat, addr;
14506 machine_mode tmode = insn_data[icode].operand[0].mode;
14507 machine_mode mode1 = Pmode;
14508 machine_mode mode2 = Pmode;
14510 /* Invalid arguments. Bail before doing anything stoopid! */
14511 if (arg0 == error_mark_node
14512 || arg1 == error_mark_node
14513 || arg2 == error_mark_node)
14514 return const0_rtx;
14516 if (! (*insn_data[icode].operand[1].predicate) (op0, tmode))
14517 op0 = copy_to_mode_reg (tmode, op0);
14519 op2 = copy_to_mode_reg (mode2, op2);
14521 if (op1 == const0_rtx)
14523 addr = gen_rtx_MEM (tmode, op2);
14525 else
14527 op1 = copy_to_mode_reg (mode1, op1);
14528 addr = gen_rtx_MEM (tmode, gen_rtx_PLUS (Pmode, op1, op2));
14531 pat = GEN_FCN (icode) (addr, op0);
14532 if (pat)
14533 emit_insn (pat);
14534 return NULL_RTX;
14537 static rtx
14538 altivec_expand_stxvl_builtin (enum insn_code icode, tree exp)
14540 rtx pat;
14541 tree arg0 = CALL_EXPR_ARG (exp, 0);
14542 tree arg1 = CALL_EXPR_ARG (exp, 1);
14543 tree arg2 = CALL_EXPR_ARG (exp, 2);
14544 rtx op0 = expand_normal (arg0);
14545 rtx op1 = expand_normal (arg1);
14546 rtx op2 = expand_normal (arg2);
14547 machine_mode mode0 = insn_data[icode].operand[0].mode;
14548 machine_mode mode1 = insn_data[icode].operand[1].mode;
14549 machine_mode mode2 = insn_data[icode].operand[2].mode;
14551 if (icode == CODE_FOR_nothing)
14552 /* Builtin not supported on this processor. */
14553 return NULL_RTX;
14555 /* If we got invalid arguments bail out before generating bad rtl. */
14556 if (arg0 == error_mark_node
14557 || arg1 == error_mark_node
14558 || arg2 == error_mark_node)
14559 return NULL_RTX;
14561 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
14562 op0 = copy_to_mode_reg (mode0, op0);
14563 if (! (*insn_data[icode].operand[2].predicate) (op1, mode1))
14564 op1 = copy_to_mode_reg (mode1, op1);
14565 if (! (*insn_data[icode].operand[3].predicate) (op2, mode2))
14566 op2 = copy_to_mode_reg (mode2, op2);
14568 pat = GEN_FCN (icode) (op0, op1, op2);
14569 if (pat)
14570 emit_insn (pat);
14572 return NULL_RTX;
14575 static rtx
14576 altivec_expand_stv_builtin (enum insn_code icode, tree exp)
14578 tree arg0 = CALL_EXPR_ARG (exp, 0);
14579 tree arg1 = CALL_EXPR_ARG (exp, 1);
14580 tree arg2 = CALL_EXPR_ARG (exp, 2);
14581 rtx op0 = expand_normal (arg0);
14582 rtx op1 = expand_normal (arg1);
14583 rtx op2 = expand_normal (arg2);
14584 rtx pat, addr, rawaddr;
14585 machine_mode tmode = insn_data[icode].operand[0].mode;
14586 machine_mode smode = insn_data[icode].operand[1].mode;
14587 machine_mode mode1 = Pmode;
14588 machine_mode mode2 = Pmode;
14590 /* Invalid arguments. Bail before doing anything stoopid! */
14591 if (arg0 == error_mark_node
14592 || arg1 == error_mark_node
14593 || arg2 == error_mark_node)
14594 return const0_rtx;
14596 op2 = copy_to_mode_reg (mode2, op2);
14598 /* For STVX, express the RTL accurately by ANDing the address with -16.
14599 STVXL and STVE*X expand to use UNSPECs to hide their special behavior,
14600 so the raw address is fine. */
14601 if (icode == CODE_FOR_altivec_stvx_v2df_2op
14602 || icode == CODE_FOR_altivec_stvx_v2di_2op
14603 || icode == CODE_FOR_altivec_stvx_v4sf_2op
14604 || icode == CODE_FOR_altivec_stvx_v4si_2op
14605 || icode == CODE_FOR_altivec_stvx_v8hi_2op
14606 || icode == CODE_FOR_altivec_stvx_v16qi_2op)
14608 if (op1 == const0_rtx)
14609 rawaddr = op2;
14610 else
14612 op1 = copy_to_mode_reg (mode1, op1);
14613 rawaddr = gen_rtx_PLUS (Pmode, op2, op1);
14616 addr = gen_rtx_AND (Pmode, rawaddr, gen_rtx_CONST_INT (Pmode, -16));
14617 addr = gen_rtx_MEM (tmode, addr);
14619 op0 = copy_to_mode_reg (tmode, op0);
14621 /* For -maltivec=be, emit a permute to swap the elements, followed
14622 by the store. */
14623 if (!BYTES_BIG_ENDIAN && VECTOR_ELT_ORDER_BIG)
14625 rtx temp = gen_reg_rtx (tmode);
14626 rtx sel = swap_selector_for_mode (tmode);
14627 rtx vperm = gen_rtx_UNSPEC (tmode, gen_rtvec (3, op0, op0, sel),
14628 UNSPEC_VPERM);
14629 emit_insn (gen_rtx_SET (temp, vperm));
14630 emit_insn (gen_rtx_SET (addr, temp));
14632 else
14633 emit_insn (gen_rtx_SET (addr, op0));
14635 else
14637 if (! (*insn_data[icode].operand[1].predicate) (op0, smode))
14638 op0 = copy_to_mode_reg (smode, op0);
14640 if (op1 == const0_rtx)
14641 addr = gen_rtx_MEM (tmode, op2);
14642 else
14644 op1 = copy_to_mode_reg (mode1, op1);
14645 addr = gen_rtx_MEM (tmode, gen_rtx_PLUS (Pmode, op2, op1));
14648 pat = GEN_FCN (icode) (addr, op0);
14649 if (pat)
14650 emit_insn (pat);
14653 return NULL_RTX;
14656 /* Return the appropriate SPR number associated with the given builtin. */
14657 static inline HOST_WIDE_INT
14658 htm_spr_num (enum rs6000_builtins code)
14660 if (code == HTM_BUILTIN_GET_TFHAR
14661 || code == HTM_BUILTIN_SET_TFHAR)
14662 return TFHAR_SPR;
14663 else if (code == HTM_BUILTIN_GET_TFIAR
14664 || code == HTM_BUILTIN_SET_TFIAR)
14665 return TFIAR_SPR;
14666 else if (code == HTM_BUILTIN_GET_TEXASR
14667 || code == HTM_BUILTIN_SET_TEXASR)
14668 return TEXASR_SPR;
14669 gcc_assert (code == HTM_BUILTIN_GET_TEXASRU
14670 || code == HTM_BUILTIN_SET_TEXASRU);
14671 return TEXASRU_SPR;
14674 /* Return the appropriate SPR regno associated with the given builtin. */
14675 static inline HOST_WIDE_INT
14676 htm_spr_regno (enum rs6000_builtins code)
14678 if (code == HTM_BUILTIN_GET_TFHAR
14679 || code == HTM_BUILTIN_SET_TFHAR)
14680 return TFHAR_REGNO;
14681 else if (code == HTM_BUILTIN_GET_TFIAR
14682 || code == HTM_BUILTIN_SET_TFIAR)
14683 return TFIAR_REGNO;
14684 gcc_assert (code == HTM_BUILTIN_GET_TEXASR
14685 || code == HTM_BUILTIN_SET_TEXASR
14686 || code == HTM_BUILTIN_GET_TEXASRU
14687 || code == HTM_BUILTIN_SET_TEXASRU);
14688 return TEXASR_REGNO;
14691 /* Return the correct ICODE value depending on whether we are
14692 setting or reading the HTM SPRs. */
14693 static inline enum insn_code
14694 rs6000_htm_spr_icode (bool nonvoid)
14696 if (nonvoid)
14697 return (TARGET_POWERPC64) ? CODE_FOR_htm_mfspr_di : CODE_FOR_htm_mfspr_si;
14698 else
14699 return (TARGET_POWERPC64) ? CODE_FOR_htm_mtspr_di : CODE_FOR_htm_mtspr_si;
14702 /* Expand the HTM builtin in EXP and store the result in TARGET.
14703 Store true in *EXPANDEDP if we found a builtin to expand. */
14704 static rtx
14705 htm_expand_builtin (tree exp, rtx target, bool * expandedp)
14707 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
14708 bool nonvoid = TREE_TYPE (TREE_TYPE (fndecl)) != void_type_node;
14709 enum rs6000_builtins fcode = (enum rs6000_builtins) DECL_FUNCTION_CODE (fndecl);
14710 const struct builtin_description *d;
14711 size_t i;
14713 *expandedp = true;
14715 if (!TARGET_POWERPC64
14716 && (fcode == HTM_BUILTIN_TABORTDC
14717 || fcode == HTM_BUILTIN_TABORTDCI))
14719 size_t uns_fcode = (size_t)fcode;
14720 const char *name = rs6000_builtin_info[uns_fcode].name;
14721 error ("builtin %qs is only valid in 64-bit mode", name);
14722 return const0_rtx;
14725 /* Expand the HTM builtins. */
14726 d = bdesc_htm;
14727 for (i = 0; i < ARRAY_SIZE (bdesc_htm); i++, d++)
14728 if (d->code == fcode)
14730 rtx op[MAX_HTM_OPERANDS], pat;
14731 int nopnds = 0;
14732 tree arg;
14733 call_expr_arg_iterator iter;
14734 unsigned attr = rs6000_builtin_info[fcode].attr;
14735 enum insn_code icode = d->icode;
14736 const struct insn_operand_data *insn_op;
14737 bool uses_spr = (attr & RS6000_BTC_SPR);
14738 rtx cr = NULL_RTX;
14740 if (uses_spr)
14741 icode = rs6000_htm_spr_icode (nonvoid);
14742 insn_op = &insn_data[icode].operand[0];
14744 if (nonvoid)
14746 machine_mode tmode = (uses_spr) ? insn_op->mode : E_SImode;
14747 if (!target
14748 || GET_MODE (target) != tmode
14749 || (uses_spr && !(*insn_op->predicate) (target, tmode)))
14750 target = gen_reg_rtx (tmode);
14751 if (uses_spr)
14752 op[nopnds++] = target;
14755 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
14757 if (arg == error_mark_node || nopnds >= MAX_HTM_OPERANDS)
14758 return const0_rtx;
14760 insn_op = &insn_data[icode].operand[nopnds];
14762 op[nopnds] = expand_normal (arg);
14764 if (!(*insn_op->predicate) (op[nopnds], insn_op->mode))
14766 if (!strcmp (insn_op->constraint, "n"))
14768 int arg_num = (nonvoid) ? nopnds : nopnds + 1;
14769 if (!CONST_INT_P (op[nopnds]))
14770 error ("argument %d must be an unsigned literal", arg_num);
14771 else
14772 error ("argument %d is an unsigned literal that is "
14773 "out of range", arg_num);
14774 return const0_rtx;
14776 op[nopnds] = copy_to_mode_reg (insn_op->mode, op[nopnds]);
14779 nopnds++;
14782 /* Handle the builtins for extended mnemonics. These accept
14783 no arguments, but map to builtins that take arguments. */
14784 switch (fcode)
14786 case HTM_BUILTIN_TENDALL: /* Alias for: tend. 1 */
14787 case HTM_BUILTIN_TRESUME: /* Alias for: tsr. 1 */
14788 op[nopnds++] = GEN_INT (1);
14789 if (flag_checking)
14790 attr |= RS6000_BTC_UNARY;
14791 break;
14792 case HTM_BUILTIN_TSUSPEND: /* Alias for: tsr. 0 */
14793 op[nopnds++] = GEN_INT (0);
14794 if (flag_checking)
14795 attr |= RS6000_BTC_UNARY;
14796 break;
14797 default:
14798 break;
14801 /* If this builtin accesses SPRs, then pass in the appropriate
14802 SPR number and SPR regno as the last two operands. */
14803 if (uses_spr)
14805 machine_mode mode = (TARGET_POWERPC64) ? DImode : SImode;
14806 op[nopnds++] = gen_rtx_CONST_INT (mode, htm_spr_num (fcode));
14807 op[nopnds++] = gen_rtx_REG (mode, htm_spr_regno (fcode));
14809 /* If this builtin accesses a CR, then pass in a scratch
14810 CR as the last operand. */
14811 else if (attr & RS6000_BTC_CR)
14812 { cr = gen_reg_rtx (CCmode);
14813 op[nopnds++] = cr;
14816 if (flag_checking)
14818 int expected_nopnds = 0;
14819 if ((attr & RS6000_BTC_TYPE_MASK) == RS6000_BTC_UNARY)
14820 expected_nopnds = 1;
14821 else if ((attr & RS6000_BTC_TYPE_MASK) == RS6000_BTC_BINARY)
14822 expected_nopnds = 2;
14823 else if ((attr & RS6000_BTC_TYPE_MASK) == RS6000_BTC_TERNARY)
14824 expected_nopnds = 3;
14825 if (!(attr & RS6000_BTC_VOID))
14826 expected_nopnds += 1;
14827 if (uses_spr)
14828 expected_nopnds += 2;
14830 gcc_assert (nopnds == expected_nopnds
14831 && nopnds <= MAX_HTM_OPERANDS);
14834 switch (nopnds)
14836 case 1:
14837 pat = GEN_FCN (icode) (op[0]);
14838 break;
14839 case 2:
14840 pat = GEN_FCN (icode) (op[0], op[1]);
14841 break;
14842 case 3:
14843 pat = GEN_FCN (icode) (op[0], op[1], op[2]);
14844 break;
14845 case 4:
14846 pat = GEN_FCN (icode) (op[0], op[1], op[2], op[3]);
14847 break;
14848 default:
14849 gcc_unreachable ();
14851 if (!pat)
14852 return NULL_RTX;
14853 emit_insn (pat);
14855 if (attr & RS6000_BTC_CR)
14857 if (fcode == HTM_BUILTIN_TBEGIN)
14859 /* Emit code to set TARGET to true or false depending on
14860 whether the tbegin. instruction successfully or failed
14861 to start a transaction. We do this by placing the 1's
14862 complement of CR's EQ bit into TARGET. */
14863 rtx scratch = gen_reg_rtx (SImode);
14864 emit_insn (gen_rtx_SET (scratch,
14865 gen_rtx_EQ (SImode, cr,
14866 const0_rtx)));
14867 emit_insn (gen_rtx_SET (target,
14868 gen_rtx_XOR (SImode, scratch,
14869 GEN_INT (1))));
14871 else
14873 /* Emit code to copy the 4-bit condition register field
14874 CR into the least significant end of register TARGET. */
14875 rtx scratch1 = gen_reg_rtx (SImode);
14876 rtx scratch2 = gen_reg_rtx (SImode);
14877 rtx subreg = simplify_gen_subreg (CCmode, scratch1, SImode, 0);
14878 emit_insn (gen_movcc (subreg, cr));
14879 emit_insn (gen_lshrsi3 (scratch2, scratch1, GEN_INT (28)));
14880 emit_insn (gen_andsi3 (target, scratch2, GEN_INT (0xf)));
14884 if (nonvoid)
14885 return target;
14886 return const0_rtx;
14889 *expandedp = false;
14890 return NULL_RTX;
14893 /* Expand the CPU builtin in FCODE and store the result in TARGET. */
14895 static rtx
14896 cpu_expand_builtin (enum rs6000_builtins fcode, tree exp ATTRIBUTE_UNUSED,
14897 rtx target)
14899 /* __builtin_cpu_init () is a nop, so expand to nothing. */
14900 if (fcode == RS6000_BUILTIN_CPU_INIT)
14901 return const0_rtx;
14903 if (target == 0 || GET_MODE (target) != SImode)
14904 target = gen_reg_rtx (SImode);
14906 #ifdef TARGET_LIBC_PROVIDES_HWCAP_IN_TCB
14907 tree arg = TREE_OPERAND (CALL_EXPR_ARG (exp, 0), 0);
14908 /* Target clones creates an ARRAY_REF instead of STRING_CST, convert it back
14909 to a STRING_CST. */
14910 if (TREE_CODE (arg) == ARRAY_REF
14911 && TREE_CODE (TREE_OPERAND (arg, 0)) == STRING_CST
14912 && TREE_CODE (TREE_OPERAND (arg, 1)) == INTEGER_CST
14913 && compare_tree_int (TREE_OPERAND (arg, 1), 0) == 0)
14914 arg = TREE_OPERAND (arg, 0);
14916 if (TREE_CODE (arg) != STRING_CST)
14918 error ("builtin %qs only accepts a string argument",
14919 rs6000_builtin_info[(size_t) fcode].name);
14920 return const0_rtx;
14923 if (fcode == RS6000_BUILTIN_CPU_IS)
14925 const char *cpu = TREE_STRING_POINTER (arg);
14926 rtx cpuid = NULL_RTX;
14927 for (size_t i = 0; i < ARRAY_SIZE (cpu_is_info); i++)
14928 if (strcmp (cpu, cpu_is_info[i].cpu) == 0)
14930 /* The CPUID value in the TCB is offset by _DL_FIRST_PLATFORM. */
14931 cpuid = GEN_INT (cpu_is_info[i].cpuid + _DL_FIRST_PLATFORM);
14932 break;
14934 if (cpuid == NULL_RTX)
14936 /* Invalid CPU argument. */
14937 error ("cpu %qs is an invalid argument to builtin %qs",
14938 cpu, rs6000_builtin_info[(size_t) fcode].name);
14939 return const0_rtx;
14942 rtx platform = gen_reg_rtx (SImode);
14943 rtx tcbmem = gen_const_mem (SImode,
14944 gen_rtx_PLUS (Pmode,
14945 gen_rtx_REG (Pmode, TLS_REGNUM),
14946 GEN_INT (TCB_PLATFORM_OFFSET)));
14947 emit_move_insn (platform, tcbmem);
14948 emit_insn (gen_eqsi3 (target, platform, cpuid));
14950 else if (fcode == RS6000_BUILTIN_CPU_SUPPORTS)
14952 const char *hwcap = TREE_STRING_POINTER (arg);
14953 rtx mask = NULL_RTX;
14954 int hwcap_offset;
14955 for (size_t i = 0; i < ARRAY_SIZE (cpu_supports_info); i++)
14956 if (strcmp (hwcap, cpu_supports_info[i].hwcap) == 0)
14958 mask = GEN_INT (cpu_supports_info[i].mask);
14959 hwcap_offset = TCB_HWCAP_OFFSET (cpu_supports_info[i].id);
14960 break;
14962 if (mask == NULL_RTX)
14964 /* Invalid HWCAP argument. */
14965 error ("%s %qs is an invalid argument to builtin %qs",
14966 "hwcap", hwcap, rs6000_builtin_info[(size_t) fcode].name);
14967 return const0_rtx;
14970 rtx tcb_hwcap = gen_reg_rtx (SImode);
14971 rtx tcbmem = gen_const_mem (SImode,
14972 gen_rtx_PLUS (Pmode,
14973 gen_rtx_REG (Pmode, TLS_REGNUM),
14974 GEN_INT (hwcap_offset)));
14975 emit_move_insn (tcb_hwcap, tcbmem);
14976 rtx scratch1 = gen_reg_rtx (SImode);
14977 emit_insn (gen_rtx_SET (scratch1, gen_rtx_AND (SImode, tcb_hwcap, mask)));
14978 rtx scratch2 = gen_reg_rtx (SImode);
14979 emit_insn (gen_eqsi3 (scratch2, scratch1, const0_rtx));
14980 emit_insn (gen_rtx_SET (target, gen_rtx_XOR (SImode, scratch2, const1_rtx)));
14982 else
14983 gcc_unreachable ();
14985 /* Record that we have expanded a CPU builtin, so that we can later
14986 emit a reference to the special symbol exported by LIBC to ensure we
14987 do not link against an old LIBC that doesn't support this feature. */
14988 cpu_builtin_p = true;
14990 #else
14991 warning (0, "builtin %qs needs GLIBC (2.23 and newer) that exports hardware "
14992 "capability bits", rs6000_builtin_info[(size_t) fcode].name);
14994 /* For old LIBCs, always return FALSE. */
14995 emit_move_insn (target, GEN_INT (0));
14996 #endif /* TARGET_LIBC_PROVIDES_HWCAP_IN_TCB */
14998 return target;
15001 static rtx
15002 rs6000_expand_ternop_builtin (enum insn_code icode, tree exp, rtx target)
15004 rtx pat;
15005 tree arg0 = CALL_EXPR_ARG (exp, 0);
15006 tree arg1 = CALL_EXPR_ARG (exp, 1);
15007 tree arg2 = CALL_EXPR_ARG (exp, 2);
15008 rtx op0 = expand_normal (arg0);
15009 rtx op1 = expand_normal (arg1);
15010 rtx op2 = expand_normal (arg2);
15011 machine_mode tmode = insn_data[icode].operand[0].mode;
15012 machine_mode mode0 = insn_data[icode].operand[1].mode;
15013 machine_mode mode1 = insn_data[icode].operand[2].mode;
15014 machine_mode mode2 = insn_data[icode].operand[3].mode;
15016 if (icode == CODE_FOR_nothing)
15017 /* Builtin not supported on this processor. */
15018 return 0;
15020 /* If we got invalid arguments bail out before generating bad rtl. */
15021 if (arg0 == error_mark_node
15022 || arg1 == error_mark_node
15023 || arg2 == error_mark_node)
15024 return const0_rtx;
15026 /* Check and prepare argument depending on the instruction code.
15028 Note that a switch statement instead of the sequence of tests
15029 would be incorrect as many of the CODE_FOR values could be
15030 CODE_FOR_nothing and that would yield multiple alternatives
15031 with identical values. We'd never reach here at runtime in
15032 this case. */
15033 if (icode == CODE_FOR_altivec_vsldoi_v4sf
15034 || icode == CODE_FOR_altivec_vsldoi_v2df
15035 || icode == CODE_FOR_altivec_vsldoi_v4si
15036 || icode == CODE_FOR_altivec_vsldoi_v8hi
15037 || icode == CODE_FOR_altivec_vsldoi_v16qi)
15039 /* Only allow 4-bit unsigned literals. */
15040 STRIP_NOPS (arg2);
15041 if (TREE_CODE (arg2) != INTEGER_CST
15042 || TREE_INT_CST_LOW (arg2) & ~0xf)
15044 error ("argument 3 must be a 4-bit unsigned literal");
15045 return CONST0_RTX (tmode);
15048 else if (icode == CODE_FOR_vsx_xxpermdi_v2df
15049 || icode == CODE_FOR_vsx_xxpermdi_v2di
15050 || icode == CODE_FOR_vsx_xxpermdi_v2df_be
15051 || icode == CODE_FOR_vsx_xxpermdi_v2di_be
15052 || icode == CODE_FOR_vsx_xxpermdi_v1ti
15053 || icode == CODE_FOR_vsx_xxpermdi_v4sf
15054 || icode == CODE_FOR_vsx_xxpermdi_v4si
15055 || icode == CODE_FOR_vsx_xxpermdi_v8hi
15056 || icode == CODE_FOR_vsx_xxpermdi_v16qi
15057 || icode == CODE_FOR_vsx_xxsldwi_v16qi
15058 || icode == CODE_FOR_vsx_xxsldwi_v8hi
15059 || icode == CODE_FOR_vsx_xxsldwi_v4si
15060 || icode == CODE_FOR_vsx_xxsldwi_v4sf
15061 || icode == CODE_FOR_vsx_xxsldwi_v2di
15062 || icode == CODE_FOR_vsx_xxsldwi_v2df)
15064 /* Only allow 2-bit unsigned literals. */
15065 STRIP_NOPS (arg2);
15066 if (TREE_CODE (arg2) != INTEGER_CST
15067 || TREE_INT_CST_LOW (arg2) & ~0x3)
15069 error ("argument 3 must be a 2-bit unsigned literal");
15070 return CONST0_RTX (tmode);
15073 else if (icode == CODE_FOR_vsx_set_v2df
15074 || icode == CODE_FOR_vsx_set_v2di
15075 || icode == CODE_FOR_bcdadd
15076 || icode == CODE_FOR_bcdadd_lt
15077 || icode == CODE_FOR_bcdadd_eq
15078 || icode == CODE_FOR_bcdadd_gt
15079 || icode == CODE_FOR_bcdsub
15080 || icode == CODE_FOR_bcdsub_lt
15081 || icode == CODE_FOR_bcdsub_eq
15082 || icode == CODE_FOR_bcdsub_gt)
15084 /* Only allow 1-bit unsigned literals. */
15085 STRIP_NOPS (arg2);
15086 if (TREE_CODE (arg2) != INTEGER_CST
15087 || TREE_INT_CST_LOW (arg2) & ~0x1)
15089 error ("argument 3 must be a 1-bit unsigned literal");
15090 return CONST0_RTX (tmode);
15093 else if (icode == CODE_FOR_dfp_ddedpd_dd
15094 || icode == CODE_FOR_dfp_ddedpd_td)
15096 /* Only allow 2-bit unsigned literals where the value is 0 or 2. */
15097 STRIP_NOPS (arg0);
15098 if (TREE_CODE (arg0) != INTEGER_CST
15099 || TREE_INT_CST_LOW (arg2) & ~0x3)
15101 error ("argument 1 must be 0 or 2");
15102 return CONST0_RTX (tmode);
15105 else if (icode == CODE_FOR_dfp_denbcd_dd
15106 || icode == CODE_FOR_dfp_denbcd_td)
15108 /* Only allow 1-bit unsigned literals. */
15109 STRIP_NOPS (arg0);
15110 if (TREE_CODE (arg0) != INTEGER_CST
15111 || TREE_INT_CST_LOW (arg0) & ~0x1)
15113 error ("argument 1 must be a 1-bit unsigned literal");
15114 return CONST0_RTX (tmode);
15117 else if (icode == CODE_FOR_dfp_dscli_dd
15118 || icode == CODE_FOR_dfp_dscli_td
15119 || icode == CODE_FOR_dfp_dscri_dd
15120 || icode == CODE_FOR_dfp_dscri_td)
15122 /* Only allow 6-bit unsigned literals. */
15123 STRIP_NOPS (arg1);
15124 if (TREE_CODE (arg1) != INTEGER_CST
15125 || TREE_INT_CST_LOW (arg1) & ~0x3f)
15127 error ("argument 2 must be a 6-bit unsigned literal");
15128 return CONST0_RTX (tmode);
15131 else if (icode == CODE_FOR_crypto_vshasigmaw
15132 || icode == CODE_FOR_crypto_vshasigmad)
15134 /* Check whether the 2nd and 3rd arguments are integer constants and in
15135 range and prepare arguments. */
15136 STRIP_NOPS (arg1);
15137 if (TREE_CODE (arg1) != INTEGER_CST || wi::geu_p (wi::to_wide (arg1), 2))
15139 error ("argument 2 must be 0 or 1");
15140 return CONST0_RTX (tmode);
15143 STRIP_NOPS (arg2);
15144 if (TREE_CODE (arg2) != INTEGER_CST
15145 || wi::geu_p (wi::to_wide (arg2), 16))
15147 error ("argument 3 must be in the range 0..15");
15148 return CONST0_RTX (tmode);
15152 if (target == 0
15153 || GET_MODE (target) != tmode
15154 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
15155 target = gen_reg_rtx (tmode);
15157 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
15158 op0 = copy_to_mode_reg (mode0, op0);
15159 if (! (*insn_data[icode].operand[2].predicate) (op1, mode1))
15160 op1 = copy_to_mode_reg (mode1, op1);
15161 if (! (*insn_data[icode].operand[3].predicate) (op2, mode2))
15162 op2 = copy_to_mode_reg (mode2, op2);
15164 if (TARGET_PAIRED_FLOAT && icode == CODE_FOR_selv2sf4)
15165 pat = GEN_FCN (icode) (target, op0, op1, op2, CONST0_RTX (SFmode));
15166 else
15167 pat = GEN_FCN (icode) (target, op0, op1, op2);
15168 if (! pat)
15169 return 0;
15170 emit_insn (pat);
15172 return target;
15175 /* Expand the lvx builtins. */
15176 static rtx
15177 altivec_expand_ld_builtin (tree exp, rtx target, bool *expandedp)
15179 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
15180 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
15181 tree arg0;
15182 machine_mode tmode, mode0;
15183 rtx pat, op0;
15184 enum insn_code icode;
15186 switch (fcode)
15188 case ALTIVEC_BUILTIN_LD_INTERNAL_16qi:
15189 icode = CODE_FOR_vector_altivec_load_v16qi;
15190 break;
15191 case ALTIVEC_BUILTIN_LD_INTERNAL_8hi:
15192 icode = CODE_FOR_vector_altivec_load_v8hi;
15193 break;
15194 case ALTIVEC_BUILTIN_LD_INTERNAL_4si:
15195 icode = CODE_FOR_vector_altivec_load_v4si;
15196 break;
15197 case ALTIVEC_BUILTIN_LD_INTERNAL_4sf:
15198 icode = CODE_FOR_vector_altivec_load_v4sf;
15199 break;
15200 case ALTIVEC_BUILTIN_LD_INTERNAL_2df:
15201 icode = CODE_FOR_vector_altivec_load_v2df;
15202 break;
15203 case ALTIVEC_BUILTIN_LD_INTERNAL_2di:
15204 icode = CODE_FOR_vector_altivec_load_v2di;
15205 break;
15206 case ALTIVEC_BUILTIN_LD_INTERNAL_1ti:
15207 icode = CODE_FOR_vector_altivec_load_v1ti;
15208 break;
15209 default:
15210 *expandedp = false;
15211 return NULL_RTX;
15214 *expandedp = true;
15216 arg0 = CALL_EXPR_ARG (exp, 0);
15217 op0 = expand_normal (arg0);
15218 tmode = insn_data[icode].operand[0].mode;
15219 mode0 = insn_data[icode].operand[1].mode;
15221 if (target == 0
15222 || GET_MODE (target) != tmode
15223 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
15224 target = gen_reg_rtx (tmode);
15226 if (! (*insn_data[icode].operand[1].predicate) (op0, mode0))
15227 op0 = gen_rtx_MEM (mode0, copy_to_mode_reg (Pmode, op0));
15229 pat = GEN_FCN (icode) (target, op0);
15230 if (! pat)
15231 return 0;
15232 emit_insn (pat);
15233 return target;
15236 /* Expand the stvx builtins. */
15237 static rtx
15238 altivec_expand_st_builtin (tree exp, rtx target ATTRIBUTE_UNUSED,
15239 bool *expandedp)
15241 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
15242 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
15243 tree arg0, arg1;
15244 machine_mode mode0, mode1;
15245 rtx pat, op0, op1;
15246 enum insn_code icode;
15248 switch (fcode)
15250 case ALTIVEC_BUILTIN_ST_INTERNAL_16qi:
15251 icode = CODE_FOR_vector_altivec_store_v16qi;
15252 break;
15253 case ALTIVEC_BUILTIN_ST_INTERNAL_8hi:
15254 icode = CODE_FOR_vector_altivec_store_v8hi;
15255 break;
15256 case ALTIVEC_BUILTIN_ST_INTERNAL_4si:
15257 icode = CODE_FOR_vector_altivec_store_v4si;
15258 break;
15259 case ALTIVEC_BUILTIN_ST_INTERNAL_4sf:
15260 icode = CODE_FOR_vector_altivec_store_v4sf;
15261 break;
15262 case ALTIVEC_BUILTIN_ST_INTERNAL_2df:
15263 icode = CODE_FOR_vector_altivec_store_v2df;
15264 break;
15265 case ALTIVEC_BUILTIN_ST_INTERNAL_2di:
15266 icode = CODE_FOR_vector_altivec_store_v2di;
15267 break;
15268 case ALTIVEC_BUILTIN_ST_INTERNAL_1ti:
15269 icode = CODE_FOR_vector_altivec_store_v1ti;
15270 break;
15271 default:
15272 *expandedp = false;
15273 return NULL_RTX;
15276 arg0 = CALL_EXPR_ARG (exp, 0);
15277 arg1 = CALL_EXPR_ARG (exp, 1);
15278 op0 = expand_normal (arg0);
15279 op1 = expand_normal (arg1);
15280 mode0 = insn_data[icode].operand[0].mode;
15281 mode1 = insn_data[icode].operand[1].mode;
15283 if (! (*insn_data[icode].operand[0].predicate) (op0, mode0))
15284 op0 = gen_rtx_MEM (mode0, copy_to_mode_reg (Pmode, op0));
15285 if (! (*insn_data[icode].operand[1].predicate) (op1, mode1))
15286 op1 = copy_to_mode_reg (mode1, op1);
15288 pat = GEN_FCN (icode) (op0, op1);
15289 if (pat)
15290 emit_insn (pat);
15292 *expandedp = true;
15293 return NULL_RTX;
15296 /* Expand the dst builtins. */
15297 static rtx
15298 altivec_expand_dst_builtin (tree exp, rtx target ATTRIBUTE_UNUSED,
15299 bool *expandedp)
15301 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
15302 enum rs6000_builtins fcode = (enum rs6000_builtins) DECL_FUNCTION_CODE (fndecl);
15303 tree arg0, arg1, arg2;
15304 machine_mode mode0, mode1;
15305 rtx pat, op0, op1, op2;
15306 const struct builtin_description *d;
15307 size_t i;
15309 *expandedp = false;
15311 /* Handle DST variants. */
15312 d = bdesc_dst;
15313 for (i = 0; i < ARRAY_SIZE (bdesc_dst); i++, d++)
15314 if (d->code == fcode)
15316 arg0 = CALL_EXPR_ARG (exp, 0);
15317 arg1 = CALL_EXPR_ARG (exp, 1);
15318 arg2 = CALL_EXPR_ARG (exp, 2);
15319 op0 = expand_normal (arg0);
15320 op1 = expand_normal (arg1);
15321 op2 = expand_normal (arg2);
15322 mode0 = insn_data[d->icode].operand[0].mode;
15323 mode1 = insn_data[d->icode].operand[1].mode;
15325 /* Invalid arguments, bail out before generating bad rtl. */
15326 if (arg0 == error_mark_node
15327 || arg1 == error_mark_node
15328 || arg2 == error_mark_node)
15329 return const0_rtx;
15331 *expandedp = true;
15332 STRIP_NOPS (arg2);
15333 if (TREE_CODE (arg2) != INTEGER_CST
15334 || TREE_INT_CST_LOW (arg2) & ~0x3)
15336 error ("argument to %qs must be a 2-bit unsigned literal", d->name);
15337 return const0_rtx;
15340 if (! (*insn_data[d->icode].operand[0].predicate) (op0, mode0))
15341 op0 = copy_to_mode_reg (Pmode, op0);
15342 if (! (*insn_data[d->icode].operand[1].predicate) (op1, mode1))
15343 op1 = copy_to_mode_reg (mode1, op1);
15345 pat = GEN_FCN (d->icode) (op0, op1, op2);
15346 if (pat != 0)
15347 emit_insn (pat);
15349 return NULL_RTX;
15352 return NULL_RTX;
15355 /* Expand vec_init builtin. */
15356 static rtx
15357 altivec_expand_vec_init_builtin (tree type, tree exp, rtx target)
15359 machine_mode tmode = TYPE_MODE (type);
15360 machine_mode inner_mode = GET_MODE_INNER (tmode);
15361 int i, n_elt = GET_MODE_NUNITS (tmode);
15363 gcc_assert (VECTOR_MODE_P (tmode));
15364 gcc_assert (n_elt == call_expr_nargs (exp));
15366 if (!target || !register_operand (target, tmode))
15367 target = gen_reg_rtx (tmode);
15369 /* If we have a vector compromised of a single element, such as V1TImode, do
15370 the initialization directly. */
15371 if (n_elt == 1 && GET_MODE_SIZE (tmode) == GET_MODE_SIZE (inner_mode))
15373 rtx x = expand_normal (CALL_EXPR_ARG (exp, 0));
15374 emit_move_insn (target, gen_lowpart (tmode, x));
15376 else
15378 rtvec v = rtvec_alloc (n_elt);
15380 for (i = 0; i < n_elt; ++i)
15382 rtx x = expand_normal (CALL_EXPR_ARG (exp, i));
15383 RTVEC_ELT (v, i) = gen_lowpart (inner_mode, x);
15386 rs6000_expand_vector_init (target, gen_rtx_PARALLEL (tmode, v));
15389 return target;
15392 /* Return the integer constant in ARG. Constrain it to be in the range
15393 of the subparts of VEC_TYPE; issue an error if not. */
15395 static int
15396 get_element_number (tree vec_type, tree arg)
15398 unsigned HOST_WIDE_INT elt, max = TYPE_VECTOR_SUBPARTS (vec_type) - 1;
15400 if (!tree_fits_uhwi_p (arg)
15401 || (elt = tree_to_uhwi (arg), elt > max))
15403 error ("selector must be an integer constant in the range 0..%wi", max);
15404 return 0;
15407 return elt;
15410 /* Expand vec_set builtin. */
15411 static rtx
15412 altivec_expand_vec_set_builtin (tree exp)
15414 machine_mode tmode, mode1;
15415 tree arg0, arg1, arg2;
15416 int elt;
15417 rtx op0, op1;
15419 arg0 = CALL_EXPR_ARG (exp, 0);
15420 arg1 = CALL_EXPR_ARG (exp, 1);
15421 arg2 = CALL_EXPR_ARG (exp, 2);
15423 tmode = TYPE_MODE (TREE_TYPE (arg0));
15424 mode1 = TYPE_MODE (TREE_TYPE (TREE_TYPE (arg0)));
15425 gcc_assert (VECTOR_MODE_P (tmode));
15427 op0 = expand_expr (arg0, NULL_RTX, tmode, EXPAND_NORMAL);
15428 op1 = expand_expr (arg1, NULL_RTX, mode1, EXPAND_NORMAL);
15429 elt = get_element_number (TREE_TYPE (arg0), arg2);
15431 if (GET_MODE (op1) != mode1 && GET_MODE (op1) != VOIDmode)
15432 op1 = convert_modes (mode1, GET_MODE (op1), op1, true);
15434 op0 = force_reg (tmode, op0);
15435 op1 = force_reg (mode1, op1);
15437 rs6000_expand_vector_set (op0, op1, elt);
15439 return op0;
15442 /* Expand vec_ext builtin. */
15443 static rtx
15444 altivec_expand_vec_ext_builtin (tree exp, rtx target)
15446 machine_mode tmode, mode0;
15447 tree arg0, arg1;
15448 rtx op0;
15449 rtx op1;
15451 arg0 = CALL_EXPR_ARG (exp, 0);
15452 arg1 = CALL_EXPR_ARG (exp, 1);
15454 op0 = expand_normal (arg0);
15455 op1 = expand_normal (arg1);
15457 /* Call get_element_number to validate arg1 if it is a constant. */
15458 if (TREE_CODE (arg1) == INTEGER_CST)
15459 (void) get_element_number (TREE_TYPE (arg0), arg1);
15461 tmode = TYPE_MODE (TREE_TYPE (TREE_TYPE (arg0)));
15462 mode0 = TYPE_MODE (TREE_TYPE (arg0));
15463 gcc_assert (VECTOR_MODE_P (mode0));
15465 op0 = force_reg (mode0, op0);
15467 if (optimize || !target || !register_operand (target, tmode))
15468 target = gen_reg_rtx (tmode);
15470 rs6000_expand_vector_extract (target, op0, op1);
15472 return target;
15475 /* Expand the builtin in EXP and store the result in TARGET. Store
15476 true in *EXPANDEDP if we found a builtin to expand. */
15477 static rtx
15478 altivec_expand_builtin (tree exp, rtx target, bool *expandedp)
15480 const struct builtin_description *d;
15481 size_t i;
15482 enum insn_code icode;
15483 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
15484 tree arg0, arg1, arg2;
15485 rtx op0, pat;
15486 machine_mode tmode, mode0;
15487 enum rs6000_builtins fcode
15488 = (enum rs6000_builtins) DECL_FUNCTION_CODE (fndecl);
15490 if (rs6000_overloaded_builtin_p (fcode))
15492 *expandedp = true;
15493 error ("unresolved overload for Altivec builtin %qF", fndecl);
15495 /* Given it is invalid, just generate a normal call. */
15496 return expand_call (exp, target, false);
15499 target = altivec_expand_ld_builtin (exp, target, expandedp);
15500 if (*expandedp)
15501 return target;
15503 target = altivec_expand_st_builtin (exp, target, expandedp);
15504 if (*expandedp)
15505 return target;
15507 target = altivec_expand_dst_builtin (exp, target, expandedp);
15508 if (*expandedp)
15509 return target;
15511 *expandedp = true;
15513 switch (fcode)
15515 case ALTIVEC_BUILTIN_STVX_V2DF:
15516 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvx_v2df_2op, exp);
15517 case ALTIVEC_BUILTIN_STVX_V2DI:
15518 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvx_v2di_2op, exp);
15519 case ALTIVEC_BUILTIN_STVX_V4SF:
15520 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvx_v4sf_2op, exp);
15521 case ALTIVEC_BUILTIN_STVX:
15522 case ALTIVEC_BUILTIN_STVX_V4SI:
15523 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvx_v4si_2op, exp);
15524 case ALTIVEC_BUILTIN_STVX_V8HI:
15525 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvx_v8hi_2op, exp);
15526 case ALTIVEC_BUILTIN_STVX_V16QI:
15527 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvx_v16qi_2op, exp);
15528 case ALTIVEC_BUILTIN_STVEBX:
15529 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvebx, exp);
15530 case ALTIVEC_BUILTIN_STVEHX:
15531 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvehx, exp);
15532 case ALTIVEC_BUILTIN_STVEWX:
15533 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvewx, exp);
15534 case ALTIVEC_BUILTIN_STVXL_V2DF:
15535 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvxl_v2df, exp);
15536 case ALTIVEC_BUILTIN_STVXL_V2DI:
15537 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvxl_v2di, exp);
15538 case ALTIVEC_BUILTIN_STVXL_V4SF:
15539 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvxl_v4sf, exp);
15540 case ALTIVEC_BUILTIN_STVXL:
15541 case ALTIVEC_BUILTIN_STVXL_V4SI:
15542 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvxl_v4si, exp);
15543 case ALTIVEC_BUILTIN_STVXL_V8HI:
15544 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvxl_v8hi, exp);
15545 case ALTIVEC_BUILTIN_STVXL_V16QI:
15546 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvxl_v16qi, exp);
15548 case ALTIVEC_BUILTIN_STVLX:
15549 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvlx, exp);
15550 case ALTIVEC_BUILTIN_STVLXL:
15551 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvlxl, exp);
15552 case ALTIVEC_BUILTIN_STVRX:
15553 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvrx, exp);
15554 case ALTIVEC_BUILTIN_STVRXL:
15555 return altivec_expand_stv_builtin (CODE_FOR_altivec_stvrxl, exp);
15557 case P9V_BUILTIN_STXVL:
15558 return altivec_expand_stxvl_builtin (CODE_FOR_stxvl, exp);
15560 case P9V_BUILTIN_XST_LEN_R:
15561 return altivec_expand_stxvl_builtin (CODE_FOR_xst_len_r, exp);
15563 case VSX_BUILTIN_STXVD2X_V1TI:
15564 return altivec_expand_stv_builtin (CODE_FOR_vsx_store_v1ti, exp);
15565 case VSX_BUILTIN_STXVD2X_V2DF:
15566 return altivec_expand_stv_builtin (CODE_FOR_vsx_store_v2df, exp);
15567 case VSX_BUILTIN_STXVD2X_V2DI:
15568 return altivec_expand_stv_builtin (CODE_FOR_vsx_store_v2di, exp);
15569 case VSX_BUILTIN_STXVW4X_V4SF:
15570 return altivec_expand_stv_builtin (CODE_FOR_vsx_store_v4sf, exp);
15571 case VSX_BUILTIN_STXVW4X_V4SI:
15572 return altivec_expand_stv_builtin (CODE_FOR_vsx_store_v4si, exp);
15573 case VSX_BUILTIN_STXVW4X_V8HI:
15574 return altivec_expand_stv_builtin (CODE_FOR_vsx_store_v8hi, exp);
15575 case VSX_BUILTIN_STXVW4X_V16QI:
15576 return altivec_expand_stv_builtin (CODE_FOR_vsx_store_v16qi, exp);
15578 /* For the following on big endian, it's ok to use any appropriate
15579 unaligned-supporting store, so use a generic expander. For
15580 little-endian, the exact element-reversing instruction must
15581 be used. */
15582 case VSX_BUILTIN_ST_ELEMREV_V2DF:
15584 enum insn_code code = (BYTES_BIG_ENDIAN ? CODE_FOR_vsx_store_v2df
15585 : CODE_FOR_vsx_st_elemrev_v2df);
15586 return altivec_expand_stv_builtin (code, exp);
15588 case VSX_BUILTIN_ST_ELEMREV_V2DI:
15590 enum insn_code code = (BYTES_BIG_ENDIAN ? CODE_FOR_vsx_store_v2di
15591 : CODE_FOR_vsx_st_elemrev_v2di);
15592 return altivec_expand_stv_builtin (code, exp);
15594 case VSX_BUILTIN_ST_ELEMREV_V4SF:
15596 enum insn_code code = (BYTES_BIG_ENDIAN ? CODE_FOR_vsx_store_v4sf
15597 : CODE_FOR_vsx_st_elemrev_v4sf);
15598 return altivec_expand_stv_builtin (code, exp);
15600 case VSX_BUILTIN_ST_ELEMREV_V4SI:
15602 enum insn_code code = (BYTES_BIG_ENDIAN ? CODE_FOR_vsx_store_v4si
15603 : CODE_FOR_vsx_st_elemrev_v4si);
15604 return altivec_expand_stv_builtin (code, exp);
15606 case VSX_BUILTIN_ST_ELEMREV_V8HI:
15608 enum insn_code code = (BYTES_BIG_ENDIAN ? CODE_FOR_vsx_store_v8hi
15609 : CODE_FOR_vsx_st_elemrev_v8hi);
15610 return altivec_expand_stv_builtin (code, exp);
15612 case VSX_BUILTIN_ST_ELEMREV_V16QI:
15614 enum insn_code code = (BYTES_BIG_ENDIAN ? CODE_FOR_vsx_store_v16qi
15615 : CODE_FOR_vsx_st_elemrev_v16qi);
15616 return altivec_expand_stv_builtin (code, exp);
15619 case ALTIVEC_BUILTIN_MFVSCR:
15620 icode = CODE_FOR_altivec_mfvscr;
15621 tmode = insn_data[icode].operand[0].mode;
15623 if (target == 0
15624 || GET_MODE (target) != tmode
15625 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
15626 target = gen_reg_rtx (tmode);
15628 pat = GEN_FCN (icode) (target);
15629 if (! pat)
15630 return 0;
15631 emit_insn (pat);
15632 return target;
15634 case ALTIVEC_BUILTIN_MTVSCR:
15635 icode = CODE_FOR_altivec_mtvscr;
15636 arg0 = CALL_EXPR_ARG (exp, 0);
15637 op0 = expand_normal (arg0);
15638 mode0 = insn_data[icode].operand[0].mode;
15640 /* If we got invalid arguments bail out before generating bad rtl. */
15641 if (arg0 == error_mark_node)
15642 return const0_rtx;
15644 if (! (*insn_data[icode].operand[0].predicate) (op0, mode0))
15645 op0 = copy_to_mode_reg (mode0, op0);
15647 pat = GEN_FCN (icode) (op0);
15648 if (pat)
15649 emit_insn (pat);
15650 return NULL_RTX;
15652 case ALTIVEC_BUILTIN_DSSALL:
15653 emit_insn (gen_altivec_dssall ());
15654 return NULL_RTX;
15656 case ALTIVEC_BUILTIN_DSS:
15657 icode = CODE_FOR_altivec_dss;
15658 arg0 = CALL_EXPR_ARG (exp, 0);
15659 STRIP_NOPS (arg0);
15660 op0 = expand_normal (arg0);
15661 mode0 = insn_data[icode].operand[0].mode;
15663 /* If we got invalid arguments bail out before generating bad rtl. */
15664 if (arg0 == error_mark_node)
15665 return const0_rtx;
15667 if (TREE_CODE (arg0) != INTEGER_CST
15668 || TREE_INT_CST_LOW (arg0) & ~0x3)
15670 error ("argument to %qs must be a 2-bit unsigned literal", "dss");
15671 return const0_rtx;
15674 if (! (*insn_data[icode].operand[0].predicate) (op0, mode0))
15675 op0 = copy_to_mode_reg (mode0, op0);
15677 emit_insn (gen_altivec_dss (op0));
15678 return NULL_RTX;
15680 case ALTIVEC_BUILTIN_VEC_INIT_V4SI:
15681 case ALTIVEC_BUILTIN_VEC_INIT_V8HI:
15682 case ALTIVEC_BUILTIN_VEC_INIT_V16QI:
15683 case ALTIVEC_BUILTIN_VEC_INIT_V4SF:
15684 case VSX_BUILTIN_VEC_INIT_V2DF:
15685 case VSX_BUILTIN_VEC_INIT_V2DI:
15686 case VSX_BUILTIN_VEC_INIT_V1TI:
15687 return altivec_expand_vec_init_builtin (TREE_TYPE (exp), exp, target);
15689 case ALTIVEC_BUILTIN_VEC_SET_V4SI:
15690 case ALTIVEC_BUILTIN_VEC_SET_V8HI:
15691 case ALTIVEC_BUILTIN_VEC_SET_V16QI:
15692 case ALTIVEC_BUILTIN_VEC_SET_V4SF:
15693 case VSX_BUILTIN_VEC_SET_V2DF:
15694 case VSX_BUILTIN_VEC_SET_V2DI:
15695 case VSX_BUILTIN_VEC_SET_V1TI:
15696 return altivec_expand_vec_set_builtin (exp);
15698 case ALTIVEC_BUILTIN_VEC_EXT_V4SI:
15699 case ALTIVEC_BUILTIN_VEC_EXT_V8HI:
15700 case ALTIVEC_BUILTIN_VEC_EXT_V16QI:
15701 case ALTIVEC_BUILTIN_VEC_EXT_V4SF:
15702 case VSX_BUILTIN_VEC_EXT_V2DF:
15703 case VSX_BUILTIN_VEC_EXT_V2DI:
15704 case VSX_BUILTIN_VEC_EXT_V1TI:
15705 return altivec_expand_vec_ext_builtin (exp, target);
15707 case P9V_BUILTIN_VEXTRACT4B:
15708 case P9V_BUILTIN_VEC_VEXTRACT4B:
15709 arg1 = CALL_EXPR_ARG (exp, 1);
15710 STRIP_NOPS (arg1);
15712 /* Generate a normal call if it is invalid. */
15713 if (arg1 == error_mark_node)
15714 return expand_call (exp, target, false);
15716 if (TREE_CODE (arg1) != INTEGER_CST || TREE_INT_CST_LOW (arg1) > 12)
15718 error ("second argument to %qs must be 0..12", "vec_vextract4b");
15719 return expand_call (exp, target, false);
15721 break;
15723 case P9V_BUILTIN_VINSERT4B:
15724 case P9V_BUILTIN_VINSERT4B_DI:
15725 case P9V_BUILTIN_VEC_VINSERT4B:
15726 arg2 = CALL_EXPR_ARG (exp, 2);
15727 STRIP_NOPS (arg2);
15729 /* Generate a normal call if it is invalid. */
15730 if (arg2 == error_mark_node)
15731 return expand_call (exp, target, false);
15733 if (TREE_CODE (arg2) != INTEGER_CST || TREE_INT_CST_LOW (arg2) > 12)
15735 error ("third argument to %qs must be 0..12", "vec_vinsert4b");
15736 return expand_call (exp, target, false);
15738 break;
15740 default:
15741 break;
15742 /* Fall through. */
15745 /* Expand abs* operations. */
15746 d = bdesc_abs;
15747 for (i = 0; i < ARRAY_SIZE (bdesc_abs); i++, d++)
15748 if (d->code == fcode)
15749 return altivec_expand_abs_builtin (d->icode, exp, target);
15751 /* Expand the AltiVec predicates. */
15752 d = bdesc_altivec_preds;
15753 for (i = 0; i < ARRAY_SIZE (bdesc_altivec_preds); i++, d++)
15754 if (d->code == fcode)
15755 return altivec_expand_predicate_builtin (d->icode, exp, target);
15757 /* LV* are funky. We initialized them differently. */
15758 switch (fcode)
15760 case ALTIVEC_BUILTIN_LVSL:
15761 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvsl,
15762 exp, target, false);
15763 case ALTIVEC_BUILTIN_LVSR:
15764 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvsr,
15765 exp, target, false);
15766 case ALTIVEC_BUILTIN_LVEBX:
15767 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvebx,
15768 exp, target, false);
15769 case ALTIVEC_BUILTIN_LVEHX:
15770 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvehx,
15771 exp, target, false);
15772 case ALTIVEC_BUILTIN_LVEWX:
15773 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvewx,
15774 exp, target, false);
15775 case ALTIVEC_BUILTIN_LVXL_V2DF:
15776 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvxl_v2df,
15777 exp, target, false);
15778 case ALTIVEC_BUILTIN_LVXL_V2DI:
15779 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvxl_v2di,
15780 exp, target, false);
15781 case ALTIVEC_BUILTIN_LVXL_V4SF:
15782 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvxl_v4sf,
15783 exp, target, false);
15784 case ALTIVEC_BUILTIN_LVXL:
15785 case ALTIVEC_BUILTIN_LVXL_V4SI:
15786 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvxl_v4si,
15787 exp, target, false);
15788 case ALTIVEC_BUILTIN_LVXL_V8HI:
15789 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvxl_v8hi,
15790 exp, target, false);
15791 case ALTIVEC_BUILTIN_LVXL_V16QI:
15792 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvxl_v16qi,
15793 exp, target, false);
15794 case ALTIVEC_BUILTIN_LVX_V2DF:
15795 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvx_v2df_2op,
15796 exp, target, false);
15797 case ALTIVEC_BUILTIN_LVX_V2DI:
15798 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvx_v2di_2op,
15799 exp, target, false);
15800 case ALTIVEC_BUILTIN_LVX_V4SF:
15801 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvx_v4sf_2op,
15802 exp, target, false);
15803 case ALTIVEC_BUILTIN_LVX:
15804 case ALTIVEC_BUILTIN_LVX_V4SI:
15805 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvx_v4si_2op,
15806 exp, target, false);
15807 case ALTIVEC_BUILTIN_LVX_V8HI:
15808 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvx_v8hi_2op,
15809 exp, target, false);
15810 case ALTIVEC_BUILTIN_LVX_V16QI:
15811 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvx_v16qi_2op,
15812 exp, target, false);
15813 case ALTIVEC_BUILTIN_LVLX:
15814 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvlx,
15815 exp, target, true);
15816 case ALTIVEC_BUILTIN_LVLXL:
15817 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvlxl,
15818 exp, target, true);
15819 case ALTIVEC_BUILTIN_LVRX:
15820 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvrx,
15821 exp, target, true);
15822 case ALTIVEC_BUILTIN_LVRXL:
15823 return altivec_expand_lv_builtin (CODE_FOR_altivec_lvrxl,
15824 exp, target, true);
15825 case VSX_BUILTIN_LXVD2X_V1TI:
15826 return altivec_expand_lv_builtin (CODE_FOR_vsx_load_v1ti,
15827 exp, target, false);
15828 case VSX_BUILTIN_LXVD2X_V2DF:
15829 return altivec_expand_lv_builtin (CODE_FOR_vsx_load_v2df,
15830 exp, target, false);
15831 case VSX_BUILTIN_LXVD2X_V2DI:
15832 return altivec_expand_lv_builtin (CODE_FOR_vsx_load_v2di,
15833 exp, target, false);
15834 case VSX_BUILTIN_LXVW4X_V4SF:
15835 return altivec_expand_lv_builtin (CODE_FOR_vsx_load_v4sf,
15836 exp, target, false);
15837 case VSX_BUILTIN_LXVW4X_V4SI:
15838 return altivec_expand_lv_builtin (CODE_FOR_vsx_load_v4si,
15839 exp, target, false);
15840 case VSX_BUILTIN_LXVW4X_V8HI:
15841 return altivec_expand_lv_builtin (CODE_FOR_vsx_load_v8hi,
15842 exp, target, false);
15843 case VSX_BUILTIN_LXVW4X_V16QI:
15844 return altivec_expand_lv_builtin (CODE_FOR_vsx_load_v16qi,
15845 exp, target, false);
15846 /* For the following on big endian, it's ok to use any appropriate
15847 unaligned-supporting load, so use a generic expander. For
15848 little-endian, the exact element-reversing instruction must
15849 be used. */
15850 case VSX_BUILTIN_LD_ELEMREV_V2DF:
15852 enum insn_code code = (BYTES_BIG_ENDIAN ? CODE_FOR_vsx_load_v2df
15853 : CODE_FOR_vsx_ld_elemrev_v2df);
15854 return altivec_expand_lv_builtin (code, exp, target, false);
15856 case VSX_BUILTIN_LD_ELEMREV_V2DI:
15858 enum insn_code code = (BYTES_BIG_ENDIAN ? CODE_FOR_vsx_load_v2di
15859 : CODE_FOR_vsx_ld_elemrev_v2di);
15860 return altivec_expand_lv_builtin (code, exp, target, false);
15862 case VSX_BUILTIN_LD_ELEMREV_V4SF:
15864 enum insn_code code = (BYTES_BIG_ENDIAN ? CODE_FOR_vsx_load_v4sf
15865 : CODE_FOR_vsx_ld_elemrev_v4sf);
15866 return altivec_expand_lv_builtin (code, exp, target, false);
15868 case VSX_BUILTIN_LD_ELEMREV_V4SI:
15870 enum insn_code code = (BYTES_BIG_ENDIAN ? CODE_FOR_vsx_load_v4si
15871 : CODE_FOR_vsx_ld_elemrev_v4si);
15872 return altivec_expand_lv_builtin (code, exp, target, false);
15874 case VSX_BUILTIN_LD_ELEMREV_V8HI:
15876 enum insn_code code = (BYTES_BIG_ENDIAN ? CODE_FOR_vsx_load_v8hi
15877 : CODE_FOR_vsx_ld_elemrev_v8hi);
15878 return altivec_expand_lv_builtin (code, exp, target, false);
15880 case VSX_BUILTIN_LD_ELEMREV_V16QI:
15882 enum insn_code code = (BYTES_BIG_ENDIAN ? CODE_FOR_vsx_load_v16qi
15883 : CODE_FOR_vsx_ld_elemrev_v16qi);
15884 return altivec_expand_lv_builtin (code, exp, target, false);
15886 break;
15887 default:
15888 break;
15889 /* Fall through. */
15892 /* XL_BE We initialized them to always load in big endian order. */
15893 switch (fcode)
15895 case VSX_BUILTIN_XL_BE_V2DI:
15897 enum insn_code code = CODE_FOR_vsx_load_v2di;
15898 return altivec_expand_xl_be_builtin (code, exp, target, false);
15900 break;
15901 case VSX_BUILTIN_XL_BE_V4SI:
15903 enum insn_code code = CODE_FOR_vsx_load_v4si;
15904 return altivec_expand_xl_be_builtin (code, exp, target, false);
15906 break;
15907 case VSX_BUILTIN_XL_BE_V8HI:
15909 enum insn_code code = CODE_FOR_vsx_load_v8hi;
15910 return altivec_expand_xl_be_builtin (code, exp, target, false);
15912 break;
15913 case VSX_BUILTIN_XL_BE_V16QI:
15915 enum insn_code code = CODE_FOR_vsx_load_v16qi;
15916 return altivec_expand_xl_be_builtin (code, exp, target, false);
15918 break;
15919 case VSX_BUILTIN_XL_BE_V2DF:
15921 enum insn_code code = CODE_FOR_vsx_load_v2df;
15922 return altivec_expand_xl_be_builtin (code, exp, target, false);
15924 break;
15925 case VSX_BUILTIN_XL_BE_V4SF:
15927 enum insn_code code = CODE_FOR_vsx_load_v4sf;
15928 return altivec_expand_xl_be_builtin (code, exp, target, false);
15930 break;
15931 default:
15932 break;
15933 /* Fall through. */
15936 *expandedp = false;
15937 return NULL_RTX;
15940 /* Expand the builtin in EXP and store the result in TARGET. Store
15941 true in *EXPANDEDP if we found a builtin to expand. */
15942 static rtx
15943 paired_expand_builtin (tree exp, rtx target, bool * expandedp)
15945 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
15946 enum rs6000_builtins fcode = (enum rs6000_builtins) DECL_FUNCTION_CODE (fndecl);
15947 const struct builtin_description *d;
15948 size_t i;
15950 *expandedp = true;
15952 switch (fcode)
15954 case PAIRED_BUILTIN_STX:
15955 return paired_expand_stv_builtin (CODE_FOR_paired_stx, exp);
15956 case PAIRED_BUILTIN_LX:
15957 return paired_expand_lv_builtin (CODE_FOR_paired_lx, exp, target);
15958 default:
15959 break;
15960 /* Fall through. */
15963 /* Expand the paired predicates. */
15964 d = bdesc_paired_preds;
15965 for (i = 0; i < ARRAY_SIZE (bdesc_paired_preds); i++, d++)
15966 if (d->code == fcode)
15967 return paired_expand_predicate_builtin (d->icode, exp, target);
15969 *expandedp = false;
15970 return NULL_RTX;
15973 static rtx
15974 paired_expand_predicate_builtin (enum insn_code icode, tree exp, rtx target)
15976 rtx pat, scratch, tmp;
15977 tree form = CALL_EXPR_ARG (exp, 0);
15978 tree arg0 = CALL_EXPR_ARG (exp, 1);
15979 tree arg1 = CALL_EXPR_ARG (exp, 2);
15980 rtx op0 = expand_normal (arg0);
15981 rtx op1 = expand_normal (arg1);
15982 machine_mode mode0 = insn_data[icode].operand[1].mode;
15983 machine_mode mode1 = insn_data[icode].operand[2].mode;
15984 int form_int;
15985 enum rtx_code code;
15987 if (TREE_CODE (form) != INTEGER_CST)
15989 error ("argument 1 of %s must be a constant",
15990 "__builtin_paired_predicate");
15991 return const0_rtx;
15993 else
15994 form_int = TREE_INT_CST_LOW (form);
15996 gcc_assert (mode0 == mode1);
15998 if (arg0 == error_mark_node || arg1 == error_mark_node)
15999 return const0_rtx;
16001 if (target == 0
16002 || GET_MODE (target) != SImode
16003 || !(*insn_data[icode].operand[0].predicate) (target, SImode))
16004 target = gen_reg_rtx (SImode);
16005 if (!(*insn_data[icode].operand[1].predicate) (op0, mode0))
16006 op0 = copy_to_mode_reg (mode0, op0);
16007 if (!(*insn_data[icode].operand[2].predicate) (op1, mode1))
16008 op1 = copy_to_mode_reg (mode1, op1);
16010 scratch = gen_reg_rtx (CCFPmode);
16012 pat = GEN_FCN (icode) (scratch, op0, op1);
16013 if (!pat)
16014 return const0_rtx;
16016 emit_insn (pat);
16018 switch (form_int)
16020 /* LT bit. */
16021 case 0:
16022 code = LT;
16023 break;
16024 /* GT bit. */
16025 case 1:
16026 code = GT;
16027 break;
16028 /* EQ bit. */
16029 case 2:
16030 code = EQ;
16031 break;
16032 /* UN bit. */
16033 case 3:
16034 emit_insn (gen_move_from_CR_ov_bit (target, scratch));
16035 return target;
16036 default:
16037 error ("argument 1 of %qs is out of range",
16038 "__builtin_paired_predicate");
16039 return const0_rtx;
16042 tmp = gen_rtx_fmt_ee (code, SImode, scratch, const0_rtx);
16043 emit_move_insn (target, tmp);
16044 return target;
16047 /* Raise an error message for a builtin function that is called without the
16048 appropriate target options being set. */
16050 static void
16051 rs6000_invalid_builtin (enum rs6000_builtins fncode)
16053 size_t uns_fncode = (size_t) fncode;
16054 const char *name = rs6000_builtin_info[uns_fncode].name;
16055 HOST_WIDE_INT fnmask = rs6000_builtin_info[uns_fncode].mask;
16057 gcc_assert (name != NULL);
16058 if ((fnmask & RS6000_BTM_CELL) != 0)
16059 error ("builtin function %qs is only valid for the cell processor", name);
16060 else if ((fnmask & RS6000_BTM_VSX) != 0)
16061 error ("builtin function %qs requires the %qs option", name, "-mvsx");
16062 else if ((fnmask & RS6000_BTM_HTM) != 0)
16063 error ("builtin function %qs requires the %qs option", name, "-mhtm");
16064 else if ((fnmask & RS6000_BTM_ALTIVEC) != 0)
16065 error ("builtin function %qs requires the %qs option", name, "-maltivec");
16066 else if ((fnmask & RS6000_BTM_PAIRED) != 0)
16067 error ("builtin function %qs requires the %qs option", name, "-mpaired");
16068 else if ((fnmask & (RS6000_BTM_DFP | RS6000_BTM_P8_VECTOR))
16069 == (RS6000_BTM_DFP | RS6000_BTM_P8_VECTOR))
16070 error ("builtin function %qs requires the %qs and %qs options",
16071 name, "-mhard-dfp", "-mpower8-vector");
16072 else if ((fnmask & RS6000_BTM_DFP) != 0)
16073 error ("builtin function %qs requires the %qs option", name, "-mhard-dfp");
16074 else if ((fnmask & RS6000_BTM_P8_VECTOR) != 0)
16075 error ("builtin function %qs requires the %qs option", name,
16076 "-mpower8-vector");
16077 else if ((fnmask & (RS6000_BTM_P9_VECTOR | RS6000_BTM_64BIT))
16078 == (RS6000_BTM_P9_VECTOR | RS6000_BTM_64BIT))
16079 error ("builtin function %qs requires the %qs and %qs options",
16080 name, "-mcpu=power9", "-m64");
16081 else if ((fnmask & RS6000_BTM_P9_VECTOR) != 0)
16082 error ("builtin function %qs requires the %qs option", name,
16083 "-mcpu=power9");
16084 else if ((fnmask & (RS6000_BTM_P9_MISC | RS6000_BTM_64BIT))
16085 == (RS6000_BTM_P9_MISC | RS6000_BTM_64BIT))
16086 error ("builtin function %qs requires the %qs and %qs options",
16087 name, "-mcpu=power9", "-m64");
16088 else if ((fnmask & RS6000_BTM_P9_MISC) == RS6000_BTM_P9_MISC)
16089 error ("builtin function %qs requires the %qs option", name,
16090 "-mcpu=power9");
16091 else if ((fnmask & (RS6000_BTM_HARD_FLOAT | RS6000_BTM_LDBL128))
16092 == (RS6000_BTM_HARD_FLOAT | RS6000_BTM_LDBL128))
16093 error ("builtin function %qs requires the %qs and %qs options",
16094 name, "-mhard-float", "-mlong-double-128");
16095 else if ((fnmask & RS6000_BTM_HARD_FLOAT) != 0)
16096 error ("builtin function %qs requires the %qs option", name,
16097 "-mhard-float");
16098 else if ((fnmask & RS6000_BTM_FLOAT128_HW) != 0)
16099 error ("builtin function %qs requires ISA 3.0 IEEE 128-bit floating point",
16100 name);
16101 else if ((fnmask & RS6000_BTM_FLOAT128) != 0)
16102 error ("builtin function %qs requires the %qs option", name, "-mfloat128");
16103 else
16104 error ("builtin function %qs is not supported with the current options",
16105 name);
16108 /* Target hook for early folding of built-ins, shamelessly stolen
16109 from ia64.c. */
16111 static tree
16112 rs6000_fold_builtin (tree fndecl, int n_args ATTRIBUTE_UNUSED,
16113 tree *args, bool ignore ATTRIBUTE_UNUSED)
16115 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD)
16117 enum rs6000_builtins fn_code
16118 = (enum rs6000_builtins) DECL_FUNCTION_CODE (fndecl);
16119 switch (fn_code)
16121 case RS6000_BUILTIN_NANQ:
16122 case RS6000_BUILTIN_NANSQ:
16124 tree type = TREE_TYPE (TREE_TYPE (fndecl));
16125 const char *str = c_getstr (*args);
16126 int quiet = fn_code == RS6000_BUILTIN_NANQ;
16127 REAL_VALUE_TYPE real;
16129 if (str && real_nan (&real, str, quiet, TYPE_MODE (type)))
16130 return build_real (type, real);
16131 return NULL_TREE;
16133 case RS6000_BUILTIN_INFQ:
16134 case RS6000_BUILTIN_HUGE_VALQ:
16136 tree type = TREE_TYPE (TREE_TYPE (fndecl));
16137 REAL_VALUE_TYPE inf;
16138 real_inf (&inf);
16139 return build_real (type, inf);
16141 default:
16142 break;
16145 #ifdef SUBTARGET_FOLD_BUILTIN
16146 return SUBTARGET_FOLD_BUILTIN (fndecl, n_args, args, ignore);
16147 #else
16148 return NULL_TREE;
16149 #endif
16152 /* Helper function to sort out which built-ins may be valid without having
16153 a LHS. */
16154 static bool
16155 rs6000_builtin_valid_without_lhs (enum rs6000_builtins fn_code)
16157 switch (fn_code)
16159 case ALTIVEC_BUILTIN_STVX_V16QI:
16160 case ALTIVEC_BUILTIN_STVX_V8HI:
16161 case ALTIVEC_BUILTIN_STVX_V4SI:
16162 case ALTIVEC_BUILTIN_STVX_V4SF:
16163 case ALTIVEC_BUILTIN_STVX_V2DI:
16164 case ALTIVEC_BUILTIN_STVX_V2DF:
16165 return true;
16166 default:
16167 return false;
16171 /* Fold a machine-dependent built-in in GIMPLE. (For folding into
16172 a constant, use rs6000_fold_builtin.) */
16174 bool
16175 rs6000_gimple_fold_builtin (gimple_stmt_iterator *gsi)
16177 gimple *stmt = gsi_stmt (*gsi);
16178 tree fndecl = gimple_call_fndecl (stmt);
16179 gcc_checking_assert (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD);
16180 enum rs6000_builtins fn_code
16181 = (enum rs6000_builtins) DECL_FUNCTION_CODE (fndecl);
16182 tree arg0, arg1, lhs;
16184 size_t uns_fncode = (size_t) fn_code;
16185 enum insn_code icode = rs6000_builtin_info[uns_fncode].icode;
16186 const char *fn_name1 = rs6000_builtin_info[uns_fncode].name;
16187 const char *fn_name2 = (icode != CODE_FOR_nothing)
16188 ? get_insn_name ((int) icode)
16189 : "nothing";
16191 if (TARGET_DEBUG_BUILTIN)
16192 fprintf (stderr, "rs6000_gimple_fold_builtin %d %s %s\n",
16193 fn_code, fn_name1, fn_name2);
16195 if (!rs6000_fold_gimple)
16196 return false;
16198 /* Prevent gimple folding for code that does not have a LHS, unless it is
16199 allowed per the rs6000_builtin_valid_without_lhs helper function. */
16200 if (!gimple_call_lhs (stmt) && !rs6000_builtin_valid_without_lhs (fn_code))
16201 return false;
16203 switch (fn_code)
16205 /* Flavors of vec_add. We deliberately don't expand
16206 P8V_BUILTIN_VADDUQM as it gets lowered from V1TImode to
16207 TImode, resulting in much poorer code generation. */
16208 case ALTIVEC_BUILTIN_VADDUBM:
16209 case ALTIVEC_BUILTIN_VADDUHM:
16210 case ALTIVEC_BUILTIN_VADDUWM:
16211 case P8V_BUILTIN_VADDUDM:
16212 case ALTIVEC_BUILTIN_VADDFP:
16213 case VSX_BUILTIN_XVADDDP:
16215 arg0 = gimple_call_arg (stmt, 0);
16216 arg1 = gimple_call_arg (stmt, 1);
16217 lhs = gimple_call_lhs (stmt);
16218 gimple *g = gimple_build_assign (lhs, PLUS_EXPR, arg0, arg1);
16219 gimple_set_location (g, gimple_location (stmt));
16220 gsi_replace (gsi, g, true);
16221 return true;
16223 /* Flavors of vec_sub. We deliberately don't expand
16224 P8V_BUILTIN_VSUBUQM. */
16225 case ALTIVEC_BUILTIN_VSUBUBM:
16226 case ALTIVEC_BUILTIN_VSUBUHM:
16227 case ALTIVEC_BUILTIN_VSUBUWM:
16228 case P8V_BUILTIN_VSUBUDM:
16229 case ALTIVEC_BUILTIN_VSUBFP:
16230 case VSX_BUILTIN_XVSUBDP:
16232 arg0 = gimple_call_arg (stmt, 0);
16233 arg1 = gimple_call_arg (stmt, 1);
16234 lhs = gimple_call_lhs (stmt);
16235 gimple *g = gimple_build_assign (lhs, MINUS_EXPR, arg0, arg1);
16236 gimple_set_location (g, gimple_location (stmt));
16237 gsi_replace (gsi, g, true);
16238 return true;
16240 case VSX_BUILTIN_XVMULSP:
16241 case VSX_BUILTIN_XVMULDP:
16243 arg0 = gimple_call_arg (stmt, 0);
16244 arg1 = gimple_call_arg (stmt, 1);
16245 lhs = gimple_call_lhs (stmt);
16246 gimple *g = gimple_build_assign (lhs, MULT_EXPR, arg0, arg1);
16247 gimple_set_location (g, gimple_location (stmt));
16248 gsi_replace (gsi, g, true);
16249 return true;
16251 /* Even element flavors of vec_mul (signed). */
16252 case ALTIVEC_BUILTIN_VMULESB:
16253 case ALTIVEC_BUILTIN_VMULESH:
16254 case ALTIVEC_BUILTIN_VMULESW:
16255 /* Even element flavors of vec_mul (unsigned). */
16256 case ALTIVEC_BUILTIN_VMULEUB:
16257 case ALTIVEC_BUILTIN_VMULEUH:
16258 case ALTIVEC_BUILTIN_VMULEUW:
16260 arg0 = gimple_call_arg (stmt, 0);
16261 arg1 = gimple_call_arg (stmt, 1);
16262 lhs = gimple_call_lhs (stmt);
16263 gimple *g = gimple_build_assign (lhs, VEC_WIDEN_MULT_EVEN_EXPR, arg0, arg1);
16264 gimple_set_location (g, gimple_location (stmt));
16265 gsi_replace (gsi, g, true);
16266 return true;
16268 /* Odd element flavors of vec_mul (signed). */
16269 case ALTIVEC_BUILTIN_VMULOSB:
16270 case ALTIVEC_BUILTIN_VMULOSH:
16271 case ALTIVEC_BUILTIN_VMULOSW:
16272 /* Odd element flavors of vec_mul (unsigned). */
16273 case ALTIVEC_BUILTIN_VMULOUB:
16274 case ALTIVEC_BUILTIN_VMULOUH:
16275 case ALTIVEC_BUILTIN_VMULOUW:
16277 arg0 = gimple_call_arg (stmt, 0);
16278 arg1 = gimple_call_arg (stmt, 1);
16279 lhs = gimple_call_lhs (stmt);
16280 gimple *g = gimple_build_assign (lhs, VEC_WIDEN_MULT_ODD_EXPR, arg0, arg1);
16281 gimple_set_location (g, gimple_location (stmt));
16282 gsi_replace (gsi, g, true);
16283 return true;
16285 /* Flavors of vec_div (Integer). */
16286 case VSX_BUILTIN_DIV_V2DI:
16287 case VSX_BUILTIN_UDIV_V2DI:
16289 arg0 = gimple_call_arg (stmt, 0);
16290 arg1 = gimple_call_arg (stmt, 1);
16291 lhs = gimple_call_lhs (stmt);
16292 gimple *g = gimple_build_assign (lhs, TRUNC_DIV_EXPR, arg0, arg1);
16293 gimple_set_location (g, gimple_location (stmt));
16294 gsi_replace (gsi, g, true);
16295 return true;
16297 /* Flavors of vec_div (Float). */
16298 case VSX_BUILTIN_XVDIVSP:
16299 case VSX_BUILTIN_XVDIVDP:
16301 arg0 = gimple_call_arg (stmt, 0);
16302 arg1 = gimple_call_arg (stmt, 1);
16303 lhs = gimple_call_lhs (stmt);
16304 gimple *g = gimple_build_assign (lhs, RDIV_EXPR, arg0, arg1);
16305 gimple_set_location (g, gimple_location (stmt));
16306 gsi_replace (gsi, g, true);
16307 return true;
16309 /* Flavors of vec_and. */
16310 case ALTIVEC_BUILTIN_VAND:
16312 arg0 = gimple_call_arg (stmt, 0);
16313 arg1 = gimple_call_arg (stmt, 1);
16314 lhs = gimple_call_lhs (stmt);
16315 gimple *g = gimple_build_assign (lhs, BIT_AND_EXPR, arg0, arg1);
16316 gimple_set_location (g, gimple_location (stmt));
16317 gsi_replace (gsi, g, true);
16318 return true;
16320 /* Flavors of vec_andc. */
16321 case ALTIVEC_BUILTIN_VANDC:
16323 arg0 = gimple_call_arg (stmt, 0);
16324 arg1 = gimple_call_arg (stmt, 1);
16325 lhs = gimple_call_lhs (stmt);
16326 tree temp = create_tmp_reg_or_ssa_name (TREE_TYPE (arg1));
16327 gimple *g = gimple_build_assign(temp, BIT_NOT_EXPR, arg1);
16328 gimple_set_location (g, gimple_location (stmt));
16329 gsi_insert_before(gsi, g, GSI_SAME_STMT);
16330 g = gimple_build_assign (lhs, BIT_AND_EXPR, arg0, temp);
16331 gimple_set_location (g, gimple_location (stmt));
16332 gsi_replace (gsi, g, true);
16333 return true;
16335 /* Flavors of vec_nand. */
16336 case P8V_BUILTIN_VEC_NAND:
16337 case P8V_BUILTIN_NAND_V16QI:
16338 case P8V_BUILTIN_NAND_V8HI:
16339 case P8V_BUILTIN_NAND_V4SI:
16340 case P8V_BUILTIN_NAND_V4SF:
16341 case P8V_BUILTIN_NAND_V2DF:
16342 case P8V_BUILTIN_NAND_V2DI:
16344 arg0 = gimple_call_arg (stmt, 0);
16345 arg1 = gimple_call_arg (stmt, 1);
16346 lhs = gimple_call_lhs (stmt);
16347 tree temp = create_tmp_reg_or_ssa_name (TREE_TYPE (arg1));
16348 gimple *g = gimple_build_assign(temp, BIT_AND_EXPR, arg0, arg1);
16349 gimple_set_location (g, gimple_location (stmt));
16350 gsi_insert_before(gsi, g, GSI_SAME_STMT);
16351 g = gimple_build_assign (lhs, BIT_NOT_EXPR, temp);
16352 gimple_set_location (g, gimple_location (stmt));
16353 gsi_replace (gsi, g, true);
16354 return true;
16356 /* Flavors of vec_or. */
16357 case ALTIVEC_BUILTIN_VOR:
16359 arg0 = gimple_call_arg (stmt, 0);
16360 arg1 = gimple_call_arg (stmt, 1);
16361 lhs = gimple_call_lhs (stmt);
16362 gimple *g = gimple_build_assign (lhs, BIT_IOR_EXPR, arg0, arg1);
16363 gimple_set_location (g, gimple_location (stmt));
16364 gsi_replace (gsi, g, true);
16365 return true;
16367 /* flavors of vec_orc. */
16368 case P8V_BUILTIN_ORC_V16QI:
16369 case P8V_BUILTIN_ORC_V8HI:
16370 case P8V_BUILTIN_ORC_V4SI:
16371 case P8V_BUILTIN_ORC_V4SF:
16372 case P8V_BUILTIN_ORC_V2DF:
16373 case P8V_BUILTIN_ORC_V2DI:
16375 arg0 = gimple_call_arg (stmt, 0);
16376 arg1 = gimple_call_arg (stmt, 1);
16377 lhs = gimple_call_lhs (stmt);
16378 tree temp = create_tmp_reg_or_ssa_name (TREE_TYPE (arg1));
16379 gimple *g = gimple_build_assign(temp, BIT_NOT_EXPR, arg1);
16380 gimple_set_location (g, gimple_location (stmt));
16381 gsi_insert_before(gsi, g, GSI_SAME_STMT);
16382 g = gimple_build_assign (lhs, BIT_IOR_EXPR, arg0, temp);
16383 gimple_set_location (g, gimple_location (stmt));
16384 gsi_replace (gsi, g, true);
16385 return true;
16387 /* Flavors of vec_xor. */
16388 case ALTIVEC_BUILTIN_VXOR:
16390 arg0 = gimple_call_arg (stmt, 0);
16391 arg1 = gimple_call_arg (stmt, 1);
16392 lhs = gimple_call_lhs (stmt);
16393 gimple *g = gimple_build_assign (lhs, BIT_XOR_EXPR, arg0, arg1);
16394 gimple_set_location (g, gimple_location (stmt));
16395 gsi_replace (gsi, g, true);
16396 return true;
16398 /* Flavors of vec_nor. */
16399 case ALTIVEC_BUILTIN_VNOR:
16401 arg0 = gimple_call_arg (stmt, 0);
16402 arg1 = gimple_call_arg (stmt, 1);
16403 lhs = gimple_call_lhs (stmt);
16404 tree temp = create_tmp_reg_or_ssa_name (TREE_TYPE (arg1));
16405 gimple *g = gimple_build_assign (temp, BIT_IOR_EXPR, arg0, arg1);
16406 gimple_set_location (g, gimple_location (stmt));
16407 gsi_insert_before(gsi, g, GSI_SAME_STMT);
16408 g = gimple_build_assign (lhs, BIT_NOT_EXPR, temp);
16409 gimple_set_location (g, gimple_location (stmt));
16410 gsi_replace (gsi, g, true);
16411 return true;
16413 /* flavors of vec_abs. */
16414 case ALTIVEC_BUILTIN_ABS_V16QI:
16415 case ALTIVEC_BUILTIN_ABS_V8HI:
16416 case ALTIVEC_BUILTIN_ABS_V4SI:
16417 case ALTIVEC_BUILTIN_ABS_V4SF:
16418 case P8V_BUILTIN_ABS_V2DI:
16419 case VSX_BUILTIN_XVABSDP:
16421 arg0 = gimple_call_arg (stmt, 0);
16422 if (INTEGRAL_TYPE_P (TREE_TYPE (TREE_TYPE (arg0)))
16423 && !TYPE_OVERFLOW_WRAPS (TREE_TYPE (TREE_TYPE (arg0))))
16424 return false;
16425 lhs = gimple_call_lhs (stmt);
16426 gimple *g = gimple_build_assign (lhs, ABS_EXPR, arg0);
16427 gimple_set_location (g, gimple_location (stmt));
16428 gsi_replace (gsi, g, true);
16429 return true;
16431 /* flavors of vec_min. */
16432 case VSX_BUILTIN_XVMINDP:
16433 case P8V_BUILTIN_VMINSD:
16434 case P8V_BUILTIN_VMINUD:
16435 case ALTIVEC_BUILTIN_VMINSB:
16436 case ALTIVEC_BUILTIN_VMINSH:
16437 case ALTIVEC_BUILTIN_VMINSW:
16438 case ALTIVEC_BUILTIN_VMINUB:
16439 case ALTIVEC_BUILTIN_VMINUH:
16440 case ALTIVEC_BUILTIN_VMINUW:
16441 case ALTIVEC_BUILTIN_VMINFP:
16443 arg0 = gimple_call_arg (stmt, 0);
16444 arg1 = gimple_call_arg (stmt, 1);
16445 lhs = gimple_call_lhs (stmt);
16446 gimple *g = gimple_build_assign (lhs, MIN_EXPR, arg0, arg1);
16447 gimple_set_location (g, gimple_location (stmt));
16448 gsi_replace (gsi, g, true);
16449 return true;
16451 /* flavors of vec_max. */
16452 case VSX_BUILTIN_XVMAXDP:
16453 case P8V_BUILTIN_VMAXSD:
16454 case P8V_BUILTIN_VMAXUD:
16455 case ALTIVEC_BUILTIN_VMAXSB:
16456 case ALTIVEC_BUILTIN_VMAXSH:
16457 case ALTIVEC_BUILTIN_VMAXSW:
16458 case ALTIVEC_BUILTIN_VMAXUB:
16459 case ALTIVEC_BUILTIN_VMAXUH:
16460 case ALTIVEC_BUILTIN_VMAXUW:
16461 case ALTIVEC_BUILTIN_VMAXFP:
16463 arg0 = gimple_call_arg (stmt, 0);
16464 arg1 = gimple_call_arg (stmt, 1);
16465 lhs = gimple_call_lhs (stmt);
16466 gimple *g = gimple_build_assign (lhs, MAX_EXPR, arg0, arg1);
16467 gimple_set_location (g, gimple_location (stmt));
16468 gsi_replace (gsi, g, true);
16469 return true;
16471 /* Flavors of vec_eqv. */
16472 case P8V_BUILTIN_EQV_V16QI:
16473 case P8V_BUILTIN_EQV_V8HI:
16474 case P8V_BUILTIN_EQV_V4SI:
16475 case P8V_BUILTIN_EQV_V4SF:
16476 case P8V_BUILTIN_EQV_V2DF:
16477 case P8V_BUILTIN_EQV_V2DI:
16479 arg0 = gimple_call_arg (stmt, 0);
16480 arg1 = gimple_call_arg (stmt, 1);
16481 lhs = gimple_call_lhs (stmt);
16482 tree temp = create_tmp_reg_or_ssa_name (TREE_TYPE (arg1));
16483 gimple *g = gimple_build_assign (temp, BIT_XOR_EXPR, arg0, arg1);
16484 gimple_set_location (g, gimple_location (stmt));
16485 gsi_insert_before (gsi, g, GSI_SAME_STMT);
16486 g = gimple_build_assign (lhs, BIT_NOT_EXPR, temp);
16487 gimple_set_location (g, gimple_location (stmt));
16488 gsi_replace (gsi, g, true);
16489 return true;
16491 /* Flavors of vec_rotate_left. */
16492 case ALTIVEC_BUILTIN_VRLB:
16493 case ALTIVEC_BUILTIN_VRLH:
16494 case ALTIVEC_BUILTIN_VRLW:
16495 case P8V_BUILTIN_VRLD:
16497 arg0 = gimple_call_arg (stmt, 0);
16498 arg1 = gimple_call_arg (stmt, 1);
16499 lhs = gimple_call_lhs (stmt);
16500 gimple *g = gimple_build_assign (lhs, LROTATE_EXPR, arg0, arg1);
16501 gimple_set_location (g, gimple_location (stmt));
16502 gsi_replace (gsi, g, true);
16503 return true;
16505 /* Flavors of vector shift right algebraic.
16506 vec_sra{b,h,w} -> vsra{b,h,w}. */
16507 case ALTIVEC_BUILTIN_VSRAB:
16508 case ALTIVEC_BUILTIN_VSRAH:
16509 case ALTIVEC_BUILTIN_VSRAW:
16510 case P8V_BUILTIN_VSRAD:
16512 arg0 = gimple_call_arg (stmt, 0);
16513 arg1 = gimple_call_arg (stmt, 1);
16514 lhs = gimple_call_lhs (stmt);
16515 gimple *g = gimple_build_assign (lhs, RSHIFT_EXPR, arg0, arg1);
16516 gimple_set_location (g, gimple_location (stmt));
16517 gsi_replace (gsi, g, true);
16518 return true;
16520 /* Flavors of vector shift left.
16521 builtin_altivec_vsl{b,h,w} -> vsl{b,h,w}. */
16522 case ALTIVEC_BUILTIN_VSLB:
16523 case ALTIVEC_BUILTIN_VSLH:
16524 case ALTIVEC_BUILTIN_VSLW:
16525 case P8V_BUILTIN_VSLD:
16527 arg0 = gimple_call_arg (stmt, 0);
16528 if (INTEGRAL_TYPE_P (TREE_TYPE (TREE_TYPE (arg0)))
16529 && !TYPE_OVERFLOW_WRAPS (TREE_TYPE (TREE_TYPE (arg0))))
16530 return false;
16531 arg1 = gimple_call_arg (stmt, 1);
16532 lhs = gimple_call_lhs (stmt);
16533 gimple *g = gimple_build_assign (lhs, LSHIFT_EXPR, arg0, arg1);
16534 gimple_set_location (g, gimple_location (stmt));
16535 gsi_replace (gsi, g, true);
16536 return true;
16538 /* Flavors of vector shift right. */
16539 case ALTIVEC_BUILTIN_VSRB:
16540 case ALTIVEC_BUILTIN_VSRH:
16541 case ALTIVEC_BUILTIN_VSRW:
16542 case P8V_BUILTIN_VSRD:
16544 arg0 = gimple_call_arg (stmt, 0);
16545 arg1 = gimple_call_arg (stmt, 1);
16546 lhs = gimple_call_lhs (stmt);
16547 gimple_seq stmts = NULL;
16548 /* Convert arg0 to unsigned. */
16549 tree arg0_unsigned
16550 = gimple_build (&stmts, VIEW_CONVERT_EXPR,
16551 unsigned_type_for (TREE_TYPE (arg0)), arg0);
16552 tree res
16553 = gimple_build (&stmts, RSHIFT_EXPR,
16554 TREE_TYPE (arg0_unsigned), arg0_unsigned, arg1);
16555 /* Convert result back to the lhs type. */
16556 res = gimple_build (&stmts, VIEW_CONVERT_EXPR, TREE_TYPE (lhs), res);
16557 gsi_insert_seq_before (gsi, stmts, GSI_SAME_STMT);
16558 update_call_from_tree (gsi, res);
16559 return true;
16561 /* Vector loads. */
16562 case ALTIVEC_BUILTIN_LVX_V16QI:
16563 case ALTIVEC_BUILTIN_LVX_V8HI:
16564 case ALTIVEC_BUILTIN_LVX_V4SI:
16565 case ALTIVEC_BUILTIN_LVX_V4SF:
16566 case ALTIVEC_BUILTIN_LVX_V2DI:
16567 case ALTIVEC_BUILTIN_LVX_V2DF:
16569 arg0 = gimple_call_arg (stmt, 0); // offset
16570 arg1 = gimple_call_arg (stmt, 1); // address
16571 /* Do not fold for -maltivec=be on LE targets. */
16572 if (VECTOR_ELT_ORDER_BIG && !BYTES_BIG_ENDIAN)
16573 return false;
16574 lhs = gimple_call_lhs (stmt);
16575 location_t loc = gimple_location (stmt);
16576 /* Since arg1 may be cast to a different type, just use ptr_type_node
16577 here instead of trying to enforce TBAA on pointer types. */
16578 tree arg1_type = ptr_type_node;
16579 tree lhs_type = TREE_TYPE (lhs);
16580 /* POINTER_PLUS_EXPR wants the offset to be of type 'sizetype'. Create
16581 the tree using the value from arg0. The resulting type will match
16582 the type of arg1. */
16583 gimple_seq stmts = NULL;
16584 tree temp_offset = gimple_convert (&stmts, loc, sizetype, arg0);
16585 tree temp_addr = gimple_build (&stmts, loc, POINTER_PLUS_EXPR,
16586 arg1_type, arg1, temp_offset);
16587 /* Mask off any lower bits from the address. */
16588 tree aligned_addr = gimple_build (&stmts, loc, BIT_AND_EXPR,
16589 arg1_type, temp_addr,
16590 build_int_cst (arg1_type, -16));
16591 gsi_insert_seq_before (gsi, stmts, GSI_SAME_STMT);
16592 /* Use the build2 helper to set up the mem_ref. The MEM_REF could also
16593 take an offset, but since we've already incorporated the offset
16594 above, here we just pass in a zero. */
16595 gimple *g;
16596 g = gimple_build_assign (lhs, build2 (MEM_REF, lhs_type, aligned_addr,
16597 build_int_cst (arg1_type, 0)));
16598 gimple_set_location (g, loc);
16599 gsi_replace (gsi, g, true);
16600 return true;
16602 /* Vector stores. */
16603 case ALTIVEC_BUILTIN_STVX_V16QI:
16604 case ALTIVEC_BUILTIN_STVX_V8HI:
16605 case ALTIVEC_BUILTIN_STVX_V4SI:
16606 case ALTIVEC_BUILTIN_STVX_V4SF:
16607 case ALTIVEC_BUILTIN_STVX_V2DI:
16608 case ALTIVEC_BUILTIN_STVX_V2DF:
16610 /* Do not fold for -maltivec=be on LE targets. */
16611 if (VECTOR_ELT_ORDER_BIG && !BYTES_BIG_ENDIAN)
16612 return false;
16613 arg0 = gimple_call_arg (stmt, 0); /* Value to be stored. */
16614 arg1 = gimple_call_arg (stmt, 1); /* Offset. */
16615 tree arg2 = gimple_call_arg (stmt, 2); /* Store-to address. */
16616 location_t loc = gimple_location (stmt);
16617 tree arg0_type = TREE_TYPE (arg0);
16618 /* Use ptr_type_node (no TBAA) for the arg2_type.
16619 FIXME: (Richard) "A proper fix would be to transition this type as
16620 seen from the frontend to GIMPLE, for example in a similar way we
16621 do for MEM_REFs by piggy-backing that on an extra argument, a
16622 constant zero pointer of the alias pointer type to use (which would
16623 also serve as a type indicator of the store itself). I'd use a
16624 target specific internal function for this (not sure if we can have
16625 those target specific, but I guess if it's folded away then that's
16626 fine) and get away with the overload set."
16628 tree arg2_type = ptr_type_node;
16629 /* POINTER_PLUS_EXPR wants the offset to be of type 'sizetype'. Create
16630 the tree using the value from arg0. The resulting type will match
16631 the type of arg2. */
16632 gimple_seq stmts = NULL;
16633 tree temp_offset = gimple_convert (&stmts, loc, sizetype, arg1);
16634 tree temp_addr = gimple_build (&stmts, loc, POINTER_PLUS_EXPR,
16635 arg2_type, arg2, temp_offset);
16636 /* Mask off any lower bits from the address. */
16637 tree aligned_addr = gimple_build (&stmts, loc, BIT_AND_EXPR,
16638 arg2_type, temp_addr,
16639 build_int_cst (arg2_type, -16));
16640 gsi_insert_seq_before (gsi, stmts, GSI_SAME_STMT);
16641 /* The desired gimple result should be similar to:
16642 MEM[(__vector floatD.1407 *)_1] = vf1D.2697; */
16643 gimple *g;
16644 g = gimple_build_assign (build2 (MEM_REF, arg0_type, aligned_addr,
16645 build_int_cst (arg2_type, 0)), arg0);
16646 gimple_set_location (g, loc);
16647 gsi_replace (gsi, g, true);
16648 return true;
16650 default:
16651 if (TARGET_DEBUG_BUILTIN)
16652 fprintf (stderr, "gimple builtin intrinsic not matched:%d %s %s\n",
16653 fn_code, fn_name1, fn_name2);
16654 break;
16657 return false;
16660 /* Expand an expression EXP that calls a built-in function,
16661 with result going to TARGET if that's convenient
16662 (and in mode MODE if that's convenient).
16663 SUBTARGET may be used as the target for computing one of EXP's operands.
16664 IGNORE is nonzero if the value is to be ignored. */
16666 static rtx
16667 rs6000_expand_builtin (tree exp, rtx target, rtx subtarget ATTRIBUTE_UNUSED,
16668 machine_mode mode ATTRIBUTE_UNUSED,
16669 int ignore ATTRIBUTE_UNUSED)
16671 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
16672 enum rs6000_builtins fcode
16673 = (enum rs6000_builtins)DECL_FUNCTION_CODE (fndecl);
16674 size_t uns_fcode = (size_t)fcode;
16675 const struct builtin_description *d;
16676 size_t i;
16677 rtx ret;
16678 bool success;
16679 HOST_WIDE_INT mask = rs6000_builtin_info[uns_fcode].mask;
16680 bool func_valid_p = ((rs6000_builtin_mask & mask) == mask);
16682 if (TARGET_DEBUG_BUILTIN)
16684 enum insn_code icode = rs6000_builtin_info[uns_fcode].icode;
16685 const char *name1 = rs6000_builtin_info[uns_fcode].name;
16686 const char *name2 = (icode != CODE_FOR_nothing)
16687 ? get_insn_name ((int) icode)
16688 : "nothing";
16689 const char *name3;
16691 switch (rs6000_builtin_info[uns_fcode].attr & RS6000_BTC_TYPE_MASK)
16693 default: name3 = "unknown"; break;
16694 case RS6000_BTC_SPECIAL: name3 = "special"; break;
16695 case RS6000_BTC_UNARY: name3 = "unary"; break;
16696 case RS6000_BTC_BINARY: name3 = "binary"; break;
16697 case RS6000_BTC_TERNARY: name3 = "ternary"; break;
16698 case RS6000_BTC_PREDICATE: name3 = "predicate"; break;
16699 case RS6000_BTC_ABS: name3 = "abs"; break;
16700 case RS6000_BTC_DST: name3 = "dst"; break;
16704 fprintf (stderr,
16705 "rs6000_expand_builtin, %s (%d), insn = %s (%d), type=%s%s\n",
16706 (name1) ? name1 : "---", fcode,
16707 (name2) ? name2 : "---", (int) icode,
16708 name3,
16709 func_valid_p ? "" : ", not valid");
16712 if (!func_valid_p)
16714 rs6000_invalid_builtin (fcode);
16716 /* Given it is invalid, just generate a normal call. */
16717 return expand_call (exp, target, ignore);
16720 switch (fcode)
16722 case RS6000_BUILTIN_RECIP:
16723 return rs6000_expand_binop_builtin (CODE_FOR_recipdf3, exp, target);
16725 case RS6000_BUILTIN_RECIPF:
16726 return rs6000_expand_binop_builtin (CODE_FOR_recipsf3, exp, target);
16728 case RS6000_BUILTIN_RSQRTF:
16729 return rs6000_expand_unop_builtin (CODE_FOR_rsqrtsf2, exp, target);
16731 case RS6000_BUILTIN_RSQRT:
16732 return rs6000_expand_unop_builtin (CODE_FOR_rsqrtdf2, exp, target);
16734 case POWER7_BUILTIN_BPERMD:
16735 return rs6000_expand_binop_builtin (((TARGET_64BIT)
16736 ? CODE_FOR_bpermd_di
16737 : CODE_FOR_bpermd_si), exp, target);
16739 case RS6000_BUILTIN_GET_TB:
16740 return rs6000_expand_zeroop_builtin (CODE_FOR_rs6000_get_timebase,
16741 target);
16743 case RS6000_BUILTIN_MFTB:
16744 return rs6000_expand_zeroop_builtin (((TARGET_64BIT)
16745 ? CODE_FOR_rs6000_mftb_di
16746 : CODE_FOR_rs6000_mftb_si),
16747 target);
16749 case RS6000_BUILTIN_MFFS:
16750 return rs6000_expand_zeroop_builtin (CODE_FOR_rs6000_mffs, target);
16752 case RS6000_BUILTIN_MTFSF:
16753 return rs6000_expand_mtfsf_builtin (CODE_FOR_rs6000_mtfsf, exp);
16755 case RS6000_BUILTIN_CPU_INIT:
16756 case RS6000_BUILTIN_CPU_IS:
16757 case RS6000_BUILTIN_CPU_SUPPORTS:
16758 return cpu_expand_builtin (fcode, exp, target);
16760 case ALTIVEC_BUILTIN_MASK_FOR_LOAD:
16761 case ALTIVEC_BUILTIN_MASK_FOR_STORE:
16763 int icode = (BYTES_BIG_ENDIAN ? (int) CODE_FOR_altivec_lvsr_direct
16764 : (int) CODE_FOR_altivec_lvsl_direct);
16765 machine_mode tmode = insn_data[icode].operand[0].mode;
16766 machine_mode mode = insn_data[icode].operand[1].mode;
16767 tree arg;
16768 rtx op, addr, pat;
16770 gcc_assert (TARGET_ALTIVEC);
16772 arg = CALL_EXPR_ARG (exp, 0);
16773 gcc_assert (POINTER_TYPE_P (TREE_TYPE (arg)));
16774 op = expand_expr (arg, NULL_RTX, Pmode, EXPAND_NORMAL);
16775 addr = memory_address (mode, op);
16776 if (fcode == ALTIVEC_BUILTIN_MASK_FOR_STORE)
16777 op = addr;
16778 else
16780 /* For the load case need to negate the address. */
16781 op = gen_reg_rtx (GET_MODE (addr));
16782 emit_insn (gen_rtx_SET (op, gen_rtx_NEG (GET_MODE (addr), addr)));
16784 op = gen_rtx_MEM (mode, op);
16786 if (target == 0
16787 || GET_MODE (target) != tmode
16788 || ! (*insn_data[icode].operand[0].predicate) (target, tmode))
16789 target = gen_reg_rtx (tmode);
16791 pat = GEN_FCN (icode) (target, op);
16792 if (!pat)
16793 return 0;
16794 emit_insn (pat);
16796 return target;
16799 case ALTIVEC_BUILTIN_VCFUX:
16800 case ALTIVEC_BUILTIN_VCFSX:
16801 case ALTIVEC_BUILTIN_VCTUXS:
16802 case ALTIVEC_BUILTIN_VCTSXS:
16803 /* FIXME: There's got to be a nicer way to handle this case than
16804 constructing a new CALL_EXPR. */
16805 if (call_expr_nargs (exp) == 1)
16807 exp = build_call_nary (TREE_TYPE (exp), CALL_EXPR_FN (exp),
16808 2, CALL_EXPR_ARG (exp, 0), integer_zero_node);
16810 break;
16812 default:
16813 break;
16816 if (TARGET_ALTIVEC)
16818 ret = altivec_expand_builtin (exp, target, &success);
16820 if (success)
16821 return ret;
16823 if (TARGET_PAIRED_FLOAT)
16825 ret = paired_expand_builtin (exp, target, &success);
16827 if (success)
16828 return ret;
16830 if (TARGET_HTM)
16832 ret = htm_expand_builtin (exp, target, &success);
16834 if (success)
16835 return ret;
16838 unsigned attr = rs6000_builtin_info[uns_fcode].attr & RS6000_BTC_TYPE_MASK;
16839 /* RS6000_BTC_SPECIAL represents no-operand operators. */
16840 gcc_assert (attr == RS6000_BTC_UNARY
16841 || attr == RS6000_BTC_BINARY
16842 || attr == RS6000_BTC_TERNARY
16843 || attr == RS6000_BTC_SPECIAL);
16845 /* Handle simple unary operations. */
16846 d = bdesc_1arg;
16847 for (i = 0; i < ARRAY_SIZE (bdesc_1arg); i++, d++)
16848 if (d->code == fcode)
16849 return rs6000_expand_unop_builtin (d->icode, exp, target);
16851 /* Handle simple binary operations. */
16852 d = bdesc_2arg;
16853 for (i = 0; i < ARRAY_SIZE (bdesc_2arg); i++, d++)
16854 if (d->code == fcode)
16855 return rs6000_expand_binop_builtin (d->icode, exp, target);
16857 /* Handle simple ternary operations. */
16858 d = bdesc_3arg;
16859 for (i = 0; i < ARRAY_SIZE (bdesc_3arg); i++, d++)
16860 if (d->code == fcode)
16861 return rs6000_expand_ternop_builtin (d->icode, exp, target);
16863 /* Handle simple no-argument operations. */
16864 d = bdesc_0arg;
16865 for (i = 0; i < ARRAY_SIZE (bdesc_0arg); i++, d++)
16866 if (d->code == fcode)
16867 return rs6000_expand_zeroop_builtin (d->icode, target);
16869 gcc_unreachable ();
16872 /* Create a builtin vector type with a name. Taking care not to give
16873 the canonical type a name. */
16875 static tree
16876 rs6000_vector_type (const char *name, tree elt_type, unsigned num_elts)
16878 tree result = build_vector_type (elt_type, num_elts);
16880 /* Copy so we don't give the canonical type a name. */
16881 result = build_variant_type_copy (result);
16883 add_builtin_type (name, result);
16885 return result;
16888 static void
16889 rs6000_init_builtins (void)
16891 tree tdecl;
16892 tree ftype;
16893 machine_mode mode;
16895 if (TARGET_DEBUG_BUILTIN)
16896 fprintf (stderr, "rs6000_init_builtins%s%s%s\n",
16897 (TARGET_PAIRED_FLOAT) ? ", paired" : "",
16898 (TARGET_ALTIVEC) ? ", altivec" : "",
16899 (TARGET_VSX) ? ", vsx" : "");
16901 V2SI_type_node = build_vector_type (intSI_type_node, 2);
16902 V2SF_type_node = build_vector_type (float_type_node, 2);
16903 V2DI_type_node = rs6000_vector_type (TARGET_POWERPC64 ? "__vector long"
16904 : "__vector long long",
16905 intDI_type_node, 2);
16906 V2DF_type_node = rs6000_vector_type ("__vector double", double_type_node, 2);
16907 V4SI_type_node = rs6000_vector_type ("__vector signed int",
16908 intSI_type_node, 4);
16909 V4SF_type_node = rs6000_vector_type ("__vector float", float_type_node, 4);
16910 V8HI_type_node = rs6000_vector_type ("__vector signed short",
16911 intHI_type_node, 8);
16912 V16QI_type_node = rs6000_vector_type ("__vector signed char",
16913 intQI_type_node, 16);
16915 unsigned_V16QI_type_node = rs6000_vector_type ("__vector unsigned char",
16916 unsigned_intQI_type_node, 16);
16917 unsigned_V8HI_type_node = rs6000_vector_type ("__vector unsigned short",
16918 unsigned_intHI_type_node, 8);
16919 unsigned_V4SI_type_node = rs6000_vector_type ("__vector unsigned int",
16920 unsigned_intSI_type_node, 4);
16921 unsigned_V2DI_type_node = rs6000_vector_type (TARGET_POWERPC64
16922 ? "__vector unsigned long"
16923 : "__vector unsigned long long",
16924 unsigned_intDI_type_node, 2);
16926 opaque_V2SF_type_node = build_opaque_vector_type (float_type_node, 2);
16927 opaque_V2SI_type_node = build_opaque_vector_type (intSI_type_node, 2);
16928 opaque_p_V2SI_type_node = build_pointer_type (opaque_V2SI_type_node);
16929 opaque_V4SI_type_node = build_opaque_vector_type (intSI_type_node, 4);
16931 const_str_type_node
16932 = build_pointer_type (build_qualified_type (char_type_node,
16933 TYPE_QUAL_CONST));
16935 /* We use V1TI mode as a special container to hold __int128_t items that
16936 must live in VSX registers. */
16937 if (intTI_type_node)
16939 V1TI_type_node = rs6000_vector_type ("__vector __int128",
16940 intTI_type_node, 1);
16941 unsigned_V1TI_type_node
16942 = rs6000_vector_type ("__vector unsigned __int128",
16943 unsigned_intTI_type_node, 1);
16946 /* The 'vector bool ...' types must be kept distinct from 'vector unsigned ...'
16947 types, especially in C++ land. Similarly, 'vector pixel' is distinct from
16948 'vector unsigned short'. */
16950 bool_char_type_node = build_distinct_type_copy (unsigned_intQI_type_node);
16951 bool_short_type_node = build_distinct_type_copy (unsigned_intHI_type_node);
16952 bool_int_type_node = build_distinct_type_copy (unsigned_intSI_type_node);
16953 bool_long_type_node = build_distinct_type_copy (unsigned_intDI_type_node);
16954 pixel_type_node = build_distinct_type_copy (unsigned_intHI_type_node);
16956 long_integer_type_internal_node = long_integer_type_node;
16957 long_unsigned_type_internal_node = long_unsigned_type_node;
16958 long_long_integer_type_internal_node = long_long_integer_type_node;
16959 long_long_unsigned_type_internal_node = long_long_unsigned_type_node;
16960 intQI_type_internal_node = intQI_type_node;
16961 uintQI_type_internal_node = unsigned_intQI_type_node;
16962 intHI_type_internal_node = intHI_type_node;
16963 uintHI_type_internal_node = unsigned_intHI_type_node;
16964 intSI_type_internal_node = intSI_type_node;
16965 uintSI_type_internal_node = unsigned_intSI_type_node;
16966 intDI_type_internal_node = intDI_type_node;
16967 uintDI_type_internal_node = unsigned_intDI_type_node;
16968 intTI_type_internal_node = intTI_type_node;
16969 uintTI_type_internal_node = unsigned_intTI_type_node;
16970 float_type_internal_node = float_type_node;
16971 double_type_internal_node = double_type_node;
16972 long_double_type_internal_node = long_double_type_node;
16973 dfloat64_type_internal_node = dfloat64_type_node;
16974 dfloat128_type_internal_node = dfloat128_type_node;
16975 void_type_internal_node = void_type_node;
16977 /* 128-bit floating point support. KFmode is IEEE 128-bit floating point.
16978 IFmode is the IBM extended 128-bit format that is a pair of doubles.
16979 TFmode will be either IEEE 128-bit floating point or the IBM double-double
16980 format that uses a pair of doubles, depending on the switches and
16981 defaults.
16983 If we don't support for either 128-bit IBM double double or IEEE 128-bit
16984 floating point, we need make sure the type is non-zero or else self-test
16985 fails during bootstrap.
16987 We don't register a built-in type for __ibm128 if the type is the same as
16988 long double. Instead we add a #define for __ibm128 in
16989 rs6000_cpu_cpp_builtins to long double.
16991 For IEEE 128-bit floating point, always create the type __ieee128. If the
16992 user used -mfloat128, rs6000-c.c will create a define from __float128 to
16993 __ieee128. */
16994 if (TARGET_LONG_DOUBLE_128 && FLOAT128_IEEE_P (TFmode))
16996 ibm128_float_type_node = make_node (REAL_TYPE);
16997 TYPE_PRECISION (ibm128_float_type_node) = 128;
16998 SET_TYPE_MODE (ibm128_float_type_node, IFmode);
16999 layout_type (ibm128_float_type_node);
17001 lang_hooks.types.register_builtin_type (ibm128_float_type_node,
17002 "__ibm128");
17004 else
17005 ibm128_float_type_node = long_double_type_node;
17007 if (TARGET_FLOAT128_TYPE)
17009 ieee128_float_type_node = float128_type_node;
17010 lang_hooks.types.register_builtin_type (ieee128_float_type_node,
17011 "__ieee128");
17014 else
17015 ieee128_float_type_node = long_double_type_node;
17017 /* Initialize the modes for builtin_function_type, mapping a machine mode to
17018 tree type node. */
17019 builtin_mode_to_type[QImode][0] = integer_type_node;
17020 builtin_mode_to_type[HImode][0] = integer_type_node;
17021 builtin_mode_to_type[SImode][0] = intSI_type_node;
17022 builtin_mode_to_type[SImode][1] = unsigned_intSI_type_node;
17023 builtin_mode_to_type[DImode][0] = intDI_type_node;
17024 builtin_mode_to_type[DImode][1] = unsigned_intDI_type_node;
17025 builtin_mode_to_type[TImode][0] = intTI_type_node;
17026 builtin_mode_to_type[TImode][1] = unsigned_intTI_type_node;
17027 builtin_mode_to_type[SFmode][0] = float_type_node;
17028 builtin_mode_to_type[DFmode][0] = double_type_node;
17029 builtin_mode_to_type[IFmode][0] = ibm128_float_type_node;
17030 builtin_mode_to_type[KFmode][0] = ieee128_float_type_node;
17031 builtin_mode_to_type[TFmode][0] = long_double_type_node;
17032 builtin_mode_to_type[DDmode][0] = dfloat64_type_node;
17033 builtin_mode_to_type[TDmode][0] = dfloat128_type_node;
17034 builtin_mode_to_type[V1TImode][0] = V1TI_type_node;
17035 builtin_mode_to_type[V1TImode][1] = unsigned_V1TI_type_node;
17036 builtin_mode_to_type[V2SImode][0] = V2SI_type_node;
17037 builtin_mode_to_type[V2SFmode][0] = V2SF_type_node;
17038 builtin_mode_to_type[V2DImode][0] = V2DI_type_node;
17039 builtin_mode_to_type[V2DImode][1] = unsigned_V2DI_type_node;
17040 builtin_mode_to_type[V2DFmode][0] = V2DF_type_node;
17041 builtin_mode_to_type[V4SImode][0] = V4SI_type_node;
17042 builtin_mode_to_type[V4SImode][1] = unsigned_V4SI_type_node;
17043 builtin_mode_to_type[V4SFmode][0] = V4SF_type_node;
17044 builtin_mode_to_type[V8HImode][0] = V8HI_type_node;
17045 builtin_mode_to_type[V8HImode][1] = unsigned_V8HI_type_node;
17046 builtin_mode_to_type[V16QImode][0] = V16QI_type_node;
17047 builtin_mode_to_type[V16QImode][1] = unsigned_V16QI_type_node;
17049 tdecl = add_builtin_type ("__bool char", bool_char_type_node);
17050 TYPE_NAME (bool_char_type_node) = tdecl;
17052 tdecl = add_builtin_type ("__bool short", bool_short_type_node);
17053 TYPE_NAME (bool_short_type_node) = tdecl;
17055 tdecl = add_builtin_type ("__bool int", bool_int_type_node);
17056 TYPE_NAME (bool_int_type_node) = tdecl;
17058 tdecl = add_builtin_type ("__pixel", pixel_type_node);
17059 TYPE_NAME (pixel_type_node) = tdecl;
17061 bool_V16QI_type_node = rs6000_vector_type ("__vector __bool char",
17062 bool_char_type_node, 16);
17063 bool_V8HI_type_node = rs6000_vector_type ("__vector __bool short",
17064 bool_short_type_node, 8);
17065 bool_V4SI_type_node = rs6000_vector_type ("__vector __bool int",
17066 bool_int_type_node, 4);
17067 bool_V2DI_type_node = rs6000_vector_type (TARGET_POWERPC64
17068 ? "__vector __bool long"
17069 : "__vector __bool long long",
17070 bool_long_type_node, 2);
17071 pixel_V8HI_type_node = rs6000_vector_type ("__vector __pixel",
17072 pixel_type_node, 8);
17074 /* Paired builtins are only available if you build a compiler with the
17075 appropriate options, so only create those builtins with the appropriate
17076 compiler option. Create Altivec and VSX builtins on machines with at
17077 least the general purpose extensions (970 and newer) to allow the use of
17078 the target attribute. */
17079 if (TARGET_PAIRED_FLOAT)
17080 paired_init_builtins ();
17081 if (TARGET_EXTRA_BUILTINS)
17082 altivec_init_builtins ();
17083 if (TARGET_HTM)
17084 htm_init_builtins ();
17086 if (TARGET_EXTRA_BUILTINS || TARGET_PAIRED_FLOAT)
17087 rs6000_common_init_builtins ();
17089 ftype = build_function_type_list (ieee128_float_type_node,
17090 const_str_type_node, NULL_TREE);
17091 def_builtin ("__builtin_nanq", ftype, RS6000_BUILTIN_NANQ);
17092 def_builtin ("__builtin_nansq", ftype, RS6000_BUILTIN_NANSQ);
17094 ftype = build_function_type_list (ieee128_float_type_node, NULL_TREE);
17095 def_builtin ("__builtin_infq", ftype, RS6000_BUILTIN_INFQ);
17096 def_builtin ("__builtin_huge_valq", ftype, RS6000_BUILTIN_HUGE_VALQ);
17098 ftype = builtin_function_type (DFmode, DFmode, DFmode, VOIDmode,
17099 RS6000_BUILTIN_RECIP, "__builtin_recipdiv");
17100 def_builtin ("__builtin_recipdiv", ftype, RS6000_BUILTIN_RECIP);
17102 ftype = builtin_function_type (SFmode, SFmode, SFmode, VOIDmode,
17103 RS6000_BUILTIN_RECIPF, "__builtin_recipdivf");
17104 def_builtin ("__builtin_recipdivf", ftype, RS6000_BUILTIN_RECIPF);
17106 ftype = builtin_function_type (DFmode, DFmode, VOIDmode, VOIDmode,
17107 RS6000_BUILTIN_RSQRT, "__builtin_rsqrt");
17108 def_builtin ("__builtin_rsqrt", ftype, RS6000_BUILTIN_RSQRT);
17110 ftype = builtin_function_type (SFmode, SFmode, VOIDmode, VOIDmode,
17111 RS6000_BUILTIN_RSQRTF, "__builtin_rsqrtf");
17112 def_builtin ("__builtin_rsqrtf", ftype, RS6000_BUILTIN_RSQRTF);
17114 mode = (TARGET_64BIT) ? DImode : SImode;
17115 ftype = builtin_function_type (mode, mode, mode, VOIDmode,
17116 POWER7_BUILTIN_BPERMD, "__builtin_bpermd");
17117 def_builtin ("__builtin_bpermd", ftype, POWER7_BUILTIN_BPERMD);
17119 ftype = build_function_type_list (unsigned_intDI_type_node,
17120 NULL_TREE);
17121 def_builtin ("__builtin_ppc_get_timebase", ftype, RS6000_BUILTIN_GET_TB);
17123 if (TARGET_64BIT)
17124 ftype = build_function_type_list (unsigned_intDI_type_node,
17125 NULL_TREE);
17126 else
17127 ftype = build_function_type_list (unsigned_intSI_type_node,
17128 NULL_TREE);
17129 def_builtin ("__builtin_ppc_mftb", ftype, RS6000_BUILTIN_MFTB);
17131 ftype = build_function_type_list (double_type_node, NULL_TREE);
17132 def_builtin ("__builtin_mffs", ftype, RS6000_BUILTIN_MFFS);
17134 ftype = build_function_type_list (void_type_node,
17135 intSI_type_node, double_type_node,
17136 NULL_TREE);
17137 def_builtin ("__builtin_mtfsf", ftype, RS6000_BUILTIN_MTFSF);
17139 ftype = build_function_type_list (void_type_node, NULL_TREE);
17140 def_builtin ("__builtin_cpu_init", ftype, RS6000_BUILTIN_CPU_INIT);
17142 ftype = build_function_type_list (bool_int_type_node, const_ptr_type_node,
17143 NULL_TREE);
17144 def_builtin ("__builtin_cpu_is", ftype, RS6000_BUILTIN_CPU_IS);
17145 def_builtin ("__builtin_cpu_supports", ftype, RS6000_BUILTIN_CPU_SUPPORTS);
17147 /* AIX libm provides clog as __clog. */
17148 if (TARGET_XCOFF &&
17149 (tdecl = builtin_decl_explicit (BUILT_IN_CLOG)) != NULL_TREE)
17150 set_user_assembler_name (tdecl, "__clog");
17152 #ifdef SUBTARGET_INIT_BUILTINS
17153 SUBTARGET_INIT_BUILTINS;
17154 #endif
17157 /* Returns the rs6000 builtin decl for CODE. */
17159 static tree
17160 rs6000_builtin_decl (unsigned code, bool initialize_p ATTRIBUTE_UNUSED)
17162 HOST_WIDE_INT fnmask;
17164 if (code >= RS6000_BUILTIN_COUNT)
17165 return error_mark_node;
17167 fnmask = rs6000_builtin_info[code].mask;
17168 if ((fnmask & rs6000_builtin_mask) != fnmask)
17170 rs6000_invalid_builtin ((enum rs6000_builtins)code);
17171 return error_mark_node;
17174 return rs6000_builtin_decls[code];
17177 static void
17178 paired_init_builtins (void)
17180 const struct builtin_description *d;
17181 size_t i;
17182 HOST_WIDE_INT builtin_mask = rs6000_builtin_mask;
17184 tree int_ftype_int_v2sf_v2sf
17185 = build_function_type_list (integer_type_node,
17186 integer_type_node,
17187 V2SF_type_node,
17188 V2SF_type_node,
17189 NULL_TREE);
17190 tree pcfloat_type_node =
17191 build_pointer_type (build_qualified_type
17192 (float_type_node, TYPE_QUAL_CONST));
17194 tree v2sf_ftype_long_pcfloat = build_function_type_list (V2SF_type_node,
17195 long_integer_type_node,
17196 pcfloat_type_node,
17197 NULL_TREE);
17198 tree void_ftype_v2sf_long_pcfloat =
17199 build_function_type_list (void_type_node,
17200 V2SF_type_node,
17201 long_integer_type_node,
17202 pcfloat_type_node,
17203 NULL_TREE);
17206 def_builtin ("__builtin_paired_lx", v2sf_ftype_long_pcfloat,
17207 PAIRED_BUILTIN_LX);
17210 def_builtin ("__builtin_paired_stx", void_ftype_v2sf_long_pcfloat,
17211 PAIRED_BUILTIN_STX);
17213 /* Predicates. */
17214 d = bdesc_paired_preds;
17215 for (i = 0; i < ARRAY_SIZE (bdesc_paired_preds); ++i, d++)
17217 tree type;
17218 HOST_WIDE_INT mask = d->mask;
17220 if ((mask & builtin_mask) != mask)
17222 if (TARGET_DEBUG_BUILTIN)
17223 fprintf (stderr, "paired_init_builtins, skip predicate %s\n",
17224 d->name);
17225 continue;
17228 /* Cannot define builtin if the instruction is disabled. */
17229 gcc_assert (d->icode != CODE_FOR_nothing);
17231 if (TARGET_DEBUG_BUILTIN)
17232 fprintf (stderr, "paired pred #%d, insn = %s [%d], mode = %s\n",
17233 (int)i, get_insn_name (d->icode), (int)d->icode,
17234 GET_MODE_NAME (insn_data[d->icode].operand[1].mode));
17236 switch (insn_data[d->icode].operand[1].mode)
17238 case E_V2SFmode:
17239 type = int_ftype_int_v2sf_v2sf;
17240 break;
17241 default:
17242 gcc_unreachable ();
17245 def_builtin (d->name, type, d->code);
17249 static void
17250 altivec_init_builtins (void)
17252 const struct builtin_description *d;
17253 size_t i;
17254 tree ftype;
17255 tree decl;
17256 HOST_WIDE_INT builtin_mask = rs6000_builtin_mask;
17258 tree pvoid_type_node = build_pointer_type (void_type_node);
17260 tree pcvoid_type_node
17261 = build_pointer_type (build_qualified_type (void_type_node,
17262 TYPE_QUAL_CONST));
17264 tree int_ftype_opaque
17265 = build_function_type_list (integer_type_node,
17266 opaque_V4SI_type_node, NULL_TREE);
17267 tree opaque_ftype_opaque
17268 = build_function_type_list (integer_type_node, NULL_TREE);
17269 tree opaque_ftype_opaque_int
17270 = build_function_type_list (opaque_V4SI_type_node,
17271 opaque_V4SI_type_node, integer_type_node, NULL_TREE);
17272 tree opaque_ftype_opaque_opaque_int
17273 = build_function_type_list (opaque_V4SI_type_node,
17274 opaque_V4SI_type_node, opaque_V4SI_type_node,
17275 integer_type_node, NULL_TREE);
17276 tree opaque_ftype_opaque_opaque_opaque
17277 = build_function_type_list (opaque_V4SI_type_node,
17278 opaque_V4SI_type_node, opaque_V4SI_type_node,
17279 opaque_V4SI_type_node, NULL_TREE);
17280 tree opaque_ftype_opaque_opaque
17281 = build_function_type_list (opaque_V4SI_type_node,
17282 opaque_V4SI_type_node, opaque_V4SI_type_node,
17283 NULL_TREE);
17284 tree int_ftype_int_opaque_opaque
17285 = build_function_type_list (integer_type_node,
17286 integer_type_node, opaque_V4SI_type_node,
17287 opaque_V4SI_type_node, NULL_TREE);
17288 tree int_ftype_int_v4si_v4si
17289 = build_function_type_list (integer_type_node,
17290 integer_type_node, V4SI_type_node,
17291 V4SI_type_node, NULL_TREE);
17292 tree int_ftype_int_v2di_v2di
17293 = build_function_type_list (integer_type_node,
17294 integer_type_node, V2DI_type_node,
17295 V2DI_type_node, NULL_TREE);
17296 tree void_ftype_v4si
17297 = build_function_type_list (void_type_node, V4SI_type_node, NULL_TREE);
17298 tree v8hi_ftype_void
17299 = build_function_type_list (V8HI_type_node, NULL_TREE);
17300 tree void_ftype_void
17301 = build_function_type_list (void_type_node, NULL_TREE);
17302 tree void_ftype_int
17303 = build_function_type_list (void_type_node, integer_type_node, NULL_TREE);
17305 tree opaque_ftype_long_pcvoid
17306 = build_function_type_list (opaque_V4SI_type_node,
17307 long_integer_type_node, pcvoid_type_node,
17308 NULL_TREE);
17309 tree v16qi_ftype_long_pcvoid
17310 = build_function_type_list (V16QI_type_node,
17311 long_integer_type_node, pcvoid_type_node,
17312 NULL_TREE);
17313 tree v8hi_ftype_long_pcvoid
17314 = build_function_type_list (V8HI_type_node,
17315 long_integer_type_node, pcvoid_type_node,
17316 NULL_TREE);
17317 tree v4si_ftype_long_pcvoid
17318 = build_function_type_list (V4SI_type_node,
17319 long_integer_type_node, pcvoid_type_node,
17320 NULL_TREE);
17321 tree v4sf_ftype_long_pcvoid
17322 = build_function_type_list (V4SF_type_node,
17323 long_integer_type_node, pcvoid_type_node,
17324 NULL_TREE);
17325 tree v2df_ftype_long_pcvoid
17326 = build_function_type_list (V2DF_type_node,
17327 long_integer_type_node, pcvoid_type_node,
17328 NULL_TREE);
17329 tree v2di_ftype_long_pcvoid
17330 = build_function_type_list (V2DI_type_node,
17331 long_integer_type_node, pcvoid_type_node,
17332 NULL_TREE);
17334 tree void_ftype_opaque_long_pvoid
17335 = build_function_type_list (void_type_node,
17336 opaque_V4SI_type_node, long_integer_type_node,
17337 pvoid_type_node, NULL_TREE);
17338 tree void_ftype_v4si_long_pvoid
17339 = build_function_type_list (void_type_node,
17340 V4SI_type_node, long_integer_type_node,
17341 pvoid_type_node, NULL_TREE);
17342 tree void_ftype_v16qi_long_pvoid
17343 = build_function_type_list (void_type_node,
17344 V16QI_type_node, long_integer_type_node,
17345 pvoid_type_node, NULL_TREE);
17347 tree void_ftype_v16qi_pvoid_long
17348 = build_function_type_list (void_type_node,
17349 V16QI_type_node, pvoid_type_node,
17350 long_integer_type_node, NULL_TREE);
17352 tree void_ftype_v8hi_long_pvoid
17353 = build_function_type_list (void_type_node,
17354 V8HI_type_node, long_integer_type_node,
17355 pvoid_type_node, NULL_TREE);
17356 tree void_ftype_v4sf_long_pvoid
17357 = build_function_type_list (void_type_node,
17358 V4SF_type_node, long_integer_type_node,
17359 pvoid_type_node, NULL_TREE);
17360 tree void_ftype_v2df_long_pvoid
17361 = build_function_type_list (void_type_node,
17362 V2DF_type_node, long_integer_type_node,
17363 pvoid_type_node, NULL_TREE);
17364 tree void_ftype_v2di_long_pvoid
17365 = build_function_type_list (void_type_node,
17366 V2DI_type_node, long_integer_type_node,
17367 pvoid_type_node, NULL_TREE);
17368 tree int_ftype_int_v8hi_v8hi
17369 = build_function_type_list (integer_type_node,
17370 integer_type_node, V8HI_type_node,
17371 V8HI_type_node, NULL_TREE);
17372 tree int_ftype_int_v16qi_v16qi
17373 = build_function_type_list (integer_type_node,
17374 integer_type_node, V16QI_type_node,
17375 V16QI_type_node, NULL_TREE);
17376 tree int_ftype_int_v4sf_v4sf
17377 = build_function_type_list (integer_type_node,
17378 integer_type_node, V4SF_type_node,
17379 V4SF_type_node, NULL_TREE);
17380 tree int_ftype_int_v2df_v2df
17381 = build_function_type_list (integer_type_node,
17382 integer_type_node, V2DF_type_node,
17383 V2DF_type_node, NULL_TREE);
17384 tree v2di_ftype_v2di
17385 = build_function_type_list (V2DI_type_node, V2DI_type_node, NULL_TREE);
17386 tree v4si_ftype_v4si
17387 = build_function_type_list (V4SI_type_node, V4SI_type_node, NULL_TREE);
17388 tree v8hi_ftype_v8hi
17389 = build_function_type_list (V8HI_type_node, V8HI_type_node, NULL_TREE);
17390 tree v16qi_ftype_v16qi
17391 = build_function_type_list (V16QI_type_node, V16QI_type_node, NULL_TREE);
17392 tree v4sf_ftype_v4sf
17393 = build_function_type_list (V4SF_type_node, V4SF_type_node, NULL_TREE);
17394 tree v2df_ftype_v2df
17395 = build_function_type_list (V2DF_type_node, V2DF_type_node, NULL_TREE);
17396 tree void_ftype_pcvoid_int_int
17397 = build_function_type_list (void_type_node,
17398 pcvoid_type_node, integer_type_node,
17399 integer_type_node, NULL_TREE);
17401 def_builtin ("__builtin_altivec_mtvscr", void_ftype_v4si, ALTIVEC_BUILTIN_MTVSCR);
17402 def_builtin ("__builtin_altivec_mfvscr", v8hi_ftype_void, ALTIVEC_BUILTIN_MFVSCR);
17403 def_builtin ("__builtin_altivec_dssall", void_ftype_void, ALTIVEC_BUILTIN_DSSALL);
17404 def_builtin ("__builtin_altivec_dss", void_ftype_int, ALTIVEC_BUILTIN_DSS);
17405 def_builtin ("__builtin_altivec_lvsl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVSL);
17406 def_builtin ("__builtin_altivec_lvsr", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVSR);
17407 def_builtin ("__builtin_altivec_lvebx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVEBX);
17408 def_builtin ("__builtin_altivec_lvehx", v8hi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVEHX);
17409 def_builtin ("__builtin_altivec_lvewx", v4si_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVEWX);
17410 def_builtin ("__builtin_altivec_lvxl", v4si_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVXL);
17411 def_builtin ("__builtin_altivec_lvxl_v2df", v2df_ftype_long_pcvoid,
17412 ALTIVEC_BUILTIN_LVXL_V2DF);
17413 def_builtin ("__builtin_altivec_lvxl_v2di", v2di_ftype_long_pcvoid,
17414 ALTIVEC_BUILTIN_LVXL_V2DI);
17415 def_builtin ("__builtin_altivec_lvxl_v4sf", v4sf_ftype_long_pcvoid,
17416 ALTIVEC_BUILTIN_LVXL_V4SF);
17417 def_builtin ("__builtin_altivec_lvxl_v4si", v4si_ftype_long_pcvoid,
17418 ALTIVEC_BUILTIN_LVXL_V4SI);
17419 def_builtin ("__builtin_altivec_lvxl_v8hi", v8hi_ftype_long_pcvoid,
17420 ALTIVEC_BUILTIN_LVXL_V8HI);
17421 def_builtin ("__builtin_altivec_lvxl_v16qi", v16qi_ftype_long_pcvoid,
17422 ALTIVEC_BUILTIN_LVXL_V16QI);
17423 def_builtin ("__builtin_altivec_lvx", v4si_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVX);
17424 def_builtin ("__builtin_altivec_lvx_v2df", v2df_ftype_long_pcvoid,
17425 ALTIVEC_BUILTIN_LVX_V2DF);
17426 def_builtin ("__builtin_altivec_lvx_v2di", v2di_ftype_long_pcvoid,
17427 ALTIVEC_BUILTIN_LVX_V2DI);
17428 def_builtin ("__builtin_altivec_lvx_v4sf", v4sf_ftype_long_pcvoid,
17429 ALTIVEC_BUILTIN_LVX_V4SF);
17430 def_builtin ("__builtin_altivec_lvx_v4si", v4si_ftype_long_pcvoid,
17431 ALTIVEC_BUILTIN_LVX_V4SI);
17432 def_builtin ("__builtin_altivec_lvx_v8hi", v8hi_ftype_long_pcvoid,
17433 ALTIVEC_BUILTIN_LVX_V8HI);
17434 def_builtin ("__builtin_altivec_lvx_v16qi", v16qi_ftype_long_pcvoid,
17435 ALTIVEC_BUILTIN_LVX_V16QI);
17436 def_builtin ("__builtin_altivec_stvx", void_ftype_v4si_long_pvoid, ALTIVEC_BUILTIN_STVX);
17437 def_builtin ("__builtin_altivec_stvx_v2df", void_ftype_v2df_long_pvoid,
17438 ALTIVEC_BUILTIN_STVX_V2DF);
17439 def_builtin ("__builtin_altivec_stvx_v2di", void_ftype_v2di_long_pvoid,
17440 ALTIVEC_BUILTIN_STVX_V2DI);
17441 def_builtin ("__builtin_altivec_stvx_v4sf", void_ftype_v4sf_long_pvoid,
17442 ALTIVEC_BUILTIN_STVX_V4SF);
17443 def_builtin ("__builtin_altivec_stvx_v4si", void_ftype_v4si_long_pvoid,
17444 ALTIVEC_BUILTIN_STVX_V4SI);
17445 def_builtin ("__builtin_altivec_stvx_v8hi", void_ftype_v8hi_long_pvoid,
17446 ALTIVEC_BUILTIN_STVX_V8HI);
17447 def_builtin ("__builtin_altivec_stvx_v16qi", void_ftype_v16qi_long_pvoid,
17448 ALTIVEC_BUILTIN_STVX_V16QI);
17449 def_builtin ("__builtin_altivec_stvewx", void_ftype_v4si_long_pvoid, ALTIVEC_BUILTIN_STVEWX);
17450 def_builtin ("__builtin_altivec_stvxl", void_ftype_v4si_long_pvoid, ALTIVEC_BUILTIN_STVXL);
17451 def_builtin ("__builtin_altivec_stvxl_v2df", void_ftype_v2df_long_pvoid,
17452 ALTIVEC_BUILTIN_STVXL_V2DF);
17453 def_builtin ("__builtin_altivec_stvxl_v2di", void_ftype_v2di_long_pvoid,
17454 ALTIVEC_BUILTIN_STVXL_V2DI);
17455 def_builtin ("__builtin_altivec_stvxl_v4sf", void_ftype_v4sf_long_pvoid,
17456 ALTIVEC_BUILTIN_STVXL_V4SF);
17457 def_builtin ("__builtin_altivec_stvxl_v4si", void_ftype_v4si_long_pvoid,
17458 ALTIVEC_BUILTIN_STVXL_V4SI);
17459 def_builtin ("__builtin_altivec_stvxl_v8hi", void_ftype_v8hi_long_pvoid,
17460 ALTIVEC_BUILTIN_STVXL_V8HI);
17461 def_builtin ("__builtin_altivec_stvxl_v16qi", void_ftype_v16qi_long_pvoid,
17462 ALTIVEC_BUILTIN_STVXL_V16QI);
17463 def_builtin ("__builtin_altivec_stvebx", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_STVEBX);
17464 def_builtin ("__builtin_altivec_stvehx", void_ftype_v8hi_long_pvoid, ALTIVEC_BUILTIN_STVEHX);
17465 def_builtin ("__builtin_vec_ld", opaque_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LD);
17466 def_builtin ("__builtin_vec_lde", opaque_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LDE);
17467 def_builtin ("__builtin_vec_ldl", opaque_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LDL);
17468 def_builtin ("__builtin_vec_lvsl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVSL);
17469 def_builtin ("__builtin_vec_lvsr", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVSR);
17470 def_builtin ("__builtin_vec_lvebx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVEBX);
17471 def_builtin ("__builtin_vec_lvehx", v8hi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVEHX);
17472 def_builtin ("__builtin_vec_lvewx", v4si_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVEWX);
17473 def_builtin ("__builtin_vec_st", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_ST);
17474 def_builtin ("__builtin_vec_ste", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_STE);
17475 def_builtin ("__builtin_vec_stl", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_STL);
17476 def_builtin ("__builtin_vec_stvewx", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_STVEWX);
17477 def_builtin ("__builtin_vec_stvebx", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_STVEBX);
17478 def_builtin ("__builtin_vec_stvehx", void_ftype_opaque_long_pvoid, ALTIVEC_BUILTIN_VEC_STVEHX);
17480 def_builtin ("__builtin_vsx_lxvd2x_v2df", v2df_ftype_long_pcvoid,
17481 VSX_BUILTIN_LXVD2X_V2DF);
17482 def_builtin ("__builtin_vsx_lxvd2x_v2di", v2di_ftype_long_pcvoid,
17483 VSX_BUILTIN_LXVD2X_V2DI);
17484 def_builtin ("__builtin_vsx_lxvw4x_v4sf", v4sf_ftype_long_pcvoid,
17485 VSX_BUILTIN_LXVW4X_V4SF);
17486 def_builtin ("__builtin_vsx_lxvw4x_v4si", v4si_ftype_long_pcvoid,
17487 VSX_BUILTIN_LXVW4X_V4SI);
17488 def_builtin ("__builtin_vsx_lxvw4x_v8hi", v8hi_ftype_long_pcvoid,
17489 VSX_BUILTIN_LXVW4X_V8HI);
17490 def_builtin ("__builtin_vsx_lxvw4x_v16qi", v16qi_ftype_long_pcvoid,
17491 VSX_BUILTIN_LXVW4X_V16QI);
17492 def_builtin ("__builtin_vsx_stxvd2x_v2df", void_ftype_v2df_long_pvoid,
17493 VSX_BUILTIN_STXVD2X_V2DF);
17494 def_builtin ("__builtin_vsx_stxvd2x_v2di", void_ftype_v2di_long_pvoid,
17495 VSX_BUILTIN_STXVD2X_V2DI);
17496 def_builtin ("__builtin_vsx_stxvw4x_v4sf", void_ftype_v4sf_long_pvoid,
17497 VSX_BUILTIN_STXVW4X_V4SF);
17498 def_builtin ("__builtin_vsx_stxvw4x_v4si", void_ftype_v4si_long_pvoid,
17499 VSX_BUILTIN_STXVW4X_V4SI);
17500 def_builtin ("__builtin_vsx_stxvw4x_v8hi", void_ftype_v8hi_long_pvoid,
17501 VSX_BUILTIN_STXVW4X_V8HI);
17502 def_builtin ("__builtin_vsx_stxvw4x_v16qi", void_ftype_v16qi_long_pvoid,
17503 VSX_BUILTIN_STXVW4X_V16QI);
17505 def_builtin ("__builtin_vsx_ld_elemrev_v2df", v2df_ftype_long_pcvoid,
17506 VSX_BUILTIN_LD_ELEMREV_V2DF);
17507 def_builtin ("__builtin_vsx_ld_elemrev_v2di", v2di_ftype_long_pcvoid,
17508 VSX_BUILTIN_LD_ELEMREV_V2DI);
17509 def_builtin ("__builtin_vsx_ld_elemrev_v4sf", v4sf_ftype_long_pcvoid,
17510 VSX_BUILTIN_LD_ELEMREV_V4SF);
17511 def_builtin ("__builtin_vsx_ld_elemrev_v4si", v4si_ftype_long_pcvoid,
17512 VSX_BUILTIN_LD_ELEMREV_V4SI);
17513 def_builtin ("__builtin_vsx_st_elemrev_v2df", void_ftype_v2df_long_pvoid,
17514 VSX_BUILTIN_ST_ELEMREV_V2DF);
17515 def_builtin ("__builtin_vsx_st_elemrev_v2di", void_ftype_v2di_long_pvoid,
17516 VSX_BUILTIN_ST_ELEMREV_V2DI);
17517 def_builtin ("__builtin_vsx_st_elemrev_v4sf", void_ftype_v4sf_long_pvoid,
17518 VSX_BUILTIN_ST_ELEMREV_V4SF);
17519 def_builtin ("__builtin_vsx_st_elemrev_v4si", void_ftype_v4si_long_pvoid,
17520 VSX_BUILTIN_ST_ELEMREV_V4SI);
17522 def_builtin ("__builtin_vsx_le_be_v8hi", v8hi_ftype_long_pcvoid,
17523 VSX_BUILTIN_XL_BE_V8HI);
17524 def_builtin ("__builtin_vsx_le_be_v4si", v4si_ftype_long_pcvoid,
17525 VSX_BUILTIN_XL_BE_V4SI);
17526 def_builtin ("__builtin_vsx_le_be_v2di", v2di_ftype_long_pcvoid,
17527 VSX_BUILTIN_XL_BE_V2DI);
17528 def_builtin ("__builtin_vsx_le_be_v4sf", v4sf_ftype_long_pcvoid,
17529 VSX_BUILTIN_XL_BE_V4SF);
17530 def_builtin ("__builtin_vsx_le_be_v2df", v2df_ftype_long_pcvoid,
17531 VSX_BUILTIN_XL_BE_V2DF);
17532 def_builtin ("__builtin_vsx_le_be_v16qi", v16qi_ftype_long_pcvoid,
17533 VSX_BUILTIN_XL_BE_V16QI);
17535 if (TARGET_P9_VECTOR)
17537 def_builtin ("__builtin_vsx_ld_elemrev_v8hi", v8hi_ftype_long_pcvoid,
17538 VSX_BUILTIN_LD_ELEMREV_V8HI);
17539 def_builtin ("__builtin_vsx_ld_elemrev_v16qi", v16qi_ftype_long_pcvoid,
17540 VSX_BUILTIN_LD_ELEMREV_V16QI);
17541 def_builtin ("__builtin_vsx_st_elemrev_v8hi",
17542 void_ftype_v8hi_long_pvoid, VSX_BUILTIN_ST_ELEMREV_V8HI);
17543 def_builtin ("__builtin_vsx_st_elemrev_v16qi",
17544 void_ftype_v16qi_long_pvoid, VSX_BUILTIN_ST_ELEMREV_V16QI);
17546 else
17548 rs6000_builtin_decls[(int) VSX_BUILTIN_LD_ELEMREV_V8HI]
17549 = rs6000_builtin_decls[(int) VSX_BUILTIN_LXVW4X_V8HI];
17550 rs6000_builtin_decls[(int) VSX_BUILTIN_LD_ELEMREV_V16QI]
17551 = rs6000_builtin_decls[(int) VSX_BUILTIN_LXVW4X_V16QI];
17552 rs6000_builtin_decls[(int) VSX_BUILTIN_ST_ELEMREV_V8HI]
17553 = rs6000_builtin_decls[(int) VSX_BUILTIN_STXVW4X_V8HI];
17554 rs6000_builtin_decls[(int) VSX_BUILTIN_ST_ELEMREV_V16QI]
17555 = rs6000_builtin_decls[(int) VSX_BUILTIN_STXVW4X_V16QI];
17558 def_builtin ("__builtin_vec_vsx_ld", opaque_ftype_long_pcvoid,
17559 VSX_BUILTIN_VEC_LD);
17560 def_builtin ("__builtin_vec_vsx_st", void_ftype_opaque_long_pvoid,
17561 VSX_BUILTIN_VEC_ST);
17562 def_builtin ("__builtin_vec_xl", opaque_ftype_long_pcvoid,
17563 VSX_BUILTIN_VEC_XL);
17564 def_builtin ("__builtin_vec_xl_be", opaque_ftype_long_pcvoid,
17565 VSX_BUILTIN_VEC_XL_BE);
17566 def_builtin ("__builtin_vec_xst", void_ftype_opaque_long_pvoid,
17567 VSX_BUILTIN_VEC_XST);
17569 def_builtin ("__builtin_vec_step", int_ftype_opaque, ALTIVEC_BUILTIN_VEC_STEP);
17570 def_builtin ("__builtin_vec_splats", opaque_ftype_opaque, ALTIVEC_BUILTIN_VEC_SPLATS);
17571 def_builtin ("__builtin_vec_promote", opaque_ftype_opaque, ALTIVEC_BUILTIN_VEC_PROMOTE);
17573 def_builtin ("__builtin_vec_sld", opaque_ftype_opaque_opaque_int, ALTIVEC_BUILTIN_VEC_SLD);
17574 def_builtin ("__builtin_vec_splat", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_SPLAT);
17575 def_builtin ("__builtin_vec_extract", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_EXTRACT);
17576 def_builtin ("__builtin_vec_insert", opaque_ftype_opaque_opaque_int, ALTIVEC_BUILTIN_VEC_INSERT);
17577 def_builtin ("__builtin_vec_vspltw", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_VSPLTW);
17578 def_builtin ("__builtin_vec_vsplth", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_VSPLTH);
17579 def_builtin ("__builtin_vec_vspltb", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_VSPLTB);
17580 def_builtin ("__builtin_vec_ctf", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_CTF);
17581 def_builtin ("__builtin_vec_vcfsx", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_VCFSX);
17582 def_builtin ("__builtin_vec_vcfux", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_VCFUX);
17583 def_builtin ("__builtin_vec_cts", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_CTS);
17584 def_builtin ("__builtin_vec_ctu", opaque_ftype_opaque_int, ALTIVEC_BUILTIN_VEC_CTU);
17586 def_builtin ("__builtin_vec_adde", opaque_ftype_opaque_opaque_opaque,
17587 ALTIVEC_BUILTIN_VEC_ADDE);
17588 def_builtin ("__builtin_vec_addec", opaque_ftype_opaque_opaque_opaque,
17589 ALTIVEC_BUILTIN_VEC_ADDEC);
17590 def_builtin ("__builtin_vec_cmpne", opaque_ftype_opaque_opaque,
17591 ALTIVEC_BUILTIN_VEC_CMPNE);
17592 def_builtin ("__builtin_vec_mul", opaque_ftype_opaque_opaque,
17593 ALTIVEC_BUILTIN_VEC_MUL);
17594 def_builtin ("__builtin_vec_sube", opaque_ftype_opaque_opaque_opaque,
17595 ALTIVEC_BUILTIN_VEC_SUBE);
17596 def_builtin ("__builtin_vec_subec", opaque_ftype_opaque_opaque_opaque,
17597 ALTIVEC_BUILTIN_VEC_SUBEC);
17599 /* Cell builtins. */
17600 def_builtin ("__builtin_altivec_lvlx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVLX);
17601 def_builtin ("__builtin_altivec_lvlxl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVLXL);
17602 def_builtin ("__builtin_altivec_lvrx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVRX);
17603 def_builtin ("__builtin_altivec_lvrxl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_LVRXL);
17605 def_builtin ("__builtin_vec_lvlx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVLX);
17606 def_builtin ("__builtin_vec_lvlxl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVLXL);
17607 def_builtin ("__builtin_vec_lvrx", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVRX);
17608 def_builtin ("__builtin_vec_lvrxl", v16qi_ftype_long_pcvoid, ALTIVEC_BUILTIN_VEC_LVRXL);
17610 def_builtin ("__builtin_altivec_stvlx", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_STVLX);
17611 def_builtin ("__builtin_altivec_stvlxl", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_STVLXL);
17612 def_builtin ("__builtin_altivec_stvrx", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_STVRX);
17613 def_builtin ("__builtin_altivec_stvrxl", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_STVRXL);
17615 def_builtin ("__builtin_vec_stvlx", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_VEC_STVLX);
17616 def_builtin ("__builtin_vec_stvlxl", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_VEC_STVLXL);
17617 def_builtin ("__builtin_vec_stvrx", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_VEC_STVRX);
17618 def_builtin ("__builtin_vec_stvrxl", void_ftype_v16qi_long_pvoid, ALTIVEC_BUILTIN_VEC_STVRXL);
17620 if (TARGET_P9_VECTOR)
17622 def_builtin ("__builtin_altivec_stxvl", void_ftype_v16qi_pvoid_long,
17623 P9V_BUILTIN_STXVL);
17624 def_builtin ("__builtin_xst_len_r", void_ftype_v16qi_pvoid_long,
17625 P9V_BUILTIN_XST_LEN_R);
17628 /* Add the DST variants. */
17629 d = bdesc_dst;
17630 for (i = 0; i < ARRAY_SIZE (bdesc_dst); i++, d++)
17632 HOST_WIDE_INT mask = d->mask;
17634 /* It is expected that these dst built-in functions may have
17635 d->icode equal to CODE_FOR_nothing. */
17636 if ((mask & builtin_mask) != mask)
17638 if (TARGET_DEBUG_BUILTIN)
17639 fprintf (stderr, "altivec_init_builtins, skip dst %s\n",
17640 d->name);
17641 continue;
17643 def_builtin (d->name, void_ftype_pcvoid_int_int, d->code);
17646 /* Initialize the predicates. */
17647 d = bdesc_altivec_preds;
17648 for (i = 0; i < ARRAY_SIZE (bdesc_altivec_preds); i++, d++)
17650 machine_mode mode1;
17651 tree type;
17652 HOST_WIDE_INT mask = d->mask;
17654 if ((mask & builtin_mask) != mask)
17656 if (TARGET_DEBUG_BUILTIN)
17657 fprintf (stderr, "altivec_init_builtins, skip predicate %s\n",
17658 d->name);
17659 continue;
17662 if (rs6000_overloaded_builtin_p (d->code))
17663 mode1 = VOIDmode;
17664 else
17666 /* Cannot define builtin if the instruction is disabled. */
17667 gcc_assert (d->icode != CODE_FOR_nothing);
17668 mode1 = insn_data[d->icode].operand[1].mode;
17671 switch (mode1)
17673 case E_VOIDmode:
17674 type = int_ftype_int_opaque_opaque;
17675 break;
17676 case E_V2DImode:
17677 type = int_ftype_int_v2di_v2di;
17678 break;
17679 case E_V4SImode:
17680 type = int_ftype_int_v4si_v4si;
17681 break;
17682 case E_V8HImode:
17683 type = int_ftype_int_v8hi_v8hi;
17684 break;
17685 case E_V16QImode:
17686 type = int_ftype_int_v16qi_v16qi;
17687 break;
17688 case E_V4SFmode:
17689 type = int_ftype_int_v4sf_v4sf;
17690 break;
17691 case E_V2DFmode:
17692 type = int_ftype_int_v2df_v2df;
17693 break;
17694 default:
17695 gcc_unreachable ();
17698 def_builtin (d->name, type, d->code);
17701 /* Initialize the abs* operators. */
17702 d = bdesc_abs;
17703 for (i = 0; i < ARRAY_SIZE (bdesc_abs); i++, d++)
17705 machine_mode mode0;
17706 tree type;
17707 HOST_WIDE_INT mask = d->mask;
17709 if ((mask & builtin_mask) != mask)
17711 if (TARGET_DEBUG_BUILTIN)
17712 fprintf (stderr, "altivec_init_builtins, skip abs %s\n",
17713 d->name);
17714 continue;
17717 /* Cannot define builtin if the instruction is disabled. */
17718 gcc_assert (d->icode != CODE_FOR_nothing);
17719 mode0 = insn_data[d->icode].operand[0].mode;
17721 switch (mode0)
17723 case E_V2DImode:
17724 type = v2di_ftype_v2di;
17725 break;
17726 case E_V4SImode:
17727 type = v4si_ftype_v4si;
17728 break;
17729 case E_V8HImode:
17730 type = v8hi_ftype_v8hi;
17731 break;
17732 case E_V16QImode:
17733 type = v16qi_ftype_v16qi;
17734 break;
17735 case E_V4SFmode:
17736 type = v4sf_ftype_v4sf;
17737 break;
17738 case E_V2DFmode:
17739 type = v2df_ftype_v2df;
17740 break;
17741 default:
17742 gcc_unreachable ();
17745 def_builtin (d->name, type, d->code);
17748 /* Initialize target builtin that implements
17749 targetm.vectorize.builtin_mask_for_load. */
17751 decl = add_builtin_function ("__builtin_altivec_mask_for_load",
17752 v16qi_ftype_long_pcvoid,
17753 ALTIVEC_BUILTIN_MASK_FOR_LOAD,
17754 BUILT_IN_MD, NULL, NULL_TREE);
17755 TREE_READONLY (decl) = 1;
17756 /* Record the decl. Will be used by rs6000_builtin_mask_for_load. */
17757 altivec_builtin_mask_for_load = decl;
17759 /* Access to the vec_init patterns. */
17760 ftype = build_function_type_list (V4SI_type_node, integer_type_node,
17761 integer_type_node, integer_type_node,
17762 integer_type_node, NULL_TREE);
17763 def_builtin ("__builtin_vec_init_v4si", ftype, ALTIVEC_BUILTIN_VEC_INIT_V4SI);
17765 ftype = build_function_type_list (V8HI_type_node, short_integer_type_node,
17766 short_integer_type_node,
17767 short_integer_type_node,
17768 short_integer_type_node,
17769 short_integer_type_node,
17770 short_integer_type_node,
17771 short_integer_type_node,
17772 short_integer_type_node, NULL_TREE);
17773 def_builtin ("__builtin_vec_init_v8hi", ftype, ALTIVEC_BUILTIN_VEC_INIT_V8HI);
17775 ftype = build_function_type_list (V16QI_type_node, char_type_node,
17776 char_type_node, char_type_node,
17777 char_type_node, char_type_node,
17778 char_type_node, char_type_node,
17779 char_type_node, char_type_node,
17780 char_type_node, char_type_node,
17781 char_type_node, char_type_node,
17782 char_type_node, char_type_node,
17783 char_type_node, NULL_TREE);
17784 def_builtin ("__builtin_vec_init_v16qi", ftype,
17785 ALTIVEC_BUILTIN_VEC_INIT_V16QI);
17787 ftype = build_function_type_list (V4SF_type_node, float_type_node,
17788 float_type_node, float_type_node,
17789 float_type_node, NULL_TREE);
17790 def_builtin ("__builtin_vec_init_v4sf", ftype, ALTIVEC_BUILTIN_VEC_INIT_V4SF);
17792 /* VSX builtins. */
17793 ftype = build_function_type_list (V2DF_type_node, double_type_node,
17794 double_type_node, NULL_TREE);
17795 def_builtin ("__builtin_vec_init_v2df", ftype, VSX_BUILTIN_VEC_INIT_V2DF);
17797 ftype = build_function_type_list (V2DI_type_node, intDI_type_node,
17798 intDI_type_node, NULL_TREE);
17799 def_builtin ("__builtin_vec_init_v2di", ftype, VSX_BUILTIN_VEC_INIT_V2DI);
17801 /* Access to the vec_set patterns. */
17802 ftype = build_function_type_list (V4SI_type_node, V4SI_type_node,
17803 intSI_type_node,
17804 integer_type_node, NULL_TREE);
17805 def_builtin ("__builtin_vec_set_v4si", ftype, ALTIVEC_BUILTIN_VEC_SET_V4SI);
17807 ftype = build_function_type_list (V8HI_type_node, V8HI_type_node,
17808 intHI_type_node,
17809 integer_type_node, NULL_TREE);
17810 def_builtin ("__builtin_vec_set_v8hi", ftype, ALTIVEC_BUILTIN_VEC_SET_V8HI);
17812 ftype = build_function_type_list (V16QI_type_node, V16QI_type_node,
17813 intQI_type_node,
17814 integer_type_node, NULL_TREE);
17815 def_builtin ("__builtin_vec_set_v16qi", ftype, ALTIVEC_BUILTIN_VEC_SET_V16QI);
17817 ftype = build_function_type_list (V4SF_type_node, V4SF_type_node,
17818 float_type_node,
17819 integer_type_node, NULL_TREE);
17820 def_builtin ("__builtin_vec_set_v4sf", ftype, ALTIVEC_BUILTIN_VEC_SET_V4SF);
17822 ftype = build_function_type_list (V2DF_type_node, V2DF_type_node,
17823 double_type_node,
17824 integer_type_node, NULL_TREE);
17825 def_builtin ("__builtin_vec_set_v2df", ftype, VSX_BUILTIN_VEC_SET_V2DF);
17827 ftype = build_function_type_list (V2DI_type_node, V2DI_type_node,
17828 intDI_type_node,
17829 integer_type_node, NULL_TREE);
17830 def_builtin ("__builtin_vec_set_v2di", ftype, VSX_BUILTIN_VEC_SET_V2DI);
17832 /* Access to the vec_extract patterns. */
17833 ftype = build_function_type_list (intSI_type_node, V4SI_type_node,
17834 integer_type_node, NULL_TREE);
17835 def_builtin ("__builtin_vec_ext_v4si", ftype, ALTIVEC_BUILTIN_VEC_EXT_V4SI);
17837 ftype = build_function_type_list (intHI_type_node, V8HI_type_node,
17838 integer_type_node, NULL_TREE);
17839 def_builtin ("__builtin_vec_ext_v8hi", ftype, ALTIVEC_BUILTIN_VEC_EXT_V8HI);
17841 ftype = build_function_type_list (intQI_type_node, V16QI_type_node,
17842 integer_type_node, NULL_TREE);
17843 def_builtin ("__builtin_vec_ext_v16qi", ftype, ALTIVEC_BUILTIN_VEC_EXT_V16QI);
17845 ftype = build_function_type_list (float_type_node, V4SF_type_node,
17846 integer_type_node, NULL_TREE);
17847 def_builtin ("__builtin_vec_ext_v4sf", ftype, ALTIVEC_BUILTIN_VEC_EXT_V4SF);
17849 ftype = build_function_type_list (double_type_node, V2DF_type_node,
17850 integer_type_node, NULL_TREE);
17851 def_builtin ("__builtin_vec_ext_v2df", ftype, VSX_BUILTIN_VEC_EXT_V2DF);
17853 ftype = build_function_type_list (intDI_type_node, V2DI_type_node,
17854 integer_type_node, NULL_TREE);
17855 def_builtin ("__builtin_vec_ext_v2di", ftype, VSX_BUILTIN_VEC_EXT_V2DI);
17858 if (V1TI_type_node)
17860 tree v1ti_ftype_long_pcvoid
17861 = build_function_type_list (V1TI_type_node,
17862 long_integer_type_node, pcvoid_type_node,
17863 NULL_TREE);
17864 tree void_ftype_v1ti_long_pvoid
17865 = build_function_type_list (void_type_node,
17866 V1TI_type_node, long_integer_type_node,
17867 pvoid_type_node, NULL_TREE);
17868 def_builtin ("__builtin_vsx_lxvd2x_v1ti", v1ti_ftype_long_pcvoid,
17869 VSX_BUILTIN_LXVD2X_V1TI);
17870 def_builtin ("__builtin_vsx_stxvd2x_v1ti", void_ftype_v1ti_long_pvoid,
17871 VSX_BUILTIN_STXVD2X_V1TI);
17872 ftype = build_function_type_list (V1TI_type_node, intTI_type_node,
17873 NULL_TREE, NULL_TREE);
17874 def_builtin ("__builtin_vec_init_v1ti", ftype, VSX_BUILTIN_VEC_INIT_V1TI);
17875 ftype = build_function_type_list (V1TI_type_node, V1TI_type_node,
17876 intTI_type_node,
17877 integer_type_node, NULL_TREE);
17878 def_builtin ("__builtin_vec_set_v1ti", ftype, VSX_BUILTIN_VEC_SET_V1TI);
17879 ftype = build_function_type_list (intTI_type_node, V1TI_type_node,
17880 integer_type_node, NULL_TREE);
17881 def_builtin ("__builtin_vec_ext_v1ti", ftype, VSX_BUILTIN_VEC_EXT_V1TI);
17886 static void
17887 htm_init_builtins (void)
17889 HOST_WIDE_INT builtin_mask = rs6000_builtin_mask;
17890 const struct builtin_description *d;
17891 size_t i;
17893 d = bdesc_htm;
17894 for (i = 0; i < ARRAY_SIZE (bdesc_htm); i++, d++)
17896 tree op[MAX_HTM_OPERANDS], type;
17897 HOST_WIDE_INT mask = d->mask;
17898 unsigned attr = rs6000_builtin_info[d->code].attr;
17899 bool void_func = (attr & RS6000_BTC_VOID);
17900 int attr_args = (attr & RS6000_BTC_TYPE_MASK);
17901 int nopnds = 0;
17902 tree gpr_type_node;
17903 tree rettype;
17904 tree argtype;
17906 /* It is expected that these htm built-in functions may have
17907 d->icode equal to CODE_FOR_nothing. */
17909 if (TARGET_32BIT && TARGET_POWERPC64)
17910 gpr_type_node = long_long_unsigned_type_node;
17911 else
17912 gpr_type_node = long_unsigned_type_node;
17914 if (attr & RS6000_BTC_SPR)
17916 rettype = gpr_type_node;
17917 argtype = gpr_type_node;
17919 else if (d->code == HTM_BUILTIN_TABORTDC
17920 || d->code == HTM_BUILTIN_TABORTDCI)
17922 rettype = unsigned_type_node;
17923 argtype = gpr_type_node;
17925 else
17927 rettype = unsigned_type_node;
17928 argtype = unsigned_type_node;
17931 if ((mask & builtin_mask) != mask)
17933 if (TARGET_DEBUG_BUILTIN)
17934 fprintf (stderr, "htm_builtin, skip binary %s\n", d->name);
17935 continue;
17938 if (d->name == 0)
17940 if (TARGET_DEBUG_BUILTIN)
17941 fprintf (stderr, "htm_builtin, bdesc_htm[%ld] no name\n",
17942 (long unsigned) i);
17943 continue;
17946 op[nopnds++] = (void_func) ? void_type_node : rettype;
17948 if (attr_args == RS6000_BTC_UNARY)
17949 op[nopnds++] = argtype;
17950 else if (attr_args == RS6000_BTC_BINARY)
17952 op[nopnds++] = argtype;
17953 op[nopnds++] = argtype;
17955 else if (attr_args == RS6000_BTC_TERNARY)
17957 op[nopnds++] = argtype;
17958 op[nopnds++] = argtype;
17959 op[nopnds++] = argtype;
17962 switch (nopnds)
17964 case 1:
17965 type = build_function_type_list (op[0], NULL_TREE);
17966 break;
17967 case 2:
17968 type = build_function_type_list (op[0], op[1], NULL_TREE);
17969 break;
17970 case 3:
17971 type = build_function_type_list (op[0], op[1], op[2], NULL_TREE);
17972 break;
17973 case 4:
17974 type = build_function_type_list (op[0], op[1], op[2], op[3],
17975 NULL_TREE);
17976 break;
17977 default:
17978 gcc_unreachable ();
17981 def_builtin (d->name, type, d->code);
17985 /* Hash function for builtin functions with up to 3 arguments and a return
17986 type. */
17987 hashval_t
17988 builtin_hasher::hash (builtin_hash_struct *bh)
17990 unsigned ret = 0;
17991 int i;
17993 for (i = 0; i < 4; i++)
17995 ret = (ret * (unsigned)MAX_MACHINE_MODE) + ((unsigned)bh->mode[i]);
17996 ret = (ret * 2) + bh->uns_p[i];
17999 return ret;
18002 /* Compare builtin hash entries H1 and H2 for equivalence. */
18003 bool
18004 builtin_hasher::equal (builtin_hash_struct *p1, builtin_hash_struct *p2)
18006 return ((p1->mode[0] == p2->mode[0])
18007 && (p1->mode[1] == p2->mode[1])
18008 && (p1->mode[2] == p2->mode[2])
18009 && (p1->mode[3] == p2->mode[3])
18010 && (p1->uns_p[0] == p2->uns_p[0])
18011 && (p1->uns_p[1] == p2->uns_p[1])
18012 && (p1->uns_p[2] == p2->uns_p[2])
18013 && (p1->uns_p[3] == p2->uns_p[3]));
18016 /* Map types for builtin functions with an explicit return type and up to 3
18017 arguments. Functions with fewer than 3 arguments use VOIDmode as the type
18018 of the argument. */
18019 static tree
18020 builtin_function_type (machine_mode mode_ret, machine_mode mode_arg0,
18021 machine_mode mode_arg1, machine_mode mode_arg2,
18022 enum rs6000_builtins builtin, const char *name)
18024 struct builtin_hash_struct h;
18025 struct builtin_hash_struct *h2;
18026 int num_args = 3;
18027 int i;
18028 tree ret_type = NULL_TREE;
18029 tree arg_type[3] = { NULL_TREE, NULL_TREE, NULL_TREE };
18031 /* Create builtin_hash_table. */
18032 if (builtin_hash_table == NULL)
18033 builtin_hash_table = hash_table<builtin_hasher>::create_ggc (1500);
18035 h.type = NULL_TREE;
18036 h.mode[0] = mode_ret;
18037 h.mode[1] = mode_arg0;
18038 h.mode[2] = mode_arg1;
18039 h.mode[3] = mode_arg2;
18040 h.uns_p[0] = 0;
18041 h.uns_p[1] = 0;
18042 h.uns_p[2] = 0;
18043 h.uns_p[3] = 0;
18045 /* If the builtin is a type that produces unsigned results or takes unsigned
18046 arguments, and it is returned as a decl for the vectorizer (such as
18047 widening multiplies, permute), make sure the arguments and return value
18048 are type correct. */
18049 switch (builtin)
18051 /* unsigned 1 argument functions. */
18052 case CRYPTO_BUILTIN_VSBOX:
18053 case P8V_BUILTIN_VGBBD:
18054 case MISC_BUILTIN_CDTBCD:
18055 case MISC_BUILTIN_CBCDTD:
18056 h.uns_p[0] = 1;
18057 h.uns_p[1] = 1;
18058 break;
18060 /* unsigned 2 argument functions. */
18061 case ALTIVEC_BUILTIN_VMULEUB:
18062 case ALTIVEC_BUILTIN_VMULEUH:
18063 case ALTIVEC_BUILTIN_VMULEUW:
18064 case ALTIVEC_BUILTIN_VMULOUB:
18065 case ALTIVEC_BUILTIN_VMULOUH:
18066 case ALTIVEC_BUILTIN_VMULOUW:
18067 case CRYPTO_BUILTIN_VCIPHER:
18068 case CRYPTO_BUILTIN_VCIPHERLAST:
18069 case CRYPTO_BUILTIN_VNCIPHER:
18070 case CRYPTO_BUILTIN_VNCIPHERLAST:
18071 case CRYPTO_BUILTIN_VPMSUMB:
18072 case CRYPTO_BUILTIN_VPMSUMH:
18073 case CRYPTO_BUILTIN_VPMSUMW:
18074 case CRYPTO_BUILTIN_VPMSUMD:
18075 case CRYPTO_BUILTIN_VPMSUM:
18076 case MISC_BUILTIN_ADDG6S:
18077 case MISC_BUILTIN_DIVWEU:
18078 case MISC_BUILTIN_DIVWEUO:
18079 case MISC_BUILTIN_DIVDEU:
18080 case MISC_BUILTIN_DIVDEUO:
18081 case VSX_BUILTIN_UDIV_V2DI:
18082 case ALTIVEC_BUILTIN_VMAXUB:
18083 case ALTIVEC_BUILTIN_VMINUB:
18084 case ALTIVEC_BUILTIN_VMAXUH:
18085 case ALTIVEC_BUILTIN_VMINUH:
18086 case ALTIVEC_BUILTIN_VMAXUW:
18087 case ALTIVEC_BUILTIN_VMINUW:
18088 case P8V_BUILTIN_VMAXUD:
18089 case P8V_BUILTIN_VMINUD:
18090 h.uns_p[0] = 1;
18091 h.uns_p[1] = 1;
18092 h.uns_p[2] = 1;
18093 break;
18095 /* unsigned 3 argument functions. */
18096 case ALTIVEC_BUILTIN_VPERM_16QI_UNS:
18097 case ALTIVEC_BUILTIN_VPERM_8HI_UNS:
18098 case ALTIVEC_BUILTIN_VPERM_4SI_UNS:
18099 case ALTIVEC_BUILTIN_VPERM_2DI_UNS:
18100 case ALTIVEC_BUILTIN_VSEL_16QI_UNS:
18101 case ALTIVEC_BUILTIN_VSEL_8HI_UNS:
18102 case ALTIVEC_BUILTIN_VSEL_4SI_UNS:
18103 case ALTIVEC_BUILTIN_VSEL_2DI_UNS:
18104 case VSX_BUILTIN_VPERM_16QI_UNS:
18105 case VSX_BUILTIN_VPERM_8HI_UNS:
18106 case VSX_BUILTIN_VPERM_4SI_UNS:
18107 case VSX_BUILTIN_VPERM_2DI_UNS:
18108 case VSX_BUILTIN_XXSEL_16QI_UNS:
18109 case VSX_BUILTIN_XXSEL_8HI_UNS:
18110 case VSX_BUILTIN_XXSEL_4SI_UNS:
18111 case VSX_BUILTIN_XXSEL_2DI_UNS:
18112 case CRYPTO_BUILTIN_VPERMXOR:
18113 case CRYPTO_BUILTIN_VPERMXOR_V2DI:
18114 case CRYPTO_BUILTIN_VPERMXOR_V4SI:
18115 case CRYPTO_BUILTIN_VPERMXOR_V8HI:
18116 case CRYPTO_BUILTIN_VPERMXOR_V16QI:
18117 case CRYPTO_BUILTIN_VSHASIGMAW:
18118 case CRYPTO_BUILTIN_VSHASIGMAD:
18119 case CRYPTO_BUILTIN_VSHASIGMA:
18120 h.uns_p[0] = 1;
18121 h.uns_p[1] = 1;
18122 h.uns_p[2] = 1;
18123 h.uns_p[3] = 1;
18124 break;
18126 /* signed permute functions with unsigned char mask. */
18127 case ALTIVEC_BUILTIN_VPERM_16QI:
18128 case ALTIVEC_BUILTIN_VPERM_8HI:
18129 case ALTIVEC_BUILTIN_VPERM_4SI:
18130 case ALTIVEC_BUILTIN_VPERM_4SF:
18131 case ALTIVEC_BUILTIN_VPERM_2DI:
18132 case ALTIVEC_BUILTIN_VPERM_2DF:
18133 case VSX_BUILTIN_VPERM_16QI:
18134 case VSX_BUILTIN_VPERM_8HI:
18135 case VSX_BUILTIN_VPERM_4SI:
18136 case VSX_BUILTIN_VPERM_4SF:
18137 case VSX_BUILTIN_VPERM_2DI:
18138 case VSX_BUILTIN_VPERM_2DF:
18139 h.uns_p[3] = 1;
18140 break;
18142 /* unsigned args, signed return. */
18143 case VSX_BUILTIN_XVCVUXDSP:
18144 case VSX_BUILTIN_XVCVUXDDP_UNS:
18145 case ALTIVEC_BUILTIN_UNSFLOAT_V4SI_V4SF:
18146 h.uns_p[1] = 1;
18147 break;
18149 /* signed args, unsigned return. */
18150 case VSX_BUILTIN_XVCVDPUXDS_UNS:
18151 case ALTIVEC_BUILTIN_FIXUNS_V4SF_V4SI:
18152 case MISC_BUILTIN_UNPACK_TD:
18153 case MISC_BUILTIN_UNPACK_V1TI:
18154 h.uns_p[0] = 1;
18155 break;
18157 /* unsigned arguments for 128-bit pack instructions. */
18158 case MISC_BUILTIN_PACK_TD:
18159 case MISC_BUILTIN_PACK_V1TI:
18160 h.uns_p[1] = 1;
18161 h.uns_p[2] = 1;
18162 break;
18164 /* unsigned second arguments (vector shift right). */
18165 case ALTIVEC_BUILTIN_VSRB:
18166 case ALTIVEC_BUILTIN_VSRH:
18167 case ALTIVEC_BUILTIN_VSRW:
18168 case P8V_BUILTIN_VSRD:
18169 h.uns_p[2] = 1;
18170 break;
18172 default:
18173 break;
18176 /* Figure out how many args are present. */
18177 while (num_args > 0 && h.mode[num_args] == VOIDmode)
18178 num_args--;
18180 ret_type = builtin_mode_to_type[h.mode[0]][h.uns_p[0]];
18181 if (!ret_type && h.uns_p[0])
18182 ret_type = builtin_mode_to_type[h.mode[0]][0];
18184 if (!ret_type)
18185 fatal_error (input_location,
18186 "internal error: builtin function %qs had an unexpected "
18187 "return type %qs", name, GET_MODE_NAME (h.mode[0]));
18189 for (i = 0; i < (int) ARRAY_SIZE (arg_type); i++)
18190 arg_type[i] = NULL_TREE;
18192 for (i = 0; i < num_args; i++)
18194 int m = (int) h.mode[i+1];
18195 int uns_p = h.uns_p[i+1];
18197 arg_type[i] = builtin_mode_to_type[m][uns_p];
18198 if (!arg_type[i] && uns_p)
18199 arg_type[i] = builtin_mode_to_type[m][0];
18201 if (!arg_type[i])
18202 fatal_error (input_location,
18203 "internal error: builtin function %qs, argument %d "
18204 "had unexpected argument type %qs", name, i,
18205 GET_MODE_NAME (m));
18208 builtin_hash_struct **found = builtin_hash_table->find_slot (&h, INSERT);
18209 if (*found == NULL)
18211 h2 = ggc_alloc<builtin_hash_struct> ();
18212 *h2 = h;
18213 *found = h2;
18215 h2->type = build_function_type_list (ret_type, arg_type[0], arg_type[1],
18216 arg_type[2], NULL_TREE);
18219 return (*found)->type;
18222 static void
18223 rs6000_common_init_builtins (void)
18225 const struct builtin_description *d;
18226 size_t i;
18228 tree opaque_ftype_opaque = NULL_TREE;
18229 tree opaque_ftype_opaque_opaque = NULL_TREE;
18230 tree opaque_ftype_opaque_opaque_opaque = NULL_TREE;
18231 tree v2si_ftype = NULL_TREE;
18232 tree v2si_ftype_qi = NULL_TREE;
18233 tree v2si_ftype_v2si_qi = NULL_TREE;
18234 tree v2si_ftype_int_qi = NULL_TREE;
18235 HOST_WIDE_INT builtin_mask = rs6000_builtin_mask;
18237 if (!TARGET_PAIRED_FLOAT)
18239 builtin_mode_to_type[V2SImode][0] = opaque_V2SI_type_node;
18240 builtin_mode_to_type[V2SFmode][0] = opaque_V2SF_type_node;
18243 /* Paired builtins are only available if you build a compiler with the
18244 appropriate options, so only create those builtins with the appropriate
18245 compiler option. Create Altivec and VSX builtins on machines with at
18246 least the general purpose extensions (970 and newer) to allow the use of
18247 the target attribute.. */
18249 if (TARGET_EXTRA_BUILTINS)
18250 builtin_mask |= RS6000_BTM_COMMON;
18252 /* Add the ternary operators. */
18253 d = bdesc_3arg;
18254 for (i = 0; i < ARRAY_SIZE (bdesc_3arg); i++, d++)
18256 tree type;
18257 HOST_WIDE_INT mask = d->mask;
18259 if ((mask & builtin_mask) != mask)
18261 if (TARGET_DEBUG_BUILTIN)
18262 fprintf (stderr, "rs6000_builtin, skip ternary %s\n", d->name);
18263 continue;
18266 if (rs6000_overloaded_builtin_p (d->code))
18268 if (! (type = opaque_ftype_opaque_opaque_opaque))
18269 type = opaque_ftype_opaque_opaque_opaque
18270 = build_function_type_list (opaque_V4SI_type_node,
18271 opaque_V4SI_type_node,
18272 opaque_V4SI_type_node,
18273 opaque_V4SI_type_node,
18274 NULL_TREE);
18276 else
18278 enum insn_code icode = d->icode;
18279 if (d->name == 0)
18281 if (TARGET_DEBUG_BUILTIN)
18282 fprintf (stderr, "rs6000_builtin, bdesc_3arg[%ld] no name\n",
18283 (long unsigned)i);
18285 continue;
18288 if (icode == CODE_FOR_nothing)
18290 if (TARGET_DEBUG_BUILTIN)
18291 fprintf (stderr, "rs6000_builtin, skip ternary %s (no code)\n",
18292 d->name);
18294 continue;
18297 type = builtin_function_type (insn_data[icode].operand[0].mode,
18298 insn_data[icode].operand[1].mode,
18299 insn_data[icode].operand[2].mode,
18300 insn_data[icode].operand[3].mode,
18301 d->code, d->name);
18304 def_builtin (d->name, type, d->code);
18307 /* Add the binary operators. */
18308 d = bdesc_2arg;
18309 for (i = 0; i < ARRAY_SIZE (bdesc_2arg); i++, d++)
18311 machine_mode mode0, mode1, mode2;
18312 tree type;
18313 HOST_WIDE_INT mask = d->mask;
18315 if ((mask & builtin_mask) != mask)
18317 if (TARGET_DEBUG_BUILTIN)
18318 fprintf (stderr, "rs6000_builtin, skip binary %s\n", d->name);
18319 continue;
18322 if (rs6000_overloaded_builtin_p (d->code))
18324 if (! (type = opaque_ftype_opaque_opaque))
18325 type = opaque_ftype_opaque_opaque
18326 = build_function_type_list (opaque_V4SI_type_node,
18327 opaque_V4SI_type_node,
18328 opaque_V4SI_type_node,
18329 NULL_TREE);
18331 else
18333 enum insn_code icode = d->icode;
18334 if (d->name == 0)
18336 if (TARGET_DEBUG_BUILTIN)
18337 fprintf (stderr, "rs6000_builtin, bdesc_2arg[%ld] no name\n",
18338 (long unsigned)i);
18340 continue;
18343 if (icode == CODE_FOR_nothing)
18345 if (TARGET_DEBUG_BUILTIN)
18346 fprintf (stderr, "rs6000_builtin, skip binary %s (no code)\n",
18347 d->name);
18349 continue;
18352 mode0 = insn_data[icode].operand[0].mode;
18353 mode1 = insn_data[icode].operand[1].mode;
18354 mode2 = insn_data[icode].operand[2].mode;
18356 if (mode0 == V2SImode && mode1 == V2SImode && mode2 == QImode)
18358 if (! (type = v2si_ftype_v2si_qi))
18359 type = v2si_ftype_v2si_qi
18360 = build_function_type_list (opaque_V2SI_type_node,
18361 opaque_V2SI_type_node,
18362 char_type_node,
18363 NULL_TREE);
18366 else if (mode0 == V2SImode && GET_MODE_CLASS (mode1) == MODE_INT
18367 && mode2 == QImode)
18369 if (! (type = v2si_ftype_int_qi))
18370 type = v2si_ftype_int_qi
18371 = build_function_type_list (opaque_V2SI_type_node,
18372 integer_type_node,
18373 char_type_node,
18374 NULL_TREE);
18377 else
18378 type = builtin_function_type (mode0, mode1, mode2, VOIDmode,
18379 d->code, d->name);
18382 def_builtin (d->name, type, d->code);
18385 /* Add the simple unary operators. */
18386 d = bdesc_1arg;
18387 for (i = 0; i < ARRAY_SIZE (bdesc_1arg); i++, d++)
18389 machine_mode mode0, mode1;
18390 tree type;
18391 HOST_WIDE_INT mask = d->mask;
18393 if ((mask & builtin_mask) != mask)
18395 if (TARGET_DEBUG_BUILTIN)
18396 fprintf (stderr, "rs6000_builtin, skip unary %s\n", d->name);
18397 continue;
18400 if (rs6000_overloaded_builtin_p (d->code))
18402 if (! (type = opaque_ftype_opaque))
18403 type = opaque_ftype_opaque
18404 = build_function_type_list (opaque_V4SI_type_node,
18405 opaque_V4SI_type_node,
18406 NULL_TREE);
18408 else
18410 enum insn_code icode = d->icode;
18411 if (d->name == 0)
18413 if (TARGET_DEBUG_BUILTIN)
18414 fprintf (stderr, "rs6000_builtin, bdesc_1arg[%ld] no name\n",
18415 (long unsigned)i);
18417 continue;
18420 if (icode == CODE_FOR_nothing)
18422 if (TARGET_DEBUG_BUILTIN)
18423 fprintf (stderr, "rs6000_builtin, skip unary %s (no code)\n",
18424 d->name);
18426 continue;
18429 mode0 = insn_data[icode].operand[0].mode;
18430 mode1 = insn_data[icode].operand[1].mode;
18432 if (mode0 == V2SImode && mode1 == QImode)
18434 if (! (type = v2si_ftype_qi))
18435 type = v2si_ftype_qi
18436 = build_function_type_list (opaque_V2SI_type_node,
18437 char_type_node,
18438 NULL_TREE);
18441 else
18442 type = builtin_function_type (mode0, mode1, VOIDmode, VOIDmode,
18443 d->code, d->name);
18446 def_builtin (d->name, type, d->code);
18449 /* Add the simple no-argument operators. */
18450 d = bdesc_0arg;
18451 for (i = 0; i < ARRAY_SIZE (bdesc_0arg); i++, d++)
18453 machine_mode mode0;
18454 tree type;
18455 HOST_WIDE_INT mask = d->mask;
18457 if ((mask & builtin_mask) != mask)
18459 if (TARGET_DEBUG_BUILTIN)
18460 fprintf (stderr, "rs6000_builtin, skip no-argument %s\n", d->name);
18461 continue;
18463 if (rs6000_overloaded_builtin_p (d->code))
18465 if (!opaque_ftype_opaque)
18466 opaque_ftype_opaque
18467 = build_function_type_list (opaque_V4SI_type_node, NULL_TREE);
18468 type = opaque_ftype_opaque;
18470 else
18472 enum insn_code icode = d->icode;
18473 if (d->name == 0)
18475 if (TARGET_DEBUG_BUILTIN)
18476 fprintf (stderr, "rs6000_builtin, bdesc_0arg[%lu] no name\n",
18477 (long unsigned) i);
18478 continue;
18480 if (icode == CODE_FOR_nothing)
18482 if (TARGET_DEBUG_BUILTIN)
18483 fprintf (stderr,
18484 "rs6000_builtin, skip no-argument %s (no code)\n",
18485 d->name);
18486 continue;
18488 mode0 = insn_data[icode].operand[0].mode;
18489 if (mode0 == V2SImode)
18491 /* code for paired single */
18492 if (! (type = v2si_ftype))
18494 v2si_ftype
18495 = build_function_type_list (opaque_V2SI_type_node,
18496 NULL_TREE);
18497 type = v2si_ftype;
18500 else
18501 type = builtin_function_type (mode0, VOIDmode, VOIDmode, VOIDmode,
18502 d->code, d->name);
18504 def_builtin (d->name, type, d->code);
18508 /* Set up AIX/Darwin/64-bit Linux quad floating point routines. */
18509 static void
18510 init_float128_ibm (machine_mode mode)
18512 if (!TARGET_XL_COMPAT)
18514 set_optab_libfunc (add_optab, mode, "__gcc_qadd");
18515 set_optab_libfunc (sub_optab, mode, "__gcc_qsub");
18516 set_optab_libfunc (smul_optab, mode, "__gcc_qmul");
18517 set_optab_libfunc (sdiv_optab, mode, "__gcc_qdiv");
18519 if (!TARGET_HARD_FLOAT)
18521 set_optab_libfunc (neg_optab, mode, "__gcc_qneg");
18522 set_optab_libfunc (eq_optab, mode, "__gcc_qeq");
18523 set_optab_libfunc (ne_optab, mode, "__gcc_qne");
18524 set_optab_libfunc (gt_optab, mode, "__gcc_qgt");
18525 set_optab_libfunc (ge_optab, mode, "__gcc_qge");
18526 set_optab_libfunc (lt_optab, mode, "__gcc_qlt");
18527 set_optab_libfunc (le_optab, mode, "__gcc_qle");
18528 set_optab_libfunc (unord_optab, mode, "__gcc_qunord");
18530 set_conv_libfunc (sext_optab, mode, SFmode, "__gcc_stoq");
18531 set_conv_libfunc (sext_optab, mode, DFmode, "__gcc_dtoq");
18532 set_conv_libfunc (trunc_optab, SFmode, mode, "__gcc_qtos");
18533 set_conv_libfunc (trunc_optab, DFmode, mode, "__gcc_qtod");
18534 set_conv_libfunc (sfix_optab, SImode, mode, "__gcc_qtoi");
18535 set_conv_libfunc (ufix_optab, SImode, mode, "__gcc_qtou");
18536 set_conv_libfunc (sfloat_optab, mode, SImode, "__gcc_itoq");
18537 set_conv_libfunc (ufloat_optab, mode, SImode, "__gcc_utoq");
18540 else
18542 set_optab_libfunc (add_optab, mode, "_xlqadd");
18543 set_optab_libfunc (sub_optab, mode, "_xlqsub");
18544 set_optab_libfunc (smul_optab, mode, "_xlqmul");
18545 set_optab_libfunc (sdiv_optab, mode, "_xlqdiv");
18548 /* Add various conversions for IFmode to use the traditional TFmode
18549 names. */
18550 if (mode == IFmode)
18552 set_conv_libfunc (sext_optab, mode, SDmode, "__dpd_extendsdtf2");
18553 set_conv_libfunc (sext_optab, mode, DDmode, "__dpd_extendddtf2");
18554 set_conv_libfunc (trunc_optab, mode, TDmode, "__dpd_trunctftd2");
18555 set_conv_libfunc (trunc_optab, SDmode, mode, "__dpd_trunctfsd2");
18556 set_conv_libfunc (trunc_optab, DDmode, mode, "__dpd_trunctfdd2");
18557 set_conv_libfunc (sext_optab, TDmode, mode, "__dpd_extendtdtf2");
18559 if (TARGET_POWERPC64)
18561 set_conv_libfunc (sfix_optab, TImode, mode, "__fixtfti");
18562 set_conv_libfunc (ufix_optab, TImode, mode, "__fixunstfti");
18563 set_conv_libfunc (sfloat_optab, mode, TImode, "__floattitf");
18564 set_conv_libfunc (ufloat_optab, mode, TImode, "__floatuntitf");
18569 /* Set up IEEE 128-bit floating point routines. Use different names if the
18570 arguments can be passed in a vector register. The historical PowerPC
18571 implementation of IEEE 128-bit floating point used _q_<op> for the names, so
18572 continue to use that if we aren't using vector registers to pass IEEE
18573 128-bit floating point. */
18575 static void
18576 init_float128_ieee (machine_mode mode)
18578 if (FLOAT128_VECTOR_P (mode))
18580 set_optab_libfunc (add_optab, mode, "__addkf3");
18581 set_optab_libfunc (sub_optab, mode, "__subkf3");
18582 set_optab_libfunc (neg_optab, mode, "__negkf2");
18583 set_optab_libfunc (smul_optab, mode, "__mulkf3");
18584 set_optab_libfunc (sdiv_optab, mode, "__divkf3");
18585 set_optab_libfunc (sqrt_optab, mode, "__sqrtkf2");
18586 set_optab_libfunc (abs_optab, mode, "__abstkf2");
18588 set_optab_libfunc (eq_optab, mode, "__eqkf2");
18589 set_optab_libfunc (ne_optab, mode, "__nekf2");
18590 set_optab_libfunc (gt_optab, mode, "__gtkf2");
18591 set_optab_libfunc (ge_optab, mode, "__gekf2");
18592 set_optab_libfunc (lt_optab, mode, "__ltkf2");
18593 set_optab_libfunc (le_optab, mode, "__lekf2");
18594 set_optab_libfunc (unord_optab, mode, "__unordkf2");
18596 set_conv_libfunc (sext_optab, mode, SFmode, "__extendsfkf2");
18597 set_conv_libfunc (sext_optab, mode, DFmode, "__extenddfkf2");
18598 set_conv_libfunc (trunc_optab, SFmode, mode, "__trunckfsf2");
18599 set_conv_libfunc (trunc_optab, DFmode, mode, "__trunckfdf2");
18601 set_conv_libfunc (sext_optab, mode, IFmode, "__extendtfkf2");
18602 if (mode != TFmode && FLOAT128_IBM_P (TFmode))
18603 set_conv_libfunc (sext_optab, mode, TFmode, "__extendtfkf2");
18605 set_conv_libfunc (trunc_optab, IFmode, mode, "__trunckftf2");
18606 if (mode != TFmode && FLOAT128_IBM_P (TFmode))
18607 set_conv_libfunc (trunc_optab, TFmode, mode, "__trunckftf2");
18609 set_conv_libfunc (sext_optab, mode, SDmode, "__dpd_extendsdkf2");
18610 set_conv_libfunc (sext_optab, mode, DDmode, "__dpd_extendddkf2");
18611 set_conv_libfunc (trunc_optab, mode, TDmode, "__dpd_trunckftd2");
18612 set_conv_libfunc (trunc_optab, SDmode, mode, "__dpd_trunckfsd2");
18613 set_conv_libfunc (trunc_optab, DDmode, mode, "__dpd_trunckfdd2");
18614 set_conv_libfunc (sext_optab, TDmode, mode, "__dpd_extendtdkf2");
18616 set_conv_libfunc (sfix_optab, SImode, mode, "__fixkfsi");
18617 set_conv_libfunc (ufix_optab, SImode, mode, "__fixunskfsi");
18618 set_conv_libfunc (sfix_optab, DImode, mode, "__fixkfdi");
18619 set_conv_libfunc (ufix_optab, DImode, mode, "__fixunskfdi");
18621 set_conv_libfunc (sfloat_optab, mode, SImode, "__floatsikf");
18622 set_conv_libfunc (ufloat_optab, mode, SImode, "__floatunsikf");
18623 set_conv_libfunc (sfloat_optab, mode, DImode, "__floatdikf");
18624 set_conv_libfunc (ufloat_optab, mode, DImode, "__floatundikf");
18626 if (TARGET_POWERPC64)
18628 set_conv_libfunc (sfix_optab, TImode, mode, "__fixkfti");
18629 set_conv_libfunc (ufix_optab, TImode, mode, "__fixunskfti");
18630 set_conv_libfunc (sfloat_optab, mode, TImode, "__floattikf");
18631 set_conv_libfunc (ufloat_optab, mode, TImode, "__floatuntikf");
18635 else
18637 set_optab_libfunc (add_optab, mode, "_q_add");
18638 set_optab_libfunc (sub_optab, mode, "_q_sub");
18639 set_optab_libfunc (neg_optab, mode, "_q_neg");
18640 set_optab_libfunc (smul_optab, mode, "_q_mul");
18641 set_optab_libfunc (sdiv_optab, mode, "_q_div");
18642 if (TARGET_PPC_GPOPT)
18643 set_optab_libfunc (sqrt_optab, mode, "_q_sqrt");
18645 set_optab_libfunc (eq_optab, mode, "_q_feq");
18646 set_optab_libfunc (ne_optab, mode, "_q_fne");
18647 set_optab_libfunc (gt_optab, mode, "_q_fgt");
18648 set_optab_libfunc (ge_optab, mode, "_q_fge");
18649 set_optab_libfunc (lt_optab, mode, "_q_flt");
18650 set_optab_libfunc (le_optab, mode, "_q_fle");
18652 set_conv_libfunc (sext_optab, mode, SFmode, "_q_stoq");
18653 set_conv_libfunc (sext_optab, mode, DFmode, "_q_dtoq");
18654 set_conv_libfunc (trunc_optab, SFmode, mode, "_q_qtos");
18655 set_conv_libfunc (trunc_optab, DFmode, mode, "_q_qtod");
18656 set_conv_libfunc (sfix_optab, SImode, mode, "_q_qtoi");
18657 set_conv_libfunc (ufix_optab, SImode, mode, "_q_qtou");
18658 set_conv_libfunc (sfloat_optab, mode, SImode, "_q_itoq");
18659 set_conv_libfunc (ufloat_optab, mode, SImode, "_q_utoq");
18663 static void
18664 rs6000_init_libfuncs (void)
18666 /* __float128 support. */
18667 if (TARGET_FLOAT128_TYPE)
18669 init_float128_ibm (IFmode);
18670 init_float128_ieee (KFmode);
18673 /* AIX/Darwin/64-bit Linux quad floating point routines. */
18674 if (TARGET_LONG_DOUBLE_128)
18676 if (!TARGET_IEEEQUAD)
18677 init_float128_ibm (TFmode);
18679 /* IEEE 128-bit including 32-bit SVR4 quad floating point routines. */
18680 else
18681 init_float128_ieee (TFmode);
18685 /* Emit a potentially record-form instruction, setting DST from SRC.
18686 If DOT is 0, that is all; otherwise, set CCREG to the result of the
18687 signed comparison of DST with zero. If DOT is 1, the generated RTL
18688 doesn't care about the DST result; if DOT is 2, it does. If CCREG
18689 is CR0 do a single dot insn (as a PARALLEL); otherwise, do a SET and
18690 a separate COMPARE. */
18692 void
18693 rs6000_emit_dot_insn (rtx dst, rtx src, int dot, rtx ccreg)
18695 if (dot == 0)
18697 emit_move_insn (dst, src);
18698 return;
18701 if (cc_reg_not_cr0_operand (ccreg, CCmode))
18703 emit_move_insn (dst, src);
18704 emit_move_insn (ccreg, gen_rtx_COMPARE (CCmode, dst, const0_rtx));
18705 return;
18708 rtx ccset = gen_rtx_SET (ccreg, gen_rtx_COMPARE (CCmode, src, const0_rtx));
18709 if (dot == 1)
18711 rtx clobber = gen_rtx_CLOBBER (VOIDmode, dst);
18712 emit_insn (gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, ccset, clobber)));
18714 else
18716 rtx set = gen_rtx_SET (dst, src);
18717 emit_insn (gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, ccset, set)));
18722 /* A validation routine: say whether CODE, a condition code, and MODE
18723 match. The other alternatives either don't make sense or should
18724 never be generated. */
18726 void
18727 validate_condition_mode (enum rtx_code code, machine_mode mode)
18729 gcc_assert ((GET_RTX_CLASS (code) == RTX_COMPARE
18730 || GET_RTX_CLASS (code) == RTX_COMM_COMPARE)
18731 && GET_MODE_CLASS (mode) == MODE_CC);
18733 /* These don't make sense. */
18734 gcc_assert ((code != GT && code != LT && code != GE && code != LE)
18735 || mode != CCUNSmode);
18737 gcc_assert ((code != GTU && code != LTU && code != GEU && code != LEU)
18738 || mode == CCUNSmode);
18740 gcc_assert (mode == CCFPmode
18741 || (code != ORDERED && code != UNORDERED
18742 && code != UNEQ && code != LTGT
18743 && code != UNGT && code != UNLT
18744 && code != UNGE && code != UNLE));
18746 /* These should never be generated except for
18747 flag_finite_math_only. */
18748 gcc_assert (mode != CCFPmode
18749 || flag_finite_math_only
18750 || (code != LE && code != GE
18751 && code != UNEQ && code != LTGT
18752 && code != UNGT && code != UNLT));
18754 /* These are invalid; the information is not there. */
18755 gcc_assert (mode != CCEQmode || code == EQ || code == NE);
18759 /* Return whether MASK (a CONST_INT) is a valid mask for any rlwinm,
18760 rldicl, rldicr, or rldic instruction in mode MODE. If so, if E is
18761 not zero, store there the bit offset (counted from the right) where
18762 the single stretch of 1 bits begins; and similarly for B, the bit
18763 offset where it ends. */
18765 bool
18766 rs6000_is_valid_mask (rtx mask, int *b, int *e, machine_mode mode)
18768 unsigned HOST_WIDE_INT val = INTVAL (mask);
18769 unsigned HOST_WIDE_INT bit;
18770 int nb, ne;
18771 int n = GET_MODE_PRECISION (mode);
18773 if (mode != DImode && mode != SImode)
18774 return false;
18776 if (INTVAL (mask) >= 0)
18778 bit = val & -val;
18779 ne = exact_log2 (bit);
18780 nb = exact_log2 (val + bit);
18782 else if (val + 1 == 0)
18784 nb = n;
18785 ne = 0;
18787 else if (val & 1)
18789 val = ~val;
18790 bit = val & -val;
18791 nb = exact_log2 (bit);
18792 ne = exact_log2 (val + bit);
18794 else
18796 bit = val & -val;
18797 ne = exact_log2 (bit);
18798 if (val + bit == 0)
18799 nb = n;
18800 else
18801 nb = 0;
18804 nb--;
18806 if (nb < 0 || ne < 0 || nb >= n || ne >= n)
18807 return false;
18809 if (b)
18810 *b = nb;
18811 if (e)
18812 *e = ne;
18814 return true;
18817 /* Return whether MASK (a CONST_INT) is a valid mask for any rlwinm, rldicl,
18818 or rldicr instruction, to implement an AND with it in mode MODE. */
18820 bool
18821 rs6000_is_valid_and_mask (rtx mask, machine_mode mode)
18823 int nb, ne;
18825 if (!rs6000_is_valid_mask (mask, &nb, &ne, mode))
18826 return false;
18828 /* For DImode, we need a rldicl, rldicr, or a rlwinm with mask that
18829 does not wrap. */
18830 if (mode == DImode)
18831 return (ne == 0 || nb == 63 || (nb < 32 && ne <= nb));
18833 /* For SImode, rlwinm can do everything. */
18834 if (mode == SImode)
18835 return (nb < 32 && ne < 32);
18837 return false;
18840 /* Return the instruction template for an AND with mask in mode MODE, with
18841 operands OPERANDS. If DOT is true, make it a record-form instruction. */
18843 const char *
18844 rs6000_insn_for_and_mask (machine_mode mode, rtx *operands, bool dot)
18846 int nb, ne;
18848 if (!rs6000_is_valid_mask (operands[2], &nb, &ne, mode))
18849 gcc_unreachable ();
18851 if (mode == DImode && ne == 0)
18853 operands[3] = GEN_INT (63 - nb);
18854 if (dot)
18855 return "rldicl. %0,%1,0,%3";
18856 return "rldicl %0,%1,0,%3";
18859 if (mode == DImode && nb == 63)
18861 operands[3] = GEN_INT (63 - ne);
18862 if (dot)
18863 return "rldicr. %0,%1,0,%3";
18864 return "rldicr %0,%1,0,%3";
18867 if (nb < 32 && ne < 32)
18869 operands[3] = GEN_INT (31 - nb);
18870 operands[4] = GEN_INT (31 - ne);
18871 if (dot)
18872 return "rlwinm. %0,%1,0,%3,%4";
18873 return "rlwinm %0,%1,0,%3,%4";
18876 gcc_unreachable ();
18879 /* Return whether MASK (a CONST_INT) is a valid mask for any rlw[i]nm,
18880 rld[i]cl, rld[i]cr, or rld[i]c instruction, to implement an AND with
18881 shift SHIFT (a ROTATE, ASHIFT, or LSHIFTRT) in mode MODE. */
18883 bool
18884 rs6000_is_valid_shift_mask (rtx mask, rtx shift, machine_mode mode)
18886 int nb, ne;
18888 if (!rs6000_is_valid_mask (mask, &nb, &ne, mode))
18889 return false;
18891 int n = GET_MODE_PRECISION (mode);
18892 int sh = -1;
18894 if (CONST_INT_P (XEXP (shift, 1)))
18896 sh = INTVAL (XEXP (shift, 1));
18897 if (sh < 0 || sh >= n)
18898 return false;
18901 rtx_code code = GET_CODE (shift);
18903 /* Convert any shift by 0 to a rotate, to simplify below code. */
18904 if (sh == 0)
18905 code = ROTATE;
18907 /* Convert rotate to simple shift if we can, to make analysis simpler. */
18908 if (code == ROTATE && sh >= 0 && nb >= ne && ne >= sh)
18909 code = ASHIFT;
18910 if (code == ROTATE && sh >= 0 && nb >= ne && nb < sh)
18912 code = LSHIFTRT;
18913 sh = n - sh;
18916 /* DImode rotates need rld*. */
18917 if (mode == DImode && code == ROTATE)
18918 return (nb == 63 || ne == 0 || ne == sh);
18920 /* SImode rotates need rlw*. */
18921 if (mode == SImode && code == ROTATE)
18922 return (nb < 32 && ne < 32 && sh < 32);
18924 /* Wrap-around masks are only okay for rotates. */
18925 if (ne > nb)
18926 return false;
18928 /* Variable shifts are only okay for rotates. */
18929 if (sh < 0)
18930 return false;
18932 /* Don't allow ASHIFT if the mask is wrong for that. */
18933 if (code == ASHIFT && ne < sh)
18934 return false;
18936 /* If we can do it with an rlw*, we can do it. Don't allow LSHIFTRT
18937 if the mask is wrong for that. */
18938 if (nb < 32 && ne < 32 && sh < 32
18939 && !(code == LSHIFTRT && nb >= 32 - sh))
18940 return true;
18942 /* If we can do it with an rld*, we can do it. Don't allow LSHIFTRT
18943 if the mask is wrong for that. */
18944 if (code == LSHIFTRT)
18945 sh = 64 - sh;
18946 if (nb == 63 || ne == 0 || ne == sh)
18947 return !(code == LSHIFTRT && nb >= sh);
18949 return false;
18952 /* Return the instruction template for a shift with mask in mode MODE, with
18953 operands OPERANDS. If DOT is true, make it a record-form instruction. */
18955 const char *
18956 rs6000_insn_for_shift_mask (machine_mode mode, rtx *operands, bool dot)
18958 int nb, ne;
18960 if (!rs6000_is_valid_mask (operands[3], &nb, &ne, mode))
18961 gcc_unreachable ();
18963 if (mode == DImode && ne == 0)
18965 if (GET_CODE (operands[4]) == LSHIFTRT && INTVAL (operands[2]))
18966 operands[2] = GEN_INT (64 - INTVAL (operands[2]));
18967 operands[3] = GEN_INT (63 - nb);
18968 if (dot)
18969 return "rld%I2cl. %0,%1,%2,%3";
18970 return "rld%I2cl %0,%1,%2,%3";
18973 if (mode == DImode && nb == 63)
18975 operands[3] = GEN_INT (63 - ne);
18976 if (dot)
18977 return "rld%I2cr. %0,%1,%2,%3";
18978 return "rld%I2cr %0,%1,%2,%3";
18981 if (mode == DImode
18982 && GET_CODE (operands[4]) != LSHIFTRT
18983 && CONST_INT_P (operands[2])
18984 && ne == INTVAL (operands[2]))
18986 operands[3] = GEN_INT (63 - nb);
18987 if (dot)
18988 return "rld%I2c. %0,%1,%2,%3";
18989 return "rld%I2c %0,%1,%2,%3";
18992 if (nb < 32 && ne < 32)
18994 if (GET_CODE (operands[4]) == LSHIFTRT && INTVAL (operands[2]))
18995 operands[2] = GEN_INT (32 - INTVAL (operands[2]));
18996 operands[3] = GEN_INT (31 - nb);
18997 operands[4] = GEN_INT (31 - ne);
18998 /* This insn can also be a 64-bit rotate with mask that really makes
18999 it just a shift right (with mask); the %h below are to adjust for
19000 that situation (shift count is >= 32 in that case). */
19001 if (dot)
19002 return "rlw%I2nm. %0,%1,%h2,%3,%4";
19003 return "rlw%I2nm %0,%1,%h2,%3,%4";
19006 gcc_unreachable ();
19009 /* Return whether MASK (a CONST_INT) is a valid mask for any rlwimi or
19010 rldimi instruction, to implement an insert with shift SHIFT (a ROTATE,
19011 ASHIFT, or LSHIFTRT) in mode MODE. */
19013 bool
19014 rs6000_is_valid_insert_mask (rtx mask, rtx shift, machine_mode mode)
19016 int nb, ne;
19018 if (!rs6000_is_valid_mask (mask, &nb, &ne, mode))
19019 return false;
19021 int n = GET_MODE_PRECISION (mode);
19023 int sh = INTVAL (XEXP (shift, 1));
19024 if (sh < 0 || sh >= n)
19025 return false;
19027 rtx_code code = GET_CODE (shift);
19029 /* Convert any shift by 0 to a rotate, to simplify below code. */
19030 if (sh == 0)
19031 code = ROTATE;
19033 /* Convert rotate to simple shift if we can, to make analysis simpler. */
19034 if (code == ROTATE && sh >= 0 && nb >= ne && ne >= sh)
19035 code = ASHIFT;
19036 if (code == ROTATE && sh >= 0 && nb >= ne && nb < sh)
19038 code = LSHIFTRT;
19039 sh = n - sh;
19042 /* DImode rotates need rldimi. */
19043 if (mode == DImode && code == ROTATE)
19044 return (ne == sh);
19046 /* SImode rotates need rlwimi. */
19047 if (mode == SImode && code == ROTATE)
19048 return (nb < 32 && ne < 32 && sh < 32);
19050 /* Wrap-around masks are only okay for rotates. */
19051 if (ne > nb)
19052 return false;
19054 /* Don't allow ASHIFT if the mask is wrong for that. */
19055 if (code == ASHIFT && ne < sh)
19056 return false;
19058 /* If we can do it with an rlwimi, we can do it. Don't allow LSHIFTRT
19059 if the mask is wrong for that. */
19060 if (nb < 32 && ne < 32 && sh < 32
19061 && !(code == LSHIFTRT && nb >= 32 - sh))
19062 return true;
19064 /* If we can do it with an rldimi, we can do it. Don't allow LSHIFTRT
19065 if the mask is wrong for that. */
19066 if (code == LSHIFTRT)
19067 sh = 64 - sh;
19068 if (ne == sh)
19069 return !(code == LSHIFTRT && nb >= sh);
19071 return false;
19074 /* Return the instruction template for an insert with mask in mode MODE, with
19075 operands OPERANDS. If DOT is true, make it a record-form instruction. */
19077 const char *
19078 rs6000_insn_for_insert_mask (machine_mode mode, rtx *operands, bool dot)
19080 int nb, ne;
19082 if (!rs6000_is_valid_mask (operands[3], &nb, &ne, mode))
19083 gcc_unreachable ();
19085 /* Prefer rldimi because rlwimi is cracked. */
19086 if (TARGET_POWERPC64
19087 && (!dot || mode == DImode)
19088 && GET_CODE (operands[4]) != LSHIFTRT
19089 && ne == INTVAL (operands[2]))
19091 operands[3] = GEN_INT (63 - nb);
19092 if (dot)
19093 return "rldimi. %0,%1,%2,%3";
19094 return "rldimi %0,%1,%2,%3";
19097 if (nb < 32 && ne < 32)
19099 if (GET_CODE (operands[4]) == LSHIFTRT && INTVAL (operands[2]))
19100 operands[2] = GEN_INT (32 - INTVAL (operands[2]));
19101 operands[3] = GEN_INT (31 - nb);
19102 operands[4] = GEN_INT (31 - ne);
19103 if (dot)
19104 return "rlwimi. %0,%1,%2,%3,%4";
19105 return "rlwimi %0,%1,%2,%3,%4";
19108 gcc_unreachable ();
19111 /* Return whether an AND with C (a CONST_INT) in mode MODE can be done
19112 using two machine instructions. */
19114 bool
19115 rs6000_is_valid_2insn_and (rtx c, machine_mode mode)
19117 /* There are two kinds of AND we can handle with two insns:
19118 1) those we can do with two rl* insn;
19119 2) ori[s];xori[s].
19121 We do not handle that last case yet. */
19123 /* If there is just one stretch of ones, we can do it. */
19124 if (rs6000_is_valid_mask (c, NULL, NULL, mode))
19125 return true;
19127 /* Otherwise, fill in the lowest "hole"; if we can do the result with
19128 one insn, we can do the whole thing with two. */
19129 unsigned HOST_WIDE_INT val = INTVAL (c);
19130 unsigned HOST_WIDE_INT bit1 = val & -val;
19131 unsigned HOST_WIDE_INT bit2 = (val + bit1) & ~val;
19132 unsigned HOST_WIDE_INT val1 = (val + bit1) & val;
19133 unsigned HOST_WIDE_INT bit3 = val1 & -val1;
19134 return rs6000_is_valid_and_mask (GEN_INT (val + bit3 - bit2), mode);
19137 /* Emit the two insns to do an AND in mode MODE, with operands OPERANDS.
19138 If EXPAND is true, split rotate-and-mask instructions we generate to
19139 their constituent parts as well (this is used during expand); if DOT
19140 is 1, make the last insn a record-form instruction clobbering the
19141 destination GPR and setting the CC reg (from operands[3]); if 2, set
19142 that GPR as well as the CC reg. */
19144 void
19145 rs6000_emit_2insn_and (machine_mode mode, rtx *operands, bool expand, int dot)
19147 gcc_assert (!(expand && dot));
19149 unsigned HOST_WIDE_INT val = INTVAL (operands[2]);
19151 /* If it is one stretch of ones, it is DImode; shift left, mask, then
19152 shift right. This generates better code than doing the masks without
19153 shifts, or shifting first right and then left. */
19154 int nb, ne;
19155 if (rs6000_is_valid_mask (operands[2], &nb, &ne, mode) && nb >= ne)
19157 gcc_assert (mode == DImode);
19159 int shift = 63 - nb;
19160 if (expand)
19162 rtx tmp1 = gen_reg_rtx (DImode);
19163 rtx tmp2 = gen_reg_rtx (DImode);
19164 emit_insn (gen_ashldi3 (tmp1, operands[1], GEN_INT (shift)));
19165 emit_insn (gen_anddi3 (tmp2, tmp1, GEN_INT (val << shift)));
19166 emit_insn (gen_lshrdi3 (operands[0], tmp2, GEN_INT (shift)));
19168 else
19170 rtx tmp = gen_rtx_ASHIFT (mode, operands[1], GEN_INT (shift));
19171 tmp = gen_rtx_AND (mode, tmp, GEN_INT (val << shift));
19172 emit_move_insn (operands[0], tmp);
19173 tmp = gen_rtx_LSHIFTRT (mode, operands[0], GEN_INT (shift));
19174 rs6000_emit_dot_insn (operands[0], tmp, dot, dot ? operands[3] : 0);
19176 return;
19179 /* Otherwise, make a mask2 that cuts out the lowest "hole", and a mask1
19180 that does the rest. */
19181 unsigned HOST_WIDE_INT bit1 = val & -val;
19182 unsigned HOST_WIDE_INT bit2 = (val + bit1) & ~val;
19183 unsigned HOST_WIDE_INT val1 = (val + bit1) & val;
19184 unsigned HOST_WIDE_INT bit3 = val1 & -val1;
19186 unsigned HOST_WIDE_INT mask1 = -bit3 + bit2 - 1;
19187 unsigned HOST_WIDE_INT mask2 = val + bit3 - bit2;
19189 gcc_assert (rs6000_is_valid_and_mask (GEN_INT (mask2), mode));
19191 /* Two "no-rotate"-and-mask instructions, for SImode. */
19192 if (rs6000_is_valid_and_mask (GEN_INT (mask1), mode))
19194 gcc_assert (mode == SImode);
19196 rtx reg = expand ? gen_reg_rtx (mode) : operands[0];
19197 rtx tmp = gen_rtx_AND (mode, operands[1], GEN_INT (mask1));
19198 emit_move_insn (reg, tmp);
19199 tmp = gen_rtx_AND (mode, reg, GEN_INT (mask2));
19200 rs6000_emit_dot_insn (operands[0], tmp, dot, dot ? operands[3] : 0);
19201 return;
19204 gcc_assert (mode == DImode);
19206 /* Two "no-rotate"-and-mask instructions, for DImode: both are rlwinm
19207 insns; we have to do the first in SImode, because it wraps. */
19208 if (mask2 <= 0xffffffff
19209 && rs6000_is_valid_and_mask (GEN_INT (mask1), SImode))
19211 rtx reg = expand ? gen_reg_rtx (mode) : operands[0];
19212 rtx tmp = gen_rtx_AND (SImode, gen_lowpart (SImode, operands[1]),
19213 GEN_INT (mask1));
19214 rtx reg_low = gen_lowpart (SImode, reg);
19215 emit_move_insn (reg_low, tmp);
19216 tmp = gen_rtx_AND (mode, reg, GEN_INT (mask2));
19217 rs6000_emit_dot_insn (operands[0], tmp, dot, dot ? operands[3] : 0);
19218 return;
19221 /* Two rld* insns: rotate, clear the hole in the middle (which now is
19222 at the top end), rotate back and clear the other hole. */
19223 int right = exact_log2 (bit3);
19224 int left = 64 - right;
19226 /* Rotate the mask too. */
19227 mask1 = (mask1 >> right) | ((bit2 - 1) << left);
19229 if (expand)
19231 rtx tmp1 = gen_reg_rtx (DImode);
19232 rtx tmp2 = gen_reg_rtx (DImode);
19233 rtx tmp3 = gen_reg_rtx (DImode);
19234 emit_insn (gen_rotldi3 (tmp1, operands[1], GEN_INT (left)));
19235 emit_insn (gen_anddi3 (tmp2, tmp1, GEN_INT (mask1)));
19236 emit_insn (gen_rotldi3 (tmp3, tmp2, GEN_INT (right)));
19237 emit_insn (gen_anddi3 (operands[0], tmp3, GEN_INT (mask2)));
19239 else
19241 rtx tmp = gen_rtx_ROTATE (mode, operands[1], GEN_INT (left));
19242 tmp = gen_rtx_AND (mode, tmp, GEN_INT (mask1));
19243 emit_move_insn (operands[0], tmp);
19244 tmp = gen_rtx_ROTATE (mode, operands[0], GEN_INT (right));
19245 tmp = gen_rtx_AND (mode, tmp, GEN_INT (mask2));
19246 rs6000_emit_dot_insn (operands[0], tmp, dot, dot ? operands[3] : 0);
19250 /* Return 1 if REGNO (reg1) == REGNO (reg2) - 1 making them candidates
19251 for lfq and stfq insns iff the registers are hard registers. */
19254 registers_ok_for_quad_peep (rtx reg1, rtx reg2)
19256 /* We might have been passed a SUBREG. */
19257 if (GET_CODE (reg1) != REG || GET_CODE (reg2) != REG)
19258 return 0;
19260 /* We might have been passed non floating point registers. */
19261 if (!FP_REGNO_P (REGNO (reg1))
19262 || !FP_REGNO_P (REGNO (reg2)))
19263 return 0;
19265 return (REGNO (reg1) == REGNO (reg2) - 1);
19268 /* Return 1 if addr1 and addr2 are suitable for lfq or stfq insn.
19269 addr1 and addr2 must be in consecutive memory locations
19270 (addr2 == addr1 + 8). */
19273 mems_ok_for_quad_peep (rtx mem1, rtx mem2)
19275 rtx addr1, addr2;
19276 unsigned int reg1, reg2;
19277 int offset1, offset2;
19279 /* The mems cannot be volatile. */
19280 if (MEM_VOLATILE_P (mem1) || MEM_VOLATILE_P (mem2))
19281 return 0;
19283 addr1 = XEXP (mem1, 0);
19284 addr2 = XEXP (mem2, 0);
19286 /* Extract an offset (if used) from the first addr. */
19287 if (GET_CODE (addr1) == PLUS)
19289 /* If not a REG, return zero. */
19290 if (GET_CODE (XEXP (addr1, 0)) != REG)
19291 return 0;
19292 else
19294 reg1 = REGNO (XEXP (addr1, 0));
19295 /* The offset must be constant! */
19296 if (GET_CODE (XEXP (addr1, 1)) != CONST_INT)
19297 return 0;
19298 offset1 = INTVAL (XEXP (addr1, 1));
19301 else if (GET_CODE (addr1) != REG)
19302 return 0;
19303 else
19305 reg1 = REGNO (addr1);
19306 /* This was a simple (mem (reg)) expression. Offset is 0. */
19307 offset1 = 0;
19310 /* And now for the second addr. */
19311 if (GET_CODE (addr2) == PLUS)
19313 /* If not a REG, return zero. */
19314 if (GET_CODE (XEXP (addr2, 0)) != REG)
19315 return 0;
19316 else
19318 reg2 = REGNO (XEXP (addr2, 0));
19319 /* The offset must be constant. */
19320 if (GET_CODE (XEXP (addr2, 1)) != CONST_INT)
19321 return 0;
19322 offset2 = INTVAL (XEXP (addr2, 1));
19325 else if (GET_CODE (addr2) != REG)
19326 return 0;
19327 else
19329 reg2 = REGNO (addr2);
19330 /* This was a simple (mem (reg)) expression. Offset is 0. */
19331 offset2 = 0;
19334 /* Both of these must have the same base register. */
19335 if (reg1 != reg2)
19336 return 0;
19338 /* The offset for the second addr must be 8 more than the first addr. */
19339 if (offset2 != offset1 + 8)
19340 return 0;
19342 /* All the tests passed. addr1 and addr2 are valid for lfq or stfq
19343 instructions. */
19344 return 1;
19347 /* Implement TARGET_SECONDARY_RELOAD_NEEDED_MODE. For SDmode values we
19348 need to use DDmode, in all other cases we can use the same mode. */
19349 static machine_mode
19350 rs6000_secondary_memory_needed_mode (machine_mode mode)
19352 if (lra_in_progress && mode == SDmode)
19353 return DDmode;
19354 return mode;
19357 /* Classify a register type. Because the FMRGOW/FMRGEW instructions only work
19358 on traditional floating point registers, and the VMRGOW/VMRGEW instructions
19359 only work on the traditional altivec registers, note if an altivec register
19360 was chosen. */
19362 static enum rs6000_reg_type
19363 register_to_reg_type (rtx reg, bool *is_altivec)
19365 HOST_WIDE_INT regno;
19366 enum reg_class rclass;
19368 if (GET_CODE (reg) == SUBREG)
19369 reg = SUBREG_REG (reg);
19371 if (!REG_P (reg))
19372 return NO_REG_TYPE;
19374 regno = REGNO (reg);
19375 if (regno >= FIRST_PSEUDO_REGISTER)
19377 if (!lra_in_progress && !reload_completed)
19378 return PSEUDO_REG_TYPE;
19380 regno = true_regnum (reg);
19381 if (regno < 0 || regno >= FIRST_PSEUDO_REGISTER)
19382 return PSEUDO_REG_TYPE;
19385 gcc_assert (regno >= 0);
19387 if (is_altivec && ALTIVEC_REGNO_P (regno))
19388 *is_altivec = true;
19390 rclass = rs6000_regno_regclass[regno];
19391 return reg_class_to_reg_type[(int)rclass];
19394 /* Helper function to return the cost of adding a TOC entry address. */
19396 static inline int
19397 rs6000_secondary_reload_toc_costs (addr_mask_type addr_mask)
19399 int ret;
19401 if (TARGET_CMODEL != CMODEL_SMALL)
19402 ret = ((addr_mask & RELOAD_REG_OFFSET) == 0) ? 1 : 2;
19404 else
19405 ret = (TARGET_MINIMAL_TOC) ? 6 : 3;
19407 return ret;
19410 /* Helper function for rs6000_secondary_reload to determine whether the memory
19411 address (ADDR) with a given register class (RCLASS) and machine mode (MODE)
19412 needs reloading. Return negative if the memory is not handled by the memory
19413 helper functions and to try a different reload method, 0 if no additional
19414 instructions are need, and positive to give the extra cost for the
19415 memory. */
19417 static int
19418 rs6000_secondary_reload_memory (rtx addr,
19419 enum reg_class rclass,
19420 machine_mode mode)
19422 int extra_cost = 0;
19423 rtx reg, and_arg, plus_arg0, plus_arg1;
19424 addr_mask_type addr_mask;
19425 const char *type = NULL;
19426 const char *fail_msg = NULL;
19428 if (GPR_REG_CLASS_P (rclass))
19429 addr_mask = reg_addr[mode].addr_mask[RELOAD_REG_GPR];
19431 else if (rclass == FLOAT_REGS)
19432 addr_mask = reg_addr[mode].addr_mask[RELOAD_REG_FPR];
19434 else if (rclass == ALTIVEC_REGS)
19435 addr_mask = reg_addr[mode].addr_mask[RELOAD_REG_VMX];
19437 /* For the combined VSX_REGS, turn off Altivec AND -16. */
19438 else if (rclass == VSX_REGS)
19439 addr_mask = (reg_addr[mode].addr_mask[RELOAD_REG_VMX]
19440 & ~RELOAD_REG_AND_M16);
19442 /* If the register allocator hasn't made up its mind yet on the register
19443 class to use, settle on defaults to use. */
19444 else if (rclass == NO_REGS)
19446 addr_mask = (reg_addr[mode].addr_mask[RELOAD_REG_ANY]
19447 & ~RELOAD_REG_AND_M16);
19449 if ((addr_mask & RELOAD_REG_MULTIPLE) != 0)
19450 addr_mask &= ~(RELOAD_REG_INDEXED
19451 | RELOAD_REG_PRE_INCDEC
19452 | RELOAD_REG_PRE_MODIFY);
19455 else
19456 addr_mask = 0;
19458 /* If the register isn't valid in this register class, just return now. */
19459 if ((addr_mask & RELOAD_REG_VALID) == 0)
19461 if (TARGET_DEBUG_ADDR)
19463 fprintf (stderr,
19464 "rs6000_secondary_reload_memory: mode = %s, class = %s, "
19465 "not valid in class\n",
19466 GET_MODE_NAME (mode), reg_class_names[rclass]);
19467 debug_rtx (addr);
19470 return -1;
19473 switch (GET_CODE (addr))
19475 /* Does the register class supports auto update forms for this mode? We
19476 don't need a scratch register, since the powerpc only supports
19477 PRE_INC, PRE_DEC, and PRE_MODIFY. */
19478 case PRE_INC:
19479 case PRE_DEC:
19480 reg = XEXP (addr, 0);
19481 if (!base_reg_operand (addr, GET_MODE (reg)))
19483 fail_msg = "no base register #1";
19484 extra_cost = -1;
19487 else if ((addr_mask & RELOAD_REG_PRE_INCDEC) == 0)
19489 extra_cost = 1;
19490 type = "update";
19492 break;
19494 case PRE_MODIFY:
19495 reg = XEXP (addr, 0);
19496 plus_arg1 = XEXP (addr, 1);
19497 if (!base_reg_operand (reg, GET_MODE (reg))
19498 || GET_CODE (plus_arg1) != PLUS
19499 || !rtx_equal_p (reg, XEXP (plus_arg1, 0)))
19501 fail_msg = "bad PRE_MODIFY";
19502 extra_cost = -1;
19505 else if ((addr_mask & RELOAD_REG_PRE_MODIFY) == 0)
19507 extra_cost = 1;
19508 type = "update";
19510 break;
19512 /* Do we need to simulate AND -16 to clear the bottom address bits used
19513 in VMX load/stores? Only allow the AND for vector sizes. */
19514 case AND:
19515 and_arg = XEXP (addr, 0);
19516 if (GET_MODE_SIZE (mode) != 16
19517 || GET_CODE (XEXP (addr, 1)) != CONST_INT
19518 || INTVAL (XEXP (addr, 1)) != -16)
19520 fail_msg = "bad Altivec AND #1";
19521 extra_cost = -1;
19524 if (rclass != ALTIVEC_REGS)
19526 if (legitimate_indirect_address_p (and_arg, false))
19527 extra_cost = 1;
19529 else if (legitimate_indexed_address_p (and_arg, false))
19530 extra_cost = 2;
19532 else
19534 fail_msg = "bad Altivec AND #2";
19535 extra_cost = -1;
19538 type = "and";
19540 break;
19542 /* If this is an indirect address, make sure it is a base register. */
19543 case REG:
19544 case SUBREG:
19545 if (!legitimate_indirect_address_p (addr, false))
19547 extra_cost = 1;
19548 type = "move";
19550 break;
19552 /* If this is an indexed address, make sure the register class can handle
19553 indexed addresses for this mode. */
19554 case PLUS:
19555 plus_arg0 = XEXP (addr, 0);
19556 plus_arg1 = XEXP (addr, 1);
19558 /* (plus (plus (reg) (constant)) (constant)) is generated during
19559 push_reload processing, so handle it now. */
19560 if (GET_CODE (plus_arg0) == PLUS && CONST_INT_P (plus_arg1))
19562 if ((addr_mask & RELOAD_REG_OFFSET) == 0)
19564 extra_cost = 1;
19565 type = "offset";
19569 /* (plus (plus (reg) (constant)) (reg)) is also generated during
19570 push_reload processing, so handle it now. */
19571 else if (GET_CODE (plus_arg0) == PLUS && REG_P (plus_arg1))
19573 if ((addr_mask & RELOAD_REG_INDEXED) == 0)
19575 extra_cost = 1;
19576 type = "indexed #2";
19580 else if (!base_reg_operand (plus_arg0, GET_MODE (plus_arg0)))
19582 fail_msg = "no base register #2";
19583 extra_cost = -1;
19586 else if (int_reg_operand (plus_arg1, GET_MODE (plus_arg1)))
19588 if ((addr_mask & RELOAD_REG_INDEXED) == 0
19589 || !legitimate_indexed_address_p (addr, false))
19591 extra_cost = 1;
19592 type = "indexed";
19596 else if ((addr_mask & RELOAD_REG_QUAD_OFFSET) != 0
19597 && CONST_INT_P (plus_arg1))
19599 if (!quad_address_offset_p (INTVAL (plus_arg1)))
19601 extra_cost = 1;
19602 type = "vector d-form offset";
19606 /* Make sure the register class can handle offset addresses. */
19607 else if (rs6000_legitimate_offset_address_p (mode, addr, false, true))
19609 if ((addr_mask & RELOAD_REG_OFFSET) == 0)
19611 extra_cost = 1;
19612 type = "offset #2";
19616 else
19618 fail_msg = "bad PLUS";
19619 extra_cost = -1;
19622 break;
19624 case LO_SUM:
19625 /* Quad offsets are restricted and can't handle normal addresses. */
19626 if ((addr_mask & RELOAD_REG_QUAD_OFFSET) != 0)
19628 extra_cost = -1;
19629 type = "vector d-form lo_sum";
19632 else if (!legitimate_lo_sum_address_p (mode, addr, false))
19634 fail_msg = "bad LO_SUM";
19635 extra_cost = -1;
19638 if ((addr_mask & RELOAD_REG_OFFSET) == 0)
19640 extra_cost = 1;
19641 type = "lo_sum";
19643 break;
19645 /* Static addresses need to create a TOC entry. */
19646 case CONST:
19647 case SYMBOL_REF:
19648 case LABEL_REF:
19649 if ((addr_mask & RELOAD_REG_QUAD_OFFSET) != 0)
19651 extra_cost = -1;
19652 type = "vector d-form lo_sum #2";
19655 else
19657 type = "address";
19658 extra_cost = rs6000_secondary_reload_toc_costs (addr_mask);
19660 break;
19662 /* TOC references look like offsetable memory. */
19663 case UNSPEC:
19664 if (TARGET_CMODEL == CMODEL_SMALL || XINT (addr, 1) != UNSPEC_TOCREL)
19666 fail_msg = "bad UNSPEC";
19667 extra_cost = -1;
19670 else if ((addr_mask & RELOAD_REG_QUAD_OFFSET) != 0)
19672 extra_cost = -1;
19673 type = "vector d-form lo_sum #3";
19676 else if ((addr_mask & RELOAD_REG_OFFSET) == 0)
19678 extra_cost = 1;
19679 type = "toc reference";
19681 break;
19683 default:
19685 fail_msg = "bad address";
19686 extra_cost = -1;
19690 if (TARGET_DEBUG_ADDR /* && extra_cost != 0 */)
19692 if (extra_cost < 0)
19693 fprintf (stderr,
19694 "rs6000_secondary_reload_memory error: mode = %s, "
19695 "class = %s, addr_mask = '%s', %s\n",
19696 GET_MODE_NAME (mode),
19697 reg_class_names[rclass],
19698 rs6000_debug_addr_mask (addr_mask, false),
19699 (fail_msg != NULL) ? fail_msg : "<bad address>");
19701 else
19702 fprintf (stderr,
19703 "rs6000_secondary_reload_memory: mode = %s, class = %s, "
19704 "addr_mask = '%s', extra cost = %d, %s\n",
19705 GET_MODE_NAME (mode),
19706 reg_class_names[rclass],
19707 rs6000_debug_addr_mask (addr_mask, false),
19708 extra_cost,
19709 (type) ? type : "<none>");
19711 debug_rtx (addr);
19714 return extra_cost;
19717 /* Helper function for rs6000_secondary_reload to return true if a move to a
19718 different register classe is really a simple move. */
19720 static bool
19721 rs6000_secondary_reload_simple_move (enum rs6000_reg_type to_type,
19722 enum rs6000_reg_type from_type,
19723 machine_mode mode)
19725 int size = GET_MODE_SIZE (mode);
19727 /* Add support for various direct moves available. In this function, we only
19728 look at cases where we don't need any extra registers, and one or more
19729 simple move insns are issued. Originally small integers are not allowed
19730 in FPR/VSX registers. Single precision binary floating is not a simple
19731 move because we need to convert to the single precision memory layout.
19732 The 4-byte SDmode can be moved. TDmode values are disallowed since they
19733 need special direct move handling, which we do not support yet. */
19734 if (TARGET_DIRECT_MOVE
19735 && ((to_type == GPR_REG_TYPE && from_type == VSX_REG_TYPE)
19736 || (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE)))
19738 if (TARGET_POWERPC64)
19740 /* ISA 2.07: MTVSRD or MVFVSRD. */
19741 if (size == 8)
19742 return true;
19744 /* ISA 3.0: MTVSRDD or MFVSRD + MFVSRLD. */
19745 if (size == 16 && TARGET_P9_VECTOR && mode != TDmode)
19746 return true;
19749 /* ISA 2.07: MTVSRWZ or MFVSRWZ. */
19750 if (TARGET_P8_VECTOR)
19752 if (mode == SImode)
19753 return true;
19755 if (TARGET_P9_VECTOR && (mode == HImode || mode == QImode))
19756 return true;
19759 /* ISA 2.07: MTVSRWZ or MFVSRWZ. */
19760 if (mode == SDmode)
19761 return true;
19764 /* Power6+: MFTGPR or MFFGPR. */
19765 else if (TARGET_MFPGPR && TARGET_POWERPC64 && size == 8
19766 && ((to_type == GPR_REG_TYPE && from_type == FPR_REG_TYPE)
19767 || (to_type == FPR_REG_TYPE && from_type == GPR_REG_TYPE)))
19768 return true;
19770 /* Move to/from SPR. */
19771 else if ((size == 4 || (TARGET_POWERPC64 && size == 8))
19772 && ((to_type == GPR_REG_TYPE && from_type == SPR_REG_TYPE)
19773 || (to_type == SPR_REG_TYPE && from_type == GPR_REG_TYPE)))
19774 return true;
19776 return false;
19779 /* Direct move helper function for rs6000_secondary_reload, handle all of the
19780 special direct moves that involve allocating an extra register, return the
19781 insn code of the helper function if there is such a function or
19782 CODE_FOR_nothing if not. */
19784 static bool
19785 rs6000_secondary_reload_direct_move (enum rs6000_reg_type to_type,
19786 enum rs6000_reg_type from_type,
19787 machine_mode mode,
19788 secondary_reload_info *sri,
19789 bool altivec_p)
19791 bool ret = false;
19792 enum insn_code icode = CODE_FOR_nothing;
19793 int cost = 0;
19794 int size = GET_MODE_SIZE (mode);
19796 if (TARGET_POWERPC64 && size == 16)
19798 /* Handle moving 128-bit values from GPRs to VSX point registers on
19799 ISA 2.07 (power8, power9) when running in 64-bit mode using
19800 XXPERMDI to glue the two 64-bit values back together. */
19801 if (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE)
19803 cost = 3; /* 2 mtvsrd's, 1 xxpermdi. */
19804 icode = reg_addr[mode].reload_vsx_gpr;
19807 /* Handle moving 128-bit values from VSX point registers to GPRs on
19808 ISA 2.07 when running in 64-bit mode using XXPERMDI to get access to the
19809 bottom 64-bit value. */
19810 else if (to_type == GPR_REG_TYPE && from_type == VSX_REG_TYPE)
19812 cost = 3; /* 2 mfvsrd's, 1 xxpermdi. */
19813 icode = reg_addr[mode].reload_gpr_vsx;
19817 else if (TARGET_POWERPC64 && mode == SFmode)
19819 if (to_type == GPR_REG_TYPE && from_type == VSX_REG_TYPE)
19821 cost = 3; /* xscvdpspn, mfvsrd, and. */
19822 icode = reg_addr[mode].reload_gpr_vsx;
19825 else if (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE)
19827 cost = 2; /* mtvsrz, xscvspdpn. */
19828 icode = reg_addr[mode].reload_vsx_gpr;
19832 else if (!TARGET_POWERPC64 && size == 8)
19834 /* Handle moving 64-bit values from GPRs to floating point registers on
19835 ISA 2.07 when running in 32-bit mode using FMRGOW to glue the two
19836 32-bit values back together. Altivec register classes must be handled
19837 specially since a different instruction is used, and the secondary
19838 reload support requires a single instruction class in the scratch
19839 register constraint. However, right now TFmode is not allowed in
19840 Altivec registers, so the pattern will never match. */
19841 if (to_type == VSX_REG_TYPE && from_type == GPR_REG_TYPE && !altivec_p)
19843 cost = 3; /* 2 mtvsrwz's, 1 fmrgow. */
19844 icode = reg_addr[mode].reload_fpr_gpr;
19848 if (icode != CODE_FOR_nothing)
19850 ret = true;
19851 if (sri)
19853 sri->icode = icode;
19854 sri->extra_cost = cost;
19858 return ret;
19861 /* Return whether a move between two register classes can be done either
19862 directly (simple move) or via a pattern that uses a single extra temporary
19863 (using ISA 2.07's direct move in this case. */
19865 static bool
19866 rs6000_secondary_reload_move (enum rs6000_reg_type to_type,
19867 enum rs6000_reg_type from_type,
19868 machine_mode mode,
19869 secondary_reload_info *sri,
19870 bool altivec_p)
19872 /* Fall back to load/store reloads if either type is not a register. */
19873 if (to_type == NO_REG_TYPE || from_type == NO_REG_TYPE)
19874 return false;
19876 /* If we haven't allocated registers yet, assume the move can be done for the
19877 standard register types. */
19878 if ((to_type == PSEUDO_REG_TYPE && from_type == PSEUDO_REG_TYPE)
19879 || (to_type == PSEUDO_REG_TYPE && IS_STD_REG_TYPE (from_type))
19880 || (from_type == PSEUDO_REG_TYPE && IS_STD_REG_TYPE (to_type)))
19881 return true;
19883 /* Moves to the same set of registers is a simple move for non-specialized
19884 registers. */
19885 if (to_type == from_type && IS_STD_REG_TYPE (to_type))
19886 return true;
19888 /* Check whether a simple move can be done directly. */
19889 if (rs6000_secondary_reload_simple_move (to_type, from_type, mode))
19891 if (sri)
19893 sri->icode = CODE_FOR_nothing;
19894 sri->extra_cost = 0;
19896 return true;
19899 /* Now check if we can do it in a few steps. */
19900 return rs6000_secondary_reload_direct_move (to_type, from_type, mode, sri,
19901 altivec_p);
19904 /* Inform reload about cases where moving X with a mode MODE to a register in
19905 RCLASS requires an extra scratch or immediate register. Return the class
19906 needed for the immediate register.
19908 For VSX and Altivec, we may need a register to convert sp+offset into
19909 reg+sp.
19911 For misaligned 64-bit gpr loads and stores we need a register to
19912 convert an offset address to indirect. */
19914 static reg_class_t
19915 rs6000_secondary_reload (bool in_p,
19916 rtx x,
19917 reg_class_t rclass_i,
19918 machine_mode mode,
19919 secondary_reload_info *sri)
19921 enum reg_class rclass = (enum reg_class) rclass_i;
19922 reg_class_t ret = ALL_REGS;
19923 enum insn_code icode;
19924 bool default_p = false;
19925 bool done_p = false;
19927 /* Allow subreg of memory before/during reload. */
19928 bool memory_p = (MEM_P (x)
19929 || (!reload_completed && GET_CODE (x) == SUBREG
19930 && MEM_P (SUBREG_REG (x))));
19932 sri->icode = CODE_FOR_nothing;
19933 sri->t_icode = CODE_FOR_nothing;
19934 sri->extra_cost = 0;
19935 icode = ((in_p)
19936 ? reg_addr[mode].reload_load
19937 : reg_addr[mode].reload_store);
19939 if (REG_P (x) || register_operand (x, mode))
19941 enum rs6000_reg_type to_type = reg_class_to_reg_type[(int)rclass];
19942 bool altivec_p = (rclass == ALTIVEC_REGS);
19943 enum rs6000_reg_type from_type = register_to_reg_type (x, &altivec_p);
19945 if (!in_p)
19946 std::swap (to_type, from_type);
19948 /* Can we do a direct move of some sort? */
19949 if (rs6000_secondary_reload_move (to_type, from_type, mode, sri,
19950 altivec_p))
19952 icode = (enum insn_code)sri->icode;
19953 default_p = false;
19954 done_p = true;
19955 ret = NO_REGS;
19959 /* Make sure 0.0 is not reloaded or forced into memory. */
19960 if (x == CONST0_RTX (mode) && VSX_REG_CLASS_P (rclass))
19962 ret = NO_REGS;
19963 default_p = false;
19964 done_p = true;
19967 /* If this is a scalar floating point value and we want to load it into the
19968 traditional Altivec registers, do it via a move via a traditional floating
19969 point register, unless we have D-form addressing. Also make sure that
19970 non-zero constants use a FPR. */
19971 if (!done_p && reg_addr[mode].scalar_in_vmx_p
19972 && !mode_supports_vmx_dform (mode)
19973 && (rclass == VSX_REGS || rclass == ALTIVEC_REGS)
19974 && (memory_p || (GET_CODE (x) == CONST_DOUBLE)))
19976 ret = FLOAT_REGS;
19977 default_p = false;
19978 done_p = true;
19981 /* Handle reload of load/stores if we have reload helper functions. */
19982 if (!done_p && icode != CODE_FOR_nothing && memory_p)
19984 int extra_cost = rs6000_secondary_reload_memory (XEXP (x, 0), rclass,
19985 mode);
19987 if (extra_cost >= 0)
19989 done_p = true;
19990 ret = NO_REGS;
19991 if (extra_cost > 0)
19993 sri->extra_cost = extra_cost;
19994 sri->icode = icode;
19999 /* Handle unaligned loads and stores of integer registers. */
20000 if (!done_p && TARGET_POWERPC64
20001 && reg_class_to_reg_type[(int)rclass] == GPR_REG_TYPE
20002 && memory_p
20003 && GET_MODE_SIZE (GET_MODE (x)) >= UNITS_PER_WORD)
20005 rtx addr = XEXP (x, 0);
20006 rtx off = address_offset (addr);
20008 if (off != NULL_RTX)
20010 unsigned int extra = GET_MODE_SIZE (GET_MODE (x)) - UNITS_PER_WORD;
20011 unsigned HOST_WIDE_INT offset = INTVAL (off);
20013 /* We need a secondary reload when our legitimate_address_p
20014 says the address is good (as otherwise the entire address
20015 will be reloaded), and the offset is not a multiple of
20016 four or we have an address wrap. Address wrap will only
20017 occur for LO_SUMs since legitimate_offset_address_p
20018 rejects addresses for 16-byte mems that will wrap. */
20019 if (GET_CODE (addr) == LO_SUM
20020 ? (1 /* legitimate_address_p allows any offset for lo_sum */
20021 && ((offset & 3) != 0
20022 || ((offset & 0xffff) ^ 0x8000) >= 0x10000 - extra))
20023 : (offset + 0x8000 < 0x10000 - extra /* legitimate_address_p */
20024 && (offset & 3) != 0))
20026 /* -m32 -mpowerpc64 needs to use a 32-bit scratch register. */
20027 if (in_p)
20028 sri->icode = ((TARGET_32BIT) ? CODE_FOR_reload_si_load
20029 : CODE_FOR_reload_di_load);
20030 else
20031 sri->icode = ((TARGET_32BIT) ? CODE_FOR_reload_si_store
20032 : CODE_FOR_reload_di_store);
20033 sri->extra_cost = 2;
20034 ret = NO_REGS;
20035 done_p = true;
20037 else
20038 default_p = true;
20040 else
20041 default_p = true;
20044 if (!done_p && !TARGET_POWERPC64
20045 && reg_class_to_reg_type[(int)rclass] == GPR_REG_TYPE
20046 && memory_p
20047 && GET_MODE_SIZE (GET_MODE (x)) > UNITS_PER_WORD)
20049 rtx addr = XEXP (x, 0);
20050 rtx off = address_offset (addr);
20052 if (off != NULL_RTX)
20054 unsigned int extra = GET_MODE_SIZE (GET_MODE (x)) - UNITS_PER_WORD;
20055 unsigned HOST_WIDE_INT offset = INTVAL (off);
20057 /* We need a secondary reload when our legitimate_address_p
20058 says the address is good (as otherwise the entire address
20059 will be reloaded), and we have a wrap.
20061 legitimate_lo_sum_address_p allows LO_SUM addresses to
20062 have any offset so test for wrap in the low 16 bits.
20064 legitimate_offset_address_p checks for the range
20065 [-0x8000,0x7fff] for mode size of 8 and [-0x8000,0x7ff7]
20066 for mode size of 16. We wrap at [0x7ffc,0x7fff] and
20067 [0x7ff4,0x7fff] respectively, so test for the
20068 intersection of these ranges, [0x7ffc,0x7fff] and
20069 [0x7ff4,0x7ff7] respectively.
20071 Note that the address we see here may have been
20072 manipulated by legitimize_reload_address. */
20073 if (GET_CODE (addr) == LO_SUM
20074 ? ((offset & 0xffff) ^ 0x8000) >= 0x10000 - extra
20075 : offset - (0x8000 - extra) < UNITS_PER_WORD)
20077 if (in_p)
20078 sri->icode = CODE_FOR_reload_si_load;
20079 else
20080 sri->icode = CODE_FOR_reload_si_store;
20081 sri->extra_cost = 2;
20082 ret = NO_REGS;
20083 done_p = true;
20085 else
20086 default_p = true;
20088 else
20089 default_p = true;
20092 if (!done_p)
20093 default_p = true;
20095 if (default_p)
20096 ret = default_secondary_reload (in_p, x, rclass, mode, sri);
20098 gcc_assert (ret != ALL_REGS);
20100 if (TARGET_DEBUG_ADDR)
20102 fprintf (stderr,
20103 "\nrs6000_secondary_reload, return %s, in_p = %s, rclass = %s, "
20104 "mode = %s",
20105 reg_class_names[ret],
20106 in_p ? "true" : "false",
20107 reg_class_names[rclass],
20108 GET_MODE_NAME (mode));
20110 if (reload_completed)
20111 fputs (", after reload", stderr);
20113 if (!done_p)
20114 fputs (", done_p not set", stderr);
20116 if (default_p)
20117 fputs (", default secondary reload", stderr);
20119 if (sri->icode != CODE_FOR_nothing)
20120 fprintf (stderr, ", reload func = %s, extra cost = %d",
20121 insn_data[sri->icode].name, sri->extra_cost);
20123 else if (sri->extra_cost > 0)
20124 fprintf (stderr, ", extra cost = %d", sri->extra_cost);
20126 fputs ("\n", stderr);
20127 debug_rtx (x);
20130 return ret;
20133 /* Better tracing for rs6000_secondary_reload_inner. */
20135 static void
20136 rs6000_secondary_reload_trace (int line, rtx reg, rtx mem, rtx scratch,
20137 bool store_p)
20139 rtx set, clobber;
20141 gcc_assert (reg != NULL_RTX && mem != NULL_RTX && scratch != NULL_RTX);
20143 fprintf (stderr, "rs6000_secondary_reload_inner:%d, type = %s\n", line,
20144 store_p ? "store" : "load");
20146 if (store_p)
20147 set = gen_rtx_SET (mem, reg);
20148 else
20149 set = gen_rtx_SET (reg, mem);
20151 clobber = gen_rtx_CLOBBER (VOIDmode, scratch);
20152 debug_rtx (gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, set, clobber)));
20155 static void rs6000_secondary_reload_fail (int, rtx, rtx, rtx, bool)
20156 ATTRIBUTE_NORETURN;
20158 static void
20159 rs6000_secondary_reload_fail (int line, rtx reg, rtx mem, rtx scratch,
20160 bool store_p)
20162 rs6000_secondary_reload_trace (line, reg, mem, scratch, store_p);
20163 gcc_unreachable ();
20166 /* Fixup reload addresses for values in GPR, FPR, and VMX registers that have
20167 reload helper functions. These were identified in
20168 rs6000_secondary_reload_memory, and if reload decided to use the secondary
20169 reload, it calls the insns:
20170 reload_<RELOAD:mode>_<P:mptrsize>_store
20171 reload_<RELOAD:mode>_<P:mptrsize>_load
20173 which in turn calls this function, to do whatever is necessary to create
20174 valid addresses. */
20176 void
20177 rs6000_secondary_reload_inner (rtx reg, rtx mem, rtx scratch, bool store_p)
20179 int regno = true_regnum (reg);
20180 machine_mode mode = GET_MODE (reg);
20181 addr_mask_type addr_mask;
20182 rtx addr;
20183 rtx new_addr;
20184 rtx op_reg, op0, op1;
20185 rtx and_op;
20186 rtx cc_clobber;
20187 rtvec rv;
20189 if (regno < 0 || regno >= FIRST_PSEUDO_REGISTER || !MEM_P (mem)
20190 || !base_reg_operand (scratch, GET_MODE (scratch)))
20191 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
20193 if (IN_RANGE (regno, FIRST_GPR_REGNO, LAST_GPR_REGNO))
20194 addr_mask = reg_addr[mode].addr_mask[RELOAD_REG_GPR];
20196 else if (IN_RANGE (regno, FIRST_FPR_REGNO, LAST_FPR_REGNO))
20197 addr_mask = reg_addr[mode].addr_mask[RELOAD_REG_FPR];
20199 else if (IN_RANGE (regno, FIRST_ALTIVEC_REGNO, LAST_ALTIVEC_REGNO))
20200 addr_mask = reg_addr[mode].addr_mask[RELOAD_REG_VMX];
20202 else
20203 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
20205 /* Make sure the mode is valid in this register class. */
20206 if ((addr_mask & RELOAD_REG_VALID) == 0)
20207 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
20209 if (TARGET_DEBUG_ADDR)
20210 rs6000_secondary_reload_trace (__LINE__, reg, mem, scratch, store_p);
20212 new_addr = addr = XEXP (mem, 0);
20213 switch (GET_CODE (addr))
20215 /* Does the register class support auto update forms for this mode? If
20216 not, do the update now. We don't need a scratch register, since the
20217 powerpc only supports PRE_INC, PRE_DEC, and PRE_MODIFY. */
20218 case PRE_INC:
20219 case PRE_DEC:
20220 op_reg = XEXP (addr, 0);
20221 if (!base_reg_operand (op_reg, Pmode))
20222 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
20224 if ((addr_mask & RELOAD_REG_PRE_INCDEC) == 0)
20226 emit_insn (gen_add2_insn (op_reg, GEN_INT (GET_MODE_SIZE (mode))));
20227 new_addr = op_reg;
20229 break;
20231 case PRE_MODIFY:
20232 op0 = XEXP (addr, 0);
20233 op1 = XEXP (addr, 1);
20234 if (!base_reg_operand (op0, Pmode)
20235 || GET_CODE (op1) != PLUS
20236 || !rtx_equal_p (op0, XEXP (op1, 0)))
20237 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
20239 if ((addr_mask & RELOAD_REG_PRE_MODIFY) == 0)
20241 emit_insn (gen_rtx_SET (op0, op1));
20242 new_addr = reg;
20244 break;
20246 /* Do we need to simulate AND -16 to clear the bottom address bits used
20247 in VMX load/stores? */
20248 case AND:
20249 op0 = XEXP (addr, 0);
20250 op1 = XEXP (addr, 1);
20251 if ((addr_mask & RELOAD_REG_AND_M16) == 0)
20253 if (REG_P (op0) || GET_CODE (op0) == SUBREG)
20254 op_reg = op0;
20256 else if (GET_CODE (op1) == PLUS)
20258 emit_insn (gen_rtx_SET (scratch, op1));
20259 op_reg = scratch;
20262 else
20263 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
20265 and_op = gen_rtx_AND (GET_MODE (scratch), op_reg, op1);
20266 cc_clobber = gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (CCmode));
20267 rv = gen_rtvec (2, gen_rtx_SET (scratch, and_op), cc_clobber);
20268 emit_insn (gen_rtx_PARALLEL (VOIDmode, rv));
20269 new_addr = scratch;
20271 break;
20273 /* If this is an indirect address, make sure it is a base register. */
20274 case REG:
20275 case SUBREG:
20276 if (!base_reg_operand (addr, GET_MODE (addr)))
20278 emit_insn (gen_rtx_SET (scratch, addr));
20279 new_addr = scratch;
20281 break;
20283 /* If this is an indexed address, make sure the register class can handle
20284 indexed addresses for this mode. */
20285 case PLUS:
20286 op0 = XEXP (addr, 0);
20287 op1 = XEXP (addr, 1);
20288 if (!base_reg_operand (op0, Pmode))
20289 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
20291 else if (int_reg_operand (op1, Pmode))
20293 if ((addr_mask & RELOAD_REG_INDEXED) == 0)
20295 emit_insn (gen_rtx_SET (scratch, addr));
20296 new_addr = scratch;
20300 else if (mode_supports_vsx_dform_quad (mode) && CONST_INT_P (op1))
20302 if (((addr_mask & RELOAD_REG_QUAD_OFFSET) == 0)
20303 || !quad_address_p (addr, mode, false))
20305 emit_insn (gen_rtx_SET (scratch, addr));
20306 new_addr = scratch;
20310 /* Make sure the register class can handle offset addresses. */
20311 else if (rs6000_legitimate_offset_address_p (mode, addr, false, true))
20313 if ((addr_mask & RELOAD_REG_OFFSET) == 0)
20315 emit_insn (gen_rtx_SET (scratch, addr));
20316 new_addr = scratch;
20320 else
20321 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
20323 break;
20325 case LO_SUM:
20326 op0 = XEXP (addr, 0);
20327 op1 = XEXP (addr, 1);
20328 if (!base_reg_operand (op0, Pmode))
20329 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
20331 else if (int_reg_operand (op1, Pmode))
20333 if ((addr_mask & RELOAD_REG_INDEXED) == 0)
20335 emit_insn (gen_rtx_SET (scratch, addr));
20336 new_addr = scratch;
20340 /* Quad offsets are restricted and can't handle normal addresses. */
20341 else if (mode_supports_vsx_dform_quad (mode))
20343 emit_insn (gen_rtx_SET (scratch, addr));
20344 new_addr = scratch;
20347 /* Make sure the register class can handle offset addresses. */
20348 else if (legitimate_lo_sum_address_p (mode, addr, false))
20350 if ((addr_mask & RELOAD_REG_OFFSET) == 0)
20352 emit_insn (gen_rtx_SET (scratch, addr));
20353 new_addr = scratch;
20357 else
20358 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
20360 break;
20362 case SYMBOL_REF:
20363 case CONST:
20364 case LABEL_REF:
20365 rs6000_emit_move (scratch, addr, Pmode);
20366 new_addr = scratch;
20367 break;
20369 default:
20370 rs6000_secondary_reload_fail (__LINE__, reg, mem, scratch, store_p);
20373 /* Adjust the address if it changed. */
20374 if (addr != new_addr)
20376 mem = replace_equiv_address_nv (mem, new_addr);
20377 if (TARGET_DEBUG_ADDR)
20378 fprintf (stderr, "\nrs6000_secondary_reload_inner, mem adjusted.\n");
20381 /* Now create the move. */
20382 if (store_p)
20383 emit_insn (gen_rtx_SET (mem, reg));
20384 else
20385 emit_insn (gen_rtx_SET (reg, mem));
20387 return;
20390 /* Convert reloads involving 64-bit gprs and misaligned offset
20391 addressing, or multiple 32-bit gprs and offsets that are too large,
20392 to use indirect addressing. */
20394 void
20395 rs6000_secondary_reload_gpr (rtx reg, rtx mem, rtx scratch, bool store_p)
20397 int regno = true_regnum (reg);
20398 enum reg_class rclass;
20399 rtx addr;
20400 rtx scratch_or_premodify = scratch;
20402 if (TARGET_DEBUG_ADDR)
20404 fprintf (stderr, "\nrs6000_secondary_reload_gpr, type = %s\n",
20405 store_p ? "store" : "load");
20406 fprintf (stderr, "reg:\n");
20407 debug_rtx (reg);
20408 fprintf (stderr, "mem:\n");
20409 debug_rtx (mem);
20410 fprintf (stderr, "scratch:\n");
20411 debug_rtx (scratch);
20414 gcc_assert (regno >= 0 && regno < FIRST_PSEUDO_REGISTER);
20415 gcc_assert (GET_CODE (mem) == MEM);
20416 rclass = REGNO_REG_CLASS (regno);
20417 gcc_assert (rclass == GENERAL_REGS || rclass == BASE_REGS);
20418 addr = XEXP (mem, 0);
20420 if (GET_CODE (addr) == PRE_MODIFY)
20422 gcc_assert (REG_P (XEXP (addr, 0))
20423 && GET_CODE (XEXP (addr, 1)) == PLUS
20424 && XEXP (XEXP (addr, 1), 0) == XEXP (addr, 0));
20425 scratch_or_premodify = XEXP (addr, 0);
20426 if (!HARD_REGISTER_P (scratch_or_premodify))
20427 /* If we have a pseudo here then reload will have arranged
20428 to have it replaced, but only in the original insn.
20429 Use the replacement here too. */
20430 scratch_or_premodify = find_replacement (&XEXP (addr, 0));
20432 /* RTL emitted by rs6000_secondary_reload_gpr uses RTL
20433 expressions from the original insn, without unsharing them.
20434 Any RTL that points into the original insn will of course
20435 have register replacements applied. That is why we don't
20436 need to look for replacements under the PLUS. */
20437 addr = XEXP (addr, 1);
20439 gcc_assert (GET_CODE (addr) == PLUS || GET_CODE (addr) == LO_SUM);
20441 rs6000_emit_move (scratch_or_premodify, addr, Pmode);
20443 mem = replace_equiv_address_nv (mem, scratch_or_premodify);
20445 /* Now create the move. */
20446 if (store_p)
20447 emit_insn (gen_rtx_SET (mem, reg));
20448 else
20449 emit_insn (gen_rtx_SET (reg, mem));
20451 return;
20454 /* Given an rtx X being reloaded into a reg required to be
20455 in class CLASS, return the class of reg to actually use.
20456 In general this is just CLASS; but on some machines
20457 in some cases it is preferable to use a more restrictive class.
20459 On the RS/6000, we have to return NO_REGS when we want to reload a
20460 floating-point CONST_DOUBLE to force it to be copied to memory.
20462 We also don't want to reload integer values into floating-point
20463 registers if we can at all help it. In fact, this can
20464 cause reload to die, if it tries to generate a reload of CTR
20465 into a FP register and discovers it doesn't have the memory location
20466 required.
20468 ??? Would it be a good idea to have reload do the converse, that is
20469 try to reload floating modes into FP registers if possible?
20472 static enum reg_class
20473 rs6000_preferred_reload_class (rtx x, enum reg_class rclass)
20475 machine_mode mode = GET_MODE (x);
20476 bool is_constant = CONSTANT_P (x);
20478 /* If a mode can't go in FPR/ALTIVEC/VSX registers, don't return a preferred
20479 reload class for it. */
20480 if ((rclass == ALTIVEC_REGS || rclass == VSX_REGS)
20481 && (reg_addr[mode].addr_mask[RELOAD_REG_VMX] & RELOAD_REG_VALID) == 0)
20482 return NO_REGS;
20484 if ((rclass == FLOAT_REGS || rclass == VSX_REGS)
20485 && (reg_addr[mode].addr_mask[RELOAD_REG_FPR] & RELOAD_REG_VALID) == 0)
20486 return NO_REGS;
20488 /* For VSX, see if we should prefer FLOAT_REGS or ALTIVEC_REGS. Do not allow
20489 the reloading of address expressions using PLUS into floating point
20490 registers. */
20491 if (TARGET_VSX && VSX_REG_CLASS_P (rclass) && GET_CODE (x) != PLUS)
20493 if (is_constant)
20495 /* Zero is always allowed in all VSX registers. */
20496 if (x == CONST0_RTX (mode))
20497 return rclass;
20499 /* If this is a vector constant that can be formed with a few Altivec
20500 instructions, we want altivec registers. */
20501 if (GET_CODE (x) == CONST_VECTOR && easy_vector_constant (x, mode))
20502 return ALTIVEC_REGS;
20504 /* If this is an integer constant that can easily be loaded into
20505 vector registers, allow it. */
20506 if (CONST_INT_P (x))
20508 HOST_WIDE_INT value = INTVAL (x);
20510 /* ISA 2.07 can generate -1 in all registers with XXLORC. ISA
20511 2.06 can generate it in the Altivec registers with
20512 VSPLTI<x>. */
20513 if (value == -1)
20515 if (TARGET_P8_VECTOR)
20516 return rclass;
20517 else if (rclass == ALTIVEC_REGS || rclass == VSX_REGS)
20518 return ALTIVEC_REGS;
20519 else
20520 return NO_REGS;
20523 /* ISA 3.0 can load -128..127 using the XXSPLTIB instruction and
20524 a sign extend in the Altivec registers. */
20525 if (IN_RANGE (value, -128, 127) && TARGET_P9_VECTOR
20526 && (rclass == ALTIVEC_REGS || rclass == VSX_REGS))
20527 return ALTIVEC_REGS;
20530 /* Force constant to memory. */
20531 return NO_REGS;
20534 /* D-form addressing can easily reload the value. */
20535 if (mode_supports_vmx_dform (mode)
20536 || mode_supports_vsx_dform_quad (mode))
20537 return rclass;
20539 /* If this is a scalar floating point value and we don't have D-form
20540 addressing, prefer the traditional floating point registers so that we
20541 can use D-form (register+offset) addressing. */
20542 if (rclass == VSX_REGS
20543 && (mode == SFmode || GET_MODE_SIZE (mode) == 8))
20544 return FLOAT_REGS;
20546 /* Prefer the Altivec registers if Altivec is handling the vector
20547 operations (i.e. V16QI, V8HI, and V4SI), or if we prefer Altivec
20548 loads. */
20549 if (VECTOR_UNIT_ALTIVEC_P (mode) || VECTOR_MEM_ALTIVEC_P (mode)
20550 || mode == V1TImode)
20551 return ALTIVEC_REGS;
20553 return rclass;
20556 if (is_constant || GET_CODE (x) == PLUS)
20558 if (reg_class_subset_p (GENERAL_REGS, rclass))
20559 return GENERAL_REGS;
20560 if (reg_class_subset_p (BASE_REGS, rclass))
20561 return BASE_REGS;
20562 return NO_REGS;
20565 if (GET_MODE_CLASS (mode) == MODE_INT && rclass == NON_SPECIAL_REGS)
20566 return GENERAL_REGS;
20568 return rclass;
20571 /* Debug version of rs6000_preferred_reload_class. */
20572 static enum reg_class
20573 rs6000_debug_preferred_reload_class (rtx x, enum reg_class rclass)
20575 enum reg_class ret = rs6000_preferred_reload_class (x, rclass);
20577 fprintf (stderr,
20578 "\nrs6000_preferred_reload_class, return %s, rclass = %s, "
20579 "mode = %s, x:\n",
20580 reg_class_names[ret], reg_class_names[rclass],
20581 GET_MODE_NAME (GET_MODE (x)));
20582 debug_rtx (x);
20584 return ret;
20587 /* If we are copying between FP or AltiVec registers and anything else, we need
20588 a memory location. The exception is when we are targeting ppc64 and the
20589 move to/from fpr to gpr instructions are available. Also, under VSX, you
20590 can copy vector registers from the FP register set to the Altivec register
20591 set and vice versa. */
20593 static bool
20594 rs6000_secondary_memory_needed (machine_mode mode,
20595 reg_class_t from_class,
20596 reg_class_t to_class)
20598 enum rs6000_reg_type from_type, to_type;
20599 bool altivec_p = ((from_class == ALTIVEC_REGS)
20600 || (to_class == ALTIVEC_REGS));
20602 /* If a simple/direct move is available, we don't need secondary memory */
20603 from_type = reg_class_to_reg_type[(int)from_class];
20604 to_type = reg_class_to_reg_type[(int)to_class];
20606 if (rs6000_secondary_reload_move (to_type, from_type, mode,
20607 (secondary_reload_info *)0, altivec_p))
20608 return false;
20610 /* If we have a floating point or vector register class, we need to use
20611 memory to transfer the data. */
20612 if (IS_FP_VECT_REG_TYPE (from_type) || IS_FP_VECT_REG_TYPE (to_type))
20613 return true;
20615 return false;
20618 /* Debug version of rs6000_secondary_memory_needed. */
20619 static bool
20620 rs6000_debug_secondary_memory_needed (machine_mode mode,
20621 reg_class_t from_class,
20622 reg_class_t to_class)
20624 bool ret = rs6000_secondary_memory_needed (mode, from_class, to_class);
20626 fprintf (stderr,
20627 "rs6000_secondary_memory_needed, return: %s, from_class = %s, "
20628 "to_class = %s, mode = %s\n",
20629 ret ? "true" : "false",
20630 reg_class_names[from_class],
20631 reg_class_names[to_class],
20632 GET_MODE_NAME (mode));
20634 return ret;
20637 /* Return the register class of a scratch register needed to copy IN into
20638 or out of a register in RCLASS in MODE. If it can be done directly,
20639 NO_REGS is returned. */
20641 static enum reg_class
20642 rs6000_secondary_reload_class (enum reg_class rclass, machine_mode mode,
20643 rtx in)
20645 int regno;
20647 if (TARGET_ELF || (DEFAULT_ABI == ABI_DARWIN
20648 #if TARGET_MACHO
20649 && MACHOPIC_INDIRECT
20650 #endif
20653 /* We cannot copy a symbolic operand directly into anything
20654 other than BASE_REGS for TARGET_ELF. So indicate that a
20655 register from BASE_REGS is needed as an intermediate
20656 register.
20658 On Darwin, pic addresses require a load from memory, which
20659 needs a base register. */
20660 if (rclass != BASE_REGS
20661 && (GET_CODE (in) == SYMBOL_REF
20662 || GET_CODE (in) == HIGH
20663 || GET_CODE (in) == LABEL_REF
20664 || GET_CODE (in) == CONST))
20665 return BASE_REGS;
20668 if (GET_CODE (in) == REG)
20670 regno = REGNO (in);
20671 if (regno >= FIRST_PSEUDO_REGISTER)
20673 regno = true_regnum (in);
20674 if (regno >= FIRST_PSEUDO_REGISTER)
20675 regno = -1;
20678 else if (GET_CODE (in) == SUBREG)
20680 regno = true_regnum (in);
20681 if (regno >= FIRST_PSEUDO_REGISTER)
20682 regno = -1;
20684 else
20685 regno = -1;
20687 /* If we have VSX register moves, prefer moving scalar values between
20688 Altivec registers and GPR by going via an FPR (and then via memory)
20689 instead of reloading the secondary memory address for Altivec moves. */
20690 if (TARGET_VSX
20691 && GET_MODE_SIZE (mode) < 16
20692 && !mode_supports_vmx_dform (mode)
20693 && (((rclass == GENERAL_REGS || rclass == BASE_REGS)
20694 && (regno >= 0 && ALTIVEC_REGNO_P (regno)))
20695 || ((rclass == VSX_REGS || rclass == ALTIVEC_REGS)
20696 && (regno >= 0 && INT_REGNO_P (regno)))))
20697 return FLOAT_REGS;
20699 /* We can place anything into GENERAL_REGS and can put GENERAL_REGS
20700 into anything. */
20701 if (rclass == GENERAL_REGS || rclass == BASE_REGS
20702 || (regno >= 0 && INT_REGNO_P (regno)))
20703 return NO_REGS;
20705 /* Constants, memory, and VSX registers can go into VSX registers (both the
20706 traditional floating point and the altivec registers). */
20707 if (rclass == VSX_REGS
20708 && (regno == -1 || VSX_REGNO_P (regno)))
20709 return NO_REGS;
20711 /* Constants, memory, and FP registers can go into FP registers. */
20712 if ((regno == -1 || FP_REGNO_P (regno))
20713 && (rclass == FLOAT_REGS || rclass == NON_SPECIAL_REGS))
20714 return (mode != SDmode || lra_in_progress) ? NO_REGS : GENERAL_REGS;
20716 /* Memory, and AltiVec registers can go into AltiVec registers. */
20717 if ((regno == -1 || ALTIVEC_REGNO_P (regno))
20718 && rclass == ALTIVEC_REGS)
20719 return NO_REGS;
20721 /* We can copy among the CR registers. */
20722 if ((rclass == CR_REGS || rclass == CR0_REGS)
20723 && regno >= 0 && CR_REGNO_P (regno))
20724 return NO_REGS;
20726 /* Otherwise, we need GENERAL_REGS. */
20727 return GENERAL_REGS;
20730 /* Debug version of rs6000_secondary_reload_class. */
20731 static enum reg_class
20732 rs6000_debug_secondary_reload_class (enum reg_class rclass,
20733 machine_mode mode, rtx in)
20735 enum reg_class ret = rs6000_secondary_reload_class (rclass, mode, in);
20736 fprintf (stderr,
20737 "\nrs6000_secondary_reload_class, return %s, rclass = %s, "
20738 "mode = %s, input rtx:\n",
20739 reg_class_names[ret], reg_class_names[rclass],
20740 GET_MODE_NAME (mode));
20741 debug_rtx (in);
20743 return ret;
20746 /* Implement TARGET_CAN_CHANGE_MODE_CLASS. */
20748 static bool
20749 rs6000_can_change_mode_class (machine_mode from,
20750 machine_mode to,
20751 reg_class_t rclass)
20753 unsigned from_size = GET_MODE_SIZE (from);
20754 unsigned to_size = GET_MODE_SIZE (to);
20756 if (from_size != to_size)
20758 enum reg_class xclass = (TARGET_VSX) ? VSX_REGS : FLOAT_REGS;
20760 if (reg_classes_intersect_p (xclass, rclass))
20762 unsigned to_nregs = hard_regno_nregs (FIRST_FPR_REGNO, to);
20763 unsigned from_nregs = hard_regno_nregs (FIRST_FPR_REGNO, from);
20764 bool to_float128_vector_p = FLOAT128_VECTOR_P (to);
20765 bool from_float128_vector_p = FLOAT128_VECTOR_P (from);
20767 /* Don't allow 64-bit types to overlap with 128-bit types that take a
20768 single register under VSX because the scalar part of the register
20769 is in the upper 64-bits, and not the lower 64-bits. Types like
20770 TFmode/TDmode that take 2 scalar register can overlap. 128-bit
20771 IEEE floating point can't overlap, and neither can small
20772 values. */
20774 if (to_float128_vector_p && from_float128_vector_p)
20775 return true;
20777 else if (to_float128_vector_p || from_float128_vector_p)
20778 return false;
20780 /* TDmode in floating-mode registers must always go into a register
20781 pair with the most significant word in the even-numbered register
20782 to match ISA requirements. In little-endian mode, this does not
20783 match subreg numbering, so we cannot allow subregs. */
20784 if (!BYTES_BIG_ENDIAN && (to == TDmode || from == TDmode))
20785 return false;
20787 if (from_size < 8 || to_size < 8)
20788 return false;
20790 if (from_size == 8 && (8 * to_nregs) != to_size)
20791 return false;
20793 if (to_size == 8 && (8 * from_nregs) != from_size)
20794 return false;
20796 return true;
20798 else
20799 return true;
20802 /* Since the VSX register set includes traditional floating point registers
20803 and altivec registers, just check for the size being different instead of
20804 trying to check whether the modes are vector modes. Otherwise it won't
20805 allow say DF and DI to change classes. For types like TFmode and TDmode
20806 that take 2 64-bit registers, rather than a single 128-bit register, don't
20807 allow subregs of those types to other 128 bit types. */
20808 if (TARGET_VSX && VSX_REG_CLASS_P (rclass))
20810 unsigned num_regs = (from_size + 15) / 16;
20811 if (hard_regno_nregs (FIRST_FPR_REGNO, to) > num_regs
20812 || hard_regno_nregs (FIRST_FPR_REGNO, from) > num_regs)
20813 return false;
20815 return (from_size == 8 || from_size == 16);
20818 if (TARGET_ALTIVEC && rclass == ALTIVEC_REGS
20819 && (ALTIVEC_VECTOR_MODE (from) + ALTIVEC_VECTOR_MODE (to)) == 1)
20820 return false;
20822 return true;
20825 /* Debug version of rs6000_can_change_mode_class. */
20826 static bool
20827 rs6000_debug_can_change_mode_class (machine_mode from,
20828 machine_mode to,
20829 reg_class_t rclass)
20831 bool ret = rs6000_can_change_mode_class (from, to, rclass);
20833 fprintf (stderr,
20834 "rs6000_can_change_mode_class, return %s, from = %s, "
20835 "to = %s, rclass = %s\n",
20836 ret ? "true" : "false",
20837 GET_MODE_NAME (from), GET_MODE_NAME (to),
20838 reg_class_names[rclass]);
20840 return ret;
20843 /* Return a string to do a move operation of 128 bits of data. */
20845 const char *
20846 rs6000_output_move_128bit (rtx operands[])
20848 rtx dest = operands[0];
20849 rtx src = operands[1];
20850 machine_mode mode = GET_MODE (dest);
20851 int dest_regno;
20852 int src_regno;
20853 bool dest_gpr_p, dest_fp_p, dest_vmx_p, dest_vsx_p;
20854 bool src_gpr_p, src_fp_p, src_vmx_p, src_vsx_p;
20856 if (REG_P (dest))
20858 dest_regno = REGNO (dest);
20859 dest_gpr_p = INT_REGNO_P (dest_regno);
20860 dest_fp_p = FP_REGNO_P (dest_regno);
20861 dest_vmx_p = ALTIVEC_REGNO_P (dest_regno);
20862 dest_vsx_p = dest_fp_p | dest_vmx_p;
20864 else
20866 dest_regno = -1;
20867 dest_gpr_p = dest_fp_p = dest_vmx_p = dest_vsx_p = false;
20870 if (REG_P (src))
20872 src_regno = REGNO (src);
20873 src_gpr_p = INT_REGNO_P (src_regno);
20874 src_fp_p = FP_REGNO_P (src_regno);
20875 src_vmx_p = ALTIVEC_REGNO_P (src_regno);
20876 src_vsx_p = src_fp_p | src_vmx_p;
20878 else
20880 src_regno = -1;
20881 src_gpr_p = src_fp_p = src_vmx_p = src_vsx_p = false;
20884 /* Register moves. */
20885 if (dest_regno >= 0 && src_regno >= 0)
20887 if (dest_gpr_p)
20889 if (src_gpr_p)
20890 return "#";
20892 if (TARGET_DIRECT_MOVE_128 && src_vsx_p)
20893 return (WORDS_BIG_ENDIAN
20894 ? "mfvsrd %0,%x1\n\tmfvsrld %L0,%x1"
20895 : "mfvsrd %L0,%x1\n\tmfvsrld %0,%x1");
20897 else if (TARGET_VSX && TARGET_DIRECT_MOVE && src_vsx_p)
20898 return "#";
20901 else if (TARGET_VSX && dest_vsx_p)
20903 if (src_vsx_p)
20904 return "xxlor %x0,%x1,%x1";
20906 else if (TARGET_DIRECT_MOVE_128 && src_gpr_p)
20907 return (WORDS_BIG_ENDIAN
20908 ? "mtvsrdd %x0,%1,%L1"
20909 : "mtvsrdd %x0,%L1,%1");
20911 else if (TARGET_DIRECT_MOVE && src_gpr_p)
20912 return "#";
20915 else if (TARGET_ALTIVEC && dest_vmx_p && src_vmx_p)
20916 return "vor %0,%1,%1";
20918 else if (dest_fp_p && src_fp_p)
20919 return "#";
20922 /* Loads. */
20923 else if (dest_regno >= 0 && MEM_P (src))
20925 if (dest_gpr_p)
20927 if (TARGET_QUAD_MEMORY && quad_load_store_p (dest, src))
20928 return "lq %0,%1";
20929 else
20930 return "#";
20933 else if (TARGET_ALTIVEC && dest_vmx_p
20934 && altivec_indexed_or_indirect_operand (src, mode))
20935 return "lvx %0,%y1";
20937 else if (TARGET_VSX && dest_vsx_p)
20939 if (mode_supports_vsx_dform_quad (mode)
20940 && quad_address_p (XEXP (src, 0), mode, true))
20941 return "lxv %x0,%1";
20943 else if (TARGET_P9_VECTOR)
20944 return "lxvx %x0,%y1";
20946 else if (mode == V16QImode || mode == V8HImode || mode == V4SImode)
20947 return "lxvw4x %x0,%y1";
20949 else
20950 return "lxvd2x %x0,%y1";
20953 else if (TARGET_ALTIVEC && dest_vmx_p)
20954 return "lvx %0,%y1";
20956 else if (dest_fp_p)
20957 return "#";
20960 /* Stores. */
20961 else if (src_regno >= 0 && MEM_P (dest))
20963 if (src_gpr_p)
20965 if (TARGET_QUAD_MEMORY && quad_load_store_p (dest, src))
20966 return "stq %1,%0";
20967 else
20968 return "#";
20971 else if (TARGET_ALTIVEC && src_vmx_p
20972 && altivec_indexed_or_indirect_operand (src, mode))
20973 return "stvx %1,%y0";
20975 else if (TARGET_VSX && src_vsx_p)
20977 if (mode_supports_vsx_dform_quad (mode)
20978 && quad_address_p (XEXP (dest, 0), mode, true))
20979 return "stxv %x1,%0";
20981 else if (TARGET_P9_VECTOR)
20982 return "stxvx %x1,%y0";
20984 else if (mode == V16QImode || mode == V8HImode || mode == V4SImode)
20985 return "stxvw4x %x1,%y0";
20987 else
20988 return "stxvd2x %x1,%y0";
20991 else if (TARGET_ALTIVEC && src_vmx_p)
20992 return "stvx %1,%y0";
20994 else if (src_fp_p)
20995 return "#";
20998 /* Constants. */
20999 else if (dest_regno >= 0
21000 && (GET_CODE (src) == CONST_INT
21001 || GET_CODE (src) == CONST_WIDE_INT
21002 || GET_CODE (src) == CONST_DOUBLE
21003 || GET_CODE (src) == CONST_VECTOR))
21005 if (dest_gpr_p)
21006 return "#";
21008 else if ((dest_vmx_p && TARGET_ALTIVEC)
21009 || (dest_vsx_p && TARGET_VSX))
21010 return output_vec_const_move (operands);
21013 fatal_insn ("Bad 128-bit move", gen_rtx_SET (dest, src));
21016 /* Validate a 128-bit move. */
21017 bool
21018 rs6000_move_128bit_ok_p (rtx operands[])
21020 machine_mode mode = GET_MODE (operands[0]);
21021 return (gpc_reg_operand (operands[0], mode)
21022 || gpc_reg_operand (operands[1], mode));
21025 /* Return true if a 128-bit move needs to be split. */
21026 bool
21027 rs6000_split_128bit_ok_p (rtx operands[])
21029 if (!reload_completed)
21030 return false;
21032 if (!gpr_or_gpr_p (operands[0], operands[1]))
21033 return false;
21035 if (quad_load_store_p (operands[0], operands[1]))
21036 return false;
21038 return true;
21042 /* Given a comparison operation, return the bit number in CCR to test. We
21043 know this is a valid comparison.
21045 SCC_P is 1 if this is for an scc. That means that %D will have been
21046 used instead of %C, so the bits will be in different places.
21048 Return -1 if OP isn't a valid comparison for some reason. */
21051 ccr_bit (rtx op, int scc_p)
21053 enum rtx_code code = GET_CODE (op);
21054 machine_mode cc_mode;
21055 int cc_regnum;
21056 int base_bit;
21057 rtx reg;
21059 if (!COMPARISON_P (op))
21060 return -1;
21062 reg = XEXP (op, 0);
21064 gcc_assert (GET_CODE (reg) == REG && CR_REGNO_P (REGNO (reg)));
21066 cc_mode = GET_MODE (reg);
21067 cc_regnum = REGNO (reg);
21068 base_bit = 4 * (cc_regnum - CR0_REGNO);
21070 validate_condition_mode (code, cc_mode);
21072 /* When generating a sCOND operation, only positive conditions are
21073 allowed. */
21074 gcc_assert (!scc_p
21075 || code == EQ || code == GT || code == LT || code == UNORDERED
21076 || code == GTU || code == LTU);
21078 switch (code)
21080 case NE:
21081 return scc_p ? base_bit + 3 : base_bit + 2;
21082 case EQ:
21083 return base_bit + 2;
21084 case GT: case GTU: case UNLE:
21085 return base_bit + 1;
21086 case LT: case LTU: case UNGE:
21087 return base_bit;
21088 case ORDERED: case UNORDERED:
21089 return base_bit + 3;
21091 case GE: case GEU:
21092 /* If scc, we will have done a cror to put the bit in the
21093 unordered position. So test that bit. For integer, this is ! LT
21094 unless this is an scc insn. */
21095 return scc_p ? base_bit + 3 : base_bit;
21097 case LE: case LEU:
21098 return scc_p ? base_bit + 3 : base_bit + 1;
21100 default:
21101 gcc_unreachable ();
21105 /* Return the GOT register. */
21108 rs6000_got_register (rtx value ATTRIBUTE_UNUSED)
21110 /* The second flow pass currently (June 1999) can't update
21111 regs_ever_live without disturbing other parts of the compiler, so
21112 update it here to make the prolog/epilogue code happy. */
21113 if (!can_create_pseudo_p ()
21114 && !df_regs_ever_live_p (RS6000_PIC_OFFSET_TABLE_REGNUM))
21115 df_set_regs_ever_live (RS6000_PIC_OFFSET_TABLE_REGNUM, true);
21117 crtl->uses_pic_offset_table = 1;
21119 return pic_offset_table_rtx;
21122 static rs6000_stack_t stack_info;
21124 /* Function to init struct machine_function.
21125 This will be called, via a pointer variable,
21126 from push_function_context. */
21128 static struct machine_function *
21129 rs6000_init_machine_status (void)
21131 stack_info.reload_completed = 0;
21132 return ggc_cleared_alloc<machine_function> ();
21135 #define INT_P(X) (GET_CODE (X) == CONST_INT && GET_MODE (X) == VOIDmode)
21137 /* Write out a function code label. */
21139 void
21140 rs6000_output_function_entry (FILE *file, const char *fname)
21142 if (fname[0] != '.')
21144 switch (DEFAULT_ABI)
21146 default:
21147 gcc_unreachable ();
21149 case ABI_AIX:
21150 if (DOT_SYMBOLS)
21151 putc ('.', file);
21152 else
21153 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "L.");
21154 break;
21156 case ABI_ELFv2:
21157 case ABI_V4:
21158 case ABI_DARWIN:
21159 break;
21163 RS6000_OUTPUT_BASENAME (file, fname);
21166 /* Print an operand. Recognize special options, documented below. */
21168 #if TARGET_ELF
21169 #define SMALL_DATA_RELOC ((rs6000_sdata == SDATA_EABI) ? "sda21" : "sdarel")
21170 #define SMALL_DATA_REG ((rs6000_sdata == SDATA_EABI) ? 0 : 13)
21171 #else
21172 #define SMALL_DATA_RELOC "sda21"
21173 #define SMALL_DATA_REG 0
21174 #endif
21176 void
21177 print_operand (FILE *file, rtx x, int code)
21179 int i;
21180 unsigned HOST_WIDE_INT uval;
21182 switch (code)
21184 /* %a is output_address. */
21186 /* %c is output_addr_const if a CONSTANT_ADDRESS_P, otherwise
21187 output_operand. */
21189 case 'D':
21190 /* Like 'J' but get to the GT bit only. */
21191 gcc_assert (REG_P (x));
21193 /* Bit 1 is GT bit. */
21194 i = 4 * (REGNO (x) - CR0_REGNO) + 1;
21196 /* Add one for shift count in rlinm for scc. */
21197 fprintf (file, "%d", i + 1);
21198 return;
21200 case 'e':
21201 /* If the low 16 bits are 0, but some other bit is set, write 's'. */
21202 if (! INT_P (x))
21204 output_operand_lossage ("invalid %%e value");
21205 return;
21208 uval = INTVAL (x);
21209 if ((uval & 0xffff) == 0 && uval != 0)
21210 putc ('s', file);
21211 return;
21213 case 'E':
21214 /* X is a CR register. Print the number of the EQ bit of the CR */
21215 if (GET_CODE (x) != REG || ! CR_REGNO_P (REGNO (x)))
21216 output_operand_lossage ("invalid %%E value");
21217 else
21218 fprintf (file, "%d", 4 * (REGNO (x) - CR0_REGNO) + 2);
21219 return;
21221 case 'f':
21222 /* X is a CR register. Print the shift count needed to move it
21223 to the high-order four bits. */
21224 if (GET_CODE (x) != REG || ! CR_REGNO_P (REGNO (x)))
21225 output_operand_lossage ("invalid %%f value");
21226 else
21227 fprintf (file, "%d", 4 * (REGNO (x) - CR0_REGNO));
21228 return;
21230 case 'F':
21231 /* Similar, but print the count for the rotate in the opposite
21232 direction. */
21233 if (GET_CODE (x) != REG || ! CR_REGNO_P (REGNO (x)))
21234 output_operand_lossage ("invalid %%F value");
21235 else
21236 fprintf (file, "%d", 32 - 4 * (REGNO (x) - CR0_REGNO));
21237 return;
21239 case 'G':
21240 /* X is a constant integer. If it is negative, print "m",
21241 otherwise print "z". This is to make an aze or ame insn. */
21242 if (GET_CODE (x) != CONST_INT)
21243 output_operand_lossage ("invalid %%G value");
21244 else if (INTVAL (x) >= 0)
21245 putc ('z', file);
21246 else
21247 putc ('m', file);
21248 return;
21250 case 'h':
21251 /* If constant, output low-order five bits. Otherwise, write
21252 normally. */
21253 if (INT_P (x))
21254 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x) & 31);
21255 else
21256 print_operand (file, x, 0);
21257 return;
21259 case 'H':
21260 /* If constant, output low-order six bits. Otherwise, write
21261 normally. */
21262 if (INT_P (x))
21263 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x) & 63);
21264 else
21265 print_operand (file, x, 0);
21266 return;
21268 case 'I':
21269 /* Print `i' if this is a constant, else nothing. */
21270 if (INT_P (x))
21271 putc ('i', file);
21272 return;
21274 case 'j':
21275 /* Write the bit number in CCR for jump. */
21276 i = ccr_bit (x, 0);
21277 if (i == -1)
21278 output_operand_lossage ("invalid %%j code");
21279 else
21280 fprintf (file, "%d", i);
21281 return;
21283 case 'J':
21284 /* Similar, but add one for shift count in rlinm for scc and pass
21285 scc flag to `ccr_bit'. */
21286 i = ccr_bit (x, 1);
21287 if (i == -1)
21288 output_operand_lossage ("invalid %%J code");
21289 else
21290 /* If we want bit 31, write a shift count of zero, not 32. */
21291 fprintf (file, "%d", i == 31 ? 0 : i + 1);
21292 return;
21294 case 'k':
21295 /* X must be a constant. Write the 1's complement of the
21296 constant. */
21297 if (! INT_P (x))
21298 output_operand_lossage ("invalid %%k value");
21299 else
21300 fprintf (file, HOST_WIDE_INT_PRINT_DEC, ~ INTVAL (x));
21301 return;
21303 case 'K':
21304 /* X must be a symbolic constant on ELF. Write an
21305 expression suitable for an 'addi' that adds in the low 16
21306 bits of the MEM. */
21307 if (GET_CODE (x) == CONST)
21309 if (GET_CODE (XEXP (x, 0)) != PLUS
21310 || (GET_CODE (XEXP (XEXP (x, 0), 0)) != SYMBOL_REF
21311 && GET_CODE (XEXP (XEXP (x, 0), 0)) != LABEL_REF)
21312 || GET_CODE (XEXP (XEXP (x, 0), 1)) != CONST_INT)
21313 output_operand_lossage ("invalid %%K value");
21315 print_operand_address (file, x);
21316 fputs ("@l", file);
21317 return;
21319 /* %l is output_asm_label. */
21321 case 'L':
21322 /* Write second word of DImode or DFmode reference. Works on register
21323 or non-indexed memory only. */
21324 if (REG_P (x))
21325 fputs (reg_names[REGNO (x) + 1], file);
21326 else if (MEM_P (x))
21328 machine_mode mode = GET_MODE (x);
21329 /* Handle possible auto-increment. Since it is pre-increment and
21330 we have already done it, we can just use an offset of word. */
21331 if (GET_CODE (XEXP (x, 0)) == PRE_INC
21332 || GET_CODE (XEXP (x, 0)) == PRE_DEC)
21333 output_address (mode, plus_constant (Pmode, XEXP (XEXP (x, 0), 0),
21334 UNITS_PER_WORD));
21335 else if (GET_CODE (XEXP (x, 0)) == PRE_MODIFY)
21336 output_address (mode, plus_constant (Pmode, XEXP (XEXP (x, 0), 0),
21337 UNITS_PER_WORD));
21338 else
21339 output_address (mode, XEXP (adjust_address_nv (x, SImode,
21340 UNITS_PER_WORD),
21341 0));
21343 if (small_data_operand (x, GET_MODE (x)))
21344 fprintf (file, "@%s(%s)", SMALL_DATA_RELOC,
21345 reg_names[SMALL_DATA_REG]);
21347 return;
21349 case 'N':
21350 /* Write the number of elements in the vector times 4. */
21351 if (GET_CODE (x) != PARALLEL)
21352 output_operand_lossage ("invalid %%N value");
21353 else
21354 fprintf (file, "%d", XVECLEN (x, 0) * 4);
21355 return;
21357 case 'O':
21358 /* Similar, but subtract 1 first. */
21359 if (GET_CODE (x) != PARALLEL)
21360 output_operand_lossage ("invalid %%O value");
21361 else
21362 fprintf (file, "%d", (XVECLEN (x, 0) - 1) * 4);
21363 return;
21365 case 'p':
21366 /* X is a CONST_INT that is a power of two. Output the logarithm. */
21367 if (! INT_P (x)
21368 || INTVAL (x) < 0
21369 || (i = exact_log2 (INTVAL (x))) < 0)
21370 output_operand_lossage ("invalid %%p value");
21371 else
21372 fprintf (file, "%d", i);
21373 return;
21375 case 'P':
21376 /* The operand must be an indirect memory reference. The result
21377 is the register name. */
21378 if (GET_CODE (x) != MEM || GET_CODE (XEXP (x, 0)) != REG
21379 || REGNO (XEXP (x, 0)) >= 32)
21380 output_operand_lossage ("invalid %%P value");
21381 else
21382 fputs (reg_names[REGNO (XEXP (x, 0))], file);
21383 return;
21385 case 'q':
21386 /* This outputs the logical code corresponding to a boolean
21387 expression. The expression may have one or both operands
21388 negated (if one, only the first one). For condition register
21389 logical operations, it will also treat the negated
21390 CR codes as NOTs, but not handle NOTs of them. */
21392 const char *const *t = 0;
21393 const char *s;
21394 enum rtx_code code = GET_CODE (x);
21395 static const char * const tbl[3][3] = {
21396 { "and", "andc", "nor" },
21397 { "or", "orc", "nand" },
21398 { "xor", "eqv", "xor" } };
21400 if (code == AND)
21401 t = tbl[0];
21402 else if (code == IOR)
21403 t = tbl[1];
21404 else if (code == XOR)
21405 t = tbl[2];
21406 else
21407 output_operand_lossage ("invalid %%q value");
21409 if (GET_CODE (XEXP (x, 0)) != NOT)
21410 s = t[0];
21411 else
21413 if (GET_CODE (XEXP (x, 1)) == NOT)
21414 s = t[2];
21415 else
21416 s = t[1];
21419 fputs (s, file);
21421 return;
21423 case 'Q':
21424 if (! TARGET_MFCRF)
21425 return;
21426 fputc (',', file);
21427 /* FALLTHRU */
21429 case 'R':
21430 /* X is a CR register. Print the mask for `mtcrf'. */
21431 if (GET_CODE (x) != REG || ! CR_REGNO_P (REGNO (x)))
21432 output_operand_lossage ("invalid %%R value");
21433 else
21434 fprintf (file, "%d", 128 >> (REGNO (x) - CR0_REGNO));
21435 return;
21437 case 's':
21438 /* Low 5 bits of 32 - value */
21439 if (! INT_P (x))
21440 output_operand_lossage ("invalid %%s value");
21441 else
21442 fprintf (file, HOST_WIDE_INT_PRINT_DEC, (32 - INTVAL (x)) & 31);
21443 return;
21445 case 't':
21446 /* Like 'J' but get to the OVERFLOW/UNORDERED bit. */
21447 gcc_assert (REG_P (x) && GET_MODE (x) == CCmode);
21449 /* Bit 3 is OV bit. */
21450 i = 4 * (REGNO (x) - CR0_REGNO) + 3;
21452 /* If we want bit 31, write a shift count of zero, not 32. */
21453 fprintf (file, "%d", i == 31 ? 0 : i + 1);
21454 return;
21456 case 'T':
21457 /* Print the symbolic name of a branch target register. */
21458 if (GET_CODE (x) != REG || (REGNO (x) != LR_REGNO
21459 && REGNO (x) != CTR_REGNO))
21460 output_operand_lossage ("invalid %%T value");
21461 else if (REGNO (x) == LR_REGNO)
21462 fputs ("lr", file);
21463 else
21464 fputs ("ctr", file);
21465 return;
21467 case 'u':
21468 /* High-order or low-order 16 bits of constant, whichever is non-zero,
21469 for use in unsigned operand. */
21470 if (! INT_P (x))
21472 output_operand_lossage ("invalid %%u value");
21473 return;
21476 uval = INTVAL (x);
21477 if ((uval & 0xffff) == 0)
21478 uval >>= 16;
21480 fprintf (file, HOST_WIDE_INT_PRINT_HEX, uval & 0xffff);
21481 return;
21483 case 'v':
21484 /* High-order 16 bits of constant for use in signed operand. */
21485 if (! INT_P (x))
21486 output_operand_lossage ("invalid %%v value");
21487 else
21488 fprintf (file, HOST_WIDE_INT_PRINT_HEX,
21489 (INTVAL (x) >> 16) & 0xffff);
21490 return;
21492 case 'U':
21493 /* Print `u' if this has an auto-increment or auto-decrement. */
21494 if (MEM_P (x)
21495 && (GET_CODE (XEXP (x, 0)) == PRE_INC
21496 || GET_CODE (XEXP (x, 0)) == PRE_DEC
21497 || GET_CODE (XEXP (x, 0)) == PRE_MODIFY))
21498 putc ('u', file);
21499 return;
21501 case 'V':
21502 /* Print the trap code for this operand. */
21503 switch (GET_CODE (x))
21505 case EQ:
21506 fputs ("eq", file); /* 4 */
21507 break;
21508 case NE:
21509 fputs ("ne", file); /* 24 */
21510 break;
21511 case LT:
21512 fputs ("lt", file); /* 16 */
21513 break;
21514 case LE:
21515 fputs ("le", file); /* 20 */
21516 break;
21517 case GT:
21518 fputs ("gt", file); /* 8 */
21519 break;
21520 case GE:
21521 fputs ("ge", file); /* 12 */
21522 break;
21523 case LTU:
21524 fputs ("llt", file); /* 2 */
21525 break;
21526 case LEU:
21527 fputs ("lle", file); /* 6 */
21528 break;
21529 case GTU:
21530 fputs ("lgt", file); /* 1 */
21531 break;
21532 case GEU:
21533 fputs ("lge", file); /* 5 */
21534 break;
21535 default:
21536 gcc_unreachable ();
21538 break;
21540 case 'w':
21541 /* If constant, low-order 16 bits of constant, signed. Otherwise, write
21542 normally. */
21543 if (INT_P (x))
21544 fprintf (file, HOST_WIDE_INT_PRINT_DEC,
21545 ((INTVAL (x) & 0xffff) ^ 0x8000) - 0x8000);
21546 else
21547 print_operand (file, x, 0);
21548 return;
21550 case 'x':
21551 /* X is a FPR or Altivec register used in a VSX context. */
21552 if (GET_CODE (x) != REG || !VSX_REGNO_P (REGNO (x)))
21553 output_operand_lossage ("invalid %%x value");
21554 else
21556 int reg = REGNO (x);
21557 int vsx_reg = (FP_REGNO_P (reg)
21558 ? reg - 32
21559 : reg - FIRST_ALTIVEC_REGNO + 32);
21561 #ifdef TARGET_REGNAMES
21562 if (TARGET_REGNAMES)
21563 fprintf (file, "%%vs%d", vsx_reg);
21564 else
21565 #endif
21566 fprintf (file, "%d", vsx_reg);
21568 return;
21570 case 'X':
21571 if (MEM_P (x)
21572 && (legitimate_indexed_address_p (XEXP (x, 0), 0)
21573 || (GET_CODE (XEXP (x, 0)) == PRE_MODIFY
21574 && legitimate_indexed_address_p (XEXP (XEXP (x, 0), 1), 0))))
21575 putc ('x', file);
21576 return;
21578 case 'Y':
21579 /* Like 'L', for third word of TImode/PTImode */
21580 if (REG_P (x))
21581 fputs (reg_names[REGNO (x) + 2], file);
21582 else if (MEM_P (x))
21584 machine_mode mode = GET_MODE (x);
21585 if (GET_CODE (XEXP (x, 0)) == PRE_INC
21586 || GET_CODE (XEXP (x, 0)) == PRE_DEC)
21587 output_address (mode, plus_constant (Pmode,
21588 XEXP (XEXP (x, 0), 0), 8));
21589 else if (GET_CODE (XEXP (x, 0)) == PRE_MODIFY)
21590 output_address (mode, plus_constant (Pmode,
21591 XEXP (XEXP (x, 0), 0), 8));
21592 else
21593 output_address (mode, XEXP (adjust_address_nv (x, SImode, 8), 0));
21594 if (small_data_operand (x, GET_MODE (x)))
21595 fprintf (file, "@%s(%s)", SMALL_DATA_RELOC,
21596 reg_names[SMALL_DATA_REG]);
21598 return;
21600 case 'z':
21601 /* X is a SYMBOL_REF. Write out the name preceded by a
21602 period and without any trailing data in brackets. Used for function
21603 names. If we are configured for System V (or the embedded ABI) on
21604 the PowerPC, do not emit the period, since those systems do not use
21605 TOCs and the like. */
21606 gcc_assert (GET_CODE (x) == SYMBOL_REF);
21608 /* For macho, check to see if we need a stub. */
21609 if (TARGET_MACHO)
21611 const char *name = XSTR (x, 0);
21612 #if TARGET_MACHO
21613 if (darwin_emit_branch_islands
21614 && MACHOPIC_INDIRECT
21615 && machopic_classify_symbol (x) == MACHOPIC_UNDEFINED_FUNCTION)
21616 name = machopic_indirection_name (x, /*stub_p=*/true);
21617 #endif
21618 assemble_name (file, name);
21620 else if (!DOT_SYMBOLS)
21621 assemble_name (file, XSTR (x, 0));
21622 else
21623 rs6000_output_function_entry (file, XSTR (x, 0));
21624 return;
21626 case 'Z':
21627 /* Like 'L', for last word of TImode/PTImode. */
21628 if (REG_P (x))
21629 fputs (reg_names[REGNO (x) + 3], file);
21630 else if (MEM_P (x))
21632 machine_mode mode = GET_MODE (x);
21633 if (GET_CODE (XEXP (x, 0)) == PRE_INC
21634 || GET_CODE (XEXP (x, 0)) == PRE_DEC)
21635 output_address (mode, plus_constant (Pmode,
21636 XEXP (XEXP (x, 0), 0), 12));
21637 else if (GET_CODE (XEXP (x, 0)) == PRE_MODIFY)
21638 output_address (mode, plus_constant (Pmode,
21639 XEXP (XEXP (x, 0), 0), 12));
21640 else
21641 output_address (mode, XEXP (adjust_address_nv (x, SImode, 12), 0));
21642 if (small_data_operand (x, GET_MODE (x)))
21643 fprintf (file, "@%s(%s)", SMALL_DATA_RELOC,
21644 reg_names[SMALL_DATA_REG]);
21646 return;
21648 /* Print AltiVec memory operand. */
21649 case 'y':
21651 rtx tmp;
21653 gcc_assert (MEM_P (x));
21655 tmp = XEXP (x, 0);
21657 if (VECTOR_MEM_ALTIVEC_P (GET_MODE (x))
21658 && GET_CODE (tmp) == AND
21659 && GET_CODE (XEXP (tmp, 1)) == CONST_INT
21660 && INTVAL (XEXP (tmp, 1)) == -16)
21661 tmp = XEXP (tmp, 0);
21662 else if (VECTOR_MEM_VSX_P (GET_MODE (x))
21663 && GET_CODE (tmp) == PRE_MODIFY)
21664 tmp = XEXP (tmp, 1);
21665 if (REG_P (tmp))
21666 fprintf (file, "0,%s", reg_names[REGNO (tmp)]);
21667 else
21669 if (GET_CODE (tmp) != PLUS
21670 || !REG_P (XEXP (tmp, 0))
21671 || !REG_P (XEXP (tmp, 1)))
21673 output_operand_lossage ("invalid %%y value, try using the 'Z' constraint");
21674 break;
21677 if (REGNO (XEXP (tmp, 0)) == 0)
21678 fprintf (file, "%s,%s", reg_names[ REGNO (XEXP (tmp, 1)) ],
21679 reg_names[ REGNO (XEXP (tmp, 0)) ]);
21680 else
21681 fprintf (file, "%s,%s", reg_names[ REGNO (XEXP (tmp, 0)) ],
21682 reg_names[ REGNO (XEXP (tmp, 1)) ]);
21684 break;
21687 case 0:
21688 if (REG_P (x))
21689 fprintf (file, "%s", reg_names[REGNO (x)]);
21690 else if (MEM_P (x))
21692 /* We need to handle PRE_INC and PRE_DEC here, since we need to
21693 know the width from the mode. */
21694 if (GET_CODE (XEXP (x, 0)) == PRE_INC)
21695 fprintf (file, "%d(%s)", GET_MODE_SIZE (GET_MODE (x)),
21696 reg_names[REGNO (XEXP (XEXP (x, 0), 0))]);
21697 else if (GET_CODE (XEXP (x, 0)) == PRE_DEC)
21698 fprintf (file, "%d(%s)", - GET_MODE_SIZE (GET_MODE (x)),
21699 reg_names[REGNO (XEXP (XEXP (x, 0), 0))]);
21700 else if (GET_CODE (XEXP (x, 0)) == PRE_MODIFY)
21701 output_address (GET_MODE (x), XEXP (XEXP (x, 0), 1));
21702 else
21703 output_address (GET_MODE (x), XEXP (x, 0));
21705 else
21707 if (toc_relative_expr_p (x, false, &tocrel_base_oac, &tocrel_offset_oac))
21708 /* This hack along with a corresponding hack in
21709 rs6000_output_addr_const_extra arranges to output addends
21710 where the assembler expects to find them. eg.
21711 (plus (unspec [(symbol_ref ("x")) (reg 2)] tocrel) 4)
21712 without this hack would be output as "x@toc+4". We
21713 want "x+4@toc". */
21714 output_addr_const (file, CONST_CAST_RTX (tocrel_base_oac));
21715 else
21716 output_addr_const (file, x);
21718 return;
21720 case '&':
21721 if (const char *name = get_some_local_dynamic_name ())
21722 assemble_name (file, name);
21723 else
21724 output_operand_lossage ("'%%&' used without any "
21725 "local dynamic TLS references");
21726 return;
21728 default:
21729 output_operand_lossage ("invalid %%xn code");
21733 /* Print the address of an operand. */
21735 void
21736 print_operand_address (FILE *file, rtx x)
21738 if (REG_P (x))
21739 fprintf (file, "0(%s)", reg_names[ REGNO (x) ]);
21740 else if (GET_CODE (x) == SYMBOL_REF || GET_CODE (x) == CONST
21741 || GET_CODE (x) == LABEL_REF)
21743 output_addr_const (file, x);
21744 if (small_data_operand (x, GET_MODE (x)))
21745 fprintf (file, "@%s(%s)", SMALL_DATA_RELOC,
21746 reg_names[SMALL_DATA_REG]);
21747 else
21748 gcc_assert (!TARGET_TOC);
21750 else if (GET_CODE (x) == PLUS && REG_P (XEXP (x, 0))
21751 && REG_P (XEXP (x, 1)))
21753 if (REGNO (XEXP (x, 0)) == 0)
21754 fprintf (file, "%s,%s", reg_names[ REGNO (XEXP (x, 1)) ],
21755 reg_names[ REGNO (XEXP (x, 0)) ]);
21756 else
21757 fprintf (file, "%s,%s", reg_names[ REGNO (XEXP (x, 0)) ],
21758 reg_names[ REGNO (XEXP (x, 1)) ]);
21760 else if (GET_CODE (x) == PLUS && REG_P (XEXP (x, 0))
21761 && GET_CODE (XEXP (x, 1)) == CONST_INT)
21762 fprintf (file, HOST_WIDE_INT_PRINT_DEC "(%s)",
21763 INTVAL (XEXP (x, 1)), reg_names[ REGNO (XEXP (x, 0)) ]);
21764 #if TARGET_MACHO
21765 else if (GET_CODE (x) == LO_SUM && REG_P (XEXP (x, 0))
21766 && CONSTANT_P (XEXP (x, 1)))
21768 fprintf (file, "lo16(");
21769 output_addr_const (file, XEXP (x, 1));
21770 fprintf (file, ")(%s)", reg_names[ REGNO (XEXP (x, 0)) ]);
21772 #endif
21773 #if TARGET_ELF
21774 else if (GET_CODE (x) == LO_SUM && REG_P (XEXP (x, 0))
21775 && CONSTANT_P (XEXP (x, 1)))
21777 output_addr_const (file, XEXP (x, 1));
21778 fprintf (file, "@l(%s)", reg_names[ REGNO (XEXP (x, 0)) ]);
21780 #endif
21781 else if (toc_relative_expr_p (x, false, &tocrel_base_oac, &tocrel_offset_oac))
21783 /* This hack along with a corresponding hack in
21784 rs6000_output_addr_const_extra arranges to output addends
21785 where the assembler expects to find them. eg.
21786 (lo_sum (reg 9)
21787 . (plus (unspec [(symbol_ref ("x")) (reg 2)] tocrel) 8))
21788 without this hack would be output as "x@toc+8@l(9)". We
21789 want "x+8@toc@l(9)". */
21790 output_addr_const (file, CONST_CAST_RTX (tocrel_base_oac));
21791 if (GET_CODE (x) == LO_SUM)
21792 fprintf (file, "@l(%s)", reg_names[REGNO (XEXP (x, 0))]);
21793 else
21794 fprintf (file, "(%s)", reg_names[REGNO (XVECEXP (tocrel_base_oac, 0, 1))]);
21796 else
21797 gcc_unreachable ();
21800 /* Implement TARGET_ASM_OUTPUT_ADDR_CONST_EXTRA. */
21802 static bool
21803 rs6000_output_addr_const_extra (FILE *file, rtx x)
21805 if (GET_CODE (x) == UNSPEC)
21806 switch (XINT (x, 1))
21808 case UNSPEC_TOCREL:
21809 gcc_checking_assert (GET_CODE (XVECEXP (x, 0, 0)) == SYMBOL_REF
21810 && REG_P (XVECEXP (x, 0, 1))
21811 && REGNO (XVECEXP (x, 0, 1)) == TOC_REGISTER);
21812 output_addr_const (file, XVECEXP (x, 0, 0));
21813 if (x == tocrel_base_oac && tocrel_offset_oac != const0_rtx)
21815 if (INTVAL (tocrel_offset_oac) >= 0)
21816 fprintf (file, "+");
21817 output_addr_const (file, CONST_CAST_RTX (tocrel_offset_oac));
21819 if (!TARGET_AIX || (TARGET_ELF && TARGET_MINIMAL_TOC))
21821 putc ('-', file);
21822 assemble_name (file, toc_label_name);
21823 need_toc_init = 1;
21825 else if (TARGET_ELF)
21826 fputs ("@toc", file);
21827 return true;
21829 #if TARGET_MACHO
21830 case UNSPEC_MACHOPIC_OFFSET:
21831 output_addr_const (file, XVECEXP (x, 0, 0));
21832 putc ('-', file);
21833 machopic_output_function_base_name (file);
21834 return true;
21835 #endif
21837 return false;
21840 /* Target hook for assembling integer objects. The PowerPC version has
21841 to handle fixup entries for relocatable code if RELOCATABLE_NEEDS_FIXUP
21842 is defined. It also needs to handle DI-mode objects on 64-bit
21843 targets. */
21845 static bool
21846 rs6000_assemble_integer (rtx x, unsigned int size, int aligned_p)
21848 #ifdef RELOCATABLE_NEEDS_FIXUP
21849 /* Special handling for SI values. */
21850 if (RELOCATABLE_NEEDS_FIXUP && size == 4 && aligned_p)
21852 static int recurse = 0;
21854 /* For -mrelocatable, we mark all addresses that need to be fixed up in
21855 the .fixup section. Since the TOC section is already relocated, we
21856 don't need to mark it here. We used to skip the text section, but it
21857 should never be valid for relocated addresses to be placed in the text
21858 section. */
21859 if (DEFAULT_ABI == ABI_V4
21860 && (TARGET_RELOCATABLE || flag_pic > 1)
21861 && in_section != toc_section
21862 && !recurse
21863 && !CONST_SCALAR_INT_P (x)
21864 && CONSTANT_P (x))
21866 char buf[256];
21868 recurse = 1;
21869 ASM_GENERATE_INTERNAL_LABEL (buf, "LCP", fixuplabelno);
21870 fixuplabelno++;
21871 ASM_OUTPUT_LABEL (asm_out_file, buf);
21872 fprintf (asm_out_file, "\t.long\t(");
21873 output_addr_const (asm_out_file, x);
21874 fprintf (asm_out_file, ")@fixup\n");
21875 fprintf (asm_out_file, "\t.section\t\".fixup\",\"aw\"\n");
21876 ASM_OUTPUT_ALIGN (asm_out_file, 2);
21877 fprintf (asm_out_file, "\t.long\t");
21878 assemble_name (asm_out_file, buf);
21879 fprintf (asm_out_file, "\n\t.previous\n");
21880 recurse = 0;
21881 return true;
21883 /* Remove initial .'s to turn a -mcall-aixdesc function
21884 address into the address of the descriptor, not the function
21885 itself. */
21886 else if (GET_CODE (x) == SYMBOL_REF
21887 && XSTR (x, 0)[0] == '.'
21888 && DEFAULT_ABI == ABI_AIX)
21890 const char *name = XSTR (x, 0);
21891 while (*name == '.')
21892 name++;
21894 fprintf (asm_out_file, "\t.long\t%s\n", name);
21895 return true;
21898 #endif /* RELOCATABLE_NEEDS_FIXUP */
21899 return default_assemble_integer (x, size, aligned_p);
21902 #if defined (HAVE_GAS_HIDDEN) && !TARGET_MACHO
21903 /* Emit an assembler directive to set symbol visibility for DECL to
21904 VISIBILITY_TYPE. */
21906 static void
21907 rs6000_assemble_visibility (tree decl, int vis)
21909 if (TARGET_XCOFF)
21910 return;
21912 /* Functions need to have their entry point symbol visibility set as
21913 well as their descriptor symbol visibility. */
21914 if (DEFAULT_ABI == ABI_AIX
21915 && DOT_SYMBOLS
21916 && TREE_CODE (decl) == FUNCTION_DECL)
21918 static const char * const visibility_types[] = {
21919 NULL, "protected", "hidden", "internal"
21922 const char *name, *type;
21924 name = ((* targetm.strip_name_encoding)
21925 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl))));
21926 type = visibility_types[vis];
21928 fprintf (asm_out_file, "\t.%s\t%s\n", type, name);
21929 fprintf (asm_out_file, "\t.%s\t.%s\n", type, name);
21931 else
21932 default_assemble_visibility (decl, vis);
21934 #endif
21936 enum rtx_code
21937 rs6000_reverse_condition (machine_mode mode, enum rtx_code code)
21939 /* Reversal of FP compares takes care -- an ordered compare
21940 becomes an unordered compare and vice versa. */
21941 if (mode == CCFPmode
21942 && (!flag_finite_math_only
21943 || code == UNLT || code == UNLE || code == UNGT || code == UNGE
21944 || code == UNEQ || code == LTGT))
21945 return reverse_condition_maybe_unordered (code);
21946 else
21947 return reverse_condition (code);
21950 /* Generate a compare for CODE. Return a brand-new rtx that
21951 represents the result of the compare. */
21953 static rtx
21954 rs6000_generate_compare (rtx cmp, machine_mode mode)
21956 machine_mode comp_mode;
21957 rtx compare_result;
21958 enum rtx_code code = GET_CODE (cmp);
21959 rtx op0 = XEXP (cmp, 0);
21960 rtx op1 = XEXP (cmp, 1);
21962 if (!TARGET_FLOAT128_HW && FLOAT128_VECTOR_P (mode))
21963 comp_mode = CCmode;
21964 else if (FLOAT_MODE_P (mode))
21965 comp_mode = CCFPmode;
21966 else if (code == GTU || code == LTU
21967 || code == GEU || code == LEU)
21968 comp_mode = CCUNSmode;
21969 else if ((code == EQ || code == NE)
21970 && unsigned_reg_p (op0)
21971 && (unsigned_reg_p (op1)
21972 || (CONST_INT_P (op1) && INTVAL (op1) != 0)))
21973 /* These are unsigned values, perhaps there will be a later
21974 ordering compare that can be shared with this one. */
21975 comp_mode = CCUNSmode;
21976 else
21977 comp_mode = CCmode;
21979 /* If we have an unsigned compare, make sure we don't have a signed value as
21980 an immediate. */
21981 if (comp_mode == CCUNSmode && GET_CODE (op1) == CONST_INT
21982 && INTVAL (op1) < 0)
21984 op0 = copy_rtx_if_shared (op0);
21985 op1 = force_reg (GET_MODE (op0), op1);
21986 cmp = gen_rtx_fmt_ee (code, GET_MODE (cmp), op0, op1);
21989 /* First, the compare. */
21990 compare_result = gen_reg_rtx (comp_mode);
21992 /* IEEE 128-bit support in VSX registers when we do not have hardware
21993 support. */
21994 if (!TARGET_FLOAT128_HW && FLOAT128_VECTOR_P (mode))
21996 rtx libfunc = NULL_RTX;
21997 bool check_nan = false;
21998 rtx dest;
22000 switch (code)
22002 case EQ:
22003 case NE:
22004 libfunc = optab_libfunc (eq_optab, mode);
22005 break;
22007 case GT:
22008 case GE:
22009 libfunc = optab_libfunc (ge_optab, mode);
22010 break;
22012 case LT:
22013 case LE:
22014 libfunc = optab_libfunc (le_optab, mode);
22015 break;
22017 case UNORDERED:
22018 case ORDERED:
22019 libfunc = optab_libfunc (unord_optab, mode);
22020 code = (code == UNORDERED) ? NE : EQ;
22021 break;
22023 case UNGE:
22024 case UNGT:
22025 check_nan = true;
22026 libfunc = optab_libfunc (ge_optab, mode);
22027 code = (code == UNGE) ? GE : GT;
22028 break;
22030 case UNLE:
22031 case UNLT:
22032 check_nan = true;
22033 libfunc = optab_libfunc (le_optab, mode);
22034 code = (code == UNLE) ? LE : LT;
22035 break;
22037 case UNEQ:
22038 case LTGT:
22039 check_nan = true;
22040 libfunc = optab_libfunc (eq_optab, mode);
22041 code = (code = UNEQ) ? EQ : NE;
22042 break;
22044 default:
22045 gcc_unreachable ();
22048 gcc_assert (libfunc);
22050 if (!check_nan)
22051 dest = emit_library_call_value (libfunc, NULL_RTX, LCT_CONST,
22052 SImode, op0, mode, op1, mode);
22054 /* The library signals an exception for signalling NaNs, so we need to
22055 handle isgreater, etc. by first checking isordered. */
22056 else
22058 rtx ne_rtx, normal_dest, unord_dest;
22059 rtx unord_func = optab_libfunc (unord_optab, mode);
22060 rtx join_label = gen_label_rtx ();
22061 rtx join_ref = gen_rtx_LABEL_REF (VOIDmode, join_label);
22062 rtx unord_cmp = gen_reg_rtx (comp_mode);
22065 /* Test for either value being a NaN. */
22066 gcc_assert (unord_func);
22067 unord_dest = emit_library_call_value (unord_func, NULL_RTX, LCT_CONST,
22068 SImode, op0, mode, op1, mode);
22070 /* Set value (0) if either value is a NaN, and jump to the join
22071 label. */
22072 dest = gen_reg_rtx (SImode);
22073 emit_move_insn (dest, const1_rtx);
22074 emit_insn (gen_rtx_SET (unord_cmp,
22075 gen_rtx_COMPARE (comp_mode, unord_dest,
22076 const0_rtx)));
22078 ne_rtx = gen_rtx_NE (comp_mode, unord_cmp, const0_rtx);
22079 emit_jump_insn (gen_rtx_SET (pc_rtx,
22080 gen_rtx_IF_THEN_ELSE (VOIDmode, ne_rtx,
22081 join_ref,
22082 pc_rtx)));
22084 /* Do the normal comparison, knowing that the values are not
22085 NaNs. */
22086 normal_dest = emit_library_call_value (libfunc, NULL_RTX, LCT_CONST,
22087 SImode, op0, mode, op1, mode);
22089 emit_insn (gen_cstoresi4 (dest,
22090 gen_rtx_fmt_ee (code, SImode, normal_dest,
22091 const0_rtx),
22092 normal_dest, const0_rtx));
22094 /* Join NaN and non-Nan paths. Compare dest against 0. */
22095 emit_label (join_label);
22096 code = NE;
22099 emit_insn (gen_rtx_SET (compare_result,
22100 gen_rtx_COMPARE (comp_mode, dest, const0_rtx)));
22103 else
22105 /* Generate XLC-compatible TFmode compare as PARALLEL with extra
22106 CLOBBERs to match cmptf_internal2 pattern. */
22107 if (comp_mode == CCFPmode && TARGET_XL_COMPAT
22108 && FLOAT128_IBM_P (GET_MODE (op0))
22109 && TARGET_HARD_FLOAT)
22110 emit_insn (gen_rtx_PARALLEL (VOIDmode,
22111 gen_rtvec (10,
22112 gen_rtx_SET (compare_result,
22113 gen_rtx_COMPARE (comp_mode, op0, op1)),
22114 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
22115 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
22116 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
22117 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
22118 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
22119 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
22120 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
22121 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (DFmode)),
22122 gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (Pmode)))));
22123 else if (GET_CODE (op1) == UNSPEC
22124 && XINT (op1, 1) == UNSPEC_SP_TEST)
22126 rtx op1b = XVECEXP (op1, 0, 0);
22127 comp_mode = CCEQmode;
22128 compare_result = gen_reg_rtx (CCEQmode);
22129 if (TARGET_64BIT)
22130 emit_insn (gen_stack_protect_testdi (compare_result, op0, op1b));
22131 else
22132 emit_insn (gen_stack_protect_testsi (compare_result, op0, op1b));
22134 else
22135 emit_insn (gen_rtx_SET (compare_result,
22136 gen_rtx_COMPARE (comp_mode, op0, op1)));
22139 /* Some kinds of FP comparisons need an OR operation;
22140 under flag_finite_math_only we don't bother. */
22141 if (FLOAT_MODE_P (mode)
22142 && (!FLOAT128_IEEE_P (mode) || TARGET_FLOAT128_HW)
22143 && !flag_finite_math_only
22144 && (code == LE || code == GE
22145 || code == UNEQ || code == LTGT
22146 || code == UNGT || code == UNLT))
22148 enum rtx_code or1, or2;
22149 rtx or1_rtx, or2_rtx, compare2_rtx;
22150 rtx or_result = gen_reg_rtx (CCEQmode);
22152 switch (code)
22154 case LE: or1 = LT; or2 = EQ; break;
22155 case GE: or1 = GT; or2 = EQ; break;
22156 case UNEQ: or1 = UNORDERED; or2 = EQ; break;
22157 case LTGT: or1 = LT; or2 = GT; break;
22158 case UNGT: or1 = UNORDERED; or2 = GT; break;
22159 case UNLT: or1 = UNORDERED; or2 = LT; break;
22160 default: gcc_unreachable ();
22162 validate_condition_mode (or1, comp_mode);
22163 validate_condition_mode (or2, comp_mode);
22164 or1_rtx = gen_rtx_fmt_ee (or1, SImode, compare_result, const0_rtx);
22165 or2_rtx = gen_rtx_fmt_ee (or2, SImode, compare_result, const0_rtx);
22166 compare2_rtx = gen_rtx_COMPARE (CCEQmode,
22167 gen_rtx_IOR (SImode, or1_rtx, or2_rtx),
22168 const_true_rtx);
22169 emit_insn (gen_rtx_SET (or_result, compare2_rtx));
22171 compare_result = or_result;
22172 code = EQ;
22175 validate_condition_mode (code, GET_MODE (compare_result));
22177 return gen_rtx_fmt_ee (code, VOIDmode, compare_result, const0_rtx);
22181 /* Return the diagnostic message string if the binary operation OP is
22182 not permitted on TYPE1 and TYPE2, NULL otherwise. */
22184 static const char*
22185 rs6000_invalid_binary_op (int op ATTRIBUTE_UNUSED,
22186 const_tree type1,
22187 const_tree type2)
22189 machine_mode mode1 = TYPE_MODE (type1);
22190 machine_mode mode2 = TYPE_MODE (type2);
22192 /* For complex modes, use the inner type. */
22193 if (COMPLEX_MODE_P (mode1))
22194 mode1 = GET_MODE_INNER (mode1);
22196 if (COMPLEX_MODE_P (mode2))
22197 mode2 = GET_MODE_INNER (mode2);
22199 /* Don't allow IEEE 754R 128-bit binary floating point and IBM extended
22200 double to intermix unless -mfloat128-convert. */
22201 if (mode1 == mode2)
22202 return NULL;
22204 if (!TARGET_FLOAT128_CVT)
22206 if ((mode1 == KFmode && mode2 == IFmode)
22207 || (mode1 == IFmode && mode2 == KFmode))
22208 return N_("__float128 and __ibm128 cannot be used in the same "
22209 "expression");
22211 if (TARGET_IEEEQUAD
22212 && ((mode1 == IFmode && mode2 == TFmode)
22213 || (mode1 == TFmode && mode2 == IFmode)))
22214 return N_("__ibm128 and long double cannot be used in the same "
22215 "expression");
22217 if (!TARGET_IEEEQUAD
22218 && ((mode1 == KFmode && mode2 == TFmode)
22219 || (mode1 == TFmode && mode2 == KFmode)))
22220 return N_("__float128 and long double cannot be used in the same "
22221 "expression");
22224 return NULL;
22228 /* Expand floating point conversion to/from __float128 and __ibm128. */
22230 void
22231 rs6000_expand_float128_convert (rtx dest, rtx src, bool unsigned_p)
22233 machine_mode dest_mode = GET_MODE (dest);
22234 machine_mode src_mode = GET_MODE (src);
22235 convert_optab cvt = unknown_optab;
22236 bool do_move = false;
22237 rtx libfunc = NULL_RTX;
22238 rtx dest2;
22239 typedef rtx (*rtx_2func_t) (rtx, rtx);
22240 rtx_2func_t hw_convert = (rtx_2func_t)0;
22241 size_t kf_or_tf;
22243 struct hw_conv_t {
22244 rtx_2func_t from_df;
22245 rtx_2func_t from_sf;
22246 rtx_2func_t from_si_sign;
22247 rtx_2func_t from_si_uns;
22248 rtx_2func_t from_di_sign;
22249 rtx_2func_t from_di_uns;
22250 rtx_2func_t to_df;
22251 rtx_2func_t to_sf;
22252 rtx_2func_t to_si_sign;
22253 rtx_2func_t to_si_uns;
22254 rtx_2func_t to_di_sign;
22255 rtx_2func_t to_di_uns;
22256 } hw_conversions[2] = {
22257 /* convertions to/from KFmode */
22259 gen_extenddfkf2_hw, /* KFmode <- DFmode. */
22260 gen_extendsfkf2_hw, /* KFmode <- SFmode. */
22261 gen_float_kfsi2_hw, /* KFmode <- SImode (signed). */
22262 gen_floatuns_kfsi2_hw, /* KFmode <- SImode (unsigned). */
22263 gen_float_kfdi2_hw, /* KFmode <- DImode (signed). */
22264 gen_floatuns_kfdi2_hw, /* KFmode <- DImode (unsigned). */
22265 gen_trunckfdf2_hw, /* DFmode <- KFmode. */
22266 gen_trunckfsf2_hw, /* SFmode <- KFmode. */
22267 gen_fix_kfsi2_hw, /* SImode <- KFmode (signed). */
22268 gen_fixuns_kfsi2_hw, /* SImode <- KFmode (unsigned). */
22269 gen_fix_kfdi2_hw, /* DImode <- KFmode (signed). */
22270 gen_fixuns_kfdi2_hw, /* DImode <- KFmode (unsigned). */
22273 /* convertions to/from TFmode */
22275 gen_extenddftf2_hw, /* TFmode <- DFmode. */
22276 gen_extendsftf2_hw, /* TFmode <- SFmode. */
22277 gen_float_tfsi2_hw, /* TFmode <- SImode (signed). */
22278 gen_floatuns_tfsi2_hw, /* TFmode <- SImode (unsigned). */
22279 gen_float_tfdi2_hw, /* TFmode <- DImode (signed). */
22280 gen_floatuns_tfdi2_hw, /* TFmode <- DImode (unsigned). */
22281 gen_trunctfdf2_hw, /* DFmode <- TFmode. */
22282 gen_trunctfsf2_hw, /* SFmode <- TFmode. */
22283 gen_fix_tfsi2_hw, /* SImode <- TFmode (signed). */
22284 gen_fixuns_tfsi2_hw, /* SImode <- TFmode (unsigned). */
22285 gen_fix_tfdi2_hw, /* DImode <- TFmode (signed). */
22286 gen_fixuns_tfdi2_hw, /* DImode <- TFmode (unsigned). */
22290 if (dest_mode == src_mode)
22291 gcc_unreachable ();
22293 /* Eliminate memory operations. */
22294 if (MEM_P (src))
22295 src = force_reg (src_mode, src);
22297 if (MEM_P (dest))
22299 rtx tmp = gen_reg_rtx (dest_mode);
22300 rs6000_expand_float128_convert (tmp, src, unsigned_p);
22301 rs6000_emit_move (dest, tmp, dest_mode);
22302 return;
22305 /* Convert to IEEE 128-bit floating point. */
22306 if (FLOAT128_IEEE_P (dest_mode))
22308 if (dest_mode == KFmode)
22309 kf_or_tf = 0;
22310 else if (dest_mode == TFmode)
22311 kf_or_tf = 1;
22312 else
22313 gcc_unreachable ();
22315 switch (src_mode)
22317 case E_DFmode:
22318 cvt = sext_optab;
22319 hw_convert = hw_conversions[kf_or_tf].from_df;
22320 break;
22322 case E_SFmode:
22323 cvt = sext_optab;
22324 hw_convert = hw_conversions[kf_or_tf].from_sf;
22325 break;
22327 case E_KFmode:
22328 case E_IFmode:
22329 case E_TFmode:
22330 if (FLOAT128_IBM_P (src_mode))
22331 cvt = sext_optab;
22332 else
22333 do_move = true;
22334 break;
22336 case E_SImode:
22337 if (unsigned_p)
22339 cvt = ufloat_optab;
22340 hw_convert = hw_conversions[kf_or_tf].from_si_uns;
22342 else
22344 cvt = sfloat_optab;
22345 hw_convert = hw_conversions[kf_or_tf].from_si_sign;
22347 break;
22349 case E_DImode:
22350 if (unsigned_p)
22352 cvt = ufloat_optab;
22353 hw_convert = hw_conversions[kf_or_tf].from_di_uns;
22355 else
22357 cvt = sfloat_optab;
22358 hw_convert = hw_conversions[kf_or_tf].from_di_sign;
22360 break;
22362 default:
22363 gcc_unreachable ();
22367 /* Convert from IEEE 128-bit floating point. */
22368 else if (FLOAT128_IEEE_P (src_mode))
22370 if (src_mode == KFmode)
22371 kf_or_tf = 0;
22372 else if (src_mode == TFmode)
22373 kf_or_tf = 1;
22374 else
22375 gcc_unreachable ();
22377 switch (dest_mode)
22379 case E_DFmode:
22380 cvt = trunc_optab;
22381 hw_convert = hw_conversions[kf_or_tf].to_df;
22382 break;
22384 case E_SFmode:
22385 cvt = trunc_optab;
22386 hw_convert = hw_conversions[kf_or_tf].to_sf;
22387 break;
22389 case E_KFmode:
22390 case E_IFmode:
22391 case E_TFmode:
22392 if (FLOAT128_IBM_P (dest_mode))
22393 cvt = trunc_optab;
22394 else
22395 do_move = true;
22396 break;
22398 case E_SImode:
22399 if (unsigned_p)
22401 cvt = ufix_optab;
22402 hw_convert = hw_conversions[kf_or_tf].to_si_uns;
22404 else
22406 cvt = sfix_optab;
22407 hw_convert = hw_conversions[kf_or_tf].to_si_sign;
22409 break;
22411 case E_DImode:
22412 if (unsigned_p)
22414 cvt = ufix_optab;
22415 hw_convert = hw_conversions[kf_or_tf].to_di_uns;
22417 else
22419 cvt = sfix_optab;
22420 hw_convert = hw_conversions[kf_or_tf].to_di_sign;
22422 break;
22424 default:
22425 gcc_unreachable ();
22429 /* Both IBM format. */
22430 else if (FLOAT128_IBM_P (dest_mode) && FLOAT128_IBM_P (src_mode))
22431 do_move = true;
22433 else
22434 gcc_unreachable ();
22436 /* Handle conversion between TFmode/KFmode. */
22437 if (do_move)
22438 emit_move_insn (dest, gen_lowpart (dest_mode, src));
22440 /* Handle conversion if we have hardware support. */
22441 else if (TARGET_FLOAT128_HW && hw_convert)
22442 emit_insn ((hw_convert) (dest, src));
22444 /* Call an external function to do the conversion. */
22445 else if (cvt != unknown_optab)
22447 libfunc = convert_optab_libfunc (cvt, dest_mode, src_mode);
22448 gcc_assert (libfunc != NULL_RTX);
22450 dest2 = emit_library_call_value (libfunc, dest, LCT_CONST, dest_mode,
22451 src, src_mode);
22453 gcc_assert (dest2 != NULL_RTX);
22454 if (!rtx_equal_p (dest, dest2))
22455 emit_move_insn (dest, dest2);
22458 else
22459 gcc_unreachable ();
22461 return;
22465 /* Emit the RTL for an sISEL pattern. */
22467 void
22468 rs6000_emit_sISEL (machine_mode mode ATTRIBUTE_UNUSED, rtx operands[])
22470 rs6000_emit_int_cmove (operands[0], operands[1], const1_rtx, const0_rtx);
22473 /* Emit RTL that sets a register to zero if OP1 and OP2 are equal. SCRATCH
22474 can be used as that dest register. Return the dest register. */
22477 rs6000_emit_eqne (machine_mode mode, rtx op1, rtx op2, rtx scratch)
22479 if (op2 == const0_rtx)
22480 return op1;
22482 if (GET_CODE (scratch) == SCRATCH)
22483 scratch = gen_reg_rtx (mode);
22485 if (logical_operand (op2, mode))
22486 emit_insn (gen_rtx_SET (scratch, gen_rtx_XOR (mode, op1, op2)));
22487 else
22488 emit_insn (gen_rtx_SET (scratch,
22489 gen_rtx_PLUS (mode, op1, negate_rtx (mode, op2))));
22491 return scratch;
22494 void
22495 rs6000_emit_sCOND (machine_mode mode, rtx operands[])
22497 rtx condition_rtx;
22498 machine_mode op_mode;
22499 enum rtx_code cond_code;
22500 rtx result = operands[0];
22502 condition_rtx = rs6000_generate_compare (operands[1], mode);
22503 cond_code = GET_CODE (condition_rtx);
22505 if (cond_code == NE
22506 || cond_code == GE || cond_code == LE
22507 || cond_code == GEU || cond_code == LEU
22508 || cond_code == ORDERED || cond_code == UNGE || cond_code == UNLE)
22510 rtx not_result = gen_reg_rtx (CCEQmode);
22511 rtx not_op, rev_cond_rtx;
22512 machine_mode cc_mode;
22514 cc_mode = GET_MODE (XEXP (condition_rtx, 0));
22516 rev_cond_rtx = gen_rtx_fmt_ee (rs6000_reverse_condition (cc_mode, cond_code),
22517 SImode, XEXP (condition_rtx, 0), const0_rtx);
22518 not_op = gen_rtx_COMPARE (CCEQmode, rev_cond_rtx, const0_rtx);
22519 emit_insn (gen_rtx_SET (not_result, not_op));
22520 condition_rtx = gen_rtx_EQ (VOIDmode, not_result, const0_rtx);
22523 op_mode = GET_MODE (XEXP (operands[1], 0));
22524 if (op_mode == VOIDmode)
22525 op_mode = GET_MODE (XEXP (operands[1], 1));
22527 if (TARGET_POWERPC64 && (op_mode == DImode || FLOAT_MODE_P (mode)))
22529 PUT_MODE (condition_rtx, DImode);
22530 convert_move (result, condition_rtx, 0);
22532 else
22534 PUT_MODE (condition_rtx, SImode);
22535 emit_insn (gen_rtx_SET (result, condition_rtx));
22539 /* Emit a branch of kind CODE to location LOC. */
22541 void
22542 rs6000_emit_cbranch (machine_mode mode, rtx operands[])
22544 rtx condition_rtx, loc_ref;
22546 condition_rtx = rs6000_generate_compare (operands[0], mode);
22547 loc_ref = gen_rtx_LABEL_REF (VOIDmode, operands[3]);
22548 emit_jump_insn (gen_rtx_SET (pc_rtx,
22549 gen_rtx_IF_THEN_ELSE (VOIDmode, condition_rtx,
22550 loc_ref, pc_rtx)));
22553 /* Return the string to output a conditional branch to LABEL, which is
22554 the operand template of the label, or NULL if the branch is really a
22555 conditional return.
22557 OP is the conditional expression. XEXP (OP, 0) is assumed to be a
22558 condition code register and its mode specifies what kind of
22559 comparison we made.
22561 REVERSED is nonzero if we should reverse the sense of the comparison.
22563 INSN is the insn. */
22565 char *
22566 output_cbranch (rtx op, const char *label, int reversed, rtx_insn *insn)
22568 static char string[64];
22569 enum rtx_code code = GET_CODE (op);
22570 rtx cc_reg = XEXP (op, 0);
22571 machine_mode mode = GET_MODE (cc_reg);
22572 int cc_regno = REGNO (cc_reg) - CR0_REGNO;
22573 int need_longbranch = label != NULL && get_attr_length (insn) == 8;
22574 int really_reversed = reversed ^ need_longbranch;
22575 char *s = string;
22576 const char *ccode;
22577 const char *pred;
22578 rtx note;
22580 validate_condition_mode (code, mode);
22582 /* Work out which way this really branches. We could use
22583 reverse_condition_maybe_unordered here always but this
22584 makes the resulting assembler clearer. */
22585 if (really_reversed)
22587 /* Reversal of FP compares takes care -- an ordered compare
22588 becomes an unordered compare and vice versa. */
22589 if (mode == CCFPmode)
22590 code = reverse_condition_maybe_unordered (code);
22591 else
22592 code = reverse_condition (code);
22595 switch (code)
22597 /* Not all of these are actually distinct opcodes, but
22598 we distinguish them for clarity of the resulting assembler. */
22599 case NE: case LTGT:
22600 ccode = "ne"; break;
22601 case EQ: case UNEQ:
22602 ccode = "eq"; break;
22603 case GE: case GEU:
22604 ccode = "ge"; break;
22605 case GT: case GTU: case UNGT:
22606 ccode = "gt"; break;
22607 case LE: case LEU:
22608 ccode = "le"; break;
22609 case LT: case LTU: case UNLT:
22610 ccode = "lt"; break;
22611 case UNORDERED: ccode = "un"; break;
22612 case ORDERED: ccode = "nu"; break;
22613 case UNGE: ccode = "nl"; break;
22614 case UNLE: ccode = "ng"; break;
22615 default:
22616 gcc_unreachable ();
22619 /* Maybe we have a guess as to how likely the branch is. */
22620 pred = "";
22621 note = find_reg_note (insn, REG_BR_PROB, NULL_RTX);
22622 if (note != NULL_RTX)
22624 /* PROB is the difference from 50%. */
22625 int prob = profile_probability::from_reg_br_prob_note (XINT (note, 0))
22626 .to_reg_br_prob_base () - REG_BR_PROB_BASE / 2;
22628 /* Only hint for highly probable/improbable branches on newer cpus when
22629 we have real profile data, as static prediction overrides processor
22630 dynamic prediction. For older cpus we may as well always hint, but
22631 assume not taken for branches that are very close to 50% as a
22632 mispredicted taken branch is more expensive than a
22633 mispredicted not-taken branch. */
22634 if (rs6000_always_hint
22635 || (abs (prob) > REG_BR_PROB_BASE / 100 * 48
22636 && (profile_status_for_fn (cfun) != PROFILE_GUESSED)
22637 && br_prob_note_reliable_p (note)))
22639 if (abs (prob) > REG_BR_PROB_BASE / 20
22640 && ((prob > 0) ^ need_longbranch))
22641 pred = "+";
22642 else
22643 pred = "-";
22647 if (label == NULL)
22648 s += sprintf (s, "b%slr%s ", ccode, pred);
22649 else
22650 s += sprintf (s, "b%s%s ", ccode, pred);
22652 /* We need to escape any '%' characters in the reg_names string.
22653 Assume they'd only be the first character.... */
22654 if (reg_names[cc_regno + CR0_REGNO][0] == '%')
22655 *s++ = '%';
22656 s += sprintf (s, "%s", reg_names[cc_regno + CR0_REGNO]);
22658 if (label != NULL)
22660 /* If the branch distance was too far, we may have to use an
22661 unconditional branch to go the distance. */
22662 if (need_longbranch)
22663 s += sprintf (s, ",$+8\n\tb %s", label);
22664 else
22665 s += sprintf (s, ",%s", label);
22668 return string;
22671 /* Return insn for VSX or Altivec comparisons. */
22673 static rtx
22674 rs6000_emit_vector_compare_inner (enum rtx_code code, rtx op0, rtx op1)
22676 rtx mask;
22677 machine_mode mode = GET_MODE (op0);
22679 switch (code)
22681 default:
22682 break;
22684 case GE:
22685 if (GET_MODE_CLASS (mode) == MODE_VECTOR_INT)
22686 return NULL_RTX;
22687 /* FALLTHRU */
22689 case EQ:
22690 case GT:
22691 case GTU:
22692 case ORDERED:
22693 case UNORDERED:
22694 case UNEQ:
22695 case LTGT:
22696 mask = gen_reg_rtx (mode);
22697 emit_insn (gen_rtx_SET (mask, gen_rtx_fmt_ee (code, mode, op0, op1)));
22698 return mask;
22701 return NULL_RTX;
22704 /* Emit vector compare for operands OP0 and OP1 using code RCODE.
22705 DMODE is expected destination mode. This is a recursive function. */
22707 static rtx
22708 rs6000_emit_vector_compare (enum rtx_code rcode,
22709 rtx op0, rtx op1,
22710 machine_mode dmode)
22712 rtx mask;
22713 bool swap_operands = false;
22714 bool try_again = false;
22716 gcc_assert (VECTOR_UNIT_ALTIVEC_OR_VSX_P (dmode));
22717 gcc_assert (GET_MODE (op0) == GET_MODE (op1));
22719 /* See if the comparison works as is. */
22720 mask = rs6000_emit_vector_compare_inner (rcode, op0, op1);
22721 if (mask)
22722 return mask;
22724 switch (rcode)
22726 case LT:
22727 rcode = GT;
22728 swap_operands = true;
22729 try_again = true;
22730 break;
22731 case LTU:
22732 rcode = GTU;
22733 swap_operands = true;
22734 try_again = true;
22735 break;
22736 case NE:
22737 case UNLE:
22738 case UNLT:
22739 case UNGE:
22740 case UNGT:
22741 /* Invert condition and try again.
22742 e.g., A != B becomes ~(A==B). */
22744 enum rtx_code rev_code;
22745 enum insn_code nor_code;
22746 rtx mask2;
22748 rev_code = reverse_condition_maybe_unordered (rcode);
22749 if (rev_code == UNKNOWN)
22750 return NULL_RTX;
22752 nor_code = optab_handler (one_cmpl_optab, dmode);
22753 if (nor_code == CODE_FOR_nothing)
22754 return NULL_RTX;
22756 mask2 = rs6000_emit_vector_compare (rev_code, op0, op1, dmode);
22757 if (!mask2)
22758 return NULL_RTX;
22760 mask = gen_reg_rtx (dmode);
22761 emit_insn (GEN_FCN (nor_code) (mask, mask2));
22762 return mask;
22764 break;
22765 case GE:
22766 case GEU:
22767 case LE:
22768 case LEU:
22769 /* Try GT/GTU/LT/LTU OR EQ */
22771 rtx c_rtx, eq_rtx;
22772 enum insn_code ior_code;
22773 enum rtx_code new_code;
22775 switch (rcode)
22777 case GE:
22778 new_code = GT;
22779 break;
22781 case GEU:
22782 new_code = GTU;
22783 break;
22785 case LE:
22786 new_code = LT;
22787 break;
22789 case LEU:
22790 new_code = LTU;
22791 break;
22793 default:
22794 gcc_unreachable ();
22797 ior_code = optab_handler (ior_optab, dmode);
22798 if (ior_code == CODE_FOR_nothing)
22799 return NULL_RTX;
22801 c_rtx = rs6000_emit_vector_compare (new_code, op0, op1, dmode);
22802 if (!c_rtx)
22803 return NULL_RTX;
22805 eq_rtx = rs6000_emit_vector_compare (EQ, op0, op1, dmode);
22806 if (!eq_rtx)
22807 return NULL_RTX;
22809 mask = gen_reg_rtx (dmode);
22810 emit_insn (GEN_FCN (ior_code) (mask, c_rtx, eq_rtx));
22811 return mask;
22813 break;
22814 default:
22815 return NULL_RTX;
22818 if (try_again)
22820 if (swap_operands)
22821 std::swap (op0, op1);
22823 mask = rs6000_emit_vector_compare_inner (rcode, op0, op1);
22824 if (mask)
22825 return mask;
22828 /* You only get two chances. */
22829 return NULL_RTX;
22832 /* Emit vector conditional expression. DEST is destination. OP_TRUE and
22833 OP_FALSE are two VEC_COND_EXPR operands. CC_OP0 and CC_OP1 are the two
22834 operands for the relation operation COND. */
22837 rs6000_emit_vector_cond_expr (rtx dest, rtx op_true, rtx op_false,
22838 rtx cond, rtx cc_op0, rtx cc_op1)
22840 machine_mode dest_mode = GET_MODE (dest);
22841 machine_mode mask_mode = GET_MODE (cc_op0);
22842 enum rtx_code rcode = GET_CODE (cond);
22843 machine_mode cc_mode = CCmode;
22844 rtx mask;
22845 rtx cond2;
22846 bool invert_move = false;
22848 if (VECTOR_UNIT_NONE_P (dest_mode))
22849 return 0;
22851 gcc_assert (GET_MODE_SIZE (dest_mode) == GET_MODE_SIZE (mask_mode)
22852 && GET_MODE_NUNITS (dest_mode) == GET_MODE_NUNITS (mask_mode));
22854 switch (rcode)
22856 /* Swap operands if we can, and fall back to doing the operation as
22857 specified, and doing a NOR to invert the test. */
22858 case NE:
22859 case UNLE:
22860 case UNLT:
22861 case UNGE:
22862 case UNGT:
22863 /* Invert condition and try again.
22864 e.g., A = (B != C) ? D : E becomes A = (B == C) ? E : D. */
22865 invert_move = true;
22866 rcode = reverse_condition_maybe_unordered (rcode);
22867 if (rcode == UNKNOWN)
22868 return 0;
22869 break;
22871 case GE:
22872 case LE:
22873 if (GET_MODE_CLASS (mask_mode) == MODE_VECTOR_INT)
22875 /* Invert condition to avoid compound test. */
22876 invert_move = true;
22877 rcode = reverse_condition (rcode);
22879 break;
22881 case GTU:
22882 case GEU:
22883 case LTU:
22884 case LEU:
22885 /* Mark unsigned tests with CCUNSmode. */
22886 cc_mode = CCUNSmode;
22888 /* Invert condition to avoid compound test if necessary. */
22889 if (rcode == GEU || rcode == LEU)
22891 invert_move = true;
22892 rcode = reverse_condition (rcode);
22894 break;
22896 default:
22897 break;
22900 /* Get the vector mask for the given relational operations. */
22901 mask = rs6000_emit_vector_compare (rcode, cc_op0, cc_op1, mask_mode);
22903 if (!mask)
22904 return 0;
22906 if (invert_move)
22907 std::swap (op_true, op_false);
22909 /* Optimize vec1 == vec2, to know the mask generates -1/0. */
22910 if (GET_MODE_CLASS (dest_mode) == MODE_VECTOR_INT
22911 && (GET_CODE (op_true) == CONST_VECTOR
22912 || GET_CODE (op_false) == CONST_VECTOR))
22914 rtx constant_0 = CONST0_RTX (dest_mode);
22915 rtx constant_m1 = CONSTM1_RTX (dest_mode);
22917 if (op_true == constant_m1 && op_false == constant_0)
22919 emit_move_insn (dest, mask);
22920 return 1;
22923 else if (op_true == constant_0 && op_false == constant_m1)
22925 emit_insn (gen_rtx_SET (dest, gen_rtx_NOT (dest_mode, mask)));
22926 return 1;
22929 /* If we can't use the vector comparison directly, perhaps we can use
22930 the mask for the true or false fields, instead of loading up a
22931 constant. */
22932 if (op_true == constant_m1)
22933 op_true = mask;
22935 if (op_false == constant_0)
22936 op_false = mask;
22939 if (!REG_P (op_true) && !SUBREG_P (op_true))
22940 op_true = force_reg (dest_mode, op_true);
22942 if (!REG_P (op_false) && !SUBREG_P (op_false))
22943 op_false = force_reg (dest_mode, op_false);
22945 cond2 = gen_rtx_fmt_ee (NE, cc_mode, gen_lowpart (dest_mode, mask),
22946 CONST0_RTX (dest_mode));
22947 emit_insn (gen_rtx_SET (dest,
22948 gen_rtx_IF_THEN_ELSE (dest_mode,
22949 cond2,
22950 op_true,
22951 op_false)));
22952 return 1;
22955 /* ISA 3.0 (power9) minmax subcase to emit a XSMAXCDP or XSMINCDP instruction
22956 for SF/DF scalars. Move TRUE_COND to DEST if OP of the operands of the last
22957 comparison is nonzero/true, FALSE_COND if it is zero/false. Return 0 if the
22958 hardware has no such operation. */
22960 static int
22961 rs6000_emit_p9_fp_minmax (rtx dest, rtx op, rtx true_cond, rtx false_cond)
22963 enum rtx_code code = GET_CODE (op);
22964 rtx op0 = XEXP (op, 0);
22965 rtx op1 = XEXP (op, 1);
22966 machine_mode compare_mode = GET_MODE (op0);
22967 machine_mode result_mode = GET_MODE (dest);
22968 bool max_p = false;
22970 if (result_mode != compare_mode)
22971 return 0;
22973 if (code == GE || code == GT)
22974 max_p = true;
22975 else if (code == LE || code == LT)
22976 max_p = false;
22977 else
22978 return 0;
22980 if (rtx_equal_p (op0, true_cond) && rtx_equal_p (op1, false_cond))
22983 else if (rtx_equal_p (op1, true_cond) && rtx_equal_p (op0, false_cond))
22984 max_p = !max_p;
22986 else
22987 return 0;
22989 rs6000_emit_minmax (dest, max_p ? SMAX : SMIN, op0, op1);
22990 return 1;
22993 /* ISA 3.0 (power9) conditional move subcase to emit XSCMP{EQ,GE,GT,NE}DP and
22994 XXSEL instructions for SF/DF scalars. Move TRUE_COND to DEST if OP of the
22995 operands of the last comparison is nonzero/true, FALSE_COND if it is
22996 zero/false. Return 0 if the hardware has no such operation. */
22998 static int
22999 rs6000_emit_p9_fp_cmove (rtx dest, rtx op, rtx true_cond, rtx false_cond)
23001 enum rtx_code code = GET_CODE (op);
23002 rtx op0 = XEXP (op, 0);
23003 rtx op1 = XEXP (op, 1);
23004 machine_mode result_mode = GET_MODE (dest);
23005 rtx compare_rtx;
23006 rtx cmove_rtx;
23007 rtx clobber_rtx;
23009 if (!can_create_pseudo_p ())
23010 return 0;
23012 switch (code)
23014 case EQ:
23015 case GE:
23016 case GT:
23017 break;
23019 case NE:
23020 case LT:
23021 case LE:
23022 code = swap_condition (code);
23023 std::swap (op0, op1);
23024 break;
23026 default:
23027 return 0;
23030 /* Generate: [(parallel [(set (dest)
23031 (if_then_else (op (cmp1) (cmp2))
23032 (true)
23033 (false)))
23034 (clobber (scratch))])]. */
23036 compare_rtx = gen_rtx_fmt_ee (code, CCFPmode, op0, op1);
23037 cmove_rtx = gen_rtx_SET (dest,
23038 gen_rtx_IF_THEN_ELSE (result_mode,
23039 compare_rtx,
23040 true_cond,
23041 false_cond));
23043 clobber_rtx = gen_rtx_CLOBBER (VOIDmode, gen_rtx_SCRATCH (V2DImode));
23044 emit_insn (gen_rtx_PARALLEL (VOIDmode,
23045 gen_rtvec (2, cmove_rtx, clobber_rtx)));
23047 return 1;
23050 /* Emit a conditional move: move TRUE_COND to DEST if OP of the
23051 operands of the last comparison is nonzero/true, FALSE_COND if it
23052 is zero/false. Return 0 if the hardware has no such operation. */
23055 rs6000_emit_cmove (rtx dest, rtx op, rtx true_cond, rtx false_cond)
23057 enum rtx_code code = GET_CODE (op);
23058 rtx op0 = XEXP (op, 0);
23059 rtx op1 = XEXP (op, 1);
23060 machine_mode compare_mode = GET_MODE (op0);
23061 machine_mode result_mode = GET_MODE (dest);
23062 rtx temp;
23063 bool is_against_zero;
23065 /* These modes should always match. */
23066 if (GET_MODE (op1) != compare_mode
23067 /* In the isel case however, we can use a compare immediate, so
23068 op1 may be a small constant. */
23069 && (!TARGET_ISEL || !short_cint_operand (op1, VOIDmode)))
23070 return 0;
23071 if (GET_MODE (true_cond) != result_mode)
23072 return 0;
23073 if (GET_MODE (false_cond) != result_mode)
23074 return 0;
23076 /* See if we can use the ISA 3.0 (power9) min/max/compare functions. */
23077 if (TARGET_P9_MINMAX
23078 && (compare_mode == SFmode || compare_mode == DFmode)
23079 && (result_mode == SFmode || result_mode == DFmode))
23081 if (rs6000_emit_p9_fp_minmax (dest, op, true_cond, false_cond))
23082 return 1;
23084 if (rs6000_emit_p9_fp_cmove (dest, op, true_cond, false_cond))
23085 return 1;
23088 /* Don't allow using floating point comparisons for integer results for
23089 now. */
23090 if (FLOAT_MODE_P (compare_mode) && !FLOAT_MODE_P (result_mode))
23091 return 0;
23093 /* First, work out if the hardware can do this at all, or
23094 if it's too slow.... */
23095 if (!FLOAT_MODE_P (compare_mode))
23097 if (TARGET_ISEL)
23098 return rs6000_emit_int_cmove (dest, op, true_cond, false_cond);
23099 return 0;
23102 is_against_zero = op1 == CONST0_RTX (compare_mode);
23104 /* A floating-point subtract might overflow, underflow, or produce
23105 an inexact result, thus changing the floating-point flags, so it
23106 can't be generated if we care about that. It's safe if one side
23107 of the construct is zero, since then no subtract will be
23108 generated. */
23109 if (SCALAR_FLOAT_MODE_P (compare_mode)
23110 && flag_trapping_math && ! is_against_zero)
23111 return 0;
23113 /* Eliminate half of the comparisons by switching operands, this
23114 makes the remaining code simpler. */
23115 if (code == UNLT || code == UNGT || code == UNORDERED || code == NE
23116 || code == LTGT || code == LT || code == UNLE)
23118 code = reverse_condition_maybe_unordered (code);
23119 temp = true_cond;
23120 true_cond = false_cond;
23121 false_cond = temp;
23124 /* UNEQ and LTGT take four instructions for a comparison with zero,
23125 it'll probably be faster to use a branch here too. */
23126 if (code == UNEQ && HONOR_NANS (compare_mode))
23127 return 0;
23129 /* We're going to try to implement comparisons by performing
23130 a subtract, then comparing against zero. Unfortunately,
23131 Inf - Inf is NaN which is not zero, and so if we don't
23132 know that the operand is finite and the comparison
23133 would treat EQ different to UNORDERED, we can't do it. */
23134 if (HONOR_INFINITIES (compare_mode)
23135 && code != GT && code != UNGE
23136 && (GET_CODE (op1) != CONST_DOUBLE
23137 || real_isinf (CONST_DOUBLE_REAL_VALUE (op1)))
23138 /* Constructs of the form (a OP b ? a : b) are safe. */
23139 && ((! rtx_equal_p (op0, false_cond) && ! rtx_equal_p (op1, false_cond))
23140 || (! rtx_equal_p (op0, true_cond)
23141 && ! rtx_equal_p (op1, true_cond))))
23142 return 0;
23144 /* At this point we know we can use fsel. */
23146 /* Reduce the comparison to a comparison against zero. */
23147 if (! is_against_zero)
23149 temp = gen_reg_rtx (compare_mode);
23150 emit_insn (gen_rtx_SET (temp, gen_rtx_MINUS (compare_mode, op0, op1)));
23151 op0 = temp;
23152 op1 = CONST0_RTX (compare_mode);
23155 /* If we don't care about NaNs we can reduce some of the comparisons
23156 down to faster ones. */
23157 if (! HONOR_NANS (compare_mode))
23158 switch (code)
23160 case GT:
23161 code = LE;
23162 temp = true_cond;
23163 true_cond = false_cond;
23164 false_cond = temp;
23165 break;
23166 case UNGE:
23167 code = GE;
23168 break;
23169 case UNEQ:
23170 code = EQ;
23171 break;
23172 default:
23173 break;
23176 /* Now, reduce everything down to a GE. */
23177 switch (code)
23179 case GE:
23180 break;
23182 case LE:
23183 temp = gen_reg_rtx (compare_mode);
23184 emit_insn (gen_rtx_SET (temp, gen_rtx_NEG (compare_mode, op0)));
23185 op0 = temp;
23186 break;
23188 case ORDERED:
23189 temp = gen_reg_rtx (compare_mode);
23190 emit_insn (gen_rtx_SET (temp, gen_rtx_ABS (compare_mode, op0)));
23191 op0 = temp;
23192 break;
23194 case EQ:
23195 temp = gen_reg_rtx (compare_mode);
23196 emit_insn (gen_rtx_SET (temp,
23197 gen_rtx_NEG (compare_mode,
23198 gen_rtx_ABS (compare_mode, op0))));
23199 op0 = temp;
23200 break;
23202 case UNGE:
23203 /* a UNGE 0 <-> (a GE 0 || -a UNLT 0) */
23204 temp = gen_reg_rtx (result_mode);
23205 emit_insn (gen_rtx_SET (temp,
23206 gen_rtx_IF_THEN_ELSE (result_mode,
23207 gen_rtx_GE (VOIDmode,
23208 op0, op1),
23209 true_cond, false_cond)));
23210 false_cond = true_cond;
23211 true_cond = temp;
23213 temp = gen_reg_rtx (compare_mode);
23214 emit_insn (gen_rtx_SET (temp, gen_rtx_NEG (compare_mode, op0)));
23215 op0 = temp;
23216 break;
23218 case GT:
23219 /* a GT 0 <-> (a GE 0 && -a UNLT 0) */
23220 temp = gen_reg_rtx (result_mode);
23221 emit_insn (gen_rtx_SET (temp,
23222 gen_rtx_IF_THEN_ELSE (result_mode,
23223 gen_rtx_GE (VOIDmode,
23224 op0, op1),
23225 true_cond, false_cond)));
23226 true_cond = false_cond;
23227 false_cond = temp;
23229 temp = gen_reg_rtx (compare_mode);
23230 emit_insn (gen_rtx_SET (temp, gen_rtx_NEG (compare_mode, op0)));
23231 op0 = temp;
23232 break;
23234 default:
23235 gcc_unreachable ();
23238 emit_insn (gen_rtx_SET (dest,
23239 gen_rtx_IF_THEN_ELSE (result_mode,
23240 gen_rtx_GE (VOIDmode,
23241 op0, op1),
23242 true_cond, false_cond)));
23243 return 1;
23246 /* Same as above, but for ints (isel). */
23248 static int
23249 rs6000_emit_int_cmove (rtx dest, rtx op, rtx true_cond, rtx false_cond)
23251 rtx condition_rtx, cr;
23252 machine_mode mode = GET_MODE (dest);
23253 enum rtx_code cond_code;
23254 rtx (*isel_func) (rtx, rtx, rtx, rtx, rtx);
23255 bool signedp;
23257 if (mode != SImode && (!TARGET_POWERPC64 || mode != DImode))
23258 return 0;
23260 /* We still have to do the compare, because isel doesn't do a
23261 compare, it just looks at the CRx bits set by a previous compare
23262 instruction. */
23263 condition_rtx = rs6000_generate_compare (op, mode);
23264 cond_code = GET_CODE (condition_rtx);
23265 cr = XEXP (condition_rtx, 0);
23266 signedp = GET_MODE (cr) == CCmode;
23268 isel_func = (mode == SImode
23269 ? (signedp ? gen_isel_signed_si : gen_isel_unsigned_si)
23270 : (signedp ? gen_isel_signed_di : gen_isel_unsigned_di));
23272 switch (cond_code)
23274 case LT: case GT: case LTU: case GTU: case EQ:
23275 /* isel handles these directly. */
23276 break;
23278 default:
23279 /* We need to swap the sense of the comparison. */
23281 std::swap (false_cond, true_cond);
23282 PUT_CODE (condition_rtx, reverse_condition (cond_code));
23284 break;
23287 false_cond = force_reg (mode, false_cond);
23288 if (true_cond != const0_rtx)
23289 true_cond = force_reg (mode, true_cond);
23291 emit_insn (isel_func (dest, condition_rtx, true_cond, false_cond, cr));
23293 return 1;
23296 void
23297 rs6000_emit_minmax (rtx dest, enum rtx_code code, rtx op0, rtx op1)
23299 machine_mode mode = GET_MODE (op0);
23300 enum rtx_code c;
23301 rtx target;
23303 /* VSX/altivec have direct min/max insns. */
23304 if ((code == SMAX || code == SMIN)
23305 && (VECTOR_UNIT_ALTIVEC_OR_VSX_P (mode)
23306 || (mode == SFmode && VECTOR_UNIT_VSX_P (DFmode))))
23308 emit_insn (gen_rtx_SET (dest, gen_rtx_fmt_ee (code, mode, op0, op1)));
23309 return;
23312 if (code == SMAX || code == SMIN)
23313 c = GE;
23314 else
23315 c = GEU;
23317 if (code == SMAX || code == UMAX)
23318 target = emit_conditional_move (dest, c, op0, op1, mode,
23319 op0, op1, mode, 0);
23320 else
23321 target = emit_conditional_move (dest, c, op0, op1, mode,
23322 op1, op0, mode, 0);
23323 gcc_assert (target);
23324 if (target != dest)
23325 emit_move_insn (dest, target);
23328 /* Split a signbit operation on 64-bit machines with direct move. Also allow
23329 for the value to come from memory or if it is already loaded into a GPR. */
23331 void
23332 rs6000_split_signbit (rtx dest, rtx src)
23334 machine_mode d_mode = GET_MODE (dest);
23335 machine_mode s_mode = GET_MODE (src);
23336 rtx dest_di = (d_mode == DImode) ? dest : gen_lowpart (DImode, dest);
23337 rtx shift_reg = dest_di;
23339 gcc_assert (FLOAT128_IEEE_P (s_mode) && TARGET_POWERPC64);
23341 if (MEM_P (src))
23343 rtx mem = (WORDS_BIG_ENDIAN
23344 ? adjust_address (src, DImode, 0)
23345 : adjust_address (src, DImode, 8));
23346 emit_insn (gen_rtx_SET (dest_di, mem));
23349 else
23351 unsigned int r = reg_or_subregno (src);
23353 if (INT_REGNO_P (r))
23354 shift_reg = gen_rtx_REG (DImode, r + (BYTES_BIG_ENDIAN == 0));
23356 else
23358 /* Generate the special mfvsrd instruction to get it in a GPR. */
23359 gcc_assert (VSX_REGNO_P (r));
23360 if (s_mode == KFmode)
23361 emit_insn (gen_signbitkf2_dm2 (dest_di, src));
23362 else
23363 emit_insn (gen_signbittf2_dm2 (dest_di, src));
23367 emit_insn (gen_lshrdi3 (dest_di, shift_reg, GEN_INT (63)));
23368 return;
23371 /* A subroutine of the atomic operation splitters. Jump to LABEL if
23372 COND is true. Mark the jump as unlikely to be taken. */
23374 static void
23375 emit_unlikely_jump (rtx cond, rtx label)
23377 rtx x = gen_rtx_IF_THEN_ELSE (VOIDmode, cond, label, pc_rtx);
23378 rtx_insn *insn = emit_jump_insn (gen_rtx_SET (pc_rtx, x));
23379 add_reg_br_prob_note (insn, profile_probability::very_unlikely ());
23382 /* A subroutine of the atomic operation splitters. Emit a load-locked
23383 instruction in MODE. For QI/HImode, possibly use a pattern than includes
23384 the zero_extend operation. */
23386 static void
23387 emit_load_locked (machine_mode mode, rtx reg, rtx mem)
23389 rtx (*fn) (rtx, rtx) = NULL;
23391 switch (mode)
23393 case E_QImode:
23394 fn = gen_load_lockedqi;
23395 break;
23396 case E_HImode:
23397 fn = gen_load_lockedhi;
23398 break;
23399 case E_SImode:
23400 if (GET_MODE (mem) == QImode)
23401 fn = gen_load_lockedqi_si;
23402 else if (GET_MODE (mem) == HImode)
23403 fn = gen_load_lockedhi_si;
23404 else
23405 fn = gen_load_lockedsi;
23406 break;
23407 case E_DImode:
23408 fn = gen_load_lockeddi;
23409 break;
23410 case E_TImode:
23411 fn = gen_load_lockedti;
23412 break;
23413 default:
23414 gcc_unreachable ();
23416 emit_insn (fn (reg, mem));
23419 /* A subroutine of the atomic operation splitters. Emit a store-conditional
23420 instruction in MODE. */
23422 static void
23423 emit_store_conditional (machine_mode mode, rtx res, rtx mem, rtx val)
23425 rtx (*fn) (rtx, rtx, rtx) = NULL;
23427 switch (mode)
23429 case E_QImode:
23430 fn = gen_store_conditionalqi;
23431 break;
23432 case E_HImode:
23433 fn = gen_store_conditionalhi;
23434 break;
23435 case E_SImode:
23436 fn = gen_store_conditionalsi;
23437 break;
23438 case E_DImode:
23439 fn = gen_store_conditionaldi;
23440 break;
23441 case E_TImode:
23442 fn = gen_store_conditionalti;
23443 break;
23444 default:
23445 gcc_unreachable ();
23448 /* Emit sync before stwcx. to address PPC405 Erratum. */
23449 if (PPC405_ERRATUM77)
23450 emit_insn (gen_hwsync ());
23452 emit_insn (fn (res, mem, val));
23455 /* Expand barriers before and after a load_locked/store_cond sequence. */
23457 static rtx
23458 rs6000_pre_atomic_barrier (rtx mem, enum memmodel model)
23460 rtx addr = XEXP (mem, 0);
23462 if (!legitimate_indirect_address_p (addr, reload_completed)
23463 && !legitimate_indexed_address_p (addr, reload_completed))
23465 addr = force_reg (Pmode, addr);
23466 mem = replace_equiv_address_nv (mem, addr);
23469 switch (model)
23471 case MEMMODEL_RELAXED:
23472 case MEMMODEL_CONSUME:
23473 case MEMMODEL_ACQUIRE:
23474 break;
23475 case MEMMODEL_RELEASE:
23476 case MEMMODEL_ACQ_REL:
23477 emit_insn (gen_lwsync ());
23478 break;
23479 case MEMMODEL_SEQ_CST:
23480 emit_insn (gen_hwsync ());
23481 break;
23482 default:
23483 gcc_unreachable ();
23485 return mem;
23488 static void
23489 rs6000_post_atomic_barrier (enum memmodel model)
23491 switch (model)
23493 case MEMMODEL_RELAXED:
23494 case MEMMODEL_CONSUME:
23495 case MEMMODEL_RELEASE:
23496 break;
23497 case MEMMODEL_ACQUIRE:
23498 case MEMMODEL_ACQ_REL:
23499 case MEMMODEL_SEQ_CST:
23500 emit_insn (gen_isync ());
23501 break;
23502 default:
23503 gcc_unreachable ();
23507 /* A subroutine of the various atomic expanders. For sub-word operations,
23508 we must adjust things to operate on SImode. Given the original MEM,
23509 return a new aligned memory. Also build and return the quantities by
23510 which to shift and mask. */
23512 static rtx
23513 rs6000_adjust_atomic_subword (rtx orig_mem, rtx *pshift, rtx *pmask)
23515 rtx addr, align, shift, mask, mem;
23516 HOST_WIDE_INT shift_mask;
23517 machine_mode mode = GET_MODE (orig_mem);
23519 /* For smaller modes, we have to implement this via SImode. */
23520 shift_mask = (mode == QImode ? 0x18 : 0x10);
23522 addr = XEXP (orig_mem, 0);
23523 addr = force_reg (GET_MODE (addr), addr);
23525 /* Aligned memory containing subword. Generate a new memory. We
23526 do not want any of the existing MEM_ATTR data, as we're now
23527 accessing memory outside the original object. */
23528 align = expand_simple_binop (Pmode, AND, addr, GEN_INT (-4),
23529 NULL_RTX, 1, OPTAB_LIB_WIDEN);
23530 mem = gen_rtx_MEM (SImode, align);
23531 MEM_VOLATILE_P (mem) = MEM_VOLATILE_P (orig_mem);
23532 if (MEM_ALIAS_SET (orig_mem) == ALIAS_SET_MEMORY_BARRIER)
23533 set_mem_alias_set (mem, ALIAS_SET_MEMORY_BARRIER);
23535 /* Shift amount for subword relative to aligned word. */
23536 shift = gen_reg_rtx (SImode);
23537 addr = gen_lowpart (SImode, addr);
23538 rtx tmp = gen_reg_rtx (SImode);
23539 emit_insn (gen_ashlsi3 (tmp, addr, GEN_INT (3)));
23540 emit_insn (gen_andsi3 (shift, tmp, GEN_INT (shift_mask)));
23541 if (BYTES_BIG_ENDIAN)
23542 shift = expand_simple_binop (SImode, XOR, shift, GEN_INT (shift_mask),
23543 shift, 1, OPTAB_LIB_WIDEN);
23544 *pshift = shift;
23546 /* Mask for insertion. */
23547 mask = expand_simple_binop (SImode, ASHIFT, GEN_INT (GET_MODE_MASK (mode)),
23548 shift, NULL_RTX, 1, OPTAB_LIB_WIDEN);
23549 *pmask = mask;
23551 return mem;
23554 /* A subroutine of the various atomic expanders. For sub-word operands,
23555 combine OLDVAL and NEWVAL via MASK. Returns a new pseduo. */
23557 static rtx
23558 rs6000_mask_atomic_subword (rtx oldval, rtx newval, rtx mask)
23560 rtx x;
23562 x = gen_reg_rtx (SImode);
23563 emit_insn (gen_rtx_SET (x, gen_rtx_AND (SImode,
23564 gen_rtx_NOT (SImode, mask),
23565 oldval)));
23567 x = expand_simple_binop (SImode, IOR, newval, x, x, 1, OPTAB_LIB_WIDEN);
23569 return x;
23572 /* A subroutine of the various atomic expanders. For sub-word operands,
23573 extract WIDE to NARROW via SHIFT. */
23575 static void
23576 rs6000_finish_atomic_subword (rtx narrow, rtx wide, rtx shift)
23578 wide = expand_simple_binop (SImode, LSHIFTRT, wide, shift,
23579 wide, 1, OPTAB_LIB_WIDEN);
23580 emit_move_insn (narrow, gen_lowpart (GET_MODE (narrow), wide));
23583 /* Expand an atomic compare and swap operation. */
23585 void
23586 rs6000_expand_atomic_compare_and_swap (rtx operands[])
23588 rtx boolval, retval, mem, oldval, newval, cond;
23589 rtx label1, label2, x, mask, shift;
23590 machine_mode mode, orig_mode;
23591 enum memmodel mod_s, mod_f;
23592 bool is_weak;
23594 boolval = operands[0];
23595 retval = operands[1];
23596 mem = operands[2];
23597 oldval = operands[3];
23598 newval = operands[4];
23599 is_weak = (INTVAL (operands[5]) != 0);
23600 mod_s = memmodel_base (INTVAL (operands[6]));
23601 mod_f = memmodel_base (INTVAL (operands[7]));
23602 orig_mode = mode = GET_MODE (mem);
23604 mask = shift = NULL_RTX;
23605 if (mode == QImode || mode == HImode)
23607 /* Before power8, we didn't have access to lbarx/lharx, so generate a
23608 lwarx and shift/mask operations. With power8, we need to do the
23609 comparison in SImode, but the store is still done in QI/HImode. */
23610 oldval = convert_modes (SImode, mode, oldval, 1);
23612 if (!TARGET_SYNC_HI_QI)
23614 mem = rs6000_adjust_atomic_subword (mem, &shift, &mask);
23616 /* Shift and mask OLDVAL into position with the word. */
23617 oldval = expand_simple_binop (SImode, ASHIFT, oldval, shift,
23618 NULL_RTX, 1, OPTAB_LIB_WIDEN);
23620 /* Shift and mask NEWVAL into position within the word. */
23621 newval = convert_modes (SImode, mode, newval, 1);
23622 newval = expand_simple_binop (SImode, ASHIFT, newval, shift,
23623 NULL_RTX, 1, OPTAB_LIB_WIDEN);
23626 /* Prepare to adjust the return value. */
23627 retval = gen_reg_rtx (SImode);
23628 mode = SImode;
23630 else if (reg_overlap_mentioned_p (retval, oldval))
23631 oldval = copy_to_reg (oldval);
23633 if (mode != TImode && !reg_or_short_operand (oldval, mode))
23634 oldval = copy_to_mode_reg (mode, oldval);
23636 if (reg_overlap_mentioned_p (retval, newval))
23637 newval = copy_to_reg (newval);
23639 mem = rs6000_pre_atomic_barrier (mem, mod_s);
23641 label1 = NULL_RTX;
23642 if (!is_weak)
23644 label1 = gen_rtx_LABEL_REF (VOIDmode, gen_label_rtx ());
23645 emit_label (XEXP (label1, 0));
23647 label2 = gen_rtx_LABEL_REF (VOIDmode, gen_label_rtx ());
23649 emit_load_locked (mode, retval, mem);
23651 x = retval;
23652 if (mask)
23653 x = expand_simple_binop (SImode, AND, retval, mask,
23654 NULL_RTX, 1, OPTAB_LIB_WIDEN);
23656 cond = gen_reg_rtx (CCmode);
23657 /* If we have TImode, synthesize a comparison. */
23658 if (mode != TImode)
23659 x = gen_rtx_COMPARE (CCmode, x, oldval);
23660 else
23662 rtx xor1_result = gen_reg_rtx (DImode);
23663 rtx xor2_result = gen_reg_rtx (DImode);
23664 rtx or_result = gen_reg_rtx (DImode);
23665 rtx new_word0 = simplify_gen_subreg (DImode, x, TImode, 0);
23666 rtx new_word1 = simplify_gen_subreg (DImode, x, TImode, 8);
23667 rtx old_word0 = simplify_gen_subreg (DImode, oldval, TImode, 0);
23668 rtx old_word1 = simplify_gen_subreg (DImode, oldval, TImode, 8);
23670 emit_insn (gen_xordi3 (xor1_result, new_word0, old_word0));
23671 emit_insn (gen_xordi3 (xor2_result, new_word1, old_word1));
23672 emit_insn (gen_iordi3 (or_result, xor1_result, xor2_result));
23673 x = gen_rtx_COMPARE (CCmode, or_result, const0_rtx);
23676 emit_insn (gen_rtx_SET (cond, x));
23678 x = gen_rtx_NE (VOIDmode, cond, const0_rtx);
23679 emit_unlikely_jump (x, label2);
23681 x = newval;
23682 if (mask)
23683 x = rs6000_mask_atomic_subword (retval, newval, mask);
23685 emit_store_conditional (orig_mode, cond, mem, x);
23687 if (!is_weak)
23689 x = gen_rtx_NE (VOIDmode, cond, const0_rtx);
23690 emit_unlikely_jump (x, label1);
23693 if (!is_mm_relaxed (mod_f))
23694 emit_label (XEXP (label2, 0));
23696 rs6000_post_atomic_barrier (mod_s);
23698 if (is_mm_relaxed (mod_f))
23699 emit_label (XEXP (label2, 0));
23701 if (shift)
23702 rs6000_finish_atomic_subword (operands[1], retval, shift);
23703 else if (mode != GET_MODE (operands[1]))
23704 convert_move (operands[1], retval, 1);
23706 /* In all cases, CR0 contains EQ on success, and NE on failure. */
23707 x = gen_rtx_EQ (SImode, cond, const0_rtx);
23708 emit_insn (gen_rtx_SET (boolval, x));
23711 /* Expand an atomic exchange operation. */
23713 void
23714 rs6000_expand_atomic_exchange (rtx operands[])
23716 rtx retval, mem, val, cond;
23717 machine_mode mode;
23718 enum memmodel model;
23719 rtx label, x, mask, shift;
23721 retval = operands[0];
23722 mem = operands[1];
23723 val = operands[2];
23724 model = memmodel_base (INTVAL (operands[3]));
23725 mode = GET_MODE (mem);
23727 mask = shift = NULL_RTX;
23728 if (!TARGET_SYNC_HI_QI && (mode == QImode || mode == HImode))
23730 mem = rs6000_adjust_atomic_subword (mem, &shift, &mask);
23732 /* Shift and mask VAL into position with the word. */
23733 val = convert_modes (SImode, mode, val, 1);
23734 val = expand_simple_binop (SImode, ASHIFT, val, shift,
23735 NULL_RTX, 1, OPTAB_LIB_WIDEN);
23737 /* Prepare to adjust the return value. */
23738 retval = gen_reg_rtx (SImode);
23739 mode = SImode;
23742 mem = rs6000_pre_atomic_barrier (mem, model);
23744 label = gen_rtx_LABEL_REF (VOIDmode, gen_label_rtx ());
23745 emit_label (XEXP (label, 0));
23747 emit_load_locked (mode, retval, mem);
23749 x = val;
23750 if (mask)
23751 x = rs6000_mask_atomic_subword (retval, val, mask);
23753 cond = gen_reg_rtx (CCmode);
23754 emit_store_conditional (mode, cond, mem, x);
23756 x = gen_rtx_NE (VOIDmode, cond, const0_rtx);
23757 emit_unlikely_jump (x, label);
23759 rs6000_post_atomic_barrier (model);
23761 if (shift)
23762 rs6000_finish_atomic_subword (operands[0], retval, shift);
23765 /* Expand an atomic fetch-and-operate pattern. CODE is the binary operation
23766 to perform. MEM is the memory on which to operate. VAL is the second
23767 operand of the binary operator. BEFORE and AFTER are optional locations to
23768 return the value of MEM either before of after the operation. MODEL_RTX
23769 is a CONST_INT containing the memory model to use. */
23771 void
23772 rs6000_expand_atomic_op (enum rtx_code code, rtx mem, rtx val,
23773 rtx orig_before, rtx orig_after, rtx model_rtx)
23775 enum memmodel model = memmodel_base (INTVAL (model_rtx));
23776 machine_mode mode = GET_MODE (mem);
23777 machine_mode store_mode = mode;
23778 rtx label, x, cond, mask, shift;
23779 rtx before = orig_before, after = orig_after;
23781 mask = shift = NULL_RTX;
23782 /* On power8, we want to use SImode for the operation. On previous systems,
23783 use the operation in a subword and shift/mask to get the proper byte or
23784 halfword. */
23785 if (mode == QImode || mode == HImode)
23787 if (TARGET_SYNC_HI_QI)
23789 val = convert_modes (SImode, mode, val, 1);
23791 /* Prepare to adjust the return value. */
23792 before = gen_reg_rtx (SImode);
23793 if (after)
23794 after = gen_reg_rtx (SImode);
23795 mode = SImode;
23797 else
23799 mem = rs6000_adjust_atomic_subword (mem, &shift, &mask);
23801 /* Shift and mask VAL into position with the word. */
23802 val = convert_modes (SImode, mode, val, 1);
23803 val = expand_simple_binop (SImode, ASHIFT, val, shift,
23804 NULL_RTX, 1, OPTAB_LIB_WIDEN);
23806 switch (code)
23808 case IOR:
23809 case XOR:
23810 /* We've already zero-extended VAL. That is sufficient to
23811 make certain that it does not affect other bits. */
23812 mask = NULL;
23813 break;
23815 case AND:
23816 /* If we make certain that all of the other bits in VAL are
23817 set, that will be sufficient to not affect other bits. */
23818 x = gen_rtx_NOT (SImode, mask);
23819 x = gen_rtx_IOR (SImode, x, val);
23820 emit_insn (gen_rtx_SET (val, x));
23821 mask = NULL;
23822 break;
23824 case NOT:
23825 case PLUS:
23826 case MINUS:
23827 /* These will all affect bits outside the field and need
23828 adjustment via MASK within the loop. */
23829 break;
23831 default:
23832 gcc_unreachable ();
23835 /* Prepare to adjust the return value. */
23836 before = gen_reg_rtx (SImode);
23837 if (after)
23838 after = gen_reg_rtx (SImode);
23839 store_mode = mode = SImode;
23843 mem = rs6000_pre_atomic_barrier (mem, model);
23845 label = gen_label_rtx ();
23846 emit_label (label);
23847 label = gen_rtx_LABEL_REF (VOIDmode, label);
23849 if (before == NULL_RTX)
23850 before = gen_reg_rtx (mode);
23852 emit_load_locked (mode, before, mem);
23854 if (code == NOT)
23856 x = expand_simple_binop (mode, AND, before, val,
23857 NULL_RTX, 1, OPTAB_LIB_WIDEN);
23858 after = expand_simple_unop (mode, NOT, x, after, 1);
23860 else
23862 after = expand_simple_binop (mode, code, before, val,
23863 after, 1, OPTAB_LIB_WIDEN);
23866 x = after;
23867 if (mask)
23869 x = expand_simple_binop (SImode, AND, after, mask,
23870 NULL_RTX, 1, OPTAB_LIB_WIDEN);
23871 x = rs6000_mask_atomic_subword (before, x, mask);
23873 else if (store_mode != mode)
23874 x = convert_modes (store_mode, mode, x, 1);
23876 cond = gen_reg_rtx (CCmode);
23877 emit_store_conditional (store_mode, cond, mem, x);
23879 x = gen_rtx_NE (VOIDmode, cond, const0_rtx);
23880 emit_unlikely_jump (x, label);
23882 rs6000_post_atomic_barrier (model);
23884 if (shift)
23886 /* QImode/HImode on machines without lbarx/lharx where we do a lwarx and
23887 then do the calcuations in a SImode register. */
23888 if (orig_before)
23889 rs6000_finish_atomic_subword (orig_before, before, shift);
23890 if (orig_after)
23891 rs6000_finish_atomic_subword (orig_after, after, shift);
23893 else if (store_mode != mode)
23895 /* QImode/HImode on machines with lbarx/lharx where we do the native
23896 operation and then do the calcuations in a SImode register. */
23897 if (orig_before)
23898 convert_move (orig_before, before, 1);
23899 if (orig_after)
23900 convert_move (orig_after, after, 1);
23902 else if (orig_after && after != orig_after)
23903 emit_move_insn (orig_after, after);
23906 /* Emit instructions to move SRC to DST. Called by splitters for
23907 multi-register moves. It will emit at most one instruction for
23908 each register that is accessed; that is, it won't emit li/lis pairs
23909 (or equivalent for 64-bit code). One of SRC or DST must be a hard
23910 register. */
23912 void
23913 rs6000_split_multireg_move (rtx dst, rtx src)
23915 /* The register number of the first register being moved. */
23916 int reg;
23917 /* The mode that is to be moved. */
23918 machine_mode mode;
23919 /* The mode that the move is being done in, and its size. */
23920 machine_mode reg_mode;
23921 int reg_mode_size;
23922 /* The number of registers that will be moved. */
23923 int nregs;
23925 reg = REG_P (dst) ? REGNO (dst) : REGNO (src);
23926 mode = GET_MODE (dst);
23927 nregs = hard_regno_nregs (reg, mode);
23928 if (FP_REGNO_P (reg))
23929 reg_mode = DECIMAL_FLOAT_MODE_P (mode) ? DDmode :
23930 ((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT) ? DFmode : SFmode);
23931 else if (ALTIVEC_REGNO_P (reg))
23932 reg_mode = V16QImode;
23933 else
23934 reg_mode = word_mode;
23935 reg_mode_size = GET_MODE_SIZE (reg_mode);
23937 gcc_assert (reg_mode_size * nregs == GET_MODE_SIZE (mode));
23939 /* TDmode residing in FP registers is special, since the ISA requires that
23940 the lower-numbered word of a register pair is always the most significant
23941 word, even in little-endian mode. This does not match the usual subreg
23942 semantics, so we cannnot use simplify_gen_subreg in those cases. Access
23943 the appropriate constituent registers "by hand" in little-endian mode.
23945 Note we do not need to check for destructive overlap here since TDmode
23946 can only reside in even/odd register pairs. */
23947 if (FP_REGNO_P (reg) && DECIMAL_FLOAT_MODE_P (mode) && !BYTES_BIG_ENDIAN)
23949 rtx p_src, p_dst;
23950 int i;
23952 for (i = 0; i < nregs; i++)
23954 if (REG_P (src) && FP_REGNO_P (REGNO (src)))
23955 p_src = gen_rtx_REG (reg_mode, REGNO (src) + nregs - 1 - i);
23956 else
23957 p_src = simplify_gen_subreg (reg_mode, src, mode,
23958 i * reg_mode_size);
23960 if (REG_P (dst) && FP_REGNO_P (REGNO (dst)))
23961 p_dst = gen_rtx_REG (reg_mode, REGNO (dst) + nregs - 1 - i);
23962 else
23963 p_dst = simplify_gen_subreg (reg_mode, dst, mode,
23964 i * reg_mode_size);
23966 emit_insn (gen_rtx_SET (p_dst, p_src));
23969 return;
23972 if (REG_P (src) && REG_P (dst) && (REGNO (src) < REGNO (dst)))
23974 /* Move register range backwards, if we might have destructive
23975 overlap. */
23976 int i;
23977 for (i = nregs - 1; i >= 0; i--)
23978 emit_insn (gen_rtx_SET (simplify_gen_subreg (reg_mode, dst, mode,
23979 i * reg_mode_size),
23980 simplify_gen_subreg (reg_mode, src, mode,
23981 i * reg_mode_size)));
23983 else
23985 int i;
23986 int j = -1;
23987 bool used_update = false;
23988 rtx restore_basereg = NULL_RTX;
23990 if (MEM_P (src) && INT_REGNO_P (reg))
23992 rtx breg;
23994 if (GET_CODE (XEXP (src, 0)) == PRE_INC
23995 || GET_CODE (XEXP (src, 0)) == PRE_DEC)
23997 rtx delta_rtx;
23998 breg = XEXP (XEXP (src, 0), 0);
23999 delta_rtx = (GET_CODE (XEXP (src, 0)) == PRE_INC
24000 ? GEN_INT (GET_MODE_SIZE (GET_MODE (src)))
24001 : GEN_INT (-GET_MODE_SIZE (GET_MODE (src))));
24002 emit_insn (gen_add3_insn (breg, breg, delta_rtx));
24003 src = replace_equiv_address (src, breg);
24005 else if (! rs6000_offsettable_memref_p (src, reg_mode))
24007 if (GET_CODE (XEXP (src, 0)) == PRE_MODIFY)
24009 rtx basereg = XEXP (XEXP (src, 0), 0);
24010 if (TARGET_UPDATE)
24012 rtx ndst = simplify_gen_subreg (reg_mode, dst, mode, 0);
24013 emit_insn (gen_rtx_SET (ndst,
24014 gen_rtx_MEM (reg_mode,
24015 XEXP (src, 0))));
24016 used_update = true;
24018 else
24019 emit_insn (gen_rtx_SET (basereg,
24020 XEXP (XEXP (src, 0), 1)));
24021 src = replace_equiv_address (src, basereg);
24023 else
24025 rtx basereg = gen_rtx_REG (Pmode, reg);
24026 emit_insn (gen_rtx_SET (basereg, XEXP (src, 0)));
24027 src = replace_equiv_address (src, basereg);
24031 breg = XEXP (src, 0);
24032 if (GET_CODE (breg) == PLUS || GET_CODE (breg) == LO_SUM)
24033 breg = XEXP (breg, 0);
24035 /* If the base register we are using to address memory is
24036 also a destination reg, then change that register last. */
24037 if (REG_P (breg)
24038 && REGNO (breg) >= REGNO (dst)
24039 && REGNO (breg) < REGNO (dst) + nregs)
24040 j = REGNO (breg) - REGNO (dst);
24042 else if (MEM_P (dst) && INT_REGNO_P (reg))
24044 rtx breg;
24046 if (GET_CODE (XEXP (dst, 0)) == PRE_INC
24047 || GET_CODE (XEXP (dst, 0)) == PRE_DEC)
24049 rtx delta_rtx;
24050 breg = XEXP (XEXP (dst, 0), 0);
24051 delta_rtx = (GET_CODE (XEXP (dst, 0)) == PRE_INC
24052 ? GEN_INT (GET_MODE_SIZE (GET_MODE (dst)))
24053 : GEN_INT (-GET_MODE_SIZE (GET_MODE (dst))));
24055 /* We have to update the breg before doing the store.
24056 Use store with update, if available. */
24058 if (TARGET_UPDATE)
24060 rtx nsrc = simplify_gen_subreg (reg_mode, src, mode, 0);
24061 emit_insn (TARGET_32BIT
24062 ? (TARGET_POWERPC64
24063 ? gen_movdi_si_update (breg, breg, delta_rtx, nsrc)
24064 : gen_movsi_update (breg, breg, delta_rtx, nsrc))
24065 : gen_movdi_di_update (breg, breg, delta_rtx, nsrc));
24066 used_update = true;
24068 else
24069 emit_insn (gen_add3_insn (breg, breg, delta_rtx));
24070 dst = replace_equiv_address (dst, breg);
24072 else if (!rs6000_offsettable_memref_p (dst, reg_mode)
24073 && GET_CODE (XEXP (dst, 0)) != LO_SUM)
24075 if (GET_CODE (XEXP (dst, 0)) == PRE_MODIFY)
24077 rtx basereg = XEXP (XEXP (dst, 0), 0);
24078 if (TARGET_UPDATE)
24080 rtx nsrc = simplify_gen_subreg (reg_mode, src, mode, 0);
24081 emit_insn (gen_rtx_SET (gen_rtx_MEM (reg_mode,
24082 XEXP (dst, 0)),
24083 nsrc));
24084 used_update = true;
24086 else
24087 emit_insn (gen_rtx_SET (basereg,
24088 XEXP (XEXP (dst, 0), 1)));
24089 dst = replace_equiv_address (dst, basereg);
24091 else
24093 rtx basereg = XEXP (XEXP (dst, 0), 0);
24094 rtx offsetreg = XEXP (XEXP (dst, 0), 1);
24095 gcc_assert (GET_CODE (XEXP (dst, 0)) == PLUS
24096 && REG_P (basereg)
24097 && REG_P (offsetreg)
24098 && REGNO (basereg) != REGNO (offsetreg));
24099 if (REGNO (basereg) == 0)
24101 rtx tmp = offsetreg;
24102 offsetreg = basereg;
24103 basereg = tmp;
24105 emit_insn (gen_add3_insn (basereg, basereg, offsetreg));
24106 restore_basereg = gen_sub3_insn (basereg, basereg, offsetreg);
24107 dst = replace_equiv_address (dst, basereg);
24110 else if (GET_CODE (XEXP (dst, 0)) != LO_SUM)
24111 gcc_assert (rs6000_offsettable_memref_p (dst, reg_mode));
24114 for (i = 0; i < nregs; i++)
24116 /* Calculate index to next subword. */
24117 ++j;
24118 if (j == nregs)
24119 j = 0;
24121 /* If compiler already emitted move of first word by
24122 store with update, no need to do anything. */
24123 if (j == 0 && used_update)
24124 continue;
24126 emit_insn (gen_rtx_SET (simplify_gen_subreg (reg_mode, dst, mode,
24127 j * reg_mode_size),
24128 simplify_gen_subreg (reg_mode, src, mode,
24129 j * reg_mode_size)));
24131 if (restore_basereg != NULL_RTX)
24132 emit_insn (restore_basereg);
24137 /* This page contains routines that are used to determine what the
24138 function prologue and epilogue code will do and write them out. */
24140 /* Determine whether the REG is really used. */
24142 static bool
24143 save_reg_p (int reg)
24145 /* We need to mark the PIC offset register live for the same conditions
24146 as it is set up, or otherwise it won't be saved before we clobber it. */
24148 if (reg == RS6000_PIC_OFFSET_TABLE_REGNUM && !TARGET_SINGLE_PIC_BASE)
24150 /* When calling eh_return, we must return true for all the cases
24151 where conditional_register_usage marks the PIC offset reg
24152 call used. */
24153 if (TARGET_TOC && TARGET_MINIMAL_TOC
24154 && (crtl->calls_eh_return
24155 || df_regs_ever_live_p (reg)
24156 || !constant_pool_empty_p ()))
24157 return true;
24159 if ((DEFAULT_ABI == ABI_V4 || DEFAULT_ABI == ABI_DARWIN)
24160 && flag_pic)
24161 return true;
24164 return !call_used_regs[reg] && df_regs_ever_live_p (reg);
24167 /* Return the first fixed-point register that is required to be
24168 saved. 32 if none. */
24171 first_reg_to_save (void)
24173 int first_reg;
24175 /* Find lowest numbered live register. */
24176 for (first_reg = 13; first_reg <= 31; first_reg++)
24177 if (save_reg_p (first_reg))
24178 break;
24180 #if TARGET_MACHO
24181 if (flag_pic
24182 && crtl->uses_pic_offset_table
24183 && first_reg > RS6000_PIC_OFFSET_TABLE_REGNUM)
24184 return RS6000_PIC_OFFSET_TABLE_REGNUM;
24185 #endif
24187 return first_reg;
24190 /* Similar, for FP regs. */
24193 first_fp_reg_to_save (void)
24195 int first_reg;
24197 /* Find lowest numbered live register. */
24198 for (first_reg = 14 + 32; first_reg <= 63; first_reg++)
24199 if (save_reg_p (first_reg))
24200 break;
24202 return first_reg;
24205 /* Similar, for AltiVec regs. */
24207 static int
24208 first_altivec_reg_to_save (void)
24210 int i;
24212 /* Stack frame remains as is unless we are in AltiVec ABI. */
24213 if (! TARGET_ALTIVEC_ABI)
24214 return LAST_ALTIVEC_REGNO + 1;
24216 /* On Darwin, the unwind routines are compiled without
24217 TARGET_ALTIVEC, and use save_world to save/restore the
24218 altivec registers when necessary. */
24219 if (DEFAULT_ABI == ABI_DARWIN && crtl->calls_eh_return
24220 && ! TARGET_ALTIVEC)
24221 return FIRST_ALTIVEC_REGNO + 20;
24223 /* Find lowest numbered live register. */
24224 for (i = FIRST_ALTIVEC_REGNO + 20; i <= LAST_ALTIVEC_REGNO; ++i)
24225 if (save_reg_p (i))
24226 break;
24228 return i;
24231 /* Return a 32-bit mask of the AltiVec registers we need to set in
24232 VRSAVE. Bit n of the return value is 1 if Vn is live. The MSB in
24233 the 32-bit word is 0. */
24235 static unsigned int
24236 compute_vrsave_mask (void)
24238 unsigned int i, mask = 0;
24240 /* On Darwin, the unwind routines are compiled without
24241 TARGET_ALTIVEC, and use save_world to save/restore the
24242 call-saved altivec registers when necessary. */
24243 if (DEFAULT_ABI == ABI_DARWIN && crtl->calls_eh_return
24244 && ! TARGET_ALTIVEC)
24245 mask |= 0xFFF;
24247 /* First, find out if we use _any_ altivec registers. */
24248 for (i = FIRST_ALTIVEC_REGNO; i <= LAST_ALTIVEC_REGNO; ++i)
24249 if (df_regs_ever_live_p (i))
24250 mask |= ALTIVEC_REG_BIT (i);
24252 if (mask == 0)
24253 return mask;
24255 /* Next, remove the argument registers from the set. These must
24256 be in the VRSAVE mask set by the caller, so we don't need to add
24257 them in again. More importantly, the mask we compute here is
24258 used to generate CLOBBERs in the set_vrsave insn, and we do not
24259 wish the argument registers to die. */
24260 for (i = ALTIVEC_ARG_MIN_REG; i < (unsigned) crtl->args.info.vregno; i++)
24261 mask &= ~ALTIVEC_REG_BIT (i);
24263 /* Similarly, remove the return value from the set. */
24265 bool yes = false;
24266 diddle_return_value (is_altivec_return_reg, &yes);
24267 if (yes)
24268 mask &= ~ALTIVEC_REG_BIT (ALTIVEC_ARG_RETURN);
24271 return mask;
24274 /* For a very restricted set of circumstances, we can cut down the
24275 size of prologues/epilogues by calling our own save/restore-the-world
24276 routines. */
24278 static void
24279 compute_save_world_info (rs6000_stack_t *info)
24281 info->world_save_p = 1;
24282 info->world_save_p
24283 = (WORLD_SAVE_P (info)
24284 && DEFAULT_ABI == ABI_DARWIN
24285 && !cfun->has_nonlocal_label
24286 && info->first_fp_reg_save == FIRST_SAVED_FP_REGNO
24287 && info->first_gp_reg_save == FIRST_SAVED_GP_REGNO
24288 && info->first_altivec_reg_save == FIRST_SAVED_ALTIVEC_REGNO
24289 && info->cr_save_p);
24291 /* This will not work in conjunction with sibcalls. Make sure there
24292 are none. (This check is expensive, but seldom executed.) */
24293 if (WORLD_SAVE_P (info))
24295 rtx_insn *insn;
24296 for (insn = get_last_insn_anywhere (); insn; insn = PREV_INSN (insn))
24297 if (CALL_P (insn) && SIBLING_CALL_P (insn))
24299 info->world_save_p = 0;
24300 break;
24304 if (WORLD_SAVE_P (info))
24306 /* Even if we're not touching VRsave, make sure there's room on the
24307 stack for it, if it looks like we're calling SAVE_WORLD, which
24308 will attempt to save it. */
24309 info->vrsave_size = 4;
24311 /* If we are going to save the world, we need to save the link register too. */
24312 info->lr_save_p = 1;
24314 /* "Save" the VRsave register too if we're saving the world. */
24315 if (info->vrsave_mask == 0)
24316 info->vrsave_mask = compute_vrsave_mask ();
24318 /* Because the Darwin register save/restore routines only handle
24319 F14 .. F31 and V20 .. V31 as per the ABI, perform a consistency
24320 check. */
24321 gcc_assert (info->first_fp_reg_save >= FIRST_SAVED_FP_REGNO
24322 && (info->first_altivec_reg_save
24323 >= FIRST_SAVED_ALTIVEC_REGNO));
24326 return;
24330 static void
24331 is_altivec_return_reg (rtx reg, void *xyes)
24333 bool *yes = (bool *) xyes;
24334 if (REGNO (reg) == ALTIVEC_ARG_RETURN)
24335 *yes = true;
24339 /* Return whether REG is a global user reg or has been specifed by
24340 -ffixed-REG. We should not restore these, and so cannot use
24341 lmw or out-of-line restore functions if there are any. We also
24342 can't save them (well, emit frame notes for them), because frame
24343 unwinding during exception handling will restore saved registers. */
24345 static bool
24346 fixed_reg_p (int reg)
24348 /* Ignore fixed_regs[RS6000_PIC_OFFSET_TABLE_REGNUM] when the
24349 backend sets it, overriding anything the user might have given. */
24350 if (reg == RS6000_PIC_OFFSET_TABLE_REGNUM
24351 && ((DEFAULT_ABI == ABI_V4 && flag_pic)
24352 || (DEFAULT_ABI == ABI_DARWIN && flag_pic)
24353 || (TARGET_TOC && TARGET_MINIMAL_TOC)))
24354 return false;
24356 return fixed_regs[reg];
24359 /* Determine the strategy for savings/restoring registers. */
24361 enum {
24362 SAVE_MULTIPLE = 0x1,
24363 SAVE_INLINE_GPRS = 0x2,
24364 SAVE_INLINE_FPRS = 0x4,
24365 SAVE_NOINLINE_GPRS_SAVES_LR = 0x8,
24366 SAVE_NOINLINE_FPRS_SAVES_LR = 0x10,
24367 SAVE_INLINE_VRS = 0x20,
24368 REST_MULTIPLE = 0x100,
24369 REST_INLINE_GPRS = 0x200,
24370 REST_INLINE_FPRS = 0x400,
24371 REST_NOINLINE_FPRS_DOESNT_RESTORE_LR = 0x800,
24372 REST_INLINE_VRS = 0x1000
24375 static int
24376 rs6000_savres_strategy (rs6000_stack_t *info,
24377 bool using_static_chain_p)
24379 int strategy = 0;
24381 /* Select between in-line and out-of-line save and restore of regs.
24382 First, all the obvious cases where we don't use out-of-line. */
24383 if (crtl->calls_eh_return
24384 || cfun->machine->ra_need_lr)
24385 strategy |= (SAVE_INLINE_FPRS | REST_INLINE_FPRS
24386 | SAVE_INLINE_GPRS | REST_INLINE_GPRS
24387 | SAVE_INLINE_VRS | REST_INLINE_VRS);
24389 if (info->first_gp_reg_save == 32)
24390 strategy |= SAVE_INLINE_GPRS | REST_INLINE_GPRS;
24392 if (info->first_fp_reg_save == 64
24393 /* The out-of-line FP routines use double-precision stores;
24394 we can't use those routines if we don't have such stores. */
24395 || (TARGET_HARD_FLOAT && !TARGET_DOUBLE_FLOAT))
24396 strategy |= SAVE_INLINE_FPRS | REST_INLINE_FPRS;
24398 if (info->first_altivec_reg_save == LAST_ALTIVEC_REGNO + 1)
24399 strategy |= SAVE_INLINE_VRS | REST_INLINE_VRS;
24401 /* Define cutoff for using out-of-line functions to save registers. */
24402 if (DEFAULT_ABI == ABI_V4 || TARGET_ELF)
24404 if (!optimize_size)
24406 strategy |= SAVE_INLINE_FPRS | REST_INLINE_FPRS;
24407 strategy |= SAVE_INLINE_GPRS | REST_INLINE_GPRS;
24408 strategy |= SAVE_INLINE_VRS | REST_INLINE_VRS;
24410 else
24412 /* Prefer out-of-line restore if it will exit. */
24413 if (info->first_fp_reg_save > 61)
24414 strategy |= SAVE_INLINE_FPRS;
24415 if (info->first_gp_reg_save > 29)
24417 if (info->first_fp_reg_save == 64)
24418 strategy |= SAVE_INLINE_GPRS;
24419 else
24420 strategy |= SAVE_INLINE_GPRS | REST_INLINE_GPRS;
24422 if (info->first_altivec_reg_save == LAST_ALTIVEC_REGNO)
24423 strategy |= SAVE_INLINE_VRS | REST_INLINE_VRS;
24426 else if (DEFAULT_ABI == ABI_DARWIN)
24428 if (info->first_fp_reg_save > 60)
24429 strategy |= SAVE_INLINE_FPRS | REST_INLINE_FPRS;
24430 if (info->first_gp_reg_save > 29)
24431 strategy |= SAVE_INLINE_GPRS | REST_INLINE_GPRS;
24432 strategy |= SAVE_INLINE_VRS | REST_INLINE_VRS;
24434 else
24436 gcc_checking_assert (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2);
24437 if ((flag_shrink_wrap_separate && optimize_function_for_speed_p (cfun))
24438 || info->first_fp_reg_save > 61)
24439 strategy |= SAVE_INLINE_FPRS | REST_INLINE_FPRS;
24440 strategy |= SAVE_INLINE_GPRS | REST_INLINE_GPRS;
24441 strategy |= SAVE_INLINE_VRS | REST_INLINE_VRS;
24444 /* Don't bother to try to save things out-of-line if r11 is occupied
24445 by the static chain. It would require too much fiddling and the
24446 static chain is rarely used anyway. FPRs are saved w.r.t the stack
24447 pointer on Darwin, and AIX uses r1 or r12. */
24448 if (using_static_chain_p
24449 && (DEFAULT_ABI == ABI_V4 || DEFAULT_ABI == ABI_DARWIN))
24450 strategy |= ((DEFAULT_ABI == ABI_DARWIN ? 0 : SAVE_INLINE_FPRS)
24451 | SAVE_INLINE_GPRS
24452 | SAVE_INLINE_VRS);
24454 /* Don't ever restore fixed regs. That means we can't use the
24455 out-of-line register restore functions if a fixed reg is in the
24456 range of regs restored. */
24457 if (!(strategy & REST_INLINE_FPRS))
24458 for (int i = info->first_fp_reg_save; i < 64; i++)
24459 if (fixed_regs[i])
24461 strategy |= REST_INLINE_FPRS;
24462 break;
24465 /* We can only use the out-of-line routines to restore fprs if we've
24466 saved all the registers from first_fp_reg_save in the prologue.
24467 Otherwise, we risk loading garbage. Of course, if we have saved
24468 out-of-line then we know we haven't skipped any fprs. */
24469 if ((strategy & SAVE_INLINE_FPRS)
24470 && !(strategy & REST_INLINE_FPRS))
24471 for (int i = info->first_fp_reg_save; i < 64; i++)
24472 if (!save_reg_p (i))
24474 strategy |= REST_INLINE_FPRS;
24475 break;
24478 /* Similarly, for altivec regs. */
24479 if (!(strategy & REST_INLINE_VRS))
24480 for (int i = info->first_altivec_reg_save; i < LAST_ALTIVEC_REGNO + 1; i++)
24481 if (fixed_regs[i])
24483 strategy |= REST_INLINE_VRS;
24484 break;
24487 if ((strategy & SAVE_INLINE_VRS)
24488 && !(strategy & REST_INLINE_VRS))
24489 for (int i = info->first_altivec_reg_save; i < LAST_ALTIVEC_REGNO + 1; i++)
24490 if (!save_reg_p (i))
24492 strategy |= REST_INLINE_VRS;
24493 break;
24496 /* info->lr_save_p isn't yet set if the only reason lr needs to be
24497 saved is an out-of-line save or restore. Set up the value for
24498 the next test (excluding out-of-line gprs). */
24499 bool lr_save_p = (info->lr_save_p
24500 || !(strategy & SAVE_INLINE_FPRS)
24501 || !(strategy & SAVE_INLINE_VRS)
24502 || !(strategy & REST_INLINE_FPRS)
24503 || !(strategy & REST_INLINE_VRS));
24505 if (TARGET_MULTIPLE
24506 && !TARGET_POWERPC64
24507 && info->first_gp_reg_save < 31
24508 && !(flag_shrink_wrap
24509 && flag_shrink_wrap_separate
24510 && optimize_function_for_speed_p (cfun)))
24512 int count = 0;
24513 for (int i = info->first_gp_reg_save; i < 32; i++)
24514 if (save_reg_p (i))
24515 count++;
24517 if (count <= 1)
24518 /* Don't use store multiple if only one reg needs to be
24519 saved. This can occur for example when the ABI_V4 pic reg
24520 (r30) needs to be saved to make calls, but r31 is not
24521 used. */
24522 strategy |= SAVE_INLINE_GPRS | REST_INLINE_GPRS;
24523 else
24525 /* Prefer store multiple for saves over out-of-line
24526 routines, since the store-multiple instruction will
24527 always be smaller. */
24528 strategy |= SAVE_INLINE_GPRS | SAVE_MULTIPLE;
24530 /* The situation is more complicated with load multiple.
24531 We'd prefer to use the out-of-line routines for restores,
24532 since the "exit" out-of-line routines can handle the
24533 restore of LR and the frame teardown. However if doesn't
24534 make sense to use the out-of-line routine if that is the
24535 only reason we'd need to save LR, and we can't use the
24536 "exit" out-of-line gpr restore if we have saved some
24537 fprs; In those cases it is advantageous to use load
24538 multiple when available. */
24539 if (info->first_fp_reg_save != 64 || !lr_save_p)
24540 strategy |= REST_INLINE_GPRS | REST_MULTIPLE;
24544 /* Using the "exit" out-of-line routine does not improve code size
24545 if using it would require lr to be saved and if only saving one
24546 or two gprs. */
24547 else if (!lr_save_p && info->first_gp_reg_save > 29)
24548 strategy |= SAVE_INLINE_GPRS | REST_INLINE_GPRS;
24550 /* Don't ever restore fixed regs. */
24551 if ((strategy & (REST_INLINE_GPRS | REST_MULTIPLE)) != REST_INLINE_GPRS)
24552 for (int i = info->first_gp_reg_save; i < 32; i++)
24553 if (fixed_reg_p (i))
24555 strategy |= REST_INLINE_GPRS;
24556 strategy &= ~REST_MULTIPLE;
24557 break;
24560 /* We can only use load multiple or the out-of-line routines to
24561 restore gprs if we've saved all the registers from
24562 first_gp_reg_save. Otherwise, we risk loading garbage.
24563 Of course, if we have saved out-of-line or used stmw then we know
24564 we haven't skipped any gprs. */
24565 if ((strategy & (SAVE_INLINE_GPRS | SAVE_MULTIPLE)) == SAVE_INLINE_GPRS
24566 && (strategy & (REST_INLINE_GPRS | REST_MULTIPLE)) != REST_INLINE_GPRS)
24567 for (int i = info->first_gp_reg_save; i < 32; i++)
24568 if (!save_reg_p (i))
24570 strategy |= REST_INLINE_GPRS;
24571 strategy &= ~REST_MULTIPLE;
24572 break;
24575 if (TARGET_ELF && TARGET_64BIT)
24577 if (!(strategy & SAVE_INLINE_FPRS))
24578 strategy |= SAVE_NOINLINE_FPRS_SAVES_LR;
24579 else if (!(strategy & SAVE_INLINE_GPRS)
24580 && info->first_fp_reg_save == 64)
24581 strategy |= SAVE_NOINLINE_GPRS_SAVES_LR;
24583 else if (TARGET_AIX && !(strategy & REST_INLINE_FPRS))
24584 strategy |= REST_NOINLINE_FPRS_DOESNT_RESTORE_LR;
24586 if (TARGET_MACHO && !(strategy & SAVE_INLINE_FPRS))
24587 strategy |= SAVE_NOINLINE_FPRS_SAVES_LR;
24589 return strategy;
24592 /* Calculate the stack information for the current function. This is
24593 complicated by having two separate calling sequences, the AIX calling
24594 sequence and the V.4 calling sequence.
24596 AIX (and Darwin/Mac OS X) stack frames look like:
24597 32-bit 64-bit
24598 SP----> +---------------------------------------+
24599 | back chain to caller | 0 0
24600 +---------------------------------------+
24601 | saved CR | 4 8 (8-11)
24602 +---------------------------------------+
24603 | saved LR | 8 16
24604 +---------------------------------------+
24605 | reserved for compilers | 12 24
24606 +---------------------------------------+
24607 | reserved for binders | 16 32
24608 +---------------------------------------+
24609 | saved TOC pointer | 20 40
24610 +---------------------------------------+
24611 | Parameter save area (+padding*) (P) | 24 48
24612 +---------------------------------------+
24613 | Alloca space (A) | 24+P etc.
24614 +---------------------------------------+
24615 | Local variable space (L) | 24+P+A
24616 +---------------------------------------+
24617 | Float/int conversion temporary (X) | 24+P+A+L
24618 +---------------------------------------+
24619 | Save area for AltiVec registers (W) | 24+P+A+L+X
24620 +---------------------------------------+
24621 | AltiVec alignment padding (Y) | 24+P+A+L+X+W
24622 +---------------------------------------+
24623 | Save area for VRSAVE register (Z) | 24+P+A+L+X+W+Y
24624 +---------------------------------------+
24625 | Save area for GP registers (G) | 24+P+A+X+L+X+W+Y+Z
24626 +---------------------------------------+
24627 | Save area for FP registers (F) | 24+P+A+X+L+X+W+Y+Z+G
24628 +---------------------------------------+
24629 old SP->| back chain to caller's caller |
24630 +---------------------------------------+
24632 * If the alloca area is present, the parameter save area is
24633 padded so that the former starts 16-byte aligned.
24635 The required alignment for AIX configurations is two words (i.e., 8
24636 or 16 bytes).
24638 The ELFv2 ABI is a variant of the AIX ABI. Stack frames look like:
24640 SP----> +---------------------------------------+
24641 | Back chain to caller | 0
24642 +---------------------------------------+
24643 | Save area for CR | 8
24644 +---------------------------------------+
24645 | Saved LR | 16
24646 +---------------------------------------+
24647 | Saved TOC pointer | 24
24648 +---------------------------------------+
24649 | Parameter save area (+padding*) (P) | 32
24650 +---------------------------------------+
24651 | Alloca space (A) | 32+P
24652 +---------------------------------------+
24653 | Local variable space (L) | 32+P+A
24654 +---------------------------------------+
24655 | Save area for AltiVec registers (W) | 32+P+A+L
24656 +---------------------------------------+
24657 | AltiVec alignment padding (Y) | 32+P+A+L+W
24658 +---------------------------------------+
24659 | Save area for GP registers (G) | 32+P+A+L+W+Y
24660 +---------------------------------------+
24661 | Save area for FP registers (F) | 32+P+A+L+W+Y+G
24662 +---------------------------------------+
24663 old SP->| back chain to caller's caller | 32+P+A+L+W+Y+G+F
24664 +---------------------------------------+
24666 * If the alloca area is present, the parameter save area is
24667 padded so that the former starts 16-byte aligned.
24669 V.4 stack frames look like:
24671 SP----> +---------------------------------------+
24672 | back chain to caller | 0
24673 +---------------------------------------+
24674 | caller's saved LR | 4
24675 +---------------------------------------+
24676 | Parameter save area (+padding*) (P) | 8
24677 +---------------------------------------+
24678 | Alloca space (A) | 8+P
24679 +---------------------------------------+
24680 | Varargs save area (V) | 8+P+A
24681 +---------------------------------------+
24682 | Local variable space (L) | 8+P+A+V
24683 +---------------------------------------+
24684 | Float/int conversion temporary (X) | 8+P+A+V+L
24685 +---------------------------------------+
24686 | Save area for AltiVec registers (W) | 8+P+A+V+L+X
24687 +---------------------------------------+
24688 | AltiVec alignment padding (Y) | 8+P+A+V+L+X+W
24689 +---------------------------------------+
24690 | Save area for VRSAVE register (Z) | 8+P+A+V+L+X+W+Y
24691 +---------------------------------------+
24692 | saved CR (C) | 8+P+A+V+L+X+W+Y+Z
24693 +---------------------------------------+
24694 | Save area for GP registers (G) | 8+P+A+V+L+X+W+Y+Z+C
24695 +---------------------------------------+
24696 | Save area for FP registers (F) | 8+P+A+V+L+X+W+Y+Z+C+G
24697 +---------------------------------------+
24698 old SP->| back chain to caller's caller |
24699 +---------------------------------------+
24701 * If the alloca area is present and the required alignment is
24702 16 bytes, the parameter save area is padded so that the
24703 alloca area starts 16-byte aligned.
24705 The required alignment for V.4 is 16 bytes, or 8 bytes if -meabi is
24706 given. (But note below and in sysv4.h that we require only 8 and
24707 may round up the size of our stack frame anyways. The historical
24708 reason is early versions of powerpc-linux which didn't properly
24709 align the stack at program startup. A happy side-effect is that
24710 -mno-eabi libraries can be used with -meabi programs.)
24712 The EABI configuration defaults to the V.4 layout. However,
24713 the stack alignment requirements may differ. If -mno-eabi is not
24714 given, the required stack alignment is 8 bytes; if -mno-eabi is
24715 given, the required alignment is 16 bytes. (But see V.4 comment
24716 above.) */
24718 #ifndef ABI_STACK_BOUNDARY
24719 #define ABI_STACK_BOUNDARY STACK_BOUNDARY
24720 #endif
24722 static rs6000_stack_t *
24723 rs6000_stack_info (void)
24725 /* We should never be called for thunks, we are not set up for that. */
24726 gcc_assert (!cfun->is_thunk);
24728 rs6000_stack_t *info = &stack_info;
24729 int reg_size = TARGET_32BIT ? 4 : 8;
24730 int ehrd_size;
24731 int ehcr_size;
24732 int save_align;
24733 int first_gp;
24734 HOST_WIDE_INT non_fixed_size;
24735 bool using_static_chain_p;
24737 if (reload_completed && info->reload_completed)
24738 return info;
24740 memset (info, 0, sizeof (*info));
24741 info->reload_completed = reload_completed;
24743 /* Select which calling sequence. */
24744 info->abi = DEFAULT_ABI;
24746 /* Calculate which registers need to be saved & save area size. */
24747 info->first_gp_reg_save = first_reg_to_save ();
24748 /* Assume that we will have to save RS6000_PIC_OFFSET_TABLE_REGNUM,
24749 even if it currently looks like we won't. Reload may need it to
24750 get at a constant; if so, it will have already created a constant
24751 pool entry for it. */
24752 if (((TARGET_TOC && TARGET_MINIMAL_TOC)
24753 || (flag_pic == 1 && DEFAULT_ABI == ABI_V4)
24754 || (flag_pic && DEFAULT_ABI == ABI_DARWIN))
24755 && crtl->uses_const_pool
24756 && info->first_gp_reg_save > RS6000_PIC_OFFSET_TABLE_REGNUM)
24757 first_gp = RS6000_PIC_OFFSET_TABLE_REGNUM;
24758 else
24759 first_gp = info->first_gp_reg_save;
24761 info->gp_size = reg_size * (32 - first_gp);
24763 info->first_fp_reg_save = first_fp_reg_to_save ();
24764 info->fp_size = 8 * (64 - info->first_fp_reg_save);
24766 info->first_altivec_reg_save = first_altivec_reg_to_save ();
24767 info->altivec_size = 16 * (LAST_ALTIVEC_REGNO + 1
24768 - info->first_altivec_reg_save);
24770 /* Does this function call anything? */
24771 info->calls_p = (!crtl->is_leaf || cfun->machine->ra_needs_full_frame);
24773 /* Determine if we need to save the condition code registers. */
24774 if (save_reg_p (CR2_REGNO)
24775 || save_reg_p (CR3_REGNO)
24776 || save_reg_p (CR4_REGNO))
24778 info->cr_save_p = 1;
24779 if (DEFAULT_ABI == ABI_V4)
24780 info->cr_size = reg_size;
24783 /* If the current function calls __builtin_eh_return, then we need
24784 to allocate stack space for registers that will hold data for
24785 the exception handler. */
24786 if (crtl->calls_eh_return)
24788 unsigned int i;
24789 for (i = 0; EH_RETURN_DATA_REGNO (i) != INVALID_REGNUM; ++i)
24790 continue;
24792 ehrd_size = i * UNITS_PER_WORD;
24794 else
24795 ehrd_size = 0;
24797 /* In the ELFv2 ABI, we also need to allocate space for separate
24798 CR field save areas if the function calls __builtin_eh_return. */
24799 if (DEFAULT_ABI == ABI_ELFv2 && crtl->calls_eh_return)
24801 /* This hard-codes that we have three call-saved CR fields. */
24802 ehcr_size = 3 * reg_size;
24803 /* We do *not* use the regular CR save mechanism. */
24804 info->cr_save_p = 0;
24806 else
24807 ehcr_size = 0;
24809 /* Determine various sizes. */
24810 info->reg_size = reg_size;
24811 info->fixed_size = RS6000_SAVE_AREA;
24812 info->vars_size = RS6000_ALIGN (get_frame_size (), 8);
24813 if (cfun->calls_alloca)
24814 info->parm_size =
24815 RS6000_ALIGN (crtl->outgoing_args_size + info->fixed_size,
24816 STACK_BOUNDARY / BITS_PER_UNIT) - info->fixed_size;
24817 else
24818 info->parm_size = RS6000_ALIGN (crtl->outgoing_args_size,
24819 TARGET_ALTIVEC ? 16 : 8);
24820 if (FRAME_GROWS_DOWNWARD)
24821 info->vars_size
24822 += RS6000_ALIGN (info->fixed_size + info->vars_size + info->parm_size,
24823 ABI_STACK_BOUNDARY / BITS_PER_UNIT)
24824 - (info->fixed_size + info->vars_size + info->parm_size);
24826 if (TARGET_ALTIVEC_ABI)
24827 info->vrsave_mask = compute_vrsave_mask ();
24829 if (TARGET_ALTIVEC_VRSAVE && info->vrsave_mask)
24830 info->vrsave_size = 4;
24832 compute_save_world_info (info);
24834 /* Calculate the offsets. */
24835 switch (DEFAULT_ABI)
24837 case ABI_NONE:
24838 default:
24839 gcc_unreachable ();
24841 case ABI_AIX:
24842 case ABI_ELFv2:
24843 case ABI_DARWIN:
24844 info->fp_save_offset = -info->fp_size;
24845 info->gp_save_offset = info->fp_save_offset - info->gp_size;
24847 if (TARGET_ALTIVEC_ABI)
24849 info->vrsave_save_offset = info->gp_save_offset - info->vrsave_size;
24851 /* Align stack so vector save area is on a quadword boundary.
24852 The padding goes above the vectors. */
24853 if (info->altivec_size != 0)
24854 info->altivec_padding_size = info->vrsave_save_offset & 0xF;
24856 info->altivec_save_offset = info->vrsave_save_offset
24857 - info->altivec_padding_size
24858 - info->altivec_size;
24859 gcc_assert (info->altivec_size == 0
24860 || info->altivec_save_offset % 16 == 0);
24862 /* Adjust for AltiVec case. */
24863 info->ehrd_offset = info->altivec_save_offset - ehrd_size;
24865 else
24866 info->ehrd_offset = info->gp_save_offset - ehrd_size;
24868 info->ehcr_offset = info->ehrd_offset - ehcr_size;
24869 info->cr_save_offset = reg_size; /* first word when 64-bit. */
24870 info->lr_save_offset = 2*reg_size;
24871 break;
24873 case ABI_V4:
24874 info->fp_save_offset = -info->fp_size;
24875 info->gp_save_offset = info->fp_save_offset - info->gp_size;
24876 info->cr_save_offset = info->gp_save_offset - info->cr_size;
24878 if (TARGET_ALTIVEC_ABI)
24880 info->vrsave_save_offset = info->cr_save_offset - info->vrsave_size;
24882 /* Align stack so vector save area is on a quadword boundary. */
24883 if (info->altivec_size != 0)
24884 info->altivec_padding_size = 16 - (-info->vrsave_save_offset % 16);
24886 info->altivec_save_offset = info->vrsave_save_offset
24887 - info->altivec_padding_size
24888 - info->altivec_size;
24890 /* Adjust for AltiVec case. */
24891 info->ehrd_offset = info->altivec_save_offset;
24893 else
24894 info->ehrd_offset = info->cr_save_offset;
24896 info->ehrd_offset -= ehrd_size;
24897 info->lr_save_offset = reg_size;
24900 save_align = (TARGET_ALTIVEC_ABI || DEFAULT_ABI == ABI_DARWIN) ? 16 : 8;
24901 info->save_size = RS6000_ALIGN (info->fp_size
24902 + info->gp_size
24903 + info->altivec_size
24904 + info->altivec_padding_size
24905 + ehrd_size
24906 + ehcr_size
24907 + info->cr_size
24908 + info->vrsave_size,
24909 save_align);
24911 non_fixed_size = info->vars_size + info->parm_size + info->save_size;
24913 info->total_size = RS6000_ALIGN (non_fixed_size + info->fixed_size,
24914 ABI_STACK_BOUNDARY / BITS_PER_UNIT);
24916 /* Determine if we need to save the link register. */
24917 if (info->calls_p
24918 || ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
24919 && crtl->profile
24920 && !TARGET_PROFILE_KERNEL)
24921 || (DEFAULT_ABI == ABI_V4 && cfun->calls_alloca)
24922 #ifdef TARGET_RELOCATABLE
24923 || (DEFAULT_ABI == ABI_V4
24924 && (TARGET_RELOCATABLE || flag_pic > 1)
24925 && !constant_pool_empty_p ())
24926 #endif
24927 || rs6000_ra_ever_killed ())
24928 info->lr_save_p = 1;
24930 using_static_chain_p = (cfun->static_chain_decl != NULL_TREE
24931 && df_regs_ever_live_p (STATIC_CHAIN_REGNUM)
24932 && call_used_regs[STATIC_CHAIN_REGNUM]);
24933 info->savres_strategy = rs6000_savres_strategy (info, using_static_chain_p);
24935 if (!(info->savres_strategy & SAVE_INLINE_GPRS)
24936 || !(info->savres_strategy & SAVE_INLINE_FPRS)
24937 || !(info->savres_strategy & SAVE_INLINE_VRS)
24938 || !(info->savres_strategy & REST_INLINE_GPRS)
24939 || !(info->savres_strategy & REST_INLINE_FPRS)
24940 || !(info->savres_strategy & REST_INLINE_VRS))
24941 info->lr_save_p = 1;
24943 if (info->lr_save_p)
24944 df_set_regs_ever_live (LR_REGNO, true);
24946 /* Determine if we need to allocate any stack frame:
24948 For AIX we need to push the stack if a frame pointer is needed
24949 (because the stack might be dynamically adjusted), if we are
24950 debugging, if we make calls, or if the sum of fp_save, gp_save,
24951 and local variables are more than the space needed to save all
24952 non-volatile registers: 32-bit: 18*8 + 19*4 = 220 or 64-bit: 18*8
24953 + 18*8 = 288 (GPR13 reserved).
24955 For V.4 we don't have the stack cushion that AIX uses, but assume
24956 that the debugger can handle stackless frames. */
24958 if (info->calls_p)
24959 info->push_p = 1;
24961 else if (DEFAULT_ABI == ABI_V4)
24962 info->push_p = non_fixed_size != 0;
24964 else if (frame_pointer_needed)
24965 info->push_p = 1;
24967 else if (TARGET_XCOFF && write_symbols != NO_DEBUG)
24968 info->push_p = 1;
24970 else
24971 info->push_p = non_fixed_size > (TARGET_32BIT ? 220 : 288);
24973 return info;
24976 static void
24977 debug_stack_info (rs6000_stack_t *info)
24979 const char *abi_string;
24981 if (! info)
24982 info = rs6000_stack_info ();
24984 fprintf (stderr, "\nStack information for function %s:\n",
24985 ((current_function_decl && DECL_NAME (current_function_decl))
24986 ? IDENTIFIER_POINTER (DECL_NAME (current_function_decl))
24987 : "<unknown>"));
24989 switch (info->abi)
24991 default: abi_string = "Unknown"; break;
24992 case ABI_NONE: abi_string = "NONE"; break;
24993 case ABI_AIX: abi_string = "AIX"; break;
24994 case ABI_ELFv2: abi_string = "ELFv2"; break;
24995 case ABI_DARWIN: abi_string = "Darwin"; break;
24996 case ABI_V4: abi_string = "V.4"; break;
24999 fprintf (stderr, "\tABI = %5s\n", abi_string);
25001 if (TARGET_ALTIVEC_ABI)
25002 fprintf (stderr, "\tALTIVEC ABI extensions enabled.\n");
25004 if (info->first_gp_reg_save != 32)
25005 fprintf (stderr, "\tfirst_gp_reg_save = %5d\n", info->first_gp_reg_save);
25007 if (info->first_fp_reg_save != 64)
25008 fprintf (stderr, "\tfirst_fp_reg_save = %5d\n", info->first_fp_reg_save);
25010 if (info->first_altivec_reg_save <= LAST_ALTIVEC_REGNO)
25011 fprintf (stderr, "\tfirst_altivec_reg_save = %5d\n",
25012 info->first_altivec_reg_save);
25014 if (info->lr_save_p)
25015 fprintf (stderr, "\tlr_save_p = %5d\n", info->lr_save_p);
25017 if (info->cr_save_p)
25018 fprintf (stderr, "\tcr_save_p = %5d\n", info->cr_save_p);
25020 if (info->vrsave_mask)
25021 fprintf (stderr, "\tvrsave_mask = 0x%x\n", info->vrsave_mask);
25023 if (info->push_p)
25024 fprintf (stderr, "\tpush_p = %5d\n", info->push_p);
25026 if (info->calls_p)
25027 fprintf (stderr, "\tcalls_p = %5d\n", info->calls_p);
25029 if (info->gp_size)
25030 fprintf (stderr, "\tgp_save_offset = %5d\n", info->gp_save_offset);
25032 if (info->fp_size)
25033 fprintf (stderr, "\tfp_save_offset = %5d\n", info->fp_save_offset);
25035 if (info->altivec_size)
25036 fprintf (stderr, "\taltivec_save_offset = %5d\n",
25037 info->altivec_save_offset);
25039 if (info->vrsave_size)
25040 fprintf (stderr, "\tvrsave_save_offset = %5d\n",
25041 info->vrsave_save_offset);
25043 if (info->lr_save_p)
25044 fprintf (stderr, "\tlr_save_offset = %5d\n", info->lr_save_offset);
25046 if (info->cr_save_p)
25047 fprintf (stderr, "\tcr_save_offset = %5d\n", info->cr_save_offset);
25049 if (info->varargs_save_offset)
25050 fprintf (stderr, "\tvarargs_save_offset = %5d\n", info->varargs_save_offset);
25052 if (info->total_size)
25053 fprintf (stderr, "\ttotal_size = " HOST_WIDE_INT_PRINT_DEC"\n",
25054 info->total_size);
25056 if (info->vars_size)
25057 fprintf (stderr, "\tvars_size = " HOST_WIDE_INT_PRINT_DEC"\n",
25058 info->vars_size);
25060 if (info->parm_size)
25061 fprintf (stderr, "\tparm_size = %5d\n", info->parm_size);
25063 if (info->fixed_size)
25064 fprintf (stderr, "\tfixed_size = %5d\n", info->fixed_size);
25066 if (info->gp_size)
25067 fprintf (stderr, "\tgp_size = %5d\n", info->gp_size);
25069 if (info->fp_size)
25070 fprintf (stderr, "\tfp_size = %5d\n", info->fp_size);
25072 if (info->altivec_size)
25073 fprintf (stderr, "\taltivec_size = %5d\n", info->altivec_size);
25075 if (info->vrsave_size)
25076 fprintf (stderr, "\tvrsave_size = %5d\n", info->vrsave_size);
25078 if (info->altivec_padding_size)
25079 fprintf (stderr, "\taltivec_padding_size= %5d\n",
25080 info->altivec_padding_size);
25082 if (info->cr_size)
25083 fprintf (stderr, "\tcr_size = %5d\n", info->cr_size);
25085 if (info->save_size)
25086 fprintf (stderr, "\tsave_size = %5d\n", info->save_size);
25088 if (info->reg_size != 4)
25089 fprintf (stderr, "\treg_size = %5d\n", info->reg_size);
25091 fprintf (stderr, "\tsave-strategy = %04x\n", info->savres_strategy);
25093 fprintf (stderr, "\n");
25097 rs6000_return_addr (int count, rtx frame)
25099 /* We can't use get_hard_reg_initial_val for LR when count == 0 if LR
25100 is trashed by the prologue, as it is for PIC on ABI_V4 and Darwin. */
25101 if (count != 0
25102 || ((DEFAULT_ABI == ABI_V4 || DEFAULT_ABI == ABI_DARWIN) && flag_pic))
25104 cfun->machine->ra_needs_full_frame = 1;
25106 if (count == 0)
25107 /* FRAME is set to frame_pointer_rtx by the generic code, but that
25108 is good for loading 0(r1) only when !FRAME_GROWS_DOWNWARD. */
25109 frame = stack_pointer_rtx;
25110 rtx prev_frame_addr = memory_address (Pmode, frame);
25111 rtx prev_frame = copy_to_reg (gen_rtx_MEM (Pmode, prev_frame_addr));
25112 rtx lr_save_off = plus_constant (Pmode,
25113 prev_frame, RETURN_ADDRESS_OFFSET);
25114 rtx lr_save_addr = memory_address (Pmode, lr_save_off);
25115 return gen_rtx_MEM (Pmode, lr_save_addr);
25118 cfun->machine->ra_need_lr = 1;
25119 return get_hard_reg_initial_val (Pmode, LR_REGNO);
25122 /* Say whether a function is a candidate for sibcall handling or not. */
25124 static bool
25125 rs6000_function_ok_for_sibcall (tree decl, tree exp)
25127 tree fntype;
25129 if (decl)
25130 fntype = TREE_TYPE (decl);
25131 else
25132 fntype = TREE_TYPE (TREE_TYPE (CALL_EXPR_FN (exp)));
25134 /* We can't do it if the called function has more vector parameters
25135 than the current function; there's nowhere to put the VRsave code. */
25136 if (TARGET_ALTIVEC_ABI
25137 && TARGET_ALTIVEC_VRSAVE
25138 && !(decl && decl == current_function_decl))
25140 function_args_iterator args_iter;
25141 tree type;
25142 int nvreg = 0;
25144 /* Functions with vector parameters are required to have a
25145 prototype, so the argument type info must be available
25146 here. */
25147 FOREACH_FUNCTION_ARGS(fntype, type, args_iter)
25148 if (TREE_CODE (type) == VECTOR_TYPE
25149 && ALTIVEC_OR_VSX_VECTOR_MODE (TYPE_MODE (type)))
25150 nvreg++;
25152 FOREACH_FUNCTION_ARGS(TREE_TYPE (current_function_decl), type, args_iter)
25153 if (TREE_CODE (type) == VECTOR_TYPE
25154 && ALTIVEC_OR_VSX_VECTOR_MODE (TYPE_MODE (type)))
25155 nvreg--;
25157 if (nvreg > 0)
25158 return false;
25161 /* Under the AIX or ELFv2 ABIs we can't allow calls to non-local
25162 functions, because the callee may have a different TOC pointer to
25163 the caller and there's no way to ensure we restore the TOC when
25164 we return. With the secure-plt SYSV ABI we can't make non-local
25165 calls when -fpic/PIC because the plt call stubs use r30. */
25166 if (DEFAULT_ABI == ABI_DARWIN
25167 || ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
25168 && decl
25169 && !DECL_EXTERNAL (decl)
25170 && !DECL_WEAK (decl)
25171 && (*targetm.binds_local_p) (decl))
25172 || (DEFAULT_ABI == ABI_V4
25173 && (!TARGET_SECURE_PLT
25174 || !flag_pic
25175 || (decl
25176 && (*targetm.binds_local_p) (decl)))))
25178 tree attr_list = TYPE_ATTRIBUTES (fntype);
25180 if (!lookup_attribute ("longcall", attr_list)
25181 || lookup_attribute ("shortcall", attr_list))
25182 return true;
25185 return false;
25188 static int
25189 rs6000_ra_ever_killed (void)
25191 rtx_insn *top;
25192 rtx reg;
25193 rtx_insn *insn;
25195 if (cfun->is_thunk)
25196 return 0;
25198 if (cfun->machine->lr_save_state)
25199 return cfun->machine->lr_save_state - 1;
25201 /* regs_ever_live has LR marked as used if any sibcalls are present,
25202 but this should not force saving and restoring in the
25203 pro/epilogue. Likewise, reg_set_between_p thinks a sibcall
25204 clobbers LR, so that is inappropriate. */
25206 /* Also, the prologue can generate a store into LR that
25207 doesn't really count, like this:
25209 move LR->R0
25210 bcl to set PIC register
25211 move LR->R31
25212 move R0->LR
25214 When we're called from the epilogue, we need to avoid counting
25215 this as a store. */
25217 push_topmost_sequence ();
25218 top = get_insns ();
25219 pop_topmost_sequence ();
25220 reg = gen_rtx_REG (Pmode, LR_REGNO);
25222 for (insn = NEXT_INSN (top); insn != NULL_RTX; insn = NEXT_INSN (insn))
25224 if (INSN_P (insn))
25226 if (CALL_P (insn))
25228 if (!SIBLING_CALL_P (insn))
25229 return 1;
25231 else if (find_regno_note (insn, REG_INC, LR_REGNO))
25232 return 1;
25233 else if (set_of (reg, insn) != NULL_RTX
25234 && !prologue_epilogue_contains (insn))
25235 return 1;
25238 return 0;
25241 /* Emit instructions needed to load the TOC register.
25242 This is only needed when TARGET_TOC, TARGET_MINIMAL_TOC, and there is
25243 a constant pool; or for SVR4 -fpic. */
25245 void
25246 rs6000_emit_load_toc_table (int fromprolog)
25248 rtx dest;
25249 dest = gen_rtx_REG (Pmode, RS6000_PIC_OFFSET_TABLE_REGNUM);
25251 if (TARGET_ELF && TARGET_SECURE_PLT && DEFAULT_ABI == ABI_V4 && flag_pic)
25253 char buf[30];
25254 rtx lab, tmp1, tmp2, got;
25256 lab = gen_label_rtx ();
25257 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (lab));
25258 lab = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (buf));
25259 if (flag_pic == 2)
25261 got = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (toc_label_name));
25262 need_toc_init = 1;
25264 else
25265 got = rs6000_got_sym ();
25266 tmp1 = tmp2 = dest;
25267 if (!fromprolog)
25269 tmp1 = gen_reg_rtx (Pmode);
25270 tmp2 = gen_reg_rtx (Pmode);
25272 emit_insn (gen_load_toc_v4_PIC_1 (lab));
25273 emit_move_insn (tmp1, gen_rtx_REG (Pmode, LR_REGNO));
25274 emit_insn (gen_load_toc_v4_PIC_3b (tmp2, tmp1, got, lab));
25275 emit_insn (gen_load_toc_v4_PIC_3c (dest, tmp2, got, lab));
25277 else if (TARGET_ELF && DEFAULT_ABI == ABI_V4 && flag_pic == 1)
25279 emit_insn (gen_load_toc_v4_pic_si ());
25280 emit_move_insn (dest, gen_rtx_REG (Pmode, LR_REGNO));
25282 else if (TARGET_ELF && DEFAULT_ABI == ABI_V4 && flag_pic == 2)
25284 char buf[30];
25285 rtx temp0 = (fromprolog
25286 ? gen_rtx_REG (Pmode, 0)
25287 : gen_reg_rtx (Pmode));
25289 if (fromprolog)
25291 rtx symF, symL;
25293 ASM_GENERATE_INTERNAL_LABEL (buf, "LCF", rs6000_pic_labelno);
25294 symF = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (buf));
25296 ASM_GENERATE_INTERNAL_LABEL (buf, "LCL", rs6000_pic_labelno);
25297 symL = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (buf));
25299 emit_insn (gen_load_toc_v4_PIC_1 (symF));
25300 emit_move_insn (dest, gen_rtx_REG (Pmode, LR_REGNO));
25301 emit_insn (gen_load_toc_v4_PIC_2 (temp0, dest, symL, symF));
25303 else
25305 rtx tocsym, lab;
25307 tocsym = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (toc_label_name));
25308 need_toc_init = 1;
25309 lab = gen_label_rtx ();
25310 emit_insn (gen_load_toc_v4_PIC_1b (tocsym, lab));
25311 emit_move_insn (dest, gen_rtx_REG (Pmode, LR_REGNO));
25312 if (TARGET_LINK_STACK)
25313 emit_insn (gen_addsi3 (dest, dest, GEN_INT (4)));
25314 emit_move_insn (temp0, gen_rtx_MEM (Pmode, dest));
25316 emit_insn (gen_addsi3 (dest, temp0, dest));
25318 else if (TARGET_ELF && !TARGET_AIX && flag_pic == 0 && TARGET_MINIMAL_TOC)
25320 /* This is for AIX code running in non-PIC ELF32. */
25321 rtx realsym = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (toc_label_name));
25323 need_toc_init = 1;
25324 emit_insn (gen_elf_high (dest, realsym));
25325 emit_insn (gen_elf_low (dest, dest, realsym));
25327 else
25329 gcc_assert (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2);
25331 if (TARGET_32BIT)
25332 emit_insn (gen_load_toc_aix_si (dest));
25333 else
25334 emit_insn (gen_load_toc_aix_di (dest));
25338 /* Emit instructions to restore the link register after determining where
25339 its value has been stored. */
25341 void
25342 rs6000_emit_eh_reg_restore (rtx source, rtx scratch)
25344 rs6000_stack_t *info = rs6000_stack_info ();
25345 rtx operands[2];
25347 operands[0] = source;
25348 operands[1] = scratch;
25350 if (info->lr_save_p)
25352 rtx frame_rtx = stack_pointer_rtx;
25353 HOST_WIDE_INT sp_offset = 0;
25354 rtx tmp;
25356 if (frame_pointer_needed
25357 || cfun->calls_alloca
25358 || info->total_size > 32767)
25360 tmp = gen_frame_mem (Pmode, frame_rtx);
25361 emit_move_insn (operands[1], tmp);
25362 frame_rtx = operands[1];
25364 else if (info->push_p)
25365 sp_offset = info->total_size;
25367 tmp = plus_constant (Pmode, frame_rtx,
25368 info->lr_save_offset + sp_offset);
25369 tmp = gen_frame_mem (Pmode, tmp);
25370 emit_move_insn (tmp, operands[0]);
25372 else
25373 emit_move_insn (gen_rtx_REG (Pmode, LR_REGNO), operands[0]);
25375 /* Freeze lr_save_p. We've just emitted rtl that depends on the
25376 state of lr_save_p so any change from here on would be a bug. In
25377 particular, stop rs6000_ra_ever_killed from considering the SET
25378 of lr we may have added just above. */
25379 cfun->machine->lr_save_state = info->lr_save_p + 1;
25382 static GTY(()) alias_set_type set = -1;
25384 alias_set_type
25385 get_TOC_alias_set (void)
25387 if (set == -1)
25388 set = new_alias_set ();
25389 return set;
25392 /* This returns nonzero if the current function uses the TOC. This is
25393 determined by the presence of (use (unspec ... UNSPEC_TOC)), which
25394 is generated by the ABI_V4 load_toc_* patterns.
25395 Return 2 instead of 1 if the load_toc_* pattern is in the function
25396 partition that doesn't start the function. */
25397 #if TARGET_ELF
25398 static int
25399 uses_TOC (void)
25401 rtx_insn *insn;
25402 int ret = 1;
25404 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
25406 if (INSN_P (insn))
25408 rtx pat = PATTERN (insn);
25409 int i;
25411 if (GET_CODE (pat) == PARALLEL)
25412 for (i = 0; i < XVECLEN (pat, 0); i++)
25414 rtx sub = XVECEXP (pat, 0, i);
25415 if (GET_CODE (sub) == USE)
25417 sub = XEXP (sub, 0);
25418 if (GET_CODE (sub) == UNSPEC
25419 && XINT (sub, 1) == UNSPEC_TOC)
25420 return ret;
25424 else if (crtl->has_bb_partition
25425 && NOTE_P (insn)
25426 && NOTE_KIND (insn) == NOTE_INSN_SWITCH_TEXT_SECTIONS)
25427 ret = 2;
25429 return 0;
25431 #endif
25434 create_TOC_reference (rtx symbol, rtx largetoc_reg)
25436 rtx tocrel, tocreg, hi;
25438 if (TARGET_DEBUG_ADDR)
25440 if (GET_CODE (symbol) == SYMBOL_REF)
25441 fprintf (stderr, "\ncreate_TOC_reference, (symbol_ref %s)\n",
25442 XSTR (symbol, 0));
25443 else
25445 fprintf (stderr, "\ncreate_TOC_reference, code %s:\n",
25446 GET_RTX_NAME (GET_CODE (symbol)));
25447 debug_rtx (symbol);
25451 if (!can_create_pseudo_p ())
25452 df_set_regs_ever_live (TOC_REGISTER, true);
25454 tocreg = gen_rtx_REG (Pmode, TOC_REGISTER);
25455 tocrel = gen_rtx_UNSPEC (Pmode, gen_rtvec (2, symbol, tocreg), UNSPEC_TOCREL);
25456 if (TARGET_CMODEL == CMODEL_SMALL || can_create_pseudo_p ())
25457 return tocrel;
25459 hi = gen_rtx_HIGH (Pmode, copy_rtx (tocrel));
25460 if (largetoc_reg != NULL)
25462 emit_move_insn (largetoc_reg, hi);
25463 hi = largetoc_reg;
25465 return gen_rtx_LO_SUM (Pmode, hi, tocrel);
25468 /* Issue assembly directives that create a reference to the given DWARF
25469 FRAME_TABLE_LABEL from the current function section. */
25470 void
25471 rs6000_aix_asm_output_dwarf_table_ref (char * frame_table_label)
25473 fprintf (asm_out_file, "\t.ref %s\n",
25474 (* targetm.strip_name_encoding) (frame_table_label));
25477 /* This ties together stack memory (MEM with an alias set of frame_alias_set)
25478 and the change to the stack pointer. */
25480 static void
25481 rs6000_emit_stack_tie (rtx fp, bool hard_frame_needed)
25483 rtvec p;
25484 int i;
25485 rtx regs[3];
25487 i = 0;
25488 regs[i++] = gen_rtx_REG (Pmode, STACK_POINTER_REGNUM);
25489 if (hard_frame_needed)
25490 regs[i++] = gen_rtx_REG (Pmode, HARD_FRAME_POINTER_REGNUM);
25491 if (!(REGNO (fp) == STACK_POINTER_REGNUM
25492 || (hard_frame_needed
25493 && REGNO (fp) == HARD_FRAME_POINTER_REGNUM)))
25494 regs[i++] = fp;
25496 p = rtvec_alloc (i);
25497 while (--i >= 0)
25499 rtx mem = gen_frame_mem (BLKmode, regs[i]);
25500 RTVEC_ELT (p, i) = gen_rtx_SET (mem, const0_rtx);
25503 emit_insn (gen_stack_tie (gen_rtx_PARALLEL (VOIDmode, p)));
25506 /* Allocate SIZE_INT bytes on the stack using a store with update style insn
25507 and set the appropriate attributes for the generated insn. Return the
25508 first insn which adjusts the stack pointer or the last insn before
25509 the stack adjustment loop.
25511 SIZE_INT is used to create the CFI note for the allocation.
25513 SIZE_RTX is an rtx containing the size of the adjustment. Note that
25514 since stacks grow to lower addresses its runtime value is -SIZE_INT.
25516 ORIG_SP contains the backchain value that must be stored at *sp. */
25518 static rtx_insn *
25519 rs6000_emit_allocate_stack_1 (HOST_WIDE_INT size_int, rtx orig_sp)
25521 rtx_insn *insn;
25523 rtx size_rtx = GEN_INT (-size_int);
25524 if (size_int > 32767)
25526 rtx tmp_reg = gen_rtx_REG (Pmode, 0);
25527 /* Need a note here so that try_split doesn't get confused. */
25528 if (get_last_insn () == NULL_RTX)
25529 emit_note (NOTE_INSN_DELETED);
25530 insn = emit_move_insn (tmp_reg, size_rtx);
25531 try_split (PATTERN (insn), insn, 0);
25532 size_rtx = tmp_reg;
25535 if (Pmode == SImode)
25536 insn = emit_insn (gen_movsi_update_stack (stack_pointer_rtx,
25537 stack_pointer_rtx,
25538 size_rtx,
25539 orig_sp));
25540 else
25541 insn = emit_insn (gen_movdi_di_update_stack (stack_pointer_rtx,
25542 stack_pointer_rtx,
25543 size_rtx,
25544 orig_sp));
25545 rtx par = PATTERN (insn);
25546 gcc_assert (GET_CODE (par) == PARALLEL);
25547 rtx set = XVECEXP (par, 0, 0);
25548 gcc_assert (GET_CODE (set) == SET);
25549 rtx mem = SET_DEST (set);
25550 gcc_assert (MEM_P (mem));
25551 MEM_NOTRAP_P (mem) = 1;
25552 set_mem_alias_set (mem, get_frame_alias_set ());
25554 RTX_FRAME_RELATED_P (insn) = 1;
25555 add_reg_note (insn, REG_FRAME_RELATED_EXPR,
25556 gen_rtx_SET (stack_pointer_rtx,
25557 gen_rtx_PLUS (Pmode,
25558 stack_pointer_rtx,
25559 GEN_INT (-size_int))));
25561 /* Emit a blockage to ensure the allocation/probing insns are
25562 not optimized, combined, removed, etc. Add REG_STACK_CHECK
25563 note for similar reasons. */
25564 if (flag_stack_clash_protection)
25566 add_reg_note (insn, REG_STACK_CHECK, const0_rtx);
25567 emit_insn (gen_blockage ());
25570 return insn;
25573 static HOST_WIDE_INT
25574 get_stack_clash_protection_probe_interval (void)
25576 return (HOST_WIDE_INT_1U
25577 << PARAM_VALUE (PARAM_STACK_CLASH_PROTECTION_PROBE_INTERVAL));
25580 static HOST_WIDE_INT
25581 get_stack_clash_protection_guard_size (void)
25583 return (HOST_WIDE_INT_1U
25584 << PARAM_VALUE (PARAM_STACK_CLASH_PROTECTION_GUARD_SIZE));
25587 /* Allocate ORIG_SIZE bytes on the stack and probe the newly
25588 allocated space every STACK_CLASH_PROTECTION_PROBE_INTERVAL bytes.
25590 COPY_REG, if non-null, should contain a copy of the original
25591 stack pointer at exit from this function.
25593 This is subtly different than the Ada probing in that it tries hard to
25594 prevent attacks that jump the stack guard. Thus it is never allowed to
25595 allocate more than STACK_CLASH_PROTECTION_PROBE_INTERVAL bytes of stack
25596 space without a suitable probe. */
25597 static rtx_insn *
25598 rs6000_emit_probe_stack_range_stack_clash (HOST_WIDE_INT orig_size,
25599 rtx copy_reg)
25601 rtx orig_sp = copy_reg;
25603 HOST_WIDE_INT probe_interval = get_stack_clash_protection_probe_interval ();
25605 /* Round the size down to a multiple of PROBE_INTERVAL. */
25606 HOST_WIDE_INT rounded_size = ROUND_DOWN (orig_size, probe_interval);
25608 /* If explicitly requested,
25609 or the rounded size is not the same as the original size
25610 or the the rounded size is greater than a page,
25611 then we will need a copy of the original stack pointer. */
25612 if (rounded_size != orig_size
25613 || rounded_size > probe_interval
25614 || copy_reg)
25616 /* If the caller did not request a copy of the incoming stack
25617 pointer, then we use r0 to hold the copy. */
25618 if (!copy_reg)
25619 orig_sp = gen_rtx_REG (Pmode, 0);
25620 emit_move_insn (orig_sp, stack_pointer_rtx);
25623 /* There's three cases here.
25625 One is a single probe which is the most common and most efficiently
25626 implemented as it does not have to have a copy of the original
25627 stack pointer if there are no residuals.
25629 Second is unrolled allocation/probes which we use if there's just
25630 a few of them. It needs to save the original stack pointer into a
25631 temporary for use as a source register in the allocation/probe.
25633 Last is a loop. This is the most uncommon case and least efficient. */
25634 rtx_insn *retval = NULL;
25635 if (rounded_size == probe_interval)
25637 retval = rs6000_emit_allocate_stack_1 (probe_interval, stack_pointer_rtx);
25639 dump_stack_clash_frame_info (PROBE_INLINE, rounded_size != orig_size);
25641 else if (rounded_size <= 8 * probe_interval)
25643 /* The ABI requires using the store with update insns to allocate
25644 space and store the backchain into the stack
25646 So we save the current stack pointer into a temporary, then
25647 emit the store-with-update insns to store the saved stack pointer
25648 into the right location in each new page. */
25649 for (int i = 0; i < rounded_size; i += probe_interval)
25651 rtx_insn *insn
25652 = rs6000_emit_allocate_stack_1 (probe_interval, orig_sp);
25654 /* Save the first stack adjustment in RETVAL. */
25655 if (i == 0)
25656 retval = insn;
25659 dump_stack_clash_frame_info (PROBE_INLINE, rounded_size != orig_size);
25661 else
25663 /* Compute the ending address. */
25664 rtx end_addr
25665 = copy_reg ? gen_rtx_REG (Pmode, 0) : gen_rtx_REG (Pmode, 12);
25666 rtx rs = GEN_INT (-rounded_size);
25667 rtx_insn *insn;
25668 if (add_operand (rs, Pmode))
25669 insn = emit_insn (gen_add3_insn (end_addr, stack_pointer_rtx, rs));
25670 else
25672 emit_move_insn (end_addr, GEN_INT (-rounded_size));
25673 insn = emit_insn (gen_add3_insn (end_addr, end_addr,
25674 stack_pointer_rtx));
25675 /* Describe the effect of INSN to the CFI engine. */
25676 add_reg_note (insn, REG_FRAME_RELATED_EXPR,
25677 gen_rtx_SET (end_addr,
25678 gen_rtx_PLUS (Pmode, stack_pointer_rtx,
25679 rs)));
25681 RTX_FRAME_RELATED_P (insn) = 1;
25683 /* Emit the loop. */
25684 if (TARGET_64BIT)
25685 retval = emit_insn (gen_probe_stack_rangedi (stack_pointer_rtx,
25686 stack_pointer_rtx, orig_sp,
25687 end_addr));
25688 else
25689 retval = emit_insn (gen_probe_stack_rangesi (stack_pointer_rtx,
25690 stack_pointer_rtx, orig_sp,
25691 end_addr));
25692 RTX_FRAME_RELATED_P (retval) = 1;
25693 /* Describe the effect of INSN to the CFI engine. */
25694 add_reg_note (retval, REG_FRAME_RELATED_EXPR,
25695 gen_rtx_SET (stack_pointer_rtx, end_addr));
25697 /* Emit a blockage to ensure the allocation/probing insns are
25698 not optimized, combined, removed, etc. Other cases handle this
25699 within their call to rs6000_emit_allocate_stack_1. */
25700 emit_insn (gen_blockage ());
25702 dump_stack_clash_frame_info (PROBE_LOOP, rounded_size != orig_size);
25705 if (orig_size != rounded_size)
25707 /* Allocate (and implicitly probe) any residual space. */
25708 HOST_WIDE_INT residual = orig_size - rounded_size;
25710 rtx_insn *insn = rs6000_emit_allocate_stack_1 (residual, orig_sp);
25712 /* If the residual was the only allocation, then we can return the
25713 allocating insn. */
25714 if (!retval)
25715 retval = insn;
25718 return retval;
25721 /* Emit the correct code for allocating stack space, as insns.
25722 If COPY_REG, make sure a copy of the old frame is left there.
25723 The generated code may use hard register 0 as a temporary. */
25725 static rtx_insn *
25726 rs6000_emit_allocate_stack (HOST_WIDE_INT size, rtx copy_reg, int copy_off)
25728 rtx_insn *insn;
25729 rtx stack_reg = gen_rtx_REG (Pmode, STACK_POINTER_REGNUM);
25730 rtx tmp_reg = gen_rtx_REG (Pmode, 0);
25731 rtx todec = gen_int_mode (-size, Pmode);
25733 if (INTVAL (todec) != -size)
25735 warning (0, "stack frame too large");
25736 emit_insn (gen_trap ());
25737 return 0;
25740 if (crtl->limit_stack)
25742 if (REG_P (stack_limit_rtx)
25743 && REGNO (stack_limit_rtx) > 1
25744 && REGNO (stack_limit_rtx) <= 31)
25746 rtx_insn *insn
25747 = gen_add3_insn (tmp_reg, stack_limit_rtx, GEN_INT (size));
25748 gcc_assert (insn);
25749 emit_insn (insn);
25750 emit_insn (gen_cond_trap (LTU, stack_reg, tmp_reg, const0_rtx));
25752 else if (GET_CODE (stack_limit_rtx) == SYMBOL_REF
25753 && TARGET_32BIT
25754 && DEFAULT_ABI == ABI_V4
25755 && !flag_pic)
25757 rtx toload = gen_rtx_CONST (VOIDmode,
25758 gen_rtx_PLUS (Pmode,
25759 stack_limit_rtx,
25760 GEN_INT (size)));
25762 emit_insn (gen_elf_high (tmp_reg, toload));
25763 emit_insn (gen_elf_low (tmp_reg, tmp_reg, toload));
25764 emit_insn (gen_cond_trap (LTU, stack_reg, tmp_reg,
25765 const0_rtx));
25767 else
25768 warning (0, "stack limit expression is not supported");
25771 if (flag_stack_clash_protection)
25773 if (size < get_stack_clash_protection_guard_size ())
25774 dump_stack_clash_frame_info (NO_PROBE_SMALL_FRAME, true);
25775 else
25777 rtx_insn *insn = rs6000_emit_probe_stack_range_stack_clash (size,
25778 copy_reg);
25780 /* If we asked for a copy with an offset, then we still need add in
25781 the offset. */
25782 if (copy_reg && copy_off)
25783 emit_insn (gen_add3_insn (copy_reg, copy_reg, GEN_INT (copy_off)));
25784 return insn;
25788 if (copy_reg)
25790 if (copy_off != 0)
25791 emit_insn (gen_add3_insn (copy_reg, stack_reg, GEN_INT (copy_off)));
25792 else
25793 emit_move_insn (copy_reg, stack_reg);
25796 /* Since we didn't use gen_frame_mem to generate the MEM, grab
25797 it now and set the alias set/attributes. The above gen_*_update
25798 calls will generate a PARALLEL with the MEM set being the first
25799 operation. */
25800 insn = rs6000_emit_allocate_stack_1 (size, stack_reg);
25801 return insn;
25804 #define PROBE_INTERVAL (1 << STACK_CHECK_PROBE_INTERVAL_EXP)
25806 #if PROBE_INTERVAL > 32768
25807 #error Cannot use indexed addressing mode for stack probing
25808 #endif
25810 /* Emit code to probe a range of stack addresses from FIRST to FIRST+SIZE,
25811 inclusive. These are offsets from the current stack pointer. */
25813 static void
25814 rs6000_emit_probe_stack_range (HOST_WIDE_INT first, HOST_WIDE_INT size)
25816 /* See if we have a constant small number of probes to generate. If so,
25817 that's the easy case. */
25818 if (first + size <= 32768)
25820 HOST_WIDE_INT i;
25822 /* Probe at FIRST + N * PROBE_INTERVAL for values of N from 1 until
25823 it exceeds SIZE. If only one probe is needed, this will not
25824 generate any code. Then probe at FIRST + SIZE. */
25825 for (i = PROBE_INTERVAL; i < size; i += PROBE_INTERVAL)
25826 emit_stack_probe (plus_constant (Pmode, stack_pointer_rtx,
25827 -(first + i)));
25829 emit_stack_probe (plus_constant (Pmode, stack_pointer_rtx,
25830 -(first + size)));
25833 /* Otherwise, do the same as above, but in a loop. Note that we must be
25834 extra careful with variables wrapping around because we might be at
25835 the very top (or the very bottom) of the address space and we have
25836 to be able to handle this case properly; in particular, we use an
25837 equality test for the loop condition. */
25838 else
25840 HOST_WIDE_INT rounded_size;
25841 rtx r12 = gen_rtx_REG (Pmode, 12);
25842 rtx r0 = gen_rtx_REG (Pmode, 0);
25844 /* Sanity check for the addressing mode we're going to use. */
25845 gcc_assert (first <= 32768);
25847 /* Step 1: round SIZE to the previous multiple of the interval. */
25849 rounded_size = ROUND_DOWN (size, PROBE_INTERVAL);
25852 /* Step 2: compute initial and final value of the loop counter. */
25854 /* TEST_ADDR = SP + FIRST. */
25855 emit_insn (gen_rtx_SET (r12, plus_constant (Pmode, stack_pointer_rtx,
25856 -first)));
25858 /* LAST_ADDR = SP + FIRST + ROUNDED_SIZE. */
25859 if (rounded_size > 32768)
25861 emit_move_insn (r0, GEN_INT (-rounded_size));
25862 emit_insn (gen_rtx_SET (r0, gen_rtx_PLUS (Pmode, r12, r0)));
25864 else
25865 emit_insn (gen_rtx_SET (r0, plus_constant (Pmode, r12,
25866 -rounded_size)));
25869 /* Step 3: the loop
25873 TEST_ADDR = TEST_ADDR + PROBE_INTERVAL
25874 probe at TEST_ADDR
25876 while (TEST_ADDR != LAST_ADDR)
25878 probes at FIRST + N * PROBE_INTERVAL for values of N from 1
25879 until it is equal to ROUNDED_SIZE. */
25881 if (TARGET_64BIT)
25882 emit_insn (gen_probe_stack_rangedi (r12, r12, stack_pointer_rtx, r0));
25883 else
25884 emit_insn (gen_probe_stack_rangesi (r12, r12, stack_pointer_rtx, r0));
25887 /* Step 4: probe at FIRST + SIZE if we cannot assert at compile-time
25888 that SIZE is equal to ROUNDED_SIZE. */
25890 if (size != rounded_size)
25891 emit_stack_probe (plus_constant (Pmode, r12, rounded_size - size));
25895 /* Probe a range of stack addresses from REG1 to REG2 inclusive. These are
25896 addresses, not offsets. */
25898 static const char *
25899 output_probe_stack_range_1 (rtx reg1, rtx reg2)
25901 static int labelno = 0;
25902 char loop_lab[32];
25903 rtx xops[2];
25905 ASM_GENERATE_INTERNAL_LABEL (loop_lab, "LPSRL", labelno++);
25907 /* Loop. */
25908 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, loop_lab);
25910 /* TEST_ADDR = TEST_ADDR + PROBE_INTERVAL. */
25911 xops[0] = reg1;
25912 xops[1] = GEN_INT (-PROBE_INTERVAL);
25913 output_asm_insn ("addi %0,%0,%1", xops);
25915 /* Probe at TEST_ADDR. */
25916 xops[1] = gen_rtx_REG (Pmode, 0);
25917 output_asm_insn ("stw %1,0(%0)", xops);
25919 /* Test if TEST_ADDR == LAST_ADDR. */
25920 xops[1] = reg2;
25921 if (TARGET_64BIT)
25922 output_asm_insn ("cmpd 0,%0,%1", xops);
25923 else
25924 output_asm_insn ("cmpw 0,%0,%1", xops);
25926 /* Branch. */
25927 fputs ("\tbne 0,", asm_out_file);
25928 assemble_name_raw (asm_out_file, loop_lab);
25929 fputc ('\n', asm_out_file);
25931 return "";
25934 /* This function is called when rs6000_frame_related is processing
25935 SETs within a PARALLEL, and returns whether the REGNO save ought to
25936 be marked RTX_FRAME_RELATED_P. The PARALLELs involved are those
25937 for out-of-line register save functions, store multiple, and the
25938 Darwin world_save. They may contain registers that don't really
25939 need saving. */
25941 static bool
25942 interesting_frame_related_regno (unsigned int regno)
25944 /* Saves apparently of r0 are actually saving LR. It doesn't make
25945 sense to substitute the regno here to test save_reg_p (LR_REGNO).
25946 We *know* LR needs saving, and dwarf2cfi.c is able to deduce that
25947 (set (mem) (r0)) is saving LR from a prior (set (r0) (lr)) marked
25948 as frame related. */
25949 if (regno == 0)
25950 return true;
25951 /* If we see CR2 then we are here on a Darwin world save. Saves of
25952 CR2 signify the whole CR is being saved. This is a long-standing
25953 ABI wart fixed by ELFv2. As for r0/lr there is no need to check
25954 that CR needs to be saved. */
25955 if (regno == CR2_REGNO)
25956 return true;
25957 /* Omit frame info for any user-defined global regs. If frame info
25958 is supplied for them, frame unwinding will restore a user reg.
25959 Also omit frame info for any reg we don't need to save, as that
25960 bloats frame info and can cause problems with shrink wrapping.
25961 Since global regs won't be seen as needing to be saved, both of
25962 these conditions are covered by save_reg_p. */
25963 return save_reg_p (regno);
25966 /* Probe a range of stack addresses from REG1 to REG3 inclusive. These are
25967 addresses, not offsets.
25969 REG2 contains the backchain that must be stored into *sp at each allocation.
25971 This is subtly different than the Ada probing above in that it tries hard
25972 to prevent attacks that jump the stack guard. Thus, it is never allowed
25973 to allocate more than PROBE_INTERVAL bytes of stack space without a
25974 suitable probe. */
25976 static const char *
25977 output_probe_stack_range_stack_clash (rtx reg1, rtx reg2, rtx reg3)
25979 static int labelno = 0;
25980 char loop_lab[32];
25981 rtx xops[3];
25983 HOST_WIDE_INT probe_interval = get_stack_clash_protection_probe_interval ();
25985 ASM_GENERATE_INTERNAL_LABEL (loop_lab, "LPSRL", labelno++);
25987 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, loop_lab);
25989 /* This allocates and probes. */
25990 xops[0] = reg1;
25991 xops[1] = reg2;
25992 xops[2] = GEN_INT (-probe_interval);
25993 if (TARGET_64BIT)
25994 output_asm_insn ("stdu %1,%2(%0)", xops);
25995 else
25996 output_asm_insn ("stwu %1,%2(%0)", xops);
25998 /* Jump to LOOP_LAB if TEST_ADDR != LAST_ADDR. */
25999 xops[0] = reg1;
26000 xops[1] = reg3;
26001 if (TARGET_64BIT)
26002 output_asm_insn ("cmpd 0,%0,%1", xops);
26003 else
26004 output_asm_insn ("cmpw 0,%0,%1", xops);
26006 fputs ("\tbne 0,", asm_out_file);
26007 assemble_name_raw (asm_out_file, loop_lab);
26008 fputc ('\n', asm_out_file);
26010 return "";
26013 /* Wrapper around the output_probe_stack_range routines. */
26014 const char *
26015 output_probe_stack_range (rtx reg1, rtx reg2, rtx reg3)
26017 if (flag_stack_clash_protection)
26018 return output_probe_stack_range_stack_clash (reg1, reg2, reg3);
26019 else
26020 return output_probe_stack_range_1 (reg1, reg3);
26023 /* Add to 'insn' a note which is PATTERN (INSN) but with REG replaced
26024 with (plus:P (reg 1) VAL), and with REG2 replaced with REPL2 if REG2
26025 is not NULL. It would be nice if dwarf2out_frame_debug_expr could
26026 deduce these equivalences by itself so it wasn't necessary to hold
26027 its hand so much. Don't be tempted to always supply d2_f_d_e with
26028 the actual cfa register, ie. r31 when we are using a hard frame
26029 pointer. That fails when saving regs off r1, and sched moves the
26030 r31 setup past the reg saves. */
26032 static rtx_insn *
26033 rs6000_frame_related (rtx_insn *insn, rtx reg, HOST_WIDE_INT val,
26034 rtx reg2, rtx repl2)
26036 rtx repl;
26038 if (REGNO (reg) == STACK_POINTER_REGNUM)
26040 gcc_checking_assert (val == 0);
26041 repl = NULL_RTX;
26043 else
26044 repl = gen_rtx_PLUS (Pmode, gen_rtx_REG (Pmode, STACK_POINTER_REGNUM),
26045 GEN_INT (val));
26047 rtx pat = PATTERN (insn);
26048 if (!repl && !reg2)
26050 /* No need for any replacement. Just set RTX_FRAME_RELATED_P. */
26051 if (GET_CODE (pat) == PARALLEL)
26052 for (int i = 0; i < XVECLEN (pat, 0); i++)
26053 if (GET_CODE (XVECEXP (pat, 0, i)) == SET)
26055 rtx set = XVECEXP (pat, 0, i);
26057 if (!REG_P (SET_SRC (set))
26058 || interesting_frame_related_regno (REGNO (SET_SRC (set))))
26059 RTX_FRAME_RELATED_P (set) = 1;
26061 RTX_FRAME_RELATED_P (insn) = 1;
26062 return insn;
26065 /* We expect that 'pat' is either a SET or a PARALLEL containing
26066 SETs (and possibly other stuff). In a PARALLEL, all the SETs
26067 are important so they all have to be marked RTX_FRAME_RELATED_P.
26068 Call simplify_replace_rtx on the SETs rather than the whole insn
26069 so as to leave the other stuff alone (for example USE of r12). */
26071 set_used_flags (pat);
26072 if (GET_CODE (pat) == SET)
26074 if (repl)
26075 pat = simplify_replace_rtx (pat, reg, repl);
26076 if (reg2)
26077 pat = simplify_replace_rtx (pat, reg2, repl2);
26079 else if (GET_CODE (pat) == PARALLEL)
26081 pat = shallow_copy_rtx (pat);
26082 XVEC (pat, 0) = shallow_copy_rtvec (XVEC (pat, 0));
26084 for (int i = 0; i < XVECLEN (pat, 0); i++)
26085 if (GET_CODE (XVECEXP (pat, 0, i)) == SET)
26087 rtx set = XVECEXP (pat, 0, i);
26089 if (repl)
26090 set = simplify_replace_rtx (set, reg, repl);
26091 if (reg2)
26092 set = simplify_replace_rtx (set, reg2, repl2);
26093 XVECEXP (pat, 0, i) = set;
26095 if (!REG_P (SET_SRC (set))
26096 || interesting_frame_related_regno (REGNO (SET_SRC (set))))
26097 RTX_FRAME_RELATED_P (set) = 1;
26100 else
26101 gcc_unreachable ();
26103 RTX_FRAME_RELATED_P (insn) = 1;
26104 add_reg_note (insn, REG_FRAME_RELATED_EXPR, copy_rtx_if_shared (pat));
26106 return insn;
26109 /* Returns an insn that has a vrsave set operation with the
26110 appropriate CLOBBERs. */
26112 static rtx
26113 generate_set_vrsave (rtx reg, rs6000_stack_t *info, int epiloguep)
26115 int nclobs, i;
26116 rtx insn, clobs[TOTAL_ALTIVEC_REGS + 1];
26117 rtx vrsave = gen_rtx_REG (SImode, VRSAVE_REGNO);
26119 clobs[0]
26120 = gen_rtx_SET (vrsave,
26121 gen_rtx_UNSPEC_VOLATILE (SImode,
26122 gen_rtvec (2, reg, vrsave),
26123 UNSPECV_SET_VRSAVE));
26125 nclobs = 1;
26127 /* We need to clobber the registers in the mask so the scheduler
26128 does not move sets to VRSAVE before sets of AltiVec registers.
26130 However, if the function receives nonlocal gotos, reload will set
26131 all call saved registers live. We will end up with:
26133 (set (reg 999) (mem))
26134 (parallel [ (set (reg vrsave) (unspec blah))
26135 (clobber (reg 999))])
26137 The clobber will cause the store into reg 999 to be dead, and
26138 flow will attempt to delete an epilogue insn. In this case, we
26139 need an unspec use/set of the register. */
26141 for (i = FIRST_ALTIVEC_REGNO; i <= LAST_ALTIVEC_REGNO; ++i)
26142 if (info->vrsave_mask & ALTIVEC_REG_BIT (i))
26144 if (!epiloguep || call_used_regs [i])
26145 clobs[nclobs++] = gen_rtx_CLOBBER (VOIDmode,
26146 gen_rtx_REG (V4SImode, i));
26147 else
26149 rtx reg = gen_rtx_REG (V4SImode, i);
26151 clobs[nclobs++]
26152 = gen_rtx_SET (reg,
26153 gen_rtx_UNSPEC (V4SImode,
26154 gen_rtvec (1, reg), 27));
26158 insn = gen_rtx_PARALLEL (VOIDmode, rtvec_alloc (nclobs));
26160 for (i = 0; i < nclobs; ++i)
26161 XVECEXP (insn, 0, i) = clobs[i];
26163 return insn;
26166 static rtx
26167 gen_frame_set (rtx reg, rtx frame_reg, int offset, bool store)
26169 rtx addr, mem;
26171 addr = gen_rtx_PLUS (Pmode, frame_reg, GEN_INT (offset));
26172 mem = gen_frame_mem (GET_MODE (reg), addr);
26173 return gen_rtx_SET (store ? mem : reg, store ? reg : mem);
26176 static rtx
26177 gen_frame_load (rtx reg, rtx frame_reg, int offset)
26179 return gen_frame_set (reg, frame_reg, offset, false);
26182 static rtx
26183 gen_frame_store (rtx reg, rtx frame_reg, int offset)
26185 return gen_frame_set (reg, frame_reg, offset, true);
26188 /* Save a register into the frame, and emit RTX_FRAME_RELATED_P notes.
26189 Save REGNO into [FRAME_REG + OFFSET] in mode MODE. */
26191 static rtx_insn *
26192 emit_frame_save (rtx frame_reg, machine_mode mode,
26193 unsigned int regno, int offset, HOST_WIDE_INT frame_reg_to_sp)
26195 rtx reg;
26197 /* Some cases that need register indexed addressing. */
26198 gcc_checking_assert (!(TARGET_ALTIVEC_ABI && ALTIVEC_VECTOR_MODE (mode))
26199 || (TARGET_VSX && ALTIVEC_OR_VSX_VECTOR_MODE (mode)));
26201 reg = gen_rtx_REG (mode, regno);
26202 rtx_insn *insn = emit_insn (gen_frame_store (reg, frame_reg, offset));
26203 return rs6000_frame_related (insn, frame_reg, frame_reg_to_sp,
26204 NULL_RTX, NULL_RTX);
26207 /* Emit an offset memory reference suitable for a frame store, while
26208 converting to a valid addressing mode. */
26210 static rtx
26211 gen_frame_mem_offset (machine_mode mode, rtx reg, int offset)
26213 return gen_frame_mem (mode, gen_rtx_PLUS (Pmode, reg, GEN_INT (offset)));
26216 #ifndef TARGET_FIX_AND_CONTINUE
26217 #define TARGET_FIX_AND_CONTINUE 0
26218 #endif
26220 /* It's really GPR 13 or 14, FPR 14 and VR 20. We need the smallest. */
26221 #define FIRST_SAVRES_REGISTER FIRST_SAVED_GP_REGNO
26222 #define LAST_SAVRES_REGISTER 31
26223 #define N_SAVRES_REGISTERS (LAST_SAVRES_REGISTER - FIRST_SAVRES_REGISTER + 1)
26225 enum {
26226 SAVRES_LR = 0x1,
26227 SAVRES_SAVE = 0x2,
26228 SAVRES_REG = 0x0c,
26229 SAVRES_GPR = 0,
26230 SAVRES_FPR = 4,
26231 SAVRES_VR = 8
26234 static GTY(()) rtx savres_routine_syms[N_SAVRES_REGISTERS][12];
26236 /* Temporary holding space for an out-of-line register save/restore
26237 routine name. */
26238 static char savres_routine_name[30];
26240 /* Return the name for an out-of-line register save/restore routine.
26241 We are saving/restoring GPRs if GPR is true. */
26243 static char *
26244 rs6000_savres_routine_name (int regno, int sel)
26246 const char *prefix = "";
26247 const char *suffix = "";
26249 /* Different targets are supposed to define
26250 {SAVE,RESTORE}_FP_{PREFIX,SUFFIX} with the idea that the needed
26251 routine name could be defined with:
26253 sprintf (name, "%s%d%s", SAVE_FP_PREFIX, regno, SAVE_FP_SUFFIX)
26255 This is a nice idea in practice, but in reality, things are
26256 complicated in several ways:
26258 - ELF targets have save/restore routines for GPRs.
26260 - PPC64 ELF targets have routines for save/restore of GPRs that
26261 differ in what they do with the link register, so having a set
26262 prefix doesn't work. (We only use one of the save routines at
26263 the moment, though.)
26265 - PPC32 elf targets have "exit" versions of the restore routines
26266 that restore the link register and can save some extra space.
26267 These require an extra suffix. (There are also "tail" versions
26268 of the restore routines and "GOT" versions of the save routines,
26269 but we don't generate those at present. Same problems apply,
26270 though.)
26272 We deal with all this by synthesizing our own prefix/suffix and
26273 using that for the simple sprintf call shown above. */
26274 if (DEFAULT_ABI == ABI_V4)
26276 if (TARGET_64BIT)
26277 goto aix_names;
26279 if ((sel & SAVRES_REG) == SAVRES_GPR)
26280 prefix = (sel & SAVRES_SAVE) ? "_savegpr_" : "_restgpr_";
26281 else if ((sel & SAVRES_REG) == SAVRES_FPR)
26282 prefix = (sel & SAVRES_SAVE) ? "_savefpr_" : "_restfpr_";
26283 else if ((sel & SAVRES_REG) == SAVRES_VR)
26284 prefix = (sel & SAVRES_SAVE) ? "_savevr_" : "_restvr_";
26285 else
26286 abort ();
26288 if ((sel & SAVRES_LR))
26289 suffix = "_x";
26291 else if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
26293 #if !defined (POWERPC_LINUX) && !defined (POWERPC_FREEBSD)
26294 /* No out-of-line save/restore routines for GPRs on AIX. */
26295 gcc_assert (!TARGET_AIX || (sel & SAVRES_REG) != SAVRES_GPR);
26296 #endif
26298 aix_names:
26299 if ((sel & SAVRES_REG) == SAVRES_GPR)
26300 prefix = ((sel & SAVRES_SAVE)
26301 ? ((sel & SAVRES_LR) ? "_savegpr0_" : "_savegpr1_")
26302 : ((sel & SAVRES_LR) ? "_restgpr0_" : "_restgpr1_"));
26303 else if ((sel & SAVRES_REG) == SAVRES_FPR)
26305 #if defined (POWERPC_LINUX) || defined (POWERPC_FREEBSD)
26306 if ((sel & SAVRES_LR))
26307 prefix = ((sel & SAVRES_SAVE) ? "_savefpr_" : "_restfpr_");
26308 else
26309 #endif
26311 prefix = (sel & SAVRES_SAVE) ? SAVE_FP_PREFIX : RESTORE_FP_PREFIX;
26312 suffix = (sel & SAVRES_SAVE) ? SAVE_FP_SUFFIX : RESTORE_FP_SUFFIX;
26315 else if ((sel & SAVRES_REG) == SAVRES_VR)
26316 prefix = (sel & SAVRES_SAVE) ? "_savevr_" : "_restvr_";
26317 else
26318 abort ();
26321 if (DEFAULT_ABI == ABI_DARWIN)
26323 /* The Darwin approach is (slightly) different, in order to be
26324 compatible with code generated by the system toolchain. There is a
26325 single symbol for the start of save sequence, and the code here
26326 embeds an offset into that code on the basis of the first register
26327 to be saved. */
26328 prefix = (sel & SAVRES_SAVE) ? "save" : "rest" ;
26329 if ((sel & SAVRES_REG) == SAVRES_GPR)
26330 sprintf (savres_routine_name, "*%sGPR%s%s%.0d ; %s r%d-r31", prefix,
26331 ((sel & SAVRES_LR) ? "x" : ""), (regno == 13 ? "" : "+"),
26332 (regno - 13) * 4, prefix, regno);
26333 else if ((sel & SAVRES_REG) == SAVRES_FPR)
26334 sprintf (savres_routine_name, "*%sFP%s%.0d ; %s f%d-f31", prefix,
26335 (regno == 14 ? "" : "+"), (regno - 14) * 4, prefix, regno);
26336 else if ((sel & SAVRES_REG) == SAVRES_VR)
26337 sprintf (savres_routine_name, "*%sVEC%s%.0d ; %s v%d-v31", prefix,
26338 (regno == 20 ? "" : "+"), (regno - 20) * 8, prefix, regno);
26339 else
26340 abort ();
26342 else
26343 sprintf (savres_routine_name, "%s%d%s", prefix, regno, suffix);
26345 return savres_routine_name;
26348 /* Return an RTL SYMBOL_REF for an out-of-line register save/restore routine.
26349 We are saving/restoring GPRs if GPR is true. */
26351 static rtx
26352 rs6000_savres_routine_sym (rs6000_stack_t *info, int sel)
26354 int regno = ((sel & SAVRES_REG) == SAVRES_GPR
26355 ? info->first_gp_reg_save
26356 : (sel & SAVRES_REG) == SAVRES_FPR
26357 ? info->first_fp_reg_save - 32
26358 : (sel & SAVRES_REG) == SAVRES_VR
26359 ? info->first_altivec_reg_save - FIRST_ALTIVEC_REGNO
26360 : -1);
26361 rtx sym;
26362 int select = sel;
26364 /* Don't generate bogus routine names. */
26365 gcc_assert (FIRST_SAVRES_REGISTER <= regno
26366 && regno <= LAST_SAVRES_REGISTER
26367 && select >= 0 && select <= 12);
26369 sym = savres_routine_syms[regno-FIRST_SAVRES_REGISTER][select];
26371 if (sym == NULL)
26373 char *name;
26375 name = rs6000_savres_routine_name (regno, sel);
26377 sym = savres_routine_syms[regno-FIRST_SAVRES_REGISTER][select]
26378 = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (name));
26379 SYMBOL_REF_FLAGS (sym) |= SYMBOL_FLAG_FUNCTION;
26382 return sym;
26385 /* Emit a sequence of insns, including a stack tie if needed, for
26386 resetting the stack pointer. If UPDT_REGNO is not 1, then don't
26387 reset the stack pointer, but move the base of the frame into
26388 reg UPDT_REGNO for use by out-of-line register restore routines. */
26390 static rtx
26391 rs6000_emit_stack_reset (rtx frame_reg_rtx, HOST_WIDE_INT frame_off,
26392 unsigned updt_regno)
26394 /* If there is nothing to do, don't do anything. */
26395 if (frame_off == 0 && REGNO (frame_reg_rtx) == updt_regno)
26396 return NULL_RTX;
26398 rtx updt_reg_rtx = gen_rtx_REG (Pmode, updt_regno);
26400 /* This blockage is needed so that sched doesn't decide to move
26401 the sp change before the register restores. */
26402 if (DEFAULT_ABI == ABI_V4)
26403 return emit_insn (gen_stack_restore_tie (updt_reg_rtx, frame_reg_rtx,
26404 GEN_INT (frame_off)));
26406 /* If we are restoring registers out-of-line, we will be using the
26407 "exit" variants of the restore routines, which will reset the
26408 stack for us. But we do need to point updt_reg into the
26409 right place for those routines. */
26410 if (frame_off != 0)
26411 return emit_insn (gen_add3_insn (updt_reg_rtx,
26412 frame_reg_rtx, GEN_INT (frame_off)));
26413 else
26414 return emit_move_insn (updt_reg_rtx, frame_reg_rtx);
26416 return NULL_RTX;
26419 /* Return the register number used as a pointer by out-of-line
26420 save/restore functions. */
26422 static inline unsigned
26423 ptr_regno_for_savres (int sel)
26425 if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
26426 return (sel & SAVRES_REG) == SAVRES_FPR || (sel & SAVRES_LR) ? 1 : 12;
26427 return DEFAULT_ABI == ABI_DARWIN && (sel & SAVRES_REG) == SAVRES_FPR ? 1 : 11;
26430 /* Construct a parallel rtx describing the effect of a call to an
26431 out-of-line register save/restore routine, and emit the insn
26432 or jump_insn as appropriate. */
26434 static rtx_insn *
26435 rs6000_emit_savres_rtx (rs6000_stack_t *info,
26436 rtx frame_reg_rtx, int save_area_offset, int lr_offset,
26437 machine_mode reg_mode, int sel)
26439 int i;
26440 int offset, start_reg, end_reg, n_regs, use_reg;
26441 int reg_size = GET_MODE_SIZE (reg_mode);
26442 rtx sym;
26443 rtvec p;
26444 rtx par;
26445 rtx_insn *insn;
26447 offset = 0;
26448 start_reg = ((sel & SAVRES_REG) == SAVRES_GPR
26449 ? info->first_gp_reg_save
26450 : (sel & SAVRES_REG) == SAVRES_FPR
26451 ? info->first_fp_reg_save
26452 : (sel & SAVRES_REG) == SAVRES_VR
26453 ? info->first_altivec_reg_save
26454 : -1);
26455 end_reg = ((sel & SAVRES_REG) == SAVRES_GPR
26456 ? 32
26457 : (sel & SAVRES_REG) == SAVRES_FPR
26458 ? 64
26459 : (sel & SAVRES_REG) == SAVRES_VR
26460 ? LAST_ALTIVEC_REGNO + 1
26461 : -1);
26462 n_regs = end_reg - start_reg;
26463 p = rtvec_alloc (3 + ((sel & SAVRES_LR) ? 1 : 0)
26464 + ((sel & SAVRES_REG) == SAVRES_VR ? 1 : 0)
26465 + n_regs);
26467 if (!(sel & SAVRES_SAVE) && (sel & SAVRES_LR))
26468 RTVEC_ELT (p, offset++) = ret_rtx;
26470 RTVEC_ELT (p, offset++)
26471 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, LR_REGNO));
26473 sym = rs6000_savres_routine_sym (info, sel);
26474 RTVEC_ELT (p, offset++) = gen_rtx_USE (VOIDmode, sym);
26476 use_reg = ptr_regno_for_savres (sel);
26477 if ((sel & SAVRES_REG) == SAVRES_VR)
26479 /* Vector regs are saved/restored using [reg+reg] addressing. */
26480 RTVEC_ELT (p, offset++)
26481 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, use_reg));
26482 RTVEC_ELT (p, offset++)
26483 = gen_rtx_USE (VOIDmode, gen_rtx_REG (Pmode, 0));
26485 else
26486 RTVEC_ELT (p, offset++)
26487 = gen_rtx_USE (VOIDmode, gen_rtx_REG (Pmode, use_reg));
26489 for (i = 0; i < end_reg - start_reg; i++)
26490 RTVEC_ELT (p, i + offset)
26491 = gen_frame_set (gen_rtx_REG (reg_mode, start_reg + i),
26492 frame_reg_rtx, save_area_offset + reg_size * i,
26493 (sel & SAVRES_SAVE) != 0);
26495 if ((sel & SAVRES_SAVE) && (sel & SAVRES_LR))
26496 RTVEC_ELT (p, i + offset)
26497 = gen_frame_store (gen_rtx_REG (Pmode, 0), frame_reg_rtx, lr_offset);
26499 par = gen_rtx_PARALLEL (VOIDmode, p);
26501 if (!(sel & SAVRES_SAVE) && (sel & SAVRES_LR))
26503 insn = emit_jump_insn (par);
26504 JUMP_LABEL (insn) = ret_rtx;
26506 else
26507 insn = emit_insn (par);
26508 return insn;
26511 /* Emit prologue code to store CR fields that need to be saved into REG. This
26512 function should only be called when moving the non-volatile CRs to REG, it
26513 is not a general purpose routine to move the entire set of CRs to REG.
26514 Specifically, gen_prologue_movesi_from_cr() does not contain uses of the
26515 volatile CRs. */
26517 static void
26518 rs6000_emit_prologue_move_from_cr (rtx reg)
26520 /* Only the ELFv2 ABI allows storing only selected fields. */
26521 if (DEFAULT_ABI == ABI_ELFv2 && TARGET_MFCRF)
26523 int i, cr_reg[8], count = 0;
26525 /* Collect CR fields that must be saved. */
26526 for (i = 0; i < 8; i++)
26527 if (save_reg_p (CR0_REGNO + i))
26528 cr_reg[count++] = i;
26530 /* If it's just a single one, use mfcrf. */
26531 if (count == 1)
26533 rtvec p = rtvec_alloc (1);
26534 rtvec r = rtvec_alloc (2);
26535 RTVEC_ELT (r, 0) = gen_rtx_REG (CCmode, CR0_REGNO + cr_reg[0]);
26536 RTVEC_ELT (r, 1) = GEN_INT (1 << (7 - cr_reg[0]));
26537 RTVEC_ELT (p, 0)
26538 = gen_rtx_SET (reg,
26539 gen_rtx_UNSPEC (SImode, r, UNSPEC_MOVESI_FROM_CR));
26541 emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
26542 return;
26545 /* ??? It might be better to handle count == 2 / 3 cases here
26546 as well, using logical operations to combine the values. */
26549 emit_insn (gen_prologue_movesi_from_cr (reg));
26552 /* Return whether the split-stack arg pointer (r12) is used. */
26554 static bool
26555 split_stack_arg_pointer_used_p (void)
26557 /* If the pseudo holding the arg pointer is no longer a pseudo,
26558 then the arg pointer is used. */
26559 if (cfun->machine->split_stack_arg_pointer != NULL_RTX
26560 && (!REG_P (cfun->machine->split_stack_arg_pointer)
26561 || (REGNO (cfun->machine->split_stack_arg_pointer)
26562 < FIRST_PSEUDO_REGISTER)))
26563 return true;
26565 /* Unfortunately we also need to do some code scanning, since
26566 r12 may have been substituted for the pseudo. */
26567 rtx_insn *insn;
26568 basic_block bb = ENTRY_BLOCK_PTR_FOR_FN (cfun)->next_bb;
26569 FOR_BB_INSNS (bb, insn)
26570 if (NONDEBUG_INSN_P (insn))
26572 /* A call destroys r12. */
26573 if (CALL_P (insn))
26574 return false;
26576 df_ref use;
26577 FOR_EACH_INSN_USE (use, insn)
26579 rtx x = DF_REF_REG (use);
26580 if (REG_P (x) && REGNO (x) == 12)
26581 return true;
26583 df_ref def;
26584 FOR_EACH_INSN_DEF (def, insn)
26586 rtx x = DF_REF_REG (def);
26587 if (REG_P (x) && REGNO (x) == 12)
26588 return false;
26591 return bitmap_bit_p (DF_LR_OUT (bb), 12);
26594 /* Return whether we need to emit an ELFv2 global entry point prologue. */
26596 static bool
26597 rs6000_global_entry_point_needed_p (void)
26599 /* Only needed for the ELFv2 ABI. */
26600 if (DEFAULT_ABI != ABI_ELFv2)
26601 return false;
26603 /* With -msingle-pic-base, we assume the whole program shares the same
26604 TOC, so no global entry point prologues are needed anywhere. */
26605 if (TARGET_SINGLE_PIC_BASE)
26606 return false;
26608 /* Ensure we have a global entry point for thunks. ??? We could
26609 avoid that if the target routine doesn't need a global entry point,
26610 but we do not know whether this is the case at this point. */
26611 if (cfun->is_thunk)
26612 return true;
26614 /* For regular functions, rs6000_emit_prologue sets this flag if the
26615 routine ever uses the TOC pointer. */
26616 return cfun->machine->r2_setup_needed;
26619 /* Implement TARGET_SHRINK_WRAP_GET_SEPARATE_COMPONENTS. */
26620 static sbitmap
26621 rs6000_get_separate_components (void)
26623 rs6000_stack_t *info = rs6000_stack_info ();
26625 if (WORLD_SAVE_P (info))
26626 return NULL;
26628 gcc_assert (!(info->savres_strategy & SAVE_MULTIPLE)
26629 && !(info->savres_strategy & REST_MULTIPLE));
26631 /* Component 0 is the save/restore of LR (done via GPR0).
26632 Components 13..31 are the save/restore of GPR13..GPR31.
26633 Components 46..63 are the save/restore of FPR14..FPR31. */
26635 cfun->machine->n_components = 64;
26637 sbitmap components = sbitmap_alloc (cfun->machine->n_components);
26638 bitmap_clear (components);
26640 int reg_size = TARGET_32BIT ? 4 : 8;
26641 int fp_reg_size = 8;
26643 /* The GPRs we need saved to the frame. */
26644 if ((info->savres_strategy & SAVE_INLINE_GPRS)
26645 && (info->savres_strategy & REST_INLINE_GPRS))
26647 int offset = info->gp_save_offset;
26648 if (info->push_p)
26649 offset += info->total_size;
26651 for (unsigned regno = info->first_gp_reg_save; regno < 32; regno++)
26653 if (IN_RANGE (offset, -0x8000, 0x7fff)
26654 && save_reg_p (regno))
26655 bitmap_set_bit (components, regno);
26657 offset += reg_size;
26661 /* Don't mess with the hard frame pointer. */
26662 if (frame_pointer_needed)
26663 bitmap_clear_bit (components, HARD_FRAME_POINTER_REGNUM);
26665 /* Don't mess with the fixed TOC register. */
26666 if ((TARGET_TOC && TARGET_MINIMAL_TOC)
26667 || (flag_pic == 1 && DEFAULT_ABI == ABI_V4)
26668 || (flag_pic && DEFAULT_ABI == ABI_DARWIN))
26669 bitmap_clear_bit (components, RS6000_PIC_OFFSET_TABLE_REGNUM);
26671 /* The FPRs we need saved to the frame. */
26672 if ((info->savres_strategy & SAVE_INLINE_FPRS)
26673 && (info->savres_strategy & REST_INLINE_FPRS))
26675 int offset = info->fp_save_offset;
26676 if (info->push_p)
26677 offset += info->total_size;
26679 for (unsigned regno = info->first_fp_reg_save; regno < 64; regno++)
26681 if (IN_RANGE (offset, -0x8000, 0x7fff) && save_reg_p (regno))
26682 bitmap_set_bit (components, regno);
26684 offset += fp_reg_size;
26688 /* Optimize LR save and restore if we can. This is component 0. Any
26689 out-of-line register save/restore routines need LR. */
26690 if (info->lr_save_p
26691 && !(flag_pic && (DEFAULT_ABI == ABI_V4 || DEFAULT_ABI == ABI_DARWIN))
26692 && (info->savres_strategy & SAVE_INLINE_GPRS)
26693 && (info->savres_strategy & REST_INLINE_GPRS)
26694 && (info->savres_strategy & SAVE_INLINE_FPRS)
26695 && (info->savres_strategy & REST_INLINE_FPRS)
26696 && (info->savres_strategy & SAVE_INLINE_VRS)
26697 && (info->savres_strategy & REST_INLINE_VRS))
26699 int offset = info->lr_save_offset;
26700 if (info->push_p)
26701 offset += info->total_size;
26702 if (IN_RANGE (offset, -0x8000, 0x7fff))
26703 bitmap_set_bit (components, 0);
26706 return components;
26709 /* Implement TARGET_SHRINK_WRAP_COMPONENTS_FOR_BB. */
26710 static sbitmap
26711 rs6000_components_for_bb (basic_block bb)
26713 rs6000_stack_t *info = rs6000_stack_info ();
26715 bitmap in = DF_LIVE_IN (bb);
26716 bitmap gen = &DF_LIVE_BB_INFO (bb)->gen;
26717 bitmap kill = &DF_LIVE_BB_INFO (bb)->kill;
26719 sbitmap components = sbitmap_alloc (cfun->machine->n_components);
26720 bitmap_clear (components);
26722 /* A register is used in a bb if it is in the IN, GEN, or KILL sets. */
26724 /* GPRs. */
26725 for (unsigned regno = info->first_gp_reg_save; regno < 32; regno++)
26726 if (bitmap_bit_p (in, regno)
26727 || bitmap_bit_p (gen, regno)
26728 || bitmap_bit_p (kill, regno))
26729 bitmap_set_bit (components, regno);
26731 /* FPRs. */
26732 for (unsigned regno = info->first_fp_reg_save; regno < 64; regno++)
26733 if (bitmap_bit_p (in, regno)
26734 || bitmap_bit_p (gen, regno)
26735 || bitmap_bit_p (kill, regno))
26736 bitmap_set_bit (components, regno);
26738 /* The link register. */
26739 if (bitmap_bit_p (in, LR_REGNO)
26740 || bitmap_bit_p (gen, LR_REGNO)
26741 || bitmap_bit_p (kill, LR_REGNO))
26742 bitmap_set_bit (components, 0);
26744 return components;
26747 /* Implement TARGET_SHRINK_WRAP_DISQUALIFY_COMPONENTS. */
26748 static void
26749 rs6000_disqualify_components (sbitmap components, edge e,
26750 sbitmap edge_components, bool /*is_prologue*/)
26752 /* Our LR pro/epilogue code moves LR via R0, so R0 had better not be
26753 live where we want to place that code. */
26754 if (bitmap_bit_p (edge_components, 0)
26755 && bitmap_bit_p (DF_LIVE_IN (e->dest), 0))
26757 if (dump_file)
26758 fprintf (dump_file, "Disqualifying LR because GPR0 is live "
26759 "on entry to bb %d\n", e->dest->index);
26760 bitmap_clear_bit (components, 0);
26764 /* Implement TARGET_SHRINK_WRAP_EMIT_PROLOGUE_COMPONENTS. */
26765 static void
26766 rs6000_emit_prologue_components (sbitmap components)
26768 rs6000_stack_t *info = rs6000_stack_info ();
26769 rtx ptr_reg = gen_rtx_REG (Pmode, frame_pointer_needed
26770 ? HARD_FRAME_POINTER_REGNUM
26771 : STACK_POINTER_REGNUM);
26773 machine_mode reg_mode = Pmode;
26774 int reg_size = TARGET_32BIT ? 4 : 8;
26775 machine_mode fp_reg_mode = (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
26776 ? DFmode : SFmode;
26777 int fp_reg_size = 8;
26779 /* Prologue for LR. */
26780 if (bitmap_bit_p (components, 0))
26782 rtx reg = gen_rtx_REG (reg_mode, 0);
26783 rtx_insn *insn = emit_move_insn (reg, gen_rtx_REG (reg_mode, LR_REGNO));
26784 RTX_FRAME_RELATED_P (insn) = 1;
26785 add_reg_note (insn, REG_CFA_REGISTER, NULL);
26787 int offset = info->lr_save_offset;
26788 if (info->push_p)
26789 offset += info->total_size;
26791 insn = emit_insn (gen_frame_store (reg, ptr_reg, offset));
26792 RTX_FRAME_RELATED_P (insn) = 1;
26793 rtx lr = gen_rtx_REG (reg_mode, LR_REGNO);
26794 rtx mem = copy_rtx (SET_DEST (single_set (insn)));
26795 add_reg_note (insn, REG_CFA_OFFSET, gen_rtx_SET (mem, lr));
26798 /* Prologue for the GPRs. */
26799 int offset = info->gp_save_offset;
26800 if (info->push_p)
26801 offset += info->total_size;
26803 for (int i = info->first_gp_reg_save; i < 32; i++)
26805 if (bitmap_bit_p (components, i))
26807 rtx reg = gen_rtx_REG (reg_mode, i);
26808 rtx_insn *insn = emit_insn (gen_frame_store (reg, ptr_reg, offset));
26809 RTX_FRAME_RELATED_P (insn) = 1;
26810 rtx set = copy_rtx (single_set (insn));
26811 add_reg_note (insn, REG_CFA_OFFSET, set);
26814 offset += reg_size;
26817 /* Prologue for the FPRs. */
26818 offset = info->fp_save_offset;
26819 if (info->push_p)
26820 offset += info->total_size;
26822 for (int i = info->first_fp_reg_save; i < 64; i++)
26824 if (bitmap_bit_p (components, i))
26826 rtx reg = gen_rtx_REG (fp_reg_mode, i);
26827 rtx_insn *insn = emit_insn (gen_frame_store (reg, ptr_reg, offset));
26828 RTX_FRAME_RELATED_P (insn) = 1;
26829 rtx set = copy_rtx (single_set (insn));
26830 add_reg_note (insn, REG_CFA_OFFSET, set);
26833 offset += fp_reg_size;
26837 /* Implement TARGET_SHRINK_WRAP_EMIT_EPILOGUE_COMPONENTS. */
26838 static void
26839 rs6000_emit_epilogue_components (sbitmap components)
26841 rs6000_stack_t *info = rs6000_stack_info ();
26842 rtx ptr_reg = gen_rtx_REG (Pmode, frame_pointer_needed
26843 ? HARD_FRAME_POINTER_REGNUM
26844 : STACK_POINTER_REGNUM);
26846 machine_mode reg_mode = Pmode;
26847 int reg_size = TARGET_32BIT ? 4 : 8;
26849 machine_mode fp_reg_mode = (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
26850 ? DFmode : SFmode;
26851 int fp_reg_size = 8;
26853 /* Epilogue for the FPRs. */
26854 int offset = info->fp_save_offset;
26855 if (info->push_p)
26856 offset += info->total_size;
26858 for (int i = info->first_fp_reg_save; i < 64; i++)
26860 if (bitmap_bit_p (components, i))
26862 rtx reg = gen_rtx_REG (fp_reg_mode, i);
26863 rtx_insn *insn = emit_insn (gen_frame_load (reg, ptr_reg, offset));
26864 RTX_FRAME_RELATED_P (insn) = 1;
26865 add_reg_note (insn, REG_CFA_RESTORE, reg);
26868 offset += fp_reg_size;
26871 /* Epilogue for the GPRs. */
26872 offset = info->gp_save_offset;
26873 if (info->push_p)
26874 offset += info->total_size;
26876 for (int i = info->first_gp_reg_save; i < 32; i++)
26878 if (bitmap_bit_p (components, i))
26880 rtx reg = gen_rtx_REG (reg_mode, i);
26881 rtx_insn *insn = emit_insn (gen_frame_load (reg, ptr_reg, offset));
26882 RTX_FRAME_RELATED_P (insn) = 1;
26883 add_reg_note (insn, REG_CFA_RESTORE, reg);
26886 offset += reg_size;
26889 /* Epilogue for LR. */
26890 if (bitmap_bit_p (components, 0))
26892 int offset = info->lr_save_offset;
26893 if (info->push_p)
26894 offset += info->total_size;
26896 rtx reg = gen_rtx_REG (reg_mode, 0);
26897 rtx_insn *insn = emit_insn (gen_frame_load (reg, ptr_reg, offset));
26899 rtx lr = gen_rtx_REG (Pmode, LR_REGNO);
26900 insn = emit_move_insn (lr, reg);
26901 RTX_FRAME_RELATED_P (insn) = 1;
26902 add_reg_note (insn, REG_CFA_RESTORE, lr);
26906 /* Implement TARGET_SHRINK_WRAP_SET_HANDLED_COMPONENTS. */
26907 static void
26908 rs6000_set_handled_components (sbitmap components)
26910 rs6000_stack_t *info = rs6000_stack_info ();
26912 for (int i = info->first_gp_reg_save; i < 32; i++)
26913 if (bitmap_bit_p (components, i))
26914 cfun->machine->gpr_is_wrapped_separately[i] = true;
26916 for (int i = info->first_fp_reg_save; i < 64; i++)
26917 if (bitmap_bit_p (components, i))
26918 cfun->machine->fpr_is_wrapped_separately[i - 32] = true;
26920 if (bitmap_bit_p (components, 0))
26921 cfun->machine->lr_is_wrapped_separately = true;
26924 /* VRSAVE is a bit vector representing which AltiVec registers
26925 are used. The OS uses this to determine which vector
26926 registers to save on a context switch. We need to save
26927 VRSAVE on the stack frame, add whatever AltiVec registers we
26928 used in this function, and do the corresponding magic in the
26929 epilogue. */
26930 static void
26931 emit_vrsave_prologue (rs6000_stack_t *info, int save_regno,
26932 HOST_WIDE_INT frame_off, rtx frame_reg_rtx)
26934 /* Get VRSAVE into a GPR. */
26935 rtx reg = gen_rtx_REG (SImode, save_regno);
26936 rtx vrsave = gen_rtx_REG (SImode, VRSAVE_REGNO);
26937 if (TARGET_MACHO)
26938 emit_insn (gen_get_vrsave_internal (reg));
26939 else
26940 emit_insn (gen_rtx_SET (reg, vrsave));
26942 /* Save VRSAVE. */
26943 int offset = info->vrsave_save_offset + frame_off;
26944 emit_insn (gen_frame_store (reg, frame_reg_rtx, offset));
26946 /* Include the registers in the mask. */
26947 emit_insn (gen_iorsi3 (reg, reg, GEN_INT (info->vrsave_mask)));
26949 emit_insn (generate_set_vrsave (reg, info, 0));
26952 /* Set up the arg pointer (r12) for -fsplit-stack code. If __morestack was
26953 called, it left the arg pointer to the old stack in r29. Otherwise, the
26954 arg pointer is the top of the current frame. */
26955 static void
26956 emit_split_stack_prologue (rs6000_stack_t *info, rtx_insn *sp_adjust,
26957 HOST_WIDE_INT frame_off, rtx frame_reg_rtx)
26959 cfun->machine->split_stack_argp_used = true;
26961 if (sp_adjust)
26963 rtx r12 = gen_rtx_REG (Pmode, 12);
26964 rtx sp_reg_rtx = gen_rtx_REG (Pmode, STACK_POINTER_REGNUM);
26965 rtx set_r12 = gen_rtx_SET (r12, sp_reg_rtx);
26966 emit_insn_before (set_r12, sp_adjust);
26968 else if (frame_off != 0 || REGNO (frame_reg_rtx) != 12)
26970 rtx r12 = gen_rtx_REG (Pmode, 12);
26971 if (frame_off == 0)
26972 emit_move_insn (r12, frame_reg_rtx);
26973 else
26974 emit_insn (gen_add3_insn (r12, frame_reg_rtx, GEN_INT (frame_off)));
26977 if (info->push_p)
26979 rtx r12 = gen_rtx_REG (Pmode, 12);
26980 rtx r29 = gen_rtx_REG (Pmode, 29);
26981 rtx cr7 = gen_rtx_REG (CCUNSmode, CR7_REGNO);
26982 rtx not_more = gen_label_rtx ();
26983 rtx jump;
26985 jump = gen_rtx_IF_THEN_ELSE (VOIDmode,
26986 gen_rtx_GEU (VOIDmode, cr7, const0_rtx),
26987 gen_rtx_LABEL_REF (VOIDmode, not_more),
26988 pc_rtx);
26989 jump = emit_jump_insn (gen_rtx_SET (pc_rtx, jump));
26990 JUMP_LABEL (jump) = not_more;
26991 LABEL_NUSES (not_more) += 1;
26992 emit_move_insn (r12, r29);
26993 emit_label (not_more);
26997 /* Emit function prologue as insns. */
26999 void
27000 rs6000_emit_prologue (void)
27002 rs6000_stack_t *info = rs6000_stack_info ();
27003 machine_mode reg_mode = Pmode;
27004 int reg_size = TARGET_32BIT ? 4 : 8;
27005 machine_mode fp_reg_mode = (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
27006 ? DFmode : SFmode;
27007 int fp_reg_size = 8;
27008 rtx sp_reg_rtx = gen_rtx_REG (Pmode, STACK_POINTER_REGNUM);
27009 rtx frame_reg_rtx = sp_reg_rtx;
27010 unsigned int cr_save_regno;
27011 rtx cr_save_rtx = NULL_RTX;
27012 rtx_insn *insn;
27013 int strategy;
27014 int using_static_chain_p = (cfun->static_chain_decl != NULL_TREE
27015 && df_regs_ever_live_p (STATIC_CHAIN_REGNUM)
27016 && call_used_regs[STATIC_CHAIN_REGNUM]);
27017 int using_split_stack = (flag_split_stack
27018 && (lookup_attribute ("no_split_stack",
27019 DECL_ATTRIBUTES (cfun->decl))
27020 == NULL));
27022 /* Offset to top of frame for frame_reg and sp respectively. */
27023 HOST_WIDE_INT frame_off = 0;
27024 HOST_WIDE_INT sp_off = 0;
27025 /* sp_adjust is the stack adjusting instruction, tracked so that the
27026 insn setting up the split-stack arg pointer can be emitted just
27027 prior to it, when r12 is not used here for other purposes. */
27028 rtx_insn *sp_adjust = 0;
27030 #if CHECKING_P
27031 /* Track and check usage of r0, r11, r12. */
27032 int reg_inuse = using_static_chain_p ? 1 << 11 : 0;
27033 #define START_USE(R) do \
27035 gcc_assert ((reg_inuse & (1 << (R))) == 0); \
27036 reg_inuse |= 1 << (R); \
27037 } while (0)
27038 #define END_USE(R) do \
27040 gcc_assert ((reg_inuse & (1 << (R))) != 0); \
27041 reg_inuse &= ~(1 << (R)); \
27042 } while (0)
27043 #define NOT_INUSE(R) do \
27045 gcc_assert ((reg_inuse & (1 << (R))) == 0); \
27046 } while (0)
27047 #else
27048 #define START_USE(R) do {} while (0)
27049 #define END_USE(R) do {} while (0)
27050 #define NOT_INUSE(R) do {} while (0)
27051 #endif
27053 if (DEFAULT_ABI == ABI_ELFv2
27054 && !TARGET_SINGLE_PIC_BASE)
27056 cfun->machine->r2_setup_needed = df_regs_ever_live_p (TOC_REGNUM);
27058 /* With -mminimal-toc we may generate an extra use of r2 below. */
27059 if (TARGET_TOC && TARGET_MINIMAL_TOC
27060 && !constant_pool_empty_p ())
27061 cfun->machine->r2_setup_needed = true;
27065 if (flag_stack_usage_info)
27066 current_function_static_stack_size = info->total_size;
27068 if (flag_stack_check == STATIC_BUILTIN_STACK_CHECK)
27070 HOST_WIDE_INT size = info->total_size;
27072 if (crtl->is_leaf && !cfun->calls_alloca)
27074 if (size > PROBE_INTERVAL && size > get_stack_check_protect ())
27075 rs6000_emit_probe_stack_range (get_stack_check_protect (),
27076 size - get_stack_check_protect ());
27078 else if (size > 0)
27079 rs6000_emit_probe_stack_range (get_stack_check_protect (), size);
27082 if (TARGET_FIX_AND_CONTINUE)
27084 /* gdb on darwin arranges to forward a function from the old
27085 address by modifying the first 5 instructions of the function
27086 to branch to the overriding function. This is necessary to
27087 permit function pointers that point to the old function to
27088 actually forward to the new function. */
27089 emit_insn (gen_nop ());
27090 emit_insn (gen_nop ());
27091 emit_insn (gen_nop ());
27092 emit_insn (gen_nop ());
27093 emit_insn (gen_nop ());
27096 /* Handle world saves specially here. */
27097 if (WORLD_SAVE_P (info))
27099 int i, j, sz;
27100 rtx treg;
27101 rtvec p;
27102 rtx reg0;
27104 /* save_world expects lr in r0. */
27105 reg0 = gen_rtx_REG (Pmode, 0);
27106 if (info->lr_save_p)
27108 insn = emit_move_insn (reg0,
27109 gen_rtx_REG (Pmode, LR_REGNO));
27110 RTX_FRAME_RELATED_P (insn) = 1;
27113 /* The SAVE_WORLD and RESTORE_WORLD routines make a number of
27114 assumptions about the offsets of various bits of the stack
27115 frame. */
27116 gcc_assert (info->gp_save_offset == -220
27117 && info->fp_save_offset == -144
27118 && info->lr_save_offset == 8
27119 && info->cr_save_offset == 4
27120 && info->push_p
27121 && info->lr_save_p
27122 && (!crtl->calls_eh_return
27123 || info->ehrd_offset == -432)
27124 && info->vrsave_save_offset == -224
27125 && info->altivec_save_offset == -416);
27127 treg = gen_rtx_REG (SImode, 11);
27128 emit_move_insn (treg, GEN_INT (-info->total_size));
27130 /* SAVE_WORLD takes the caller's LR in R0 and the frame size
27131 in R11. It also clobbers R12, so beware! */
27133 /* Preserve CR2 for save_world prologues */
27134 sz = 5;
27135 sz += 32 - info->first_gp_reg_save;
27136 sz += 64 - info->first_fp_reg_save;
27137 sz += LAST_ALTIVEC_REGNO - info->first_altivec_reg_save + 1;
27138 p = rtvec_alloc (sz);
27139 j = 0;
27140 RTVEC_ELT (p, j++) = gen_rtx_CLOBBER (VOIDmode,
27141 gen_rtx_REG (SImode,
27142 LR_REGNO));
27143 RTVEC_ELT (p, j++) = gen_rtx_USE (VOIDmode,
27144 gen_rtx_SYMBOL_REF (Pmode,
27145 "*save_world"));
27146 /* We do floats first so that the instruction pattern matches
27147 properly. */
27148 for (i = 0; i < 64 - info->first_fp_reg_save; i++)
27149 RTVEC_ELT (p, j++)
27150 = gen_frame_store (gen_rtx_REG (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT
27151 ? DFmode : SFmode,
27152 info->first_fp_reg_save + i),
27153 frame_reg_rtx,
27154 info->fp_save_offset + frame_off + 8 * i);
27155 for (i = 0; info->first_altivec_reg_save + i <= LAST_ALTIVEC_REGNO; i++)
27156 RTVEC_ELT (p, j++)
27157 = gen_frame_store (gen_rtx_REG (V4SImode,
27158 info->first_altivec_reg_save + i),
27159 frame_reg_rtx,
27160 info->altivec_save_offset + frame_off + 16 * i);
27161 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
27162 RTVEC_ELT (p, j++)
27163 = gen_frame_store (gen_rtx_REG (reg_mode, info->first_gp_reg_save + i),
27164 frame_reg_rtx,
27165 info->gp_save_offset + frame_off + reg_size * i);
27167 /* CR register traditionally saved as CR2. */
27168 RTVEC_ELT (p, j++)
27169 = gen_frame_store (gen_rtx_REG (SImode, CR2_REGNO),
27170 frame_reg_rtx, info->cr_save_offset + frame_off);
27171 /* Explain about use of R0. */
27172 if (info->lr_save_p)
27173 RTVEC_ELT (p, j++)
27174 = gen_frame_store (reg0,
27175 frame_reg_rtx, info->lr_save_offset + frame_off);
27176 /* Explain what happens to the stack pointer. */
27178 rtx newval = gen_rtx_PLUS (Pmode, sp_reg_rtx, treg);
27179 RTVEC_ELT (p, j++) = gen_rtx_SET (sp_reg_rtx, newval);
27182 insn = emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
27183 rs6000_frame_related (insn, frame_reg_rtx, sp_off - frame_off,
27184 treg, GEN_INT (-info->total_size));
27185 sp_off = frame_off = info->total_size;
27188 strategy = info->savres_strategy;
27190 /* For V.4, update stack before we do any saving and set back pointer. */
27191 if (! WORLD_SAVE_P (info)
27192 && info->push_p
27193 && (DEFAULT_ABI == ABI_V4
27194 || crtl->calls_eh_return))
27196 bool need_r11 = (!(strategy & SAVE_INLINE_FPRS)
27197 || !(strategy & SAVE_INLINE_GPRS)
27198 || !(strategy & SAVE_INLINE_VRS));
27199 int ptr_regno = -1;
27200 rtx ptr_reg = NULL_RTX;
27201 int ptr_off = 0;
27203 if (info->total_size < 32767)
27204 frame_off = info->total_size;
27205 else if (need_r11)
27206 ptr_regno = 11;
27207 else if (info->cr_save_p
27208 || info->lr_save_p
27209 || info->first_fp_reg_save < 64
27210 || info->first_gp_reg_save < 32
27211 || info->altivec_size != 0
27212 || info->vrsave_size != 0
27213 || crtl->calls_eh_return)
27214 ptr_regno = 12;
27215 else
27217 /* The prologue won't be saving any regs so there is no need
27218 to set up a frame register to access any frame save area.
27219 We also won't be using frame_off anywhere below, but set
27220 the correct value anyway to protect against future
27221 changes to this function. */
27222 frame_off = info->total_size;
27224 if (ptr_regno != -1)
27226 /* Set up the frame offset to that needed by the first
27227 out-of-line save function. */
27228 START_USE (ptr_regno);
27229 ptr_reg = gen_rtx_REG (Pmode, ptr_regno);
27230 frame_reg_rtx = ptr_reg;
27231 if (!(strategy & SAVE_INLINE_FPRS) && info->fp_size != 0)
27232 gcc_checking_assert (info->fp_save_offset + info->fp_size == 0);
27233 else if (!(strategy & SAVE_INLINE_GPRS) && info->first_gp_reg_save < 32)
27234 ptr_off = info->gp_save_offset + info->gp_size;
27235 else if (!(strategy & SAVE_INLINE_VRS) && info->altivec_size != 0)
27236 ptr_off = info->altivec_save_offset + info->altivec_size;
27237 frame_off = -ptr_off;
27239 sp_adjust = rs6000_emit_allocate_stack (info->total_size,
27240 ptr_reg, ptr_off);
27241 if (REGNO (frame_reg_rtx) == 12)
27242 sp_adjust = 0;
27243 sp_off = info->total_size;
27244 if (frame_reg_rtx != sp_reg_rtx)
27245 rs6000_emit_stack_tie (frame_reg_rtx, false);
27248 /* If we use the link register, get it into r0. */
27249 if (!WORLD_SAVE_P (info) && info->lr_save_p
27250 && !cfun->machine->lr_is_wrapped_separately)
27252 rtx addr, reg, mem;
27254 reg = gen_rtx_REG (Pmode, 0);
27255 START_USE (0);
27256 insn = emit_move_insn (reg, gen_rtx_REG (Pmode, LR_REGNO));
27257 RTX_FRAME_RELATED_P (insn) = 1;
27259 if (!(strategy & (SAVE_NOINLINE_GPRS_SAVES_LR
27260 | SAVE_NOINLINE_FPRS_SAVES_LR)))
27262 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
27263 GEN_INT (info->lr_save_offset + frame_off));
27264 mem = gen_rtx_MEM (Pmode, addr);
27265 /* This should not be of rs6000_sr_alias_set, because of
27266 __builtin_return_address. */
27268 insn = emit_move_insn (mem, reg);
27269 rs6000_frame_related (insn, frame_reg_rtx, sp_off - frame_off,
27270 NULL_RTX, NULL_RTX);
27271 END_USE (0);
27275 /* If we need to save CR, put it into r12 or r11. Choose r12 except when
27276 r12 will be needed by out-of-line gpr restore. */
27277 cr_save_regno = ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
27278 && !(strategy & (SAVE_INLINE_GPRS
27279 | SAVE_NOINLINE_GPRS_SAVES_LR))
27280 ? 11 : 12);
27281 if (!WORLD_SAVE_P (info)
27282 && info->cr_save_p
27283 && REGNO (frame_reg_rtx) != cr_save_regno
27284 && !(using_static_chain_p && cr_save_regno == 11)
27285 && !(using_split_stack && cr_save_regno == 12 && sp_adjust))
27287 cr_save_rtx = gen_rtx_REG (SImode, cr_save_regno);
27288 START_USE (cr_save_regno);
27289 rs6000_emit_prologue_move_from_cr (cr_save_rtx);
27292 /* Do any required saving of fpr's. If only one or two to save, do
27293 it ourselves. Otherwise, call function. */
27294 if (!WORLD_SAVE_P (info) && (strategy & SAVE_INLINE_FPRS))
27296 int offset = info->fp_save_offset + frame_off;
27297 for (int i = info->first_fp_reg_save; i < 64; i++)
27299 if (save_reg_p (i)
27300 && !cfun->machine->fpr_is_wrapped_separately[i - 32])
27301 emit_frame_save (frame_reg_rtx, fp_reg_mode, i, offset,
27302 sp_off - frame_off);
27304 offset += fp_reg_size;
27307 else if (!WORLD_SAVE_P (info) && info->first_fp_reg_save != 64)
27309 bool lr = (strategy & SAVE_NOINLINE_FPRS_SAVES_LR) != 0;
27310 int sel = SAVRES_SAVE | SAVRES_FPR | (lr ? SAVRES_LR : 0);
27311 unsigned ptr_regno = ptr_regno_for_savres (sel);
27312 rtx ptr_reg = frame_reg_rtx;
27314 if (REGNO (frame_reg_rtx) == ptr_regno)
27315 gcc_checking_assert (frame_off == 0);
27316 else
27318 ptr_reg = gen_rtx_REG (Pmode, ptr_regno);
27319 NOT_INUSE (ptr_regno);
27320 emit_insn (gen_add3_insn (ptr_reg,
27321 frame_reg_rtx, GEN_INT (frame_off)));
27323 insn = rs6000_emit_savres_rtx (info, ptr_reg,
27324 info->fp_save_offset,
27325 info->lr_save_offset,
27326 DFmode, sel);
27327 rs6000_frame_related (insn, ptr_reg, sp_off,
27328 NULL_RTX, NULL_RTX);
27329 if (lr)
27330 END_USE (0);
27333 /* Save GPRs. This is done as a PARALLEL if we are using
27334 the store-multiple instructions. */
27335 if (!WORLD_SAVE_P (info) && !(strategy & SAVE_INLINE_GPRS))
27337 bool lr = (strategy & SAVE_NOINLINE_GPRS_SAVES_LR) != 0;
27338 int sel = SAVRES_SAVE | SAVRES_GPR | (lr ? SAVRES_LR : 0);
27339 unsigned ptr_regno = ptr_regno_for_savres (sel);
27340 rtx ptr_reg = frame_reg_rtx;
27341 bool ptr_set_up = REGNO (ptr_reg) == ptr_regno;
27342 int end_save = info->gp_save_offset + info->gp_size;
27343 int ptr_off;
27345 if (ptr_regno == 12)
27346 sp_adjust = 0;
27347 if (!ptr_set_up)
27348 ptr_reg = gen_rtx_REG (Pmode, ptr_regno);
27350 /* Need to adjust r11 (r12) if we saved any FPRs. */
27351 if (end_save + frame_off != 0)
27353 rtx offset = GEN_INT (end_save + frame_off);
27355 if (ptr_set_up)
27356 frame_off = -end_save;
27357 else
27358 NOT_INUSE (ptr_regno);
27359 emit_insn (gen_add3_insn (ptr_reg, frame_reg_rtx, offset));
27361 else if (!ptr_set_up)
27363 NOT_INUSE (ptr_regno);
27364 emit_move_insn (ptr_reg, frame_reg_rtx);
27366 ptr_off = -end_save;
27367 insn = rs6000_emit_savres_rtx (info, ptr_reg,
27368 info->gp_save_offset + ptr_off,
27369 info->lr_save_offset + ptr_off,
27370 reg_mode, sel);
27371 rs6000_frame_related (insn, ptr_reg, sp_off - ptr_off,
27372 NULL_RTX, NULL_RTX);
27373 if (lr)
27374 END_USE (0);
27376 else if (!WORLD_SAVE_P (info) && (strategy & SAVE_MULTIPLE))
27378 rtvec p;
27379 int i;
27380 p = rtvec_alloc (32 - info->first_gp_reg_save);
27381 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
27382 RTVEC_ELT (p, i)
27383 = gen_frame_store (gen_rtx_REG (reg_mode, info->first_gp_reg_save + i),
27384 frame_reg_rtx,
27385 info->gp_save_offset + frame_off + reg_size * i);
27386 insn = emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
27387 rs6000_frame_related (insn, frame_reg_rtx, sp_off - frame_off,
27388 NULL_RTX, NULL_RTX);
27390 else if (!WORLD_SAVE_P (info))
27392 int offset = info->gp_save_offset + frame_off;
27393 for (int i = info->first_gp_reg_save; i < 32; i++)
27395 if (save_reg_p (i)
27396 && !cfun->machine->gpr_is_wrapped_separately[i])
27397 emit_frame_save (frame_reg_rtx, reg_mode, i, offset,
27398 sp_off - frame_off);
27400 offset += reg_size;
27404 if (crtl->calls_eh_return)
27406 unsigned int i;
27407 rtvec p;
27409 for (i = 0; ; ++i)
27411 unsigned int regno = EH_RETURN_DATA_REGNO (i);
27412 if (regno == INVALID_REGNUM)
27413 break;
27416 p = rtvec_alloc (i);
27418 for (i = 0; ; ++i)
27420 unsigned int regno = EH_RETURN_DATA_REGNO (i);
27421 if (regno == INVALID_REGNUM)
27422 break;
27424 rtx set
27425 = gen_frame_store (gen_rtx_REG (reg_mode, regno),
27426 sp_reg_rtx,
27427 info->ehrd_offset + sp_off + reg_size * (int) i);
27428 RTVEC_ELT (p, i) = set;
27429 RTX_FRAME_RELATED_P (set) = 1;
27432 insn = emit_insn (gen_blockage ());
27433 RTX_FRAME_RELATED_P (insn) = 1;
27434 add_reg_note (insn, REG_FRAME_RELATED_EXPR, gen_rtx_PARALLEL (VOIDmode, p));
27437 /* In AIX ABI we need to make sure r2 is really saved. */
27438 if (TARGET_AIX && crtl->calls_eh_return)
27440 rtx tmp_reg, tmp_reg_si, hi, lo, compare_result, toc_save_done, jump;
27441 rtx join_insn, note;
27442 rtx_insn *save_insn;
27443 long toc_restore_insn;
27445 tmp_reg = gen_rtx_REG (Pmode, 11);
27446 tmp_reg_si = gen_rtx_REG (SImode, 11);
27447 if (using_static_chain_p)
27449 START_USE (0);
27450 emit_move_insn (gen_rtx_REG (Pmode, 0), tmp_reg);
27452 else
27453 START_USE (11);
27454 emit_move_insn (tmp_reg, gen_rtx_REG (Pmode, LR_REGNO));
27455 /* Peek at instruction to which this function returns. If it's
27456 restoring r2, then we know we've already saved r2. We can't
27457 unconditionally save r2 because the value we have will already
27458 be updated if we arrived at this function via a plt call or
27459 toc adjusting stub. */
27460 emit_move_insn (tmp_reg_si, gen_rtx_MEM (SImode, tmp_reg));
27461 toc_restore_insn = ((TARGET_32BIT ? 0x80410000 : 0xE8410000)
27462 + RS6000_TOC_SAVE_SLOT);
27463 hi = gen_int_mode (toc_restore_insn & ~0xffff, SImode);
27464 emit_insn (gen_xorsi3 (tmp_reg_si, tmp_reg_si, hi));
27465 compare_result = gen_rtx_REG (CCUNSmode, CR0_REGNO);
27466 validate_condition_mode (EQ, CCUNSmode);
27467 lo = gen_int_mode (toc_restore_insn & 0xffff, SImode);
27468 emit_insn (gen_rtx_SET (compare_result,
27469 gen_rtx_COMPARE (CCUNSmode, tmp_reg_si, lo)));
27470 toc_save_done = gen_label_rtx ();
27471 jump = gen_rtx_IF_THEN_ELSE (VOIDmode,
27472 gen_rtx_EQ (VOIDmode, compare_result,
27473 const0_rtx),
27474 gen_rtx_LABEL_REF (VOIDmode, toc_save_done),
27475 pc_rtx);
27476 jump = emit_jump_insn (gen_rtx_SET (pc_rtx, jump));
27477 JUMP_LABEL (jump) = toc_save_done;
27478 LABEL_NUSES (toc_save_done) += 1;
27480 save_insn = emit_frame_save (frame_reg_rtx, reg_mode,
27481 TOC_REGNUM, frame_off + RS6000_TOC_SAVE_SLOT,
27482 sp_off - frame_off);
27484 emit_label (toc_save_done);
27486 /* ??? If we leave SAVE_INSN as marked as saving R2, then we'll
27487 have a CFG that has different saves along different paths.
27488 Move the note to a dummy blockage insn, which describes that
27489 R2 is unconditionally saved after the label. */
27490 /* ??? An alternate representation might be a special insn pattern
27491 containing both the branch and the store. That might let the
27492 code that minimizes the number of DW_CFA_advance opcodes better
27493 freedom in placing the annotations. */
27494 note = find_reg_note (save_insn, REG_FRAME_RELATED_EXPR, NULL);
27495 if (note)
27496 remove_note (save_insn, note);
27497 else
27498 note = alloc_reg_note (REG_FRAME_RELATED_EXPR,
27499 copy_rtx (PATTERN (save_insn)), NULL_RTX);
27500 RTX_FRAME_RELATED_P (save_insn) = 0;
27502 join_insn = emit_insn (gen_blockage ());
27503 REG_NOTES (join_insn) = note;
27504 RTX_FRAME_RELATED_P (join_insn) = 1;
27506 if (using_static_chain_p)
27508 emit_move_insn (tmp_reg, gen_rtx_REG (Pmode, 0));
27509 END_USE (0);
27511 else
27512 END_USE (11);
27515 /* Save CR if we use any that must be preserved. */
27516 if (!WORLD_SAVE_P (info) && info->cr_save_p)
27518 rtx addr = gen_rtx_PLUS (Pmode, frame_reg_rtx,
27519 GEN_INT (info->cr_save_offset + frame_off));
27520 rtx mem = gen_frame_mem (SImode, addr);
27522 /* If we didn't copy cr before, do so now using r0. */
27523 if (cr_save_rtx == NULL_RTX)
27525 START_USE (0);
27526 cr_save_rtx = gen_rtx_REG (SImode, 0);
27527 rs6000_emit_prologue_move_from_cr (cr_save_rtx);
27530 /* Saving CR requires a two-instruction sequence: one instruction
27531 to move the CR to a general-purpose register, and a second
27532 instruction that stores the GPR to memory.
27534 We do not emit any DWARF CFI records for the first of these,
27535 because we cannot properly represent the fact that CR is saved in
27536 a register. One reason is that we cannot express that multiple
27537 CR fields are saved; another reason is that on 64-bit, the size
27538 of the CR register in DWARF (4 bytes) differs from the size of
27539 a general-purpose register.
27541 This means if any intervening instruction were to clobber one of
27542 the call-saved CR fields, we'd have incorrect CFI. To prevent
27543 this from happening, we mark the store to memory as a use of
27544 those CR fields, which prevents any such instruction from being
27545 scheduled in between the two instructions. */
27546 rtx crsave_v[9];
27547 int n_crsave = 0;
27548 int i;
27550 crsave_v[n_crsave++] = gen_rtx_SET (mem, cr_save_rtx);
27551 for (i = 0; i < 8; i++)
27552 if (save_reg_p (CR0_REGNO + i))
27553 crsave_v[n_crsave++]
27554 = gen_rtx_USE (VOIDmode, gen_rtx_REG (CCmode, CR0_REGNO + i));
27556 insn = emit_insn (gen_rtx_PARALLEL (VOIDmode,
27557 gen_rtvec_v (n_crsave, crsave_v)));
27558 END_USE (REGNO (cr_save_rtx));
27560 /* Now, there's no way that dwarf2out_frame_debug_expr is going to
27561 understand '(unspec:SI [(reg:CC 68) ...] UNSPEC_MOVESI_FROM_CR)',
27562 so we need to construct a frame expression manually. */
27563 RTX_FRAME_RELATED_P (insn) = 1;
27565 /* Update address to be stack-pointer relative, like
27566 rs6000_frame_related would do. */
27567 addr = gen_rtx_PLUS (Pmode, gen_rtx_REG (Pmode, STACK_POINTER_REGNUM),
27568 GEN_INT (info->cr_save_offset + sp_off));
27569 mem = gen_frame_mem (SImode, addr);
27571 if (DEFAULT_ABI == ABI_ELFv2)
27573 /* In the ELFv2 ABI we generate separate CFI records for each
27574 CR field that was actually saved. They all point to the
27575 same 32-bit stack slot. */
27576 rtx crframe[8];
27577 int n_crframe = 0;
27579 for (i = 0; i < 8; i++)
27580 if (save_reg_p (CR0_REGNO + i))
27582 crframe[n_crframe]
27583 = gen_rtx_SET (mem, gen_rtx_REG (SImode, CR0_REGNO + i));
27585 RTX_FRAME_RELATED_P (crframe[n_crframe]) = 1;
27586 n_crframe++;
27589 add_reg_note (insn, REG_FRAME_RELATED_EXPR,
27590 gen_rtx_PARALLEL (VOIDmode,
27591 gen_rtvec_v (n_crframe, crframe)));
27593 else
27595 /* In other ABIs, by convention, we use a single CR regnum to
27596 represent the fact that all call-saved CR fields are saved.
27597 We use CR2_REGNO to be compatible with gcc-2.95 on Linux. */
27598 rtx set = gen_rtx_SET (mem, gen_rtx_REG (SImode, CR2_REGNO));
27599 add_reg_note (insn, REG_FRAME_RELATED_EXPR, set);
27603 /* In the ELFv2 ABI we need to save all call-saved CR fields into
27604 *separate* slots if the routine calls __builtin_eh_return, so
27605 that they can be independently restored by the unwinder. */
27606 if (DEFAULT_ABI == ABI_ELFv2 && crtl->calls_eh_return)
27608 int i, cr_off = info->ehcr_offset;
27609 rtx crsave;
27611 /* ??? We might get better performance by using multiple mfocrf
27612 instructions. */
27613 crsave = gen_rtx_REG (SImode, 0);
27614 emit_insn (gen_prologue_movesi_from_cr (crsave));
27616 for (i = 0; i < 8; i++)
27617 if (!call_used_regs[CR0_REGNO + i])
27619 rtvec p = rtvec_alloc (2);
27620 RTVEC_ELT (p, 0)
27621 = gen_frame_store (crsave, frame_reg_rtx, cr_off + frame_off);
27622 RTVEC_ELT (p, 1)
27623 = gen_rtx_USE (VOIDmode, gen_rtx_REG (CCmode, CR0_REGNO + i));
27625 insn = emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
27627 RTX_FRAME_RELATED_P (insn) = 1;
27628 add_reg_note (insn, REG_FRAME_RELATED_EXPR,
27629 gen_frame_store (gen_rtx_REG (SImode, CR0_REGNO + i),
27630 sp_reg_rtx, cr_off + sp_off));
27632 cr_off += reg_size;
27636 /* If we are emitting stack probes, but allocate no stack, then
27637 just note that in the dump file. */
27638 if (flag_stack_clash_protection
27639 && dump_file
27640 && !info->push_p)
27641 dump_stack_clash_frame_info (NO_PROBE_NO_FRAME, false);
27643 /* Update stack and set back pointer unless this is V.4,
27644 for which it was done previously. */
27645 if (!WORLD_SAVE_P (info) && info->push_p
27646 && !(DEFAULT_ABI == ABI_V4 || crtl->calls_eh_return))
27648 rtx ptr_reg = NULL;
27649 int ptr_off = 0;
27651 /* If saving altivec regs we need to be able to address all save
27652 locations using a 16-bit offset. */
27653 if ((strategy & SAVE_INLINE_VRS) == 0
27654 || (info->altivec_size != 0
27655 && (info->altivec_save_offset + info->altivec_size - 16
27656 + info->total_size - frame_off) > 32767)
27657 || (info->vrsave_size != 0
27658 && (info->vrsave_save_offset
27659 + info->total_size - frame_off) > 32767))
27661 int sel = SAVRES_SAVE | SAVRES_VR;
27662 unsigned ptr_regno = ptr_regno_for_savres (sel);
27664 if (using_static_chain_p
27665 && ptr_regno == STATIC_CHAIN_REGNUM)
27666 ptr_regno = 12;
27667 if (REGNO (frame_reg_rtx) != ptr_regno)
27668 START_USE (ptr_regno);
27669 ptr_reg = gen_rtx_REG (Pmode, ptr_regno);
27670 frame_reg_rtx = ptr_reg;
27671 ptr_off = info->altivec_save_offset + info->altivec_size;
27672 frame_off = -ptr_off;
27674 else if (REGNO (frame_reg_rtx) == 1)
27675 frame_off = info->total_size;
27676 sp_adjust = rs6000_emit_allocate_stack (info->total_size,
27677 ptr_reg, ptr_off);
27678 if (REGNO (frame_reg_rtx) == 12)
27679 sp_adjust = 0;
27680 sp_off = info->total_size;
27681 if (frame_reg_rtx != sp_reg_rtx)
27682 rs6000_emit_stack_tie (frame_reg_rtx, false);
27685 /* Set frame pointer, if needed. */
27686 if (frame_pointer_needed)
27688 insn = emit_move_insn (gen_rtx_REG (Pmode, HARD_FRAME_POINTER_REGNUM),
27689 sp_reg_rtx);
27690 RTX_FRAME_RELATED_P (insn) = 1;
27693 /* Save AltiVec registers if needed. Save here because the red zone does
27694 not always include AltiVec registers. */
27695 if (!WORLD_SAVE_P (info)
27696 && info->altivec_size != 0 && (strategy & SAVE_INLINE_VRS) == 0)
27698 int end_save = info->altivec_save_offset + info->altivec_size;
27699 int ptr_off;
27700 /* Oddly, the vector save/restore functions point r0 at the end
27701 of the save area, then use r11 or r12 to load offsets for
27702 [reg+reg] addressing. */
27703 rtx ptr_reg = gen_rtx_REG (Pmode, 0);
27704 int scratch_regno = ptr_regno_for_savres (SAVRES_SAVE | SAVRES_VR);
27705 rtx scratch_reg = gen_rtx_REG (Pmode, scratch_regno);
27707 gcc_checking_assert (scratch_regno == 11 || scratch_regno == 12);
27708 NOT_INUSE (0);
27709 if (scratch_regno == 12)
27710 sp_adjust = 0;
27711 if (end_save + frame_off != 0)
27713 rtx offset = GEN_INT (end_save + frame_off);
27715 emit_insn (gen_add3_insn (ptr_reg, frame_reg_rtx, offset));
27717 else
27718 emit_move_insn (ptr_reg, frame_reg_rtx);
27720 ptr_off = -end_save;
27721 insn = rs6000_emit_savres_rtx (info, scratch_reg,
27722 info->altivec_save_offset + ptr_off,
27723 0, V4SImode, SAVRES_SAVE | SAVRES_VR);
27724 rs6000_frame_related (insn, scratch_reg, sp_off - ptr_off,
27725 NULL_RTX, NULL_RTX);
27726 if (REGNO (frame_reg_rtx) == REGNO (scratch_reg))
27728 /* The oddity mentioned above clobbered our frame reg. */
27729 emit_move_insn (frame_reg_rtx, ptr_reg);
27730 frame_off = ptr_off;
27733 else if (!WORLD_SAVE_P (info)
27734 && info->altivec_size != 0)
27736 int i;
27738 for (i = info->first_altivec_reg_save; i <= LAST_ALTIVEC_REGNO; ++i)
27739 if (info->vrsave_mask & ALTIVEC_REG_BIT (i))
27741 rtx areg, savereg, mem;
27742 HOST_WIDE_INT offset;
27744 offset = (info->altivec_save_offset + frame_off
27745 + 16 * (i - info->first_altivec_reg_save));
27747 savereg = gen_rtx_REG (V4SImode, i);
27749 if (TARGET_P9_VECTOR && quad_address_offset_p (offset))
27751 mem = gen_frame_mem (V4SImode,
27752 gen_rtx_PLUS (Pmode, frame_reg_rtx,
27753 GEN_INT (offset)));
27754 insn = emit_insn (gen_rtx_SET (mem, savereg));
27755 areg = NULL_RTX;
27757 else
27759 NOT_INUSE (0);
27760 areg = gen_rtx_REG (Pmode, 0);
27761 emit_move_insn (areg, GEN_INT (offset));
27763 /* AltiVec addressing mode is [reg+reg]. */
27764 mem = gen_frame_mem (V4SImode,
27765 gen_rtx_PLUS (Pmode, frame_reg_rtx, areg));
27767 /* Rather than emitting a generic move, force use of the stvx
27768 instruction, which we always want on ISA 2.07 (power8) systems.
27769 In particular we don't want xxpermdi/stxvd2x for little
27770 endian. */
27771 insn = emit_insn (gen_altivec_stvx_v4si_internal (mem, savereg));
27774 rs6000_frame_related (insn, frame_reg_rtx, sp_off - frame_off,
27775 areg, GEN_INT (offset));
27779 /* VRSAVE is a bit vector representing which AltiVec registers
27780 are used. The OS uses this to determine which vector
27781 registers to save on a context switch. We need to save
27782 VRSAVE on the stack frame, add whatever AltiVec registers we
27783 used in this function, and do the corresponding magic in the
27784 epilogue. */
27786 if (!WORLD_SAVE_P (info) && info->vrsave_size != 0)
27788 /* Get VRSAVE into a GPR. Note that ABI_V4 and ABI_DARWIN might
27789 be using r12 as frame_reg_rtx and r11 as the static chain
27790 pointer for nested functions. */
27791 int save_regno = 12;
27792 if ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
27793 && !using_static_chain_p)
27794 save_regno = 11;
27795 else if (using_split_stack || REGNO (frame_reg_rtx) == 12)
27797 save_regno = 11;
27798 if (using_static_chain_p)
27799 save_regno = 0;
27801 NOT_INUSE (save_regno);
27803 emit_vrsave_prologue (info, save_regno, frame_off, frame_reg_rtx);
27806 /* If we are using RS6000_PIC_OFFSET_TABLE_REGNUM, we need to set it up. */
27807 if (!TARGET_SINGLE_PIC_BASE
27808 && ((TARGET_TOC && TARGET_MINIMAL_TOC
27809 && !constant_pool_empty_p ())
27810 || (DEFAULT_ABI == ABI_V4
27811 && (flag_pic == 1 || (flag_pic && TARGET_SECURE_PLT))
27812 && df_regs_ever_live_p (RS6000_PIC_OFFSET_TABLE_REGNUM))))
27814 /* If emit_load_toc_table will use the link register, we need to save
27815 it. We use R12 for this purpose because emit_load_toc_table
27816 can use register 0. This allows us to use a plain 'blr' to return
27817 from the procedure more often. */
27818 int save_LR_around_toc_setup = (TARGET_ELF
27819 && DEFAULT_ABI == ABI_V4
27820 && flag_pic
27821 && ! info->lr_save_p
27822 && EDGE_COUNT (EXIT_BLOCK_PTR_FOR_FN (cfun)->preds) > 0);
27823 if (save_LR_around_toc_setup)
27825 rtx lr = gen_rtx_REG (Pmode, LR_REGNO);
27826 rtx tmp = gen_rtx_REG (Pmode, 12);
27828 sp_adjust = 0;
27829 insn = emit_move_insn (tmp, lr);
27830 RTX_FRAME_RELATED_P (insn) = 1;
27832 rs6000_emit_load_toc_table (TRUE);
27834 insn = emit_move_insn (lr, tmp);
27835 add_reg_note (insn, REG_CFA_RESTORE, lr);
27836 RTX_FRAME_RELATED_P (insn) = 1;
27838 else
27839 rs6000_emit_load_toc_table (TRUE);
27842 #if TARGET_MACHO
27843 if (!TARGET_SINGLE_PIC_BASE
27844 && DEFAULT_ABI == ABI_DARWIN
27845 && flag_pic && crtl->uses_pic_offset_table)
27847 rtx lr = gen_rtx_REG (Pmode, LR_REGNO);
27848 rtx src = gen_rtx_SYMBOL_REF (Pmode, MACHOPIC_FUNCTION_BASE_NAME);
27850 /* Save and restore LR locally around this call (in R0). */
27851 if (!info->lr_save_p)
27852 emit_move_insn (gen_rtx_REG (Pmode, 0), lr);
27854 emit_insn (gen_load_macho_picbase (src));
27856 emit_move_insn (gen_rtx_REG (Pmode,
27857 RS6000_PIC_OFFSET_TABLE_REGNUM),
27858 lr);
27860 if (!info->lr_save_p)
27861 emit_move_insn (lr, gen_rtx_REG (Pmode, 0));
27863 #endif
27865 /* If we need to, save the TOC register after doing the stack setup.
27866 Do not emit eh frame info for this save. The unwinder wants info,
27867 conceptually attached to instructions in this function, about
27868 register values in the caller of this function. This R2 may have
27869 already been changed from the value in the caller.
27870 We don't attempt to write accurate DWARF EH frame info for R2
27871 because code emitted by gcc for a (non-pointer) function call
27872 doesn't save and restore R2. Instead, R2 is managed out-of-line
27873 by a linker generated plt call stub when the function resides in
27874 a shared library. This behavior is costly to describe in DWARF,
27875 both in terms of the size of DWARF info and the time taken in the
27876 unwinder to interpret it. R2 changes, apart from the
27877 calls_eh_return case earlier in this function, are handled by
27878 linux-unwind.h frob_update_context. */
27879 if (rs6000_save_toc_in_prologue_p ())
27881 rtx reg = gen_rtx_REG (reg_mode, TOC_REGNUM);
27882 emit_insn (gen_frame_store (reg, sp_reg_rtx, RS6000_TOC_SAVE_SLOT));
27885 /* Set up the arg pointer (r12) for -fsplit-stack code. */
27886 if (using_split_stack && split_stack_arg_pointer_used_p ())
27887 emit_split_stack_prologue (info, sp_adjust, frame_off, frame_reg_rtx);
27890 /* Output .extern statements for the save/restore routines we use. */
27892 static void
27893 rs6000_output_savres_externs (FILE *file)
27895 rs6000_stack_t *info = rs6000_stack_info ();
27897 if (TARGET_DEBUG_STACK)
27898 debug_stack_info (info);
27900 /* Write .extern for any function we will call to save and restore
27901 fp values. */
27902 if (info->first_fp_reg_save < 64
27903 && !TARGET_MACHO
27904 && !TARGET_ELF)
27906 char *name;
27907 int regno = info->first_fp_reg_save - 32;
27909 if ((info->savres_strategy & SAVE_INLINE_FPRS) == 0)
27911 bool lr = (info->savres_strategy & SAVE_NOINLINE_FPRS_SAVES_LR) != 0;
27912 int sel = SAVRES_SAVE | SAVRES_FPR | (lr ? SAVRES_LR : 0);
27913 name = rs6000_savres_routine_name (regno, sel);
27914 fprintf (file, "\t.extern %s\n", name);
27916 if ((info->savres_strategy & REST_INLINE_FPRS) == 0)
27918 bool lr = (info->savres_strategy
27919 & REST_NOINLINE_FPRS_DOESNT_RESTORE_LR) == 0;
27920 int sel = SAVRES_FPR | (lr ? SAVRES_LR : 0);
27921 name = rs6000_savres_routine_name (regno, sel);
27922 fprintf (file, "\t.extern %s\n", name);
27927 /* Write function prologue. */
27929 static void
27930 rs6000_output_function_prologue (FILE *file)
27932 if (!cfun->is_thunk)
27933 rs6000_output_savres_externs (file);
27935 /* ELFv2 ABI r2 setup code and local entry point. This must follow
27936 immediately after the global entry point label. */
27937 if (rs6000_global_entry_point_needed_p ())
27939 const char *name = XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0);
27941 (*targetm.asm_out.internal_label) (file, "LCF", rs6000_pic_labelno);
27943 if (TARGET_CMODEL != CMODEL_LARGE)
27945 /* In the small and medium code models, we assume the TOC is less
27946 2 GB away from the text section, so it can be computed via the
27947 following two-instruction sequence. */
27948 char buf[256];
27950 ASM_GENERATE_INTERNAL_LABEL (buf, "LCF", rs6000_pic_labelno);
27951 fprintf (file, "0:\taddis 2,12,.TOC.-");
27952 assemble_name (file, buf);
27953 fprintf (file, "@ha\n");
27954 fprintf (file, "\taddi 2,2,.TOC.-");
27955 assemble_name (file, buf);
27956 fprintf (file, "@l\n");
27958 else
27960 /* In the large code model, we allow arbitrary offsets between the
27961 TOC and the text section, so we have to load the offset from
27962 memory. The data field is emitted directly before the global
27963 entry point in rs6000_elf_declare_function_name. */
27964 char buf[256];
27966 #ifdef HAVE_AS_ENTRY_MARKERS
27967 /* If supported by the linker, emit a marker relocation. If the
27968 total code size of the final executable or shared library
27969 happens to fit into 2 GB after all, the linker will replace
27970 this code sequence with the sequence for the small or medium
27971 code model. */
27972 fprintf (file, "\t.reloc .,R_PPC64_ENTRY\n");
27973 #endif
27974 fprintf (file, "\tld 2,");
27975 ASM_GENERATE_INTERNAL_LABEL (buf, "LCL", rs6000_pic_labelno);
27976 assemble_name (file, buf);
27977 fprintf (file, "-");
27978 ASM_GENERATE_INTERNAL_LABEL (buf, "LCF", rs6000_pic_labelno);
27979 assemble_name (file, buf);
27980 fprintf (file, "(12)\n");
27981 fprintf (file, "\tadd 2,2,12\n");
27984 fputs ("\t.localentry\t", file);
27985 assemble_name (file, name);
27986 fputs (",.-", file);
27987 assemble_name (file, name);
27988 fputs ("\n", file);
27991 /* Output -mprofile-kernel code. This needs to be done here instead of
27992 in output_function_profile since it must go after the ELFv2 ABI
27993 local entry point. */
27994 if (TARGET_PROFILE_KERNEL && crtl->profile)
27996 gcc_assert (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2);
27997 gcc_assert (!TARGET_32BIT);
27999 asm_fprintf (file, "\tmflr %s\n", reg_names[0]);
28001 /* In the ELFv2 ABI we have no compiler stack word. It must be
28002 the resposibility of _mcount to preserve the static chain
28003 register if required. */
28004 if (DEFAULT_ABI != ABI_ELFv2
28005 && cfun->static_chain_decl != NULL)
28007 asm_fprintf (file, "\tstd %s,24(%s)\n",
28008 reg_names[STATIC_CHAIN_REGNUM], reg_names[1]);
28009 fprintf (file, "\tbl %s\n", RS6000_MCOUNT);
28010 asm_fprintf (file, "\tld %s,24(%s)\n",
28011 reg_names[STATIC_CHAIN_REGNUM], reg_names[1]);
28013 else
28014 fprintf (file, "\tbl %s\n", RS6000_MCOUNT);
28017 rs6000_pic_labelno++;
28020 /* -mprofile-kernel code calls mcount before the function prolog,
28021 so a profiled leaf function should stay a leaf function. */
28022 static bool
28023 rs6000_keep_leaf_when_profiled ()
28025 return TARGET_PROFILE_KERNEL;
28028 /* Non-zero if vmx regs are restored before the frame pop, zero if
28029 we restore after the pop when possible. */
28030 #define ALWAYS_RESTORE_ALTIVEC_BEFORE_POP 0
28032 /* Restoring cr is a two step process: loading a reg from the frame
28033 save, then moving the reg to cr. For ABI_V4 we must let the
28034 unwinder know that the stack location is no longer valid at or
28035 before the stack deallocation, but we can't emit a cfa_restore for
28036 cr at the stack deallocation like we do for other registers.
28037 The trouble is that it is possible for the move to cr to be
28038 scheduled after the stack deallocation. So say exactly where cr
28039 is located on each of the two insns. */
28041 static rtx
28042 load_cr_save (int regno, rtx frame_reg_rtx, int offset, bool exit_func)
28044 rtx mem = gen_frame_mem_offset (SImode, frame_reg_rtx, offset);
28045 rtx reg = gen_rtx_REG (SImode, regno);
28046 rtx_insn *insn = emit_move_insn (reg, mem);
28048 if (!exit_func && DEFAULT_ABI == ABI_V4)
28050 rtx cr = gen_rtx_REG (SImode, CR2_REGNO);
28051 rtx set = gen_rtx_SET (reg, cr);
28053 add_reg_note (insn, REG_CFA_REGISTER, set);
28054 RTX_FRAME_RELATED_P (insn) = 1;
28056 return reg;
28059 /* Reload CR from REG. */
28061 static void
28062 restore_saved_cr (rtx reg, int using_mfcr_multiple, bool exit_func)
28064 int count = 0;
28065 int i;
28067 if (using_mfcr_multiple)
28069 for (i = 0; i < 8; i++)
28070 if (save_reg_p (CR0_REGNO + i))
28071 count++;
28072 gcc_assert (count);
28075 if (using_mfcr_multiple && count > 1)
28077 rtx_insn *insn;
28078 rtvec p;
28079 int ndx;
28081 p = rtvec_alloc (count);
28083 ndx = 0;
28084 for (i = 0; i < 8; i++)
28085 if (save_reg_p (CR0_REGNO + i))
28087 rtvec r = rtvec_alloc (2);
28088 RTVEC_ELT (r, 0) = reg;
28089 RTVEC_ELT (r, 1) = GEN_INT (1 << (7-i));
28090 RTVEC_ELT (p, ndx) =
28091 gen_rtx_SET (gen_rtx_REG (CCmode, CR0_REGNO + i),
28092 gen_rtx_UNSPEC (CCmode, r, UNSPEC_MOVESI_TO_CR));
28093 ndx++;
28095 insn = emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
28096 gcc_assert (ndx == count);
28098 /* For the ELFv2 ABI we generate a CFA_RESTORE for each
28099 CR field separately. */
28100 if (!exit_func && DEFAULT_ABI == ABI_ELFv2 && flag_shrink_wrap)
28102 for (i = 0; i < 8; i++)
28103 if (save_reg_p (CR0_REGNO + i))
28104 add_reg_note (insn, REG_CFA_RESTORE,
28105 gen_rtx_REG (SImode, CR0_REGNO + i));
28107 RTX_FRAME_RELATED_P (insn) = 1;
28110 else
28111 for (i = 0; i < 8; i++)
28112 if (save_reg_p (CR0_REGNO + i))
28114 rtx insn = emit_insn (gen_movsi_to_cr_one
28115 (gen_rtx_REG (CCmode, CR0_REGNO + i), reg));
28117 /* For the ELFv2 ABI we generate a CFA_RESTORE for each
28118 CR field separately, attached to the insn that in fact
28119 restores this particular CR field. */
28120 if (!exit_func && DEFAULT_ABI == ABI_ELFv2 && flag_shrink_wrap)
28122 add_reg_note (insn, REG_CFA_RESTORE,
28123 gen_rtx_REG (SImode, CR0_REGNO + i));
28125 RTX_FRAME_RELATED_P (insn) = 1;
28129 /* For other ABIs, we just generate a single CFA_RESTORE for CR2. */
28130 if (!exit_func && DEFAULT_ABI != ABI_ELFv2
28131 && (DEFAULT_ABI == ABI_V4 || flag_shrink_wrap))
28133 rtx_insn *insn = get_last_insn ();
28134 rtx cr = gen_rtx_REG (SImode, CR2_REGNO);
28136 add_reg_note (insn, REG_CFA_RESTORE, cr);
28137 RTX_FRAME_RELATED_P (insn) = 1;
28141 /* Like cr, the move to lr instruction can be scheduled after the
28142 stack deallocation, but unlike cr, its stack frame save is still
28143 valid. So we only need to emit the cfa_restore on the correct
28144 instruction. */
28146 static void
28147 load_lr_save (int regno, rtx frame_reg_rtx, int offset)
28149 rtx mem = gen_frame_mem_offset (Pmode, frame_reg_rtx, offset);
28150 rtx reg = gen_rtx_REG (Pmode, regno);
28152 emit_move_insn (reg, mem);
28155 static void
28156 restore_saved_lr (int regno, bool exit_func)
28158 rtx reg = gen_rtx_REG (Pmode, regno);
28159 rtx lr = gen_rtx_REG (Pmode, LR_REGNO);
28160 rtx_insn *insn = emit_move_insn (lr, reg);
28162 if (!exit_func && flag_shrink_wrap)
28164 add_reg_note (insn, REG_CFA_RESTORE, lr);
28165 RTX_FRAME_RELATED_P (insn) = 1;
28169 static rtx
28170 add_crlr_cfa_restore (const rs6000_stack_t *info, rtx cfa_restores)
28172 if (DEFAULT_ABI == ABI_ELFv2)
28174 int i;
28175 for (i = 0; i < 8; i++)
28176 if (save_reg_p (CR0_REGNO + i))
28178 rtx cr = gen_rtx_REG (SImode, CR0_REGNO + i);
28179 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, cr,
28180 cfa_restores);
28183 else if (info->cr_save_p)
28184 cfa_restores = alloc_reg_note (REG_CFA_RESTORE,
28185 gen_rtx_REG (SImode, CR2_REGNO),
28186 cfa_restores);
28188 if (info->lr_save_p)
28189 cfa_restores = alloc_reg_note (REG_CFA_RESTORE,
28190 gen_rtx_REG (Pmode, LR_REGNO),
28191 cfa_restores);
28192 return cfa_restores;
28195 /* Return true if OFFSET from stack pointer can be clobbered by signals.
28196 V.4 doesn't have any stack cushion, AIX ABIs have 220 or 288 bytes
28197 below stack pointer not cloberred by signals. */
28199 static inline bool
28200 offset_below_red_zone_p (HOST_WIDE_INT offset)
28202 return offset < (DEFAULT_ABI == ABI_V4
28204 : TARGET_32BIT ? -220 : -288);
28207 /* Append CFA_RESTORES to any existing REG_NOTES on the last insn. */
28209 static void
28210 emit_cfa_restores (rtx cfa_restores)
28212 rtx_insn *insn = get_last_insn ();
28213 rtx *loc = &REG_NOTES (insn);
28215 while (*loc)
28216 loc = &XEXP (*loc, 1);
28217 *loc = cfa_restores;
28218 RTX_FRAME_RELATED_P (insn) = 1;
28221 /* Emit function epilogue as insns. */
28223 void
28224 rs6000_emit_epilogue (int sibcall)
28226 rs6000_stack_t *info;
28227 int restoring_GPRs_inline;
28228 int restoring_FPRs_inline;
28229 int using_load_multiple;
28230 int using_mtcr_multiple;
28231 int use_backchain_to_restore_sp;
28232 int restore_lr;
28233 int strategy;
28234 HOST_WIDE_INT frame_off = 0;
28235 rtx sp_reg_rtx = gen_rtx_REG (Pmode, 1);
28236 rtx frame_reg_rtx = sp_reg_rtx;
28237 rtx cfa_restores = NULL_RTX;
28238 rtx insn;
28239 rtx cr_save_reg = NULL_RTX;
28240 machine_mode reg_mode = Pmode;
28241 int reg_size = TARGET_32BIT ? 4 : 8;
28242 machine_mode fp_reg_mode = (TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT)
28243 ? DFmode : SFmode;
28244 int fp_reg_size = 8;
28245 int i;
28246 bool exit_func;
28247 unsigned ptr_regno;
28249 info = rs6000_stack_info ();
28251 strategy = info->savres_strategy;
28252 using_load_multiple = strategy & REST_MULTIPLE;
28253 restoring_FPRs_inline = sibcall || (strategy & REST_INLINE_FPRS);
28254 restoring_GPRs_inline = sibcall || (strategy & REST_INLINE_GPRS);
28255 using_mtcr_multiple = (rs6000_cpu == PROCESSOR_PPC601
28256 || rs6000_cpu == PROCESSOR_PPC603
28257 || rs6000_cpu == PROCESSOR_PPC750
28258 || optimize_size);
28259 /* Restore via the backchain when we have a large frame, since this
28260 is more efficient than an addis, addi pair. The second condition
28261 here will not trigger at the moment; We don't actually need a
28262 frame pointer for alloca, but the generic parts of the compiler
28263 give us one anyway. */
28264 use_backchain_to_restore_sp = (info->total_size + (info->lr_save_p
28265 ? info->lr_save_offset
28266 : 0) > 32767
28267 || (cfun->calls_alloca
28268 && !frame_pointer_needed));
28269 restore_lr = (info->lr_save_p
28270 && (restoring_FPRs_inline
28271 || (strategy & REST_NOINLINE_FPRS_DOESNT_RESTORE_LR))
28272 && (restoring_GPRs_inline
28273 || info->first_fp_reg_save < 64)
28274 && !cfun->machine->lr_is_wrapped_separately);
28277 if (WORLD_SAVE_P (info))
28279 int i, j;
28280 char rname[30];
28281 const char *alloc_rname;
28282 rtvec p;
28284 /* eh_rest_world_r10 will return to the location saved in the LR
28285 stack slot (which is not likely to be our caller.)
28286 Input: R10 -- stack adjustment. Clobbers R0, R11, R12, R7, R8.
28287 rest_world is similar, except any R10 parameter is ignored.
28288 The exception-handling stuff that was here in 2.95 is no
28289 longer necessary. */
28291 p = rtvec_alloc (9
28292 + 32 - info->first_gp_reg_save
28293 + LAST_ALTIVEC_REGNO + 1 - info->first_altivec_reg_save
28294 + 63 + 1 - info->first_fp_reg_save);
28296 strcpy (rname, ((crtl->calls_eh_return) ?
28297 "*eh_rest_world_r10" : "*rest_world"));
28298 alloc_rname = ggc_strdup (rname);
28300 j = 0;
28301 RTVEC_ELT (p, j++) = ret_rtx;
28302 RTVEC_ELT (p, j++)
28303 = gen_rtx_USE (VOIDmode, gen_rtx_SYMBOL_REF (Pmode, alloc_rname));
28304 /* The instruction pattern requires a clobber here;
28305 it is shared with the restVEC helper. */
28306 RTVEC_ELT (p, j++)
28307 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, 11));
28310 /* CR register traditionally saved as CR2. */
28311 rtx reg = gen_rtx_REG (SImode, CR2_REGNO);
28312 RTVEC_ELT (p, j++)
28313 = gen_frame_load (reg, frame_reg_rtx, info->cr_save_offset);
28314 if (flag_shrink_wrap)
28316 cfa_restores = alloc_reg_note (REG_CFA_RESTORE,
28317 gen_rtx_REG (Pmode, LR_REGNO),
28318 cfa_restores);
28319 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg, cfa_restores);
28323 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
28325 rtx reg = gen_rtx_REG (reg_mode, info->first_gp_reg_save + i);
28326 RTVEC_ELT (p, j++)
28327 = gen_frame_load (reg,
28328 frame_reg_rtx, info->gp_save_offset + reg_size * i);
28329 if (flag_shrink_wrap
28330 && save_reg_p (info->first_gp_reg_save + i))
28331 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg, cfa_restores);
28333 for (i = 0; info->first_altivec_reg_save + i <= LAST_ALTIVEC_REGNO; i++)
28335 rtx reg = gen_rtx_REG (V4SImode, info->first_altivec_reg_save + i);
28336 RTVEC_ELT (p, j++)
28337 = gen_frame_load (reg,
28338 frame_reg_rtx, info->altivec_save_offset + 16 * i);
28339 if (flag_shrink_wrap
28340 && save_reg_p (info->first_altivec_reg_save + i))
28341 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg, cfa_restores);
28343 for (i = 0; info->first_fp_reg_save + i <= 63; i++)
28345 rtx reg = gen_rtx_REG ((TARGET_HARD_FLOAT && TARGET_DOUBLE_FLOAT
28346 ? DFmode : SFmode),
28347 info->first_fp_reg_save + i);
28348 RTVEC_ELT (p, j++)
28349 = gen_frame_load (reg, frame_reg_rtx, info->fp_save_offset + 8 * i);
28350 if (flag_shrink_wrap
28351 && save_reg_p (info->first_fp_reg_save + i))
28352 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg, cfa_restores);
28354 RTVEC_ELT (p, j++)
28355 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, 0));
28356 RTVEC_ELT (p, j++)
28357 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, 12));
28358 RTVEC_ELT (p, j++)
28359 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, 7));
28360 RTVEC_ELT (p, j++)
28361 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, 8));
28362 RTVEC_ELT (p, j++)
28363 = gen_rtx_USE (VOIDmode, gen_rtx_REG (SImode, 10));
28364 insn = emit_jump_insn (gen_rtx_PARALLEL (VOIDmode, p));
28366 if (flag_shrink_wrap)
28368 REG_NOTES (insn) = cfa_restores;
28369 add_reg_note (insn, REG_CFA_DEF_CFA, sp_reg_rtx);
28370 RTX_FRAME_RELATED_P (insn) = 1;
28372 return;
28375 /* frame_reg_rtx + frame_off points to the top of this stack frame. */
28376 if (info->push_p)
28377 frame_off = info->total_size;
28379 /* Restore AltiVec registers if we must do so before adjusting the
28380 stack. */
28381 if (info->altivec_size != 0
28382 && (ALWAYS_RESTORE_ALTIVEC_BEFORE_POP
28383 || (DEFAULT_ABI != ABI_V4
28384 && offset_below_red_zone_p (info->altivec_save_offset))))
28386 int i;
28387 int scratch_regno = ptr_regno_for_savres (SAVRES_VR);
28389 gcc_checking_assert (scratch_regno == 11 || scratch_regno == 12);
28390 if (use_backchain_to_restore_sp)
28392 int frame_regno = 11;
28394 if ((strategy & REST_INLINE_VRS) == 0)
28396 /* Of r11 and r12, select the one not clobbered by an
28397 out-of-line restore function for the frame register. */
28398 frame_regno = 11 + 12 - scratch_regno;
28400 frame_reg_rtx = gen_rtx_REG (Pmode, frame_regno);
28401 emit_move_insn (frame_reg_rtx,
28402 gen_rtx_MEM (Pmode, sp_reg_rtx));
28403 frame_off = 0;
28405 else if (frame_pointer_needed)
28406 frame_reg_rtx = hard_frame_pointer_rtx;
28408 if ((strategy & REST_INLINE_VRS) == 0)
28410 int end_save = info->altivec_save_offset + info->altivec_size;
28411 int ptr_off;
28412 rtx ptr_reg = gen_rtx_REG (Pmode, 0);
28413 rtx scratch_reg = gen_rtx_REG (Pmode, scratch_regno);
28415 if (end_save + frame_off != 0)
28417 rtx offset = GEN_INT (end_save + frame_off);
28419 emit_insn (gen_add3_insn (ptr_reg, frame_reg_rtx, offset));
28421 else
28422 emit_move_insn (ptr_reg, frame_reg_rtx);
28424 ptr_off = -end_save;
28425 insn = rs6000_emit_savres_rtx (info, scratch_reg,
28426 info->altivec_save_offset + ptr_off,
28427 0, V4SImode, SAVRES_VR);
28429 else
28431 for (i = info->first_altivec_reg_save; i <= LAST_ALTIVEC_REGNO; ++i)
28432 if (info->vrsave_mask & ALTIVEC_REG_BIT (i))
28434 rtx addr, areg, mem, insn;
28435 rtx reg = gen_rtx_REG (V4SImode, i);
28436 HOST_WIDE_INT offset
28437 = (info->altivec_save_offset + frame_off
28438 + 16 * (i - info->first_altivec_reg_save));
28440 if (TARGET_P9_VECTOR && quad_address_offset_p (offset))
28442 mem = gen_frame_mem (V4SImode,
28443 gen_rtx_PLUS (Pmode, frame_reg_rtx,
28444 GEN_INT (offset)));
28445 insn = gen_rtx_SET (reg, mem);
28447 else
28449 areg = gen_rtx_REG (Pmode, 0);
28450 emit_move_insn (areg, GEN_INT (offset));
28452 /* AltiVec addressing mode is [reg+reg]. */
28453 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx, areg);
28454 mem = gen_frame_mem (V4SImode, addr);
28456 /* Rather than emitting a generic move, force use of the
28457 lvx instruction, which we always want. In particular we
28458 don't want lxvd2x/xxpermdi for little endian. */
28459 insn = gen_altivec_lvx_v4si_internal (reg, mem);
28462 (void) emit_insn (insn);
28466 for (i = info->first_altivec_reg_save; i <= LAST_ALTIVEC_REGNO; ++i)
28467 if (((strategy & REST_INLINE_VRS) == 0
28468 || (info->vrsave_mask & ALTIVEC_REG_BIT (i)) != 0)
28469 && (flag_shrink_wrap
28470 || (offset_below_red_zone_p
28471 (info->altivec_save_offset
28472 + 16 * (i - info->first_altivec_reg_save))))
28473 && save_reg_p (i))
28475 rtx reg = gen_rtx_REG (V4SImode, i);
28476 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg, cfa_restores);
28480 /* Restore VRSAVE if we must do so before adjusting the stack. */
28481 if (info->vrsave_size != 0
28482 && (ALWAYS_RESTORE_ALTIVEC_BEFORE_POP
28483 || (DEFAULT_ABI != ABI_V4
28484 && offset_below_red_zone_p (info->vrsave_save_offset))))
28486 rtx reg;
28488 if (frame_reg_rtx == sp_reg_rtx)
28490 if (use_backchain_to_restore_sp)
28492 frame_reg_rtx = gen_rtx_REG (Pmode, 11);
28493 emit_move_insn (frame_reg_rtx,
28494 gen_rtx_MEM (Pmode, sp_reg_rtx));
28495 frame_off = 0;
28497 else if (frame_pointer_needed)
28498 frame_reg_rtx = hard_frame_pointer_rtx;
28501 reg = gen_rtx_REG (SImode, 12);
28502 emit_insn (gen_frame_load (reg, frame_reg_rtx,
28503 info->vrsave_save_offset + frame_off));
28505 emit_insn (generate_set_vrsave (reg, info, 1));
28508 insn = NULL_RTX;
28509 /* If we have a large stack frame, restore the old stack pointer
28510 using the backchain. */
28511 if (use_backchain_to_restore_sp)
28513 if (frame_reg_rtx == sp_reg_rtx)
28515 /* Under V.4, don't reset the stack pointer until after we're done
28516 loading the saved registers. */
28517 if (DEFAULT_ABI == ABI_V4)
28518 frame_reg_rtx = gen_rtx_REG (Pmode, 11);
28520 insn = emit_move_insn (frame_reg_rtx,
28521 gen_rtx_MEM (Pmode, sp_reg_rtx));
28522 frame_off = 0;
28524 else if (ALWAYS_RESTORE_ALTIVEC_BEFORE_POP
28525 && DEFAULT_ABI == ABI_V4)
28526 /* frame_reg_rtx has been set up by the altivec restore. */
28528 else
28530 insn = emit_move_insn (sp_reg_rtx, frame_reg_rtx);
28531 frame_reg_rtx = sp_reg_rtx;
28534 /* If we have a frame pointer, we can restore the old stack pointer
28535 from it. */
28536 else if (frame_pointer_needed)
28538 frame_reg_rtx = sp_reg_rtx;
28539 if (DEFAULT_ABI == ABI_V4)
28540 frame_reg_rtx = gen_rtx_REG (Pmode, 11);
28541 /* Prevent reordering memory accesses against stack pointer restore. */
28542 else if (cfun->calls_alloca
28543 || offset_below_red_zone_p (-info->total_size))
28544 rs6000_emit_stack_tie (frame_reg_rtx, true);
28546 insn = emit_insn (gen_add3_insn (frame_reg_rtx, hard_frame_pointer_rtx,
28547 GEN_INT (info->total_size)));
28548 frame_off = 0;
28550 else if (info->push_p
28551 && DEFAULT_ABI != ABI_V4
28552 && !crtl->calls_eh_return)
28554 /* Prevent reordering memory accesses against stack pointer restore. */
28555 if (cfun->calls_alloca
28556 || offset_below_red_zone_p (-info->total_size))
28557 rs6000_emit_stack_tie (frame_reg_rtx, false);
28558 insn = emit_insn (gen_add3_insn (sp_reg_rtx, sp_reg_rtx,
28559 GEN_INT (info->total_size)));
28560 frame_off = 0;
28562 if (insn && frame_reg_rtx == sp_reg_rtx)
28564 if (cfa_restores)
28566 REG_NOTES (insn) = cfa_restores;
28567 cfa_restores = NULL_RTX;
28569 add_reg_note (insn, REG_CFA_DEF_CFA, sp_reg_rtx);
28570 RTX_FRAME_RELATED_P (insn) = 1;
28573 /* Restore AltiVec registers if we have not done so already. */
28574 if (!ALWAYS_RESTORE_ALTIVEC_BEFORE_POP
28575 && info->altivec_size != 0
28576 && (DEFAULT_ABI == ABI_V4
28577 || !offset_below_red_zone_p (info->altivec_save_offset)))
28579 int i;
28581 if ((strategy & REST_INLINE_VRS) == 0)
28583 int end_save = info->altivec_save_offset + info->altivec_size;
28584 int ptr_off;
28585 rtx ptr_reg = gen_rtx_REG (Pmode, 0);
28586 int scratch_regno = ptr_regno_for_savres (SAVRES_VR);
28587 rtx scratch_reg = gen_rtx_REG (Pmode, scratch_regno);
28589 if (end_save + frame_off != 0)
28591 rtx offset = GEN_INT (end_save + frame_off);
28593 emit_insn (gen_add3_insn (ptr_reg, frame_reg_rtx, offset));
28595 else
28596 emit_move_insn (ptr_reg, frame_reg_rtx);
28598 ptr_off = -end_save;
28599 insn = rs6000_emit_savres_rtx (info, scratch_reg,
28600 info->altivec_save_offset + ptr_off,
28601 0, V4SImode, SAVRES_VR);
28602 if (REGNO (frame_reg_rtx) == REGNO (scratch_reg))
28604 /* Frame reg was clobbered by out-of-line save. Restore it
28605 from ptr_reg, and if we are calling out-of-line gpr or
28606 fpr restore set up the correct pointer and offset. */
28607 unsigned newptr_regno = 1;
28608 if (!restoring_GPRs_inline)
28610 bool lr = info->gp_save_offset + info->gp_size == 0;
28611 int sel = SAVRES_GPR | (lr ? SAVRES_LR : 0);
28612 newptr_regno = ptr_regno_for_savres (sel);
28613 end_save = info->gp_save_offset + info->gp_size;
28615 else if (!restoring_FPRs_inline)
28617 bool lr = !(strategy & REST_NOINLINE_FPRS_DOESNT_RESTORE_LR);
28618 int sel = SAVRES_FPR | (lr ? SAVRES_LR : 0);
28619 newptr_regno = ptr_regno_for_savres (sel);
28620 end_save = info->fp_save_offset + info->fp_size;
28623 if (newptr_regno != 1 && REGNO (frame_reg_rtx) != newptr_regno)
28624 frame_reg_rtx = gen_rtx_REG (Pmode, newptr_regno);
28626 if (end_save + ptr_off != 0)
28628 rtx offset = GEN_INT (end_save + ptr_off);
28630 frame_off = -end_save;
28631 if (TARGET_32BIT)
28632 emit_insn (gen_addsi3_carry (frame_reg_rtx,
28633 ptr_reg, offset));
28634 else
28635 emit_insn (gen_adddi3_carry (frame_reg_rtx,
28636 ptr_reg, offset));
28638 else
28640 frame_off = ptr_off;
28641 emit_move_insn (frame_reg_rtx, ptr_reg);
28645 else
28647 for (i = info->first_altivec_reg_save; i <= LAST_ALTIVEC_REGNO; ++i)
28648 if (info->vrsave_mask & ALTIVEC_REG_BIT (i))
28650 rtx addr, areg, mem, insn;
28651 rtx reg = gen_rtx_REG (V4SImode, i);
28652 HOST_WIDE_INT offset
28653 = (info->altivec_save_offset + frame_off
28654 + 16 * (i - info->first_altivec_reg_save));
28656 if (TARGET_P9_VECTOR && quad_address_offset_p (offset))
28658 mem = gen_frame_mem (V4SImode,
28659 gen_rtx_PLUS (Pmode, frame_reg_rtx,
28660 GEN_INT (offset)));
28661 insn = gen_rtx_SET (reg, mem);
28663 else
28665 areg = gen_rtx_REG (Pmode, 0);
28666 emit_move_insn (areg, GEN_INT (offset));
28668 /* AltiVec addressing mode is [reg+reg]. */
28669 addr = gen_rtx_PLUS (Pmode, frame_reg_rtx, areg);
28670 mem = gen_frame_mem (V4SImode, addr);
28672 /* Rather than emitting a generic move, force use of the
28673 lvx instruction, which we always want. In particular we
28674 don't want lxvd2x/xxpermdi for little endian. */
28675 insn = gen_altivec_lvx_v4si_internal (reg, mem);
28678 (void) emit_insn (insn);
28682 for (i = info->first_altivec_reg_save; i <= LAST_ALTIVEC_REGNO; ++i)
28683 if (((strategy & REST_INLINE_VRS) == 0
28684 || (info->vrsave_mask & ALTIVEC_REG_BIT (i)) != 0)
28685 && (DEFAULT_ABI == ABI_V4 || flag_shrink_wrap)
28686 && save_reg_p (i))
28688 rtx reg = gen_rtx_REG (V4SImode, i);
28689 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg, cfa_restores);
28693 /* Restore VRSAVE if we have not done so already. */
28694 if (!ALWAYS_RESTORE_ALTIVEC_BEFORE_POP
28695 && info->vrsave_size != 0
28696 && (DEFAULT_ABI == ABI_V4
28697 || !offset_below_red_zone_p (info->vrsave_save_offset)))
28699 rtx reg;
28701 reg = gen_rtx_REG (SImode, 12);
28702 emit_insn (gen_frame_load (reg, frame_reg_rtx,
28703 info->vrsave_save_offset + frame_off));
28705 emit_insn (generate_set_vrsave (reg, info, 1));
28708 /* If we exit by an out-of-line restore function on ABI_V4 then that
28709 function will deallocate the stack, so we don't need to worry
28710 about the unwinder restoring cr from an invalid stack frame
28711 location. */
28712 exit_func = (!restoring_FPRs_inline
28713 || (!restoring_GPRs_inline
28714 && info->first_fp_reg_save == 64));
28716 /* In the ELFv2 ABI we need to restore all call-saved CR fields from
28717 *separate* slots if the routine calls __builtin_eh_return, so
28718 that they can be independently restored by the unwinder. */
28719 if (DEFAULT_ABI == ABI_ELFv2 && crtl->calls_eh_return)
28721 int i, cr_off = info->ehcr_offset;
28723 for (i = 0; i < 8; i++)
28724 if (!call_used_regs[CR0_REGNO + i])
28726 rtx reg = gen_rtx_REG (SImode, 0);
28727 emit_insn (gen_frame_load (reg, frame_reg_rtx,
28728 cr_off + frame_off));
28730 insn = emit_insn (gen_movsi_to_cr_one
28731 (gen_rtx_REG (CCmode, CR0_REGNO + i), reg));
28733 if (!exit_func && flag_shrink_wrap)
28735 add_reg_note (insn, REG_CFA_RESTORE,
28736 gen_rtx_REG (SImode, CR0_REGNO + i));
28738 RTX_FRAME_RELATED_P (insn) = 1;
28741 cr_off += reg_size;
28745 /* Get the old lr if we saved it. If we are restoring registers
28746 out-of-line, then the out-of-line routines can do this for us. */
28747 if (restore_lr && restoring_GPRs_inline)
28748 load_lr_save (0, frame_reg_rtx, info->lr_save_offset + frame_off);
28750 /* Get the old cr if we saved it. */
28751 if (info->cr_save_p)
28753 unsigned cr_save_regno = 12;
28755 if (!restoring_GPRs_inline)
28757 /* Ensure we don't use the register used by the out-of-line
28758 gpr register restore below. */
28759 bool lr = info->gp_save_offset + info->gp_size == 0;
28760 int sel = SAVRES_GPR | (lr ? SAVRES_LR : 0);
28761 int gpr_ptr_regno = ptr_regno_for_savres (sel);
28763 if (gpr_ptr_regno == 12)
28764 cr_save_regno = 11;
28765 gcc_checking_assert (REGNO (frame_reg_rtx) != cr_save_regno);
28767 else if (REGNO (frame_reg_rtx) == 12)
28768 cr_save_regno = 11;
28770 cr_save_reg = load_cr_save (cr_save_regno, frame_reg_rtx,
28771 info->cr_save_offset + frame_off,
28772 exit_func);
28775 /* Set LR here to try to overlap restores below. */
28776 if (restore_lr && restoring_GPRs_inline)
28777 restore_saved_lr (0, exit_func);
28779 /* Load exception handler data registers, if needed. */
28780 if (crtl->calls_eh_return)
28782 unsigned int i, regno;
28784 if (TARGET_AIX)
28786 rtx reg = gen_rtx_REG (reg_mode, 2);
28787 emit_insn (gen_frame_load (reg, frame_reg_rtx,
28788 frame_off + RS6000_TOC_SAVE_SLOT));
28791 for (i = 0; ; ++i)
28793 rtx mem;
28795 regno = EH_RETURN_DATA_REGNO (i);
28796 if (regno == INVALID_REGNUM)
28797 break;
28799 mem = gen_frame_mem_offset (reg_mode, frame_reg_rtx,
28800 info->ehrd_offset + frame_off
28801 + reg_size * (int) i);
28803 emit_move_insn (gen_rtx_REG (reg_mode, regno), mem);
28807 /* Restore GPRs. This is done as a PARALLEL if we are using
28808 the load-multiple instructions. */
28809 if (!restoring_GPRs_inline)
28811 /* We are jumping to an out-of-line function. */
28812 rtx ptr_reg;
28813 int end_save = info->gp_save_offset + info->gp_size;
28814 bool can_use_exit = end_save == 0;
28815 int sel = SAVRES_GPR | (can_use_exit ? SAVRES_LR : 0);
28816 int ptr_off;
28818 /* Emit stack reset code if we need it. */
28819 ptr_regno = ptr_regno_for_savres (sel);
28820 ptr_reg = gen_rtx_REG (Pmode, ptr_regno);
28821 if (can_use_exit)
28822 rs6000_emit_stack_reset (frame_reg_rtx, frame_off, ptr_regno);
28823 else if (end_save + frame_off != 0)
28824 emit_insn (gen_add3_insn (ptr_reg, frame_reg_rtx,
28825 GEN_INT (end_save + frame_off)));
28826 else if (REGNO (frame_reg_rtx) != ptr_regno)
28827 emit_move_insn (ptr_reg, frame_reg_rtx);
28828 if (REGNO (frame_reg_rtx) == ptr_regno)
28829 frame_off = -end_save;
28831 if (can_use_exit && info->cr_save_p)
28832 restore_saved_cr (cr_save_reg, using_mtcr_multiple, true);
28834 ptr_off = -end_save;
28835 rs6000_emit_savres_rtx (info, ptr_reg,
28836 info->gp_save_offset + ptr_off,
28837 info->lr_save_offset + ptr_off,
28838 reg_mode, sel);
28840 else if (using_load_multiple)
28842 rtvec p;
28843 p = rtvec_alloc (32 - info->first_gp_reg_save);
28844 for (i = 0; i < 32 - info->first_gp_reg_save; i++)
28845 RTVEC_ELT (p, i)
28846 = gen_frame_load (gen_rtx_REG (reg_mode, info->first_gp_reg_save + i),
28847 frame_reg_rtx,
28848 info->gp_save_offset + frame_off + reg_size * i);
28849 emit_insn (gen_rtx_PARALLEL (VOIDmode, p));
28851 else
28853 int offset = info->gp_save_offset + frame_off;
28854 for (i = info->first_gp_reg_save; i < 32; i++)
28856 if (save_reg_p (i)
28857 && !cfun->machine->gpr_is_wrapped_separately[i])
28859 rtx reg = gen_rtx_REG (reg_mode, i);
28860 emit_insn (gen_frame_load (reg, frame_reg_rtx, offset));
28863 offset += reg_size;
28867 if (DEFAULT_ABI == ABI_V4 || flag_shrink_wrap)
28869 /* If the frame pointer was used then we can't delay emitting
28870 a REG_CFA_DEF_CFA note. This must happen on the insn that
28871 restores the frame pointer, r31. We may have already emitted
28872 a REG_CFA_DEF_CFA note, but that's OK; A duplicate is
28873 discarded by dwarf2cfi.c/dwarf2out.c, and in any case would
28874 be harmless if emitted. */
28875 if (frame_pointer_needed)
28877 insn = get_last_insn ();
28878 add_reg_note (insn, REG_CFA_DEF_CFA,
28879 plus_constant (Pmode, frame_reg_rtx, frame_off));
28880 RTX_FRAME_RELATED_P (insn) = 1;
28883 /* Set up cfa_restores. We always need these when
28884 shrink-wrapping. If not shrink-wrapping then we only need
28885 the cfa_restore when the stack location is no longer valid.
28886 The cfa_restores must be emitted on or before the insn that
28887 invalidates the stack, and of course must not be emitted
28888 before the insn that actually does the restore. The latter
28889 is why it is a bad idea to emit the cfa_restores as a group
28890 on the last instruction here that actually does a restore:
28891 That insn may be reordered with respect to others doing
28892 restores. */
28893 if (flag_shrink_wrap
28894 && !restoring_GPRs_inline
28895 && info->first_fp_reg_save == 64)
28896 cfa_restores = add_crlr_cfa_restore (info, cfa_restores);
28898 for (i = info->first_gp_reg_save; i < 32; i++)
28899 if (save_reg_p (i)
28900 && !cfun->machine->gpr_is_wrapped_separately[i])
28902 rtx reg = gen_rtx_REG (reg_mode, i);
28903 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg, cfa_restores);
28907 if (!restoring_GPRs_inline
28908 && info->first_fp_reg_save == 64)
28910 /* We are jumping to an out-of-line function. */
28911 if (cfa_restores)
28912 emit_cfa_restores (cfa_restores);
28913 return;
28916 if (restore_lr && !restoring_GPRs_inline)
28918 load_lr_save (0, frame_reg_rtx, info->lr_save_offset + frame_off);
28919 restore_saved_lr (0, exit_func);
28922 /* Restore fpr's if we need to do it without calling a function. */
28923 if (restoring_FPRs_inline)
28925 int offset = info->fp_save_offset + frame_off;
28926 for (i = info->first_fp_reg_save; i < 64; i++)
28928 if (save_reg_p (i)
28929 && !cfun->machine->fpr_is_wrapped_separately[i - 32])
28931 rtx reg = gen_rtx_REG (fp_reg_mode, i);
28932 emit_insn (gen_frame_load (reg, frame_reg_rtx, offset));
28933 if (DEFAULT_ABI == ABI_V4 || flag_shrink_wrap)
28934 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg,
28935 cfa_restores);
28938 offset += fp_reg_size;
28942 /* If we saved cr, restore it here. Just those that were used. */
28943 if (info->cr_save_p)
28944 restore_saved_cr (cr_save_reg, using_mtcr_multiple, exit_func);
28946 /* If this is V.4, unwind the stack pointer after all of the loads
28947 have been done, or set up r11 if we are restoring fp out of line. */
28948 ptr_regno = 1;
28949 if (!restoring_FPRs_inline)
28951 bool lr = (strategy & REST_NOINLINE_FPRS_DOESNT_RESTORE_LR) == 0;
28952 int sel = SAVRES_FPR | (lr ? SAVRES_LR : 0);
28953 ptr_regno = ptr_regno_for_savres (sel);
28956 insn = rs6000_emit_stack_reset (frame_reg_rtx, frame_off, ptr_regno);
28957 if (REGNO (frame_reg_rtx) == ptr_regno)
28958 frame_off = 0;
28960 if (insn && restoring_FPRs_inline)
28962 if (cfa_restores)
28964 REG_NOTES (insn) = cfa_restores;
28965 cfa_restores = NULL_RTX;
28967 add_reg_note (insn, REG_CFA_DEF_CFA, sp_reg_rtx);
28968 RTX_FRAME_RELATED_P (insn) = 1;
28971 if (crtl->calls_eh_return)
28973 rtx sa = EH_RETURN_STACKADJ_RTX;
28974 emit_insn (gen_add3_insn (sp_reg_rtx, sp_reg_rtx, sa));
28977 if (!sibcall && restoring_FPRs_inline)
28979 if (cfa_restores)
28981 /* We can't hang the cfa_restores off a simple return,
28982 since the shrink-wrap code sometimes uses an existing
28983 return. This means there might be a path from
28984 pre-prologue code to this return, and dwarf2cfi code
28985 wants the eh_frame unwinder state to be the same on
28986 all paths to any point. So we need to emit the
28987 cfa_restores before the return. For -m64 we really
28988 don't need epilogue cfa_restores at all, except for
28989 this irritating dwarf2cfi with shrink-wrap
28990 requirement; The stack red-zone means eh_frame info
28991 from the prologue telling the unwinder to restore
28992 from the stack is perfectly good right to the end of
28993 the function. */
28994 emit_insn (gen_blockage ());
28995 emit_cfa_restores (cfa_restores);
28996 cfa_restores = NULL_RTX;
28999 emit_jump_insn (targetm.gen_simple_return ());
29002 if (!sibcall && !restoring_FPRs_inline)
29004 bool lr = (strategy & REST_NOINLINE_FPRS_DOESNT_RESTORE_LR) == 0;
29005 rtvec p = rtvec_alloc (3 + !!lr + 64 - info->first_fp_reg_save);
29006 int elt = 0;
29007 RTVEC_ELT (p, elt++) = ret_rtx;
29008 if (lr)
29009 RTVEC_ELT (p, elt++)
29010 = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, LR_REGNO));
29012 /* We have to restore more than two FP registers, so branch to the
29013 restore function. It will return to our caller. */
29014 int i;
29015 int reg;
29016 rtx sym;
29018 if (flag_shrink_wrap)
29019 cfa_restores = add_crlr_cfa_restore (info, cfa_restores);
29021 sym = rs6000_savres_routine_sym (info, SAVRES_FPR | (lr ? SAVRES_LR : 0));
29022 RTVEC_ELT (p, elt++) = gen_rtx_USE (VOIDmode, sym);
29023 reg = (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)? 1 : 11;
29024 RTVEC_ELT (p, elt++) = gen_rtx_USE (VOIDmode, gen_rtx_REG (Pmode, reg));
29026 for (i = 0; i < 64 - info->first_fp_reg_save; i++)
29028 rtx reg = gen_rtx_REG (DFmode, info->first_fp_reg_save + i);
29030 RTVEC_ELT (p, elt++)
29031 = gen_frame_load (reg, sp_reg_rtx, info->fp_save_offset + 8 * i);
29032 if (flag_shrink_wrap
29033 && save_reg_p (info->first_fp_reg_save + i))
29034 cfa_restores = alloc_reg_note (REG_CFA_RESTORE, reg, cfa_restores);
29037 emit_jump_insn (gen_rtx_PARALLEL (VOIDmode, p));
29040 if (cfa_restores)
29042 if (sibcall)
29043 /* Ensure the cfa_restores are hung off an insn that won't
29044 be reordered above other restores. */
29045 emit_insn (gen_blockage ());
29047 emit_cfa_restores (cfa_restores);
29051 /* Write function epilogue. */
29053 static void
29054 rs6000_output_function_epilogue (FILE *file)
29056 #if TARGET_MACHO
29057 macho_branch_islands ();
29060 rtx_insn *insn = get_last_insn ();
29061 rtx_insn *deleted_debug_label = NULL;
29063 /* Mach-O doesn't support labels at the end of objects, so if
29064 it looks like we might want one, take special action.
29066 First, collect any sequence of deleted debug labels. */
29067 while (insn
29068 && NOTE_P (insn)
29069 && NOTE_KIND (insn) != NOTE_INSN_DELETED_LABEL)
29071 /* Don't insert a nop for NOTE_INSN_DELETED_DEBUG_LABEL
29072 notes only, instead set their CODE_LABEL_NUMBER to -1,
29073 otherwise there would be code generation differences
29074 in between -g and -g0. */
29075 if (NOTE_P (insn) && NOTE_KIND (insn) == NOTE_INSN_DELETED_DEBUG_LABEL)
29076 deleted_debug_label = insn;
29077 insn = PREV_INSN (insn);
29080 /* Second, if we have:
29081 label:
29082 barrier
29083 then this needs to be detected, so skip past the barrier. */
29085 if (insn && BARRIER_P (insn))
29086 insn = PREV_INSN (insn);
29088 /* Up to now we've only seen notes or barriers. */
29089 if (insn)
29091 if (LABEL_P (insn)
29092 || (NOTE_P (insn)
29093 && NOTE_KIND (insn) == NOTE_INSN_DELETED_LABEL))
29094 /* Trailing label: <barrier>. */
29095 fputs ("\tnop\n", file);
29096 else
29098 /* Lastly, see if we have a completely empty function body. */
29099 while (insn && ! INSN_P (insn))
29100 insn = PREV_INSN (insn);
29101 /* If we don't find any insns, we've got an empty function body;
29102 I.e. completely empty - without a return or branch. This is
29103 taken as the case where a function body has been removed
29104 because it contains an inline __builtin_unreachable(). GCC
29105 states that reaching __builtin_unreachable() means UB so we're
29106 not obliged to do anything special; however, we want
29107 non-zero-sized function bodies. To meet this, and help the
29108 user out, let's trap the case. */
29109 if (insn == NULL)
29110 fputs ("\ttrap\n", file);
29113 else if (deleted_debug_label)
29114 for (insn = deleted_debug_label; insn; insn = NEXT_INSN (insn))
29115 if (NOTE_KIND (insn) == NOTE_INSN_DELETED_DEBUG_LABEL)
29116 CODE_LABEL_NUMBER (insn) = -1;
29118 #endif
29120 /* Output a traceback table here. See /usr/include/sys/debug.h for info
29121 on its format.
29123 We don't output a traceback table if -finhibit-size-directive was
29124 used. The documentation for -finhibit-size-directive reads
29125 ``don't output a @code{.size} assembler directive, or anything
29126 else that would cause trouble if the function is split in the
29127 middle, and the two halves are placed at locations far apart in
29128 memory.'' The traceback table has this property, since it
29129 includes the offset from the start of the function to the
29130 traceback table itself.
29132 System V.4 Powerpc's (and the embedded ABI derived from it) use a
29133 different traceback table. */
29134 if ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
29135 && ! flag_inhibit_size_directive
29136 && rs6000_traceback != traceback_none && !cfun->is_thunk)
29138 const char *fname = NULL;
29139 const char *language_string = lang_hooks.name;
29140 int fixed_parms = 0, float_parms = 0, parm_info = 0;
29141 int i;
29142 int optional_tbtab;
29143 rs6000_stack_t *info = rs6000_stack_info ();
29145 if (rs6000_traceback == traceback_full)
29146 optional_tbtab = 1;
29147 else if (rs6000_traceback == traceback_part)
29148 optional_tbtab = 0;
29149 else
29150 optional_tbtab = !optimize_size && !TARGET_ELF;
29152 if (optional_tbtab)
29154 fname = XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0);
29155 while (*fname == '.') /* V.4 encodes . in the name */
29156 fname++;
29158 /* Need label immediately before tbtab, so we can compute
29159 its offset from the function start. */
29160 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "LT");
29161 ASM_OUTPUT_LABEL (file, fname);
29164 /* The .tbtab pseudo-op can only be used for the first eight
29165 expressions, since it can't handle the possibly variable
29166 length fields that follow. However, if you omit the optional
29167 fields, the assembler outputs zeros for all optional fields
29168 anyways, giving each variable length field is minimum length
29169 (as defined in sys/debug.h). Thus we can not use the .tbtab
29170 pseudo-op at all. */
29172 /* An all-zero word flags the start of the tbtab, for debuggers
29173 that have to find it by searching forward from the entry
29174 point or from the current pc. */
29175 fputs ("\t.long 0\n", file);
29177 /* Tbtab format type. Use format type 0. */
29178 fputs ("\t.byte 0,", file);
29180 /* Language type. Unfortunately, there does not seem to be any
29181 official way to discover the language being compiled, so we
29182 use language_string.
29183 C is 0. Fortran is 1. Pascal is 2. Ada is 3. C++ is 9.
29184 Java is 13. Objective-C is 14. Objective-C++ isn't assigned
29185 a number, so for now use 9. LTO, Go and JIT aren't assigned numbers
29186 either, so for now use 0. */
29187 if (lang_GNU_C ()
29188 || ! strcmp (language_string, "GNU GIMPLE")
29189 || ! strcmp (language_string, "GNU Go")
29190 || ! strcmp (language_string, "libgccjit"))
29191 i = 0;
29192 else if (! strcmp (language_string, "GNU F77")
29193 || lang_GNU_Fortran ())
29194 i = 1;
29195 else if (! strcmp (language_string, "GNU Pascal"))
29196 i = 2;
29197 else if (! strcmp (language_string, "GNU Ada"))
29198 i = 3;
29199 else if (lang_GNU_CXX ()
29200 || ! strcmp (language_string, "GNU Objective-C++"))
29201 i = 9;
29202 else if (! strcmp (language_string, "GNU Java"))
29203 i = 13;
29204 else if (! strcmp (language_string, "GNU Objective-C"))
29205 i = 14;
29206 else
29207 gcc_unreachable ();
29208 fprintf (file, "%d,", i);
29210 /* 8 single bit fields: global linkage (not set for C extern linkage,
29211 apparently a PL/I convention?), out-of-line epilogue/prologue, offset
29212 from start of procedure stored in tbtab, internal function, function
29213 has controlled storage, function has no toc, function uses fp,
29214 function logs/aborts fp operations. */
29215 /* Assume that fp operations are used if any fp reg must be saved. */
29216 fprintf (file, "%d,",
29217 (optional_tbtab << 5) | ((info->first_fp_reg_save != 64) << 1));
29219 /* 6 bitfields: function is interrupt handler, name present in
29220 proc table, function calls alloca, on condition directives
29221 (controls stack walks, 3 bits), saves condition reg, saves
29222 link reg. */
29223 /* The `function calls alloca' bit seems to be set whenever reg 31 is
29224 set up as a frame pointer, even when there is no alloca call. */
29225 fprintf (file, "%d,",
29226 ((optional_tbtab << 6)
29227 | ((optional_tbtab & frame_pointer_needed) << 5)
29228 | (info->cr_save_p << 1)
29229 | (info->lr_save_p)));
29231 /* 3 bitfields: saves backchain, fixup code, number of fpr saved
29232 (6 bits). */
29233 fprintf (file, "%d,",
29234 (info->push_p << 7) | (64 - info->first_fp_reg_save));
29236 /* 2 bitfields: spare bits (2 bits), number of gpr saved (6 bits). */
29237 fprintf (file, "%d,", (32 - first_reg_to_save ()));
29239 if (optional_tbtab)
29241 /* Compute the parameter info from the function decl argument
29242 list. */
29243 tree decl;
29244 int next_parm_info_bit = 31;
29246 for (decl = DECL_ARGUMENTS (current_function_decl);
29247 decl; decl = DECL_CHAIN (decl))
29249 rtx parameter = DECL_INCOMING_RTL (decl);
29250 machine_mode mode = GET_MODE (parameter);
29252 if (GET_CODE (parameter) == REG)
29254 if (SCALAR_FLOAT_MODE_P (mode))
29256 int bits;
29258 float_parms++;
29260 switch (mode)
29262 case E_SFmode:
29263 case E_SDmode:
29264 bits = 0x2;
29265 break;
29267 case E_DFmode:
29268 case E_DDmode:
29269 case E_TFmode:
29270 case E_TDmode:
29271 case E_IFmode:
29272 case E_KFmode:
29273 bits = 0x3;
29274 break;
29276 default:
29277 gcc_unreachable ();
29280 /* If only one bit will fit, don't or in this entry. */
29281 if (next_parm_info_bit > 0)
29282 parm_info |= (bits << (next_parm_info_bit - 1));
29283 next_parm_info_bit -= 2;
29285 else
29287 fixed_parms += ((GET_MODE_SIZE (mode)
29288 + (UNITS_PER_WORD - 1))
29289 / UNITS_PER_WORD);
29290 next_parm_info_bit -= 1;
29296 /* Number of fixed point parameters. */
29297 /* This is actually the number of words of fixed point parameters; thus
29298 an 8 byte struct counts as 2; and thus the maximum value is 8. */
29299 fprintf (file, "%d,", fixed_parms);
29301 /* 2 bitfields: number of floating point parameters (7 bits), parameters
29302 all on stack. */
29303 /* This is actually the number of fp registers that hold parameters;
29304 and thus the maximum value is 13. */
29305 /* Set parameters on stack bit if parameters are not in their original
29306 registers, regardless of whether they are on the stack? Xlc
29307 seems to set the bit when not optimizing. */
29308 fprintf (file, "%d\n", ((float_parms << 1) | (! optimize)));
29310 if (optional_tbtab)
29312 /* Optional fields follow. Some are variable length. */
29314 /* Parameter types, left adjusted bit fields: 0 fixed, 10 single
29315 float, 11 double float. */
29316 /* There is an entry for each parameter in a register, in the order
29317 that they occur in the parameter list. Any intervening arguments
29318 on the stack are ignored. If the list overflows a long (max
29319 possible length 34 bits) then completely leave off all elements
29320 that don't fit. */
29321 /* Only emit this long if there was at least one parameter. */
29322 if (fixed_parms || float_parms)
29323 fprintf (file, "\t.long %d\n", parm_info);
29325 /* Offset from start of code to tb table. */
29326 fputs ("\t.long ", file);
29327 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "LT");
29328 RS6000_OUTPUT_BASENAME (file, fname);
29329 putc ('-', file);
29330 rs6000_output_function_entry (file, fname);
29331 putc ('\n', file);
29333 /* Interrupt handler mask. */
29334 /* Omit this long, since we never set the interrupt handler bit
29335 above. */
29337 /* Number of CTL (controlled storage) anchors. */
29338 /* Omit this long, since the has_ctl bit is never set above. */
29340 /* Displacement into stack of each CTL anchor. */
29341 /* Omit this list of longs, because there are no CTL anchors. */
29343 /* Length of function name. */
29344 if (*fname == '*')
29345 ++fname;
29346 fprintf (file, "\t.short %d\n", (int) strlen (fname));
29348 /* Function name. */
29349 assemble_string (fname, strlen (fname));
29351 /* Register for alloca automatic storage; this is always reg 31.
29352 Only emit this if the alloca bit was set above. */
29353 if (frame_pointer_needed)
29354 fputs ("\t.byte 31\n", file);
29356 fputs ("\t.align 2\n", file);
29360 /* Arrange to define .LCTOC1 label, if not already done. */
29361 if (need_toc_init)
29363 need_toc_init = 0;
29364 if (!toc_initialized)
29366 switch_to_section (toc_section);
29367 switch_to_section (current_function_section ());
29372 /* -fsplit-stack support. */
29374 /* A SYMBOL_REF for __morestack. */
29375 static GTY(()) rtx morestack_ref;
29377 static rtx
29378 gen_add3_const (rtx rt, rtx ra, long c)
29380 if (TARGET_64BIT)
29381 return gen_adddi3 (rt, ra, GEN_INT (c));
29382 else
29383 return gen_addsi3 (rt, ra, GEN_INT (c));
29386 /* Emit -fsplit-stack prologue, which goes before the regular function
29387 prologue (at local entry point in the case of ELFv2). */
29389 void
29390 rs6000_expand_split_stack_prologue (void)
29392 rs6000_stack_t *info = rs6000_stack_info ();
29393 unsigned HOST_WIDE_INT allocate;
29394 long alloc_hi, alloc_lo;
29395 rtx r0, r1, r12, lr, ok_label, compare, jump, call_fusage;
29396 rtx_insn *insn;
29398 gcc_assert (flag_split_stack && reload_completed);
29400 if (!info->push_p)
29401 return;
29403 if (global_regs[29])
29405 error ("%qs uses register r29", "-fsplit-stack");
29406 inform (DECL_SOURCE_LOCATION (global_regs_decl[29]),
29407 "conflicts with %qD", global_regs_decl[29]);
29410 allocate = info->total_size;
29411 if (allocate > (unsigned HOST_WIDE_INT) 1 << 31)
29413 sorry ("Stack frame larger than 2G is not supported for -fsplit-stack");
29414 return;
29416 if (morestack_ref == NULL_RTX)
29418 morestack_ref = gen_rtx_SYMBOL_REF (Pmode, "__morestack");
29419 SYMBOL_REF_FLAGS (morestack_ref) |= (SYMBOL_FLAG_LOCAL
29420 | SYMBOL_FLAG_FUNCTION);
29423 r0 = gen_rtx_REG (Pmode, 0);
29424 r1 = gen_rtx_REG (Pmode, STACK_POINTER_REGNUM);
29425 r12 = gen_rtx_REG (Pmode, 12);
29426 emit_insn (gen_load_split_stack_limit (r0));
29427 /* Always emit two insns here to calculate the requested stack,
29428 so that the linker can edit them when adjusting size for calling
29429 non-split-stack code. */
29430 alloc_hi = (-allocate + 0x8000) & ~0xffffL;
29431 alloc_lo = -allocate - alloc_hi;
29432 if (alloc_hi != 0)
29434 emit_insn (gen_add3_const (r12, r1, alloc_hi));
29435 if (alloc_lo != 0)
29436 emit_insn (gen_add3_const (r12, r12, alloc_lo));
29437 else
29438 emit_insn (gen_nop ());
29440 else
29442 emit_insn (gen_add3_const (r12, r1, alloc_lo));
29443 emit_insn (gen_nop ());
29446 compare = gen_rtx_REG (CCUNSmode, CR7_REGNO);
29447 emit_insn (gen_rtx_SET (compare, gen_rtx_COMPARE (CCUNSmode, r12, r0)));
29448 ok_label = gen_label_rtx ();
29449 jump = gen_rtx_IF_THEN_ELSE (VOIDmode,
29450 gen_rtx_GEU (VOIDmode, compare, const0_rtx),
29451 gen_rtx_LABEL_REF (VOIDmode, ok_label),
29452 pc_rtx);
29453 insn = emit_jump_insn (gen_rtx_SET (pc_rtx, jump));
29454 JUMP_LABEL (insn) = ok_label;
29455 /* Mark the jump as very likely to be taken. */
29456 add_reg_br_prob_note (insn, profile_probability::very_likely ());
29458 lr = gen_rtx_REG (Pmode, LR_REGNO);
29459 insn = emit_move_insn (r0, lr);
29460 RTX_FRAME_RELATED_P (insn) = 1;
29461 insn = emit_insn (gen_frame_store (r0, r1, info->lr_save_offset));
29462 RTX_FRAME_RELATED_P (insn) = 1;
29464 insn = emit_call_insn (gen_call (gen_rtx_MEM (SImode, morestack_ref),
29465 const0_rtx, const0_rtx));
29466 call_fusage = NULL_RTX;
29467 use_reg (&call_fusage, r12);
29468 /* Say the call uses r0, even though it doesn't, to stop regrename
29469 from twiddling with the insns saving lr, trashing args for cfun.
29470 The insns restoring lr are similarly protected by making
29471 split_stack_return use r0. */
29472 use_reg (&call_fusage, r0);
29473 add_function_usage_to (insn, call_fusage);
29474 /* Indicate that this function can't jump to non-local gotos. */
29475 make_reg_eh_region_note_nothrow_nononlocal (insn);
29476 emit_insn (gen_frame_load (r0, r1, info->lr_save_offset));
29477 insn = emit_move_insn (lr, r0);
29478 add_reg_note (insn, REG_CFA_RESTORE, lr);
29479 RTX_FRAME_RELATED_P (insn) = 1;
29480 emit_insn (gen_split_stack_return ());
29482 emit_label (ok_label);
29483 LABEL_NUSES (ok_label) = 1;
29486 /* Return the internal arg pointer used for function incoming
29487 arguments. When -fsplit-stack, the arg pointer is r12 so we need
29488 to copy it to a pseudo in order for it to be preserved over calls
29489 and suchlike. We'd really like to use a pseudo here for the
29490 internal arg pointer but data-flow analysis is not prepared to
29491 accept pseudos as live at the beginning of a function. */
29493 static rtx
29494 rs6000_internal_arg_pointer (void)
29496 if (flag_split_stack
29497 && (lookup_attribute ("no_split_stack", DECL_ATTRIBUTES (cfun->decl))
29498 == NULL))
29501 if (cfun->machine->split_stack_arg_pointer == NULL_RTX)
29503 rtx pat;
29505 cfun->machine->split_stack_arg_pointer = gen_reg_rtx (Pmode);
29506 REG_POINTER (cfun->machine->split_stack_arg_pointer) = 1;
29508 /* Put the pseudo initialization right after the note at the
29509 beginning of the function. */
29510 pat = gen_rtx_SET (cfun->machine->split_stack_arg_pointer,
29511 gen_rtx_REG (Pmode, 12));
29512 push_topmost_sequence ();
29513 emit_insn_after (pat, get_insns ());
29514 pop_topmost_sequence ();
29516 return plus_constant (Pmode, cfun->machine->split_stack_arg_pointer,
29517 FIRST_PARM_OFFSET (current_function_decl));
29519 return virtual_incoming_args_rtx;
29522 /* We may have to tell the dataflow pass that the split stack prologue
29523 is initializing a register. */
29525 static void
29526 rs6000_live_on_entry (bitmap regs)
29528 if (flag_split_stack)
29529 bitmap_set_bit (regs, 12);
29532 /* Emit -fsplit-stack dynamic stack allocation space check. */
29534 void
29535 rs6000_split_stack_space_check (rtx size, rtx label)
29537 rtx sp = gen_rtx_REG (Pmode, STACK_POINTER_REGNUM);
29538 rtx limit = gen_reg_rtx (Pmode);
29539 rtx requested = gen_reg_rtx (Pmode);
29540 rtx cmp = gen_reg_rtx (CCUNSmode);
29541 rtx jump;
29543 emit_insn (gen_load_split_stack_limit (limit));
29544 if (CONST_INT_P (size))
29545 emit_insn (gen_add3_insn (requested, sp, GEN_INT (-INTVAL (size))));
29546 else
29548 size = force_reg (Pmode, size);
29549 emit_move_insn (requested, gen_rtx_MINUS (Pmode, sp, size));
29551 emit_insn (gen_rtx_SET (cmp, gen_rtx_COMPARE (CCUNSmode, requested, limit)));
29552 jump = gen_rtx_IF_THEN_ELSE (VOIDmode,
29553 gen_rtx_GEU (VOIDmode, cmp, const0_rtx),
29554 gen_rtx_LABEL_REF (VOIDmode, label),
29555 pc_rtx);
29556 jump = emit_jump_insn (gen_rtx_SET (pc_rtx, jump));
29557 JUMP_LABEL (jump) = label;
29560 /* A C compound statement that outputs the assembler code for a thunk
29561 function, used to implement C++ virtual function calls with
29562 multiple inheritance. The thunk acts as a wrapper around a virtual
29563 function, adjusting the implicit object parameter before handing
29564 control off to the real function.
29566 First, emit code to add the integer DELTA to the location that
29567 contains the incoming first argument. Assume that this argument
29568 contains a pointer, and is the one used to pass the `this' pointer
29569 in C++. This is the incoming argument *before* the function
29570 prologue, e.g. `%o0' on a sparc. The addition must preserve the
29571 values of all other incoming arguments.
29573 After the addition, emit code to jump to FUNCTION, which is a
29574 `FUNCTION_DECL'. This is a direct pure jump, not a call, and does
29575 not touch the return address. Hence returning from FUNCTION will
29576 return to whoever called the current `thunk'.
29578 The effect must be as if FUNCTION had been called directly with the
29579 adjusted first argument. This macro is responsible for emitting
29580 all of the code for a thunk function; output_function_prologue()
29581 and output_function_epilogue() are not invoked.
29583 The THUNK_FNDECL is redundant. (DELTA and FUNCTION have already
29584 been extracted from it.) It might possibly be useful on some
29585 targets, but probably not.
29587 If you do not define this macro, the target-independent code in the
29588 C++ frontend will generate a less efficient heavyweight thunk that
29589 calls FUNCTION instead of jumping to it. The generic approach does
29590 not support varargs. */
29592 static void
29593 rs6000_output_mi_thunk (FILE *file, tree thunk_fndecl ATTRIBUTE_UNUSED,
29594 HOST_WIDE_INT delta, HOST_WIDE_INT vcall_offset,
29595 tree function)
29597 rtx this_rtx, funexp;
29598 rtx_insn *insn;
29600 reload_completed = 1;
29601 epilogue_completed = 1;
29603 /* Mark the end of the (empty) prologue. */
29604 emit_note (NOTE_INSN_PROLOGUE_END);
29606 /* Find the "this" pointer. If the function returns a structure,
29607 the structure return pointer is in r3. */
29608 if (aggregate_value_p (TREE_TYPE (TREE_TYPE (function)), function))
29609 this_rtx = gen_rtx_REG (Pmode, 4);
29610 else
29611 this_rtx = gen_rtx_REG (Pmode, 3);
29613 /* Apply the constant offset, if required. */
29614 if (delta)
29615 emit_insn (gen_add3_insn (this_rtx, this_rtx, GEN_INT (delta)));
29617 /* Apply the offset from the vtable, if required. */
29618 if (vcall_offset)
29620 rtx vcall_offset_rtx = GEN_INT (vcall_offset);
29621 rtx tmp = gen_rtx_REG (Pmode, 12);
29623 emit_move_insn (tmp, gen_rtx_MEM (Pmode, this_rtx));
29624 if (((unsigned HOST_WIDE_INT) vcall_offset) + 0x8000 >= 0x10000)
29626 emit_insn (gen_add3_insn (tmp, tmp, vcall_offset_rtx));
29627 emit_move_insn (tmp, gen_rtx_MEM (Pmode, tmp));
29629 else
29631 rtx loc = gen_rtx_PLUS (Pmode, tmp, vcall_offset_rtx);
29633 emit_move_insn (tmp, gen_rtx_MEM (Pmode, loc));
29635 emit_insn (gen_add3_insn (this_rtx, this_rtx, tmp));
29638 /* Generate a tail call to the target function. */
29639 if (!TREE_USED (function))
29641 assemble_external (function);
29642 TREE_USED (function) = 1;
29644 funexp = XEXP (DECL_RTL (function), 0);
29645 funexp = gen_rtx_MEM (FUNCTION_MODE, funexp);
29647 #if TARGET_MACHO
29648 if (MACHOPIC_INDIRECT)
29649 funexp = machopic_indirect_call_target (funexp);
29650 #endif
29652 /* gen_sibcall expects reload to convert scratch pseudo to LR so we must
29653 generate sibcall RTL explicitly. */
29654 insn = emit_call_insn (
29655 gen_rtx_PARALLEL (VOIDmode,
29656 gen_rtvec (3,
29657 gen_rtx_CALL (VOIDmode,
29658 funexp, const0_rtx),
29659 gen_rtx_USE (VOIDmode, const0_rtx),
29660 simple_return_rtx)));
29661 SIBLING_CALL_P (insn) = 1;
29662 emit_barrier ();
29664 /* Run just enough of rest_of_compilation to get the insns emitted.
29665 There's not really enough bulk here to make other passes such as
29666 instruction scheduling worth while. Note that use_thunk calls
29667 assemble_start_function and assemble_end_function. */
29668 insn = get_insns ();
29669 shorten_branches (insn);
29670 final_start_function (insn, file, 1);
29671 final (insn, file, 1);
29672 final_end_function ();
29674 reload_completed = 0;
29675 epilogue_completed = 0;
29678 /* A quick summary of the various types of 'constant-pool tables'
29679 under PowerPC:
29681 Target Flags Name One table per
29682 AIX (none) AIX TOC object file
29683 AIX -mfull-toc AIX TOC object file
29684 AIX -mminimal-toc AIX minimal TOC translation unit
29685 SVR4/EABI (none) SVR4 SDATA object file
29686 SVR4/EABI -fpic SVR4 pic object file
29687 SVR4/EABI -fPIC SVR4 PIC translation unit
29688 SVR4/EABI -mrelocatable EABI TOC function
29689 SVR4/EABI -maix AIX TOC object file
29690 SVR4/EABI -maix -mminimal-toc
29691 AIX minimal TOC translation unit
29693 Name Reg. Set by entries contains:
29694 made by addrs? fp? sum?
29696 AIX TOC 2 crt0 as Y option option
29697 AIX minimal TOC 30 prolog gcc Y Y option
29698 SVR4 SDATA 13 crt0 gcc N Y N
29699 SVR4 pic 30 prolog ld Y not yet N
29700 SVR4 PIC 30 prolog gcc Y option option
29701 EABI TOC 30 prolog gcc Y option option
29705 /* Hash functions for the hash table. */
29707 static unsigned
29708 rs6000_hash_constant (rtx k)
29710 enum rtx_code code = GET_CODE (k);
29711 machine_mode mode = GET_MODE (k);
29712 unsigned result = (code << 3) ^ mode;
29713 const char *format;
29714 int flen, fidx;
29716 format = GET_RTX_FORMAT (code);
29717 flen = strlen (format);
29718 fidx = 0;
29720 switch (code)
29722 case LABEL_REF:
29723 return result * 1231 + (unsigned) INSN_UID (XEXP (k, 0));
29725 case CONST_WIDE_INT:
29727 int i;
29728 flen = CONST_WIDE_INT_NUNITS (k);
29729 for (i = 0; i < flen; i++)
29730 result = result * 613 + CONST_WIDE_INT_ELT (k, i);
29731 return result;
29734 case CONST_DOUBLE:
29735 if (mode != VOIDmode)
29736 return real_hash (CONST_DOUBLE_REAL_VALUE (k)) * result;
29737 flen = 2;
29738 break;
29740 case CODE_LABEL:
29741 fidx = 3;
29742 break;
29744 default:
29745 break;
29748 for (; fidx < flen; fidx++)
29749 switch (format[fidx])
29751 case 's':
29753 unsigned i, len;
29754 const char *str = XSTR (k, fidx);
29755 len = strlen (str);
29756 result = result * 613 + len;
29757 for (i = 0; i < len; i++)
29758 result = result * 613 + (unsigned) str[i];
29759 break;
29761 case 'u':
29762 case 'e':
29763 result = result * 1231 + rs6000_hash_constant (XEXP (k, fidx));
29764 break;
29765 case 'i':
29766 case 'n':
29767 result = result * 613 + (unsigned) XINT (k, fidx);
29768 break;
29769 case 'w':
29770 if (sizeof (unsigned) >= sizeof (HOST_WIDE_INT))
29771 result = result * 613 + (unsigned) XWINT (k, fidx);
29772 else
29774 size_t i;
29775 for (i = 0; i < sizeof (HOST_WIDE_INT) / sizeof (unsigned); i++)
29776 result = result * 613 + (unsigned) (XWINT (k, fidx)
29777 >> CHAR_BIT * i);
29779 break;
29780 case '0':
29781 break;
29782 default:
29783 gcc_unreachable ();
29786 return result;
29789 hashval_t
29790 toc_hasher::hash (toc_hash_struct *thc)
29792 return rs6000_hash_constant (thc->key) ^ thc->key_mode;
29795 /* Compare H1 and H2 for equivalence. */
29797 bool
29798 toc_hasher::equal (toc_hash_struct *h1, toc_hash_struct *h2)
29800 rtx r1 = h1->key;
29801 rtx r2 = h2->key;
29803 if (h1->key_mode != h2->key_mode)
29804 return 0;
29806 return rtx_equal_p (r1, r2);
29809 /* These are the names given by the C++ front-end to vtables, and
29810 vtable-like objects. Ideally, this logic should not be here;
29811 instead, there should be some programmatic way of inquiring as
29812 to whether or not an object is a vtable. */
29814 #define VTABLE_NAME_P(NAME) \
29815 (strncmp ("_vt.", name, strlen ("_vt.")) == 0 \
29816 || strncmp ("_ZTV", name, strlen ("_ZTV")) == 0 \
29817 || strncmp ("_ZTT", name, strlen ("_ZTT")) == 0 \
29818 || strncmp ("_ZTI", name, strlen ("_ZTI")) == 0 \
29819 || strncmp ("_ZTC", name, strlen ("_ZTC")) == 0)
29821 #ifdef NO_DOLLAR_IN_LABEL
29822 /* Return a GGC-allocated character string translating dollar signs in
29823 input NAME to underscores. Used by XCOFF ASM_OUTPUT_LABELREF. */
29825 const char *
29826 rs6000_xcoff_strip_dollar (const char *name)
29828 char *strip, *p;
29829 const char *q;
29830 size_t len;
29832 q = (const char *) strchr (name, '$');
29834 if (q == 0 || q == name)
29835 return name;
29837 len = strlen (name);
29838 strip = XALLOCAVEC (char, len + 1);
29839 strcpy (strip, name);
29840 p = strip + (q - name);
29841 while (p)
29843 *p = '_';
29844 p = strchr (p + 1, '$');
29847 return ggc_alloc_string (strip, len);
29849 #endif
29851 void
29852 rs6000_output_symbol_ref (FILE *file, rtx x)
29854 const char *name = XSTR (x, 0);
29856 /* Currently C++ toc references to vtables can be emitted before it
29857 is decided whether the vtable is public or private. If this is
29858 the case, then the linker will eventually complain that there is
29859 a reference to an unknown section. Thus, for vtables only,
29860 we emit the TOC reference to reference the identifier and not the
29861 symbol. */
29862 if (VTABLE_NAME_P (name))
29864 RS6000_OUTPUT_BASENAME (file, name);
29866 else
29867 assemble_name (file, name);
29870 /* Output a TOC entry. We derive the entry name from what is being
29871 written. */
29873 void
29874 output_toc (FILE *file, rtx x, int labelno, machine_mode mode)
29876 char buf[256];
29877 const char *name = buf;
29878 rtx base = x;
29879 HOST_WIDE_INT offset = 0;
29881 gcc_assert (!TARGET_NO_TOC);
29883 /* When the linker won't eliminate them, don't output duplicate
29884 TOC entries (this happens on AIX if there is any kind of TOC,
29885 and on SVR4 under -fPIC or -mrelocatable). Don't do this for
29886 CODE_LABELs. */
29887 if (TARGET_TOC && GET_CODE (x) != LABEL_REF)
29889 struct toc_hash_struct *h;
29891 /* Create toc_hash_table. This can't be done at TARGET_OPTION_OVERRIDE
29892 time because GGC is not initialized at that point. */
29893 if (toc_hash_table == NULL)
29894 toc_hash_table = hash_table<toc_hasher>::create_ggc (1021);
29896 h = ggc_alloc<toc_hash_struct> ();
29897 h->key = x;
29898 h->key_mode = mode;
29899 h->labelno = labelno;
29901 toc_hash_struct **found = toc_hash_table->find_slot (h, INSERT);
29902 if (*found == NULL)
29903 *found = h;
29904 else /* This is indeed a duplicate.
29905 Set this label equal to that label. */
29907 fputs ("\t.set ", file);
29908 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "LC");
29909 fprintf (file, "%d,", labelno);
29910 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "LC");
29911 fprintf (file, "%d\n", ((*found)->labelno));
29913 #ifdef HAVE_AS_TLS
29914 if (TARGET_XCOFF && GET_CODE (x) == SYMBOL_REF
29915 && (SYMBOL_REF_TLS_MODEL (x) == TLS_MODEL_GLOBAL_DYNAMIC
29916 || SYMBOL_REF_TLS_MODEL (x) == TLS_MODEL_LOCAL_DYNAMIC))
29918 fputs ("\t.set ", file);
29919 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "LCM");
29920 fprintf (file, "%d,", labelno);
29921 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (file, "LCM");
29922 fprintf (file, "%d\n", ((*found)->labelno));
29924 #endif
29925 return;
29929 /* If we're going to put a double constant in the TOC, make sure it's
29930 aligned properly when strict alignment is on. */
29931 if ((CONST_DOUBLE_P (x) || CONST_WIDE_INT_P (x))
29932 && STRICT_ALIGNMENT
29933 && GET_MODE_BITSIZE (mode) >= 64
29934 && ! (TARGET_NO_FP_IN_TOC && ! TARGET_MINIMAL_TOC)) {
29935 ASM_OUTPUT_ALIGN (file, 3);
29938 (*targetm.asm_out.internal_label) (file, "LC", labelno);
29940 /* Handle FP constants specially. Note that if we have a minimal
29941 TOC, things we put here aren't actually in the TOC, so we can allow
29942 FP constants. */
29943 if (GET_CODE (x) == CONST_DOUBLE &&
29944 (GET_MODE (x) == TFmode || GET_MODE (x) == TDmode
29945 || GET_MODE (x) == IFmode || GET_MODE (x) == KFmode))
29947 long k[4];
29949 if (DECIMAL_FLOAT_MODE_P (GET_MODE (x)))
29950 REAL_VALUE_TO_TARGET_DECIMAL128 (*CONST_DOUBLE_REAL_VALUE (x), k);
29951 else
29952 REAL_VALUE_TO_TARGET_LONG_DOUBLE (*CONST_DOUBLE_REAL_VALUE (x), k);
29954 if (TARGET_64BIT)
29956 if (TARGET_ELF || TARGET_MINIMAL_TOC)
29957 fputs (DOUBLE_INT_ASM_OP, file);
29958 else
29959 fprintf (file, "\t.tc FT_%lx_%lx_%lx_%lx[TC],",
29960 k[0] & 0xffffffff, k[1] & 0xffffffff,
29961 k[2] & 0xffffffff, k[3] & 0xffffffff);
29962 fprintf (file, "0x%lx%08lx,0x%lx%08lx\n",
29963 k[WORDS_BIG_ENDIAN ? 0 : 1] & 0xffffffff,
29964 k[WORDS_BIG_ENDIAN ? 1 : 0] & 0xffffffff,
29965 k[WORDS_BIG_ENDIAN ? 2 : 3] & 0xffffffff,
29966 k[WORDS_BIG_ENDIAN ? 3 : 2] & 0xffffffff);
29967 return;
29969 else
29971 if (TARGET_ELF || TARGET_MINIMAL_TOC)
29972 fputs ("\t.long ", file);
29973 else
29974 fprintf (file, "\t.tc FT_%lx_%lx_%lx_%lx[TC],",
29975 k[0] & 0xffffffff, k[1] & 0xffffffff,
29976 k[2] & 0xffffffff, k[3] & 0xffffffff);
29977 fprintf (file, "0x%lx,0x%lx,0x%lx,0x%lx\n",
29978 k[0] & 0xffffffff, k[1] & 0xffffffff,
29979 k[2] & 0xffffffff, k[3] & 0xffffffff);
29980 return;
29983 else if (GET_CODE (x) == CONST_DOUBLE &&
29984 (GET_MODE (x) == DFmode || GET_MODE (x) == DDmode))
29986 long k[2];
29988 if (DECIMAL_FLOAT_MODE_P (GET_MODE (x)))
29989 REAL_VALUE_TO_TARGET_DECIMAL64 (*CONST_DOUBLE_REAL_VALUE (x), k);
29990 else
29991 REAL_VALUE_TO_TARGET_DOUBLE (*CONST_DOUBLE_REAL_VALUE (x), k);
29993 if (TARGET_64BIT)
29995 if (TARGET_ELF || TARGET_MINIMAL_TOC)
29996 fputs (DOUBLE_INT_ASM_OP, file);
29997 else
29998 fprintf (file, "\t.tc FD_%lx_%lx[TC],",
29999 k[0] & 0xffffffff, k[1] & 0xffffffff);
30000 fprintf (file, "0x%lx%08lx\n",
30001 k[WORDS_BIG_ENDIAN ? 0 : 1] & 0xffffffff,
30002 k[WORDS_BIG_ENDIAN ? 1 : 0] & 0xffffffff);
30003 return;
30005 else
30007 if (TARGET_ELF || TARGET_MINIMAL_TOC)
30008 fputs ("\t.long ", file);
30009 else
30010 fprintf (file, "\t.tc FD_%lx_%lx[TC],",
30011 k[0] & 0xffffffff, k[1] & 0xffffffff);
30012 fprintf (file, "0x%lx,0x%lx\n",
30013 k[0] & 0xffffffff, k[1] & 0xffffffff);
30014 return;
30017 else if (GET_CODE (x) == CONST_DOUBLE &&
30018 (GET_MODE (x) == SFmode || GET_MODE (x) == SDmode))
30020 long l;
30022 if (DECIMAL_FLOAT_MODE_P (GET_MODE (x)))
30023 REAL_VALUE_TO_TARGET_DECIMAL32 (*CONST_DOUBLE_REAL_VALUE (x), l);
30024 else
30025 REAL_VALUE_TO_TARGET_SINGLE (*CONST_DOUBLE_REAL_VALUE (x), l);
30027 if (TARGET_64BIT)
30029 if (TARGET_ELF || TARGET_MINIMAL_TOC)
30030 fputs (DOUBLE_INT_ASM_OP, file);
30031 else
30032 fprintf (file, "\t.tc FS_%lx[TC],", l & 0xffffffff);
30033 if (WORDS_BIG_ENDIAN)
30034 fprintf (file, "0x%lx00000000\n", l & 0xffffffff);
30035 else
30036 fprintf (file, "0x%lx\n", l & 0xffffffff);
30037 return;
30039 else
30041 if (TARGET_ELF || TARGET_MINIMAL_TOC)
30042 fputs ("\t.long ", file);
30043 else
30044 fprintf (file, "\t.tc FS_%lx[TC],", l & 0xffffffff);
30045 fprintf (file, "0x%lx\n", l & 0xffffffff);
30046 return;
30049 else if (GET_MODE (x) == VOIDmode && GET_CODE (x) == CONST_INT)
30051 unsigned HOST_WIDE_INT low;
30052 HOST_WIDE_INT high;
30054 low = INTVAL (x) & 0xffffffff;
30055 high = (HOST_WIDE_INT) INTVAL (x) >> 32;
30057 /* TOC entries are always Pmode-sized, so when big-endian
30058 smaller integer constants in the TOC need to be padded.
30059 (This is still a win over putting the constants in
30060 a separate constant pool, because then we'd have
30061 to have both a TOC entry _and_ the actual constant.)
30063 For a 32-bit target, CONST_INT values are loaded and shifted
30064 entirely within `low' and can be stored in one TOC entry. */
30066 /* It would be easy to make this work, but it doesn't now. */
30067 gcc_assert (!TARGET_64BIT || POINTER_SIZE >= GET_MODE_BITSIZE (mode));
30069 if (WORDS_BIG_ENDIAN && POINTER_SIZE > GET_MODE_BITSIZE (mode))
30071 low |= high << 32;
30072 low <<= POINTER_SIZE - GET_MODE_BITSIZE (mode);
30073 high = (HOST_WIDE_INT) low >> 32;
30074 low &= 0xffffffff;
30077 if (TARGET_64BIT)
30079 if (TARGET_ELF || TARGET_MINIMAL_TOC)
30080 fputs (DOUBLE_INT_ASM_OP, file);
30081 else
30082 fprintf (file, "\t.tc ID_%lx_%lx[TC],",
30083 (long) high & 0xffffffff, (long) low & 0xffffffff);
30084 fprintf (file, "0x%lx%08lx\n",
30085 (long) high & 0xffffffff, (long) low & 0xffffffff);
30086 return;
30088 else
30090 if (POINTER_SIZE < GET_MODE_BITSIZE (mode))
30092 if (TARGET_ELF || TARGET_MINIMAL_TOC)
30093 fputs ("\t.long ", file);
30094 else
30095 fprintf (file, "\t.tc ID_%lx_%lx[TC],",
30096 (long) high & 0xffffffff, (long) low & 0xffffffff);
30097 fprintf (file, "0x%lx,0x%lx\n",
30098 (long) high & 0xffffffff, (long) low & 0xffffffff);
30100 else
30102 if (TARGET_ELF || TARGET_MINIMAL_TOC)
30103 fputs ("\t.long ", file);
30104 else
30105 fprintf (file, "\t.tc IS_%lx[TC],", (long) low & 0xffffffff);
30106 fprintf (file, "0x%lx\n", (long) low & 0xffffffff);
30108 return;
30112 if (GET_CODE (x) == CONST)
30114 gcc_assert (GET_CODE (XEXP (x, 0)) == PLUS
30115 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT);
30117 base = XEXP (XEXP (x, 0), 0);
30118 offset = INTVAL (XEXP (XEXP (x, 0), 1));
30121 switch (GET_CODE (base))
30123 case SYMBOL_REF:
30124 name = XSTR (base, 0);
30125 break;
30127 case LABEL_REF:
30128 ASM_GENERATE_INTERNAL_LABEL (buf, "L",
30129 CODE_LABEL_NUMBER (XEXP (base, 0)));
30130 break;
30132 case CODE_LABEL:
30133 ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (base));
30134 break;
30136 default:
30137 gcc_unreachable ();
30140 if (TARGET_ELF || TARGET_MINIMAL_TOC)
30141 fputs (TARGET_32BIT ? "\t.long " : DOUBLE_INT_ASM_OP, file);
30142 else
30144 fputs ("\t.tc ", file);
30145 RS6000_OUTPUT_BASENAME (file, name);
30147 if (offset < 0)
30148 fprintf (file, ".N" HOST_WIDE_INT_PRINT_UNSIGNED, - offset);
30149 else if (offset)
30150 fprintf (file, ".P" HOST_WIDE_INT_PRINT_UNSIGNED, offset);
30152 /* Mark large TOC symbols on AIX with [TE] so they are mapped
30153 after other TOC symbols, reducing overflow of small TOC access
30154 to [TC] symbols. */
30155 fputs (TARGET_XCOFF && TARGET_CMODEL != CMODEL_SMALL
30156 ? "[TE]," : "[TC],", file);
30159 /* Currently C++ toc references to vtables can be emitted before it
30160 is decided whether the vtable is public or private. If this is
30161 the case, then the linker will eventually complain that there is
30162 a TOC reference to an unknown section. Thus, for vtables only,
30163 we emit the TOC reference to reference the symbol and not the
30164 section. */
30165 if (VTABLE_NAME_P (name))
30167 RS6000_OUTPUT_BASENAME (file, name);
30168 if (offset < 0)
30169 fprintf (file, HOST_WIDE_INT_PRINT_DEC, offset);
30170 else if (offset > 0)
30171 fprintf (file, "+" HOST_WIDE_INT_PRINT_DEC, offset);
30173 else
30174 output_addr_const (file, x);
30176 #if HAVE_AS_TLS
30177 if (TARGET_XCOFF && GET_CODE (base) == SYMBOL_REF)
30179 switch (SYMBOL_REF_TLS_MODEL (base))
30181 case 0:
30182 break;
30183 case TLS_MODEL_LOCAL_EXEC:
30184 fputs ("@le", file);
30185 break;
30186 case TLS_MODEL_INITIAL_EXEC:
30187 fputs ("@ie", file);
30188 break;
30189 /* Use global-dynamic for local-dynamic. */
30190 case TLS_MODEL_GLOBAL_DYNAMIC:
30191 case TLS_MODEL_LOCAL_DYNAMIC:
30192 putc ('\n', file);
30193 (*targetm.asm_out.internal_label) (file, "LCM", labelno);
30194 fputs ("\t.tc .", file);
30195 RS6000_OUTPUT_BASENAME (file, name);
30196 fputs ("[TC],", file);
30197 output_addr_const (file, x);
30198 fputs ("@m", file);
30199 break;
30200 default:
30201 gcc_unreachable ();
30204 #endif
30206 putc ('\n', file);
30209 /* Output an assembler pseudo-op to write an ASCII string of N characters
30210 starting at P to FILE.
30212 On the RS/6000, we have to do this using the .byte operation and
30213 write out special characters outside the quoted string.
30214 Also, the assembler is broken; very long strings are truncated,
30215 so we must artificially break them up early. */
30217 void
30218 output_ascii (FILE *file, const char *p, int n)
30220 char c;
30221 int i, count_string;
30222 const char *for_string = "\t.byte \"";
30223 const char *for_decimal = "\t.byte ";
30224 const char *to_close = NULL;
30226 count_string = 0;
30227 for (i = 0; i < n; i++)
30229 c = *p++;
30230 if (c >= ' ' && c < 0177)
30232 if (for_string)
30233 fputs (for_string, file);
30234 putc (c, file);
30236 /* Write two quotes to get one. */
30237 if (c == '"')
30239 putc (c, file);
30240 ++count_string;
30243 for_string = NULL;
30244 for_decimal = "\"\n\t.byte ";
30245 to_close = "\"\n";
30246 ++count_string;
30248 if (count_string >= 512)
30250 fputs (to_close, file);
30252 for_string = "\t.byte \"";
30253 for_decimal = "\t.byte ";
30254 to_close = NULL;
30255 count_string = 0;
30258 else
30260 if (for_decimal)
30261 fputs (for_decimal, file);
30262 fprintf (file, "%d", c);
30264 for_string = "\n\t.byte \"";
30265 for_decimal = ", ";
30266 to_close = "\n";
30267 count_string = 0;
30271 /* Now close the string if we have written one. Then end the line. */
30272 if (to_close)
30273 fputs (to_close, file);
30276 /* Generate a unique section name for FILENAME for a section type
30277 represented by SECTION_DESC. Output goes into BUF.
30279 SECTION_DESC can be any string, as long as it is different for each
30280 possible section type.
30282 We name the section in the same manner as xlc. The name begins with an
30283 underscore followed by the filename (after stripping any leading directory
30284 names) with the last period replaced by the string SECTION_DESC. If
30285 FILENAME does not contain a period, SECTION_DESC is appended to the end of
30286 the name. */
30288 void
30289 rs6000_gen_section_name (char **buf, const char *filename,
30290 const char *section_desc)
30292 const char *q, *after_last_slash, *last_period = 0;
30293 char *p;
30294 int len;
30296 after_last_slash = filename;
30297 for (q = filename; *q; q++)
30299 if (*q == '/')
30300 after_last_slash = q + 1;
30301 else if (*q == '.')
30302 last_period = q;
30305 len = strlen (after_last_slash) + strlen (section_desc) + 2;
30306 *buf = (char *) xmalloc (len);
30308 p = *buf;
30309 *p++ = '_';
30311 for (q = after_last_slash; *q; q++)
30313 if (q == last_period)
30315 strcpy (p, section_desc);
30316 p += strlen (section_desc);
30317 break;
30320 else if (ISALNUM (*q))
30321 *p++ = *q;
30324 if (last_period == 0)
30325 strcpy (p, section_desc);
30326 else
30327 *p = '\0';
30330 /* Emit profile function. */
30332 void
30333 output_profile_hook (int labelno ATTRIBUTE_UNUSED)
30335 /* Non-standard profiling for kernels, which just saves LR then calls
30336 _mcount without worrying about arg saves. The idea is to change
30337 the function prologue as little as possible as it isn't easy to
30338 account for arg save/restore code added just for _mcount. */
30339 if (TARGET_PROFILE_KERNEL)
30340 return;
30342 if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
30344 #ifndef NO_PROFILE_COUNTERS
30345 # define NO_PROFILE_COUNTERS 0
30346 #endif
30347 if (NO_PROFILE_COUNTERS)
30348 emit_library_call (init_one_libfunc (RS6000_MCOUNT),
30349 LCT_NORMAL, VOIDmode);
30350 else
30352 char buf[30];
30353 const char *label_name;
30354 rtx fun;
30356 ASM_GENERATE_INTERNAL_LABEL (buf, "LP", labelno);
30357 label_name = ggc_strdup ((*targetm.strip_name_encoding) (buf));
30358 fun = gen_rtx_SYMBOL_REF (Pmode, label_name);
30360 emit_library_call (init_one_libfunc (RS6000_MCOUNT),
30361 LCT_NORMAL, VOIDmode, fun, Pmode);
30364 else if (DEFAULT_ABI == ABI_DARWIN)
30366 const char *mcount_name = RS6000_MCOUNT;
30367 int caller_addr_regno = LR_REGNO;
30369 /* Be conservative and always set this, at least for now. */
30370 crtl->uses_pic_offset_table = 1;
30372 #if TARGET_MACHO
30373 /* For PIC code, set up a stub and collect the caller's address
30374 from r0, which is where the prologue puts it. */
30375 if (MACHOPIC_INDIRECT
30376 && crtl->uses_pic_offset_table)
30377 caller_addr_regno = 0;
30378 #endif
30379 emit_library_call (gen_rtx_SYMBOL_REF (Pmode, mcount_name),
30380 LCT_NORMAL, VOIDmode,
30381 gen_rtx_REG (Pmode, caller_addr_regno), Pmode);
30385 /* Write function profiler code. */
30387 void
30388 output_function_profiler (FILE *file, int labelno)
30390 char buf[100];
30392 switch (DEFAULT_ABI)
30394 default:
30395 gcc_unreachable ();
30397 case ABI_V4:
30398 if (!TARGET_32BIT)
30400 warning (0, "no profiling of 64-bit code for this ABI");
30401 return;
30403 ASM_GENERATE_INTERNAL_LABEL (buf, "LP", labelno);
30404 fprintf (file, "\tmflr %s\n", reg_names[0]);
30405 if (NO_PROFILE_COUNTERS)
30407 asm_fprintf (file, "\tstw %s,4(%s)\n",
30408 reg_names[0], reg_names[1]);
30410 else if (TARGET_SECURE_PLT && flag_pic)
30412 if (TARGET_LINK_STACK)
30414 char name[32];
30415 get_ppc476_thunk_name (name);
30416 asm_fprintf (file, "\tbl %s\n", name);
30418 else
30419 asm_fprintf (file, "\tbcl 20,31,1f\n1:\n");
30420 asm_fprintf (file, "\tstw %s,4(%s)\n",
30421 reg_names[0], reg_names[1]);
30422 asm_fprintf (file, "\tmflr %s\n", reg_names[12]);
30423 asm_fprintf (file, "\taddis %s,%s,",
30424 reg_names[12], reg_names[12]);
30425 assemble_name (file, buf);
30426 asm_fprintf (file, "-1b@ha\n\tla %s,", reg_names[0]);
30427 assemble_name (file, buf);
30428 asm_fprintf (file, "-1b@l(%s)\n", reg_names[12]);
30430 else if (flag_pic == 1)
30432 fputs ("\tbl _GLOBAL_OFFSET_TABLE_@local-4\n", file);
30433 asm_fprintf (file, "\tstw %s,4(%s)\n",
30434 reg_names[0], reg_names[1]);
30435 asm_fprintf (file, "\tmflr %s\n", reg_names[12]);
30436 asm_fprintf (file, "\tlwz %s,", reg_names[0]);
30437 assemble_name (file, buf);
30438 asm_fprintf (file, "@got(%s)\n", reg_names[12]);
30440 else if (flag_pic > 1)
30442 asm_fprintf (file, "\tstw %s,4(%s)\n",
30443 reg_names[0], reg_names[1]);
30444 /* Now, we need to get the address of the label. */
30445 if (TARGET_LINK_STACK)
30447 char name[32];
30448 get_ppc476_thunk_name (name);
30449 asm_fprintf (file, "\tbl %s\n\tb 1f\n\t.long ", name);
30450 assemble_name (file, buf);
30451 fputs ("-.\n1:", file);
30452 asm_fprintf (file, "\tmflr %s\n", reg_names[11]);
30453 asm_fprintf (file, "\taddi %s,%s,4\n",
30454 reg_names[11], reg_names[11]);
30456 else
30458 fputs ("\tbcl 20,31,1f\n\t.long ", file);
30459 assemble_name (file, buf);
30460 fputs ("-.\n1:", file);
30461 asm_fprintf (file, "\tmflr %s\n", reg_names[11]);
30463 asm_fprintf (file, "\tlwz %s,0(%s)\n",
30464 reg_names[0], reg_names[11]);
30465 asm_fprintf (file, "\tadd %s,%s,%s\n",
30466 reg_names[0], reg_names[0], reg_names[11]);
30468 else
30470 asm_fprintf (file, "\tlis %s,", reg_names[12]);
30471 assemble_name (file, buf);
30472 fputs ("@ha\n", file);
30473 asm_fprintf (file, "\tstw %s,4(%s)\n",
30474 reg_names[0], reg_names[1]);
30475 asm_fprintf (file, "\tla %s,", reg_names[0]);
30476 assemble_name (file, buf);
30477 asm_fprintf (file, "@l(%s)\n", reg_names[12]);
30480 /* ABI_V4 saves the static chain reg with ASM_OUTPUT_REG_PUSH. */
30481 fprintf (file, "\tbl %s%s\n",
30482 RS6000_MCOUNT, flag_pic ? "@plt" : "");
30483 break;
30485 case ABI_AIX:
30486 case ABI_ELFv2:
30487 case ABI_DARWIN:
30488 /* Don't do anything, done in output_profile_hook (). */
30489 break;
30495 /* The following variable value is the last issued insn. */
30497 static rtx_insn *last_scheduled_insn;
30499 /* The following variable helps to balance issuing of load and
30500 store instructions */
30502 static int load_store_pendulum;
30504 /* The following variable helps pair divide insns during scheduling. */
30505 static int divide_cnt;
30506 /* The following variable helps pair and alternate vector and vector load
30507 insns during scheduling. */
30508 static int vec_pairing;
30511 /* Power4 load update and store update instructions are cracked into a
30512 load or store and an integer insn which are executed in the same cycle.
30513 Branches have their own dispatch slot which does not count against the
30514 GCC issue rate, but it changes the program flow so there are no other
30515 instructions to issue in this cycle. */
30517 static int
30518 rs6000_variable_issue_1 (rtx_insn *insn, int more)
30520 last_scheduled_insn = insn;
30521 if (GET_CODE (PATTERN (insn)) == USE
30522 || GET_CODE (PATTERN (insn)) == CLOBBER)
30524 cached_can_issue_more = more;
30525 return cached_can_issue_more;
30528 if (insn_terminates_group_p (insn, current_group))
30530 cached_can_issue_more = 0;
30531 return cached_can_issue_more;
30534 /* If no reservation, but reach here */
30535 if (recog_memoized (insn) < 0)
30536 return more;
30538 if (rs6000_sched_groups)
30540 if (is_microcoded_insn (insn))
30541 cached_can_issue_more = 0;
30542 else if (is_cracked_insn (insn))
30543 cached_can_issue_more = more > 2 ? more - 2 : 0;
30544 else
30545 cached_can_issue_more = more - 1;
30547 return cached_can_issue_more;
30550 if (rs6000_cpu_attr == CPU_CELL && is_nonpipeline_insn (insn))
30551 return 0;
30553 cached_can_issue_more = more - 1;
30554 return cached_can_issue_more;
30557 static int
30558 rs6000_variable_issue (FILE *stream, int verbose, rtx_insn *insn, int more)
30560 int r = rs6000_variable_issue_1 (insn, more);
30561 if (verbose)
30562 fprintf (stream, "// rs6000_variable_issue (more = %d) = %d\n", more, r);
30563 return r;
30566 /* Adjust the cost of a scheduling dependency. Return the new cost of
30567 a dependency LINK or INSN on DEP_INSN. COST is the current cost. */
30569 static int
30570 rs6000_adjust_cost (rtx_insn *insn, int dep_type, rtx_insn *dep_insn, int cost,
30571 unsigned int)
30573 enum attr_type attr_type;
30575 if (recog_memoized (insn) < 0 || recog_memoized (dep_insn) < 0)
30576 return cost;
30578 switch (dep_type)
30580 case REG_DEP_TRUE:
30582 /* Data dependency; DEP_INSN writes a register that INSN reads
30583 some cycles later. */
30585 /* Separate a load from a narrower, dependent store. */
30586 if ((rs6000_sched_groups || rs6000_cpu_attr == CPU_POWER9)
30587 && GET_CODE (PATTERN (insn)) == SET
30588 && GET_CODE (PATTERN (dep_insn)) == SET
30589 && GET_CODE (XEXP (PATTERN (insn), 1)) == MEM
30590 && GET_CODE (XEXP (PATTERN (dep_insn), 0)) == MEM
30591 && (GET_MODE_SIZE (GET_MODE (XEXP (PATTERN (insn), 1)))
30592 > GET_MODE_SIZE (GET_MODE (XEXP (PATTERN (dep_insn), 0)))))
30593 return cost + 14;
30595 attr_type = get_attr_type (insn);
30597 switch (attr_type)
30599 case TYPE_JMPREG:
30600 /* Tell the first scheduling pass about the latency between
30601 a mtctr and bctr (and mtlr and br/blr). The first
30602 scheduling pass will not know about this latency since
30603 the mtctr instruction, which has the latency associated
30604 to it, will be generated by reload. */
30605 return 4;
30606 case TYPE_BRANCH:
30607 /* Leave some extra cycles between a compare and its
30608 dependent branch, to inhibit expensive mispredicts. */
30609 if ((rs6000_cpu_attr == CPU_PPC603
30610 || rs6000_cpu_attr == CPU_PPC604
30611 || rs6000_cpu_attr == CPU_PPC604E
30612 || rs6000_cpu_attr == CPU_PPC620
30613 || rs6000_cpu_attr == CPU_PPC630
30614 || rs6000_cpu_attr == CPU_PPC750
30615 || rs6000_cpu_attr == CPU_PPC7400
30616 || rs6000_cpu_attr == CPU_PPC7450
30617 || rs6000_cpu_attr == CPU_PPCE5500
30618 || rs6000_cpu_attr == CPU_PPCE6500
30619 || rs6000_cpu_attr == CPU_POWER4
30620 || rs6000_cpu_attr == CPU_POWER5
30621 || rs6000_cpu_attr == CPU_POWER7
30622 || rs6000_cpu_attr == CPU_POWER8
30623 || rs6000_cpu_attr == CPU_POWER9
30624 || rs6000_cpu_attr == CPU_CELL)
30625 && recog_memoized (dep_insn)
30626 && (INSN_CODE (dep_insn) >= 0))
30628 switch (get_attr_type (dep_insn))
30630 case TYPE_CMP:
30631 case TYPE_FPCOMPARE:
30632 case TYPE_CR_LOGICAL:
30633 case TYPE_DELAYED_CR:
30634 return cost + 2;
30635 case TYPE_EXTS:
30636 case TYPE_MUL:
30637 if (get_attr_dot (dep_insn) == DOT_YES)
30638 return cost + 2;
30639 else
30640 break;
30641 case TYPE_SHIFT:
30642 if (get_attr_dot (dep_insn) == DOT_YES
30643 && get_attr_var_shift (dep_insn) == VAR_SHIFT_NO)
30644 return cost + 2;
30645 else
30646 break;
30647 default:
30648 break;
30650 break;
30652 case TYPE_STORE:
30653 case TYPE_FPSTORE:
30654 if ((rs6000_cpu == PROCESSOR_POWER6)
30655 && recog_memoized (dep_insn)
30656 && (INSN_CODE (dep_insn) >= 0))
30659 if (GET_CODE (PATTERN (insn)) != SET)
30660 /* If this happens, we have to extend this to schedule
30661 optimally. Return default for now. */
30662 return cost;
30664 /* Adjust the cost for the case where the value written
30665 by a fixed point operation is used as the address
30666 gen value on a store. */
30667 switch (get_attr_type (dep_insn))
30669 case TYPE_LOAD:
30670 case TYPE_CNTLZ:
30672 if (! rs6000_store_data_bypass_p (dep_insn, insn))
30673 return get_attr_sign_extend (dep_insn)
30674 == SIGN_EXTEND_YES ? 6 : 4;
30675 break;
30677 case TYPE_SHIFT:
30679 if (! rs6000_store_data_bypass_p (dep_insn, insn))
30680 return get_attr_var_shift (dep_insn) == VAR_SHIFT_YES ?
30681 6 : 3;
30682 break;
30684 case TYPE_INTEGER:
30685 case TYPE_ADD:
30686 case TYPE_LOGICAL:
30687 case TYPE_EXTS:
30688 case TYPE_INSERT:
30690 if (! rs6000_store_data_bypass_p (dep_insn, insn))
30691 return 3;
30692 break;
30694 case TYPE_STORE:
30695 case TYPE_FPLOAD:
30696 case TYPE_FPSTORE:
30698 if (get_attr_update (dep_insn) == UPDATE_YES
30699 && ! rs6000_store_data_bypass_p (dep_insn, insn))
30700 return 3;
30701 break;
30703 case TYPE_MUL:
30705 if (! rs6000_store_data_bypass_p (dep_insn, insn))
30706 return 17;
30707 break;
30709 case TYPE_DIV:
30711 if (! rs6000_store_data_bypass_p (dep_insn, insn))
30712 return get_attr_size (dep_insn) == SIZE_32 ? 45 : 57;
30713 break;
30715 default:
30716 break;
30719 break;
30721 case TYPE_LOAD:
30722 if ((rs6000_cpu == PROCESSOR_POWER6)
30723 && recog_memoized (dep_insn)
30724 && (INSN_CODE (dep_insn) >= 0))
30727 /* Adjust the cost for the case where the value written
30728 by a fixed point instruction is used within the address
30729 gen portion of a subsequent load(u)(x) */
30730 switch (get_attr_type (dep_insn))
30732 case TYPE_LOAD:
30733 case TYPE_CNTLZ:
30735 if (set_to_load_agen (dep_insn, insn))
30736 return get_attr_sign_extend (dep_insn)
30737 == SIGN_EXTEND_YES ? 6 : 4;
30738 break;
30740 case TYPE_SHIFT:
30742 if (set_to_load_agen (dep_insn, insn))
30743 return get_attr_var_shift (dep_insn) == VAR_SHIFT_YES ?
30744 6 : 3;
30745 break;
30747 case TYPE_INTEGER:
30748 case TYPE_ADD:
30749 case TYPE_LOGICAL:
30750 case TYPE_EXTS:
30751 case TYPE_INSERT:
30753 if (set_to_load_agen (dep_insn, insn))
30754 return 3;
30755 break;
30757 case TYPE_STORE:
30758 case TYPE_FPLOAD:
30759 case TYPE_FPSTORE:
30761 if (get_attr_update (dep_insn) == UPDATE_YES
30762 && set_to_load_agen (dep_insn, insn))
30763 return 3;
30764 break;
30766 case TYPE_MUL:
30768 if (set_to_load_agen (dep_insn, insn))
30769 return 17;
30770 break;
30772 case TYPE_DIV:
30774 if (set_to_load_agen (dep_insn, insn))
30775 return get_attr_size (dep_insn) == SIZE_32 ? 45 : 57;
30776 break;
30778 default:
30779 break;
30782 break;
30784 case TYPE_FPLOAD:
30785 if ((rs6000_cpu == PROCESSOR_POWER6)
30786 && get_attr_update (insn) == UPDATE_NO
30787 && recog_memoized (dep_insn)
30788 && (INSN_CODE (dep_insn) >= 0)
30789 && (get_attr_type (dep_insn) == TYPE_MFFGPR))
30790 return 2;
30792 default:
30793 break;
30796 /* Fall out to return default cost. */
30798 break;
30800 case REG_DEP_OUTPUT:
30801 /* Output dependency; DEP_INSN writes a register that INSN writes some
30802 cycles later. */
30803 if ((rs6000_cpu == PROCESSOR_POWER6)
30804 && recog_memoized (dep_insn)
30805 && (INSN_CODE (dep_insn) >= 0))
30807 attr_type = get_attr_type (insn);
30809 switch (attr_type)
30811 case TYPE_FP:
30812 case TYPE_FPSIMPLE:
30813 if (get_attr_type (dep_insn) == TYPE_FP
30814 || get_attr_type (dep_insn) == TYPE_FPSIMPLE)
30815 return 1;
30816 break;
30817 case TYPE_FPLOAD:
30818 if (get_attr_update (insn) == UPDATE_NO
30819 && get_attr_type (dep_insn) == TYPE_MFFGPR)
30820 return 2;
30821 break;
30822 default:
30823 break;
30826 /* Fall through, no cost for output dependency. */
30827 /* FALLTHRU */
30829 case REG_DEP_ANTI:
30830 /* Anti dependency; DEP_INSN reads a register that INSN writes some
30831 cycles later. */
30832 return 0;
30834 default:
30835 gcc_unreachable ();
30838 return cost;
30841 /* Debug version of rs6000_adjust_cost. */
30843 static int
30844 rs6000_debug_adjust_cost (rtx_insn *insn, int dep_type, rtx_insn *dep_insn,
30845 int cost, unsigned int dw)
30847 int ret = rs6000_adjust_cost (insn, dep_type, dep_insn, cost, dw);
30849 if (ret != cost)
30851 const char *dep;
30853 switch (dep_type)
30855 default: dep = "unknown depencency"; break;
30856 case REG_DEP_TRUE: dep = "data dependency"; break;
30857 case REG_DEP_OUTPUT: dep = "output dependency"; break;
30858 case REG_DEP_ANTI: dep = "anti depencency"; break;
30861 fprintf (stderr,
30862 "\nrs6000_adjust_cost, final cost = %d, orig cost = %d, "
30863 "%s, insn:\n", ret, cost, dep);
30865 debug_rtx (insn);
30868 return ret;
30871 /* The function returns a true if INSN is microcoded.
30872 Return false otherwise. */
30874 static bool
30875 is_microcoded_insn (rtx_insn *insn)
30877 if (!insn || !NONDEBUG_INSN_P (insn)
30878 || GET_CODE (PATTERN (insn)) == USE
30879 || GET_CODE (PATTERN (insn)) == CLOBBER)
30880 return false;
30882 if (rs6000_cpu_attr == CPU_CELL)
30883 return get_attr_cell_micro (insn) == CELL_MICRO_ALWAYS;
30885 if (rs6000_sched_groups
30886 && (rs6000_cpu == PROCESSOR_POWER4 || rs6000_cpu == PROCESSOR_POWER5))
30888 enum attr_type type = get_attr_type (insn);
30889 if ((type == TYPE_LOAD
30890 && get_attr_update (insn) == UPDATE_YES
30891 && get_attr_sign_extend (insn) == SIGN_EXTEND_YES)
30892 || ((type == TYPE_LOAD || type == TYPE_STORE)
30893 && get_attr_update (insn) == UPDATE_YES
30894 && get_attr_indexed (insn) == INDEXED_YES)
30895 || type == TYPE_MFCR)
30896 return true;
30899 return false;
30902 /* The function returns true if INSN is cracked into 2 instructions
30903 by the processor (and therefore occupies 2 issue slots). */
30905 static bool
30906 is_cracked_insn (rtx_insn *insn)
30908 if (!insn || !NONDEBUG_INSN_P (insn)
30909 || GET_CODE (PATTERN (insn)) == USE
30910 || GET_CODE (PATTERN (insn)) == CLOBBER)
30911 return false;
30913 if (rs6000_sched_groups
30914 && (rs6000_cpu == PROCESSOR_POWER4 || rs6000_cpu == PROCESSOR_POWER5))
30916 enum attr_type type = get_attr_type (insn);
30917 if ((type == TYPE_LOAD
30918 && get_attr_sign_extend (insn) == SIGN_EXTEND_YES
30919 && get_attr_update (insn) == UPDATE_NO)
30920 || (type == TYPE_LOAD
30921 && get_attr_sign_extend (insn) == SIGN_EXTEND_NO
30922 && get_attr_update (insn) == UPDATE_YES
30923 && get_attr_indexed (insn) == INDEXED_NO)
30924 || (type == TYPE_STORE
30925 && get_attr_update (insn) == UPDATE_YES
30926 && get_attr_indexed (insn) == INDEXED_NO)
30927 || ((type == TYPE_FPLOAD || type == TYPE_FPSTORE)
30928 && get_attr_update (insn) == UPDATE_YES)
30929 || type == TYPE_DELAYED_CR
30930 || (type == TYPE_EXTS
30931 && get_attr_dot (insn) == DOT_YES)
30932 || (type == TYPE_SHIFT
30933 && get_attr_dot (insn) == DOT_YES
30934 && get_attr_var_shift (insn) == VAR_SHIFT_NO)
30935 || (type == TYPE_MUL
30936 && get_attr_dot (insn) == DOT_YES)
30937 || type == TYPE_DIV
30938 || (type == TYPE_INSERT
30939 && get_attr_size (insn) == SIZE_32))
30940 return true;
30943 return false;
30946 /* The function returns true if INSN can be issued only from
30947 the branch slot. */
30949 static bool
30950 is_branch_slot_insn (rtx_insn *insn)
30952 if (!insn || !NONDEBUG_INSN_P (insn)
30953 || GET_CODE (PATTERN (insn)) == USE
30954 || GET_CODE (PATTERN (insn)) == CLOBBER)
30955 return false;
30957 if (rs6000_sched_groups)
30959 enum attr_type type = get_attr_type (insn);
30960 if (type == TYPE_BRANCH || type == TYPE_JMPREG)
30961 return true;
30962 return false;
30965 return false;
30968 /* The function returns true if out_inst sets a value that is
30969 used in the address generation computation of in_insn */
30970 static bool
30971 set_to_load_agen (rtx_insn *out_insn, rtx_insn *in_insn)
30973 rtx out_set, in_set;
30975 /* For performance reasons, only handle the simple case where
30976 both loads are a single_set. */
30977 out_set = single_set (out_insn);
30978 if (out_set)
30980 in_set = single_set (in_insn);
30981 if (in_set)
30982 return reg_mentioned_p (SET_DEST (out_set), SET_SRC (in_set));
30985 return false;
30988 /* Try to determine base/offset/size parts of the given MEM.
30989 Return true if successful, false if all the values couldn't
30990 be determined.
30992 This function only looks for REG or REG+CONST address forms.
30993 REG+REG address form will return false. */
30995 static bool
30996 get_memref_parts (rtx mem, rtx *base, HOST_WIDE_INT *offset,
30997 HOST_WIDE_INT *size)
30999 rtx addr_rtx;
31000 if MEM_SIZE_KNOWN_P (mem)
31001 *size = MEM_SIZE (mem);
31002 else
31003 return false;
31005 addr_rtx = (XEXP (mem, 0));
31006 if (GET_CODE (addr_rtx) == PRE_MODIFY)
31007 addr_rtx = XEXP (addr_rtx, 1);
31009 *offset = 0;
31010 while (GET_CODE (addr_rtx) == PLUS
31011 && CONST_INT_P (XEXP (addr_rtx, 1)))
31013 *offset += INTVAL (XEXP (addr_rtx, 1));
31014 addr_rtx = XEXP (addr_rtx, 0);
31016 if (!REG_P (addr_rtx))
31017 return false;
31019 *base = addr_rtx;
31020 return true;
31023 /* The function returns true if the target storage location of
31024 mem1 is adjacent to the target storage location of mem2 */
31025 /* Return 1 if memory locations are adjacent. */
31027 static bool
31028 adjacent_mem_locations (rtx mem1, rtx mem2)
31030 rtx reg1, reg2;
31031 HOST_WIDE_INT off1, size1, off2, size2;
31033 if (get_memref_parts (mem1, &reg1, &off1, &size1)
31034 && get_memref_parts (mem2, &reg2, &off2, &size2))
31035 return ((REGNO (reg1) == REGNO (reg2))
31036 && ((off1 + size1 == off2)
31037 || (off2 + size2 == off1)));
31039 return false;
31042 /* This function returns true if it can be determined that the two MEM
31043 locations overlap by at least 1 byte based on base reg/offset/size. */
31045 static bool
31046 mem_locations_overlap (rtx mem1, rtx mem2)
31048 rtx reg1, reg2;
31049 HOST_WIDE_INT off1, size1, off2, size2;
31051 if (get_memref_parts (mem1, &reg1, &off1, &size1)
31052 && get_memref_parts (mem2, &reg2, &off2, &size2))
31053 return ((REGNO (reg1) == REGNO (reg2))
31054 && (((off1 <= off2) && (off1 + size1 > off2))
31055 || ((off2 <= off1) && (off2 + size2 > off1))));
31057 return false;
31060 /* A C statement (sans semicolon) to update the integer scheduling
31061 priority INSN_PRIORITY (INSN). Increase the priority to execute the
31062 INSN earlier, reduce the priority to execute INSN later. Do not
31063 define this macro if you do not need to adjust the scheduling
31064 priorities of insns. */
31066 static int
31067 rs6000_adjust_priority (rtx_insn *insn ATTRIBUTE_UNUSED, int priority)
31069 rtx load_mem, str_mem;
31070 /* On machines (like the 750) which have asymmetric integer units,
31071 where one integer unit can do multiply and divides and the other
31072 can't, reduce the priority of multiply/divide so it is scheduled
31073 before other integer operations. */
31075 #if 0
31076 if (! INSN_P (insn))
31077 return priority;
31079 if (GET_CODE (PATTERN (insn)) == USE)
31080 return priority;
31082 switch (rs6000_cpu_attr) {
31083 case CPU_PPC750:
31084 switch (get_attr_type (insn))
31086 default:
31087 break;
31089 case TYPE_MUL:
31090 case TYPE_DIV:
31091 fprintf (stderr, "priority was %#x (%d) before adjustment\n",
31092 priority, priority);
31093 if (priority >= 0 && priority < 0x01000000)
31094 priority >>= 3;
31095 break;
31098 #endif
31100 if (insn_must_be_first_in_group (insn)
31101 && reload_completed
31102 && current_sched_info->sched_max_insns_priority
31103 && rs6000_sched_restricted_insns_priority)
31106 /* Prioritize insns that can be dispatched only in the first
31107 dispatch slot. */
31108 if (rs6000_sched_restricted_insns_priority == 1)
31109 /* Attach highest priority to insn. This means that in
31110 haifa-sched.c:ready_sort(), dispatch-slot restriction considerations
31111 precede 'priority' (critical path) considerations. */
31112 return current_sched_info->sched_max_insns_priority;
31113 else if (rs6000_sched_restricted_insns_priority == 2)
31114 /* Increase priority of insn by a minimal amount. This means that in
31115 haifa-sched.c:ready_sort(), only 'priority' (critical path)
31116 considerations precede dispatch-slot restriction considerations. */
31117 return (priority + 1);
31120 if (rs6000_cpu == PROCESSOR_POWER6
31121 && ((load_store_pendulum == -2 && is_load_insn (insn, &load_mem))
31122 || (load_store_pendulum == 2 && is_store_insn (insn, &str_mem))))
31123 /* Attach highest priority to insn if the scheduler has just issued two
31124 stores and this instruction is a load, or two loads and this instruction
31125 is a store. Power6 wants loads and stores scheduled alternately
31126 when possible */
31127 return current_sched_info->sched_max_insns_priority;
31129 return priority;
31132 /* Return true if the instruction is nonpipelined on the Cell. */
31133 static bool
31134 is_nonpipeline_insn (rtx_insn *insn)
31136 enum attr_type type;
31137 if (!insn || !NONDEBUG_INSN_P (insn)
31138 || GET_CODE (PATTERN (insn)) == USE
31139 || GET_CODE (PATTERN (insn)) == CLOBBER)
31140 return false;
31142 type = get_attr_type (insn);
31143 if (type == TYPE_MUL
31144 || type == TYPE_DIV
31145 || type == TYPE_SDIV
31146 || type == TYPE_DDIV
31147 || type == TYPE_SSQRT
31148 || type == TYPE_DSQRT
31149 || type == TYPE_MFCR
31150 || type == TYPE_MFCRF
31151 || type == TYPE_MFJMPR)
31153 return true;
31155 return false;
31159 /* Return how many instructions the machine can issue per cycle. */
31161 static int
31162 rs6000_issue_rate (void)
31164 /* Unless scheduling for register pressure, use issue rate of 1 for
31165 first scheduling pass to decrease degradation. */
31166 if (!reload_completed && !flag_sched_pressure)
31167 return 1;
31169 switch (rs6000_cpu_attr) {
31170 case CPU_RS64A:
31171 case CPU_PPC601: /* ? */
31172 case CPU_PPC7450:
31173 return 3;
31174 case CPU_PPC440:
31175 case CPU_PPC603:
31176 case CPU_PPC750:
31177 case CPU_PPC7400:
31178 case CPU_PPC8540:
31179 case CPU_PPC8548:
31180 case CPU_CELL:
31181 case CPU_PPCE300C2:
31182 case CPU_PPCE300C3:
31183 case CPU_PPCE500MC:
31184 case CPU_PPCE500MC64:
31185 case CPU_PPCE5500:
31186 case CPU_PPCE6500:
31187 case CPU_TITAN:
31188 return 2;
31189 case CPU_PPC476:
31190 case CPU_PPC604:
31191 case CPU_PPC604E:
31192 case CPU_PPC620:
31193 case CPU_PPC630:
31194 return 4;
31195 case CPU_POWER4:
31196 case CPU_POWER5:
31197 case CPU_POWER6:
31198 case CPU_POWER7:
31199 return 5;
31200 case CPU_POWER8:
31201 return 7;
31202 case CPU_POWER9:
31203 return 6;
31204 default:
31205 return 1;
31209 /* Return how many instructions to look ahead for better insn
31210 scheduling. */
31212 static int
31213 rs6000_use_sched_lookahead (void)
31215 switch (rs6000_cpu_attr)
31217 case CPU_PPC8540:
31218 case CPU_PPC8548:
31219 return 4;
31221 case CPU_CELL:
31222 return (reload_completed ? 8 : 0);
31224 default:
31225 return 0;
31229 /* We are choosing insn from the ready queue. Return zero if INSN can be
31230 chosen. */
31231 static int
31232 rs6000_use_sched_lookahead_guard (rtx_insn *insn, int ready_index)
31234 if (ready_index == 0)
31235 return 0;
31237 if (rs6000_cpu_attr != CPU_CELL)
31238 return 0;
31240 gcc_assert (insn != NULL_RTX && INSN_P (insn));
31242 if (!reload_completed
31243 || is_nonpipeline_insn (insn)
31244 || is_microcoded_insn (insn))
31245 return 1;
31247 return 0;
31250 /* Determine if PAT refers to memory. If so, set MEM_REF to the MEM rtx
31251 and return true. */
31253 static bool
31254 find_mem_ref (rtx pat, rtx *mem_ref)
31256 const char * fmt;
31257 int i, j;
31259 /* stack_tie does not produce any real memory traffic. */
31260 if (tie_operand (pat, VOIDmode))
31261 return false;
31263 if (GET_CODE (pat) == MEM)
31265 *mem_ref = pat;
31266 return true;
31269 /* Recursively process the pattern. */
31270 fmt = GET_RTX_FORMAT (GET_CODE (pat));
31272 for (i = GET_RTX_LENGTH (GET_CODE (pat)) - 1; i >= 0; i--)
31274 if (fmt[i] == 'e')
31276 if (find_mem_ref (XEXP (pat, i), mem_ref))
31277 return true;
31279 else if (fmt[i] == 'E')
31280 for (j = XVECLEN (pat, i) - 1; j >= 0; j--)
31282 if (find_mem_ref (XVECEXP (pat, i, j), mem_ref))
31283 return true;
31287 return false;
31290 /* Determine if PAT is a PATTERN of a load insn. */
31292 static bool
31293 is_load_insn1 (rtx pat, rtx *load_mem)
31295 if (!pat || pat == NULL_RTX)
31296 return false;
31298 if (GET_CODE (pat) == SET)
31299 return find_mem_ref (SET_SRC (pat), load_mem);
31301 if (GET_CODE (pat) == PARALLEL)
31303 int i;
31305 for (i = 0; i < XVECLEN (pat, 0); i++)
31306 if (is_load_insn1 (XVECEXP (pat, 0, i), load_mem))
31307 return true;
31310 return false;
31313 /* Determine if INSN loads from memory. */
31315 static bool
31316 is_load_insn (rtx insn, rtx *load_mem)
31318 if (!insn || !INSN_P (insn))
31319 return false;
31321 if (CALL_P (insn))
31322 return false;
31324 return is_load_insn1 (PATTERN (insn), load_mem);
31327 /* Determine if PAT is a PATTERN of a store insn. */
31329 static bool
31330 is_store_insn1 (rtx pat, rtx *str_mem)
31332 if (!pat || pat == NULL_RTX)
31333 return false;
31335 if (GET_CODE (pat) == SET)
31336 return find_mem_ref (SET_DEST (pat), str_mem);
31338 if (GET_CODE (pat) == PARALLEL)
31340 int i;
31342 for (i = 0; i < XVECLEN (pat, 0); i++)
31343 if (is_store_insn1 (XVECEXP (pat, 0, i), str_mem))
31344 return true;
31347 return false;
31350 /* Determine if INSN stores to memory. */
31352 static bool
31353 is_store_insn (rtx insn, rtx *str_mem)
31355 if (!insn || !INSN_P (insn))
31356 return false;
31358 return is_store_insn1 (PATTERN (insn), str_mem);
31361 /* Return whether TYPE is a Power9 pairable vector instruction type. */
31363 static bool
31364 is_power9_pairable_vec_type (enum attr_type type)
31366 switch (type)
31368 case TYPE_VECSIMPLE:
31369 case TYPE_VECCOMPLEX:
31370 case TYPE_VECDIV:
31371 case TYPE_VECCMP:
31372 case TYPE_VECPERM:
31373 case TYPE_VECFLOAT:
31374 case TYPE_VECFDIV:
31375 case TYPE_VECDOUBLE:
31376 return true;
31377 default:
31378 break;
31380 return false;
31383 /* Returns whether the dependence between INSN and NEXT is considered
31384 costly by the given target. */
31386 static bool
31387 rs6000_is_costly_dependence (dep_t dep, int cost, int distance)
31389 rtx insn;
31390 rtx next;
31391 rtx load_mem, str_mem;
31393 /* If the flag is not enabled - no dependence is considered costly;
31394 allow all dependent insns in the same group.
31395 This is the most aggressive option. */
31396 if (rs6000_sched_costly_dep == no_dep_costly)
31397 return false;
31399 /* If the flag is set to 1 - a dependence is always considered costly;
31400 do not allow dependent instructions in the same group.
31401 This is the most conservative option. */
31402 if (rs6000_sched_costly_dep == all_deps_costly)
31403 return true;
31405 insn = DEP_PRO (dep);
31406 next = DEP_CON (dep);
31408 if (rs6000_sched_costly_dep == store_to_load_dep_costly
31409 && is_load_insn (next, &load_mem)
31410 && is_store_insn (insn, &str_mem))
31411 /* Prevent load after store in the same group. */
31412 return true;
31414 if (rs6000_sched_costly_dep == true_store_to_load_dep_costly
31415 && is_load_insn (next, &load_mem)
31416 && is_store_insn (insn, &str_mem)
31417 && DEP_TYPE (dep) == REG_DEP_TRUE
31418 && mem_locations_overlap(str_mem, load_mem))
31419 /* Prevent load after store in the same group if it is a true
31420 dependence. */
31421 return true;
31423 /* The flag is set to X; dependences with latency >= X are considered costly,
31424 and will not be scheduled in the same group. */
31425 if (rs6000_sched_costly_dep <= max_dep_latency
31426 && ((cost - distance) >= (int)rs6000_sched_costly_dep))
31427 return true;
31429 return false;
31432 /* Return the next insn after INSN that is found before TAIL is reached,
31433 skipping any "non-active" insns - insns that will not actually occupy
31434 an issue slot. Return NULL_RTX if such an insn is not found. */
31436 static rtx_insn *
31437 get_next_active_insn (rtx_insn *insn, rtx_insn *tail)
31439 if (insn == NULL_RTX || insn == tail)
31440 return NULL;
31442 while (1)
31444 insn = NEXT_INSN (insn);
31445 if (insn == NULL_RTX || insn == tail)
31446 return NULL;
31448 if (CALL_P (insn)
31449 || JUMP_P (insn) || JUMP_TABLE_DATA_P (insn)
31450 || (NONJUMP_INSN_P (insn)
31451 && GET_CODE (PATTERN (insn)) != USE
31452 && GET_CODE (PATTERN (insn)) != CLOBBER
31453 && INSN_CODE (insn) != CODE_FOR_stack_tie))
31454 break;
31456 return insn;
31459 /* Do Power9 specific sched_reorder2 reordering of ready list. */
31461 static int
31462 power9_sched_reorder2 (rtx_insn **ready, int lastpos)
31464 int pos;
31465 int i;
31466 rtx_insn *tmp;
31467 enum attr_type type, type2;
31469 type = get_attr_type (last_scheduled_insn);
31471 /* Try to issue fixed point divides back-to-back in pairs so they will be
31472 routed to separate execution units and execute in parallel. */
31473 if (type == TYPE_DIV && divide_cnt == 0)
31475 /* First divide has been scheduled. */
31476 divide_cnt = 1;
31478 /* Scan the ready list looking for another divide, if found move it
31479 to the end of the list so it is chosen next. */
31480 pos = lastpos;
31481 while (pos >= 0)
31483 if (recog_memoized (ready[pos]) >= 0
31484 && get_attr_type (ready[pos]) == TYPE_DIV)
31486 tmp = ready[pos];
31487 for (i = pos; i < lastpos; i++)
31488 ready[i] = ready[i + 1];
31489 ready[lastpos] = tmp;
31490 break;
31492 pos--;
31495 else
31497 /* Last insn was the 2nd divide or not a divide, reset the counter. */
31498 divide_cnt = 0;
31500 /* The best dispatch throughput for vector and vector load insns can be
31501 achieved by interleaving a vector and vector load such that they'll
31502 dispatch to the same superslice. If this pairing cannot be achieved
31503 then it is best to pair vector insns together and vector load insns
31504 together.
31506 To aid in this pairing, vec_pairing maintains the current state with
31507 the following values:
31509 0 : Initial state, no vecload/vector pairing has been started.
31511 1 : A vecload or vector insn has been issued and a candidate for
31512 pairing has been found and moved to the end of the ready
31513 list. */
31514 if (type == TYPE_VECLOAD)
31516 /* Issued a vecload. */
31517 if (vec_pairing == 0)
31519 int vecload_pos = -1;
31520 /* We issued a single vecload, look for a vector insn to pair it
31521 with. If one isn't found, try to pair another vecload. */
31522 pos = lastpos;
31523 while (pos >= 0)
31525 if (recog_memoized (ready[pos]) >= 0)
31527 type2 = get_attr_type (ready[pos]);
31528 if (is_power9_pairable_vec_type (type2))
31530 /* Found a vector insn to pair with, move it to the
31531 end of the ready list so it is scheduled next. */
31532 tmp = ready[pos];
31533 for (i = pos; i < lastpos; i++)
31534 ready[i] = ready[i + 1];
31535 ready[lastpos] = tmp;
31536 vec_pairing = 1;
31537 return cached_can_issue_more;
31539 else if (type2 == TYPE_VECLOAD && vecload_pos == -1)
31540 /* Remember position of first vecload seen. */
31541 vecload_pos = pos;
31543 pos--;
31545 if (vecload_pos >= 0)
31547 /* Didn't find a vector to pair with but did find a vecload,
31548 move it to the end of the ready list. */
31549 tmp = ready[vecload_pos];
31550 for (i = vecload_pos; i < lastpos; i++)
31551 ready[i] = ready[i + 1];
31552 ready[lastpos] = tmp;
31553 vec_pairing = 1;
31554 return cached_can_issue_more;
31558 else if (is_power9_pairable_vec_type (type))
31560 /* Issued a vector operation. */
31561 if (vec_pairing == 0)
31563 int vec_pos = -1;
31564 /* We issued a single vector insn, look for a vecload to pair it
31565 with. If one isn't found, try to pair another vector. */
31566 pos = lastpos;
31567 while (pos >= 0)
31569 if (recog_memoized (ready[pos]) >= 0)
31571 type2 = get_attr_type (ready[pos]);
31572 if (type2 == TYPE_VECLOAD)
31574 /* Found a vecload insn to pair with, move it to the
31575 end of the ready list so it is scheduled next. */
31576 tmp = ready[pos];
31577 for (i = pos; i < lastpos; i++)
31578 ready[i] = ready[i + 1];
31579 ready[lastpos] = tmp;
31580 vec_pairing = 1;
31581 return cached_can_issue_more;
31583 else if (is_power9_pairable_vec_type (type2)
31584 && vec_pos == -1)
31585 /* Remember position of first vector insn seen. */
31586 vec_pos = pos;
31588 pos--;
31590 if (vec_pos >= 0)
31592 /* Didn't find a vecload to pair with but did find a vector
31593 insn, move it to the end of the ready list. */
31594 tmp = ready[vec_pos];
31595 for (i = vec_pos; i < lastpos; i++)
31596 ready[i] = ready[i + 1];
31597 ready[lastpos] = tmp;
31598 vec_pairing = 1;
31599 return cached_can_issue_more;
31604 /* We've either finished a vec/vecload pair, couldn't find an insn to
31605 continue the current pair, or the last insn had nothing to do with
31606 with pairing. In any case, reset the state. */
31607 vec_pairing = 0;
31610 return cached_can_issue_more;
31613 /* We are about to begin issuing insns for this clock cycle. */
31615 static int
31616 rs6000_sched_reorder (FILE *dump ATTRIBUTE_UNUSED, int sched_verbose,
31617 rtx_insn **ready ATTRIBUTE_UNUSED,
31618 int *pn_ready ATTRIBUTE_UNUSED,
31619 int clock_var ATTRIBUTE_UNUSED)
31621 int n_ready = *pn_ready;
31623 if (sched_verbose)
31624 fprintf (dump, "// rs6000_sched_reorder :\n");
31626 /* Reorder the ready list, if the second to last ready insn
31627 is a nonepipeline insn. */
31628 if (rs6000_cpu_attr == CPU_CELL && n_ready > 1)
31630 if (is_nonpipeline_insn (ready[n_ready - 1])
31631 && (recog_memoized (ready[n_ready - 2]) > 0))
31632 /* Simply swap first two insns. */
31633 std::swap (ready[n_ready - 1], ready[n_ready - 2]);
31636 if (rs6000_cpu == PROCESSOR_POWER6)
31637 load_store_pendulum = 0;
31639 return rs6000_issue_rate ();
31642 /* Like rs6000_sched_reorder, but called after issuing each insn. */
31644 static int
31645 rs6000_sched_reorder2 (FILE *dump, int sched_verbose, rtx_insn **ready,
31646 int *pn_ready, int clock_var ATTRIBUTE_UNUSED)
31648 if (sched_verbose)
31649 fprintf (dump, "// rs6000_sched_reorder2 :\n");
31651 /* For Power6, we need to handle some special cases to try and keep the
31652 store queue from overflowing and triggering expensive flushes.
31654 This code monitors how load and store instructions are being issued
31655 and skews the ready list one way or the other to increase the likelihood
31656 that a desired instruction is issued at the proper time.
31658 A couple of things are done. First, we maintain a "load_store_pendulum"
31659 to track the current state of load/store issue.
31661 - If the pendulum is at zero, then no loads or stores have been
31662 issued in the current cycle so we do nothing.
31664 - If the pendulum is 1, then a single load has been issued in this
31665 cycle and we attempt to locate another load in the ready list to
31666 issue with it.
31668 - If the pendulum is -2, then two stores have already been
31669 issued in this cycle, so we increase the priority of the first load
31670 in the ready list to increase it's likelihood of being chosen first
31671 in the next cycle.
31673 - If the pendulum is -1, then a single store has been issued in this
31674 cycle and we attempt to locate another store in the ready list to
31675 issue with it, preferring a store to an adjacent memory location to
31676 facilitate store pairing in the store queue.
31678 - If the pendulum is 2, then two loads have already been
31679 issued in this cycle, so we increase the priority of the first store
31680 in the ready list to increase it's likelihood of being chosen first
31681 in the next cycle.
31683 - If the pendulum < -2 or > 2, then do nothing.
31685 Note: This code covers the most common scenarios. There exist non
31686 load/store instructions which make use of the LSU and which
31687 would need to be accounted for to strictly model the behavior
31688 of the machine. Those instructions are currently unaccounted
31689 for to help minimize compile time overhead of this code.
31691 if (rs6000_cpu == PROCESSOR_POWER6 && last_scheduled_insn)
31693 int pos;
31694 int i;
31695 rtx_insn *tmp;
31696 rtx load_mem, str_mem;
31698 if (is_store_insn (last_scheduled_insn, &str_mem))
31699 /* Issuing a store, swing the load_store_pendulum to the left */
31700 load_store_pendulum--;
31701 else if (is_load_insn (last_scheduled_insn, &load_mem))
31702 /* Issuing a load, swing the load_store_pendulum to the right */
31703 load_store_pendulum++;
31704 else
31705 return cached_can_issue_more;
31707 /* If the pendulum is balanced, or there is only one instruction on
31708 the ready list, then all is well, so return. */
31709 if ((load_store_pendulum == 0) || (*pn_ready <= 1))
31710 return cached_can_issue_more;
31712 if (load_store_pendulum == 1)
31714 /* A load has been issued in this cycle. Scan the ready list
31715 for another load to issue with it */
31716 pos = *pn_ready-1;
31718 while (pos >= 0)
31720 if (is_load_insn (ready[pos], &load_mem))
31722 /* Found a load. Move it to the head of the ready list,
31723 and adjust it's priority so that it is more likely to
31724 stay there */
31725 tmp = ready[pos];
31726 for (i=pos; i<*pn_ready-1; i++)
31727 ready[i] = ready[i + 1];
31728 ready[*pn_ready-1] = tmp;
31730 if (!sel_sched_p () && INSN_PRIORITY_KNOWN (tmp))
31731 INSN_PRIORITY (tmp)++;
31732 break;
31734 pos--;
31737 else if (load_store_pendulum == -2)
31739 /* Two stores have been issued in this cycle. Increase the
31740 priority of the first load in the ready list to favor it for
31741 issuing in the next cycle. */
31742 pos = *pn_ready-1;
31744 while (pos >= 0)
31746 if (is_load_insn (ready[pos], &load_mem)
31747 && !sel_sched_p ()
31748 && INSN_PRIORITY_KNOWN (ready[pos]))
31750 INSN_PRIORITY (ready[pos])++;
31752 /* Adjust the pendulum to account for the fact that a load
31753 was found and increased in priority. This is to prevent
31754 increasing the priority of multiple loads */
31755 load_store_pendulum--;
31757 break;
31759 pos--;
31762 else if (load_store_pendulum == -1)
31764 /* A store has been issued in this cycle. Scan the ready list for
31765 another store to issue with it, preferring a store to an adjacent
31766 memory location */
31767 int first_store_pos = -1;
31769 pos = *pn_ready-1;
31771 while (pos >= 0)
31773 if (is_store_insn (ready[pos], &str_mem))
31775 rtx str_mem2;
31776 /* Maintain the index of the first store found on the
31777 list */
31778 if (first_store_pos == -1)
31779 first_store_pos = pos;
31781 if (is_store_insn (last_scheduled_insn, &str_mem2)
31782 && adjacent_mem_locations (str_mem, str_mem2))
31784 /* Found an adjacent store. Move it to the head of the
31785 ready list, and adjust it's priority so that it is
31786 more likely to stay there */
31787 tmp = ready[pos];
31788 for (i=pos; i<*pn_ready-1; i++)
31789 ready[i] = ready[i + 1];
31790 ready[*pn_ready-1] = tmp;
31792 if (!sel_sched_p () && INSN_PRIORITY_KNOWN (tmp))
31793 INSN_PRIORITY (tmp)++;
31795 first_store_pos = -1;
31797 break;
31800 pos--;
31803 if (first_store_pos >= 0)
31805 /* An adjacent store wasn't found, but a non-adjacent store was,
31806 so move the non-adjacent store to the front of the ready
31807 list, and adjust its priority so that it is more likely to
31808 stay there. */
31809 tmp = ready[first_store_pos];
31810 for (i=first_store_pos; i<*pn_ready-1; i++)
31811 ready[i] = ready[i + 1];
31812 ready[*pn_ready-1] = tmp;
31813 if (!sel_sched_p () && INSN_PRIORITY_KNOWN (tmp))
31814 INSN_PRIORITY (tmp)++;
31817 else if (load_store_pendulum == 2)
31819 /* Two loads have been issued in this cycle. Increase the priority
31820 of the first store in the ready list to favor it for issuing in
31821 the next cycle. */
31822 pos = *pn_ready-1;
31824 while (pos >= 0)
31826 if (is_store_insn (ready[pos], &str_mem)
31827 && !sel_sched_p ()
31828 && INSN_PRIORITY_KNOWN (ready[pos]))
31830 INSN_PRIORITY (ready[pos])++;
31832 /* Adjust the pendulum to account for the fact that a store
31833 was found and increased in priority. This is to prevent
31834 increasing the priority of multiple stores */
31835 load_store_pendulum++;
31837 break;
31839 pos--;
31844 /* Do Power9 dependent reordering if necessary. */
31845 if (rs6000_cpu == PROCESSOR_POWER9 && last_scheduled_insn
31846 && recog_memoized (last_scheduled_insn) >= 0)
31847 return power9_sched_reorder2 (ready, *pn_ready - 1);
31849 return cached_can_issue_more;
31852 /* Return whether the presence of INSN causes a dispatch group termination
31853 of group WHICH_GROUP.
31855 If WHICH_GROUP == current_group, this function will return true if INSN
31856 causes the termination of the current group (i.e, the dispatch group to
31857 which INSN belongs). This means that INSN will be the last insn in the
31858 group it belongs to.
31860 If WHICH_GROUP == previous_group, this function will return true if INSN
31861 causes the termination of the previous group (i.e, the dispatch group that
31862 precedes the group to which INSN belongs). This means that INSN will be
31863 the first insn in the group it belongs to). */
31865 static bool
31866 insn_terminates_group_p (rtx_insn *insn, enum group_termination which_group)
31868 bool first, last;
31870 if (! insn)
31871 return false;
31873 first = insn_must_be_first_in_group (insn);
31874 last = insn_must_be_last_in_group (insn);
31876 if (first && last)
31877 return true;
31879 if (which_group == current_group)
31880 return last;
31881 else if (which_group == previous_group)
31882 return first;
31884 return false;
31888 static bool
31889 insn_must_be_first_in_group (rtx_insn *insn)
31891 enum attr_type type;
31893 if (!insn
31894 || NOTE_P (insn)
31895 || DEBUG_INSN_P (insn)
31896 || GET_CODE (PATTERN (insn)) == USE
31897 || GET_CODE (PATTERN (insn)) == CLOBBER)
31898 return false;
31900 switch (rs6000_cpu)
31902 case PROCESSOR_POWER5:
31903 if (is_cracked_insn (insn))
31904 return true;
31905 /* FALLTHRU */
31906 case PROCESSOR_POWER4:
31907 if (is_microcoded_insn (insn))
31908 return true;
31910 if (!rs6000_sched_groups)
31911 return false;
31913 type = get_attr_type (insn);
31915 switch (type)
31917 case TYPE_MFCR:
31918 case TYPE_MFCRF:
31919 case TYPE_MTCR:
31920 case TYPE_DELAYED_CR:
31921 case TYPE_CR_LOGICAL:
31922 case TYPE_MTJMPR:
31923 case TYPE_MFJMPR:
31924 case TYPE_DIV:
31925 case TYPE_LOAD_L:
31926 case TYPE_STORE_C:
31927 case TYPE_ISYNC:
31928 case TYPE_SYNC:
31929 return true;
31930 default:
31931 break;
31933 break;
31934 case PROCESSOR_POWER6:
31935 type = get_attr_type (insn);
31937 switch (type)
31939 case TYPE_EXTS:
31940 case TYPE_CNTLZ:
31941 case TYPE_TRAP:
31942 case TYPE_MUL:
31943 case TYPE_INSERT:
31944 case TYPE_FPCOMPARE:
31945 case TYPE_MFCR:
31946 case TYPE_MTCR:
31947 case TYPE_MFJMPR:
31948 case TYPE_MTJMPR:
31949 case TYPE_ISYNC:
31950 case TYPE_SYNC:
31951 case TYPE_LOAD_L:
31952 case TYPE_STORE_C:
31953 return true;
31954 case TYPE_SHIFT:
31955 if (get_attr_dot (insn) == DOT_NO
31956 || get_attr_var_shift (insn) == VAR_SHIFT_NO)
31957 return true;
31958 else
31959 break;
31960 case TYPE_DIV:
31961 if (get_attr_size (insn) == SIZE_32)
31962 return true;
31963 else
31964 break;
31965 case TYPE_LOAD:
31966 case TYPE_STORE:
31967 case TYPE_FPLOAD:
31968 case TYPE_FPSTORE:
31969 if (get_attr_update (insn) == UPDATE_YES)
31970 return true;
31971 else
31972 break;
31973 default:
31974 break;
31976 break;
31977 case PROCESSOR_POWER7:
31978 type = get_attr_type (insn);
31980 switch (type)
31982 case TYPE_CR_LOGICAL:
31983 case TYPE_MFCR:
31984 case TYPE_MFCRF:
31985 case TYPE_MTCR:
31986 case TYPE_DIV:
31987 case TYPE_ISYNC:
31988 case TYPE_LOAD_L:
31989 case TYPE_STORE_C:
31990 case TYPE_MFJMPR:
31991 case TYPE_MTJMPR:
31992 return true;
31993 case TYPE_MUL:
31994 case TYPE_SHIFT:
31995 case TYPE_EXTS:
31996 if (get_attr_dot (insn) == DOT_YES)
31997 return true;
31998 else
31999 break;
32000 case TYPE_LOAD:
32001 if (get_attr_sign_extend (insn) == SIGN_EXTEND_YES
32002 || get_attr_update (insn) == UPDATE_YES)
32003 return true;
32004 else
32005 break;
32006 case TYPE_STORE:
32007 case TYPE_FPLOAD:
32008 case TYPE_FPSTORE:
32009 if (get_attr_update (insn) == UPDATE_YES)
32010 return true;
32011 else
32012 break;
32013 default:
32014 break;
32016 break;
32017 case PROCESSOR_POWER8:
32018 type = get_attr_type (insn);
32020 switch (type)
32022 case TYPE_CR_LOGICAL:
32023 case TYPE_DELAYED_CR:
32024 case TYPE_MFCR:
32025 case TYPE_MFCRF:
32026 case TYPE_MTCR:
32027 case TYPE_SYNC:
32028 case TYPE_ISYNC:
32029 case TYPE_LOAD_L:
32030 case TYPE_STORE_C:
32031 case TYPE_VECSTORE:
32032 case TYPE_MFJMPR:
32033 case TYPE_MTJMPR:
32034 return true;
32035 case TYPE_SHIFT:
32036 case TYPE_EXTS:
32037 case TYPE_MUL:
32038 if (get_attr_dot (insn) == DOT_YES)
32039 return true;
32040 else
32041 break;
32042 case TYPE_LOAD:
32043 if (get_attr_sign_extend (insn) == SIGN_EXTEND_YES
32044 || get_attr_update (insn) == UPDATE_YES)
32045 return true;
32046 else
32047 break;
32048 case TYPE_STORE:
32049 if (get_attr_update (insn) == UPDATE_YES
32050 && get_attr_indexed (insn) == INDEXED_YES)
32051 return true;
32052 else
32053 break;
32054 default:
32055 break;
32057 break;
32058 default:
32059 break;
32062 return false;
32065 static bool
32066 insn_must_be_last_in_group (rtx_insn *insn)
32068 enum attr_type type;
32070 if (!insn
32071 || NOTE_P (insn)
32072 || DEBUG_INSN_P (insn)
32073 || GET_CODE (PATTERN (insn)) == USE
32074 || GET_CODE (PATTERN (insn)) == CLOBBER)
32075 return false;
32077 switch (rs6000_cpu) {
32078 case PROCESSOR_POWER4:
32079 case PROCESSOR_POWER5:
32080 if (is_microcoded_insn (insn))
32081 return true;
32083 if (is_branch_slot_insn (insn))
32084 return true;
32086 break;
32087 case PROCESSOR_POWER6:
32088 type = get_attr_type (insn);
32090 switch (type)
32092 case TYPE_EXTS:
32093 case TYPE_CNTLZ:
32094 case TYPE_TRAP:
32095 case TYPE_MUL:
32096 case TYPE_FPCOMPARE:
32097 case TYPE_MFCR:
32098 case TYPE_MTCR:
32099 case TYPE_MFJMPR:
32100 case TYPE_MTJMPR:
32101 case TYPE_ISYNC:
32102 case TYPE_SYNC:
32103 case TYPE_LOAD_L:
32104 case TYPE_STORE_C:
32105 return true;
32106 case TYPE_SHIFT:
32107 if (get_attr_dot (insn) == DOT_NO
32108 || get_attr_var_shift (insn) == VAR_SHIFT_NO)
32109 return true;
32110 else
32111 break;
32112 case TYPE_DIV:
32113 if (get_attr_size (insn) == SIZE_32)
32114 return true;
32115 else
32116 break;
32117 default:
32118 break;
32120 break;
32121 case PROCESSOR_POWER7:
32122 type = get_attr_type (insn);
32124 switch (type)
32126 case TYPE_ISYNC:
32127 case TYPE_SYNC:
32128 case TYPE_LOAD_L:
32129 case TYPE_STORE_C:
32130 return true;
32131 case TYPE_LOAD:
32132 if (get_attr_sign_extend (insn) == SIGN_EXTEND_YES
32133 && get_attr_update (insn) == UPDATE_YES)
32134 return true;
32135 else
32136 break;
32137 case TYPE_STORE:
32138 if (get_attr_update (insn) == UPDATE_YES
32139 && get_attr_indexed (insn) == INDEXED_YES)
32140 return true;
32141 else
32142 break;
32143 default:
32144 break;
32146 break;
32147 case PROCESSOR_POWER8:
32148 type = get_attr_type (insn);
32150 switch (type)
32152 case TYPE_MFCR:
32153 case TYPE_MTCR:
32154 case TYPE_ISYNC:
32155 case TYPE_SYNC:
32156 case TYPE_LOAD_L:
32157 case TYPE_STORE_C:
32158 return true;
32159 case TYPE_LOAD:
32160 if (get_attr_sign_extend (insn) == SIGN_EXTEND_YES
32161 && get_attr_update (insn) == UPDATE_YES)
32162 return true;
32163 else
32164 break;
32165 case TYPE_STORE:
32166 if (get_attr_update (insn) == UPDATE_YES
32167 && get_attr_indexed (insn) == INDEXED_YES)
32168 return true;
32169 else
32170 break;
32171 default:
32172 break;
32174 break;
32175 default:
32176 break;
32179 return false;
32182 /* Return true if it is recommended to keep NEXT_INSN "far" (in a separate
32183 dispatch group) from the insns in GROUP_INSNS. Return false otherwise. */
32185 static bool
32186 is_costly_group (rtx *group_insns, rtx next_insn)
32188 int i;
32189 int issue_rate = rs6000_issue_rate ();
32191 for (i = 0; i < issue_rate; i++)
32193 sd_iterator_def sd_it;
32194 dep_t dep;
32195 rtx insn = group_insns[i];
32197 if (!insn)
32198 continue;
32200 FOR_EACH_DEP (insn, SD_LIST_RES_FORW, sd_it, dep)
32202 rtx next = DEP_CON (dep);
32204 if (next == next_insn
32205 && rs6000_is_costly_dependence (dep, dep_cost (dep), 0))
32206 return true;
32210 return false;
32213 /* Utility of the function redefine_groups.
32214 Check if it is too costly to schedule NEXT_INSN together with GROUP_INSNS
32215 in the same dispatch group. If so, insert nops before NEXT_INSN, in order
32216 to keep it "far" (in a separate group) from GROUP_INSNS, following
32217 one of the following schemes, depending on the value of the flag
32218 -minsert_sched_nops = X:
32219 (1) X == sched_finish_regroup_exact: insert exactly as many nops as needed
32220 in order to force NEXT_INSN into a separate group.
32221 (2) X < sched_finish_regroup_exact: insert exactly X nops.
32222 GROUP_END, CAN_ISSUE_MORE and GROUP_COUNT record the state after nop
32223 insertion (has a group just ended, how many vacant issue slots remain in the
32224 last group, and how many dispatch groups were encountered so far). */
32226 static int
32227 force_new_group (int sched_verbose, FILE *dump, rtx *group_insns,
32228 rtx_insn *next_insn, bool *group_end, int can_issue_more,
32229 int *group_count)
32231 rtx nop;
32232 bool force;
32233 int issue_rate = rs6000_issue_rate ();
32234 bool end = *group_end;
32235 int i;
32237 if (next_insn == NULL_RTX || DEBUG_INSN_P (next_insn))
32238 return can_issue_more;
32240 if (rs6000_sched_insert_nops > sched_finish_regroup_exact)
32241 return can_issue_more;
32243 force = is_costly_group (group_insns, next_insn);
32244 if (!force)
32245 return can_issue_more;
32247 if (sched_verbose > 6)
32248 fprintf (dump,"force: group count = %d, can_issue_more = %d\n",
32249 *group_count ,can_issue_more);
32251 if (rs6000_sched_insert_nops == sched_finish_regroup_exact)
32253 if (*group_end)
32254 can_issue_more = 0;
32256 /* Since only a branch can be issued in the last issue_slot, it is
32257 sufficient to insert 'can_issue_more - 1' nops if next_insn is not
32258 a branch. If next_insn is a branch, we insert 'can_issue_more' nops;
32259 in this case the last nop will start a new group and the branch
32260 will be forced to the new group. */
32261 if (can_issue_more && !is_branch_slot_insn (next_insn))
32262 can_issue_more--;
32264 /* Do we have a special group ending nop? */
32265 if (rs6000_cpu_attr == CPU_POWER6 || rs6000_cpu_attr == CPU_POWER7
32266 || rs6000_cpu_attr == CPU_POWER8)
32268 nop = gen_group_ending_nop ();
32269 emit_insn_before (nop, next_insn);
32270 can_issue_more = 0;
32272 else
32273 while (can_issue_more > 0)
32275 nop = gen_nop ();
32276 emit_insn_before (nop, next_insn);
32277 can_issue_more--;
32280 *group_end = true;
32281 return 0;
32284 if (rs6000_sched_insert_nops < sched_finish_regroup_exact)
32286 int n_nops = rs6000_sched_insert_nops;
32288 /* Nops can't be issued from the branch slot, so the effective
32289 issue_rate for nops is 'issue_rate - 1'. */
32290 if (can_issue_more == 0)
32291 can_issue_more = issue_rate;
32292 can_issue_more--;
32293 if (can_issue_more == 0)
32295 can_issue_more = issue_rate - 1;
32296 (*group_count)++;
32297 end = true;
32298 for (i = 0; i < issue_rate; i++)
32300 group_insns[i] = 0;
32304 while (n_nops > 0)
32306 nop = gen_nop ();
32307 emit_insn_before (nop, next_insn);
32308 if (can_issue_more == issue_rate - 1) /* new group begins */
32309 end = false;
32310 can_issue_more--;
32311 if (can_issue_more == 0)
32313 can_issue_more = issue_rate - 1;
32314 (*group_count)++;
32315 end = true;
32316 for (i = 0; i < issue_rate; i++)
32318 group_insns[i] = 0;
32321 n_nops--;
32324 /* Scale back relative to 'issue_rate' (instead of 'issue_rate - 1'). */
32325 can_issue_more++;
32327 /* Is next_insn going to start a new group? */
32328 *group_end
32329 = (end
32330 || (can_issue_more == 1 && !is_branch_slot_insn (next_insn))
32331 || (can_issue_more <= 2 && is_cracked_insn (next_insn))
32332 || (can_issue_more < issue_rate &&
32333 insn_terminates_group_p (next_insn, previous_group)));
32334 if (*group_end && end)
32335 (*group_count)--;
32337 if (sched_verbose > 6)
32338 fprintf (dump, "done force: group count = %d, can_issue_more = %d\n",
32339 *group_count, can_issue_more);
32340 return can_issue_more;
32343 return can_issue_more;
32346 /* This function tries to synch the dispatch groups that the compiler "sees"
32347 with the dispatch groups that the processor dispatcher is expected to
32348 form in practice. It tries to achieve this synchronization by forcing the
32349 estimated processor grouping on the compiler (as opposed to the function
32350 'pad_goups' which tries to force the scheduler's grouping on the processor).
32352 The function scans the insn sequence between PREV_HEAD_INSN and TAIL and
32353 examines the (estimated) dispatch groups that will be formed by the processor
32354 dispatcher. It marks these group boundaries to reflect the estimated
32355 processor grouping, overriding the grouping that the scheduler had marked.
32356 Depending on the value of the flag '-minsert-sched-nops' this function can
32357 force certain insns into separate groups or force a certain distance between
32358 them by inserting nops, for example, if there exists a "costly dependence"
32359 between the insns.
32361 The function estimates the group boundaries that the processor will form as
32362 follows: It keeps track of how many vacant issue slots are available after
32363 each insn. A subsequent insn will start a new group if one of the following
32364 4 cases applies:
32365 - no more vacant issue slots remain in the current dispatch group.
32366 - only the last issue slot, which is the branch slot, is vacant, but the next
32367 insn is not a branch.
32368 - only the last 2 or less issue slots, including the branch slot, are vacant,
32369 which means that a cracked insn (which occupies two issue slots) can't be
32370 issued in this group.
32371 - less than 'issue_rate' slots are vacant, and the next insn always needs to
32372 start a new group. */
32374 static int
32375 redefine_groups (FILE *dump, int sched_verbose, rtx_insn *prev_head_insn,
32376 rtx_insn *tail)
32378 rtx_insn *insn, *next_insn;
32379 int issue_rate;
32380 int can_issue_more;
32381 int slot, i;
32382 bool group_end;
32383 int group_count = 0;
32384 rtx *group_insns;
32386 /* Initialize. */
32387 issue_rate = rs6000_issue_rate ();
32388 group_insns = XALLOCAVEC (rtx, issue_rate);
32389 for (i = 0; i < issue_rate; i++)
32391 group_insns[i] = 0;
32393 can_issue_more = issue_rate;
32394 slot = 0;
32395 insn = get_next_active_insn (prev_head_insn, tail);
32396 group_end = false;
32398 while (insn != NULL_RTX)
32400 slot = (issue_rate - can_issue_more);
32401 group_insns[slot] = insn;
32402 can_issue_more =
32403 rs6000_variable_issue (dump, sched_verbose, insn, can_issue_more);
32404 if (insn_terminates_group_p (insn, current_group))
32405 can_issue_more = 0;
32407 next_insn = get_next_active_insn (insn, tail);
32408 if (next_insn == NULL_RTX)
32409 return group_count + 1;
32411 /* Is next_insn going to start a new group? */
32412 group_end
32413 = (can_issue_more == 0
32414 || (can_issue_more == 1 && !is_branch_slot_insn (next_insn))
32415 || (can_issue_more <= 2 && is_cracked_insn (next_insn))
32416 || (can_issue_more < issue_rate &&
32417 insn_terminates_group_p (next_insn, previous_group)));
32419 can_issue_more = force_new_group (sched_verbose, dump, group_insns,
32420 next_insn, &group_end, can_issue_more,
32421 &group_count);
32423 if (group_end)
32425 group_count++;
32426 can_issue_more = 0;
32427 for (i = 0; i < issue_rate; i++)
32429 group_insns[i] = 0;
32433 if (GET_MODE (next_insn) == TImode && can_issue_more)
32434 PUT_MODE (next_insn, VOIDmode);
32435 else if (!can_issue_more && GET_MODE (next_insn) != TImode)
32436 PUT_MODE (next_insn, TImode);
32438 insn = next_insn;
32439 if (can_issue_more == 0)
32440 can_issue_more = issue_rate;
32441 } /* while */
32443 return group_count;
32446 /* Scan the insn sequence between PREV_HEAD_INSN and TAIL and examine the
32447 dispatch group boundaries that the scheduler had marked. Pad with nops
32448 any dispatch groups which have vacant issue slots, in order to force the
32449 scheduler's grouping on the processor dispatcher. The function
32450 returns the number of dispatch groups found. */
32452 static int
32453 pad_groups (FILE *dump, int sched_verbose, rtx_insn *prev_head_insn,
32454 rtx_insn *tail)
32456 rtx_insn *insn, *next_insn;
32457 rtx nop;
32458 int issue_rate;
32459 int can_issue_more;
32460 int group_end;
32461 int group_count = 0;
32463 /* Initialize issue_rate. */
32464 issue_rate = rs6000_issue_rate ();
32465 can_issue_more = issue_rate;
32467 insn = get_next_active_insn (prev_head_insn, tail);
32468 next_insn = get_next_active_insn (insn, tail);
32470 while (insn != NULL_RTX)
32472 can_issue_more =
32473 rs6000_variable_issue (dump, sched_verbose, insn, can_issue_more);
32475 group_end = (next_insn == NULL_RTX || GET_MODE (next_insn) == TImode);
32477 if (next_insn == NULL_RTX)
32478 break;
32480 if (group_end)
32482 /* If the scheduler had marked group termination at this location
32483 (between insn and next_insn), and neither insn nor next_insn will
32484 force group termination, pad the group with nops to force group
32485 termination. */
32486 if (can_issue_more
32487 && (rs6000_sched_insert_nops == sched_finish_pad_groups)
32488 && !insn_terminates_group_p (insn, current_group)
32489 && !insn_terminates_group_p (next_insn, previous_group))
32491 if (!is_branch_slot_insn (next_insn))
32492 can_issue_more--;
32494 while (can_issue_more)
32496 nop = gen_nop ();
32497 emit_insn_before (nop, next_insn);
32498 can_issue_more--;
32502 can_issue_more = issue_rate;
32503 group_count++;
32506 insn = next_insn;
32507 next_insn = get_next_active_insn (insn, tail);
32510 return group_count;
32513 /* We're beginning a new block. Initialize data structures as necessary. */
32515 static void
32516 rs6000_sched_init (FILE *dump ATTRIBUTE_UNUSED,
32517 int sched_verbose ATTRIBUTE_UNUSED,
32518 int max_ready ATTRIBUTE_UNUSED)
32520 last_scheduled_insn = NULL;
32521 load_store_pendulum = 0;
32522 divide_cnt = 0;
32523 vec_pairing = 0;
32526 /* The following function is called at the end of scheduling BB.
32527 After reload, it inserts nops at insn group bundling. */
32529 static void
32530 rs6000_sched_finish (FILE *dump, int sched_verbose)
32532 int n_groups;
32534 if (sched_verbose)
32535 fprintf (dump, "=== Finishing schedule.\n");
32537 if (reload_completed && rs6000_sched_groups)
32539 /* Do not run sched_finish hook when selective scheduling enabled. */
32540 if (sel_sched_p ())
32541 return;
32543 if (rs6000_sched_insert_nops == sched_finish_none)
32544 return;
32546 if (rs6000_sched_insert_nops == sched_finish_pad_groups)
32547 n_groups = pad_groups (dump, sched_verbose,
32548 current_sched_info->prev_head,
32549 current_sched_info->next_tail);
32550 else
32551 n_groups = redefine_groups (dump, sched_verbose,
32552 current_sched_info->prev_head,
32553 current_sched_info->next_tail);
32555 if (sched_verbose >= 6)
32557 fprintf (dump, "ngroups = %d\n", n_groups);
32558 print_rtl (dump, current_sched_info->prev_head);
32559 fprintf (dump, "Done finish_sched\n");
32564 struct rs6000_sched_context
32566 short cached_can_issue_more;
32567 rtx_insn *last_scheduled_insn;
32568 int load_store_pendulum;
32569 int divide_cnt;
32570 int vec_pairing;
32573 typedef struct rs6000_sched_context rs6000_sched_context_def;
32574 typedef rs6000_sched_context_def *rs6000_sched_context_t;
32576 /* Allocate store for new scheduling context. */
32577 static void *
32578 rs6000_alloc_sched_context (void)
32580 return xmalloc (sizeof (rs6000_sched_context_def));
32583 /* If CLEAN_P is true then initializes _SC with clean data,
32584 and from the global context otherwise. */
32585 static void
32586 rs6000_init_sched_context (void *_sc, bool clean_p)
32588 rs6000_sched_context_t sc = (rs6000_sched_context_t) _sc;
32590 if (clean_p)
32592 sc->cached_can_issue_more = 0;
32593 sc->last_scheduled_insn = NULL;
32594 sc->load_store_pendulum = 0;
32595 sc->divide_cnt = 0;
32596 sc->vec_pairing = 0;
32598 else
32600 sc->cached_can_issue_more = cached_can_issue_more;
32601 sc->last_scheduled_insn = last_scheduled_insn;
32602 sc->load_store_pendulum = load_store_pendulum;
32603 sc->divide_cnt = divide_cnt;
32604 sc->vec_pairing = vec_pairing;
32608 /* Sets the global scheduling context to the one pointed to by _SC. */
32609 static void
32610 rs6000_set_sched_context (void *_sc)
32612 rs6000_sched_context_t sc = (rs6000_sched_context_t) _sc;
32614 gcc_assert (sc != NULL);
32616 cached_can_issue_more = sc->cached_can_issue_more;
32617 last_scheduled_insn = sc->last_scheduled_insn;
32618 load_store_pendulum = sc->load_store_pendulum;
32619 divide_cnt = sc->divide_cnt;
32620 vec_pairing = sc->vec_pairing;
32623 /* Free _SC. */
32624 static void
32625 rs6000_free_sched_context (void *_sc)
32627 gcc_assert (_sc != NULL);
32629 free (_sc);
32632 static bool
32633 rs6000_sched_can_speculate_insn (rtx_insn *insn)
32635 switch (get_attr_type (insn))
32637 case TYPE_DIV:
32638 case TYPE_SDIV:
32639 case TYPE_DDIV:
32640 case TYPE_VECDIV:
32641 case TYPE_SSQRT:
32642 case TYPE_DSQRT:
32643 return false;
32645 default:
32646 return true;
32650 /* Length in units of the trampoline for entering a nested function. */
32653 rs6000_trampoline_size (void)
32655 int ret = 0;
32657 switch (DEFAULT_ABI)
32659 default:
32660 gcc_unreachable ();
32662 case ABI_AIX:
32663 ret = (TARGET_32BIT) ? 12 : 24;
32664 break;
32666 case ABI_ELFv2:
32667 gcc_assert (!TARGET_32BIT);
32668 ret = 32;
32669 break;
32671 case ABI_DARWIN:
32672 case ABI_V4:
32673 ret = (TARGET_32BIT) ? 40 : 48;
32674 break;
32677 return ret;
32680 /* Emit RTL insns to initialize the variable parts of a trampoline.
32681 FNADDR is an RTX for the address of the function's pure code.
32682 CXT is an RTX for the static chain value for the function. */
32684 static void
32685 rs6000_trampoline_init (rtx m_tramp, tree fndecl, rtx cxt)
32687 int regsize = (TARGET_32BIT) ? 4 : 8;
32688 rtx fnaddr = XEXP (DECL_RTL (fndecl), 0);
32689 rtx ctx_reg = force_reg (Pmode, cxt);
32690 rtx addr = force_reg (Pmode, XEXP (m_tramp, 0));
32692 switch (DEFAULT_ABI)
32694 default:
32695 gcc_unreachable ();
32697 /* Under AIX, just build the 3 word function descriptor */
32698 case ABI_AIX:
32700 rtx fnmem, fn_reg, toc_reg;
32702 if (!TARGET_POINTERS_TO_NESTED_FUNCTIONS)
32703 error ("you cannot take the address of a nested function if you use "
32704 "the %qs option", "-mno-pointers-to-nested-functions");
32706 fnmem = gen_const_mem (Pmode, force_reg (Pmode, fnaddr));
32707 fn_reg = gen_reg_rtx (Pmode);
32708 toc_reg = gen_reg_rtx (Pmode);
32710 /* Macro to shorten the code expansions below. */
32711 # define MEM_PLUS(MEM, OFFSET) adjust_address (MEM, Pmode, OFFSET)
32713 m_tramp = replace_equiv_address (m_tramp, addr);
32715 emit_move_insn (fn_reg, MEM_PLUS (fnmem, 0));
32716 emit_move_insn (toc_reg, MEM_PLUS (fnmem, regsize));
32717 emit_move_insn (MEM_PLUS (m_tramp, 0), fn_reg);
32718 emit_move_insn (MEM_PLUS (m_tramp, regsize), toc_reg);
32719 emit_move_insn (MEM_PLUS (m_tramp, 2*regsize), ctx_reg);
32721 # undef MEM_PLUS
32723 break;
32725 /* Under V.4/eabi/darwin, __trampoline_setup does the real work. */
32726 case ABI_ELFv2:
32727 case ABI_DARWIN:
32728 case ABI_V4:
32729 emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "__trampoline_setup"),
32730 LCT_NORMAL, VOIDmode,
32731 addr, Pmode,
32732 GEN_INT (rs6000_trampoline_size ()), SImode,
32733 fnaddr, Pmode,
32734 ctx_reg, Pmode);
32735 break;
32740 /* Returns TRUE iff the target attribute indicated by ATTR_ID takes a plain
32741 identifier as an argument, so the front end shouldn't look it up. */
32743 static bool
32744 rs6000_attribute_takes_identifier_p (const_tree attr_id)
32746 return is_attribute_p ("altivec", attr_id);
32749 /* Handle the "altivec" attribute. The attribute may have
32750 arguments as follows:
32752 __attribute__((altivec(vector__)))
32753 __attribute__((altivec(pixel__))) (always followed by 'unsigned short')
32754 __attribute__((altivec(bool__))) (always followed by 'unsigned')
32756 and may appear more than once (e.g., 'vector bool char') in a
32757 given declaration. */
32759 static tree
32760 rs6000_handle_altivec_attribute (tree *node,
32761 tree name ATTRIBUTE_UNUSED,
32762 tree args,
32763 int flags ATTRIBUTE_UNUSED,
32764 bool *no_add_attrs)
32766 tree type = *node, result = NULL_TREE;
32767 machine_mode mode;
32768 int unsigned_p;
32769 char altivec_type
32770 = ((args && TREE_CODE (args) == TREE_LIST && TREE_VALUE (args)
32771 && TREE_CODE (TREE_VALUE (args)) == IDENTIFIER_NODE)
32772 ? *IDENTIFIER_POINTER (TREE_VALUE (args))
32773 : '?');
32775 while (POINTER_TYPE_P (type)
32776 || TREE_CODE (type) == FUNCTION_TYPE
32777 || TREE_CODE (type) == METHOD_TYPE
32778 || TREE_CODE (type) == ARRAY_TYPE)
32779 type = TREE_TYPE (type);
32781 mode = TYPE_MODE (type);
32783 /* Check for invalid AltiVec type qualifiers. */
32784 if (type == long_double_type_node)
32785 error ("use of %<long double%> in AltiVec types is invalid");
32786 else if (type == boolean_type_node)
32787 error ("use of boolean types in AltiVec types is invalid");
32788 else if (TREE_CODE (type) == COMPLEX_TYPE)
32789 error ("use of %<complex%> in AltiVec types is invalid");
32790 else if (DECIMAL_FLOAT_MODE_P (mode))
32791 error ("use of decimal floating point types in AltiVec types is invalid");
32792 else if (!TARGET_VSX)
32794 if (type == long_unsigned_type_node || type == long_integer_type_node)
32796 if (TARGET_64BIT)
32797 error ("use of %<long%> in AltiVec types is invalid for "
32798 "64-bit code without %qs", "-mvsx");
32799 else if (rs6000_warn_altivec_long)
32800 warning (0, "use of %<long%> in AltiVec types is deprecated; "
32801 "use %<int%>");
32803 else if (type == long_long_unsigned_type_node
32804 || type == long_long_integer_type_node)
32805 error ("use of %<long long%> in AltiVec types is invalid without %qs",
32806 "-mvsx");
32807 else if (type == double_type_node)
32808 error ("use of %<double%> in AltiVec types is invalid without %qs",
32809 "-mvsx");
32812 switch (altivec_type)
32814 case 'v':
32815 unsigned_p = TYPE_UNSIGNED (type);
32816 switch (mode)
32818 case E_TImode:
32819 result = (unsigned_p ? unsigned_V1TI_type_node : V1TI_type_node);
32820 break;
32821 case E_DImode:
32822 result = (unsigned_p ? unsigned_V2DI_type_node : V2DI_type_node);
32823 break;
32824 case E_SImode:
32825 result = (unsigned_p ? unsigned_V4SI_type_node : V4SI_type_node);
32826 break;
32827 case E_HImode:
32828 result = (unsigned_p ? unsigned_V8HI_type_node : V8HI_type_node);
32829 break;
32830 case E_QImode:
32831 result = (unsigned_p ? unsigned_V16QI_type_node : V16QI_type_node);
32832 break;
32833 case E_SFmode: result = V4SF_type_node; break;
32834 case E_DFmode: result = V2DF_type_node; break;
32835 /* If the user says 'vector int bool', we may be handed the 'bool'
32836 attribute _before_ the 'vector' attribute, and so select the
32837 proper type in the 'b' case below. */
32838 case E_V4SImode: case E_V8HImode: case E_V16QImode: case E_V4SFmode:
32839 case E_V2DImode: case E_V2DFmode:
32840 result = type;
32841 default: break;
32843 break;
32844 case 'b':
32845 switch (mode)
32847 case E_DImode: case E_V2DImode: result = bool_V2DI_type_node; break;
32848 case E_SImode: case E_V4SImode: result = bool_V4SI_type_node; break;
32849 case E_HImode: case E_V8HImode: result = bool_V8HI_type_node; break;
32850 case E_QImode: case E_V16QImode: result = bool_V16QI_type_node;
32851 default: break;
32853 break;
32854 case 'p':
32855 switch (mode)
32857 case E_V8HImode: result = pixel_V8HI_type_node;
32858 default: break;
32860 default: break;
32863 /* Propagate qualifiers attached to the element type
32864 onto the vector type. */
32865 if (result && result != type && TYPE_QUALS (type))
32866 result = build_qualified_type (result, TYPE_QUALS (type));
32868 *no_add_attrs = true; /* No need to hang on to the attribute. */
32870 if (result)
32871 *node = lang_hooks.types.reconstruct_complex_type (*node, result);
32873 return NULL_TREE;
32876 /* AltiVec defines four built-in scalar types that serve as vector
32877 elements; we must teach the compiler how to mangle them. */
32879 static const char *
32880 rs6000_mangle_type (const_tree type)
32882 type = TYPE_MAIN_VARIANT (type);
32884 if (TREE_CODE (type) != VOID_TYPE && TREE_CODE (type) != BOOLEAN_TYPE
32885 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
32886 return NULL;
32888 if (type == bool_char_type_node) return "U6__boolc";
32889 if (type == bool_short_type_node) return "U6__bools";
32890 if (type == pixel_type_node) return "u7__pixel";
32891 if (type == bool_int_type_node) return "U6__booli";
32892 if (type == bool_long_type_node) return "U6__booll";
32894 /* Use a unique name for __float128 rather than trying to use "e" or "g". Use
32895 "g" for IBM extended double, no matter whether it is long double (using
32896 -mabi=ibmlongdouble) or the distinct __ibm128 type. */
32897 if (TARGET_FLOAT128_TYPE)
32899 if (type == ieee128_float_type_node)
32900 return "U10__float128";
32902 if (TARGET_LONG_DOUBLE_128)
32904 if (type == long_double_type_node)
32905 return (TARGET_IEEEQUAD) ? "U10__float128" : "g";
32907 if (type == ibm128_float_type_node)
32908 return "g";
32912 /* Mangle IBM extended float long double as `g' (__float128) on
32913 powerpc*-linux where long-double-64 previously was the default. */
32914 if (TYPE_MAIN_VARIANT (type) == long_double_type_node
32915 && TARGET_ELF
32916 && TARGET_LONG_DOUBLE_128
32917 && !TARGET_IEEEQUAD)
32918 return "g";
32920 /* For all other types, use normal C++ mangling. */
32921 return NULL;
32924 /* Handle a "longcall" or "shortcall" attribute; arguments as in
32925 struct attribute_spec.handler. */
32927 static tree
32928 rs6000_handle_longcall_attribute (tree *node, tree name,
32929 tree args ATTRIBUTE_UNUSED,
32930 int flags ATTRIBUTE_UNUSED,
32931 bool *no_add_attrs)
32933 if (TREE_CODE (*node) != FUNCTION_TYPE
32934 && TREE_CODE (*node) != FIELD_DECL
32935 && TREE_CODE (*node) != TYPE_DECL)
32937 warning (OPT_Wattributes, "%qE attribute only applies to functions",
32938 name);
32939 *no_add_attrs = true;
32942 return NULL_TREE;
32945 /* Set longcall attributes on all functions declared when
32946 rs6000_default_long_calls is true. */
32947 static void
32948 rs6000_set_default_type_attributes (tree type)
32950 if (rs6000_default_long_calls
32951 && (TREE_CODE (type) == FUNCTION_TYPE
32952 || TREE_CODE (type) == METHOD_TYPE))
32953 TYPE_ATTRIBUTES (type) = tree_cons (get_identifier ("longcall"),
32954 NULL_TREE,
32955 TYPE_ATTRIBUTES (type));
32957 #if TARGET_MACHO
32958 darwin_set_default_type_attributes (type);
32959 #endif
32962 /* Return a reference suitable for calling a function with the
32963 longcall attribute. */
32966 rs6000_longcall_ref (rtx call_ref)
32968 const char *call_name;
32969 tree node;
32971 if (GET_CODE (call_ref) != SYMBOL_REF)
32972 return call_ref;
32974 /* System V adds '.' to the internal name, so skip them. */
32975 call_name = XSTR (call_ref, 0);
32976 if (*call_name == '.')
32978 while (*call_name == '.')
32979 call_name++;
32981 node = get_identifier (call_name);
32982 call_ref = gen_rtx_SYMBOL_REF (VOIDmode, IDENTIFIER_POINTER (node));
32985 return force_reg (Pmode, call_ref);
32988 #ifndef TARGET_USE_MS_BITFIELD_LAYOUT
32989 #define TARGET_USE_MS_BITFIELD_LAYOUT 0
32990 #endif
32992 /* Handle a "ms_struct" or "gcc_struct" attribute; arguments as in
32993 struct attribute_spec.handler. */
32994 static tree
32995 rs6000_handle_struct_attribute (tree *node, tree name,
32996 tree args ATTRIBUTE_UNUSED,
32997 int flags ATTRIBUTE_UNUSED, bool *no_add_attrs)
32999 tree *type = NULL;
33000 if (DECL_P (*node))
33002 if (TREE_CODE (*node) == TYPE_DECL)
33003 type = &TREE_TYPE (*node);
33005 else
33006 type = node;
33008 if (!(type && (TREE_CODE (*type) == RECORD_TYPE
33009 || TREE_CODE (*type) == UNION_TYPE)))
33011 warning (OPT_Wattributes, "%qE attribute ignored", name);
33012 *no_add_attrs = true;
33015 else if ((is_attribute_p ("ms_struct", name)
33016 && lookup_attribute ("gcc_struct", TYPE_ATTRIBUTES (*type)))
33017 || ((is_attribute_p ("gcc_struct", name)
33018 && lookup_attribute ("ms_struct", TYPE_ATTRIBUTES (*type)))))
33020 warning (OPT_Wattributes, "%qE incompatible attribute ignored",
33021 name);
33022 *no_add_attrs = true;
33025 return NULL_TREE;
33028 static bool
33029 rs6000_ms_bitfield_layout_p (const_tree record_type)
33031 return (TARGET_USE_MS_BITFIELD_LAYOUT &&
33032 !lookup_attribute ("gcc_struct", TYPE_ATTRIBUTES (record_type)))
33033 || lookup_attribute ("ms_struct", TYPE_ATTRIBUTES (record_type));
33036 #ifdef USING_ELFOS_H
33038 /* A get_unnamed_section callback, used for switching to toc_section. */
33040 static void
33041 rs6000_elf_output_toc_section_asm_op (const void *data ATTRIBUTE_UNUSED)
33043 if ((DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
33044 && TARGET_MINIMAL_TOC)
33046 if (!toc_initialized)
33048 fprintf (asm_out_file, "%s\n", TOC_SECTION_ASM_OP);
33049 ASM_OUTPUT_ALIGN (asm_out_file, TARGET_64BIT ? 3 : 2);
33050 (*targetm.asm_out.internal_label) (asm_out_file, "LCTOC", 0);
33051 fprintf (asm_out_file, "\t.tc ");
33052 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1[TC],");
33053 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1");
33054 fprintf (asm_out_file, "\n");
33056 fprintf (asm_out_file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);
33057 ASM_OUTPUT_ALIGN (asm_out_file, TARGET_64BIT ? 3 : 2);
33058 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1");
33059 fprintf (asm_out_file, " = .+32768\n");
33060 toc_initialized = 1;
33062 else
33063 fprintf (asm_out_file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);
33065 else if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
33067 fprintf (asm_out_file, "%s\n", TOC_SECTION_ASM_OP);
33068 if (!toc_initialized)
33070 ASM_OUTPUT_ALIGN (asm_out_file, TARGET_64BIT ? 3 : 2);
33071 toc_initialized = 1;
33074 else
33076 fprintf (asm_out_file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);
33077 if (!toc_initialized)
33079 ASM_OUTPUT_ALIGN (asm_out_file, TARGET_64BIT ? 3 : 2);
33080 ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1");
33081 fprintf (asm_out_file, " = .+32768\n");
33082 toc_initialized = 1;
33087 /* Implement TARGET_ASM_INIT_SECTIONS. */
33089 static void
33090 rs6000_elf_asm_init_sections (void)
33092 toc_section
33093 = get_unnamed_section (0, rs6000_elf_output_toc_section_asm_op, NULL);
33095 sdata2_section
33096 = get_unnamed_section (SECTION_WRITE, output_section_asm_op,
33097 SDATA2_SECTION_ASM_OP);
33100 /* Implement TARGET_SELECT_RTX_SECTION. */
33102 static section *
33103 rs6000_elf_select_rtx_section (machine_mode mode, rtx x,
33104 unsigned HOST_WIDE_INT align)
33106 if (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (x, mode))
33107 return toc_section;
33108 else
33109 return default_elf_select_rtx_section (mode, x, align);
33112 /* For a SYMBOL_REF, set generic flags and then perform some
33113 target-specific processing.
33115 When the AIX ABI is requested on a non-AIX system, replace the
33116 function name with the real name (with a leading .) rather than the
33117 function descriptor name. This saves a lot of overriding code to
33118 read the prefixes. */
33120 static void rs6000_elf_encode_section_info (tree, rtx, int) ATTRIBUTE_UNUSED;
33121 static void
33122 rs6000_elf_encode_section_info (tree decl, rtx rtl, int first)
33124 default_encode_section_info (decl, rtl, first);
33126 if (first
33127 && TREE_CODE (decl) == FUNCTION_DECL
33128 && !TARGET_AIX
33129 && DEFAULT_ABI == ABI_AIX)
33131 rtx sym_ref = XEXP (rtl, 0);
33132 size_t len = strlen (XSTR (sym_ref, 0));
33133 char *str = XALLOCAVEC (char, len + 2);
33134 str[0] = '.';
33135 memcpy (str + 1, XSTR (sym_ref, 0), len + 1);
33136 XSTR (sym_ref, 0) = ggc_alloc_string (str, len + 1);
33140 static inline bool
33141 compare_section_name (const char *section, const char *templ)
33143 int len;
33145 len = strlen (templ);
33146 return (strncmp (section, templ, len) == 0
33147 && (section[len] == 0 || section[len] == '.'));
33150 bool
33151 rs6000_elf_in_small_data_p (const_tree decl)
33153 if (rs6000_sdata == SDATA_NONE)
33154 return false;
33156 /* We want to merge strings, so we never consider them small data. */
33157 if (TREE_CODE (decl) == STRING_CST)
33158 return false;
33160 /* Functions are never in the small data area. */
33161 if (TREE_CODE (decl) == FUNCTION_DECL)
33162 return false;
33164 if (TREE_CODE (decl) == VAR_DECL && DECL_SECTION_NAME (decl))
33166 const char *section = DECL_SECTION_NAME (decl);
33167 if (compare_section_name (section, ".sdata")
33168 || compare_section_name (section, ".sdata2")
33169 || compare_section_name (section, ".gnu.linkonce.s")
33170 || compare_section_name (section, ".sbss")
33171 || compare_section_name (section, ".sbss2")
33172 || compare_section_name (section, ".gnu.linkonce.sb")
33173 || strcmp (section, ".PPC.EMB.sdata0") == 0
33174 || strcmp (section, ".PPC.EMB.sbss0") == 0)
33175 return true;
33177 else
33179 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (decl));
33181 if (size > 0
33182 && size <= g_switch_value
33183 /* If it's not public, and we're not going to reference it there,
33184 there's no need to put it in the small data section. */
33185 && (rs6000_sdata != SDATA_DATA || TREE_PUBLIC (decl)))
33186 return true;
33189 return false;
33192 #endif /* USING_ELFOS_H */
33194 /* Implement TARGET_USE_BLOCKS_FOR_CONSTANT_P. */
33196 static bool
33197 rs6000_use_blocks_for_constant_p (machine_mode mode, const_rtx x)
33199 return !ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (x, mode);
33202 /* Do not place thread-local symbols refs in the object blocks. */
33204 static bool
33205 rs6000_use_blocks_for_decl_p (const_tree decl)
33207 return !DECL_THREAD_LOCAL_P (decl);
33210 /* Return a REG that occurs in ADDR with coefficient 1.
33211 ADDR can be effectively incremented by incrementing REG.
33213 r0 is special and we must not select it as an address
33214 register by this routine since our caller will try to
33215 increment the returned register via an "la" instruction. */
33218 find_addr_reg (rtx addr)
33220 while (GET_CODE (addr) == PLUS)
33222 if (GET_CODE (XEXP (addr, 0)) == REG
33223 && REGNO (XEXP (addr, 0)) != 0)
33224 addr = XEXP (addr, 0);
33225 else if (GET_CODE (XEXP (addr, 1)) == REG
33226 && REGNO (XEXP (addr, 1)) != 0)
33227 addr = XEXP (addr, 1);
33228 else if (CONSTANT_P (XEXP (addr, 0)))
33229 addr = XEXP (addr, 1);
33230 else if (CONSTANT_P (XEXP (addr, 1)))
33231 addr = XEXP (addr, 0);
33232 else
33233 gcc_unreachable ();
33235 gcc_assert (GET_CODE (addr) == REG && REGNO (addr) != 0);
33236 return addr;
33239 void
33240 rs6000_fatal_bad_address (rtx op)
33242 fatal_insn ("bad address", op);
33245 #if TARGET_MACHO
33247 typedef struct branch_island_d {
33248 tree function_name;
33249 tree label_name;
33250 int line_number;
33251 } branch_island;
33254 static vec<branch_island, va_gc> *branch_islands;
33256 /* Remember to generate a branch island for far calls to the given
33257 function. */
33259 static void
33260 add_compiler_branch_island (tree label_name, tree function_name,
33261 int line_number)
33263 branch_island bi = {function_name, label_name, line_number};
33264 vec_safe_push (branch_islands, bi);
33267 /* Generate far-jump branch islands for everything recorded in
33268 branch_islands. Invoked immediately after the last instruction of
33269 the epilogue has been emitted; the branch islands must be appended
33270 to, and contiguous with, the function body. Mach-O stubs are
33271 generated in machopic_output_stub(). */
33273 static void
33274 macho_branch_islands (void)
33276 char tmp_buf[512];
33278 while (!vec_safe_is_empty (branch_islands))
33280 branch_island *bi = &branch_islands->last ();
33281 const char *label = IDENTIFIER_POINTER (bi->label_name);
33282 const char *name = IDENTIFIER_POINTER (bi->function_name);
33283 char name_buf[512];
33284 /* Cheap copy of the details from the Darwin ASM_OUTPUT_LABELREF(). */
33285 if (name[0] == '*' || name[0] == '&')
33286 strcpy (name_buf, name+1);
33287 else
33289 name_buf[0] = '_';
33290 strcpy (name_buf+1, name);
33292 strcpy (tmp_buf, "\n");
33293 strcat (tmp_buf, label);
33294 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
33295 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
33296 dbxout_stabd (N_SLINE, bi->line_number);
33297 #endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
33298 if (flag_pic)
33300 if (TARGET_LINK_STACK)
33302 char name[32];
33303 get_ppc476_thunk_name (name);
33304 strcat (tmp_buf, ":\n\tmflr r0\n\tbl ");
33305 strcat (tmp_buf, name);
33306 strcat (tmp_buf, "\n");
33307 strcat (tmp_buf, label);
33308 strcat (tmp_buf, "_pic:\n\tmflr r11\n");
33310 else
33312 strcat (tmp_buf, ":\n\tmflr r0\n\tbcl 20,31,");
33313 strcat (tmp_buf, label);
33314 strcat (tmp_buf, "_pic\n");
33315 strcat (tmp_buf, label);
33316 strcat (tmp_buf, "_pic:\n\tmflr r11\n");
33319 strcat (tmp_buf, "\taddis r11,r11,ha16(");
33320 strcat (tmp_buf, name_buf);
33321 strcat (tmp_buf, " - ");
33322 strcat (tmp_buf, label);
33323 strcat (tmp_buf, "_pic)\n");
33325 strcat (tmp_buf, "\tmtlr r0\n");
33327 strcat (tmp_buf, "\taddi r12,r11,lo16(");
33328 strcat (tmp_buf, name_buf);
33329 strcat (tmp_buf, " - ");
33330 strcat (tmp_buf, label);
33331 strcat (tmp_buf, "_pic)\n");
33333 strcat (tmp_buf, "\tmtctr r12\n\tbctr\n");
33335 else
33337 strcat (tmp_buf, ":\nlis r12,hi16(");
33338 strcat (tmp_buf, name_buf);
33339 strcat (tmp_buf, ")\n\tori r12,r12,lo16(");
33340 strcat (tmp_buf, name_buf);
33341 strcat (tmp_buf, ")\n\tmtctr r12\n\tbctr");
33343 output_asm_insn (tmp_buf, 0);
33344 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
33345 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
33346 dbxout_stabd (N_SLINE, bi->line_number);
33347 #endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
33348 branch_islands->pop ();
33352 /* NO_PREVIOUS_DEF checks in the link list whether the function name is
33353 already there or not. */
33355 static int
33356 no_previous_def (tree function_name)
33358 branch_island *bi;
33359 unsigned ix;
33361 FOR_EACH_VEC_SAFE_ELT (branch_islands, ix, bi)
33362 if (function_name == bi->function_name)
33363 return 0;
33364 return 1;
33367 /* GET_PREV_LABEL gets the label name from the previous definition of
33368 the function. */
33370 static tree
33371 get_prev_label (tree function_name)
33373 branch_island *bi;
33374 unsigned ix;
33376 FOR_EACH_VEC_SAFE_ELT (branch_islands, ix, bi)
33377 if (function_name == bi->function_name)
33378 return bi->label_name;
33379 return NULL_TREE;
33382 /* INSN is either a function call or a millicode call. It may have an
33383 unconditional jump in its delay slot.
33385 CALL_DEST is the routine we are calling. */
33387 char *
33388 output_call (rtx_insn *insn, rtx *operands, int dest_operand_number,
33389 int cookie_operand_number)
33391 static char buf[256];
33392 if (darwin_emit_branch_islands
33393 && GET_CODE (operands[dest_operand_number]) == SYMBOL_REF
33394 && (INTVAL (operands[cookie_operand_number]) & CALL_LONG))
33396 tree labelname;
33397 tree funname = get_identifier (XSTR (operands[dest_operand_number], 0));
33399 if (no_previous_def (funname))
33401 rtx label_rtx = gen_label_rtx ();
33402 char *label_buf, temp_buf[256];
33403 ASM_GENERATE_INTERNAL_LABEL (temp_buf, "L",
33404 CODE_LABEL_NUMBER (label_rtx));
33405 label_buf = temp_buf[0] == '*' ? temp_buf + 1 : temp_buf;
33406 labelname = get_identifier (label_buf);
33407 add_compiler_branch_island (labelname, funname, insn_line (insn));
33409 else
33410 labelname = get_prev_label (funname);
33412 /* "jbsr foo, L42" is Mach-O for "Link as 'bl foo' if a 'bl'
33413 instruction will reach 'foo', otherwise link as 'bl L42'".
33414 "L42" should be a 'branch island', that will do a far jump to
33415 'foo'. Branch islands are generated in
33416 macho_branch_islands(). */
33417 sprintf (buf, "jbsr %%z%d,%.246s",
33418 dest_operand_number, IDENTIFIER_POINTER (labelname));
33420 else
33421 sprintf (buf, "bl %%z%d", dest_operand_number);
33422 return buf;
33425 /* Generate PIC and indirect symbol stubs. */
33427 void
33428 machopic_output_stub (FILE *file, const char *symb, const char *stub)
33430 unsigned int length;
33431 char *symbol_name, *lazy_ptr_name;
33432 char *local_label_0;
33433 static int label = 0;
33435 /* Lose our funky encoding stuff so it doesn't contaminate the stub. */
33436 symb = (*targetm.strip_name_encoding) (symb);
33439 length = strlen (symb);
33440 symbol_name = XALLOCAVEC (char, length + 32);
33441 GEN_SYMBOL_NAME_FOR_SYMBOL (symbol_name, symb, length);
33443 lazy_ptr_name = XALLOCAVEC (char, length + 32);
33444 GEN_LAZY_PTR_NAME_FOR_SYMBOL (lazy_ptr_name, symb, length);
33446 if (flag_pic == 2)
33447 switch_to_section (darwin_sections[machopic_picsymbol_stub1_section]);
33448 else
33449 switch_to_section (darwin_sections[machopic_symbol_stub1_section]);
33451 if (flag_pic == 2)
33453 fprintf (file, "\t.align 5\n");
33455 fprintf (file, "%s:\n", stub);
33456 fprintf (file, "\t.indirect_symbol %s\n", symbol_name);
33458 label++;
33459 local_label_0 = XALLOCAVEC (char, sizeof ("\"L00000000000$spb\""));
33460 sprintf (local_label_0, "\"L%011d$spb\"", label);
33462 fprintf (file, "\tmflr r0\n");
33463 if (TARGET_LINK_STACK)
33465 char name[32];
33466 get_ppc476_thunk_name (name);
33467 fprintf (file, "\tbl %s\n", name);
33468 fprintf (file, "%s:\n\tmflr r11\n", local_label_0);
33470 else
33472 fprintf (file, "\tbcl 20,31,%s\n", local_label_0);
33473 fprintf (file, "%s:\n\tmflr r11\n", local_label_0);
33475 fprintf (file, "\taddis r11,r11,ha16(%s-%s)\n",
33476 lazy_ptr_name, local_label_0);
33477 fprintf (file, "\tmtlr r0\n");
33478 fprintf (file, "\t%s r12,lo16(%s-%s)(r11)\n",
33479 (TARGET_64BIT ? "ldu" : "lwzu"),
33480 lazy_ptr_name, local_label_0);
33481 fprintf (file, "\tmtctr r12\n");
33482 fprintf (file, "\tbctr\n");
33484 else
33486 fprintf (file, "\t.align 4\n");
33488 fprintf (file, "%s:\n", stub);
33489 fprintf (file, "\t.indirect_symbol %s\n", symbol_name);
33491 fprintf (file, "\tlis r11,ha16(%s)\n", lazy_ptr_name);
33492 fprintf (file, "\t%s r12,lo16(%s)(r11)\n",
33493 (TARGET_64BIT ? "ldu" : "lwzu"),
33494 lazy_ptr_name);
33495 fprintf (file, "\tmtctr r12\n");
33496 fprintf (file, "\tbctr\n");
33499 switch_to_section (darwin_sections[machopic_lazy_symbol_ptr_section]);
33500 fprintf (file, "%s:\n", lazy_ptr_name);
33501 fprintf (file, "\t.indirect_symbol %s\n", symbol_name);
33502 fprintf (file, "%sdyld_stub_binding_helper\n",
33503 (TARGET_64BIT ? DOUBLE_INT_ASM_OP : "\t.long\t"));
33506 /* Legitimize PIC addresses. If the address is already
33507 position-independent, we return ORIG. Newly generated
33508 position-independent addresses go into a reg. This is REG if non
33509 zero, otherwise we allocate register(s) as necessary. */
33511 #define SMALL_INT(X) ((UINTVAL (X) + 0x8000) < 0x10000)
33514 rs6000_machopic_legitimize_pic_address (rtx orig, machine_mode mode,
33515 rtx reg)
33517 rtx base, offset;
33519 if (reg == NULL && !reload_completed)
33520 reg = gen_reg_rtx (Pmode);
33522 if (GET_CODE (orig) == CONST)
33524 rtx reg_temp;
33526 if (GET_CODE (XEXP (orig, 0)) == PLUS
33527 && XEXP (XEXP (orig, 0), 0) == pic_offset_table_rtx)
33528 return orig;
33530 gcc_assert (GET_CODE (XEXP (orig, 0)) == PLUS);
33532 /* Use a different reg for the intermediate value, as
33533 it will be marked UNCHANGING. */
33534 reg_temp = !can_create_pseudo_p () ? reg : gen_reg_rtx (Pmode);
33535 base = rs6000_machopic_legitimize_pic_address (XEXP (XEXP (orig, 0), 0),
33536 Pmode, reg_temp);
33537 offset =
33538 rs6000_machopic_legitimize_pic_address (XEXP (XEXP (orig, 0), 1),
33539 Pmode, reg);
33541 if (GET_CODE (offset) == CONST_INT)
33543 if (SMALL_INT (offset))
33544 return plus_constant (Pmode, base, INTVAL (offset));
33545 else if (!reload_completed)
33546 offset = force_reg (Pmode, offset);
33547 else
33549 rtx mem = force_const_mem (Pmode, orig);
33550 return machopic_legitimize_pic_address (mem, Pmode, reg);
33553 return gen_rtx_PLUS (Pmode, base, offset);
33556 /* Fall back on generic machopic code. */
33557 return machopic_legitimize_pic_address (orig, mode, reg);
33560 /* Output a .machine directive for the Darwin assembler, and call
33561 the generic start_file routine. */
33563 static void
33564 rs6000_darwin_file_start (void)
33566 static const struct
33568 const char *arg;
33569 const char *name;
33570 HOST_WIDE_INT if_set;
33571 } mapping[] = {
33572 { "ppc64", "ppc64", MASK_64BIT },
33573 { "970", "ppc970", MASK_PPC_GPOPT | MASK_MFCRF | MASK_POWERPC64 },
33574 { "power4", "ppc970", 0 },
33575 { "G5", "ppc970", 0 },
33576 { "7450", "ppc7450", 0 },
33577 { "7400", "ppc7400", MASK_ALTIVEC },
33578 { "G4", "ppc7400", 0 },
33579 { "750", "ppc750", 0 },
33580 { "740", "ppc750", 0 },
33581 { "G3", "ppc750", 0 },
33582 { "604e", "ppc604e", 0 },
33583 { "604", "ppc604", 0 },
33584 { "603e", "ppc603", 0 },
33585 { "603", "ppc603", 0 },
33586 { "601", "ppc601", 0 },
33587 { NULL, "ppc", 0 } };
33588 const char *cpu_id = "";
33589 size_t i;
33591 rs6000_file_start ();
33592 darwin_file_start ();
33594 /* Determine the argument to -mcpu=. Default to G3 if not specified. */
33596 if (rs6000_default_cpu != 0 && rs6000_default_cpu[0] != '\0')
33597 cpu_id = rs6000_default_cpu;
33599 if (global_options_set.x_rs6000_cpu_index)
33600 cpu_id = processor_target_table[rs6000_cpu_index].name;
33602 /* Look through the mapping array. Pick the first name that either
33603 matches the argument, has a bit set in IF_SET that is also set
33604 in the target flags, or has a NULL name. */
33606 i = 0;
33607 while (mapping[i].arg != NULL
33608 && strcmp (mapping[i].arg, cpu_id) != 0
33609 && (mapping[i].if_set & rs6000_isa_flags) == 0)
33610 i++;
33612 fprintf (asm_out_file, "\t.machine %s\n", mapping[i].name);
33615 #endif /* TARGET_MACHO */
33617 #if TARGET_ELF
33618 static int
33619 rs6000_elf_reloc_rw_mask (void)
33621 if (flag_pic)
33622 return 3;
33623 else if (DEFAULT_ABI == ABI_AIX || DEFAULT_ABI == ABI_ELFv2)
33624 return 2;
33625 else
33626 return 0;
33629 /* Record an element in the table of global constructors. SYMBOL is
33630 a SYMBOL_REF of the function to be called; PRIORITY is a number
33631 between 0 and MAX_INIT_PRIORITY.
33633 This differs from default_named_section_asm_out_constructor in
33634 that we have special handling for -mrelocatable. */
33636 static void rs6000_elf_asm_out_constructor (rtx, int) ATTRIBUTE_UNUSED;
33637 static void
33638 rs6000_elf_asm_out_constructor (rtx symbol, int priority)
33640 const char *section = ".ctors";
33641 char buf[18];
33643 if (priority != DEFAULT_INIT_PRIORITY)
33645 sprintf (buf, ".ctors.%.5u",
33646 /* Invert the numbering so the linker puts us in the proper
33647 order; constructors are run from right to left, and the
33648 linker sorts in increasing order. */
33649 MAX_INIT_PRIORITY - priority);
33650 section = buf;
33653 switch_to_section (get_section (section, SECTION_WRITE, NULL));
33654 assemble_align (POINTER_SIZE);
33656 if (DEFAULT_ABI == ABI_V4
33657 && (TARGET_RELOCATABLE || flag_pic > 1))
33659 fputs ("\t.long (", asm_out_file);
33660 output_addr_const (asm_out_file, symbol);
33661 fputs (")@fixup\n", asm_out_file);
33663 else
33664 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
33667 static void rs6000_elf_asm_out_destructor (rtx, int) ATTRIBUTE_UNUSED;
33668 static void
33669 rs6000_elf_asm_out_destructor (rtx symbol, int priority)
33671 const char *section = ".dtors";
33672 char buf[18];
33674 if (priority != DEFAULT_INIT_PRIORITY)
33676 sprintf (buf, ".dtors.%.5u",
33677 /* Invert the numbering so the linker puts us in the proper
33678 order; constructors are run from right to left, and the
33679 linker sorts in increasing order. */
33680 MAX_INIT_PRIORITY - priority);
33681 section = buf;
33684 switch_to_section (get_section (section, SECTION_WRITE, NULL));
33685 assemble_align (POINTER_SIZE);
33687 if (DEFAULT_ABI == ABI_V4
33688 && (TARGET_RELOCATABLE || flag_pic > 1))
33690 fputs ("\t.long (", asm_out_file);
33691 output_addr_const (asm_out_file, symbol);
33692 fputs (")@fixup\n", asm_out_file);
33694 else
33695 assemble_integer (symbol, POINTER_SIZE / BITS_PER_UNIT, POINTER_SIZE, 1);
33698 void
33699 rs6000_elf_declare_function_name (FILE *file, const char *name, tree decl)
33701 if (TARGET_64BIT && DEFAULT_ABI != ABI_ELFv2)
33703 fputs ("\t.section\t\".opd\",\"aw\"\n\t.align 3\n", file);
33704 ASM_OUTPUT_LABEL (file, name);
33705 fputs (DOUBLE_INT_ASM_OP, file);
33706 rs6000_output_function_entry (file, name);
33707 fputs (",.TOC.@tocbase,0\n\t.previous\n", file);
33708 if (DOT_SYMBOLS)
33710 fputs ("\t.size\t", file);
33711 assemble_name (file, name);
33712 fputs (",24\n\t.type\t.", file);
33713 assemble_name (file, name);
33714 fputs (",@function\n", file);
33715 if (TREE_PUBLIC (decl) && ! DECL_WEAK (decl))
33717 fputs ("\t.globl\t.", file);
33718 assemble_name (file, name);
33719 putc ('\n', file);
33722 else
33723 ASM_OUTPUT_TYPE_DIRECTIVE (file, name, "function");
33724 ASM_DECLARE_RESULT (file, DECL_RESULT (decl));
33725 rs6000_output_function_entry (file, name);
33726 fputs (":\n", file);
33727 return;
33730 int uses_toc;
33731 if (DEFAULT_ABI == ABI_V4
33732 && (TARGET_RELOCATABLE || flag_pic > 1)
33733 && !TARGET_SECURE_PLT
33734 && (!constant_pool_empty_p () || crtl->profile)
33735 && (uses_toc = uses_TOC ()))
33737 char buf[256];
33739 if (uses_toc == 2)
33740 switch_to_other_text_partition ();
33741 (*targetm.asm_out.internal_label) (file, "LCL", rs6000_pic_labelno);
33743 fprintf (file, "\t.long ");
33744 assemble_name (file, toc_label_name);
33745 need_toc_init = 1;
33746 putc ('-', file);
33747 ASM_GENERATE_INTERNAL_LABEL (buf, "LCF", rs6000_pic_labelno);
33748 assemble_name (file, buf);
33749 putc ('\n', file);
33750 if (uses_toc == 2)
33751 switch_to_other_text_partition ();
33754 ASM_OUTPUT_TYPE_DIRECTIVE (file, name, "function");
33755 ASM_DECLARE_RESULT (file, DECL_RESULT (decl));
33757 if (TARGET_CMODEL == CMODEL_LARGE && rs6000_global_entry_point_needed_p ())
33759 char buf[256];
33761 (*targetm.asm_out.internal_label) (file, "LCL", rs6000_pic_labelno);
33763 fprintf (file, "\t.quad .TOC.-");
33764 ASM_GENERATE_INTERNAL_LABEL (buf, "LCF", rs6000_pic_labelno);
33765 assemble_name (file, buf);
33766 putc ('\n', file);
33769 if (DEFAULT_ABI == ABI_AIX)
33771 const char *desc_name, *orig_name;
33773 orig_name = (*targetm.strip_name_encoding) (name);
33774 desc_name = orig_name;
33775 while (*desc_name == '.')
33776 desc_name++;
33778 if (TREE_PUBLIC (decl))
33779 fprintf (file, "\t.globl %s\n", desc_name);
33781 fprintf (file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);
33782 fprintf (file, "%s:\n", desc_name);
33783 fprintf (file, "\t.long %s\n", orig_name);
33784 fputs ("\t.long _GLOBAL_OFFSET_TABLE_\n", file);
33785 fputs ("\t.long 0\n", file);
33786 fprintf (file, "\t.previous\n");
33788 ASM_OUTPUT_LABEL (file, name);
33791 static void rs6000_elf_file_end (void) ATTRIBUTE_UNUSED;
33792 static void
33793 rs6000_elf_file_end (void)
33795 #ifdef HAVE_AS_GNU_ATTRIBUTE
33796 /* ??? The value emitted depends on options active at file end.
33797 Assume anyone using #pragma or attributes that might change
33798 options knows what they are doing. */
33799 if ((TARGET_64BIT || DEFAULT_ABI == ABI_V4)
33800 && rs6000_passes_float)
33802 int fp;
33804 if (TARGET_DF_FPR)
33805 fp = 1;
33806 else if (TARGET_SF_FPR)
33807 fp = 3;
33808 else
33809 fp = 2;
33810 if (rs6000_passes_long_double)
33812 if (!TARGET_LONG_DOUBLE_128)
33813 fp |= 2 * 4;
33814 else if (TARGET_IEEEQUAD)
33815 fp |= 3 * 4;
33816 else
33817 fp |= 1 * 4;
33819 fprintf (asm_out_file, "\t.gnu_attribute 4, %d\n", fp);
33821 if (TARGET_32BIT && DEFAULT_ABI == ABI_V4)
33823 if (rs6000_passes_vector)
33824 fprintf (asm_out_file, "\t.gnu_attribute 8, %d\n",
33825 (TARGET_ALTIVEC_ABI ? 2 : 1));
33826 if (rs6000_returns_struct)
33827 fprintf (asm_out_file, "\t.gnu_attribute 12, %d\n",
33828 aix_struct_return ? 2 : 1);
33830 #endif
33831 #if defined (POWERPC_LINUX) || defined (POWERPC_FREEBSD)
33832 if (TARGET_32BIT || DEFAULT_ABI == ABI_ELFv2)
33833 file_end_indicate_exec_stack ();
33834 #endif
33836 if (flag_split_stack)
33837 file_end_indicate_split_stack ();
33839 if (cpu_builtin_p)
33841 /* We have expanded a CPU builtin, so we need to emit a reference to
33842 the special symbol that LIBC uses to declare it supports the
33843 AT_PLATFORM and AT_HWCAP/AT_HWCAP2 in the TCB feature. */
33844 switch_to_section (data_section);
33845 fprintf (asm_out_file, "\t.align %u\n", TARGET_32BIT ? 2 : 3);
33846 fprintf (asm_out_file, "\t%s %s\n",
33847 TARGET_32BIT ? ".long" : ".quad", tcb_verification_symbol);
33850 #endif
33852 #if TARGET_XCOFF
33854 #ifndef HAVE_XCOFF_DWARF_EXTRAS
33855 #define HAVE_XCOFF_DWARF_EXTRAS 0
33856 #endif
33858 static enum unwind_info_type
33859 rs6000_xcoff_debug_unwind_info (void)
33861 return UI_NONE;
33864 static void
33865 rs6000_xcoff_asm_output_anchor (rtx symbol)
33867 char buffer[100];
33869 sprintf (buffer, "$ + " HOST_WIDE_INT_PRINT_DEC,
33870 SYMBOL_REF_BLOCK_OFFSET (symbol));
33871 fprintf (asm_out_file, "%s", SET_ASM_OP);
33872 RS6000_OUTPUT_BASENAME (asm_out_file, XSTR (symbol, 0));
33873 fprintf (asm_out_file, ",");
33874 RS6000_OUTPUT_BASENAME (asm_out_file, buffer);
33875 fprintf (asm_out_file, "\n");
33878 static void
33879 rs6000_xcoff_asm_globalize_label (FILE *stream, const char *name)
33881 fputs (GLOBAL_ASM_OP, stream);
33882 RS6000_OUTPUT_BASENAME (stream, name);
33883 putc ('\n', stream);
33886 /* A get_unnamed_decl callback, used for read-only sections. PTR
33887 points to the section string variable. */
33889 static void
33890 rs6000_xcoff_output_readonly_section_asm_op (const void *directive)
33892 fprintf (asm_out_file, "\t.csect %s[RO],%s\n",
33893 *(const char *const *) directive,
33894 XCOFF_CSECT_DEFAULT_ALIGNMENT_STR);
33897 /* Likewise for read-write sections. */
33899 static void
33900 rs6000_xcoff_output_readwrite_section_asm_op (const void *directive)
33902 fprintf (asm_out_file, "\t.csect %s[RW],%s\n",
33903 *(const char *const *) directive,
33904 XCOFF_CSECT_DEFAULT_ALIGNMENT_STR);
33907 static void
33908 rs6000_xcoff_output_tls_section_asm_op (const void *directive)
33910 fprintf (asm_out_file, "\t.csect %s[TL],%s\n",
33911 *(const char *const *) directive,
33912 XCOFF_CSECT_DEFAULT_ALIGNMENT_STR);
33915 /* A get_unnamed_section callback, used for switching to toc_section. */
33917 static void
33918 rs6000_xcoff_output_toc_section_asm_op (const void *data ATTRIBUTE_UNUSED)
33920 if (TARGET_MINIMAL_TOC)
33922 /* toc_section is always selected at least once from
33923 rs6000_xcoff_file_start, so this is guaranteed to
33924 always be defined once and only once in each file. */
33925 if (!toc_initialized)
33927 fputs ("\t.toc\nLCTOC..1:\n", asm_out_file);
33928 fputs ("\t.tc toc_table[TC],toc_table[RW]\n", asm_out_file);
33929 toc_initialized = 1;
33931 fprintf (asm_out_file, "\t.csect toc_table[RW]%s\n",
33932 (TARGET_32BIT ? "" : ",3"));
33934 else
33935 fputs ("\t.toc\n", asm_out_file);
33938 /* Implement TARGET_ASM_INIT_SECTIONS. */
33940 static void
33941 rs6000_xcoff_asm_init_sections (void)
33943 read_only_data_section
33944 = get_unnamed_section (0, rs6000_xcoff_output_readonly_section_asm_op,
33945 &xcoff_read_only_section_name);
33947 private_data_section
33948 = get_unnamed_section (SECTION_WRITE,
33949 rs6000_xcoff_output_readwrite_section_asm_op,
33950 &xcoff_private_data_section_name);
33952 tls_data_section
33953 = get_unnamed_section (SECTION_TLS,
33954 rs6000_xcoff_output_tls_section_asm_op,
33955 &xcoff_tls_data_section_name);
33957 tls_private_data_section
33958 = get_unnamed_section (SECTION_TLS,
33959 rs6000_xcoff_output_tls_section_asm_op,
33960 &xcoff_private_data_section_name);
33962 read_only_private_data_section
33963 = get_unnamed_section (0, rs6000_xcoff_output_readonly_section_asm_op,
33964 &xcoff_private_data_section_name);
33966 toc_section
33967 = get_unnamed_section (0, rs6000_xcoff_output_toc_section_asm_op, NULL);
33969 readonly_data_section = read_only_data_section;
33972 static int
33973 rs6000_xcoff_reloc_rw_mask (void)
33975 return 3;
33978 static void
33979 rs6000_xcoff_asm_named_section (const char *name, unsigned int flags,
33980 tree decl ATTRIBUTE_UNUSED)
33982 int smclass;
33983 static const char * const suffix[5] = { "PR", "RO", "RW", "TL", "XO" };
33985 if (flags & SECTION_EXCLUDE)
33986 smclass = 4;
33987 else if (flags & SECTION_DEBUG)
33989 fprintf (asm_out_file, "\t.dwsect %s\n", name);
33990 return;
33992 else if (flags & SECTION_CODE)
33993 smclass = 0;
33994 else if (flags & SECTION_TLS)
33995 smclass = 3;
33996 else if (flags & SECTION_WRITE)
33997 smclass = 2;
33998 else
33999 smclass = 1;
34001 fprintf (asm_out_file, "\t.csect %s%s[%s],%u\n",
34002 (flags & SECTION_CODE) ? "." : "",
34003 name, suffix[smclass], flags & SECTION_ENTSIZE);
34006 #define IN_NAMED_SECTION(DECL) \
34007 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
34008 && DECL_SECTION_NAME (DECL) != NULL)
34010 static section *
34011 rs6000_xcoff_select_section (tree decl, int reloc,
34012 unsigned HOST_WIDE_INT align)
34014 /* Place variables with alignment stricter than BIGGEST_ALIGNMENT into
34015 named section. */
34016 if (align > BIGGEST_ALIGNMENT)
34018 resolve_unique_section (decl, reloc, true);
34019 if (IN_NAMED_SECTION (decl))
34020 return get_named_section (decl, NULL, reloc);
34023 if (decl_readonly_section (decl, reloc))
34025 if (TREE_PUBLIC (decl))
34026 return read_only_data_section;
34027 else
34028 return read_only_private_data_section;
34030 else
34032 #if HAVE_AS_TLS
34033 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
34035 if (TREE_PUBLIC (decl))
34036 return tls_data_section;
34037 else if (bss_initializer_p (decl))
34039 /* Convert to COMMON to emit in BSS. */
34040 DECL_COMMON (decl) = 1;
34041 return tls_comm_section;
34043 else
34044 return tls_private_data_section;
34046 else
34047 #endif
34048 if (TREE_PUBLIC (decl))
34049 return data_section;
34050 else
34051 return private_data_section;
34055 static void
34056 rs6000_xcoff_unique_section (tree decl, int reloc ATTRIBUTE_UNUSED)
34058 const char *name;
34060 /* Use select_section for private data and uninitialized data with
34061 alignment <= BIGGEST_ALIGNMENT. */
34062 if (!TREE_PUBLIC (decl)
34063 || DECL_COMMON (decl)
34064 || (DECL_INITIAL (decl) == NULL_TREE
34065 && DECL_ALIGN (decl) <= BIGGEST_ALIGNMENT)
34066 || DECL_INITIAL (decl) == error_mark_node
34067 || (flag_zero_initialized_in_bss
34068 && initializer_zerop (DECL_INITIAL (decl))))
34069 return;
34071 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
34072 name = (*targetm.strip_name_encoding) (name);
34073 set_decl_section_name (decl, name);
34076 /* Select section for constant in constant pool.
34078 On RS/6000, all constants are in the private read-only data area.
34079 However, if this is being placed in the TOC it must be output as a
34080 toc entry. */
34082 static section *
34083 rs6000_xcoff_select_rtx_section (machine_mode mode, rtx x,
34084 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
34086 if (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P (x, mode))
34087 return toc_section;
34088 else
34089 return read_only_private_data_section;
34092 /* Remove any trailing [DS] or the like from the symbol name. */
34094 static const char *
34095 rs6000_xcoff_strip_name_encoding (const char *name)
34097 size_t len;
34098 if (*name == '*')
34099 name++;
34100 len = strlen (name);
34101 if (name[len - 1] == ']')
34102 return ggc_alloc_string (name, len - 4);
34103 else
34104 return name;
34107 /* Section attributes. AIX is always PIC. */
34109 static unsigned int
34110 rs6000_xcoff_section_type_flags (tree decl, const char *name, int reloc)
34112 unsigned int align;
34113 unsigned int flags = default_section_type_flags (decl, name, reloc);
34115 /* Align to at least UNIT size. */
34116 if ((flags & SECTION_CODE) != 0 || !decl || !DECL_P (decl))
34117 align = MIN_UNITS_PER_WORD;
34118 else
34119 /* Increase alignment of large objects if not already stricter. */
34120 align = MAX ((DECL_ALIGN (decl) / BITS_PER_UNIT),
34121 int_size_in_bytes (TREE_TYPE (decl)) > MIN_UNITS_PER_WORD
34122 ? UNITS_PER_FP_WORD : MIN_UNITS_PER_WORD);
34124 return flags | (exact_log2 (align) & SECTION_ENTSIZE);
34127 /* Output at beginning of assembler file.
34129 Initialize the section names for the RS/6000 at this point.
34131 Specify filename, including full path, to assembler.
34133 We want to go into the TOC section so at least one .toc will be emitted.
34134 Also, in order to output proper .bs/.es pairs, we need at least one static
34135 [RW] section emitted.
34137 Finally, declare mcount when profiling to make the assembler happy. */
34139 static void
34140 rs6000_xcoff_file_start (void)
34142 rs6000_gen_section_name (&xcoff_bss_section_name,
34143 main_input_filename, ".bss_");
34144 rs6000_gen_section_name (&xcoff_private_data_section_name,
34145 main_input_filename, ".rw_");
34146 rs6000_gen_section_name (&xcoff_read_only_section_name,
34147 main_input_filename, ".ro_");
34148 rs6000_gen_section_name (&xcoff_tls_data_section_name,
34149 main_input_filename, ".tls_");
34150 rs6000_gen_section_name (&xcoff_tbss_section_name,
34151 main_input_filename, ".tbss_[UL]");
34153 fputs ("\t.file\t", asm_out_file);
34154 output_quoted_string (asm_out_file, main_input_filename);
34155 fputc ('\n', asm_out_file);
34156 if (write_symbols != NO_DEBUG)
34157 switch_to_section (private_data_section);
34158 switch_to_section (toc_section);
34159 switch_to_section (text_section);
34160 if (profile_flag)
34161 fprintf (asm_out_file, "\t.extern %s\n", RS6000_MCOUNT);
34162 rs6000_file_start ();
34165 /* Output at end of assembler file.
34166 On the RS/6000, referencing data should automatically pull in text. */
34168 static void
34169 rs6000_xcoff_file_end (void)
34171 switch_to_section (text_section);
34172 fputs ("_section_.text:\n", asm_out_file);
34173 switch_to_section (data_section);
34174 fputs (TARGET_32BIT
34175 ? "\t.long _section_.text\n" : "\t.llong _section_.text\n",
34176 asm_out_file);
34179 struct declare_alias_data
34181 FILE *file;
34182 bool function_descriptor;
34185 /* Declare alias N. A helper function for for_node_and_aliases. */
34187 static bool
34188 rs6000_declare_alias (struct symtab_node *n, void *d)
34190 struct declare_alias_data *data = (struct declare_alias_data *)d;
34191 /* Main symbol is output specially, because varasm machinery does part of
34192 the job for us - we do not need to declare .globl/lglobs and such. */
34193 if (!n->alias || n->weakref)
34194 return false;
34196 if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (n->decl)))
34197 return false;
34199 /* Prevent assemble_alias from trying to use .set pseudo operation
34200 that does not behave as expected by the middle-end. */
34201 TREE_ASM_WRITTEN (n->decl) = true;
34203 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (n->decl));
34204 char *buffer = (char *) alloca (strlen (name) + 2);
34205 char *p;
34206 int dollar_inside = 0;
34208 strcpy (buffer, name);
34209 p = strchr (buffer, '$');
34210 while (p) {
34211 *p = '_';
34212 dollar_inside++;
34213 p = strchr (p + 1, '$');
34215 if (TREE_PUBLIC (n->decl))
34217 if (!RS6000_WEAK || !DECL_WEAK (n->decl))
34219 if (dollar_inside) {
34220 if (data->function_descriptor)
34221 fprintf(data->file, "\t.rename .%s,\".%s\"\n", buffer, name);
34222 fprintf(data->file, "\t.rename %s,\"%s\"\n", buffer, name);
34224 if (data->function_descriptor)
34226 fputs ("\t.globl .", data->file);
34227 RS6000_OUTPUT_BASENAME (data->file, buffer);
34228 putc ('\n', data->file);
34230 fputs ("\t.globl ", data->file);
34231 RS6000_OUTPUT_BASENAME (data->file, buffer);
34232 putc ('\n', data->file);
34234 #ifdef ASM_WEAKEN_DECL
34235 else if (DECL_WEAK (n->decl) && !data->function_descriptor)
34236 ASM_WEAKEN_DECL (data->file, n->decl, name, NULL);
34237 #endif
34239 else
34241 if (dollar_inside)
34243 if (data->function_descriptor)
34244 fprintf(data->file, "\t.rename .%s,\".%s\"\n", buffer, name);
34245 fprintf(data->file, "\t.rename %s,\"%s\"\n", buffer, name);
34247 if (data->function_descriptor)
34249 fputs ("\t.lglobl .", data->file);
34250 RS6000_OUTPUT_BASENAME (data->file, buffer);
34251 putc ('\n', data->file);
34253 fputs ("\t.lglobl ", data->file);
34254 RS6000_OUTPUT_BASENAME (data->file, buffer);
34255 putc ('\n', data->file);
34257 if (data->function_descriptor)
34258 fputs (".", data->file);
34259 RS6000_OUTPUT_BASENAME (data->file, buffer);
34260 fputs (":\n", data->file);
34261 return false;
34265 #ifdef HAVE_GAS_HIDDEN
34266 /* Helper function to calculate visibility of a DECL
34267 and return the value as a const string. */
34269 static const char *
34270 rs6000_xcoff_visibility (tree decl)
34272 static const char * const visibility_types[] = {
34273 "", ",protected", ",hidden", ",internal"
34276 enum symbol_visibility vis = DECL_VISIBILITY (decl);
34278 if (TREE_CODE (decl) == FUNCTION_DECL
34279 && cgraph_node::get (decl)
34280 && cgraph_node::get (decl)->instrumentation_clone
34281 && cgraph_node::get (decl)->instrumented_version)
34282 vis = DECL_VISIBILITY (cgraph_node::get (decl)->instrumented_version->decl);
34284 return visibility_types[vis];
34286 #endif
34289 /* This macro produces the initial definition of a function name.
34290 On the RS/6000, we need to place an extra '.' in the function name and
34291 output the function descriptor.
34292 Dollar signs are converted to underscores.
34294 The csect for the function will have already been created when
34295 text_section was selected. We do have to go back to that csect, however.
34297 The third and fourth parameters to the .function pseudo-op (16 and 044)
34298 are placeholders which no longer have any use.
34300 Because AIX assembler's .set command has unexpected semantics, we output
34301 all aliases as alternative labels in front of the definition. */
34303 void
34304 rs6000_xcoff_declare_function_name (FILE *file, const char *name, tree decl)
34306 char *buffer = (char *) alloca (strlen (name) + 1);
34307 char *p;
34308 int dollar_inside = 0;
34309 struct declare_alias_data data = {file, false};
34311 strcpy (buffer, name);
34312 p = strchr (buffer, '$');
34313 while (p) {
34314 *p = '_';
34315 dollar_inside++;
34316 p = strchr (p + 1, '$');
34318 if (TREE_PUBLIC (decl))
34320 if (!RS6000_WEAK || !DECL_WEAK (decl))
34322 if (dollar_inside) {
34323 fprintf(file, "\t.rename .%s,\".%s\"\n", buffer, name);
34324 fprintf(file, "\t.rename %s,\"%s\"\n", buffer, name);
34326 fputs ("\t.globl .", file);
34327 RS6000_OUTPUT_BASENAME (file, buffer);
34328 #ifdef HAVE_GAS_HIDDEN
34329 fputs (rs6000_xcoff_visibility (decl), file);
34330 #endif
34331 putc ('\n', file);
34334 else
34336 if (dollar_inside) {
34337 fprintf(file, "\t.rename .%s,\".%s\"\n", buffer, name);
34338 fprintf(file, "\t.rename %s,\"%s\"\n", buffer, name);
34340 fputs ("\t.lglobl .", file);
34341 RS6000_OUTPUT_BASENAME (file, buffer);
34342 putc ('\n', file);
34344 fputs ("\t.csect ", file);
34345 RS6000_OUTPUT_BASENAME (file, buffer);
34346 fputs (TARGET_32BIT ? "[DS]\n" : "[DS],3\n", file);
34347 RS6000_OUTPUT_BASENAME (file, buffer);
34348 fputs (":\n", file);
34349 symtab_node::get (decl)->call_for_symbol_and_aliases (rs6000_declare_alias,
34350 &data, true);
34351 fputs (TARGET_32BIT ? "\t.long ." : "\t.llong .", file);
34352 RS6000_OUTPUT_BASENAME (file, buffer);
34353 fputs (", TOC[tc0], 0\n", file);
34354 in_section = NULL;
34355 switch_to_section (function_section (decl));
34356 putc ('.', file);
34357 RS6000_OUTPUT_BASENAME (file, buffer);
34358 fputs (":\n", file);
34359 data.function_descriptor = true;
34360 symtab_node::get (decl)->call_for_symbol_and_aliases (rs6000_declare_alias,
34361 &data, true);
34362 if (!DECL_IGNORED_P (decl))
34364 if (write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
34365 xcoffout_declare_function (file, decl, buffer);
34366 else if (write_symbols == DWARF2_DEBUG)
34368 name = (*targetm.strip_name_encoding) (name);
34369 fprintf (file, "\t.function .%s,.%s,2,0\n", name, name);
34372 return;
34376 /* Output assembly language to globalize a symbol from a DECL,
34377 possibly with visibility. */
34379 void
34380 rs6000_xcoff_asm_globalize_decl_name (FILE *stream, tree decl)
34382 const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
34383 fputs (GLOBAL_ASM_OP, stream);
34384 RS6000_OUTPUT_BASENAME (stream, name);
34385 #ifdef HAVE_GAS_HIDDEN
34386 fputs (rs6000_xcoff_visibility (decl), stream);
34387 #endif
34388 putc ('\n', stream);
34391 /* Output assembly language to define a symbol as COMMON from a DECL,
34392 possibly with visibility. */
34394 void
34395 rs6000_xcoff_asm_output_aligned_decl_common (FILE *stream,
34396 tree decl ATTRIBUTE_UNUSED,
34397 const char *name,
34398 unsigned HOST_WIDE_INT size,
34399 unsigned HOST_WIDE_INT align)
34401 unsigned HOST_WIDE_INT align2 = 2;
34403 if (align > 32)
34404 align2 = floor_log2 (align / BITS_PER_UNIT);
34405 else if (size > 4)
34406 align2 = 3;
34408 fputs (COMMON_ASM_OP, stream);
34409 RS6000_OUTPUT_BASENAME (stream, name);
34411 fprintf (stream,
34412 "," HOST_WIDE_INT_PRINT_UNSIGNED "," HOST_WIDE_INT_PRINT_UNSIGNED,
34413 size, align2);
34415 #ifdef HAVE_GAS_HIDDEN
34416 if (decl != NULL)
34417 fputs (rs6000_xcoff_visibility (decl), stream);
34418 #endif
34419 putc ('\n', stream);
34422 /* This macro produces the initial definition of a object (variable) name.
34423 Because AIX assembler's .set command has unexpected semantics, we output
34424 all aliases as alternative labels in front of the definition. */
34426 void
34427 rs6000_xcoff_declare_object_name (FILE *file, const char *name, tree decl)
34429 struct declare_alias_data data = {file, false};
34430 RS6000_OUTPUT_BASENAME (file, name);
34431 fputs (":\n", file);
34432 symtab_node::get_create (decl)->call_for_symbol_and_aliases (rs6000_declare_alias,
34433 &data, true);
34436 /* Overide the default 'SYMBOL-.' syntax with AIX compatible 'SYMBOL-$'. */
34438 void
34439 rs6000_asm_output_dwarf_pcrel (FILE *file, int size, const char *label)
34441 fputs (integer_asm_op (size, FALSE), file);
34442 assemble_name (file, label);
34443 fputs ("-$", file);
34446 /* Output a symbol offset relative to the dbase for the current object.
34447 We use __gcc_unwind_dbase as an arbitrary base for dbase and assume
34448 signed offsets.
34450 __gcc_unwind_dbase is embedded in all executables/libraries through
34451 libgcc/config/rs6000/crtdbase.S. */
34453 void
34454 rs6000_asm_output_dwarf_datarel (FILE *file, int size, const char *label)
34456 fputs (integer_asm_op (size, FALSE), file);
34457 assemble_name (file, label);
34458 fputs("-__gcc_unwind_dbase", file);
34461 #ifdef HAVE_AS_TLS
34462 static void
34463 rs6000_xcoff_encode_section_info (tree decl, rtx rtl, int first)
34465 rtx symbol;
34466 int flags;
34467 const char *symname;
34469 default_encode_section_info (decl, rtl, first);
34471 /* Careful not to prod global register variables. */
34472 if (!MEM_P (rtl))
34473 return;
34474 symbol = XEXP (rtl, 0);
34475 if (GET_CODE (symbol) != SYMBOL_REF)
34476 return;
34478 flags = SYMBOL_REF_FLAGS (symbol);
34480 if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
34481 flags &= ~SYMBOL_FLAG_HAS_BLOCK_INFO;
34483 SYMBOL_REF_FLAGS (symbol) = flags;
34485 /* Append mapping class to extern decls. */
34486 symname = XSTR (symbol, 0);
34487 if (decl /* sync condition with assemble_external () */
34488 && DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl)
34489 && ((TREE_CODE (decl) == VAR_DECL && !DECL_THREAD_LOCAL_P (decl))
34490 || TREE_CODE (decl) == FUNCTION_DECL)
34491 && symname[strlen (symname) - 1] != ']')
34493 char *newname = (char *) alloca (strlen (symname) + 5);
34494 strcpy (newname, symname);
34495 strcat (newname, (TREE_CODE (decl) == FUNCTION_DECL
34496 ? "[DS]" : "[UA]"));
34497 XSTR (symbol, 0) = ggc_strdup (newname);
34500 #endif /* HAVE_AS_TLS */
34501 #endif /* TARGET_XCOFF */
34503 void
34504 rs6000_asm_weaken_decl (FILE *stream, tree decl,
34505 const char *name, const char *val)
34507 fputs ("\t.weak\t", stream);
34508 RS6000_OUTPUT_BASENAME (stream, name);
34509 if (decl && TREE_CODE (decl) == FUNCTION_DECL
34510 && DEFAULT_ABI == ABI_AIX && DOT_SYMBOLS)
34512 if (TARGET_XCOFF)
34513 fputs ("[DS]", stream);
34514 #if TARGET_XCOFF && HAVE_GAS_HIDDEN
34515 if (TARGET_XCOFF)
34516 fputs (rs6000_xcoff_visibility (decl), stream);
34517 #endif
34518 fputs ("\n\t.weak\t.", stream);
34519 RS6000_OUTPUT_BASENAME (stream, name);
34521 #if TARGET_XCOFF && HAVE_GAS_HIDDEN
34522 if (TARGET_XCOFF)
34523 fputs (rs6000_xcoff_visibility (decl), stream);
34524 #endif
34525 fputc ('\n', stream);
34526 if (val)
34528 #ifdef ASM_OUTPUT_DEF
34529 ASM_OUTPUT_DEF (stream, name, val);
34530 #endif
34531 if (decl && TREE_CODE (decl) == FUNCTION_DECL
34532 && DEFAULT_ABI == ABI_AIX && DOT_SYMBOLS)
34534 fputs ("\t.set\t.", stream);
34535 RS6000_OUTPUT_BASENAME (stream, name);
34536 fputs (",.", stream);
34537 RS6000_OUTPUT_BASENAME (stream, val);
34538 fputc ('\n', stream);
34544 /* Return true if INSN should not be copied. */
34546 static bool
34547 rs6000_cannot_copy_insn_p (rtx_insn *insn)
34549 return recog_memoized (insn) >= 0
34550 && get_attr_cannot_copy (insn);
34553 /* Compute a (partial) cost for rtx X. Return true if the complete
34554 cost has been computed, and false if subexpressions should be
34555 scanned. In either case, *TOTAL contains the cost result. */
34557 static bool
34558 rs6000_rtx_costs (rtx x, machine_mode mode, int outer_code,
34559 int opno ATTRIBUTE_UNUSED, int *total, bool speed)
34561 int code = GET_CODE (x);
34563 switch (code)
34565 /* On the RS/6000, if it is valid in the insn, it is free. */
34566 case CONST_INT:
34567 if (((outer_code == SET
34568 || outer_code == PLUS
34569 || outer_code == MINUS)
34570 && (satisfies_constraint_I (x)
34571 || satisfies_constraint_L (x)))
34572 || (outer_code == AND
34573 && (satisfies_constraint_K (x)
34574 || (mode == SImode
34575 ? satisfies_constraint_L (x)
34576 : satisfies_constraint_J (x))))
34577 || ((outer_code == IOR || outer_code == XOR)
34578 && (satisfies_constraint_K (x)
34579 || (mode == SImode
34580 ? satisfies_constraint_L (x)
34581 : satisfies_constraint_J (x))))
34582 || outer_code == ASHIFT
34583 || outer_code == ASHIFTRT
34584 || outer_code == LSHIFTRT
34585 || outer_code == ROTATE
34586 || outer_code == ROTATERT
34587 || outer_code == ZERO_EXTRACT
34588 || (outer_code == MULT
34589 && satisfies_constraint_I (x))
34590 || ((outer_code == DIV || outer_code == UDIV
34591 || outer_code == MOD || outer_code == UMOD)
34592 && exact_log2 (INTVAL (x)) >= 0)
34593 || (outer_code == COMPARE
34594 && (satisfies_constraint_I (x)
34595 || satisfies_constraint_K (x)))
34596 || ((outer_code == EQ || outer_code == NE)
34597 && (satisfies_constraint_I (x)
34598 || satisfies_constraint_K (x)
34599 || (mode == SImode
34600 ? satisfies_constraint_L (x)
34601 : satisfies_constraint_J (x))))
34602 || (outer_code == GTU
34603 && satisfies_constraint_I (x))
34604 || (outer_code == LTU
34605 && satisfies_constraint_P (x)))
34607 *total = 0;
34608 return true;
34610 else if ((outer_code == PLUS
34611 && reg_or_add_cint_operand (x, VOIDmode))
34612 || (outer_code == MINUS
34613 && reg_or_sub_cint_operand (x, VOIDmode))
34614 || ((outer_code == SET
34615 || outer_code == IOR
34616 || outer_code == XOR)
34617 && (INTVAL (x)
34618 & ~ (unsigned HOST_WIDE_INT) 0xffffffff) == 0))
34620 *total = COSTS_N_INSNS (1);
34621 return true;
34623 /* FALLTHRU */
34625 case CONST_DOUBLE:
34626 case CONST_WIDE_INT:
34627 case CONST:
34628 case HIGH:
34629 case SYMBOL_REF:
34630 *total = !speed ? COSTS_N_INSNS (1) + 1 : COSTS_N_INSNS (2);
34631 return true;
34633 case MEM:
34634 /* When optimizing for size, MEM should be slightly more expensive
34635 than generating address, e.g., (plus (reg) (const)).
34636 L1 cache latency is about two instructions. */
34637 *total = !speed ? COSTS_N_INSNS (1) + 1 : COSTS_N_INSNS (2);
34638 if (rs6000_slow_unaligned_access (mode, MEM_ALIGN (x)))
34639 *total += COSTS_N_INSNS (100);
34640 return true;
34642 case LABEL_REF:
34643 *total = 0;
34644 return true;
34646 case PLUS:
34647 case MINUS:
34648 if (FLOAT_MODE_P (mode))
34649 *total = rs6000_cost->fp;
34650 else
34651 *total = COSTS_N_INSNS (1);
34652 return false;
34654 case MULT:
34655 if (GET_CODE (XEXP (x, 1)) == CONST_INT
34656 && satisfies_constraint_I (XEXP (x, 1)))
34658 if (INTVAL (XEXP (x, 1)) >= -256
34659 && INTVAL (XEXP (x, 1)) <= 255)
34660 *total = rs6000_cost->mulsi_const9;
34661 else
34662 *total = rs6000_cost->mulsi_const;
34664 else if (mode == SFmode)
34665 *total = rs6000_cost->fp;
34666 else if (FLOAT_MODE_P (mode))
34667 *total = rs6000_cost->dmul;
34668 else if (mode == DImode)
34669 *total = rs6000_cost->muldi;
34670 else
34671 *total = rs6000_cost->mulsi;
34672 return false;
34674 case FMA:
34675 if (mode == SFmode)
34676 *total = rs6000_cost->fp;
34677 else
34678 *total = rs6000_cost->dmul;
34679 break;
34681 case DIV:
34682 case MOD:
34683 if (FLOAT_MODE_P (mode))
34685 *total = mode == DFmode ? rs6000_cost->ddiv
34686 : rs6000_cost->sdiv;
34687 return false;
34689 /* FALLTHRU */
34691 case UDIV:
34692 case UMOD:
34693 if (GET_CODE (XEXP (x, 1)) == CONST_INT
34694 && exact_log2 (INTVAL (XEXP (x, 1))) >= 0)
34696 if (code == DIV || code == MOD)
34697 /* Shift, addze */
34698 *total = COSTS_N_INSNS (2);
34699 else
34700 /* Shift */
34701 *total = COSTS_N_INSNS (1);
34703 else
34705 if (GET_MODE (XEXP (x, 1)) == DImode)
34706 *total = rs6000_cost->divdi;
34707 else
34708 *total = rs6000_cost->divsi;
34710 /* Add in shift and subtract for MOD unless we have a mod instruction. */
34711 if (!TARGET_MODULO && (code == MOD || code == UMOD))
34712 *total += COSTS_N_INSNS (2);
34713 return false;
34715 case CTZ:
34716 *total = COSTS_N_INSNS (TARGET_CTZ ? 1 : 4);
34717 return false;
34719 case FFS:
34720 *total = COSTS_N_INSNS (4);
34721 return false;
34723 case POPCOUNT:
34724 *total = COSTS_N_INSNS (TARGET_POPCNTD ? 1 : 6);
34725 return false;
34727 case PARITY:
34728 *total = COSTS_N_INSNS (TARGET_CMPB ? 2 : 6);
34729 return false;
34731 case NOT:
34732 if (outer_code == AND || outer_code == IOR || outer_code == XOR)
34733 *total = 0;
34734 else
34735 *total = COSTS_N_INSNS (1);
34736 return false;
34738 case AND:
34739 if (CONST_INT_P (XEXP (x, 1)))
34741 rtx left = XEXP (x, 0);
34742 rtx_code left_code = GET_CODE (left);
34744 /* rotate-and-mask: 1 insn. */
34745 if ((left_code == ROTATE
34746 || left_code == ASHIFT
34747 || left_code == LSHIFTRT)
34748 && rs6000_is_valid_shift_mask (XEXP (x, 1), left, mode))
34750 *total = rtx_cost (XEXP (left, 0), mode, left_code, 0, speed);
34751 if (!CONST_INT_P (XEXP (left, 1)))
34752 *total += rtx_cost (XEXP (left, 1), SImode, left_code, 1, speed);
34753 *total += COSTS_N_INSNS (1);
34754 return true;
34757 /* rotate-and-mask (no rotate), andi., andis.: 1 insn. */
34758 HOST_WIDE_INT val = INTVAL (XEXP (x, 1));
34759 if (rs6000_is_valid_and_mask (XEXP (x, 1), mode)
34760 || (val & 0xffff) == val
34761 || (val & 0xffff0000) == val
34762 || ((val & 0xffff) == 0 && mode == SImode))
34764 *total = rtx_cost (left, mode, AND, 0, speed);
34765 *total += COSTS_N_INSNS (1);
34766 return true;
34769 /* 2 insns. */
34770 if (rs6000_is_valid_2insn_and (XEXP (x, 1), mode))
34772 *total = rtx_cost (left, mode, AND, 0, speed);
34773 *total += COSTS_N_INSNS (2);
34774 return true;
34778 *total = COSTS_N_INSNS (1);
34779 return false;
34781 case IOR:
34782 /* FIXME */
34783 *total = COSTS_N_INSNS (1);
34784 return true;
34786 case CLZ:
34787 case XOR:
34788 case ZERO_EXTRACT:
34789 *total = COSTS_N_INSNS (1);
34790 return false;
34792 case ASHIFT:
34793 /* The EXTSWSLI instruction is a combined instruction. Don't count both
34794 the sign extend and shift separately within the insn. */
34795 if (TARGET_EXTSWSLI && mode == DImode
34796 && GET_CODE (XEXP (x, 0)) == SIGN_EXTEND
34797 && GET_MODE (XEXP (XEXP (x, 0), 0)) == SImode)
34799 *total = 0;
34800 return false;
34802 /* fall through */
34804 case ASHIFTRT:
34805 case LSHIFTRT:
34806 case ROTATE:
34807 case ROTATERT:
34808 /* Handle mul_highpart. */
34809 if (outer_code == TRUNCATE
34810 && GET_CODE (XEXP (x, 0)) == MULT)
34812 if (mode == DImode)
34813 *total = rs6000_cost->muldi;
34814 else
34815 *total = rs6000_cost->mulsi;
34816 return true;
34818 else if (outer_code == AND)
34819 *total = 0;
34820 else
34821 *total = COSTS_N_INSNS (1);
34822 return false;
34824 case SIGN_EXTEND:
34825 case ZERO_EXTEND:
34826 if (GET_CODE (XEXP (x, 0)) == MEM)
34827 *total = 0;
34828 else
34829 *total = COSTS_N_INSNS (1);
34830 return false;
34832 case COMPARE:
34833 case NEG:
34834 case ABS:
34835 if (!FLOAT_MODE_P (mode))
34837 *total = COSTS_N_INSNS (1);
34838 return false;
34840 /* FALLTHRU */
34842 case FLOAT:
34843 case UNSIGNED_FLOAT:
34844 case FIX:
34845 case UNSIGNED_FIX:
34846 case FLOAT_TRUNCATE:
34847 *total = rs6000_cost->fp;
34848 return false;
34850 case FLOAT_EXTEND:
34851 if (mode == DFmode)
34852 *total = rs6000_cost->sfdf_convert;
34853 else
34854 *total = rs6000_cost->fp;
34855 return false;
34857 case UNSPEC:
34858 switch (XINT (x, 1))
34860 case UNSPEC_FRSP:
34861 *total = rs6000_cost->fp;
34862 return true;
34864 default:
34865 break;
34867 break;
34869 case CALL:
34870 case IF_THEN_ELSE:
34871 if (!speed)
34873 *total = COSTS_N_INSNS (1);
34874 return true;
34876 else if (FLOAT_MODE_P (mode) && TARGET_PPC_GFXOPT && TARGET_HARD_FLOAT)
34878 *total = rs6000_cost->fp;
34879 return false;
34881 break;
34883 case NE:
34884 case EQ:
34885 case GTU:
34886 case LTU:
34887 /* Carry bit requires mode == Pmode.
34888 NEG or PLUS already counted so only add one. */
34889 if (mode == Pmode
34890 && (outer_code == NEG || outer_code == PLUS))
34892 *total = COSTS_N_INSNS (1);
34893 return true;
34895 if (outer_code == SET)
34897 if (XEXP (x, 1) == const0_rtx)
34899 if (TARGET_ISEL && !TARGET_MFCRF)
34900 *total = COSTS_N_INSNS (8);
34901 else
34902 *total = COSTS_N_INSNS (2);
34903 return true;
34905 else
34907 *total = COSTS_N_INSNS (3);
34908 return false;
34911 /* FALLTHRU */
34913 case GT:
34914 case LT:
34915 case UNORDERED:
34916 if (outer_code == SET && (XEXP (x, 1) == const0_rtx))
34918 if (TARGET_ISEL && !TARGET_MFCRF)
34919 *total = COSTS_N_INSNS (8);
34920 else
34921 *total = COSTS_N_INSNS (2);
34922 return true;
34924 /* CC COMPARE. */
34925 if (outer_code == COMPARE)
34927 *total = 0;
34928 return true;
34930 break;
34932 default:
34933 break;
34936 return false;
34939 /* Debug form of r6000_rtx_costs that is selected if -mdebug=cost. */
34941 static bool
34942 rs6000_debug_rtx_costs (rtx x, machine_mode mode, int outer_code,
34943 int opno, int *total, bool speed)
34945 bool ret = rs6000_rtx_costs (x, mode, outer_code, opno, total, speed);
34947 fprintf (stderr,
34948 "\nrs6000_rtx_costs, return = %s, mode = %s, outer_code = %s, "
34949 "opno = %d, total = %d, speed = %s, x:\n",
34950 ret ? "complete" : "scan inner",
34951 GET_MODE_NAME (mode),
34952 GET_RTX_NAME (outer_code),
34953 opno,
34954 *total,
34955 speed ? "true" : "false");
34957 debug_rtx (x);
34959 return ret;
34962 static int
34963 rs6000_insn_cost (rtx_insn *insn, bool speed)
34965 if (recog_memoized (insn) < 0)
34966 return 0;
34968 if (!speed)
34969 return get_attr_length (insn);
34971 int cost = get_attr_cost (insn);
34972 if (cost > 0)
34973 return cost;
34975 int n = get_attr_length (insn) / 4;
34976 enum attr_type type = get_attr_type (insn);
34978 switch (type)
34980 case TYPE_LOAD:
34981 case TYPE_FPLOAD:
34982 case TYPE_VECLOAD:
34983 cost = COSTS_N_INSNS (n + 1);
34984 break;
34986 case TYPE_MUL:
34987 switch (get_attr_size (insn))
34989 case SIZE_8:
34990 cost = COSTS_N_INSNS (n - 1) + rs6000_cost->mulsi_const9;
34991 break;
34992 case SIZE_16:
34993 cost = COSTS_N_INSNS (n - 1) + rs6000_cost->mulsi_const;
34994 break;
34995 case SIZE_32:
34996 cost = COSTS_N_INSNS (n - 1) + rs6000_cost->mulsi;
34997 break;
34998 case SIZE_64:
34999 cost = COSTS_N_INSNS (n - 1) + rs6000_cost->muldi;
35000 break;
35001 default:
35002 gcc_unreachable ();
35004 break;
35005 case TYPE_DIV:
35006 switch (get_attr_size (insn))
35008 case SIZE_32:
35009 cost = COSTS_N_INSNS (n - 1) + rs6000_cost->divsi;
35010 break;
35011 case SIZE_64:
35012 cost = COSTS_N_INSNS (n - 1) + rs6000_cost->divdi;
35013 break;
35014 default:
35015 gcc_unreachable ();
35017 break;
35019 case TYPE_FP:
35020 cost = n * rs6000_cost->fp;
35021 break;
35022 case TYPE_DMUL:
35023 cost = n * rs6000_cost->dmul;
35024 break;
35025 case TYPE_SDIV:
35026 cost = n * rs6000_cost->sdiv;
35027 break;
35028 case TYPE_DDIV:
35029 cost = n * rs6000_cost->ddiv;
35030 break;
35032 case TYPE_SYNC:
35033 case TYPE_LOAD_L:
35034 cost = COSTS_N_INSNS (n + 2);
35035 break;
35037 default:
35038 cost = COSTS_N_INSNS (n);
35041 return cost;
35044 /* Debug form of ADDRESS_COST that is selected if -mdebug=cost. */
35046 static int
35047 rs6000_debug_address_cost (rtx x, machine_mode mode,
35048 addr_space_t as, bool speed)
35050 int ret = TARGET_ADDRESS_COST (x, mode, as, speed);
35052 fprintf (stderr, "\nrs6000_address_cost, return = %d, speed = %s, x:\n",
35053 ret, speed ? "true" : "false");
35054 debug_rtx (x);
35056 return ret;
35060 /* A C expression returning the cost of moving data from a register of class
35061 CLASS1 to one of CLASS2. */
35063 static int
35064 rs6000_register_move_cost (machine_mode mode,
35065 reg_class_t from, reg_class_t to)
35067 int ret;
35069 if (TARGET_DEBUG_COST)
35070 dbg_cost_ctrl++;
35072 /* Moves from/to GENERAL_REGS. */
35073 if (reg_classes_intersect_p (to, GENERAL_REGS)
35074 || reg_classes_intersect_p (from, GENERAL_REGS))
35076 reg_class_t rclass = from;
35078 if (! reg_classes_intersect_p (to, GENERAL_REGS))
35079 rclass = to;
35081 if (rclass == FLOAT_REGS || rclass == ALTIVEC_REGS || rclass == VSX_REGS)
35082 ret = (rs6000_memory_move_cost (mode, rclass, false)
35083 + rs6000_memory_move_cost (mode, GENERAL_REGS, false));
35085 /* It's more expensive to move CR_REGS than CR0_REGS because of the
35086 shift. */
35087 else if (rclass == CR_REGS)
35088 ret = 4;
35090 /* For those processors that have slow LR/CTR moves, make them more
35091 expensive than memory in order to bias spills to memory .*/
35092 else if ((rs6000_cpu == PROCESSOR_POWER6
35093 || rs6000_cpu == PROCESSOR_POWER7
35094 || rs6000_cpu == PROCESSOR_POWER8
35095 || rs6000_cpu == PROCESSOR_POWER9)
35096 && reg_classes_intersect_p (rclass, LINK_OR_CTR_REGS))
35097 ret = 6 * hard_regno_nregs (0, mode);
35099 else
35100 /* A move will cost one instruction per GPR moved. */
35101 ret = 2 * hard_regno_nregs (0, mode);
35104 /* If we have VSX, we can easily move between FPR or Altivec registers. */
35105 else if (VECTOR_MEM_VSX_P (mode)
35106 && reg_classes_intersect_p (to, VSX_REGS)
35107 && reg_classes_intersect_p (from, VSX_REGS))
35108 ret = 2 * hard_regno_nregs (FIRST_FPR_REGNO, mode);
35110 /* Moving between two similar registers is just one instruction. */
35111 else if (reg_classes_intersect_p (to, from))
35112 ret = (FLOAT128_2REG_P (mode)) ? 4 : 2;
35114 /* Everything else has to go through GENERAL_REGS. */
35115 else
35116 ret = (rs6000_register_move_cost (mode, GENERAL_REGS, to)
35117 + rs6000_register_move_cost (mode, from, GENERAL_REGS));
35119 if (TARGET_DEBUG_COST)
35121 if (dbg_cost_ctrl == 1)
35122 fprintf (stderr,
35123 "rs6000_register_move_cost:, ret=%d, mode=%s, from=%s, to=%s\n",
35124 ret, GET_MODE_NAME (mode), reg_class_names[from],
35125 reg_class_names[to]);
35126 dbg_cost_ctrl--;
35129 return ret;
35132 /* A C expressions returning the cost of moving data of MODE from a register to
35133 or from memory. */
35135 static int
35136 rs6000_memory_move_cost (machine_mode mode, reg_class_t rclass,
35137 bool in ATTRIBUTE_UNUSED)
35139 int ret;
35141 if (TARGET_DEBUG_COST)
35142 dbg_cost_ctrl++;
35144 if (reg_classes_intersect_p (rclass, GENERAL_REGS))
35145 ret = 4 * hard_regno_nregs (0, mode);
35146 else if ((reg_classes_intersect_p (rclass, FLOAT_REGS)
35147 || reg_classes_intersect_p (rclass, VSX_REGS)))
35148 ret = 4 * hard_regno_nregs (32, mode);
35149 else if (reg_classes_intersect_p (rclass, ALTIVEC_REGS))
35150 ret = 4 * hard_regno_nregs (FIRST_ALTIVEC_REGNO, mode);
35151 else
35152 ret = 4 + rs6000_register_move_cost (mode, rclass, GENERAL_REGS);
35154 if (TARGET_DEBUG_COST)
35156 if (dbg_cost_ctrl == 1)
35157 fprintf (stderr,
35158 "rs6000_memory_move_cost: ret=%d, mode=%s, rclass=%s, in=%d\n",
35159 ret, GET_MODE_NAME (mode), reg_class_names[rclass], in);
35160 dbg_cost_ctrl--;
35163 return ret;
35166 /* Returns a code for a target-specific builtin that implements
35167 reciprocal of the function, or NULL_TREE if not available. */
35169 static tree
35170 rs6000_builtin_reciprocal (tree fndecl)
35172 switch (DECL_FUNCTION_CODE (fndecl))
35174 case VSX_BUILTIN_XVSQRTDP:
35175 if (!RS6000_RECIP_AUTO_RSQRTE_P (V2DFmode))
35176 return NULL_TREE;
35178 return rs6000_builtin_decls[VSX_BUILTIN_RSQRT_2DF];
35180 case VSX_BUILTIN_XVSQRTSP:
35181 if (!RS6000_RECIP_AUTO_RSQRTE_P (V4SFmode))
35182 return NULL_TREE;
35184 return rs6000_builtin_decls[VSX_BUILTIN_RSQRT_4SF];
35186 default:
35187 return NULL_TREE;
35191 /* Load up a constant. If the mode is a vector mode, splat the value across
35192 all of the vector elements. */
35194 static rtx
35195 rs6000_load_constant_and_splat (machine_mode mode, REAL_VALUE_TYPE dconst)
35197 rtx reg;
35199 if (mode == SFmode || mode == DFmode)
35201 rtx d = const_double_from_real_value (dconst, mode);
35202 reg = force_reg (mode, d);
35204 else if (mode == V4SFmode)
35206 rtx d = const_double_from_real_value (dconst, SFmode);
35207 rtvec v = gen_rtvec (4, d, d, d, d);
35208 reg = gen_reg_rtx (mode);
35209 rs6000_expand_vector_init (reg, gen_rtx_PARALLEL (mode, v));
35211 else if (mode == V2DFmode)
35213 rtx d = const_double_from_real_value (dconst, DFmode);
35214 rtvec v = gen_rtvec (2, d, d);
35215 reg = gen_reg_rtx (mode);
35216 rs6000_expand_vector_init (reg, gen_rtx_PARALLEL (mode, v));
35218 else
35219 gcc_unreachable ();
35221 return reg;
35224 /* Generate an FMA instruction. */
35226 static void
35227 rs6000_emit_madd (rtx target, rtx m1, rtx m2, rtx a)
35229 machine_mode mode = GET_MODE (target);
35230 rtx dst;
35232 dst = expand_ternary_op (mode, fma_optab, m1, m2, a, target, 0);
35233 gcc_assert (dst != NULL);
35235 if (dst != target)
35236 emit_move_insn (target, dst);
35239 /* Generate a FNMSUB instruction: dst = -fma(m1, m2, -a). */
35241 static void
35242 rs6000_emit_nmsub (rtx dst, rtx m1, rtx m2, rtx a)
35244 machine_mode mode = GET_MODE (dst);
35245 rtx r;
35247 /* This is a tad more complicated, since the fnma_optab is for
35248 a different expression: fma(-m1, m2, a), which is the same
35249 thing except in the case of signed zeros.
35251 Fortunately we know that if FMA is supported that FNMSUB is
35252 also supported in the ISA. Just expand it directly. */
35254 gcc_assert (optab_handler (fma_optab, mode) != CODE_FOR_nothing);
35256 r = gen_rtx_NEG (mode, a);
35257 r = gen_rtx_FMA (mode, m1, m2, r);
35258 r = gen_rtx_NEG (mode, r);
35259 emit_insn (gen_rtx_SET (dst, r));
35262 /* Newton-Raphson approximation of floating point divide DST = N/D. If NOTE_P,
35263 add a reg_note saying that this was a division. Support both scalar and
35264 vector divide. Assumes no trapping math and finite arguments. */
35266 void
35267 rs6000_emit_swdiv (rtx dst, rtx n, rtx d, bool note_p)
35269 machine_mode mode = GET_MODE (dst);
35270 rtx one, x0, e0, x1, xprev, eprev, xnext, enext, u, v;
35271 int i;
35273 /* Low precision estimates guarantee 5 bits of accuracy. High
35274 precision estimates guarantee 14 bits of accuracy. SFmode
35275 requires 23 bits of accuracy. DFmode requires 52 bits of
35276 accuracy. Each pass at least doubles the accuracy, leading
35277 to the following. */
35278 int passes = (TARGET_RECIP_PRECISION) ? 1 : 3;
35279 if (mode == DFmode || mode == V2DFmode)
35280 passes++;
35282 enum insn_code code = optab_handler (smul_optab, mode);
35283 insn_gen_fn gen_mul = GEN_FCN (code);
35285 gcc_assert (code != CODE_FOR_nothing);
35287 one = rs6000_load_constant_and_splat (mode, dconst1);
35289 /* x0 = 1./d estimate */
35290 x0 = gen_reg_rtx (mode);
35291 emit_insn (gen_rtx_SET (x0, gen_rtx_UNSPEC (mode, gen_rtvec (1, d),
35292 UNSPEC_FRES)));
35294 /* Each iteration but the last calculates x_(i+1) = x_i * (2 - d * x_i). */
35295 if (passes > 1) {
35297 /* e0 = 1. - d * x0 */
35298 e0 = gen_reg_rtx (mode);
35299 rs6000_emit_nmsub (e0, d, x0, one);
35301 /* x1 = x0 + e0 * x0 */
35302 x1 = gen_reg_rtx (mode);
35303 rs6000_emit_madd (x1, e0, x0, x0);
35305 for (i = 0, xprev = x1, eprev = e0; i < passes - 2;
35306 ++i, xprev = xnext, eprev = enext) {
35308 /* enext = eprev * eprev */
35309 enext = gen_reg_rtx (mode);
35310 emit_insn (gen_mul (enext, eprev, eprev));
35312 /* xnext = xprev + enext * xprev */
35313 xnext = gen_reg_rtx (mode);
35314 rs6000_emit_madd (xnext, enext, xprev, xprev);
35317 } else
35318 xprev = x0;
35320 /* The last iteration calculates x_(i+1) = n * x_i * (2 - d * x_i). */
35322 /* u = n * xprev */
35323 u = gen_reg_rtx (mode);
35324 emit_insn (gen_mul (u, n, xprev));
35326 /* v = n - (d * u) */
35327 v = gen_reg_rtx (mode);
35328 rs6000_emit_nmsub (v, d, u, n);
35330 /* dst = (v * xprev) + u */
35331 rs6000_emit_madd (dst, v, xprev, u);
35333 if (note_p)
35334 add_reg_note (get_last_insn (), REG_EQUAL, gen_rtx_DIV (mode, n, d));
35337 /* Goldschmidt's Algorithm for single/double-precision floating point
35338 sqrt and rsqrt. Assumes no trapping math and finite arguments. */
35340 void
35341 rs6000_emit_swsqrt (rtx dst, rtx src, bool recip)
35343 machine_mode mode = GET_MODE (src);
35344 rtx e = gen_reg_rtx (mode);
35345 rtx g = gen_reg_rtx (mode);
35346 rtx h = gen_reg_rtx (mode);
35348 /* Low precision estimates guarantee 5 bits of accuracy. High
35349 precision estimates guarantee 14 bits of accuracy. SFmode
35350 requires 23 bits of accuracy. DFmode requires 52 bits of
35351 accuracy. Each pass at least doubles the accuracy, leading
35352 to the following. */
35353 int passes = (TARGET_RECIP_PRECISION) ? 1 : 3;
35354 if (mode == DFmode || mode == V2DFmode)
35355 passes++;
35357 int i;
35358 rtx mhalf;
35359 enum insn_code code = optab_handler (smul_optab, mode);
35360 insn_gen_fn gen_mul = GEN_FCN (code);
35362 gcc_assert (code != CODE_FOR_nothing);
35364 mhalf = rs6000_load_constant_and_splat (mode, dconsthalf);
35366 /* e = rsqrt estimate */
35367 emit_insn (gen_rtx_SET (e, gen_rtx_UNSPEC (mode, gen_rtvec (1, src),
35368 UNSPEC_RSQRT)));
35370 /* If (src == 0.0) filter infinity to prevent NaN for sqrt(0.0). */
35371 if (!recip)
35373 rtx zero = force_reg (mode, CONST0_RTX (mode));
35375 if (mode == SFmode)
35377 rtx target = emit_conditional_move (e, GT, src, zero, mode,
35378 e, zero, mode, 0);
35379 if (target != e)
35380 emit_move_insn (e, target);
35382 else
35384 rtx cond = gen_rtx_GT (VOIDmode, e, zero);
35385 rs6000_emit_vector_cond_expr (e, e, zero, cond, src, zero);
35389 /* g = sqrt estimate. */
35390 emit_insn (gen_mul (g, e, src));
35391 /* h = 1/(2*sqrt) estimate. */
35392 emit_insn (gen_mul (h, e, mhalf));
35394 if (recip)
35396 if (passes == 1)
35398 rtx t = gen_reg_rtx (mode);
35399 rs6000_emit_nmsub (t, g, h, mhalf);
35400 /* Apply correction directly to 1/rsqrt estimate. */
35401 rs6000_emit_madd (dst, e, t, e);
35403 else
35405 for (i = 0; i < passes; i++)
35407 rtx t1 = gen_reg_rtx (mode);
35408 rtx g1 = gen_reg_rtx (mode);
35409 rtx h1 = gen_reg_rtx (mode);
35411 rs6000_emit_nmsub (t1, g, h, mhalf);
35412 rs6000_emit_madd (g1, g, t1, g);
35413 rs6000_emit_madd (h1, h, t1, h);
35415 g = g1;
35416 h = h1;
35418 /* Multiply by 2 for 1/rsqrt. */
35419 emit_insn (gen_add3_insn (dst, h, h));
35422 else
35424 rtx t = gen_reg_rtx (mode);
35425 rs6000_emit_nmsub (t, g, h, mhalf);
35426 rs6000_emit_madd (dst, g, t, g);
35429 return;
35432 /* Emit popcount intrinsic on TARGET_POPCNTB (Power5) and TARGET_POPCNTD
35433 (Power7) targets. DST is the target, and SRC is the argument operand. */
35435 void
35436 rs6000_emit_popcount (rtx dst, rtx src)
35438 machine_mode mode = GET_MODE (dst);
35439 rtx tmp1, tmp2;
35441 /* Use the PPC ISA 2.06 popcnt{w,d} instruction if we can. */
35442 if (TARGET_POPCNTD)
35444 if (mode == SImode)
35445 emit_insn (gen_popcntdsi2 (dst, src));
35446 else
35447 emit_insn (gen_popcntddi2 (dst, src));
35448 return;
35451 tmp1 = gen_reg_rtx (mode);
35453 if (mode == SImode)
35455 emit_insn (gen_popcntbsi2 (tmp1, src));
35456 tmp2 = expand_mult (SImode, tmp1, GEN_INT (0x01010101),
35457 NULL_RTX, 0);
35458 tmp2 = force_reg (SImode, tmp2);
35459 emit_insn (gen_lshrsi3 (dst, tmp2, GEN_INT (24)));
35461 else
35463 emit_insn (gen_popcntbdi2 (tmp1, src));
35464 tmp2 = expand_mult (DImode, tmp1,
35465 GEN_INT ((HOST_WIDE_INT)
35466 0x01010101 << 32 | 0x01010101),
35467 NULL_RTX, 0);
35468 tmp2 = force_reg (DImode, tmp2);
35469 emit_insn (gen_lshrdi3 (dst, tmp2, GEN_INT (56)));
35474 /* Emit parity intrinsic on TARGET_POPCNTB targets. DST is the
35475 target, and SRC is the argument operand. */
35477 void
35478 rs6000_emit_parity (rtx dst, rtx src)
35480 machine_mode mode = GET_MODE (dst);
35481 rtx tmp;
35483 tmp = gen_reg_rtx (mode);
35485 /* Use the PPC ISA 2.05 prtyw/prtyd instruction if we can. */
35486 if (TARGET_CMPB)
35488 if (mode == SImode)
35490 emit_insn (gen_popcntbsi2 (tmp, src));
35491 emit_insn (gen_paritysi2_cmpb (dst, tmp));
35493 else
35495 emit_insn (gen_popcntbdi2 (tmp, src));
35496 emit_insn (gen_paritydi2_cmpb (dst, tmp));
35498 return;
35501 if (mode == SImode)
35503 /* Is mult+shift >= shift+xor+shift+xor? */
35504 if (rs6000_cost->mulsi_const >= COSTS_N_INSNS (3))
35506 rtx tmp1, tmp2, tmp3, tmp4;
35508 tmp1 = gen_reg_rtx (SImode);
35509 emit_insn (gen_popcntbsi2 (tmp1, src));
35511 tmp2 = gen_reg_rtx (SImode);
35512 emit_insn (gen_lshrsi3 (tmp2, tmp1, GEN_INT (16)));
35513 tmp3 = gen_reg_rtx (SImode);
35514 emit_insn (gen_xorsi3 (tmp3, tmp1, tmp2));
35516 tmp4 = gen_reg_rtx (SImode);
35517 emit_insn (gen_lshrsi3 (tmp4, tmp3, GEN_INT (8)));
35518 emit_insn (gen_xorsi3 (tmp, tmp3, tmp4));
35520 else
35521 rs6000_emit_popcount (tmp, src);
35522 emit_insn (gen_andsi3 (dst, tmp, const1_rtx));
35524 else
35526 /* Is mult+shift >= shift+xor+shift+xor+shift+xor? */
35527 if (rs6000_cost->muldi >= COSTS_N_INSNS (5))
35529 rtx tmp1, tmp2, tmp3, tmp4, tmp5, tmp6;
35531 tmp1 = gen_reg_rtx (DImode);
35532 emit_insn (gen_popcntbdi2 (tmp1, src));
35534 tmp2 = gen_reg_rtx (DImode);
35535 emit_insn (gen_lshrdi3 (tmp2, tmp1, GEN_INT (32)));
35536 tmp3 = gen_reg_rtx (DImode);
35537 emit_insn (gen_xordi3 (tmp3, tmp1, tmp2));
35539 tmp4 = gen_reg_rtx (DImode);
35540 emit_insn (gen_lshrdi3 (tmp4, tmp3, GEN_INT (16)));
35541 tmp5 = gen_reg_rtx (DImode);
35542 emit_insn (gen_xordi3 (tmp5, tmp3, tmp4));
35544 tmp6 = gen_reg_rtx (DImode);
35545 emit_insn (gen_lshrdi3 (tmp6, tmp5, GEN_INT (8)));
35546 emit_insn (gen_xordi3 (tmp, tmp5, tmp6));
35548 else
35549 rs6000_emit_popcount (tmp, src);
35550 emit_insn (gen_anddi3 (dst, tmp, const1_rtx));
35554 /* Expand an Altivec constant permutation for little endian mode.
35555 There are two issues: First, the two input operands must be
35556 swapped so that together they form a double-wide array in LE
35557 order. Second, the vperm instruction has surprising behavior
35558 in LE mode: it interprets the elements of the source vectors
35559 in BE mode ("left to right") and interprets the elements of
35560 the destination vector in LE mode ("right to left"). To
35561 correct for this, we must subtract each element of the permute
35562 control vector from 31.
35564 For example, suppose we want to concatenate vr10 = {0, 1, 2, 3}
35565 with vr11 = {4, 5, 6, 7} and extract {0, 2, 4, 6} using a vperm.
35566 We place {0,1,2,3,8,9,10,11,16,17,18,19,24,25,26,27} in vr12 to
35567 serve as the permute control vector. Then, in BE mode,
35569 vperm 9,10,11,12
35571 places the desired result in vr9. However, in LE mode the
35572 vector contents will be
35574 vr10 = 00000003 00000002 00000001 00000000
35575 vr11 = 00000007 00000006 00000005 00000004
35577 The result of the vperm using the same permute control vector is
35579 vr9 = 05000000 07000000 01000000 03000000
35581 That is, the leftmost 4 bytes of vr10 are interpreted as the
35582 source for the rightmost 4 bytes of vr9, and so on.
35584 If we change the permute control vector to
35586 vr12 = {31,20,29,28,23,22,21,20,15,14,13,12,7,6,5,4}
35588 and issue
35590 vperm 9,11,10,12
35592 we get the desired
35594 vr9 = 00000006 00000004 00000002 00000000. */
35596 void
35597 altivec_expand_vec_perm_const_le (rtx operands[4])
35599 unsigned int i;
35600 rtx perm[16];
35601 rtx constv, unspec;
35602 rtx target = operands[0];
35603 rtx op0 = operands[1];
35604 rtx op1 = operands[2];
35605 rtx sel = operands[3];
35607 /* Unpack and adjust the constant selector. */
35608 for (i = 0; i < 16; ++i)
35610 rtx e = XVECEXP (sel, 0, i);
35611 unsigned int elt = 31 - (INTVAL (e) & 31);
35612 perm[i] = GEN_INT (elt);
35615 /* Expand to a permute, swapping the inputs and using the
35616 adjusted selector. */
35617 if (!REG_P (op0))
35618 op0 = force_reg (V16QImode, op0);
35619 if (!REG_P (op1))
35620 op1 = force_reg (V16QImode, op1);
35622 constv = gen_rtx_CONST_VECTOR (V16QImode, gen_rtvec_v (16, perm));
35623 constv = force_reg (V16QImode, constv);
35624 unspec = gen_rtx_UNSPEC (V16QImode, gen_rtvec (3, op1, op0, constv),
35625 UNSPEC_VPERM);
35626 if (!REG_P (target))
35628 rtx tmp = gen_reg_rtx (V16QImode);
35629 emit_move_insn (tmp, unspec);
35630 unspec = tmp;
35633 emit_move_insn (target, unspec);
35636 /* Similarly to altivec_expand_vec_perm_const_le, we must adjust the
35637 permute control vector. But here it's not a constant, so we must
35638 generate a vector NAND or NOR to do the adjustment. */
35640 void
35641 altivec_expand_vec_perm_le (rtx operands[4])
35643 rtx notx, iorx, unspec;
35644 rtx target = operands[0];
35645 rtx op0 = operands[1];
35646 rtx op1 = operands[2];
35647 rtx sel = operands[3];
35648 rtx tmp = target;
35649 rtx norreg = gen_reg_rtx (V16QImode);
35650 machine_mode mode = GET_MODE (target);
35652 /* Get everything in regs so the pattern matches. */
35653 if (!REG_P (op0))
35654 op0 = force_reg (mode, op0);
35655 if (!REG_P (op1))
35656 op1 = force_reg (mode, op1);
35657 if (!REG_P (sel))
35658 sel = force_reg (V16QImode, sel);
35659 if (!REG_P (target))
35660 tmp = gen_reg_rtx (mode);
35662 if (TARGET_P9_VECTOR)
35664 unspec = gen_rtx_UNSPEC (mode, gen_rtvec (3, op0, op1, sel),
35665 UNSPEC_VPERMR);
35667 else
35669 /* Invert the selector with a VNAND if available, else a VNOR.
35670 The VNAND is preferred for future fusion opportunities. */
35671 notx = gen_rtx_NOT (V16QImode, sel);
35672 iorx = (TARGET_P8_VECTOR
35673 ? gen_rtx_IOR (V16QImode, notx, notx)
35674 : gen_rtx_AND (V16QImode, notx, notx));
35675 emit_insn (gen_rtx_SET (norreg, iorx));
35677 /* Permute with operands reversed and adjusted selector. */
35678 unspec = gen_rtx_UNSPEC (mode, gen_rtvec (3, op1, op0, norreg),
35679 UNSPEC_VPERM);
35682 /* Copy into target, possibly by way of a register. */
35683 if (!REG_P (target))
35685 emit_move_insn (tmp, unspec);
35686 unspec = tmp;
35689 emit_move_insn (target, unspec);
35692 /* Expand an Altivec constant permutation. Return true if we match
35693 an efficient implementation; false to fall back to VPERM. */
35695 bool
35696 altivec_expand_vec_perm_const (rtx operands[4])
35698 struct altivec_perm_insn {
35699 HOST_WIDE_INT mask;
35700 enum insn_code impl;
35701 unsigned char perm[16];
35703 static const struct altivec_perm_insn patterns[] = {
35704 { OPTION_MASK_ALTIVEC, CODE_FOR_altivec_vpkuhum_direct,
35705 { 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 21, 23, 25, 27, 29, 31 } },
35706 { OPTION_MASK_ALTIVEC, CODE_FOR_altivec_vpkuwum_direct,
35707 { 2, 3, 6, 7, 10, 11, 14, 15, 18, 19, 22, 23, 26, 27, 30, 31 } },
35708 { OPTION_MASK_ALTIVEC,
35709 (BYTES_BIG_ENDIAN ? CODE_FOR_altivec_vmrghb_direct
35710 : CODE_FOR_altivec_vmrglb_direct),
35711 { 0, 16, 1, 17, 2, 18, 3, 19, 4, 20, 5, 21, 6, 22, 7, 23 } },
35712 { OPTION_MASK_ALTIVEC,
35713 (BYTES_BIG_ENDIAN ? CODE_FOR_altivec_vmrghh_direct
35714 : CODE_FOR_altivec_vmrglh_direct),
35715 { 0, 1, 16, 17, 2, 3, 18, 19, 4, 5, 20, 21, 6, 7, 22, 23 } },
35716 { OPTION_MASK_ALTIVEC,
35717 (BYTES_BIG_ENDIAN ? CODE_FOR_altivec_vmrghw_direct
35718 : CODE_FOR_altivec_vmrglw_direct),
35719 { 0, 1, 2, 3, 16, 17, 18, 19, 4, 5, 6, 7, 20, 21, 22, 23 } },
35720 { OPTION_MASK_ALTIVEC,
35721 (BYTES_BIG_ENDIAN ? CODE_FOR_altivec_vmrglb_direct
35722 : CODE_FOR_altivec_vmrghb_direct),
35723 { 8, 24, 9, 25, 10, 26, 11, 27, 12, 28, 13, 29, 14, 30, 15, 31 } },
35724 { OPTION_MASK_ALTIVEC,
35725 (BYTES_BIG_ENDIAN ? CODE_FOR_altivec_vmrglh_direct
35726 : CODE_FOR_altivec_vmrghh_direct),
35727 { 8, 9, 24, 25, 10, 11, 26, 27, 12, 13, 28, 29, 14, 15, 30, 31 } },
35728 { OPTION_MASK_ALTIVEC,
35729 (BYTES_BIG_ENDIAN ? CODE_FOR_altivec_vmrglw_direct
35730 : CODE_FOR_altivec_vmrghw_direct),
35731 { 8, 9, 10, 11, 24, 25, 26, 27, 12, 13, 14, 15, 28, 29, 30, 31 } },
35732 { OPTION_MASK_P8_VECTOR,
35733 (BYTES_BIG_ENDIAN ? CODE_FOR_p8_vmrgew_v4sf_direct
35734 : CODE_FOR_p8_vmrgow_v4sf_direct),
35735 { 0, 1, 2, 3, 16, 17, 18, 19, 8, 9, 10, 11, 24, 25, 26, 27 } },
35736 { OPTION_MASK_P8_VECTOR,
35737 (BYTES_BIG_ENDIAN ? CODE_FOR_p8_vmrgow_v4sf_direct
35738 : CODE_FOR_p8_vmrgew_v4sf_direct),
35739 { 4, 5, 6, 7, 20, 21, 22, 23, 12, 13, 14, 15, 28, 29, 30, 31 } }
35742 unsigned int i, j, elt, which;
35743 unsigned char perm[16];
35744 rtx target, op0, op1, sel, x;
35745 bool one_vec;
35747 target = operands[0];
35748 op0 = operands[1];
35749 op1 = operands[2];
35750 sel = operands[3];
35752 /* Unpack the constant selector. */
35753 for (i = which = 0; i < 16; ++i)
35755 rtx e = XVECEXP (sel, 0, i);
35756 elt = INTVAL (e) & 31;
35757 which |= (elt < 16 ? 1 : 2);
35758 perm[i] = elt;
35761 /* Simplify the constant selector based on operands. */
35762 switch (which)
35764 default:
35765 gcc_unreachable ();
35767 case 3:
35768 one_vec = false;
35769 if (!rtx_equal_p (op0, op1))
35770 break;
35771 /* FALLTHRU */
35773 case 2:
35774 for (i = 0; i < 16; ++i)
35775 perm[i] &= 15;
35776 op0 = op1;
35777 one_vec = true;
35778 break;
35780 case 1:
35781 op1 = op0;
35782 one_vec = true;
35783 break;
35786 /* Look for splat patterns. */
35787 if (one_vec)
35789 elt = perm[0];
35791 for (i = 0; i < 16; ++i)
35792 if (perm[i] != elt)
35793 break;
35794 if (i == 16)
35796 if (!BYTES_BIG_ENDIAN)
35797 elt = 15 - elt;
35798 emit_insn (gen_altivec_vspltb_direct (target, op0, GEN_INT (elt)));
35799 return true;
35802 if (elt % 2 == 0)
35804 for (i = 0; i < 16; i += 2)
35805 if (perm[i] != elt || perm[i + 1] != elt + 1)
35806 break;
35807 if (i == 16)
35809 int field = BYTES_BIG_ENDIAN ? elt / 2 : 7 - elt / 2;
35810 x = gen_reg_rtx (V8HImode);
35811 emit_insn (gen_altivec_vsplth_direct (x, gen_lowpart (V8HImode, op0),
35812 GEN_INT (field)));
35813 emit_move_insn (target, gen_lowpart (V16QImode, x));
35814 return true;
35818 if (elt % 4 == 0)
35820 for (i = 0; i < 16; i += 4)
35821 if (perm[i] != elt
35822 || perm[i + 1] != elt + 1
35823 || perm[i + 2] != elt + 2
35824 || perm[i + 3] != elt + 3)
35825 break;
35826 if (i == 16)
35828 int field = BYTES_BIG_ENDIAN ? elt / 4 : 3 - elt / 4;
35829 x = gen_reg_rtx (V4SImode);
35830 emit_insn (gen_altivec_vspltw_direct (x, gen_lowpart (V4SImode, op0),
35831 GEN_INT (field)));
35832 emit_move_insn (target, gen_lowpart (V16QImode, x));
35833 return true;
35838 /* Look for merge and pack patterns. */
35839 for (j = 0; j < ARRAY_SIZE (patterns); ++j)
35841 bool swapped;
35843 if ((patterns[j].mask & rs6000_isa_flags) == 0)
35844 continue;
35846 elt = patterns[j].perm[0];
35847 if (perm[0] == elt)
35848 swapped = false;
35849 else if (perm[0] == elt + 16)
35850 swapped = true;
35851 else
35852 continue;
35853 for (i = 1; i < 16; ++i)
35855 elt = patterns[j].perm[i];
35856 if (swapped)
35857 elt = (elt >= 16 ? elt - 16 : elt + 16);
35858 else if (one_vec && elt >= 16)
35859 elt -= 16;
35860 if (perm[i] != elt)
35861 break;
35863 if (i == 16)
35865 enum insn_code icode = patterns[j].impl;
35866 machine_mode omode = insn_data[icode].operand[0].mode;
35867 machine_mode imode = insn_data[icode].operand[1].mode;
35869 /* For little-endian, don't use vpkuwum and vpkuhum if the
35870 underlying vector type is not V4SI and V8HI, respectively.
35871 For example, using vpkuwum with a V8HI picks up the even
35872 halfwords (BE numbering) when the even halfwords (LE
35873 numbering) are what we need. */
35874 if (!BYTES_BIG_ENDIAN
35875 && icode == CODE_FOR_altivec_vpkuwum_direct
35876 && ((GET_CODE (op0) == REG
35877 && GET_MODE (op0) != V4SImode)
35878 || (GET_CODE (op0) == SUBREG
35879 && GET_MODE (XEXP (op0, 0)) != V4SImode)))
35880 continue;
35881 if (!BYTES_BIG_ENDIAN
35882 && icode == CODE_FOR_altivec_vpkuhum_direct
35883 && ((GET_CODE (op0) == REG
35884 && GET_MODE (op0) != V8HImode)
35885 || (GET_CODE (op0) == SUBREG
35886 && GET_MODE (XEXP (op0, 0)) != V8HImode)))
35887 continue;
35889 /* For little-endian, the two input operands must be swapped
35890 (or swapped back) to ensure proper right-to-left numbering
35891 from 0 to 2N-1. */
35892 if (swapped ^ !BYTES_BIG_ENDIAN)
35893 std::swap (op0, op1);
35894 if (imode != V16QImode)
35896 op0 = gen_lowpart (imode, op0);
35897 op1 = gen_lowpart (imode, op1);
35899 if (omode == V16QImode)
35900 x = target;
35901 else
35902 x = gen_reg_rtx (omode);
35903 emit_insn (GEN_FCN (icode) (x, op0, op1));
35904 if (omode != V16QImode)
35905 emit_move_insn (target, gen_lowpart (V16QImode, x));
35906 return true;
35910 if (!BYTES_BIG_ENDIAN)
35912 altivec_expand_vec_perm_const_le (operands);
35913 return true;
35916 return false;
35919 /* Expand a Paired Single or VSX Permute Doubleword constant permutation.
35920 Return true if we match an efficient implementation. */
35922 static bool
35923 rs6000_expand_vec_perm_const_1 (rtx target, rtx op0, rtx op1,
35924 unsigned char perm0, unsigned char perm1)
35926 rtx x;
35928 /* If both selectors come from the same operand, fold to single op. */
35929 if ((perm0 & 2) == (perm1 & 2))
35931 if (perm0 & 2)
35932 op0 = op1;
35933 else
35934 op1 = op0;
35936 /* If both operands are equal, fold to simpler permutation. */
35937 if (rtx_equal_p (op0, op1))
35939 perm0 = perm0 & 1;
35940 perm1 = (perm1 & 1) + 2;
35942 /* If the first selector comes from the second operand, swap. */
35943 else if (perm0 & 2)
35945 if (perm1 & 2)
35946 return false;
35947 perm0 -= 2;
35948 perm1 += 2;
35949 std::swap (op0, op1);
35951 /* If the second selector does not come from the second operand, fail. */
35952 else if ((perm1 & 2) == 0)
35953 return false;
35955 /* Success! */
35956 if (target != NULL)
35958 machine_mode vmode, dmode;
35959 rtvec v;
35961 vmode = GET_MODE (target);
35962 gcc_assert (GET_MODE_NUNITS (vmode) == 2);
35963 dmode = mode_for_vector (GET_MODE_INNER (vmode), 4).require ();
35964 x = gen_rtx_VEC_CONCAT (dmode, op0, op1);
35965 v = gen_rtvec (2, GEN_INT (perm0), GEN_INT (perm1));
35966 x = gen_rtx_VEC_SELECT (vmode, x, gen_rtx_PARALLEL (VOIDmode, v));
35967 emit_insn (gen_rtx_SET (target, x));
35969 return true;
35972 bool
35973 rs6000_expand_vec_perm_const (rtx operands[4])
35975 rtx target, op0, op1, sel;
35976 unsigned char perm0, perm1;
35978 target = operands[0];
35979 op0 = operands[1];
35980 op1 = operands[2];
35981 sel = operands[3];
35983 /* Unpack the constant selector. */
35984 perm0 = INTVAL (XVECEXP (sel, 0, 0)) & 3;
35985 perm1 = INTVAL (XVECEXP (sel, 0, 1)) & 3;
35987 return rs6000_expand_vec_perm_const_1 (target, op0, op1, perm0, perm1);
35990 /* Test whether a constant permutation is supported. */
35992 static bool
35993 rs6000_vectorize_vec_perm_const_ok (machine_mode vmode, vec_perm_indices sel)
35995 /* AltiVec (and thus VSX) can handle arbitrary permutations. */
35996 if (TARGET_ALTIVEC)
35997 return true;
35999 /* Check for ps_merge* or evmerge* insns. */
36000 if (TARGET_PAIRED_FLOAT && vmode == V2SFmode)
36002 rtx op0 = gen_raw_REG (vmode, LAST_VIRTUAL_REGISTER + 1);
36003 rtx op1 = gen_raw_REG (vmode, LAST_VIRTUAL_REGISTER + 2);
36004 return rs6000_expand_vec_perm_const_1 (NULL, op0, op1, sel[0], sel[1]);
36007 return false;
36010 /* A subroutine for rs6000_expand_extract_even & rs6000_expand_interleave. */
36012 static void
36013 rs6000_do_expand_vec_perm (rtx target, rtx op0, rtx op1,
36014 machine_mode vmode, unsigned nelt, rtx perm[])
36016 machine_mode imode;
36017 rtx x;
36019 imode = vmode;
36020 if (GET_MODE_CLASS (vmode) != MODE_VECTOR_INT)
36021 imode = mode_for_int_vector (vmode).require ();
36023 x = gen_rtx_CONST_VECTOR (imode, gen_rtvec_v (nelt, perm));
36024 x = expand_vec_perm (vmode, op0, op1, x, target);
36025 if (x != target)
36026 emit_move_insn (target, x);
36029 /* Expand an extract even operation. */
36031 void
36032 rs6000_expand_extract_even (rtx target, rtx op0, rtx op1)
36034 machine_mode vmode = GET_MODE (target);
36035 unsigned i, nelt = GET_MODE_NUNITS (vmode);
36036 rtx perm[16];
36038 for (i = 0; i < nelt; i++)
36039 perm[i] = GEN_INT (i * 2);
36041 rs6000_do_expand_vec_perm (target, op0, op1, vmode, nelt, perm);
36044 /* Expand a vector interleave operation. */
36046 void
36047 rs6000_expand_interleave (rtx target, rtx op0, rtx op1, bool highp)
36049 machine_mode vmode = GET_MODE (target);
36050 unsigned i, high, nelt = GET_MODE_NUNITS (vmode);
36051 rtx perm[16];
36053 high = (highp ? 0 : nelt / 2);
36054 for (i = 0; i < nelt / 2; i++)
36056 perm[i * 2] = GEN_INT (i + high);
36057 perm[i * 2 + 1] = GEN_INT (i + nelt + high);
36060 rs6000_do_expand_vec_perm (target, op0, op1, vmode, nelt, perm);
36063 /* Scale a V2DF vector SRC by two to the SCALE and place in TGT. */
36064 void
36065 rs6000_scale_v2df (rtx tgt, rtx src, int scale)
36067 HOST_WIDE_INT hwi_scale (scale);
36068 REAL_VALUE_TYPE r_pow;
36069 rtvec v = rtvec_alloc (2);
36070 rtx elt;
36071 rtx scale_vec = gen_reg_rtx (V2DFmode);
36072 (void)real_powi (&r_pow, DFmode, &dconst2, hwi_scale);
36073 elt = const_double_from_real_value (r_pow, DFmode);
36074 RTVEC_ELT (v, 0) = elt;
36075 RTVEC_ELT (v, 1) = elt;
36076 rs6000_expand_vector_init (scale_vec, gen_rtx_PARALLEL (V2DFmode, v));
36077 emit_insn (gen_mulv2df3 (tgt, src, scale_vec));
36080 /* Return an RTX representing where to find the function value of a
36081 function returning MODE. */
36082 static rtx
36083 rs6000_complex_function_value (machine_mode mode)
36085 unsigned int regno;
36086 rtx r1, r2;
36087 machine_mode inner = GET_MODE_INNER (mode);
36088 unsigned int inner_bytes = GET_MODE_UNIT_SIZE (mode);
36090 if (TARGET_FLOAT128_TYPE
36091 && (mode == KCmode
36092 || (mode == TCmode && TARGET_IEEEQUAD)))
36093 regno = ALTIVEC_ARG_RETURN;
36095 else if (FLOAT_MODE_P (mode) && TARGET_HARD_FLOAT)
36096 regno = FP_ARG_RETURN;
36098 else
36100 regno = GP_ARG_RETURN;
36102 /* 32-bit is OK since it'll go in r3/r4. */
36103 if (TARGET_32BIT && inner_bytes >= 4)
36104 return gen_rtx_REG (mode, regno);
36107 if (inner_bytes >= 8)
36108 return gen_rtx_REG (mode, regno);
36110 r1 = gen_rtx_EXPR_LIST (inner, gen_rtx_REG (inner, regno),
36111 const0_rtx);
36112 r2 = gen_rtx_EXPR_LIST (inner, gen_rtx_REG (inner, regno + 1),
36113 GEN_INT (inner_bytes));
36114 return gen_rtx_PARALLEL (mode, gen_rtvec (2, r1, r2));
36117 /* Return an rtx describing a return value of MODE as a PARALLEL
36118 in N_ELTS registers, each of mode ELT_MODE, starting at REGNO,
36119 stride REG_STRIDE. */
36121 static rtx
36122 rs6000_parallel_return (machine_mode mode,
36123 int n_elts, machine_mode elt_mode,
36124 unsigned int regno, unsigned int reg_stride)
36126 rtx par = gen_rtx_PARALLEL (mode, rtvec_alloc (n_elts));
36128 int i;
36129 for (i = 0; i < n_elts; i++)
36131 rtx r = gen_rtx_REG (elt_mode, regno);
36132 rtx off = GEN_INT (i * GET_MODE_SIZE (elt_mode));
36133 XVECEXP (par, 0, i) = gen_rtx_EXPR_LIST (VOIDmode, r, off);
36134 regno += reg_stride;
36137 return par;
36140 /* Target hook for TARGET_FUNCTION_VALUE.
36142 An integer value is in r3 and a floating-point value is in fp1,
36143 unless -msoft-float. */
36145 static rtx
36146 rs6000_function_value (const_tree valtype,
36147 const_tree fn_decl_or_type ATTRIBUTE_UNUSED,
36148 bool outgoing ATTRIBUTE_UNUSED)
36150 machine_mode mode;
36151 unsigned int regno;
36152 machine_mode elt_mode;
36153 int n_elts;
36155 /* Special handling for structs in darwin64. */
36156 if (TARGET_MACHO
36157 && rs6000_darwin64_struct_check_p (TYPE_MODE (valtype), valtype))
36159 CUMULATIVE_ARGS valcum;
36160 rtx valret;
36162 valcum.words = 0;
36163 valcum.fregno = FP_ARG_MIN_REG;
36164 valcum.vregno = ALTIVEC_ARG_MIN_REG;
36165 /* Do a trial code generation as if this were going to be passed as
36166 an argument; if any part goes in memory, we return NULL. */
36167 valret = rs6000_darwin64_record_arg (&valcum, valtype, true, /* retval= */ true);
36168 if (valret)
36169 return valret;
36170 /* Otherwise fall through to standard ABI rules. */
36173 mode = TYPE_MODE (valtype);
36175 /* The ELFv2 ABI returns homogeneous VFP aggregates in registers. */
36176 if (rs6000_discover_homogeneous_aggregate (mode, valtype, &elt_mode, &n_elts))
36178 int first_reg, n_regs;
36180 if (SCALAR_FLOAT_MODE_NOT_VECTOR_P (elt_mode))
36182 /* _Decimal128 must use even/odd register pairs. */
36183 first_reg = (elt_mode == TDmode) ? FP_ARG_RETURN + 1 : FP_ARG_RETURN;
36184 n_regs = (GET_MODE_SIZE (elt_mode) + 7) >> 3;
36186 else
36188 first_reg = ALTIVEC_ARG_RETURN;
36189 n_regs = 1;
36192 return rs6000_parallel_return (mode, n_elts, elt_mode, first_reg, n_regs);
36195 /* Some return value types need be split in -mpowerpc64, 32bit ABI. */
36196 if (TARGET_32BIT && TARGET_POWERPC64)
36197 switch (mode)
36199 default:
36200 break;
36201 case E_DImode:
36202 case E_SCmode:
36203 case E_DCmode:
36204 case E_TCmode:
36205 int count = GET_MODE_SIZE (mode) / 4;
36206 return rs6000_parallel_return (mode, count, SImode, GP_ARG_RETURN, 1);
36209 if ((INTEGRAL_TYPE_P (valtype)
36210 && GET_MODE_BITSIZE (mode) < (TARGET_32BIT ? 32 : 64))
36211 || POINTER_TYPE_P (valtype))
36212 mode = TARGET_32BIT ? SImode : DImode;
36214 if (DECIMAL_FLOAT_MODE_P (mode) && TARGET_HARD_FLOAT)
36215 /* _Decimal128 must use an even/odd register pair. */
36216 regno = (mode == TDmode) ? FP_ARG_RETURN + 1 : FP_ARG_RETURN;
36217 else if (SCALAR_FLOAT_TYPE_P (valtype) && TARGET_HARD_FLOAT
36218 && !FLOAT128_VECTOR_P (mode)
36219 && ((TARGET_SINGLE_FLOAT && (mode == SFmode)) || TARGET_DOUBLE_FLOAT))
36220 regno = FP_ARG_RETURN;
36221 else if (TREE_CODE (valtype) == COMPLEX_TYPE
36222 && targetm.calls.split_complex_arg)
36223 return rs6000_complex_function_value (mode);
36224 /* VSX is a superset of Altivec and adds V2DImode/V2DFmode. Since the same
36225 return register is used in both cases, and we won't see V2DImode/V2DFmode
36226 for pure altivec, combine the two cases. */
36227 else if ((TREE_CODE (valtype) == VECTOR_TYPE || FLOAT128_VECTOR_P (mode))
36228 && TARGET_ALTIVEC && TARGET_ALTIVEC_ABI
36229 && ALTIVEC_OR_VSX_VECTOR_MODE (mode))
36230 regno = ALTIVEC_ARG_RETURN;
36231 else
36232 regno = GP_ARG_RETURN;
36234 return gen_rtx_REG (mode, regno);
36237 /* Define how to find the value returned by a library function
36238 assuming the value has mode MODE. */
36240 rs6000_libcall_value (machine_mode mode)
36242 unsigned int regno;
36244 /* Long long return value need be split in -mpowerpc64, 32bit ABI. */
36245 if (TARGET_32BIT && TARGET_POWERPC64 && mode == DImode)
36246 return rs6000_parallel_return (mode, 2, SImode, GP_ARG_RETURN, 1);
36248 if (DECIMAL_FLOAT_MODE_P (mode) && TARGET_HARD_FLOAT)
36249 /* _Decimal128 must use an even/odd register pair. */
36250 regno = (mode == TDmode) ? FP_ARG_RETURN + 1 : FP_ARG_RETURN;
36251 else if (SCALAR_FLOAT_MODE_NOT_VECTOR_P (mode)
36252 && TARGET_HARD_FLOAT
36253 && ((TARGET_SINGLE_FLOAT && mode == SFmode) || TARGET_DOUBLE_FLOAT))
36254 regno = FP_ARG_RETURN;
36255 /* VSX is a superset of Altivec and adds V2DImode/V2DFmode. Since the same
36256 return register is used in both cases, and we won't see V2DImode/V2DFmode
36257 for pure altivec, combine the two cases. */
36258 else if (ALTIVEC_OR_VSX_VECTOR_MODE (mode)
36259 && TARGET_ALTIVEC && TARGET_ALTIVEC_ABI)
36260 regno = ALTIVEC_ARG_RETURN;
36261 else if (COMPLEX_MODE_P (mode) && targetm.calls.split_complex_arg)
36262 return rs6000_complex_function_value (mode);
36263 else
36264 regno = GP_ARG_RETURN;
36266 return gen_rtx_REG (mode, regno);
36269 /* Compute register pressure classes. We implement the target hook to avoid
36270 IRA picking something like NON_SPECIAL_REGS as a pressure class, which can
36271 lead to incorrect estimates of number of available registers and therefor
36272 increased register pressure/spill. */
36273 static int
36274 rs6000_compute_pressure_classes (enum reg_class *pressure_classes)
36276 int n;
36278 n = 0;
36279 pressure_classes[n++] = GENERAL_REGS;
36280 if (TARGET_VSX)
36281 pressure_classes[n++] = VSX_REGS;
36282 else
36284 if (TARGET_ALTIVEC)
36285 pressure_classes[n++] = ALTIVEC_REGS;
36286 if (TARGET_HARD_FLOAT)
36287 pressure_classes[n++] = FLOAT_REGS;
36289 pressure_classes[n++] = CR_REGS;
36290 pressure_classes[n++] = SPECIAL_REGS;
36292 return n;
36295 /* Given FROM and TO register numbers, say whether this elimination is allowed.
36296 Frame pointer elimination is automatically handled.
36298 For the RS/6000, if frame pointer elimination is being done, we would like
36299 to convert ap into fp, not sp.
36301 We need r30 if -mminimal-toc was specified, and there are constant pool
36302 references. */
36304 static bool
36305 rs6000_can_eliminate (const int from, const int to)
36307 return (from == ARG_POINTER_REGNUM && to == STACK_POINTER_REGNUM
36308 ? ! frame_pointer_needed
36309 : from == RS6000_PIC_OFFSET_TABLE_REGNUM
36310 ? ! TARGET_MINIMAL_TOC || TARGET_NO_TOC
36311 || constant_pool_empty_p ()
36312 : true);
36315 /* Define the offset between two registers, FROM to be eliminated and its
36316 replacement TO, at the start of a routine. */
36317 HOST_WIDE_INT
36318 rs6000_initial_elimination_offset (int from, int to)
36320 rs6000_stack_t *info = rs6000_stack_info ();
36321 HOST_WIDE_INT offset;
36323 if (from == HARD_FRAME_POINTER_REGNUM && to == STACK_POINTER_REGNUM)
36324 offset = info->push_p ? 0 : -info->total_size;
36325 else if (from == FRAME_POINTER_REGNUM && to == STACK_POINTER_REGNUM)
36327 offset = info->push_p ? 0 : -info->total_size;
36328 if (FRAME_GROWS_DOWNWARD)
36329 offset += info->fixed_size + info->vars_size + info->parm_size;
36331 else if (from == FRAME_POINTER_REGNUM && to == HARD_FRAME_POINTER_REGNUM)
36332 offset = FRAME_GROWS_DOWNWARD
36333 ? info->fixed_size + info->vars_size + info->parm_size
36334 : 0;
36335 else if (from == ARG_POINTER_REGNUM && to == HARD_FRAME_POINTER_REGNUM)
36336 offset = info->total_size;
36337 else if (from == ARG_POINTER_REGNUM && to == STACK_POINTER_REGNUM)
36338 offset = info->push_p ? info->total_size : 0;
36339 else if (from == RS6000_PIC_OFFSET_TABLE_REGNUM)
36340 offset = 0;
36341 else
36342 gcc_unreachable ();
36344 return offset;
36347 /* Fill in sizes of registers used by unwinder. */
36349 static void
36350 rs6000_init_dwarf_reg_sizes_extra (tree address)
36352 if (TARGET_MACHO && ! TARGET_ALTIVEC)
36354 int i;
36355 machine_mode mode = TYPE_MODE (char_type_node);
36356 rtx addr = expand_expr (address, NULL_RTX, VOIDmode, EXPAND_NORMAL);
36357 rtx mem = gen_rtx_MEM (BLKmode, addr);
36358 rtx value = gen_int_mode (16, mode);
36360 /* On Darwin, libgcc may be built to run on both G3 and G4/5.
36361 The unwinder still needs to know the size of Altivec registers. */
36363 for (i = FIRST_ALTIVEC_REGNO; i < LAST_ALTIVEC_REGNO+1; i++)
36365 int column = DWARF_REG_TO_UNWIND_COLUMN
36366 (DWARF2_FRAME_REG_OUT (DWARF_FRAME_REGNUM (i), true));
36367 HOST_WIDE_INT offset = column * GET_MODE_SIZE (mode);
36369 emit_move_insn (adjust_address (mem, mode, offset), value);
36374 /* Map internal gcc register numbers to debug format register numbers.
36375 FORMAT specifies the type of debug register number to use:
36376 0 -- debug information, except for frame-related sections
36377 1 -- DWARF .debug_frame section
36378 2 -- DWARF .eh_frame section */
36380 unsigned int
36381 rs6000_dbx_register_number (unsigned int regno, unsigned int format)
36383 /* Except for the above, we use the internal number for non-DWARF
36384 debug information, and also for .eh_frame. */
36385 if ((format == 0 && write_symbols != DWARF2_DEBUG) || format == 2)
36386 return regno;
36388 /* On some platforms, we use the standard DWARF register
36389 numbering for .debug_info and .debug_frame. */
36390 #ifdef RS6000_USE_DWARF_NUMBERING
36391 if (regno <= 63)
36392 return regno;
36393 if (regno == LR_REGNO)
36394 return 108;
36395 if (regno == CTR_REGNO)
36396 return 109;
36397 /* Special handling for CR for .debug_frame: rs6000_emit_prologue has
36398 translated any combination of CR2, CR3, CR4 saves to a save of CR2.
36399 The actual code emitted saves the whole of CR, so we map CR2_REGNO
36400 to the DWARF reg for CR. */
36401 if (format == 1 && regno == CR2_REGNO)
36402 return 64;
36403 if (CR_REGNO_P (regno))
36404 return regno - CR0_REGNO + 86;
36405 if (regno == CA_REGNO)
36406 return 101; /* XER */
36407 if (ALTIVEC_REGNO_P (regno))
36408 return regno - FIRST_ALTIVEC_REGNO + 1124;
36409 if (regno == VRSAVE_REGNO)
36410 return 356;
36411 if (regno == VSCR_REGNO)
36412 return 67;
36413 #endif
36414 return regno;
36417 /* target hook eh_return_filter_mode */
36418 static scalar_int_mode
36419 rs6000_eh_return_filter_mode (void)
36421 return TARGET_32BIT ? SImode : word_mode;
36424 /* Target hook for scalar_mode_supported_p. */
36425 static bool
36426 rs6000_scalar_mode_supported_p (scalar_mode mode)
36428 /* -m32 does not support TImode. This is the default, from
36429 default_scalar_mode_supported_p. For -m32 -mpowerpc64 we want the
36430 same ABI as for -m32. But default_scalar_mode_supported_p allows
36431 integer modes of precision 2 * BITS_PER_WORD, which matches TImode
36432 for -mpowerpc64. */
36433 if (TARGET_32BIT && mode == TImode)
36434 return false;
36436 if (DECIMAL_FLOAT_MODE_P (mode))
36437 return default_decimal_float_supported_p ();
36438 else if (TARGET_FLOAT128_TYPE && (mode == KFmode || mode == IFmode))
36439 return true;
36440 else
36441 return default_scalar_mode_supported_p (mode);
36444 /* Target hook for vector_mode_supported_p. */
36445 static bool
36446 rs6000_vector_mode_supported_p (machine_mode mode)
36449 if (TARGET_PAIRED_FLOAT && PAIRED_VECTOR_MODE (mode))
36450 return true;
36452 /* There is no vector form for IEEE 128-bit. If we return true for IEEE
36453 128-bit, the compiler might try to widen IEEE 128-bit to IBM
36454 double-double. */
36455 else if (VECTOR_MEM_ALTIVEC_OR_VSX_P (mode) && !FLOAT128_IEEE_P (mode))
36456 return true;
36458 else
36459 return false;
36462 /* Target hook for floatn_mode. */
36463 static opt_scalar_float_mode
36464 rs6000_floatn_mode (int n, bool extended)
36466 if (extended)
36468 switch (n)
36470 case 32:
36471 return DFmode;
36473 case 64:
36474 if (TARGET_FLOAT128_TYPE)
36475 return (FLOAT128_IEEE_P (TFmode)) ? TFmode : KFmode;
36476 else
36477 return opt_scalar_float_mode ();
36479 case 128:
36480 return opt_scalar_float_mode ();
36482 default:
36483 /* Those are the only valid _FloatNx types. */
36484 gcc_unreachable ();
36487 else
36489 switch (n)
36491 case 32:
36492 return SFmode;
36494 case 64:
36495 return DFmode;
36497 case 128:
36498 if (TARGET_FLOAT128_TYPE)
36499 return (FLOAT128_IEEE_P (TFmode)) ? TFmode : KFmode;
36500 else
36501 return opt_scalar_float_mode ();
36503 default:
36504 return opt_scalar_float_mode ();
36510 /* Target hook for c_mode_for_suffix. */
36511 static machine_mode
36512 rs6000_c_mode_for_suffix (char suffix)
36514 if (TARGET_FLOAT128_TYPE)
36516 if (suffix == 'q' || suffix == 'Q')
36517 return (FLOAT128_IEEE_P (TFmode)) ? TFmode : KFmode;
36519 /* At the moment, we are not defining a suffix for IBM extended double.
36520 If/when the default for -mabi=ieeelongdouble is changed, and we want
36521 to support __ibm128 constants in legacy library code, we may need to
36522 re-evalaute this decision. Currently, c-lex.c only supports 'w' and
36523 'q' as machine dependent suffixes. The x86_64 port uses 'w' for
36524 __float80 constants. */
36527 return VOIDmode;
36530 /* Target hook for invalid_arg_for_unprototyped_fn. */
36531 static const char *
36532 invalid_arg_for_unprototyped_fn (const_tree typelist, const_tree funcdecl, const_tree val)
36534 return (!rs6000_darwin64_abi
36535 && typelist == 0
36536 && TREE_CODE (TREE_TYPE (val)) == VECTOR_TYPE
36537 && (funcdecl == NULL_TREE
36538 || (TREE_CODE (funcdecl) == FUNCTION_DECL
36539 && DECL_BUILT_IN_CLASS (funcdecl) != BUILT_IN_MD)))
36540 ? N_("AltiVec argument passed to unprototyped function")
36541 : NULL;
36544 /* For TARGET_SECURE_PLT 32-bit PIC code we can save PIC register
36545 setup by using __stack_chk_fail_local hidden function instead of
36546 calling __stack_chk_fail directly. Otherwise it is better to call
36547 __stack_chk_fail directly. */
36549 static tree ATTRIBUTE_UNUSED
36550 rs6000_stack_protect_fail (void)
36552 return (DEFAULT_ABI == ABI_V4 && TARGET_SECURE_PLT && flag_pic)
36553 ? default_hidden_stack_protect_fail ()
36554 : default_external_stack_protect_fail ();
36557 /* Implement the TARGET_ASAN_SHADOW_OFFSET hook. */
36559 #if TARGET_ELF
36560 static unsigned HOST_WIDE_INT
36561 rs6000_asan_shadow_offset (void)
36563 return (unsigned HOST_WIDE_INT) 1 << (TARGET_64BIT ? 41 : 29);
36565 #endif
36567 /* Mask options that we want to support inside of attribute((target)) and
36568 #pragma GCC target operations. Note, we do not include things like
36569 64/32-bit, endianness, hard/soft floating point, etc. that would have
36570 different calling sequences. */
36572 struct rs6000_opt_mask {
36573 const char *name; /* option name */
36574 HOST_WIDE_INT mask; /* mask to set */
36575 bool invert; /* invert sense of mask */
36576 bool valid_target; /* option is a target option */
36579 static struct rs6000_opt_mask const rs6000_opt_masks[] =
36581 { "altivec", OPTION_MASK_ALTIVEC, false, true },
36582 { "cmpb", OPTION_MASK_CMPB, false, true },
36583 { "crypto", OPTION_MASK_CRYPTO, false, true },
36584 { "direct-move", OPTION_MASK_DIRECT_MOVE, false, true },
36585 { "dlmzb", OPTION_MASK_DLMZB, false, true },
36586 { "efficient-unaligned-vsx", OPTION_MASK_EFFICIENT_UNALIGNED_VSX,
36587 false, true },
36588 { "float128", OPTION_MASK_FLOAT128_KEYWORD, false, true },
36589 { "float128-hardware", OPTION_MASK_FLOAT128_HW, false, true },
36590 { "fprnd", OPTION_MASK_FPRND, false, true },
36591 { "hard-dfp", OPTION_MASK_DFP, false, true },
36592 { "htm", OPTION_MASK_HTM, false, true },
36593 { "isel", OPTION_MASK_ISEL, false, true },
36594 { "mfcrf", OPTION_MASK_MFCRF, false, true },
36595 { "mfpgpr", OPTION_MASK_MFPGPR, false, true },
36596 { "modulo", OPTION_MASK_MODULO, false, true },
36597 { "mulhw", OPTION_MASK_MULHW, false, true },
36598 { "multiple", OPTION_MASK_MULTIPLE, false, true },
36599 { "popcntb", OPTION_MASK_POPCNTB, false, true },
36600 { "popcntd", OPTION_MASK_POPCNTD, false, true },
36601 { "power8-fusion", OPTION_MASK_P8_FUSION, false, true },
36602 { "power8-fusion-sign", OPTION_MASK_P8_FUSION_SIGN, false, true },
36603 { "power8-vector", OPTION_MASK_P8_VECTOR, false, true },
36604 { "power9-fusion", OPTION_MASK_P9_FUSION, false, true },
36605 { "power9-minmax", OPTION_MASK_P9_MINMAX, false, true },
36606 { "power9-misc", OPTION_MASK_P9_MISC, false, true },
36607 { "power9-vector", OPTION_MASK_P9_VECTOR, false, true },
36608 { "powerpc-gfxopt", OPTION_MASK_PPC_GFXOPT, false, true },
36609 { "powerpc-gpopt", OPTION_MASK_PPC_GPOPT, false, true },
36610 { "quad-memory", OPTION_MASK_QUAD_MEMORY, false, true },
36611 { "quad-memory-atomic", OPTION_MASK_QUAD_MEMORY_ATOMIC, false, true },
36612 { "recip-precision", OPTION_MASK_RECIP_PRECISION, false, true },
36613 { "save-toc-indirect", OPTION_MASK_SAVE_TOC_INDIRECT, false, true },
36614 { "string", OPTION_MASK_STRING, false, true },
36615 { "toc-fusion", OPTION_MASK_TOC_FUSION, false, true },
36616 { "update", OPTION_MASK_NO_UPDATE, true , true },
36617 { "vsx", OPTION_MASK_VSX, false, true },
36618 #ifdef OPTION_MASK_64BIT
36619 #if TARGET_AIX_OS
36620 { "aix64", OPTION_MASK_64BIT, false, false },
36621 { "aix32", OPTION_MASK_64BIT, true, false },
36622 #else
36623 { "64", OPTION_MASK_64BIT, false, false },
36624 { "32", OPTION_MASK_64BIT, true, false },
36625 #endif
36626 #endif
36627 #ifdef OPTION_MASK_EABI
36628 { "eabi", OPTION_MASK_EABI, false, false },
36629 #endif
36630 #ifdef OPTION_MASK_LITTLE_ENDIAN
36631 { "little", OPTION_MASK_LITTLE_ENDIAN, false, false },
36632 { "big", OPTION_MASK_LITTLE_ENDIAN, true, false },
36633 #endif
36634 #ifdef OPTION_MASK_RELOCATABLE
36635 { "relocatable", OPTION_MASK_RELOCATABLE, false, false },
36636 #endif
36637 #ifdef OPTION_MASK_STRICT_ALIGN
36638 { "strict-align", OPTION_MASK_STRICT_ALIGN, false, false },
36639 #endif
36640 { "soft-float", OPTION_MASK_SOFT_FLOAT, false, false },
36641 { "string", OPTION_MASK_STRING, false, false },
36644 /* Builtin mask mapping for printing the flags. */
36645 static struct rs6000_opt_mask const rs6000_builtin_mask_names[] =
36647 { "altivec", RS6000_BTM_ALTIVEC, false, false },
36648 { "vsx", RS6000_BTM_VSX, false, false },
36649 { "paired", RS6000_BTM_PAIRED, false, false },
36650 { "fre", RS6000_BTM_FRE, false, false },
36651 { "fres", RS6000_BTM_FRES, false, false },
36652 { "frsqrte", RS6000_BTM_FRSQRTE, false, false },
36653 { "frsqrtes", RS6000_BTM_FRSQRTES, false, false },
36654 { "popcntd", RS6000_BTM_POPCNTD, false, false },
36655 { "cell", RS6000_BTM_CELL, false, false },
36656 { "power8-vector", RS6000_BTM_P8_VECTOR, false, false },
36657 { "power9-vector", RS6000_BTM_P9_VECTOR, false, false },
36658 { "power9-misc", RS6000_BTM_P9_MISC, false, false },
36659 { "crypto", RS6000_BTM_CRYPTO, false, false },
36660 { "htm", RS6000_BTM_HTM, false, false },
36661 { "hard-dfp", RS6000_BTM_DFP, false, false },
36662 { "hard-float", RS6000_BTM_HARD_FLOAT, false, false },
36663 { "long-double-128", RS6000_BTM_LDBL128, false, false },
36664 { "float128", RS6000_BTM_FLOAT128, false, false },
36665 { "float128-hw", RS6000_BTM_FLOAT128_HW,false, false },
36668 /* Option variables that we want to support inside attribute((target)) and
36669 #pragma GCC target operations. */
36671 struct rs6000_opt_var {
36672 const char *name; /* option name */
36673 size_t global_offset; /* offset of the option in global_options. */
36674 size_t target_offset; /* offset of the option in target options. */
36677 static struct rs6000_opt_var const rs6000_opt_vars[] =
36679 { "friz",
36680 offsetof (struct gcc_options, x_TARGET_FRIZ),
36681 offsetof (struct cl_target_option, x_TARGET_FRIZ), },
36682 { "avoid-indexed-addresses",
36683 offsetof (struct gcc_options, x_TARGET_AVOID_XFORM),
36684 offsetof (struct cl_target_option, x_TARGET_AVOID_XFORM) },
36685 { "paired",
36686 offsetof (struct gcc_options, x_rs6000_paired_float),
36687 offsetof (struct cl_target_option, x_rs6000_paired_float), },
36688 { "longcall",
36689 offsetof (struct gcc_options, x_rs6000_default_long_calls),
36690 offsetof (struct cl_target_option, x_rs6000_default_long_calls), },
36691 { "optimize-swaps",
36692 offsetof (struct gcc_options, x_rs6000_optimize_swaps),
36693 offsetof (struct cl_target_option, x_rs6000_optimize_swaps), },
36694 { "allow-movmisalign",
36695 offsetof (struct gcc_options, x_TARGET_ALLOW_MOVMISALIGN),
36696 offsetof (struct cl_target_option, x_TARGET_ALLOW_MOVMISALIGN), },
36697 { "sched-groups",
36698 offsetof (struct gcc_options, x_TARGET_SCHED_GROUPS),
36699 offsetof (struct cl_target_option, x_TARGET_SCHED_GROUPS), },
36700 { "always-hint",
36701 offsetof (struct gcc_options, x_TARGET_ALWAYS_HINT),
36702 offsetof (struct cl_target_option, x_TARGET_ALWAYS_HINT), },
36703 { "align-branch-targets",
36704 offsetof (struct gcc_options, x_TARGET_ALIGN_BRANCH_TARGETS),
36705 offsetof (struct cl_target_option, x_TARGET_ALIGN_BRANCH_TARGETS), },
36706 { "tls-markers",
36707 offsetof (struct gcc_options, x_tls_markers),
36708 offsetof (struct cl_target_option, x_tls_markers), },
36709 { "sched-prolog",
36710 offsetof (struct gcc_options, x_TARGET_SCHED_PROLOG),
36711 offsetof (struct cl_target_option, x_TARGET_SCHED_PROLOG), },
36712 { "sched-epilog",
36713 offsetof (struct gcc_options, x_TARGET_SCHED_PROLOG),
36714 offsetof (struct cl_target_option, x_TARGET_SCHED_PROLOG), },
36717 /* Inner function to handle attribute((target("..."))) and #pragma GCC target
36718 parsing. Return true if there were no errors. */
36720 static bool
36721 rs6000_inner_target_options (tree args, bool attr_p)
36723 bool ret = true;
36725 if (args == NULL_TREE)
36728 else if (TREE_CODE (args) == STRING_CST)
36730 char *p = ASTRDUP (TREE_STRING_POINTER (args));
36731 char *q;
36733 while ((q = strtok (p, ",")) != NULL)
36735 bool error_p = false;
36736 bool not_valid_p = false;
36737 const char *cpu_opt = NULL;
36739 p = NULL;
36740 if (strncmp (q, "cpu=", 4) == 0)
36742 int cpu_index = rs6000_cpu_name_lookup (q+4);
36743 if (cpu_index >= 0)
36744 rs6000_cpu_index = cpu_index;
36745 else
36747 error_p = true;
36748 cpu_opt = q+4;
36751 else if (strncmp (q, "tune=", 5) == 0)
36753 int tune_index = rs6000_cpu_name_lookup (q+5);
36754 if (tune_index >= 0)
36755 rs6000_tune_index = tune_index;
36756 else
36758 error_p = true;
36759 cpu_opt = q+5;
36762 else
36764 size_t i;
36765 bool invert = false;
36766 char *r = q;
36768 error_p = true;
36769 if (strncmp (r, "no-", 3) == 0)
36771 invert = true;
36772 r += 3;
36775 for (i = 0; i < ARRAY_SIZE (rs6000_opt_masks); i++)
36776 if (strcmp (r, rs6000_opt_masks[i].name) == 0)
36778 HOST_WIDE_INT mask = rs6000_opt_masks[i].mask;
36780 if (!rs6000_opt_masks[i].valid_target)
36781 not_valid_p = true;
36782 else
36784 error_p = false;
36785 rs6000_isa_flags_explicit |= mask;
36787 /* VSX needs altivec, so -mvsx automagically sets
36788 altivec and disables -mavoid-indexed-addresses. */
36789 if (!invert)
36791 if (mask == OPTION_MASK_VSX)
36793 mask |= OPTION_MASK_ALTIVEC;
36794 TARGET_AVOID_XFORM = 0;
36798 if (rs6000_opt_masks[i].invert)
36799 invert = !invert;
36801 if (invert)
36802 rs6000_isa_flags &= ~mask;
36803 else
36804 rs6000_isa_flags |= mask;
36806 break;
36809 if (error_p && !not_valid_p)
36811 for (i = 0; i < ARRAY_SIZE (rs6000_opt_vars); i++)
36812 if (strcmp (r, rs6000_opt_vars[i].name) == 0)
36814 size_t j = rs6000_opt_vars[i].global_offset;
36815 *((int *) ((char *)&global_options + j)) = !invert;
36816 error_p = false;
36817 not_valid_p = false;
36818 break;
36823 if (error_p)
36825 const char *eprefix, *esuffix;
36827 ret = false;
36828 if (attr_p)
36830 eprefix = "__attribute__((__target__(";
36831 esuffix = ")))";
36833 else
36835 eprefix = "#pragma GCC target ";
36836 esuffix = "";
36839 if (cpu_opt)
36840 error ("invalid cpu %qs for %s%qs%s", cpu_opt, eprefix,
36841 q, esuffix);
36842 else if (not_valid_p)
36843 error ("%s%qs%s is not allowed", eprefix, q, esuffix);
36844 else
36845 error ("%s%qs%s is invalid", eprefix, q, esuffix);
36850 else if (TREE_CODE (args) == TREE_LIST)
36854 tree value = TREE_VALUE (args);
36855 if (value)
36857 bool ret2 = rs6000_inner_target_options (value, attr_p);
36858 if (!ret2)
36859 ret = false;
36861 args = TREE_CHAIN (args);
36863 while (args != NULL_TREE);
36866 else
36868 error ("attribute %<target%> argument not a string");
36869 return false;
36872 return ret;
36875 /* Print out the target options as a list for -mdebug=target. */
36877 static void
36878 rs6000_debug_target_options (tree args, const char *prefix)
36880 if (args == NULL_TREE)
36881 fprintf (stderr, "%s<NULL>", prefix);
36883 else if (TREE_CODE (args) == STRING_CST)
36885 char *p = ASTRDUP (TREE_STRING_POINTER (args));
36886 char *q;
36888 while ((q = strtok (p, ",")) != NULL)
36890 p = NULL;
36891 fprintf (stderr, "%s\"%s\"", prefix, q);
36892 prefix = ", ";
36896 else if (TREE_CODE (args) == TREE_LIST)
36900 tree value = TREE_VALUE (args);
36901 if (value)
36903 rs6000_debug_target_options (value, prefix);
36904 prefix = ", ";
36906 args = TREE_CHAIN (args);
36908 while (args != NULL_TREE);
36911 else
36912 gcc_unreachable ();
36914 return;
36918 /* Hook to validate attribute((target("..."))). */
36920 static bool
36921 rs6000_valid_attribute_p (tree fndecl,
36922 tree ARG_UNUSED (name),
36923 tree args,
36924 int flags)
36926 struct cl_target_option cur_target;
36927 bool ret;
36928 tree old_optimize;
36929 tree new_target, new_optimize;
36930 tree func_optimize;
36932 gcc_assert ((fndecl != NULL_TREE) && (args != NULL_TREE));
36934 if (TARGET_DEBUG_TARGET)
36936 tree tname = DECL_NAME (fndecl);
36937 fprintf (stderr, "\n==================== rs6000_valid_attribute_p:\n");
36938 if (tname)
36939 fprintf (stderr, "function: %.*s\n",
36940 (int) IDENTIFIER_LENGTH (tname),
36941 IDENTIFIER_POINTER (tname));
36942 else
36943 fprintf (stderr, "function: unknown\n");
36945 fprintf (stderr, "args:");
36946 rs6000_debug_target_options (args, " ");
36947 fprintf (stderr, "\n");
36949 if (flags)
36950 fprintf (stderr, "flags: 0x%x\n", flags);
36952 fprintf (stderr, "--------------------\n");
36955 /* attribute((target("default"))) does nothing, beyond
36956 affecting multi-versioning. */
36957 if (TREE_VALUE (args)
36958 && TREE_CODE (TREE_VALUE (args)) == STRING_CST
36959 && TREE_CHAIN (args) == NULL_TREE
36960 && strcmp (TREE_STRING_POINTER (TREE_VALUE (args)), "default") == 0)
36961 return true;
36963 old_optimize = build_optimization_node (&global_options);
36964 func_optimize = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (fndecl);
36966 /* If the function changed the optimization levels as well as setting target
36967 options, start with the optimizations specified. */
36968 if (func_optimize && func_optimize != old_optimize)
36969 cl_optimization_restore (&global_options,
36970 TREE_OPTIMIZATION (func_optimize));
36972 /* The target attributes may also change some optimization flags, so update
36973 the optimization options if necessary. */
36974 cl_target_option_save (&cur_target, &global_options);
36975 rs6000_cpu_index = rs6000_tune_index = -1;
36976 ret = rs6000_inner_target_options (args, true);
36978 /* Set up any additional state. */
36979 if (ret)
36981 ret = rs6000_option_override_internal (false);
36982 new_target = build_target_option_node (&global_options);
36984 else
36985 new_target = NULL;
36987 new_optimize = build_optimization_node (&global_options);
36989 if (!new_target)
36990 ret = false;
36992 else if (fndecl)
36994 DECL_FUNCTION_SPECIFIC_TARGET (fndecl) = new_target;
36996 if (old_optimize != new_optimize)
36997 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (fndecl) = new_optimize;
37000 cl_target_option_restore (&global_options, &cur_target);
37002 if (old_optimize != new_optimize)
37003 cl_optimization_restore (&global_options,
37004 TREE_OPTIMIZATION (old_optimize));
37006 return ret;
37010 /* Hook to validate the current #pragma GCC target and set the state, and
37011 update the macros based on what was changed. If ARGS is NULL, then
37012 POP_TARGET is used to reset the options. */
37014 bool
37015 rs6000_pragma_target_parse (tree args, tree pop_target)
37017 tree prev_tree = build_target_option_node (&global_options);
37018 tree cur_tree;
37019 struct cl_target_option *prev_opt, *cur_opt;
37020 HOST_WIDE_INT prev_flags, cur_flags, diff_flags;
37021 HOST_WIDE_INT prev_bumask, cur_bumask, diff_bumask;
37023 if (TARGET_DEBUG_TARGET)
37025 fprintf (stderr, "\n==================== rs6000_pragma_target_parse\n");
37026 fprintf (stderr, "args:");
37027 rs6000_debug_target_options (args, " ");
37028 fprintf (stderr, "\n");
37030 if (pop_target)
37032 fprintf (stderr, "pop_target:\n");
37033 debug_tree (pop_target);
37035 else
37036 fprintf (stderr, "pop_target: <NULL>\n");
37038 fprintf (stderr, "--------------------\n");
37041 if (! args)
37043 cur_tree = ((pop_target)
37044 ? pop_target
37045 : target_option_default_node);
37046 cl_target_option_restore (&global_options,
37047 TREE_TARGET_OPTION (cur_tree));
37049 else
37051 rs6000_cpu_index = rs6000_tune_index = -1;
37052 if (!rs6000_inner_target_options (args, false)
37053 || !rs6000_option_override_internal (false)
37054 || (cur_tree = build_target_option_node (&global_options))
37055 == NULL_TREE)
37057 if (TARGET_DEBUG_BUILTIN || TARGET_DEBUG_TARGET)
37058 fprintf (stderr, "invalid pragma\n");
37060 return false;
37064 target_option_current_node = cur_tree;
37065 rs6000_activate_target_options (target_option_current_node);
37067 /* If we have the preprocessor linked in (i.e. C or C++ languages), possibly
37068 change the macros that are defined. */
37069 if (rs6000_target_modify_macros_ptr)
37071 prev_opt = TREE_TARGET_OPTION (prev_tree);
37072 prev_bumask = prev_opt->x_rs6000_builtin_mask;
37073 prev_flags = prev_opt->x_rs6000_isa_flags;
37075 cur_opt = TREE_TARGET_OPTION (cur_tree);
37076 cur_flags = cur_opt->x_rs6000_isa_flags;
37077 cur_bumask = cur_opt->x_rs6000_builtin_mask;
37079 diff_bumask = (prev_bumask ^ cur_bumask);
37080 diff_flags = (prev_flags ^ cur_flags);
37082 if ((diff_flags != 0) || (diff_bumask != 0))
37084 /* Delete old macros. */
37085 rs6000_target_modify_macros_ptr (false,
37086 prev_flags & diff_flags,
37087 prev_bumask & diff_bumask);
37089 /* Define new macros. */
37090 rs6000_target_modify_macros_ptr (true,
37091 cur_flags & diff_flags,
37092 cur_bumask & diff_bumask);
37096 return true;
37100 /* Remember the last target of rs6000_set_current_function. */
37101 static GTY(()) tree rs6000_previous_fndecl;
37103 /* Restore target's globals from NEW_TREE and invalidate the
37104 rs6000_previous_fndecl cache. */
37106 void
37107 rs6000_activate_target_options (tree new_tree)
37109 cl_target_option_restore (&global_options, TREE_TARGET_OPTION (new_tree));
37110 if (TREE_TARGET_GLOBALS (new_tree))
37111 restore_target_globals (TREE_TARGET_GLOBALS (new_tree));
37112 else if (new_tree == target_option_default_node)
37113 restore_target_globals (&default_target_globals);
37114 else
37115 TREE_TARGET_GLOBALS (new_tree) = save_target_globals_default_opts ();
37116 rs6000_previous_fndecl = NULL_TREE;
37119 /* Establish appropriate back-end context for processing the function
37120 FNDECL. The argument might be NULL to indicate processing at top
37121 level, outside of any function scope. */
37122 static void
37123 rs6000_set_current_function (tree fndecl)
37125 if (TARGET_DEBUG_TARGET)
37127 fprintf (stderr, "\n==================== rs6000_set_current_function");
37129 if (fndecl)
37130 fprintf (stderr, ", fndecl %s (%p)",
37131 (DECL_NAME (fndecl)
37132 ? IDENTIFIER_POINTER (DECL_NAME (fndecl))
37133 : "<unknown>"), (void *)fndecl);
37135 if (rs6000_previous_fndecl)
37136 fprintf (stderr, ", prev_fndecl (%p)", (void *)rs6000_previous_fndecl);
37138 fprintf (stderr, "\n");
37141 /* Only change the context if the function changes. This hook is called
37142 several times in the course of compiling a function, and we don't want to
37143 slow things down too much or call target_reinit when it isn't safe. */
37144 if (fndecl == rs6000_previous_fndecl)
37145 return;
37147 tree old_tree;
37148 if (rs6000_previous_fndecl == NULL_TREE)
37149 old_tree = target_option_current_node;
37150 else if (DECL_FUNCTION_SPECIFIC_TARGET (rs6000_previous_fndecl))
37151 old_tree = DECL_FUNCTION_SPECIFIC_TARGET (rs6000_previous_fndecl);
37152 else
37153 old_tree = target_option_default_node;
37155 tree new_tree;
37156 if (fndecl == NULL_TREE)
37158 if (old_tree != target_option_current_node)
37159 new_tree = target_option_current_node;
37160 else
37161 new_tree = NULL_TREE;
37163 else
37165 new_tree = DECL_FUNCTION_SPECIFIC_TARGET (fndecl);
37166 if (new_tree == NULL_TREE)
37167 new_tree = target_option_default_node;
37170 if (TARGET_DEBUG_TARGET)
37172 if (new_tree)
37174 fprintf (stderr, "\nnew fndecl target specific options:\n");
37175 debug_tree (new_tree);
37178 if (old_tree)
37180 fprintf (stderr, "\nold fndecl target specific options:\n");
37181 debug_tree (old_tree);
37184 if (old_tree != NULL_TREE || new_tree != NULL_TREE)
37185 fprintf (stderr, "--------------------\n");
37188 if (new_tree && old_tree != new_tree)
37189 rs6000_activate_target_options (new_tree);
37191 if (fndecl)
37192 rs6000_previous_fndecl = fndecl;
37196 /* Save the current options */
37198 static void
37199 rs6000_function_specific_save (struct cl_target_option *ptr,
37200 struct gcc_options *opts)
37202 ptr->x_rs6000_isa_flags = opts->x_rs6000_isa_flags;
37203 ptr->x_rs6000_isa_flags_explicit = opts->x_rs6000_isa_flags_explicit;
37206 /* Restore the current options */
37208 static void
37209 rs6000_function_specific_restore (struct gcc_options *opts,
37210 struct cl_target_option *ptr)
37213 opts->x_rs6000_isa_flags = ptr->x_rs6000_isa_flags;
37214 opts->x_rs6000_isa_flags_explicit = ptr->x_rs6000_isa_flags_explicit;
37215 (void) rs6000_option_override_internal (false);
37218 /* Print the current options */
37220 static void
37221 rs6000_function_specific_print (FILE *file, int indent,
37222 struct cl_target_option *ptr)
37224 rs6000_print_isa_options (file, indent, "Isa options set",
37225 ptr->x_rs6000_isa_flags);
37227 rs6000_print_isa_options (file, indent, "Isa options explicit",
37228 ptr->x_rs6000_isa_flags_explicit);
37231 /* Helper function to print the current isa or misc options on a line. */
37233 static void
37234 rs6000_print_options_internal (FILE *file,
37235 int indent,
37236 const char *string,
37237 HOST_WIDE_INT flags,
37238 const char *prefix,
37239 const struct rs6000_opt_mask *opts,
37240 size_t num_elements)
37242 size_t i;
37243 size_t start_column = 0;
37244 size_t cur_column;
37245 size_t max_column = 120;
37246 size_t prefix_len = strlen (prefix);
37247 size_t comma_len = 0;
37248 const char *comma = "";
37250 if (indent)
37251 start_column += fprintf (file, "%*s", indent, "");
37253 if (!flags)
37255 fprintf (stderr, DEBUG_FMT_S, string, "<none>");
37256 return;
37259 start_column += fprintf (stderr, DEBUG_FMT_WX, string, flags);
37261 /* Print the various mask options. */
37262 cur_column = start_column;
37263 for (i = 0; i < num_elements; i++)
37265 bool invert = opts[i].invert;
37266 const char *name = opts[i].name;
37267 const char *no_str = "";
37268 HOST_WIDE_INT mask = opts[i].mask;
37269 size_t len = comma_len + prefix_len + strlen (name);
37271 if (!invert)
37273 if ((flags & mask) == 0)
37275 no_str = "no-";
37276 len += sizeof ("no-") - 1;
37279 flags &= ~mask;
37282 else
37284 if ((flags & mask) != 0)
37286 no_str = "no-";
37287 len += sizeof ("no-") - 1;
37290 flags |= mask;
37293 cur_column += len;
37294 if (cur_column > max_column)
37296 fprintf (stderr, ", \\\n%*s", (int)start_column, "");
37297 cur_column = start_column + len;
37298 comma = "";
37301 fprintf (file, "%s%s%s%s", comma, prefix, no_str, name);
37302 comma = ", ";
37303 comma_len = sizeof (", ") - 1;
37306 fputs ("\n", file);
37309 /* Helper function to print the current isa options on a line. */
37311 static void
37312 rs6000_print_isa_options (FILE *file, int indent, const char *string,
37313 HOST_WIDE_INT flags)
37315 rs6000_print_options_internal (file, indent, string, flags, "-m",
37316 &rs6000_opt_masks[0],
37317 ARRAY_SIZE (rs6000_opt_masks));
37320 static void
37321 rs6000_print_builtin_options (FILE *file, int indent, const char *string,
37322 HOST_WIDE_INT flags)
37324 rs6000_print_options_internal (file, indent, string, flags, "",
37325 &rs6000_builtin_mask_names[0],
37326 ARRAY_SIZE (rs6000_builtin_mask_names));
37329 /* If the user used -mno-vsx, we need turn off all of the implicit ISA 2.06,
37330 2.07, and 3.0 options that relate to the vector unit (-mdirect-move,
37331 -mupper-regs-df, etc.).
37333 If the user used -mno-power8-vector, we need to turn off all of the implicit
37334 ISA 2.07 and 3.0 options that relate to the vector unit.
37336 If the user used -mno-power9-vector, we need to turn off all of the implicit
37337 ISA 3.0 options that relate to the vector unit.
37339 This function does not handle explicit options such as the user specifying
37340 -mdirect-move. These are handled in rs6000_option_override_internal, and
37341 the appropriate error is given if needed.
37343 We return a mask of all of the implicit options that should not be enabled
37344 by default. */
37346 static HOST_WIDE_INT
37347 rs6000_disable_incompatible_switches (void)
37349 HOST_WIDE_INT ignore_masks = rs6000_isa_flags_explicit;
37350 size_t i, j;
37352 static const struct {
37353 const HOST_WIDE_INT no_flag; /* flag explicitly turned off. */
37354 const HOST_WIDE_INT dep_flags; /* flags that depend on this option. */
37355 const char *const name; /* name of the switch. */
37356 } flags[] = {
37357 { OPTION_MASK_P9_VECTOR, OTHER_P9_VECTOR_MASKS, "power9-vector" },
37358 { OPTION_MASK_P8_VECTOR, OTHER_P8_VECTOR_MASKS, "power8-vector" },
37359 { OPTION_MASK_VSX, OTHER_VSX_VECTOR_MASKS, "vsx" },
37362 for (i = 0; i < ARRAY_SIZE (flags); i++)
37364 HOST_WIDE_INT no_flag = flags[i].no_flag;
37366 if ((rs6000_isa_flags & no_flag) == 0
37367 && (rs6000_isa_flags_explicit & no_flag) != 0)
37369 HOST_WIDE_INT dep_flags = flags[i].dep_flags;
37370 HOST_WIDE_INT set_flags = (rs6000_isa_flags_explicit
37371 & rs6000_isa_flags
37372 & dep_flags);
37374 if (set_flags)
37376 for (j = 0; j < ARRAY_SIZE (rs6000_opt_masks); j++)
37377 if ((set_flags & rs6000_opt_masks[j].mask) != 0)
37379 set_flags &= ~rs6000_opt_masks[j].mask;
37380 error ("%<-mno-%s%> turns off %<-m%s%>",
37381 flags[i].name,
37382 rs6000_opt_masks[j].name);
37385 gcc_assert (!set_flags);
37388 rs6000_isa_flags &= ~dep_flags;
37389 ignore_masks |= no_flag | dep_flags;
37393 return ignore_masks;
37397 /* Helper function for printing the function name when debugging. */
37399 static const char *
37400 get_decl_name (tree fn)
37402 tree name;
37404 if (!fn)
37405 return "<null>";
37407 name = DECL_NAME (fn);
37408 if (!name)
37409 return "<no-name>";
37411 return IDENTIFIER_POINTER (name);
37414 /* Return the clone id of the target we are compiling code for in a target
37415 clone. The clone id is ordered from 0 (default) to CLONE_MAX-1 and gives
37416 the priority list for the target clones (ordered from lowest to
37417 highest). */
37419 static int
37420 rs6000_clone_priority (tree fndecl)
37422 tree fn_opts = DECL_FUNCTION_SPECIFIC_TARGET (fndecl);
37423 HOST_WIDE_INT isa_masks;
37424 int ret = CLONE_DEFAULT;
37425 tree attrs = lookup_attribute ("target", DECL_ATTRIBUTES (fndecl));
37426 const char *attrs_str = NULL;
37428 attrs = TREE_VALUE (TREE_VALUE (attrs));
37429 attrs_str = TREE_STRING_POINTER (attrs);
37431 /* Return priority zero for default function. Return the ISA needed for the
37432 function if it is not the default. */
37433 if (strcmp (attrs_str, "default") != 0)
37435 if (fn_opts == NULL_TREE)
37436 fn_opts = target_option_default_node;
37438 if (!fn_opts || !TREE_TARGET_OPTION (fn_opts))
37439 isa_masks = rs6000_isa_flags;
37440 else
37441 isa_masks = TREE_TARGET_OPTION (fn_opts)->x_rs6000_isa_flags;
37443 for (ret = CLONE_MAX - 1; ret != 0; ret--)
37444 if ((rs6000_clone_map[ret].isa_mask & isa_masks) != 0)
37445 break;
37448 if (TARGET_DEBUG_TARGET)
37449 fprintf (stderr, "rs6000_get_function_version_priority (%s) => %d\n",
37450 get_decl_name (fndecl), ret);
37452 return ret;
37455 /* This compares the priority of target features in function DECL1 and DECL2.
37456 It returns positive value if DECL1 is higher priority, negative value if
37457 DECL2 is higher priority and 0 if they are the same. Note, priorities are
37458 ordered from lowest (CLONE_DEFAULT) to highest (currently CLONE_ISA_3_0). */
37460 static int
37461 rs6000_compare_version_priority (tree decl1, tree decl2)
37463 int priority1 = rs6000_clone_priority (decl1);
37464 int priority2 = rs6000_clone_priority (decl2);
37465 int ret = priority1 - priority2;
37467 if (TARGET_DEBUG_TARGET)
37468 fprintf (stderr, "rs6000_compare_version_priority (%s, %s) => %d\n",
37469 get_decl_name (decl1), get_decl_name (decl2), ret);
37471 return ret;
37474 /* Make a dispatcher declaration for the multi-versioned function DECL.
37475 Calls to DECL function will be replaced with calls to the dispatcher
37476 by the front-end. Returns the decl of the dispatcher function. */
37478 static tree
37479 rs6000_get_function_versions_dispatcher (void *decl)
37481 tree fn = (tree) decl;
37482 struct cgraph_node *node = NULL;
37483 struct cgraph_node *default_node = NULL;
37484 struct cgraph_function_version_info *node_v = NULL;
37485 struct cgraph_function_version_info *first_v = NULL;
37487 tree dispatch_decl = NULL;
37489 struct cgraph_function_version_info *default_version_info = NULL;
37490 gcc_assert (fn != NULL && DECL_FUNCTION_VERSIONED (fn));
37492 if (TARGET_DEBUG_TARGET)
37493 fprintf (stderr, "rs6000_get_function_versions_dispatcher (%s)\n",
37494 get_decl_name (fn));
37496 node = cgraph_node::get (fn);
37497 gcc_assert (node != NULL);
37499 node_v = node->function_version ();
37500 gcc_assert (node_v != NULL);
37502 if (node_v->dispatcher_resolver != NULL)
37503 return node_v->dispatcher_resolver;
37505 /* Find the default version and make it the first node. */
37506 first_v = node_v;
37507 /* Go to the beginning of the chain. */
37508 while (first_v->prev != NULL)
37509 first_v = first_v->prev;
37511 default_version_info = first_v;
37512 while (default_version_info != NULL)
37514 const tree decl2 = default_version_info->this_node->decl;
37515 if (is_function_default_version (decl2))
37516 break;
37517 default_version_info = default_version_info->next;
37520 /* If there is no default node, just return NULL. */
37521 if (default_version_info == NULL)
37522 return NULL;
37524 /* Make default info the first node. */
37525 if (first_v != default_version_info)
37527 default_version_info->prev->next = default_version_info->next;
37528 if (default_version_info->next)
37529 default_version_info->next->prev = default_version_info->prev;
37530 first_v->prev = default_version_info;
37531 default_version_info->next = first_v;
37532 default_version_info->prev = NULL;
37535 default_node = default_version_info->this_node;
37537 #ifndef TARGET_LIBC_PROVIDES_HWCAP_IN_TCB
37538 error_at (DECL_SOURCE_LOCATION (default_node->decl),
37539 "target_clones attribute needs GLIBC (2.23 and newer) that "
37540 "exports hardware capability bits");
37541 #else
37543 if (targetm.has_ifunc_p ())
37545 struct cgraph_function_version_info *it_v = NULL;
37546 struct cgraph_node *dispatcher_node = NULL;
37547 struct cgraph_function_version_info *dispatcher_version_info = NULL;
37549 /* Right now, the dispatching is done via ifunc. */
37550 dispatch_decl = make_dispatcher_decl (default_node->decl);
37552 dispatcher_node = cgraph_node::get_create (dispatch_decl);
37553 gcc_assert (dispatcher_node != NULL);
37554 dispatcher_node->dispatcher_function = 1;
37555 dispatcher_version_info
37556 = dispatcher_node->insert_new_function_version ();
37557 dispatcher_version_info->next = default_version_info;
37558 dispatcher_node->definition = 1;
37560 /* Set the dispatcher for all the versions. */
37561 it_v = default_version_info;
37562 while (it_v != NULL)
37564 it_v->dispatcher_resolver = dispatch_decl;
37565 it_v = it_v->next;
37568 else
37570 error_at (DECL_SOURCE_LOCATION (default_node->decl),
37571 "multiversioning needs ifunc which is not supported "
37572 "on this target");
37574 #endif
37576 return dispatch_decl;
37579 /* Make the resolver function decl to dispatch the versions of a multi-
37580 versioned function, DEFAULT_DECL. Create an empty basic block in the
37581 resolver and store the pointer in EMPTY_BB. Return the decl of the resolver
37582 function. */
37584 static tree
37585 make_resolver_func (const tree default_decl,
37586 const tree dispatch_decl,
37587 basic_block *empty_bb)
37589 /* Make the resolver function static. The resolver function returns
37590 void *. */
37591 tree decl_name = clone_function_name (default_decl, "resolver");
37592 const char *resolver_name = IDENTIFIER_POINTER (decl_name);
37593 tree type = build_function_type_list (ptr_type_node, NULL_TREE);
37594 tree decl = build_fn_decl (resolver_name, type);
37595 SET_DECL_ASSEMBLER_NAME (decl, decl_name);
37597 DECL_NAME (decl) = decl_name;
37598 TREE_USED (decl) = 1;
37599 DECL_ARTIFICIAL (decl) = 1;
37600 DECL_IGNORED_P (decl) = 0;
37601 TREE_PUBLIC (decl) = 0;
37602 DECL_UNINLINABLE (decl) = 1;
37604 /* Resolver is not external, body is generated. */
37605 DECL_EXTERNAL (decl) = 0;
37606 DECL_EXTERNAL (dispatch_decl) = 0;
37608 DECL_CONTEXT (decl) = NULL_TREE;
37609 DECL_INITIAL (decl) = make_node (BLOCK);
37610 DECL_STATIC_CONSTRUCTOR (decl) = 0;
37612 /* Build result decl and add to function_decl. */
37613 tree t = build_decl (UNKNOWN_LOCATION, RESULT_DECL, NULL_TREE, ptr_type_node);
37614 DECL_ARTIFICIAL (t) = 1;
37615 DECL_IGNORED_P (t) = 1;
37616 DECL_RESULT (decl) = t;
37618 gimplify_function_tree (decl);
37619 push_cfun (DECL_STRUCT_FUNCTION (decl));
37620 *empty_bb = init_lowered_empty_function (decl, false,
37621 profile_count::uninitialized ());
37623 cgraph_node::add_new_function (decl, true);
37624 symtab->call_cgraph_insertion_hooks (cgraph_node::get_create (decl));
37626 pop_cfun ();
37628 /* Mark dispatch_decl as "ifunc" with resolver as resolver_name. */
37629 DECL_ATTRIBUTES (dispatch_decl)
37630 = make_attribute ("ifunc", resolver_name, DECL_ATTRIBUTES (dispatch_decl));
37632 cgraph_node::create_same_body_alias (dispatch_decl, decl);
37634 return decl;
37637 /* This adds a condition to the basic_block NEW_BB in function FUNCTION_DECL to
37638 return a pointer to VERSION_DECL if we are running on a machine that
37639 supports the index CLONE_ISA hardware architecture bits. This function will
37640 be called during version dispatch to decide which function version to
37641 execute. It returns the basic block at the end, to which more conditions
37642 can be added. */
37644 static basic_block
37645 add_condition_to_bb (tree function_decl, tree version_decl,
37646 int clone_isa, basic_block new_bb)
37648 push_cfun (DECL_STRUCT_FUNCTION (function_decl));
37650 gcc_assert (new_bb != NULL);
37651 gimple_seq gseq = bb_seq (new_bb);
37654 tree convert_expr = build1 (CONVERT_EXPR, ptr_type_node,
37655 build_fold_addr_expr (version_decl));
37656 tree result_var = create_tmp_var (ptr_type_node);
37657 gimple *convert_stmt = gimple_build_assign (result_var, convert_expr);
37658 gimple *return_stmt = gimple_build_return (result_var);
37660 if (clone_isa == CLONE_DEFAULT)
37662 gimple_seq_add_stmt (&gseq, convert_stmt);
37663 gimple_seq_add_stmt (&gseq, return_stmt);
37664 set_bb_seq (new_bb, gseq);
37665 gimple_set_bb (convert_stmt, new_bb);
37666 gimple_set_bb (return_stmt, new_bb);
37667 pop_cfun ();
37668 return new_bb;
37671 tree bool_zero = build_int_cst (bool_int_type_node, 0);
37672 tree cond_var = create_tmp_var (bool_int_type_node);
37673 tree predicate_decl = rs6000_builtin_decls [(int) RS6000_BUILTIN_CPU_SUPPORTS];
37674 const char *arg_str = rs6000_clone_map[clone_isa].name;
37675 tree predicate_arg = build_string_literal (strlen (arg_str) + 1, arg_str);
37676 gimple *call_cond_stmt = gimple_build_call (predicate_decl, 1, predicate_arg);
37677 gimple_call_set_lhs (call_cond_stmt, cond_var);
37679 gimple_set_block (call_cond_stmt, DECL_INITIAL (function_decl));
37680 gimple_set_bb (call_cond_stmt, new_bb);
37681 gimple_seq_add_stmt (&gseq, call_cond_stmt);
37683 gimple *if_else_stmt = gimple_build_cond (NE_EXPR, cond_var, bool_zero,
37684 NULL_TREE, NULL_TREE);
37685 gimple_set_block (if_else_stmt, DECL_INITIAL (function_decl));
37686 gimple_set_bb (if_else_stmt, new_bb);
37687 gimple_seq_add_stmt (&gseq, if_else_stmt);
37689 gimple_seq_add_stmt (&gseq, convert_stmt);
37690 gimple_seq_add_stmt (&gseq, return_stmt);
37691 set_bb_seq (new_bb, gseq);
37693 basic_block bb1 = new_bb;
37694 edge e12 = split_block (bb1, if_else_stmt);
37695 basic_block bb2 = e12->dest;
37696 e12->flags &= ~EDGE_FALLTHRU;
37697 e12->flags |= EDGE_TRUE_VALUE;
37699 edge e23 = split_block (bb2, return_stmt);
37700 gimple_set_bb (convert_stmt, bb2);
37701 gimple_set_bb (return_stmt, bb2);
37703 basic_block bb3 = e23->dest;
37704 make_edge (bb1, bb3, EDGE_FALSE_VALUE);
37706 remove_edge (e23);
37707 make_edge (bb2, EXIT_BLOCK_PTR_FOR_FN (cfun), 0);
37709 pop_cfun ();
37710 return bb3;
37713 /* This function generates the dispatch function for multi-versioned functions.
37714 DISPATCH_DECL is the function which will contain the dispatch logic.
37715 FNDECLS are the function choices for dispatch, and is a tree chain.
37716 EMPTY_BB is the basic block pointer in DISPATCH_DECL in which the dispatch
37717 code is generated. */
37719 static int
37720 dispatch_function_versions (tree dispatch_decl,
37721 void *fndecls_p,
37722 basic_block *empty_bb)
37724 int ix;
37725 tree ele;
37726 vec<tree> *fndecls;
37727 tree clones[CLONE_MAX];
37729 if (TARGET_DEBUG_TARGET)
37730 fputs ("dispatch_function_versions, top\n", stderr);
37732 gcc_assert (dispatch_decl != NULL
37733 && fndecls_p != NULL
37734 && empty_bb != NULL);
37736 /* fndecls_p is actually a vector. */
37737 fndecls = static_cast<vec<tree> *> (fndecls_p);
37739 /* At least one more version other than the default. */
37740 gcc_assert (fndecls->length () >= 2);
37742 /* The first version in the vector is the default decl. */
37743 memset ((void *) clones, '\0', sizeof (clones));
37744 clones[CLONE_DEFAULT] = (*fndecls)[0];
37746 /* On the PowerPC, we do not need to call __builtin_cpu_init, which is a NOP
37747 on the PowerPC (on the x86_64, it is not a NOP). The builtin function
37748 __builtin_cpu_support ensures that the TOC fields are setup by requiring a
37749 recent glibc. If we ever need to call __builtin_cpu_init, we would need
37750 to insert the code here to do the call. */
37752 for (ix = 1; fndecls->iterate (ix, &ele); ++ix)
37754 int priority = rs6000_clone_priority (ele);
37755 if (!clones[priority])
37756 clones[priority] = ele;
37759 for (ix = CLONE_MAX - 1; ix >= 0; ix--)
37760 if (clones[ix])
37762 if (TARGET_DEBUG_TARGET)
37763 fprintf (stderr, "dispatch_function_versions, clone %d, %s\n",
37764 ix, get_decl_name (clones[ix]));
37766 *empty_bb = add_condition_to_bb (dispatch_decl, clones[ix], ix,
37767 *empty_bb);
37770 return 0;
37773 /* Generate the dispatching code body to dispatch multi-versioned function
37774 DECL. The target hook is called to process the "target" attributes and
37775 provide the code to dispatch the right function at run-time. NODE points
37776 to the dispatcher decl whose body will be created. */
37778 static tree
37779 rs6000_generate_version_dispatcher_body (void *node_p)
37781 tree resolver;
37782 basic_block empty_bb;
37783 struct cgraph_node *node = (cgraph_node *) node_p;
37784 struct cgraph_function_version_info *ninfo = node->function_version ();
37786 if (ninfo->dispatcher_resolver)
37787 return ninfo->dispatcher_resolver;
37789 /* node is going to be an alias, so remove the finalized bit. */
37790 node->definition = false;
37792 /* The first version in the chain corresponds to the default version. */
37793 ninfo->dispatcher_resolver = resolver
37794 = make_resolver_func (ninfo->next->this_node->decl, node->decl, &empty_bb);
37796 if (TARGET_DEBUG_TARGET)
37797 fprintf (stderr, "rs6000_get_function_versions_dispatcher, %s\n",
37798 get_decl_name (resolver));
37800 push_cfun (DECL_STRUCT_FUNCTION (resolver));
37801 auto_vec<tree, 2> fn_ver_vec;
37803 for (struct cgraph_function_version_info *vinfo = ninfo->next;
37804 vinfo;
37805 vinfo = vinfo->next)
37807 struct cgraph_node *version = vinfo->this_node;
37808 /* Check for virtual functions here again, as by this time it should
37809 have been determined if this function needs a vtable index or
37810 not. This happens for methods in derived classes that override
37811 virtual methods in base classes but are not explicitly marked as
37812 virtual. */
37813 if (DECL_VINDEX (version->decl))
37814 sorry ("Virtual function multiversioning not supported");
37816 fn_ver_vec.safe_push (version->decl);
37819 dispatch_function_versions (resolver, &fn_ver_vec, &empty_bb);
37820 cgraph_edge::rebuild_edges ();
37821 pop_cfun ();
37822 return resolver;
37826 /* Hook to determine if one function can safely inline another. */
37828 static bool
37829 rs6000_can_inline_p (tree caller, tree callee)
37831 bool ret = false;
37832 tree caller_tree = DECL_FUNCTION_SPECIFIC_TARGET (caller);
37833 tree callee_tree = DECL_FUNCTION_SPECIFIC_TARGET (callee);
37835 /* If callee has no option attributes, then it is ok to inline. */
37836 if (!callee_tree)
37837 ret = true;
37839 /* If caller has no option attributes, but callee does then it is not ok to
37840 inline. */
37841 else if (!caller_tree)
37842 ret = false;
37844 else
37846 struct cl_target_option *caller_opts = TREE_TARGET_OPTION (caller_tree);
37847 struct cl_target_option *callee_opts = TREE_TARGET_OPTION (callee_tree);
37849 /* Callee's options should a subset of the caller's, i.e. a vsx function
37850 can inline an altivec function but a non-vsx function can't inline a
37851 vsx function. */
37852 if ((caller_opts->x_rs6000_isa_flags & callee_opts->x_rs6000_isa_flags)
37853 == callee_opts->x_rs6000_isa_flags)
37854 ret = true;
37857 if (TARGET_DEBUG_TARGET)
37858 fprintf (stderr, "rs6000_can_inline_p:, caller %s, callee %s, %s inline\n",
37859 get_decl_name (caller), get_decl_name (callee),
37860 (ret ? "can" : "cannot"));
37862 return ret;
37865 /* Allocate a stack temp and fixup the address so it meets the particular
37866 memory requirements (either offetable or REG+REG addressing). */
37869 rs6000_allocate_stack_temp (machine_mode mode,
37870 bool offsettable_p,
37871 bool reg_reg_p)
37873 rtx stack = assign_stack_temp (mode, GET_MODE_SIZE (mode));
37874 rtx addr = XEXP (stack, 0);
37875 int strict_p = reload_completed;
37877 if (!legitimate_indirect_address_p (addr, strict_p))
37879 if (offsettable_p
37880 && !rs6000_legitimate_offset_address_p (mode, addr, strict_p, true))
37881 stack = replace_equiv_address (stack, copy_addr_to_reg (addr));
37883 else if (reg_reg_p && !legitimate_indexed_address_p (addr, strict_p))
37884 stack = replace_equiv_address (stack, copy_addr_to_reg (addr));
37887 return stack;
37890 /* Given a memory reference, if it is not a reg or reg+reg addressing, convert
37891 to such a form to deal with memory reference instructions like STFIWX that
37892 only take reg+reg addressing. */
37895 rs6000_address_for_fpconvert (rtx x)
37897 rtx addr;
37899 gcc_assert (MEM_P (x));
37900 addr = XEXP (x, 0);
37901 if (! legitimate_indirect_address_p (addr, reload_completed)
37902 && ! legitimate_indexed_address_p (addr, reload_completed))
37904 if (GET_CODE (addr) == PRE_INC || GET_CODE (addr) == PRE_DEC)
37906 rtx reg = XEXP (addr, 0);
37907 HOST_WIDE_INT size = GET_MODE_SIZE (GET_MODE (x));
37908 rtx size_rtx = GEN_INT ((GET_CODE (addr) == PRE_DEC) ? -size : size);
37909 gcc_assert (REG_P (reg));
37910 emit_insn (gen_add3_insn (reg, reg, size_rtx));
37911 addr = reg;
37913 else if (GET_CODE (addr) == PRE_MODIFY)
37915 rtx reg = XEXP (addr, 0);
37916 rtx expr = XEXP (addr, 1);
37917 gcc_assert (REG_P (reg));
37918 gcc_assert (GET_CODE (expr) == PLUS);
37919 emit_insn (gen_add3_insn (reg, XEXP (expr, 0), XEXP (expr, 1)));
37920 addr = reg;
37923 x = replace_equiv_address (x, copy_addr_to_reg (addr));
37926 return x;
37929 /* Given a memory reference, if it is not in the form for altivec memory
37930 reference instructions (i.e. reg or reg+reg addressing with AND of -16),
37931 convert to the altivec format. */
37934 rs6000_address_for_altivec (rtx x)
37936 gcc_assert (MEM_P (x));
37937 if (!altivec_indexed_or_indirect_operand (x, GET_MODE (x)))
37939 rtx addr = XEXP (x, 0);
37941 if (!legitimate_indexed_address_p (addr, reload_completed)
37942 && !legitimate_indirect_address_p (addr, reload_completed))
37943 addr = copy_to_mode_reg (Pmode, addr);
37945 addr = gen_rtx_AND (Pmode, addr, GEN_INT (-16));
37946 x = change_address (x, GET_MODE (x), addr);
37949 return x;
37952 /* Implement TARGET_LEGITIMATE_CONSTANT_P.
37954 On the RS/6000, all integer constants are acceptable, most won't be valid
37955 for particular insns, though. Only easy FP constants are acceptable. */
37957 static bool
37958 rs6000_legitimate_constant_p (machine_mode mode, rtx x)
37960 if (TARGET_ELF && tls_referenced_p (x))
37961 return false;
37963 return ((GET_CODE (x) != CONST_DOUBLE && GET_CODE (x) != CONST_VECTOR)
37964 || GET_MODE (x) == VOIDmode
37965 || (TARGET_POWERPC64 && mode == DImode)
37966 || easy_fp_constant (x, mode)
37967 || easy_vector_constant (x, mode));
37971 /* Return TRUE iff the sequence ending in LAST sets the static chain. */
37973 static bool
37974 chain_already_loaded (rtx_insn *last)
37976 for (; last != NULL; last = PREV_INSN (last))
37978 if (NONJUMP_INSN_P (last))
37980 rtx patt = PATTERN (last);
37982 if (GET_CODE (patt) == SET)
37984 rtx lhs = XEXP (patt, 0);
37986 if (REG_P (lhs) && REGNO (lhs) == STATIC_CHAIN_REGNUM)
37987 return true;
37991 return false;
37994 /* Expand code to perform a call under the AIX or ELFv2 ABI. */
37996 void
37997 rs6000_call_aix (rtx value, rtx func_desc, rtx flag, rtx cookie)
37999 const bool direct_call_p
38000 = GET_CODE (func_desc) == SYMBOL_REF && SYMBOL_REF_FUNCTION_P (func_desc);
38001 rtx toc_reg = gen_rtx_REG (Pmode, TOC_REGNUM);
38002 rtx toc_load = NULL_RTX;
38003 rtx toc_restore = NULL_RTX;
38004 rtx func_addr;
38005 rtx abi_reg = NULL_RTX;
38006 rtx call[4];
38007 int n_call;
38008 rtx insn;
38010 /* Handle longcall attributes. */
38011 if (INTVAL (cookie) & CALL_LONG)
38012 func_desc = rs6000_longcall_ref (func_desc);
38014 /* Handle indirect calls. */
38015 if (GET_CODE (func_desc) != SYMBOL_REF
38016 || (DEFAULT_ABI == ABI_AIX && !SYMBOL_REF_FUNCTION_P (func_desc)))
38018 /* Save the TOC into its reserved slot before the call,
38019 and prepare to restore it after the call. */
38020 rtx stack_ptr = gen_rtx_REG (Pmode, STACK_POINTER_REGNUM);
38021 rtx stack_toc_offset = GEN_INT (RS6000_TOC_SAVE_SLOT);
38022 rtx stack_toc_mem = gen_frame_mem (Pmode,
38023 gen_rtx_PLUS (Pmode, stack_ptr,
38024 stack_toc_offset));
38025 rtx stack_toc_unspec = gen_rtx_UNSPEC (Pmode,
38026 gen_rtvec (1, stack_toc_offset),
38027 UNSPEC_TOCSLOT);
38028 toc_restore = gen_rtx_SET (toc_reg, stack_toc_unspec);
38030 /* Can we optimize saving the TOC in the prologue or
38031 do we need to do it at every call? */
38032 if (TARGET_SAVE_TOC_INDIRECT && !cfun->calls_alloca)
38033 cfun->machine->save_toc_in_prologue = true;
38034 else
38036 MEM_VOLATILE_P (stack_toc_mem) = 1;
38037 emit_move_insn (stack_toc_mem, toc_reg);
38040 if (DEFAULT_ABI == ABI_ELFv2)
38042 /* A function pointer in the ELFv2 ABI is just a plain address, but
38043 the ABI requires it to be loaded into r12 before the call. */
38044 func_addr = gen_rtx_REG (Pmode, 12);
38045 emit_move_insn (func_addr, func_desc);
38046 abi_reg = func_addr;
38048 else
38050 /* A function pointer under AIX is a pointer to a data area whose
38051 first word contains the actual address of the function, whose
38052 second word contains a pointer to its TOC, and whose third word
38053 contains a value to place in the static chain register (r11).
38054 Note that if we load the static chain, our "trampoline" need
38055 not have any executable code. */
38057 /* Load up address of the actual function. */
38058 func_desc = force_reg (Pmode, func_desc);
38059 func_addr = gen_reg_rtx (Pmode);
38060 emit_move_insn (func_addr, gen_rtx_MEM (Pmode, func_desc));
38062 /* Prepare to load the TOC of the called function. Note that the
38063 TOC load must happen immediately before the actual call so
38064 that unwinding the TOC registers works correctly. See the
38065 comment in frob_update_context. */
38066 rtx func_toc_offset = GEN_INT (GET_MODE_SIZE (Pmode));
38067 rtx func_toc_mem = gen_rtx_MEM (Pmode,
38068 gen_rtx_PLUS (Pmode, func_desc,
38069 func_toc_offset));
38070 toc_load = gen_rtx_USE (VOIDmode, func_toc_mem);
38072 /* If we have a static chain, load it up. But, if the call was
38073 originally direct, the 3rd word has not been written since no
38074 trampoline has been built, so we ought not to load it, lest we
38075 override a static chain value. */
38076 if (!direct_call_p
38077 && TARGET_POINTERS_TO_NESTED_FUNCTIONS
38078 && !chain_already_loaded (get_current_sequence ()->next->last))
38080 rtx sc_reg = gen_rtx_REG (Pmode, STATIC_CHAIN_REGNUM);
38081 rtx func_sc_offset = GEN_INT (2 * GET_MODE_SIZE (Pmode));
38082 rtx func_sc_mem = gen_rtx_MEM (Pmode,
38083 gen_rtx_PLUS (Pmode, func_desc,
38084 func_sc_offset));
38085 emit_move_insn (sc_reg, func_sc_mem);
38086 abi_reg = sc_reg;
38090 else
38092 /* Direct calls use the TOC: for local calls, the callee will
38093 assume the TOC register is set; for non-local calls, the
38094 PLT stub needs the TOC register. */
38095 abi_reg = toc_reg;
38096 func_addr = func_desc;
38099 /* Create the call. */
38100 call[0] = gen_rtx_CALL (VOIDmode, gen_rtx_MEM (SImode, func_addr), flag);
38101 if (value != NULL_RTX)
38102 call[0] = gen_rtx_SET (value, call[0]);
38103 n_call = 1;
38105 if (toc_load)
38106 call[n_call++] = toc_load;
38107 if (toc_restore)
38108 call[n_call++] = toc_restore;
38110 call[n_call++] = gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (Pmode, LR_REGNO));
38112 insn = gen_rtx_PARALLEL (VOIDmode, gen_rtvec_v (n_call, call));
38113 insn = emit_call_insn (insn);
38115 /* Mention all registers defined by the ABI to hold information
38116 as uses in CALL_INSN_FUNCTION_USAGE. */
38117 if (abi_reg)
38118 use_reg (&CALL_INSN_FUNCTION_USAGE (insn), abi_reg);
38121 /* Expand code to perform a sibling call under the AIX or ELFv2 ABI. */
38123 void
38124 rs6000_sibcall_aix (rtx value, rtx func_desc, rtx flag, rtx cookie)
38126 rtx call[2];
38127 rtx insn;
38129 gcc_assert (INTVAL (cookie) == 0);
38131 /* Create the call. */
38132 call[0] = gen_rtx_CALL (VOIDmode, gen_rtx_MEM (SImode, func_desc), flag);
38133 if (value != NULL_RTX)
38134 call[0] = gen_rtx_SET (value, call[0]);
38136 call[1] = simple_return_rtx;
38138 insn = gen_rtx_PARALLEL (VOIDmode, gen_rtvec_v (2, call));
38139 insn = emit_call_insn (insn);
38141 /* Note use of the TOC register. */
38142 use_reg (&CALL_INSN_FUNCTION_USAGE (insn), gen_rtx_REG (Pmode, TOC_REGNUM));
38145 /* Return whether we need to always update the saved TOC pointer when we update
38146 the stack pointer. */
38148 static bool
38149 rs6000_save_toc_in_prologue_p (void)
38151 return (cfun && cfun->machine && cfun->machine->save_toc_in_prologue);
38154 #ifdef HAVE_GAS_HIDDEN
38155 # define USE_HIDDEN_LINKONCE 1
38156 #else
38157 # define USE_HIDDEN_LINKONCE 0
38158 #endif
38160 /* Fills in the label name that should be used for a 476 link stack thunk. */
38162 void
38163 get_ppc476_thunk_name (char name[32])
38165 gcc_assert (TARGET_LINK_STACK);
38167 if (USE_HIDDEN_LINKONCE)
38168 sprintf (name, "__ppc476.get_thunk");
38169 else
38170 ASM_GENERATE_INTERNAL_LABEL (name, "LPPC476_", 0);
38173 /* This function emits the simple thunk routine that is used to preserve
38174 the link stack on the 476 cpu. */
38176 static void rs6000_code_end (void) ATTRIBUTE_UNUSED;
38177 static void
38178 rs6000_code_end (void)
38180 char name[32];
38181 tree decl;
38183 if (!TARGET_LINK_STACK)
38184 return;
38186 get_ppc476_thunk_name (name);
38188 decl = build_decl (BUILTINS_LOCATION, FUNCTION_DECL, get_identifier (name),
38189 build_function_type_list (void_type_node, NULL_TREE));
38190 DECL_RESULT (decl) = build_decl (BUILTINS_LOCATION, RESULT_DECL,
38191 NULL_TREE, void_type_node);
38192 TREE_PUBLIC (decl) = 1;
38193 TREE_STATIC (decl) = 1;
38195 #if RS6000_WEAK
38196 if (USE_HIDDEN_LINKONCE && !TARGET_XCOFF)
38198 cgraph_node::create (decl)->set_comdat_group (DECL_ASSEMBLER_NAME (decl));
38199 targetm.asm_out.unique_section (decl, 0);
38200 switch_to_section (get_named_section (decl, NULL, 0));
38201 DECL_WEAK (decl) = 1;
38202 ASM_WEAKEN_DECL (asm_out_file, decl, name, 0);
38203 targetm.asm_out.globalize_label (asm_out_file, name);
38204 targetm.asm_out.assemble_visibility (decl, VISIBILITY_HIDDEN);
38205 ASM_DECLARE_FUNCTION_NAME (asm_out_file, name, decl);
38207 else
38208 #endif
38210 switch_to_section (text_section);
38211 ASM_OUTPUT_LABEL (asm_out_file, name);
38214 DECL_INITIAL (decl) = make_node (BLOCK);
38215 current_function_decl = decl;
38216 allocate_struct_function (decl, false);
38217 init_function_start (decl);
38218 first_function_block_is_cold = false;
38219 /* Make sure unwind info is emitted for the thunk if needed. */
38220 final_start_function (emit_barrier (), asm_out_file, 1);
38222 fputs ("\tblr\n", asm_out_file);
38224 final_end_function ();
38225 init_insn_lengths ();
38226 free_after_compilation (cfun);
38227 set_cfun (NULL);
38228 current_function_decl = NULL;
38231 /* Add r30 to hard reg set if the prologue sets it up and it is not
38232 pic_offset_table_rtx. */
38234 static void
38235 rs6000_set_up_by_prologue (struct hard_reg_set_container *set)
38237 if (!TARGET_SINGLE_PIC_BASE
38238 && TARGET_TOC
38239 && TARGET_MINIMAL_TOC
38240 && !constant_pool_empty_p ())
38241 add_to_hard_reg_set (&set->set, Pmode, RS6000_PIC_OFFSET_TABLE_REGNUM);
38242 if (cfun->machine->split_stack_argp_used)
38243 add_to_hard_reg_set (&set->set, Pmode, 12);
38245 /* Make sure the hard reg set doesn't include r2, which was possibly added
38246 via PIC_OFFSET_TABLE_REGNUM. */
38247 if (TARGET_TOC)
38248 remove_from_hard_reg_set (&set->set, Pmode, TOC_REGNUM);
38252 /* Helper function for rs6000_split_logical to emit a logical instruction after
38253 spliting the operation to single GPR registers.
38255 DEST is the destination register.
38256 OP1 and OP2 are the input source registers.
38257 CODE is the base operation (AND, IOR, XOR, NOT).
38258 MODE is the machine mode.
38259 If COMPLEMENT_FINAL_P is true, wrap the whole operation with NOT.
38260 If COMPLEMENT_OP1_P is true, wrap operand1 with NOT.
38261 If COMPLEMENT_OP2_P is true, wrap operand2 with NOT. */
38263 static void
38264 rs6000_split_logical_inner (rtx dest,
38265 rtx op1,
38266 rtx op2,
38267 enum rtx_code code,
38268 machine_mode mode,
38269 bool complement_final_p,
38270 bool complement_op1_p,
38271 bool complement_op2_p)
38273 rtx bool_rtx;
38275 /* Optimize AND of 0/0xffffffff and IOR/XOR of 0. */
38276 if (op2 && GET_CODE (op2) == CONST_INT
38277 && (mode == SImode || (mode == DImode && TARGET_POWERPC64))
38278 && !complement_final_p && !complement_op1_p && !complement_op2_p)
38280 HOST_WIDE_INT mask = GET_MODE_MASK (mode);
38281 HOST_WIDE_INT value = INTVAL (op2) & mask;
38283 /* Optimize AND of 0 to just set 0. Optimize AND of -1 to be a move. */
38284 if (code == AND)
38286 if (value == 0)
38288 emit_insn (gen_rtx_SET (dest, const0_rtx));
38289 return;
38292 else if (value == mask)
38294 if (!rtx_equal_p (dest, op1))
38295 emit_insn (gen_rtx_SET (dest, op1));
38296 return;
38300 /* Optimize IOR/XOR of 0 to be a simple move. Split large operations
38301 into separate ORI/ORIS or XORI/XORIS instrucitons. */
38302 else if (code == IOR || code == XOR)
38304 if (value == 0)
38306 if (!rtx_equal_p (dest, op1))
38307 emit_insn (gen_rtx_SET (dest, op1));
38308 return;
38313 if (code == AND && mode == SImode
38314 && !complement_final_p && !complement_op1_p && !complement_op2_p)
38316 emit_insn (gen_andsi3 (dest, op1, op2));
38317 return;
38320 if (complement_op1_p)
38321 op1 = gen_rtx_NOT (mode, op1);
38323 if (complement_op2_p)
38324 op2 = gen_rtx_NOT (mode, op2);
38326 /* For canonical RTL, if only one arm is inverted it is the first. */
38327 if (!complement_op1_p && complement_op2_p)
38328 std::swap (op1, op2);
38330 bool_rtx = ((code == NOT)
38331 ? gen_rtx_NOT (mode, op1)
38332 : gen_rtx_fmt_ee (code, mode, op1, op2));
38334 if (complement_final_p)
38335 bool_rtx = gen_rtx_NOT (mode, bool_rtx);
38337 emit_insn (gen_rtx_SET (dest, bool_rtx));
38340 /* Split a DImode AND/IOR/XOR with a constant on a 32-bit system. These
38341 operations are split immediately during RTL generation to allow for more
38342 optimizations of the AND/IOR/XOR.
38344 OPERANDS is an array containing the destination and two input operands.
38345 CODE is the base operation (AND, IOR, XOR, NOT).
38346 MODE is the machine mode.
38347 If COMPLEMENT_FINAL_P is true, wrap the whole operation with NOT.
38348 If COMPLEMENT_OP1_P is true, wrap operand1 with NOT.
38349 If COMPLEMENT_OP2_P is true, wrap operand2 with NOT.
38350 CLOBBER_REG is either NULL or a scratch register of type CC to allow
38351 formation of the AND instructions. */
38353 static void
38354 rs6000_split_logical_di (rtx operands[3],
38355 enum rtx_code code,
38356 bool complement_final_p,
38357 bool complement_op1_p,
38358 bool complement_op2_p)
38360 const HOST_WIDE_INT lower_32bits = HOST_WIDE_INT_C(0xffffffff);
38361 const HOST_WIDE_INT upper_32bits = ~ lower_32bits;
38362 const HOST_WIDE_INT sign_bit = HOST_WIDE_INT_C(0x80000000);
38363 enum hi_lo { hi = 0, lo = 1 };
38364 rtx op0_hi_lo[2], op1_hi_lo[2], op2_hi_lo[2];
38365 size_t i;
38367 op0_hi_lo[hi] = gen_highpart (SImode, operands[0]);
38368 op1_hi_lo[hi] = gen_highpart (SImode, operands[1]);
38369 op0_hi_lo[lo] = gen_lowpart (SImode, operands[0]);
38370 op1_hi_lo[lo] = gen_lowpart (SImode, operands[1]);
38372 if (code == NOT)
38373 op2_hi_lo[hi] = op2_hi_lo[lo] = NULL_RTX;
38374 else
38376 if (GET_CODE (operands[2]) != CONST_INT)
38378 op2_hi_lo[hi] = gen_highpart_mode (SImode, DImode, operands[2]);
38379 op2_hi_lo[lo] = gen_lowpart (SImode, operands[2]);
38381 else
38383 HOST_WIDE_INT value = INTVAL (operands[2]);
38384 HOST_WIDE_INT value_hi_lo[2];
38386 gcc_assert (!complement_final_p);
38387 gcc_assert (!complement_op1_p);
38388 gcc_assert (!complement_op2_p);
38390 value_hi_lo[hi] = value >> 32;
38391 value_hi_lo[lo] = value & lower_32bits;
38393 for (i = 0; i < 2; i++)
38395 HOST_WIDE_INT sub_value = value_hi_lo[i];
38397 if (sub_value & sign_bit)
38398 sub_value |= upper_32bits;
38400 op2_hi_lo[i] = GEN_INT (sub_value);
38402 /* If this is an AND instruction, check to see if we need to load
38403 the value in a register. */
38404 if (code == AND && sub_value != -1 && sub_value != 0
38405 && !and_operand (op2_hi_lo[i], SImode))
38406 op2_hi_lo[i] = force_reg (SImode, op2_hi_lo[i]);
38411 for (i = 0; i < 2; i++)
38413 /* Split large IOR/XOR operations. */
38414 if ((code == IOR || code == XOR)
38415 && GET_CODE (op2_hi_lo[i]) == CONST_INT
38416 && !complement_final_p
38417 && !complement_op1_p
38418 && !complement_op2_p
38419 && !logical_const_operand (op2_hi_lo[i], SImode))
38421 HOST_WIDE_INT value = INTVAL (op2_hi_lo[i]);
38422 HOST_WIDE_INT hi_16bits = value & HOST_WIDE_INT_C(0xffff0000);
38423 HOST_WIDE_INT lo_16bits = value & HOST_WIDE_INT_C(0x0000ffff);
38424 rtx tmp = gen_reg_rtx (SImode);
38426 /* Make sure the constant is sign extended. */
38427 if ((hi_16bits & sign_bit) != 0)
38428 hi_16bits |= upper_32bits;
38430 rs6000_split_logical_inner (tmp, op1_hi_lo[i], GEN_INT (hi_16bits),
38431 code, SImode, false, false, false);
38433 rs6000_split_logical_inner (op0_hi_lo[i], tmp, GEN_INT (lo_16bits),
38434 code, SImode, false, false, false);
38436 else
38437 rs6000_split_logical_inner (op0_hi_lo[i], op1_hi_lo[i], op2_hi_lo[i],
38438 code, SImode, complement_final_p,
38439 complement_op1_p, complement_op2_p);
38442 return;
38445 /* Split the insns that make up boolean operations operating on multiple GPR
38446 registers. The boolean MD patterns ensure that the inputs either are
38447 exactly the same as the output registers, or there is no overlap.
38449 OPERANDS is an array containing the destination and two input operands.
38450 CODE is the base operation (AND, IOR, XOR, NOT).
38451 If COMPLEMENT_FINAL_P is true, wrap the whole operation with NOT.
38452 If COMPLEMENT_OP1_P is true, wrap operand1 with NOT.
38453 If COMPLEMENT_OP2_P is true, wrap operand2 with NOT. */
38455 void
38456 rs6000_split_logical (rtx operands[3],
38457 enum rtx_code code,
38458 bool complement_final_p,
38459 bool complement_op1_p,
38460 bool complement_op2_p)
38462 machine_mode mode = GET_MODE (operands[0]);
38463 machine_mode sub_mode;
38464 rtx op0, op1, op2;
38465 int sub_size, regno0, regno1, nregs, i;
38467 /* If this is DImode, use the specialized version that can run before
38468 register allocation. */
38469 if (mode == DImode && !TARGET_POWERPC64)
38471 rs6000_split_logical_di (operands, code, complement_final_p,
38472 complement_op1_p, complement_op2_p);
38473 return;
38476 op0 = operands[0];
38477 op1 = operands[1];
38478 op2 = (code == NOT) ? NULL_RTX : operands[2];
38479 sub_mode = (TARGET_POWERPC64) ? DImode : SImode;
38480 sub_size = GET_MODE_SIZE (sub_mode);
38481 regno0 = REGNO (op0);
38482 regno1 = REGNO (op1);
38484 gcc_assert (reload_completed);
38485 gcc_assert (IN_RANGE (regno0, FIRST_GPR_REGNO, LAST_GPR_REGNO));
38486 gcc_assert (IN_RANGE (regno1, FIRST_GPR_REGNO, LAST_GPR_REGNO));
38488 nregs = rs6000_hard_regno_nregs[(int)mode][regno0];
38489 gcc_assert (nregs > 1);
38491 if (op2 && REG_P (op2))
38492 gcc_assert (IN_RANGE (REGNO (op2), FIRST_GPR_REGNO, LAST_GPR_REGNO));
38494 for (i = 0; i < nregs; i++)
38496 int offset = i * sub_size;
38497 rtx sub_op0 = simplify_subreg (sub_mode, op0, mode, offset);
38498 rtx sub_op1 = simplify_subreg (sub_mode, op1, mode, offset);
38499 rtx sub_op2 = ((code == NOT)
38500 ? NULL_RTX
38501 : simplify_subreg (sub_mode, op2, mode, offset));
38503 rs6000_split_logical_inner (sub_op0, sub_op1, sub_op2, code, sub_mode,
38504 complement_final_p, complement_op1_p,
38505 complement_op2_p);
38508 return;
38512 /* Return true if the peephole2 can combine a load involving a combination of
38513 an addis instruction and a load with an offset that can be fused together on
38514 a power8. */
38516 bool
38517 fusion_gpr_load_p (rtx addis_reg, /* register set via addis. */
38518 rtx addis_value, /* addis value. */
38519 rtx target, /* target register that is loaded. */
38520 rtx mem) /* bottom part of the memory addr. */
38522 rtx addr;
38523 rtx base_reg;
38525 /* Validate arguments. */
38526 if (!base_reg_operand (addis_reg, GET_MODE (addis_reg)))
38527 return false;
38529 if (!base_reg_operand (target, GET_MODE (target)))
38530 return false;
38532 if (!fusion_gpr_addis (addis_value, GET_MODE (addis_value)))
38533 return false;
38535 /* Allow sign/zero extension. */
38536 if (GET_CODE (mem) == ZERO_EXTEND
38537 || (GET_CODE (mem) == SIGN_EXTEND && TARGET_P8_FUSION_SIGN))
38538 mem = XEXP (mem, 0);
38540 if (!MEM_P (mem))
38541 return false;
38543 if (!fusion_gpr_mem_load (mem, GET_MODE (mem)))
38544 return false;
38546 addr = XEXP (mem, 0); /* either PLUS or LO_SUM. */
38547 if (GET_CODE (addr) != PLUS && GET_CODE (addr) != LO_SUM)
38548 return false;
38550 /* Validate that the register used to load the high value is either the
38551 register being loaded, or we can safely replace its use.
38553 This function is only called from the peephole2 pass and we assume that
38554 there are 2 instructions in the peephole (addis and load), so we want to
38555 check if the target register was not used in the memory address and the
38556 register to hold the addis result is dead after the peephole. */
38557 if (REGNO (addis_reg) != REGNO (target))
38559 if (reg_mentioned_p (target, mem))
38560 return false;
38562 if (!peep2_reg_dead_p (2, addis_reg))
38563 return false;
38565 /* If the target register being loaded is the stack pointer, we must
38566 avoid loading any other value into it, even temporarily. */
38567 if (REG_P (target) && REGNO (target) == STACK_POINTER_REGNUM)
38568 return false;
38571 base_reg = XEXP (addr, 0);
38572 return REGNO (addis_reg) == REGNO (base_reg);
38575 /* During the peephole2 pass, adjust and expand the insns for a load fusion
38576 sequence. We adjust the addis register to use the target register. If the
38577 load sign extends, we adjust the code to do the zero extending load, and an
38578 explicit sign extension later since the fusion only covers zero extending
38579 loads.
38581 The operands are:
38582 operands[0] register set with addis (to be replaced with target)
38583 operands[1] value set via addis
38584 operands[2] target register being loaded
38585 operands[3] D-form memory reference using operands[0]. */
38587 void
38588 expand_fusion_gpr_load (rtx *operands)
38590 rtx addis_value = operands[1];
38591 rtx target = operands[2];
38592 rtx orig_mem = operands[3];
38593 rtx new_addr, new_mem, orig_addr, offset;
38594 enum rtx_code plus_or_lo_sum;
38595 machine_mode target_mode = GET_MODE (target);
38596 machine_mode extend_mode = target_mode;
38597 machine_mode ptr_mode = Pmode;
38598 enum rtx_code extend = UNKNOWN;
38600 if (GET_CODE (orig_mem) == ZERO_EXTEND
38601 || (TARGET_P8_FUSION_SIGN && GET_CODE (orig_mem) == SIGN_EXTEND))
38603 extend = GET_CODE (orig_mem);
38604 orig_mem = XEXP (orig_mem, 0);
38605 target_mode = GET_MODE (orig_mem);
38608 gcc_assert (MEM_P (orig_mem));
38610 orig_addr = XEXP (orig_mem, 0);
38611 plus_or_lo_sum = GET_CODE (orig_addr);
38612 gcc_assert (plus_or_lo_sum == PLUS || plus_or_lo_sum == LO_SUM);
38614 offset = XEXP (orig_addr, 1);
38615 new_addr = gen_rtx_fmt_ee (plus_or_lo_sum, ptr_mode, addis_value, offset);
38616 new_mem = replace_equiv_address_nv (orig_mem, new_addr, false);
38618 if (extend != UNKNOWN)
38619 new_mem = gen_rtx_fmt_e (ZERO_EXTEND, extend_mode, new_mem);
38621 new_mem = gen_rtx_UNSPEC (extend_mode, gen_rtvec (1, new_mem),
38622 UNSPEC_FUSION_GPR);
38623 emit_insn (gen_rtx_SET (target, new_mem));
38625 if (extend == SIGN_EXTEND)
38627 int sub_off = ((BYTES_BIG_ENDIAN)
38628 ? GET_MODE_SIZE (extend_mode) - GET_MODE_SIZE (target_mode)
38629 : 0);
38630 rtx sign_reg
38631 = simplify_subreg (target_mode, target, extend_mode, sub_off);
38633 emit_insn (gen_rtx_SET (target,
38634 gen_rtx_SIGN_EXTEND (extend_mode, sign_reg)));
38637 return;
38640 /* Emit the addis instruction that will be part of a fused instruction
38641 sequence. */
38643 void
38644 emit_fusion_addis (rtx target, rtx addis_value, const char *comment,
38645 const char *mode_name)
38647 rtx fuse_ops[10];
38648 char insn_template[80];
38649 const char *addis_str = NULL;
38650 const char *comment_str = ASM_COMMENT_START;
38652 if (*comment_str == ' ')
38653 comment_str++;
38655 /* Emit the addis instruction. */
38656 fuse_ops[0] = target;
38657 if (satisfies_constraint_L (addis_value))
38659 fuse_ops[1] = addis_value;
38660 addis_str = "lis %0,%v1";
38663 else if (GET_CODE (addis_value) == PLUS)
38665 rtx op0 = XEXP (addis_value, 0);
38666 rtx op1 = XEXP (addis_value, 1);
38668 if (REG_P (op0) && CONST_INT_P (op1)
38669 && satisfies_constraint_L (op1))
38671 fuse_ops[1] = op0;
38672 fuse_ops[2] = op1;
38673 addis_str = "addis %0,%1,%v2";
38677 else if (GET_CODE (addis_value) == HIGH)
38679 rtx value = XEXP (addis_value, 0);
38680 if (GET_CODE (value) == UNSPEC && XINT (value, 1) == UNSPEC_TOCREL)
38682 fuse_ops[1] = XVECEXP (value, 0, 0); /* symbol ref. */
38683 fuse_ops[2] = XVECEXP (value, 0, 1); /* TOC register. */
38684 if (TARGET_ELF)
38685 addis_str = "addis %0,%2,%1@toc@ha";
38687 else if (TARGET_XCOFF)
38688 addis_str = "addis %0,%1@u(%2)";
38690 else
38691 gcc_unreachable ();
38694 else if (GET_CODE (value) == PLUS)
38696 rtx op0 = XEXP (value, 0);
38697 rtx op1 = XEXP (value, 1);
38699 if (GET_CODE (op0) == UNSPEC
38700 && XINT (op0, 1) == UNSPEC_TOCREL
38701 && CONST_INT_P (op1))
38703 fuse_ops[1] = XVECEXP (op0, 0, 0); /* symbol ref. */
38704 fuse_ops[2] = XVECEXP (op0, 0, 1); /* TOC register. */
38705 fuse_ops[3] = op1;
38706 if (TARGET_ELF)
38707 addis_str = "addis %0,%2,%1+%3@toc@ha";
38709 else if (TARGET_XCOFF)
38710 addis_str = "addis %0,%1+%3@u(%2)";
38712 else
38713 gcc_unreachable ();
38717 else if (satisfies_constraint_L (value))
38719 fuse_ops[1] = value;
38720 addis_str = "lis %0,%v1";
38723 else if (TARGET_ELF && !TARGET_POWERPC64 && CONSTANT_P (value))
38725 fuse_ops[1] = value;
38726 addis_str = "lis %0,%1@ha";
38730 if (!addis_str)
38731 fatal_insn ("Could not generate addis value for fusion", addis_value);
38733 sprintf (insn_template, "%s\t\t%s %s, type %s", addis_str, comment_str,
38734 comment, mode_name);
38735 output_asm_insn (insn_template, fuse_ops);
38738 /* Emit a D-form load or store instruction that is the second instruction
38739 of a fusion sequence. */
38741 void
38742 emit_fusion_load_store (rtx load_store_reg, rtx addis_reg, rtx offset,
38743 const char *insn_str)
38745 rtx fuse_ops[10];
38746 char insn_template[80];
38748 fuse_ops[0] = load_store_reg;
38749 fuse_ops[1] = addis_reg;
38751 if (CONST_INT_P (offset) && satisfies_constraint_I (offset))
38753 sprintf (insn_template, "%s %%0,%%2(%%1)", insn_str);
38754 fuse_ops[2] = offset;
38755 output_asm_insn (insn_template, fuse_ops);
38758 else if (GET_CODE (offset) == UNSPEC
38759 && XINT (offset, 1) == UNSPEC_TOCREL)
38761 if (TARGET_ELF)
38762 sprintf (insn_template, "%s %%0,%%2@toc@l(%%1)", insn_str);
38764 else if (TARGET_XCOFF)
38765 sprintf (insn_template, "%s %%0,%%2@l(%%1)", insn_str);
38767 else
38768 gcc_unreachable ();
38770 fuse_ops[2] = XVECEXP (offset, 0, 0);
38771 output_asm_insn (insn_template, fuse_ops);
38774 else if (GET_CODE (offset) == PLUS
38775 && GET_CODE (XEXP (offset, 0)) == UNSPEC
38776 && XINT (XEXP (offset, 0), 1) == UNSPEC_TOCREL
38777 && CONST_INT_P (XEXP (offset, 1)))
38779 rtx tocrel_unspec = XEXP (offset, 0);
38780 if (TARGET_ELF)
38781 sprintf (insn_template, "%s %%0,%%2+%%3@toc@l(%%1)", insn_str);
38783 else if (TARGET_XCOFF)
38784 sprintf (insn_template, "%s %%0,%%2+%%3@l(%%1)", insn_str);
38786 else
38787 gcc_unreachable ();
38789 fuse_ops[2] = XVECEXP (tocrel_unspec, 0, 0);
38790 fuse_ops[3] = XEXP (offset, 1);
38791 output_asm_insn (insn_template, fuse_ops);
38794 else if (TARGET_ELF && !TARGET_POWERPC64 && CONSTANT_P (offset))
38796 sprintf (insn_template, "%s %%0,%%2@l(%%1)", insn_str);
38798 fuse_ops[2] = offset;
38799 output_asm_insn (insn_template, fuse_ops);
38802 else
38803 fatal_insn ("Unable to generate load/store offset for fusion", offset);
38805 return;
38808 /* Wrap a TOC address that can be fused to indicate that special fusion
38809 processing is needed. */
38812 fusion_wrap_memory_address (rtx old_mem)
38814 rtx old_addr = XEXP (old_mem, 0);
38815 rtvec v = gen_rtvec (1, old_addr);
38816 rtx new_addr = gen_rtx_UNSPEC (Pmode, v, UNSPEC_FUSION_ADDIS);
38817 return replace_equiv_address_nv (old_mem, new_addr, false);
38820 /* Given an address, convert it into the addis and load offset parts. Addresses
38821 created during the peephole2 process look like:
38822 (lo_sum (high (unspec [(sym)] UNSPEC_TOCREL))
38823 (unspec [(...)] UNSPEC_TOCREL))
38825 Addresses created via toc fusion look like:
38826 (unspec [(unspec [(...)] UNSPEC_TOCREL)] UNSPEC_FUSION_ADDIS)) */
38828 static void
38829 fusion_split_address (rtx addr, rtx *p_hi, rtx *p_lo)
38831 rtx hi, lo;
38833 if (GET_CODE (addr) == UNSPEC && XINT (addr, 1) == UNSPEC_FUSION_ADDIS)
38835 lo = XVECEXP (addr, 0, 0);
38836 hi = gen_rtx_HIGH (Pmode, lo);
38838 else if (GET_CODE (addr) == PLUS || GET_CODE (addr) == LO_SUM)
38840 hi = XEXP (addr, 0);
38841 lo = XEXP (addr, 1);
38843 else
38844 gcc_unreachable ();
38846 *p_hi = hi;
38847 *p_lo = lo;
38850 /* Return a string to fuse an addis instruction with a gpr load to the same
38851 register that we loaded up the addis instruction. The address that is used
38852 is the logical address that was formed during peephole2:
38853 (lo_sum (high) (low-part))
38855 Or the address is the TOC address that is wrapped before register allocation:
38856 (unspec [(addr) (toc-reg)] UNSPEC_FUSION_ADDIS)
38858 The code is complicated, so we call output_asm_insn directly, and just
38859 return "". */
38861 const char *
38862 emit_fusion_gpr_load (rtx target, rtx mem)
38864 rtx addis_value;
38865 rtx addr;
38866 rtx load_offset;
38867 const char *load_str = NULL;
38868 const char *mode_name = NULL;
38869 machine_mode mode;
38871 if (GET_CODE (mem) == ZERO_EXTEND)
38872 mem = XEXP (mem, 0);
38874 gcc_assert (REG_P (target) && MEM_P (mem));
38876 addr = XEXP (mem, 0);
38877 fusion_split_address (addr, &addis_value, &load_offset);
38879 /* Now emit the load instruction to the same register. */
38880 mode = GET_MODE (mem);
38881 switch (mode)
38883 case E_QImode:
38884 mode_name = "char";
38885 load_str = "lbz";
38886 break;
38888 case E_HImode:
38889 mode_name = "short";
38890 load_str = "lhz";
38891 break;
38893 case E_SImode:
38894 case E_SFmode:
38895 mode_name = (mode == SFmode) ? "float" : "int";
38896 load_str = "lwz";
38897 break;
38899 case E_DImode:
38900 case E_DFmode:
38901 gcc_assert (TARGET_POWERPC64);
38902 mode_name = (mode == DFmode) ? "double" : "long";
38903 load_str = "ld";
38904 break;
38906 default:
38907 fatal_insn ("Bad GPR fusion", gen_rtx_SET (target, mem));
38910 /* Emit the addis instruction. */
38911 emit_fusion_addis (target, addis_value, "gpr load fusion", mode_name);
38913 /* Emit the D-form load instruction. */
38914 emit_fusion_load_store (target, target, load_offset, load_str);
38916 return "";
38920 /* Return true if the peephole2 can combine a load/store involving a
38921 combination of an addis instruction and the memory operation. This was
38922 added to the ISA 3.0 (power9) hardware. */
38924 bool
38925 fusion_p9_p (rtx addis_reg, /* register set via addis. */
38926 rtx addis_value, /* addis value. */
38927 rtx dest, /* destination (memory or register). */
38928 rtx src) /* source (register or memory). */
38930 rtx addr, mem, offset;
38931 machine_mode mode = GET_MODE (src);
38933 /* Validate arguments. */
38934 if (!base_reg_operand (addis_reg, GET_MODE (addis_reg)))
38935 return false;
38937 if (!fusion_gpr_addis (addis_value, GET_MODE (addis_value)))
38938 return false;
38940 /* Ignore extend operations that are part of the load. */
38941 if (GET_CODE (src) == FLOAT_EXTEND || GET_CODE (src) == ZERO_EXTEND)
38942 src = XEXP (src, 0);
38944 /* Test for memory<-register or register<-memory. */
38945 if (fpr_reg_operand (src, mode) || int_reg_operand (src, mode))
38947 if (!MEM_P (dest))
38948 return false;
38950 mem = dest;
38953 else if (MEM_P (src))
38955 if (!fpr_reg_operand (dest, mode) && !int_reg_operand (dest, mode))
38956 return false;
38958 mem = src;
38961 else
38962 return false;
38964 addr = XEXP (mem, 0); /* either PLUS or LO_SUM. */
38965 if (GET_CODE (addr) == PLUS)
38967 if (!rtx_equal_p (addis_reg, XEXP (addr, 0)))
38968 return false;
38970 return satisfies_constraint_I (XEXP (addr, 1));
38973 else if (GET_CODE (addr) == LO_SUM)
38975 if (!rtx_equal_p (addis_reg, XEXP (addr, 0)))
38976 return false;
38978 offset = XEXP (addr, 1);
38979 if (TARGET_XCOFF || (TARGET_ELF && TARGET_POWERPC64))
38980 return small_toc_ref (offset, GET_MODE (offset));
38982 else if (TARGET_ELF && !TARGET_POWERPC64)
38983 return CONSTANT_P (offset);
38986 return false;
38989 /* During the peephole2 pass, adjust and expand the insns for an extended fusion
38990 load sequence.
38992 The operands are:
38993 operands[0] register set with addis
38994 operands[1] value set via addis
38995 operands[2] target register being loaded
38996 operands[3] D-form memory reference using operands[0].
38998 This is similar to the fusion introduced with power8, except it scales to
38999 both loads/stores and does not require the result register to be the same as
39000 the base register. At the moment, we only do this if register set with addis
39001 is dead. */
39003 void
39004 expand_fusion_p9_load (rtx *operands)
39006 rtx tmp_reg = operands[0];
39007 rtx addis_value = operands[1];
39008 rtx target = operands[2];
39009 rtx orig_mem = operands[3];
39010 rtx new_addr, new_mem, orig_addr, offset, set, clobber, insn;
39011 enum rtx_code plus_or_lo_sum;
39012 machine_mode target_mode = GET_MODE (target);
39013 machine_mode extend_mode = target_mode;
39014 machine_mode ptr_mode = Pmode;
39015 enum rtx_code extend = UNKNOWN;
39017 if (GET_CODE (orig_mem) == FLOAT_EXTEND || GET_CODE (orig_mem) == ZERO_EXTEND)
39019 extend = GET_CODE (orig_mem);
39020 orig_mem = XEXP (orig_mem, 0);
39021 target_mode = GET_MODE (orig_mem);
39024 gcc_assert (MEM_P (orig_mem));
39026 orig_addr = XEXP (orig_mem, 0);
39027 plus_or_lo_sum = GET_CODE (orig_addr);
39028 gcc_assert (plus_or_lo_sum == PLUS || plus_or_lo_sum == LO_SUM);
39030 offset = XEXP (orig_addr, 1);
39031 new_addr = gen_rtx_fmt_ee (plus_or_lo_sum, ptr_mode, addis_value, offset);
39032 new_mem = replace_equiv_address_nv (orig_mem, new_addr, false);
39034 if (extend != UNKNOWN)
39035 new_mem = gen_rtx_fmt_e (extend, extend_mode, new_mem);
39037 new_mem = gen_rtx_UNSPEC (extend_mode, gen_rtvec (1, new_mem),
39038 UNSPEC_FUSION_P9);
39040 set = gen_rtx_SET (target, new_mem);
39041 clobber = gen_rtx_CLOBBER (VOIDmode, tmp_reg);
39042 insn = gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, set, clobber));
39043 emit_insn (insn);
39045 return;
39048 /* During the peephole2 pass, adjust and expand the insns for an extended fusion
39049 store sequence.
39051 The operands are:
39052 operands[0] register set with addis
39053 operands[1] value set via addis
39054 operands[2] target D-form memory being stored to
39055 operands[3] register being stored
39057 This is similar to the fusion introduced with power8, except it scales to
39058 both loads/stores and does not require the result register to be the same as
39059 the base register. At the moment, we only do this if register set with addis
39060 is dead. */
39062 void
39063 expand_fusion_p9_store (rtx *operands)
39065 rtx tmp_reg = operands[0];
39066 rtx addis_value = operands[1];
39067 rtx orig_mem = operands[2];
39068 rtx src = operands[3];
39069 rtx new_addr, new_mem, orig_addr, offset, set, clobber, insn, new_src;
39070 enum rtx_code plus_or_lo_sum;
39071 machine_mode target_mode = GET_MODE (orig_mem);
39072 machine_mode ptr_mode = Pmode;
39074 gcc_assert (MEM_P (orig_mem));
39076 orig_addr = XEXP (orig_mem, 0);
39077 plus_or_lo_sum = GET_CODE (orig_addr);
39078 gcc_assert (plus_or_lo_sum == PLUS || plus_or_lo_sum == LO_SUM);
39080 offset = XEXP (orig_addr, 1);
39081 new_addr = gen_rtx_fmt_ee (plus_or_lo_sum, ptr_mode, addis_value, offset);
39082 new_mem = replace_equiv_address_nv (orig_mem, new_addr, false);
39084 new_src = gen_rtx_UNSPEC (target_mode, gen_rtvec (1, src),
39085 UNSPEC_FUSION_P9);
39087 set = gen_rtx_SET (new_mem, new_src);
39088 clobber = gen_rtx_CLOBBER (VOIDmode, tmp_reg);
39089 insn = gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, set, clobber));
39090 emit_insn (insn);
39092 return;
39095 /* Return a string to fuse an addis instruction with a load using extended
39096 fusion. The address that is used is the logical address that was formed
39097 during peephole2: (lo_sum (high) (low-part))
39099 The code is complicated, so we call output_asm_insn directly, and just
39100 return "". */
39102 const char *
39103 emit_fusion_p9_load (rtx reg, rtx mem, rtx tmp_reg)
39105 machine_mode mode = GET_MODE (reg);
39106 rtx hi;
39107 rtx lo;
39108 rtx addr;
39109 const char *load_string;
39110 int r;
39112 if (GET_CODE (mem) == FLOAT_EXTEND || GET_CODE (mem) == ZERO_EXTEND)
39114 mem = XEXP (mem, 0);
39115 mode = GET_MODE (mem);
39118 if (GET_CODE (reg) == SUBREG)
39120 gcc_assert (SUBREG_BYTE (reg) == 0);
39121 reg = SUBREG_REG (reg);
39124 if (!REG_P (reg))
39125 fatal_insn ("emit_fusion_p9_load, bad reg #1", reg);
39127 r = REGNO (reg);
39128 if (FP_REGNO_P (r))
39130 if (mode == SFmode)
39131 load_string = "lfs";
39132 else if (mode == DFmode || mode == DImode)
39133 load_string = "lfd";
39134 else
39135 gcc_unreachable ();
39137 else if (ALTIVEC_REGNO_P (r) && TARGET_P9_VECTOR)
39139 if (mode == SFmode)
39140 load_string = "lxssp";
39141 else if (mode == DFmode || mode == DImode)
39142 load_string = "lxsd";
39143 else
39144 gcc_unreachable ();
39146 else if (INT_REGNO_P (r))
39148 switch (mode)
39150 case E_QImode:
39151 load_string = "lbz";
39152 break;
39153 case E_HImode:
39154 load_string = "lhz";
39155 break;
39156 case E_SImode:
39157 case E_SFmode:
39158 load_string = "lwz";
39159 break;
39160 case E_DImode:
39161 case E_DFmode:
39162 if (!TARGET_POWERPC64)
39163 gcc_unreachable ();
39164 load_string = "ld";
39165 break;
39166 default:
39167 gcc_unreachable ();
39170 else
39171 fatal_insn ("emit_fusion_p9_load, bad reg #2", reg);
39173 if (!MEM_P (mem))
39174 fatal_insn ("emit_fusion_p9_load not MEM", mem);
39176 addr = XEXP (mem, 0);
39177 fusion_split_address (addr, &hi, &lo);
39179 /* Emit the addis instruction. */
39180 emit_fusion_addis (tmp_reg, hi, "power9 load fusion", GET_MODE_NAME (mode));
39182 /* Emit the D-form load instruction. */
39183 emit_fusion_load_store (reg, tmp_reg, lo, load_string);
39185 return "";
39188 /* Return a string to fuse an addis instruction with a store using extended
39189 fusion. The address that is used is the logical address that was formed
39190 during peephole2: (lo_sum (high) (low-part))
39192 The code is complicated, so we call output_asm_insn directly, and just
39193 return "". */
39195 const char *
39196 emit_fusion_p9_store (rtx mem, rtx reg, rtx tmp_reg)
39198 machine_mode mode = GET_MODE (reg);
39199 rtx hi;
39200 rtx lo;
39201 rtx addr;
39202 const char *store_string;
39203 int r;
39205 if (GET_CODE (reg) == SUBREG)
39207 gcc_assert (SUBREG_BYTE (reg) == 0);
39208 reg = SUBREG_REG (reg);
39211 if (!REG_P (reg))
39212 fatal_insn ("emit_fusion_p9_store, bad reg #1", reg);
39214 r = REGNO (reg);
39215 if (FP_REGNO_P (r))
39217 if (mode == SFmode)
39218 store_string = "stfs";
39219 else if (mode == DFmode)
39220 store_string = "stfd";
39221 else
39222 gcc_unreachable ();
39224 else if (ALTIVEC_REGNO_P (r) && TARGET_P9_VECTOR)
39226 if (mode == SFmode)
39227 store_string = "stxssp";
39228 else if (mode == DFmode || mode == DImode)
39229 store_string = "stxsd";
39230 else
39231 gcc_unreachable ();
39233 else if (INT_REGNO_P (r))
39235 switch (mode)
39237 case E_QImode:
39238 store_string = "stb";
39239 break;
39240 case E_HImode:
39241 store_string = "sth";
39242 break;
39243 case E_SImode:
39244 case E_SFmode:
39245 store_string = "stw";
39246 break;
39247 case E_DImode:
39248 case E_DFmode:
39249 if (!TARGET_POWERPC64)
39250 gcc_unreachable ();
39251 store_string = "std";
39252 break;
39253 default:
39254 gcc_unreachable ();
39257 else
39258 fatal_insn ("emit_fusion_p9_store, bad reg #2", reg);
39260 if (!MEM_P (mem))
39261 fatal_insn ("emit_fusion_p9_store not MEM", mem);
39263 addr = XEXP (mem, 0);
39264 fusion_split_address (addr, &hi, &lo);
39266 /* Emit the addis instruction. */
39267 emit_fusion_addis (tmp_reg, hi, "power9 store fusion", GET_MODE_NAME (mode));
39269 /* Emit the D-form load instruction. */
39270 emit_fusion_load_store (reg, tmp_reg, lo, store_string);
39272 return "";
39275 #ifdef RS6000_GLIBC_ATOMIC_FENV
39276 /* Function declarations for rs6000_atomic_assign_expand_fenv. */
39277 static tree atomic_hold_decl, atomic_clear_decl, atomic_update_decl;
39278 #endif
39280 /* Implement TARGET_ATOMIC_ASSIGN_EXPAND_FENV hook. */
39282 static void
39283 rs6000_atomic_assign_expand_fenv (tree *hold, tree *clear, tree *update)
39285 if (!TARGET_HARD_FLOAT)
39287 #ifdef RS6000_GLIBC_ATOMIC_FENV
39288 if (atomic_hold_decl == NULL_TREE)
39290 atomic_hold_decl
39291 = build_decl (BUILTINS_LOCATION, FUNCTION_DECL,
39292 get_identifier ("__atomic_feholdexcept"),
39293 build_function_type_list (void_type_node,
39294 double_ptr_type_node,
39295 NULL_TREE));
39296 TREE_PUBLIC (atomic_hold_decl) = 1;
39297 DECL_EXTERNAL (atomic_hold_decl) = 1;
39300 if (atomic_clear_decl == NULL_TREE)
39302 atomic_clear_decl
39303 = build_decl (BUILTINS_LOCATION, FUNCTION_DECL,
39304 get_identifier ("__atomic_feclearexcept"),
39305 build_function_type_list (void_type_node,
39306 NULL_TREE));
39307 TREE_PUBLIC (atomic_clear_decl) = 1;
39308 DECL_EXTERNAL (atomic_clear_decl) = 1;
39311 tree const_double = build_qualified_type (double_type_node,
39312 TYPE_QUAL_CONST);
39313 tree const_double_ptr = build_pointer_type (const_double);
39314 if (atomic_update_decl == NULL_TREE)
39316 atomic_update_decl
39317 = build_decl (BUILTINS_LOCATION, FUNCTION_DECL,
39318 get_identifier ("__atomic_feupdateenv"),
39319 build_function_type_list (void_type_node,
39320 const_double_ptr,
39321 NULL_TREE));
39322 TREE_PUBLIC (atomic_update_decl) = 1;
39323 DECL_EXTERNAL (atomic_update_decl) = 1;
39326 tree fenv_var = create_tmp_var_raw (double_type_node);
39327 TREE_ADDRESSABLE (fenv_var) = 1;
39328 tree fenv_addr = build1 (ADDR_EXPR, double_ptr_type_node, fenv_var);
39330 *hold = build_call_expr (atomic_hold_decl, 1, fenv_addr);
39331 *clear = build_call_expr (atomic_clear_decl, 0);
39332 *update = build_call_expr (atomic_update_decl, 1,
39333 fold_convert (const_double_ptr, fenv_addr));
39334 #endif
39335 return;
39338 tree mffs = rs6000_builtin_decls[RS6000_BUILTIN_MFFS];
39339 tree mtfsf = rs6000_builtin_decls[RS6000_BUILTIN_MTFSF];
39340 tree call_mffs = build_call_expr (mffs, 0);
39342 /* Generates the equivalent of feholdexcept (&fenv_var)
39344 *fenv_var = __builtin_mffs ();
39345 double fenv_hold;
39346 *(uint64_t*)&fenv_hold = *(uint64_t*)fenv_var & 0xffffffff00000007LL;
39347 __builtin_mtfsf (0xff, fenv_hold); */
39349 /* Mask to clear everything except for the rounding modes and non-IEEE
39350 arithmetic flag. */
39351 const unsigned HOST_WIDE_INT hold_exception_mask =
39352 HOST_WIDE_INT_C (0xffffffff00000007);
39354 tree fenv_var = create_tmp_var_raw (double_type_node);
39356 tree hold_mffs = build2 (MODIFY_EXPR, void_type_node, fenv_var, call_mffs);
39358 tree fenv_llu = build1 (VIEW_CONVERT_EXPR, uint64_type_node, fenv_var);
39359 tree fenv_llu_and = build2 (BIT_AND_EXPR, uint64_type_node, fenv_llu,
39360 build_int_cst (uint64_type_node,
39361 hold_exception_mask));
39363 tree fenv_hold_mtfsf = build1 (VIEW_CONVERT_EXPR, double_type_node,
39364 fenv_llu_and);
39366 tree hold_mtfsf = build_call_expr (mtfsf, 2,
39367 build_int_cst (unsigned_type_node, 0xff),
39368 fenv_hold_mtfsf);
39370 *hold = build2 (COMPOUND_EXPR, void_type_node, hold_mffs, hold_mtfsf);
39372 /* Generates the equivalent of feclearexcept (FE_ALL_EXCEPT):
39374 double fenv_clear = __builtin_mffs ();
39375 *(uint64_t)&fenv_clear &= 0xffffffff00000000LL;
39376 __builtin_mtfsf (0xff, fenv_clear); */
39378 /* Mask to clear everything except for the rounding modes and non-IEEE
39379 arithmetic flag. */
39380 const unsigned HOST_WIDE_INT clear_exception_mask =
39381 HOST_WIDE_INT_C (0xffffffff00000000);
39383 tree fenv_clear = create_tmp_var_raw (double_type_node);
39385 tree clear_mffs = build2 (MODIFY_EXPR, void_type_node, fenv_clear, call_mffs);
39387 tree fenv_clean_llu = build1 (VIEW_CONVERT_EXPR, uint64_type_node, fenv_clear);
39388 tree fenv_clear_llu_and = build2 (BIT_AND_EXPR, uint64_type_node,
39389 fenv_clean_llu,
39390 build_int_cst (uint64_type_node,
39391 clear_exception_mask));
39393 tree fenv_clear_mtfsf = build1 (VIEW_CONVERT_EXPR, double_type_node,
39394 fenv_clear_llu_and);
39396 tree clear_mtfsf = build_call_expr (mtfsf, 2,
39397 build_int_cst (unsigned_type_node, 0xff),
39398 fenv_clear_mtfsf);
39400 *clear = build2 (COMPOUND_EXPR, void_type_node, clear_mffs, clear_mtfsf);
39402 /* Generates the equivalent of feupdateenv (&fenv_var)
39404 double old_fenv = __builtin_mffs ();
39405 double fenv_update;
39406 *(uint64_t*)&fenv_update = (*(uint64_t*)&old & 0xffffffff1fffff00LL) |
39407 (*(uint64_t*)fenv_var 0x1ff80fff);
39408 __builtin_mtfsf (0xff, fenv_update); */
39410 const unsigned HOST_WIDE_INT update_exception_mask =
39411 HOST_WIDE_INT_C (0xffffffff1fffff00);
39412 const unsigned HOST_WIDE_INT new_exception_mask =
39413 HOST_WIDE_INT_C (0x1ff80fff);
39415 tree old_fenv = create_tmp_var_raw (double_type_node);
39416 tree update_mffs = build2 (MODIFY_EXPR, void_type_node, old_fenv, call_mffs);
39418 tree old_llu = build1 (VIEW_CONVERT_EXPR, uint64_type_node, old_fenv);
39419 tree old_llu_and = build2 (BIT_AND_EXPR, uint64_type_node, old_llu,
39420 build_int_cst (uint64_type_node,
39421 update_exception_mask));
39423 tree new_llu_and = build2 (BIT_AND_EXPR, uint64_type_node, fenv_llu,
39424 build_int_cst (uint64_type_node,
39425 new_exception_mask));
39427 tree new_llu_mask = build2 (BIT_IOR_EXPR, uint64_type_node,
39428 old_llu_and, new_llu_and);
39430 tree fenv_update_mtfsf = build1 (VIEW_CONVERT_EXPR, double_type_node,
39431 new_llu_mask);
39433 tree update_mtfsf = build_call_expr (mtfsf, 2,
39434 build_int_cst (unsigned_type_node, 0xff),
39435 fenv_update_mtfsf);
39437 *update = build2 (COMPOUND_EXPR, void_type_node, update_mffs, update_mtfsf);
39440 void
39441 rs6000_generate_float2_code (bool signed_convert, rtx dst, rtx src1, rtx src2)
39443 rtx rtx_tmp0, rtx_tmp1, rtx_tmp2, rtx_tmp3;
39445 rtx_tmp0 = gen_reg_rtx (V2DImode);
39446 rtx_tmp1 = gen_reg_rtx (V2DImode);
39448 /* The destination of the vmrgew instruction layout is:
39449 rtx_tmp2[0] rtx_tmp3[0] rtx_tmp2[1] rtx_tmp3[0].
39450 Setup rtx_tmp0 and rtx_tmp1 to ensure the order of the elements after the
39451 vmrgew instruction will be correct. */
39452 if (VECTOR_ELT_ORDER_BIG)
39454 emit_insn (gen_vsx_xxpermdi_v2di_be (rtx_tmp0, src1, src2, GEN_INT (0)));
39455 emit_insn (gen_vsx_xxpermdi_v2di_be (rtx_tmp1, src1, src2, GEN_INT (3)));
39457 else
39459 emit_insn (gen_vsx_xxpermdi_v2di (rtx_tmp0, src1, src2, GEN_INT (3)));
39460 emit_insn (gen_vsx_xxpermdi_v2di (rtx_tmp1, src1, src2, GEN_INT (0)));
39463 rtx_tmp2 = gen_reg_rtx (V4SFmode);
39464 rtx_tmp3 = gen_reg_rtx (V4SFmode);
39466 if (signed_convert)
39468 emit_insn (gen_vsx_xvcvsxdsp (rtx_tmp2, rtx_tmp0));
39469 emit_insn (gen_vsx_xvcvsxdsp (rtx_tmp3, rtx_tmp1));
39471 else
39473 emit_insn (gen_vsx_xvcvuxdsp (rtx_tmp2, rtx_tmp0));
39474 emit_insn (gen_vsx_xvcvuxdsp (rtx_tmp3, rtx_tmp1));
39477 if (VECTOR_ELT_ORDER_BIG)
39478 emit_insn (gen_p8_vmrgew_v4sf (dst, rtx_tmp2, rtx_tmp3));
39479 else
39480 emit_insn (gen_p8_vmrgew_v4sf (dst, rtx_tmp3, rtx_tmp2));
39483 void
39484 rs6000_generate_vsigned2_code (bool signed_convert, rtx dst, rtx src1,
39485 rtx src2)
39487 rtx rtx_tmp0, rtx_tmp1, rtx_tmp2, rtx_tmp3;
39489 rtx_tmp0 = gen_reg_rtx (V2DFmode);
39490 rtx_tmp1 = gen_reg_rtx (V2DFmode);
39492 emit_insn (gen_vsx_xxpermdi_v2df (rtx_tmp0, src1, src2, GEN_INT (0)));
39493 emit_insn (gen_vsx_xxpermdi_v2df (rtx_tmp1, src1, src2, GEN_INT (3)));
39495 rtx_tmp2 = gen_reg_rtx (V4SImode);
39496 rtx_tmp3 = gen_reg_rtx (V4SImode);
39498 if (signed_convert)
39500 emit_insn (gen_vsx_xvcvdpsxws (rtx_tmp2, rtx_tmp0));
39501 emit_insn (gen_vsx_xvcvdpsxws (rtx_tmp3, rtx_tmp1));
39503 else
39505 emit_insn (gen_vsx_xvcvdpuxws (rtx_tmp2, rtx_tmp0));
39506 emit_insn (gen_vsx_xvcvdpuxws (rtx_tmp3, rtx_tmp1));
39509 emit_insn (gen_p8_vmrgew_v4si (dst, rtx_tmp2, rtx_tmp3));
39512 /* Implement the TARGET_OPTAB_SUPPORTED_P hook. */
39514 static bool
39515 rs6000_optab_supported_p (int op, machine_mode mode1, machine_mode,
39516 optimization_type opt_type)
39518 switch (op)
39520 case rsqrt_optab:
39521 return (opt_type == OPTIMIZE_FOR_SPEED
39522 && RS6000_RECIP_AUTO_RSQRTE_P (mode1));
39524 default:
39525 return true;
39529 /* Implement TARGET_CONSTANT_ALIGNMENT. */
39531 static HOST_WIDE_INT
39532 rs6000_constant_alignment (const_tree exp, HOST_WIDE_INT align)
39534 if (TREE_CODE (exp) == STRING_CST
39535 && (STRICT_ALIGNMENT || !optimize_size))
39536 return MAX (align, BITS_PER_WORD);
39537 return align;
39540 /* Implement TARGET_STARTING_FRAME_OFFSET. */
39542 static HOST_WIDE_INT
39543 rs6000_starting_frame_offset (void)
39545 if (FRAME_GROWS_DOWNWARD)
39546 return 0;
39547 return RS6000_STARTING_FRAME_OFFSET;
39550 struct gcc_target targetm = TARGET_INITIALIZER;
39552 #include "gt-rs6000.h"