Merged revisions 143552,143554,143557,143560,143562,143564-143567,143570-143573,14357...
[official-gcc.git] / gcc / config / pa / pa.c
blob5d0806588643b57643e784cb24062857774a6c0a
1 /* Subroutines for insn-output.c for HPPA.
2 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
3 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
4 Free Software Foundation, Inc.
5 Contributed by Tim Moore (moore@cs.utah.edu), based on sparc.c
7 This file is part of GCC.
9 GCC is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3, or (at your option)
12 any later version.
14 GCC is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GCC; see the file COPYING3. If not see
21 <http://www.gnu.org/licenses/>. */
23 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tm.h"
27 #include "rtl.h"
28 #include "regs.h"
29 #include "hard-reg-set.h"
30 #include "real.h"
31 #include "insn-config.h"
32 #include "conditions.h"
33 #include "insn-attr.h"
34 #include "flags.h"
35 #include "tree.h"
36 #include "output.h"
37 #include "except.h"
38 #include "expr.h"
39 #include "optabs.h"
40 #include "reload.h"
41 #include "integrate.h"
42 #include "function.h"
43 #include "toplev.h"
44 #include "ggc.h"
45 #include "recog.h"
46 #include "predict.h"
47 #include "tm_p.h"
48 #include "target.h"
49 #include "target-def.h"
50 #include "df.h"
52 /* Return nonzero if there is a bypass for the output of
53 OUT_INSN and the fp store IN_INSN. */
54 int
55 hppa_fpstore_bypass_p (rtx out_insn, rtx in_insn)
57 enum machine_mode store_mode;
58 enum machine_mode other_mode;
59 rtx set;
61 if (recog_memoized (in_insn) < 0
62 || (get_attr_type (in_insn) != TYPE_FPSTORE
63 && get_attr_type (in_insn) != TYPE_FPSTORE_LOAD)
64 || recog_memoized (out_insn) < 0)
65 return 0;
67 store_mode = GET_MODE (SET_SRC (PATTERN (in_insn)));
69 set = single_set (out_insn);
70 if (!set)
71 return 0;
73 other_mode = GET_MODE (SET_SRC (set));
75 return (GET_MODE_SIZE (store_mode) == GET_MODE_SIZE (other_mode));
79 #ifndef DO_FRAME_NOTES
80 #ifdef INCOMING_RETURN_ADDR_RTX
81 #define DO_FRAME_NOTES 1
82 #else
83 #define DO_FRAME_NOTES 0
84 #endif
85 #endif
87 static void copy_reg_pointer (rtx, rtx);
88 static void fix_range (const char *);
89 static bool pa_handle_option (size_t, const char *, int);
90 static int hppa_address_cost (rtx, bool);
91 static bool hppa_rtx_costs (rtx, int, int, int *, bool);
92 static inline rtx force_mode (enum machine_mode, rtx);
93 static void pa_reorg (void);
94 static void pa_combine_instructions (void);
95 static int pa_can_combine_p (rtx, rtx, rtx, int, rtx, rtx, rtx);
96 static int forward_branch_p (rtx);
97 static void compute_zdepwi_operands (unsigned HOST_WIDE_INT, unsigned *);
98 static int compute_movmem_length (rtx);
99 static int compute_clrmem_length (rtx);
100 static bool pa_assemble_integer (rtx, unsigned int, int);
101 static void remove_useless_addtr_insns (int);
102 static void store_reg (int, HOST_WIDE_INT, int);
103 static void store_reg_modify (int, int, HOST_WIDE_INT);
104 static void load_reg (int, HOST_WIDE_INT, int);
105 static void set_reg_plus_d (int, int, HOST_WIDE_INT, int);
106 static void pa_output_function_prologue (FILE *, HOST_WIDE_INT);
107 static void update_total_code_bytes (unsigned int);
108 static void pa_output_function_epilogue (FILE *, HOST_WIDE_INT);
109 static int pa_adjust_cost (rtx, rtx, rtx, int);
110 static int pa_adjust_priority (rtx, int);
111 static int pa_issue_rate (void);
112 static void pa_som_asm_init_sections (void) ATTRIBUTE_UNUSED;
113 static section *pa_select_section (tree, int, unsigned HOST_WIDE_INT)
114 ATTRIBUTE_UNUSED;
115 static void pa_encode_section_info (tree, rtx, int);
116 static const char *pa_strip_name_encoding (const char *);
117 static bool pa_function_ok_for_sibcall (tree, tree);
118 static void pa_globalize_label (FILE *, const char *)
119 ATTRIBUTE_UNUSED;
120 static void pa_asm_output_mi_thunk (FILE *, tree, HOST_WIDE_INT,
121 HOST_WIDE_INT, tree);
122 #if !defined(USE_COLLECT2)
123 static void pa_asm_out_constructor (rtx, int);
124 static void pa_asm_out_destructor (rtx, int);
125 #endif
126 static void pa_init_builtins (void);
127 static rtx hppa_builtin_saveregs (void);
128 static void hppa_va_start (tree, rtx);
129 static tree hppa_gimplify_va_arg_expr (tree, tree, gimple_seq *, gimple_seq *);
130 static bool pa_scalar_mode_supported_p (enum machine_mode);
131 static bool pa_commutative_p (const_rtx x, int outer_code);
132 static void copy_fp_args (rtx) ATTRIBUTE_UNUSED;
133 static int length_fp_args (rtx) ATTRIBUTE_UNUSED;
134 static inline void pa_file_start_level (void) ATTRIBUTE_UNUSED;
135 static inline void pa_file_start_space (int) ATTRIBUTE_UNUSED;
136 static inline void pa_file_start_file (int) ATTRIBUTE_UNUSED;
137 static inline void pa_file_start_mcount (const char*) ATTRIBUTE_UNUSED;
138 static void pa_elf_file_start (void) ATTRIBUTE_UNUSED;
139 static void pa_som_file_start (void) ATTRIBUTE_UNUSED;
140 static void pa_linux_file_start (void) ATTRIBUTE_UNUSED;
141 static void pa_hpux64_gas_file_start (void) ATTRIBUTE_UNUSED;
142 static void pa_hpux64_hpas_file_start (void) ATTRIBUTE_UNUSED;
143 static void output_deferred_plabels (void);
144 static void output_deferred_profile_counters (void) ATTRIBUTE_UNUSED;
145 #ifdef ASM_OUTPUT_EXTERNAL_REAL
146 static void pa_hpux_file_end (void);
147 #endif
148 #ifdef HPUX_LONG_DOUBLE_LIBRARY
149 static void pa_hpux_init_libfuncs (void);
150 #endif
151 static rtx pa_struct_value_rtx (tree, int);
152 static bool pa_pass_by_reference (CUMULATIVE_ARGS *, enum machine_mode,
153 const_tree, bool);
154 static int pa_arg_partial_bytes (CUMULATIVE_ARGS *, enum machine_mode,
155 tree, bool);
156 static struct machine_function * pa_init_machine_status (void);
157 static enum reg_class pa_secondary_reload (bool, rtx, enum reg_class,
158 enum machine_mode,
159 secondary_reload_info *);
160 static void pa_extra_live_on_entry (bitmap);
162 /* The following extra sections are only used for SOM. */
163 static GTY(()) section *som_readonly_data_section;
164 static GTY(()) section *som_one_only_readonly_data_section;
165 static GTY(()) section *som_one_only_data_section;
167 /* Save the operands last given to a compare for use when we
168 generate a scc or bcc insn. */
169 rtx hppa_compare_op0, hppa_compare_op1;
170 enum cmp_type hppa_branch_type;
172 /* Which cpu we are scheduling for. */
173 enum processor_type pa_cpu = TARGET_SCHED_DEFAULT;
175 /* The UNIX standard to use for predefines and linking. */
176 int flag_pa_unix = TARGET_HPUX_11_11 ? 1998 : TARGET_HPUX_10_10 ? 1995 : 1993;
178 /* Counts for the number of callee-saved general and floating point
179 registers which were saved by the current function's prologue. */
180 static int gr_saved, fr_saved;
182 /* Boolean indicating whether the return pointer was saved by the
183 current function's prologue. */
184 static bool rp_saved;
186 static rtx find_addr_reg (rtx);
188 /* Keep track of the number of bytes we have output in the CODE subspace
189 during this compilation so we'll know when to emit inline long-calls. */
190 unsigned long total_code_bytes;
192 /* The last address of the previous function plus the number of bytes in
193 associated thunks that have been output. This is used to determine if
194 a thunk can use an IA-relative branch to reach its target function. */
195 static unsigned int last_address;
197 /* Variables to handle plabels that we discover are necessary at assembly
198 output time. They are output after the current function. */
199 struct deferred_plabel GTY(())
201 rtx internal_label;
202 rtx symbol;
204 static GTY((length ("n_deferred_plabels"))) struct deferred_plabel *
205 deferred_plabels;
206 static size_t n_deferred_plabels = 0;
209 /* Initialize the GCC target structure. */
211 #undef TARGET_ASM_ALIGNED_HI_OP
212 #define TARGET_ASM_ALIGNED_HI_OP "\t.half\t"
213 #undef TARGET_ASM_ALIGNED_SI_OP
214 #define TARGET_ASM_ALIGNED_SI_OP "\t.word\t"
215 #undef TARGET_ASM_ALIGNED_DI_OP
216 #define TARGET_ASM_ALIGNED_DI_OP "\t.dword\t"
217 #undef TARGET_ASM_UNALIGNED_HI_OP
218 #define TARGET_ASM_UNALIGNED_HI_OP TARGET_ASM_ALIGNED_HI_OP
219 #undef TARGET_ASM_UNALIGNED_SI_OP
220 #define TARGET_ASM_UNALIGNED_SI_OP TARGET_ASM_ALIGNED_SI_OP
221 #undef TARGET_ASM_UNALIGNED_DI_OP
222 #define TARGET_ASM_UNALIGNED_DI_OP TARGET_ASM_ALIGNED_DI_OP
223 #undef TARGET_ASM_INTEGER
224 #define TARGET_ASM_INTEGER pa_assemble_integer
226 #undef TARGET_ASM_FUNCTION_PROLOGUE
227 #define TARGET_ASM_FUNCTION_PROLOGUE pa_output_function_prologue
228 #undef TARGET_ASM_FUNCTION_EPILOGUE
229 #define TARGET_ASM_FUNCTION_EPILOGUE pa_output_function_epilogue
231 #undef TARGET_SCHED_ADJUST_COST
232 #define TARGET_SCHED_ADJUST_COST pa_adjust_cost
233 #undef TARGET_SCHED_ADJUST_PRIORITY
234 #define TARGET_SCHED_ADJUST_PRIORITY pa_adjust_priority
235 #undef TARGET_SCHED_ISSUE_RATE
236 #define TARGET_SCHED_ISSUE_RATE pa_issue_rate
238 #undef TARGET_ENCODE_SECTION_INFO
239 #define TARGET_ENCODE_SECTION_INFO pa_encode_section_info
240 #undef TARGET_STRIP_NAME_ENCODING
241 #define TARGET_STRIP_NAME_ENCODING pa_strip_name_encoding
243 #undef TARGET_FUNCTION_OK_FOR_SIBCALL
244 #define TARGET_FUNCTION_OK_FOR_SIBCALL pa_function_ok_for_sibcall
246 #undef TARGET_COMMUTATIVE_P
247 #define TARGET_COMMUTATIVE_P pa_commutative_p
249 #undef TARGET_ASM_OUTPUT_MI_THUNK
250 #define TARGET_ASM_OUTPUT_MI_THUNK pa_asm_output_mi_thunk
251 #undef TARGET_ASM_CAN_OUTPUT_MI_THUNK
252 #define TARGET_ASM_CAN_OUTPUT_MI_THUNK default_can_output_mi_thunk_no_vcall
254 #undef TARGET_ASM_FILE_END
255 #ifdef ASM_OUTPUT_EXTERNAL_REAL
256 #define TARGET_ASM_FILE_END pa_hpux_file_end
257 #else
258 #define TARGET_ASM_FILE_END output_deferred_plabels
259 #endif
261 #if !defined(USE_COLLECT2)
262 #undef TARGET_ASM_CONSTRUCTOR
263 #define TARGET_ASM_CONSTRUCTOR pa_asm_out_constructor
264 #undef TARGET_ASM_DESTRUCTOR
265 #define TARGET_ASM_DESTRUCTOR pa_asm_out_destructor
266 #endif
268 #undef TARGET_DEFAULT_TARGET_FLAGS
269 #define TARGET_DEFAULT_TARGET_FLAGS (TARGET_DEFAULT | TARGET_CPU_DEFAULT)
270 #undef TARGET_HANDLE_OPTION
271 #define TARGET_HANDLE_OPTION pa_handle_option
273 #undef TARGET_INIT_BUILTINS
274 #define TARGET_INIT_BUILTINS pa_init_builtins
276 #undef TARGET_RTX_COSTS
277 #define TARGET_RTX_COSTS hppa_rtx_costs
278 #undef TARGET_ADDRESS_COST
279 #define TARGET_ADDRESS_COST hppa_address_cost
281 #undef TARGET_MACHINE_DEPENDENT_REORG
282 #define TARGET_MACHINE_DEPENDENT_REORG pa_reorg
284 #ifdef HPUX_LONG_DOUBLE_LIBRARY
285 #undef TARGET_INIT_LIBFUNCS
286 #define TARGET_INIT_LIBFUNCS pa_hpux_init_libfuncs
287 #endif
289 #undef TARGET_PROMOTE_FUNCTION_RETURN
290 #define TARGET_PROMOTE_FUNCTION_RETURN hook_bool_const_tree_true
291 #undef TARGET_PROMOTE_PROTOTYPES
292 #define TARGET_PROMOTE_PROTOTYPES hook_bool_const_tree_true
294 #undef TARGET_STRUCT_VALUE_RTX
295 #define TARGET_STRUCT_VALUE_RTX pa_struct_value_rtx
296 #undef TARGET_RETURN_IN_MEMORY
297 #define TARGET_RETURN_IN_MEMORY pa_return_in_memory
298 #undef TARGET_MUST_PASS_IN_STACK
299 #define TARGET_MUST_PASS_IN_STACK must_pass_in_stack_var_size
300 #undef TARGET_PASS_BY_REFERENCE
301 #define TARGET_PASS_BY_REFERENCE pa_pass_by_reference
302 #undef TARGET_CALLEE_COPIES
303 #define TARGET_CALLEE_COPIES hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true
304 #undef TARGET_ARG_PARTIAL_BYTES
305 #define TARGET_ARG_PARTIAL_BYTES pa_arg_partial_bytes
307 #undef TARGET_EXPAND_BUILTIN_SAVEREGS
308 #define TARGET_EXPAND_BUILTIN_SAVEREGS hppa_builtin_saveregs
309 #undef TARGET_EXPAND_BUILTIN_VA_START
310 #define TARGET_EXPAND_BUILTIN_VA_START hppa_va_start
311 #undef TARGET_GIMPLIFY_VA_ARG_EXPR
312 #define TARGET_GIMPLIFY_VA_ARG_EXPR hppa_gimplify_va_arg_expr
314 #undef TARGET_SCALAR_MODE_SUPPORTED_P
315 #define TARGET_SCALAR_MODE_SUPPORTED_P pa_scalar_mode_supported_p
317 #undef TARGET_CANNOT_FORCE_CONST_MEM
318 #define TARGET_CANNOT_FORCE_CONST_MEM pa_tls_referenced_p
320 #undef TARGET_SECONDARY_RELOAD
321 #define TARGET_SECONDARY_RELOAD pa_secondary_reload
323 #undef TARGET_EXTRA_LIVE_ON_ENTRY
324 #define TARGET_EXTRA_LIVE_ON_ENTRY pa_extra_live_on_entry
326 struct gcc_target targetm = TARGET_INITIALIZER;
328 /* Parse the -mfixed-range= option string. */
330 static void
331 fix_range (const char *const_str)
333 int i, first, last;
334 char *str, *dash, *comma;
336 /* str must be of the form REG1'-'REG2{,REG1'-'REG} where REG1 and
337 REG2 are either register names or register numbers. The effect
338 of this option is to mark the registers in the range from REG1 to
339 REG2 as ``fixed'' so they won't be used by the compiler. This is
340 used, e.g., to ensure that kernel mode code doesn't use fr4-fr31. */
342 i = strlen (const_str);
343 str = (char *) alloca (i + 1);
344 memcpy (str, const_str, i + 1);
346 while (1)
348 dash = strchr (str, '-');
349 if (!dash)
351 warning (0, "value of -mfixed-range must have form REG1-REG2");
352 return;
354 *dash = '\0';
356 comma = strchr (dash + 1, ',');
357 if (comma)
358 *comma = '\0';
360 first = decode_reg_name (str);
361 if (first < 0)
363 warning (0, "unknown register name: %s", str);
364 return;
367 last = decode_reg_name (dash + 1);
368 if (last < 0)
370 warning (0, "unknown register name: %s", dash + 1);
371 return;
374 *dash = '-';
376 if (first > last)
378 warning (0, "%s-%s is an empty range", str, dash + 1);
379 return;
382 for (i = first; i <= last; ++i)
383 fixed_regs[i] = call_used_regs[i] = 1;
385 if (!comma)
386 break;
388 *comma = ',';
389 str = comma + 1;
392 /* Check if all floating point registers have been fixed. */
393 for (i = FP_REG_FIRST; i <= FP_REG_LAST; i++)
394 if (!fixed_regs[i])
395 break;
397 if (i > FP_REG_LAST)
398 target_flags |= MASK_DISABLE_FPREGS;
401 /* Implement TARGET_HANDLE_OPTION. */
403 static bool
404 pa_handle_option (size_t code, const char *arg, int value ATTRIBUTE_UNUSED)
406 switch (code)
408 case OPT_mnosnake:
409 case OPT_mpa_risc_1_0:
410 case OPT_march_1_0:
411 target_flags &= ~(MASK_PA_11 | MASK_PA_20);
412 return true;
414 case OPT_msnake:
415 case OPT_mpa_risc_1_1:
416 case OPT_march_1_1:
417 target_flags &= ~MASK_PA_20;
418 target_flags |= MASK_PA_11;
419 return true;
421 case OPT_mpa_risc_2_0:
422 case OPT_march_2_0:
423 target_flags |= MASK_PA_11 | MASK_PA_20;
424 return true;
426 case OPT_mschedule_:
427 if (strcmp (arg, "8000") == 0)
428 pa_cpu = PROCESSOR_8000;
429 else if (strcmp (arg, "7100") == 0)
430 pa_cpu = PROCESSOR_7100;
431 else if (strcmp (arg, "700") == 0)
432 pa_cpu = PROCESSOR_700;
433 else if (strcmp (arg, "7100LC") == 0)
434 pa_cpu = PROCESSOR_7100LC;
435 else if (strcmp (arg, "7200") == 0)
436 pa_cpu = PROCESSOR_7200;
437 else if (strcmp (arg, "7300") == 0)
438 pa_cpu = PROCESSOR_7300;
439 else
440 return false;
441 return true;
443 case OPT_mfixed_range_:
444 fix_range (arg);
445 return true;
447 #if TARGET_HPUX
448 case OPT_munix_93:
449 flag_pa_unix = 1993;
450 return true;
451 #endif
453 #if TARGET_HPUX_10_10
454 case OPT_munix_95:
455 flag_pa_unix = 1995;
456 return true;
457 #endif
459 #if TARGET_HPUX_11_11
460 case OPT_munix_98:
461 flag_pa_unix = 1998;
462 return true;
463 #endif
465 default:
466 return true;
470 void
471 override_options (void)
473 /* Unconditional branches in the delay slot are not compatible with dwarf2
474 call frame information. There is no benefit in using this optimization
475 on PA8000 and later processors. */
476 if (pa_cpu >= PROCESSOR_8000
477 || (! USING_SJLJ_EXCEPTIONS && flag_exceptions)
478 || flag_unwind_tables)
479 target_flags &= ~MASK_JUMP_IN_DELAY;
481 if (flag_pic && TARGET_PORTABLE_RUNTIME)
483 warning (0, "PIC code generation is not supported in the portable runtime model");
486 if (flag_pic && TARGET_FAST_INDIRECT_CALLS)
488 warning (0, "PIC code generation is not compatible with fast indirect calls");
491 if (! TARGET_GAS && write_symbols != NO_DEBUG)
493 warning (0, "-g is only supported when using GAS on this processor,");
494 warning (0, "-g option disabled");
495 write_symbols = NO_DEBUG;
498 /* We only support the "big PIC" model now. And we always generate PIC
499 code when in 64bit mode. */
500 if (flag_pic == 1 || TARGET_64BIT)
501 flag_pic = 2;
503 /* We can't guarantee that .dword is available for 32-bit targets. */
504 if (UNITS_PER_WORD == 4)
505 targetm.asm_out.aligned_op.di = NULL;
507 /* The unaligned ops are only available when using GAS. */
508 if (!TARGET_GAS)
510 targetm.asm_out.unaligned_op.hi = NULL;
511 targetm.asm_out.unaligned_op.si = NULL;
512 targetm.asm_out.unaligned_op.di = NULL;
515 init_machine_status = pa_init_machine_status;
518 static void
519 pa_init_builtins (void)
521 #ifdef DONT_HAVE_FPUTC_UNLOCKED
522 built_in_decls[(int) BUILT_IN_FPUTC_UNLOCKED] =
523 built_in_decls[(int) BUILT_IN_PUTC_UNLOCKED];
524 implicit_built_in_decls[(int) BUILT_IN_FPUTC_UNLOCKED]
525 = implicit_built_in_decls[(int) BUILT_IN_PUTC_UNLOCKED];
526 #endif
527 #if TARGET_HPUX_11
528 if (built_in_decls [BUILT_IN_FINITE])
529 set_user_assembler_name (built_in_decls [BUILT_IN_FINITE], "_Isfinite");
530 if (built_in_decls [BUILT_IN_FINITEF])
531 set_user_assembler_name (built_in_decls [BUILT_IN_FINITEF], "_Isfinitef");
532 #endif
535 /* Function to init struct machine_function.
536 This will be called, via a pointer variable,
537 from push_function_context. */
539 static struct machine_function *
540 pa_init_machine_status (void)
542 return GGC_CNEW (machine_function);
545 /* If FROM is a probable pointer register, mark TO as a probable
546 pointer register with the same pointer alignment as FROM. */
548 static void
549 copy_reg_pointer (rtx to, rtx from)
551 if (REG_POINTER (from))
552 mark_reg_pointer (to, REGNO_POINTER_ALIGN (REGNO (from)));
555 /* Return 1 if X contains a symbolic expression. We know these
556 expressions will have one of a few well defined forms, so
557 we need only check those forms. */
559 symbolic_expression_p (rtx x)
562 /* Strip off any HIGH. */
563 if (GET_CODE (x) == HIGH)
564 x = XEXP (x, 0);
566 return (symbolic_operand (x, VOIDmode));
569 /* Accept any constant that can be moved in one instruction into a
570 general register. */
572 cint_ok_for_move (HOST_WIDE_INT ival)
574 /* OK if ldo, ldil, or zdepi, can be used. */
575 return (VAL_14_BITS_P (ival)
576 || ldil_cint_p (ival)
577 || zdepi_cint_p (ival));
580 /* Return truth value of whether OP can be used as an operand in a
581 adddi3 insn. */
583 adddi3_operand (rtx op, enum machine_mode mode)
585 return (register_operand (op, mode)
586 || (GET_CODE (op) == CONST_INT
587 && (TARGET_64BIT ? INT_14_BITS (op) : INT_11_BITS (op))));
590 /* True iff the operand OP can be used as the destination operand of
591 an integer store. This also implies the operand could be used as
592 the source operand of an integer load. Symbolic, lo_sum and indexed
593 memory operands are not allowed. We accept reloading pseudos and
594 other memory operands. */
596 integer_store_memory_operand (rtx op, enum machine_mode mode)
598 return ((reload_in_progress
599 && REG_P (op)
600 && REGNO (op) >= FIRST_PSEUDO_REGISTER
601 && reg_renumber [REGNO (op)] < 0)
602 || (GET_CODE (op) == MEM
603 && (reload_in_progress || memory_address_p (mode, XEXP (op, 0)))
604 && !symbolic_memory_operand (op, VOIDmode)
605 && !IS_LO_SUM_DLT_ADDR_P (XEXP (op, 0))
606 && !IS_INDEX_ADDR_P (XEXP (op, 0))));
609 /* True iff ldil can be used to load this CONST_INT. The least
610 significant 11 bits of the value must be zero and the value must
611 not change sign when extended from 32 to 64 bits. */
613 ldil_cint_p (HOST_WIDE_INT ival)
615 HOST_WIDE_INT x = ival & (((HOST_WIDE_INT) -1 << 31) | 0x7ff);
617 return x == 0 || x == ((HOST_WIDE_INT) -1 << 31);
620 /* True iff zdepi can be used to generate this CONST_INT.
621 zdepi first sign extends a 5-bit signed number to a given field
622 length, then places this field anywhere in a zero. */
624 zdepi_cint_p (unsigned HOST_WIDE_INT x)
626 unsigned HOST_WIDE_INT lsb_mask, t;
628 /* This might not be obvious, but it's at least fast.
629 This function is critical; we don't have the time loops would take. */
630 lsb_mask = x & -x;
631 t = ((x >> 4) + lsb_mask) & ~(lsb_mask - 1);
632 /* Return true iff t is a power of two. */
633 return ((t & (t - 1)) == 0);
636 /* True iff depi or extru can be used to compute (reg & mask).
637 Accept bit pattern like these:
638 0....01....1
639 1....10....0
640 1..10..01..1 */
642 and_mask_p (unsigned HOST_WIDE_INT mask)
644 mask = ~mask;
645 mask += mask & -mask;
646 return (mask & (mask - 1)) == 0;
649 /* True iff depi can be used to compute (reg | MASK). */
651 ior_mask_p (unsigned HOST_WIDE_INT mask)
653 mask += mask & -mask;
654 return (mask & (mask - 1)) == 0;
657 /* Legitimize PIC addresses. If the address is already
658 position-independent, we return ORIG. Newly generated
659 position-independent addresses go to REG. If we need more
660 than one register, we lose. */
663 legitimize_pic_address (rtx orig, enum machine_mode mode, rtx reg)
665 rtx pic_ref = orig;
667 gcc_assert (!PA_SYMBOL_REF_TLS_P (orig));
669 /* Labels need special handling. */
670 if (pic_label_operand (orig, mode))
672 rtx insn;
674 /* We do not want to go through the movXX expanders here since that
675 would create recursion.
677 Nor do we really want to call a generator for a named pattern
678 since that requires multiple patterns if we want to support
679 multiple word sizes.
681 So instead we just emit the raw set, which avoids the movXX
682 expanders completely. */
683 mark_reg_pointer (reg, BITS_PER_UNIT);
684 insn = emit_insn (gen_rtx_SET (VOIDmode, reg, orig));
686 /* Put a REG_EQUAL note on this insn, so that it can be optimized. */
687 REG_NOTES (insn) = gen_rtx_EXPR_LIST (REG_EQUAL, orig, REG_NOTES (insn));
689 /* During and after reload, we need to generate a REG_LABEL_OPERAND note
690 and update LABEL_NUSES because this is not done automatically. */
691 if (reload_in_progress || reload_completed)
693 /* Extract LABEL_REF. */
694 if (GET_CODE (orig) == CONST)
695 orig = XEXP (XEXP (orig, 0), 0);
696 /* Extract CODE_LABEL. */
697 orig = XEXP (orig, 0);
698 add_reg_note (insn, REG_LABEL_OPERAND, orig);
699 LABEL_NUSES (orig)++;
701 crtl->uses_pic_offset_table = 1;
702 return reg;
704 if (GET_CODE (orig) == SYMBOL_REF)
706 rtx insn, tmp_reg;
708 gcc_assert (reg);
710 /* Before reload, allocate a temporary register for the intermediate
711 result. This allows the sequence to be deleted when the final
712 result is unused and the insns are trivially dead. */
713 tmp_reg = ((reload_in_progress || reload_completed)
714 ? reg : gen_reg_rtx (Pmode));
716 if (function_label_operand (orig, mode))
718 /* Force function label into memory in word mode. */
719 orig = XEXP (force_const_mem (word_mode, orig), 0);
720 /* Load plabel address from DLT. */
721 emit_move_insn (tmp_reg,
722 gen_rtx_PLUS (word_mode, pic_offset_table_rtx,
723 gen_rtx_HIGH (word_mode, orig)));
724 pic_ref
725 = gen_const_mem (Pmode,
726 gen_rtx_LO_SUM (Pmode, tmp_reg,
727 gen_rtx_UNSPEC (Pmode,
728 gen_rtvec (1, orig),
729 UNSPEC_DLTIND14R)));
730 emit_move_insn (reg, pic_ref);
731 /* Now load address of function descriptor. */
732 pic_ref = gen_rtx_MEM (Pmode, reg);
734 else
736 /* Load symbol reference from DLT. */
737 emit_move_insn (tmp_reg,
738 gen_rtx_PLUS (word_mode, pic_offset_table_rtx,
739 gen_rtx_HIGH (word_mode, orig)));
740 pic_ref
741 = gen_const_mem (Pmode,
742 gen_rtx_LO_SUM (Pmode, tmp_reg,
743 gen_rtx_UNSPEC (Pmode,
744 gen_rtvec (1, orig),
745 UNSPEC_DLTIND14R)));
748 crtl->uses_pic_offset_table = 1;
749 mark_reg_pointer (reg, BITS_PER_UNIT);
750 insn = emit_move_insn (reg, pic_ref);
752 /* Put a REG_EQUAL note on this insn, so that it can be optimized. */
753 set_unique_reg_note (insn, REG_EQUAL, orig);
755 return reg;
757 else if (GET_CODE (orig) == CONST)
759 rtx base;
761 if (GET_CODE (XEXP (orig, 0)) == PLUS
762 && XEXP (XEXP (orig, 0), 0) == pic_offset_table_rtx)
763 return orig;
765 gcc_assert (reg);
766 gcc_assert (GET_CODE (XEXP (orig, 0)) == PLUS);
768 base = legitimize_pic_address (XEXP (XEXP (orig, 0), 0), Pmode, reg);
769 orig = legitimize_pic_address (XEXP (XEXP (orig, 0), 1), Pmode,
770 base == reg ? 0 : reg);
772 if (GET_CODE (orig) == CONST_INT)
774 if (INT_14_BITS (orig))
775 return plus_constant (base, INTVAL (orig));
776 orig = force_reg (Pmode, orig);
778 pic_ref = gen_rtx_PLUS (Pmode, base, orig);
779 /* Likewise, should we set special REG_NOTEs here? */
782 return pic_ref;
785 static GTY(()) rtx gen_tls_tga;
787 static rtx
788 gen_tls_get_addr (void)
790 if (!gen_tls_tga)
791 gen_tls_tga = init_one_libfunc ("__tls_get_addr");
792 return gen_tls_tga;
795 static rtx
796 hppa_tls_call (rtx arg)
798 rtx ret;
800 ret = gen_reg_rtx (Pmode);
801 emit_library_call_value (gen_tls_get_addr (), ret,
802 LCT_CONST, Pmode, 1, arg, Pmode);
804 return ret;
807 static rtx
808 legitimize_tls_address (rtx addr)
810 rtx ret, insn, tmp, t1, t2, tp;
811 enum tls_model model = SYMBOL_REF_TLS_MODEL (addr);
813 switch (model)
815 case TLS_MODEL_GLOBAL_DYNAMIC:
816 tmp = gen_reg_rtx (Pmode);
817 if (flag_pic)
818 emit_insn (gen_tgd_load_pic (tmp, addr));
819 else
820 emit_insn (gen_tgd_load (tmp, addr));
821 ret = hppa_tls_call (tmp);
822 break;
824 case TLS_MODEL_LOCAL_DYNAMIC:
825 ret = gen_reg_rtx (Pmode);
826 tmp = gen_reg_rtx (Pmode);
827 start_sequence ();
828 if (flag_pic)
829 emit_insn (gen_tld_load_pic (tmp, addr));
830 else
831 emit_insn (gen_tld_load (tmp, addr));
832 t1 = hppa_tls_call (tmp);
833 insn = get_insns ();
834 end_sequence ();
835 t2 = gen_reg_rtx (Pmode);
836 emit_libcall_block (insn, t2, t1,
837 gen_rtx_UNSPEC (Pmode, gen_rtvec (1, const0_rtx),
838 UNSPEC_TLSLDBASE));
839 emit_insn (gen_tld_offset_load (ret, addr, t2));
840 break;
842 case TLS_MODEL_INITIAL_EXEC:
843 tp = gen_reg_rtx (Pmode);
844 tmp = gen_reg_rtx (Pmode);
845 ret = gen_reg_rtx (Pmode);
846 emit_insn (gen_tp_load (tp));
847 if (flag_pic)
848 emit_insn (gen_tie_load_pic (tmp, addr));
849 else
850 emit_insn (gen_tie_load (tmp, addr));
851 emit_move_insn (ret, gen_rtx_PLUS (Pmode, tp, tmp));
852 break;
854 case TLS_MODEL_LOCAL_EXEC:
855 tp = gen_reg_rtx (Pmode);
856 ret = gen_reg_rtx (Pmode);
857 emit_insn (gen_tp_load (tp));
858 emit_insn (gen_tle_load (ret, addr, tp));
859 break;
861 default:
862 gcc_unreachable ();
865 return ret;
868 /* Try machine-dependent ways of modifying an illegitimate address
869 to be legitimate. If we find one, return the new, valid address.
870 This macro is used in only one place: `memory_address' in explow.c.
872 OLDX is the address as it was before break_out_memory_refs was called.
873 In some cases it is useful to look at this to decide what needs to be done.
875 MODE and WIN are passed so that this macro can use
876 GO_IF_LEGITIMATE_ADDRESS.
878 It is always safe for this macro to do nothing. It exists to recognize
879 opportunities to optimize the output.
881 For the PA, transform:
883 memory(X + <large int>)
885 into:
887 if (<large int> & mask) >= 16
888 Y = (<large int> & ~mask) + mask + 1 Round up.
889 else
890 Y = (<large int> & ~mask) Round down.
891 Z = X + Y
892 memory (Z + (<large int> - Y));
894 This is for CSE to find several similar references, and only use one Z.
896 X can either be a SYMBOL_REF or REG, but because combine cannot
897 perform a 4->2 combination we do nothing for SYMBOL_REF + D where
898 D will not fit in 14 bits.
900 MODE_FLOAT references allow displacements which fit in 5 bits, so use
901 0x1f as the mask.
903 MODE_INT references allow displacements which fit in 14 bits, so use
904 0x3fff as the mask.
906 This relies on the fact that most mode MODE_FLOAT references will use FP
907 registers and most mode MODE_INT references will use integer registers.
908 (In the rare case of an FP register used in an integer MODE, we depend
909 on secondary reloads to clean things up.)
912 It is also beneficial to handle (plus (mult (X) (Y)) (Z)) in a special
913 manner if Y is 2, 4, or 8. (allows more shadd insns and shifted indexed
914 addressing modes to be used).
916 Put X and Z into registers. Then put the entire expression into
917 a register. */
920 hppa_legitimize_address (rtx x, rtx oldx ATTRIBUTE_UNUSED,
921 enum machine_mode mode)
923 rtx orig = x;
925 /* We need to canonicalize the order of operands in unscaled indexed
926 addresses since the code that checks if an address is valid doesn't
927 always try both orders. */
928 if (!TARGET_NO_SPACE_REGS
929 && GET_CODE (x) == PLUS
930 && GET_MODE (x) == Pmode
931 && REG_P (XEXP (x, 0))
932 && REG_P (XEXP (x, 1))
933 && REG_POINTER (XEXP (x, 0))
934 && !REG_POINTER (XEXP (x, 1)))
935 return gen_rtx_PLUS (Pmode, XEXP (x, 1), XEXP (x, 0));
937 if (PA_SYMBOL_REF_TLS_P (x))
938 return legitimize_tls_address (x);
939 else if (flag_pic)
940 return legitimize_pic_address (x, mode, gen_reg_rtx (Pmode));
942 /* Strip off CONST. */
943 if (GET_CODE (x) == CONST)
944 x = XEXP (x, 0);
946 /* Special case. Get the SYMBOL_REF into a register and use indexing.
947 That should always be safe. */
948 if (GET_CODE (x) == PLUS
949 && GET_CODE (XEXP (x, 0)) == REG
950 && GET_CODE (XEXP (x, 1)) == SYMBOL_REF)
952 rtx reg = force_reg (Pmode, XEXP (x, 1));
953 return force_reg (Pmode, gen_rtx_PLUS (Pmode, reg, XEXP (x, 0)));
956 /* Note we must reject symbols which represent function addresses
957 since the assembler/linker can't handle arithmetic on plabels. */
958 if (GET_CODE (x) == PLUS
959 && GET_CODE (XEXP (x, 1)) == CONST_INT
960 && ((GET_CODE (XEXP (x, 0)) == SYMBOL_REF
961 && !FUNCTION_NAME_P (XSTR (XEXP (x, 0), 0)))
962 || GET_CODE (XEXP (x, 0)) == REG))
964 rtx int_part, ptr_reg;
965 int newoffset;
966 int offset = INTVAL (XEXP (x, 1));
967 int mask;
969 mask = (GET_MODE_CLASS (mode) == MODE_FLOAT
970 ? (INT14_OK_STRICT ? 0x3fff : 0x1f) : 0x3fff);
972 /* Choose which way to round the offset. Round up if we
973 are >= halfway to the next boundary. */
974 if ((offset & mask) >= ((mask + 1) / 2))
975 newoffset = (offset & ~ mask) + mask + 1;
976 else
977 newoffset = (offset & ~ mask);
979 /* If the newoffset will not fit in 14 bits (ldo), then
980 handling this would take 4 or 5 instructions (2 to load
981 the SYMBOL_REF + 1 or 2 to load the newoffset + 1 to
982 add the new offset and the SYMBOL_REF.) Combine can
983 not handle 4->2 or 5->2 combinations, so do not create
984 them. */
985 if (! VAL_14_BITS_P (newoffset)
986 && GET_CODE (XEXP (x, 0)) == SYMBOL_REF)
988 rtx const_part = plus_constant (XEXP (x, 0), newoffset);
989 rtx tmp_reg
990 = force_reg (Pmode,
991 gen_rtx_HIGH (Pmode, const_part));
992 ptr_reg
993 = force_reg (Pmode,
994 gen_rtx_LO_SUM (Pmode,
995 tmp_reg, const_part));
997 else
999 if (! VAL_14_BITS_P (newoffset))
1000 int_part = force_reg (Pmode, GEN_INT (newoffset));
1001 else
1002 int_part = GEN_INT (newoffset);
1004 ptr_reg = force_reg (Pmode,
1005 gen_rtx_PLUS (Pmode,
1006 force_reg (Pmode, XEXP (x, 0)),
1007 int_part));
1009 return plus_constant (ptr_reg, offset - newoffset);
1012 /* Handle (plus (mult (a) (shadd_constant)) (b)). */
1014 if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 0)) == MULT
1015 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
1016 && shadd_constant_p (INTVAL (XEXP (XEXP (x, 0), 1)))
1017 && (OBJECT_P (XEXP (x, 1))
1018 || GET_CODE (XEXP (x, 1)) == SUBREG)
1019 && GET_CODE (XEXP (x, 1)) != CONST)
1021 int val = INTVAL (XEXP (XEXP (x, 0), 1));
1022 rtx reg1, reg2;
1024 reg1 = XEXP (x, 1);
1025 if (GET_CODE (reg1) != REG)
1026 reg1 = force_reg (Pmode, force_operand (reg1, 0));
1028 reg2 = XEXP (XEXP (x, 0), 0);
1029 if (GET_CODE (reg2) != REG)
1030 reg2 = force_reg (Pmode, force_operand (reg2, 0));
1032 return force_reg (Pmode, gen_rtx_PLUS (Pmode,
1033 gen_rtx_MULT (Pmode,
1034 reg2,
1035 GEN_INT (val)),
1036 reg1));
1039 /* Similarly for (plus (plus (mult (a) (shadd_constant)) (b)) (c)).
1041 Only do so for floating point modes since this is more speculative
1042 and we lose if it's an integer store. */
1043 if (GET_CODE (x) == PLUS
1044 && GET_CODE (XEXP (x, 0)) == PLUS
1045 && GET_CODE (XEXP (XEXP (x, 0), 0)) == MULT
1046 && GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 1)) == CONST_INT
1047 && shadd_constant_p (INTVAL (XEXP (XEXP (XEXP (x, 0), 0), 1)))
1048 && (mode == SFmode || mode == DFmode))
1051 /* First, try and figure out what to use as a base register. */
1052 rtx reg1, reg2, base, idx, orig_base;
1054 reg1 = XEXP (XEXP (x, 0), 1);
1055 reg2 = XEXP (x, 1);
1056 base = NULL_RTX;
1057 idx = NULL_RTX;
1059 /* Make sure they're both regs. If one was a SYMBOL_REF [+ const],
1060 then emit_move_sequence will turn on REG_POINTER so we'll know
1061 it's a base register below. */
1062 if (GET_CODE (reg1) != REG)
1063 reg1 = force_reg (Pmode, force_operand (reg1, 0));
1065 if (GET_CODE (reg2) != REG)
1066 reg2 = force_reg (Pmode, force_operand (reg2, 0));
1068 /* Figure out what the base and index are. */
1070 if (GET_CODE (reg1) == REG
1071 && REG_POINTER (reg1))
1073 base = reg1;
1074 orig_base = XEXP (XEXP (x, 0), 1);
1075 idx = gen_rtx_PLUS (Pmode,
1076 gen_rtx_MULT (Pmode,
1077 XEXP (XEXP (XEXP (x, 0), 0), 0),
1078 XEXP (XEXP (XEXP (x, 0), 0), 1)),
1079 XEXP (x, 1));
1081 else if (GET_CODE (reg2) == REG
1082 && REG_POINTER (reg2))
1084 base = reg2;
1085 orig_base = XEXP (x, 1);
1086 idx = XEXP (x, 0);
1089 if (base == 0)
1090 return orig;
1092 /* If the index adds a large constant, try to scale the
1093 constant so that it can be loaded with only one insn. */
1094 if (GET_CODE (XEXP (idx, 1)) == CONST_INT
1095 && VAL_14_BITS_P (INTVAL (XEXP (idx, 1))
1096 / INTVAL (XEXP (XEXP (idx, 0), 1)))
1097 && INTVAL (XEXP (idx, 1)) % INTVAL (XEXP (XEXP (idx, 0), 1)) == 0)
1099 /* Divide the CONST_INT by the scale factor, then add it to A. */
1100 int val = INTVAL (XEXP (idx, 1));
1102 val /= INTVAL (XEXP (XEXP (idx, 0), 1));
1103 reg1 = XEXP (XEXP (idx, 0), 0);
1104 if (GET_CODE (reg1) != REG)
1105 reg1 = force_reg (Pmode, force_operand (reg1, 0));
1107 reg1 = force_reg (Pmode, gen_rtx_PLUS (Pmode, reg1, GEN_INT (val)));
1109 /* We can now generate a simple scaled indexed address. */
1110 return
1111 force_reg
1112 (Pmode, gen_rtx_PLUS (Pmode,
1113 gen_rtx_MULT (Pmode, reg1,
1114 XEXP (XEXP (idx, 0), 1)),
1115 base));
1118 /* If B + C is still a valid base register, then add them. */
1119 if (GET_CODE (XEXP (idx, 1)) == CONST_INT
1120 && INTVAL (XEXP (idx, 1)) <= 4096
1121 && INTVAL (XEXP (idx, 1)) >= -4096)
1123 int val = INTVAL (XEXP (XEXP (idx, 0), 1));
1124 rtx reg1, reg2;
1126 reg1 = force_reg (Pmode, gen_rtx_PLUS (Pmode, base, XEXP (idx, 1)));
1128 reg2 = XEXP (XEXP (idx, 0), 0);
1129 if (GET_CODE (reg2) != CONST_INT)
1130 reg2 = force_reg (Pmode, force_operand (reg2, 0));
1132 return force_reg (Pmode, gen_rtx_PLUS (Pmode,
1133 gen_rtx_MULT (Pmode,
1134 reg2,
1135 GEN_INT (val)),
1136 reg1));
1139 /* Get the index into a register, then add the base + index and
1140 return a register holding the result. */
1142 /* First get A into a register. */
1143 reg1 = XEXP (XEXP (idx, 0), 0);
1144 if (GET_CODE (reg1) != REG)
1145 reg1 = force_reg (Pmode, force_operand (reg1, 0));
1147 /* And get B into a register. */
1148 reg2 = XEXP (idx, 1);
1149 if (GET_CODE (reg2) != REG)
1150 reg2 = force_reg (Pmode, force_operand (reg2, 0));
1152 reg1 = force_reg (Pmode,
1153 gen_rtx_PLUS (Pmode,
1154 gen_rtx_MULT (Pmode, reg1,
1155 XEXP (XEXP (idx, 0), 1)),
1156 reg2));
1158 /* Add the result to our base register and return. */
1159 return force_reg (Pmode, gen_rtx_PLUS (Pmode, base, reg1));
1163 /* Uh-oh. We might have an address for x[n-100000]. This needs
1164 special handling to avoid creating an indexed memory address
1165 with x-100000 as the base.
1167 If the constant part is small enough, then it's still safe because
1168 there is a guard page at the beginning and end of the data segment.
1170 Scaled references are common enough that we want to try and rearrange the
1171 terms so that we can use indexing for these addresses too. Only
1172 do the optimization for floatint point modes. */
1174 if (GET_CODE (x) == PLUS
1175 && symbolic_expression_p (XEXP (x, 1)))
1177 /* Ugly. We modify things here so that the address offset specified
1178 by the index expression is computed first, then added to x to form
1179 the entire address. */
1181 rtx regx1, regx2, regy1, regy2, y;
1183 /* Strip off any CONST. */
1184 y = XEXP (x, 1);
1185 if (GET_CODE (y) == CONST)
1186 y = XEXP (y, 0);
1188 if (GET_CODE (y) == PLUS || GET_CODE (y) == MINUS)
1190 /* See if this looks like
1191 (plus (mult (reg) (shadd_const))
1192 (const (plus (symbol_ref) (const_int))))
1194 Where const_int is small. In that case the const
1195 expression is a valid pointer for indexing.
1197 If const_int is big, but can be divided evenly by shadd_const
1198 and added to (reg). This allows more scaled indexed addresses. */
1199 if (GET_CODE (XEXP (y, 0)) == SYMBOL_REF
1200 && GET_CODE (XEXP (x, 0)) == MULT
1201 && GET_CODE (XEXP (y, 1)) == CONST_INT
1202 && INTVAL (XEXP (y, 1)) >= -4096
1203 && INTVAL (XEXP (y, 1)) <= 4095
1204 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
1205 && shadd_constant_p (INTVAL (XEXP (XEXP (x, 0), 1))))
1207 int val = INTVAL (XEXP (XEXP (x, 0), 1));
1208 rtx reg1, reg2;
1210 reg1 = XEXP (x, 1);
1211 if (GET_CODE (reg1) != REG)
1212 reg1 = force_reg (Pmode, force_operand (reg1, 0));
1214 reg2 = XEXP (XEXP (x, 0), 0);
1215 if (GET_CODE (reg2) != REG)
1216 reg2 = force_reg (Pmode, force_operand (reg2, 0));
1218 return force_reg (Pmode,
1219 gen_rtx_PLUS (Pmode,
1220 gen_rtx_MULT (Pmode,
1221 reg2,
1222 GEN_INT (val)),
1223 reg1));
1225 else if ((mode == DFmode || mode == SFmode)
1226 && GET_CODE (XEXP (y, 0)) == SYMBOL_REF
1227 && GET_CODE (XEXP (x, 0)) == MULT
1228 && GET_CODE (XEXP (y, 1)) == CONST_INT
1229 && INTVAL (XEXP (y, 1)) % INTVAL (XEXP (XEXP (x, 0), 1)) == 0
1230 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
1231 && shadd_constant_p (INTVAL (XEXP (XEXP (x, 0), 1))))
1233 regx1
1234 = force_reg (Pmode, GEN_INT (INTVAL (XEXP (y, 1))
1235 / INTVAL (XEXP (XEXP (x, 0), 1))));
1236 regx2 = XEXP (XEXP (x, 0), 0);
1237 if (GET_CODE (regx2) != REG)
1238 regx2 = force_reg (Pmode, force_operand (regx2, 0));
1239 regx2 = force_reg (Pmode, gen_rtx_fmt_ee (GET_CODE (y), Pmode,
1240 regx2, regx1));
1241 return
1242 force_reg (Pmode,
1243 gen_rtx_PLUS (Pmode,
1244 gen_rtx_MULT (Pmode, regx2,
1245 XEXP (XEXP (x, 0), 1)),
1246 force_reg (Pmode, XEXP (y, 0))));
1248 else if (GET_CODE (XEXP (y, 1)) == CONST_INT
1249 && INTVAL (XEXP (y, 1)) >= -4096
1250 && INTVAL (XEXP (y, 1)) <= 4095)
1252 /* This is safe because of the guard page at the
1253 beginning and end of the data space. Just
1254 return the original address. */
1255 return orig;
1257 else
1259 /* Doesn't look like one we can optimize. */
1260 regx1 = force_reg (Pmode, force_operand (XEXP (x, 0), 0));
1261 regy1 = force_reg (Pmode, force_operand (XEXP (y, 0), 0));
1262 regy2 = force_reg (Pmode, force_operand (XEXP (y, 1), 0));
1263 regx1 = force_reg (Pmode,
1264 gen_rtx_fmt_ee (GET_CODE (y), Pmode,
1265 regx1, regy2));
1266 return force_reg (Pmode, gen_rtx_PLUS (Pmode, regx1, regy1));
1271 return orig;
1274 /* For the HPPA, REG and REG+CONST is cost 0
1275 and addresses involving symbolic constants are cost 2.
1277 PIC addresses are very expensive.
1279 It is no coincidence that this has the same structure
1280 as GO_IF_LEGITIMATE_ADDRESS. */
1282 static int
1283 hppa_address_cost (rtx X,
1284 bool speed ATTRIBUTE_UNUSED)
1286 switch (GET_CODE (X))
1288 case REG:
1289 case PLUS:
1290 case LO_SUM:
1291 return 1;
1292 case HIGH:
1293 return 2;
1294 default:
1295 return 4;
1299 /* Compute a (partial) cost for rtx X. Return true if the complete
1300 cost has been computed, and false if subexpressions should be
1301 scanned. In either case, *TOTAL contains the cost result. */
1303 static bool
1304 hppa_rtx_costs (rtx x, int code, int outer_code, int *total,
1305 bool speed ATTRIBUTE_UNUSED)
1307 switch (code)
1309 case CONST_INT:
1310 if (INTVAL (x) == 0)
1311 *total = 0;
1312 else if (INT_14_BITS (x))
1313 *total = 1;
1314 else
1315 *total = 2;
1316 return true;
1318 case HIGH:
1319 *total = 2;
1320 return true;
1322 case CONST:
1323 case LABEL_REF:
1324 case SYMBOL_REF:
1325 *total = 4;
1326 return true;
1328 case CONST_DOUBLE:
1329 if ((x == CONST0_RTX (DFmode) || x == CONST0_RTX (SFmode))
1330 && outer_code != SET)
1331 *total = 0;
1332 else
1333 *total = 8;
1334 return true;
1336 case MULT:
1337 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
1338 *total = COSTS_N_INSNS (3);
1339 else if (TARGET_PA_11 && !TARGET_DISABLE_FPREGS && !TARGET_SOFT_FLOAT)
1340 *total = COSTS_N_INSNS (8);
1341 else
1342 *total = COSTS_N_INSNS (20);
1343 return true;
1345 case DIV:
1346 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
1348 *total = COSTS_N_INSNS (14);
1349 return true;
1351 /* FALLTHRU */
1353 case UDIV:
1354 case MOD:
1355 case UMOD:
1356 *total = COSTS_N_INSNS (60);
1357 return true;
1359 case PLUS: /* this includes shNadd insns */
1360 case MINUS:
1361 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
1362 *total = COSTS_N_INSNS (3);
1363 else
1364 *total = COSTS_N_INSNS (1);
1365 return true;
1367 case ASHIFT:
1368 case ASHIFTRT:
1369 case LSHIFTRT:
1370 *total = COSTS_N_INSNS (1);
1371 return true;
1373 default:
1374 return false;
1378 /* Ensure mode of ORIG, a REG rtx, is MODE. Returns either ORIG or a
1379 new rtx with the correct mode. */
1380 static inline rtx
1381 force_mode (enum machine_mode mode, rtx orig)
1383 if (mode == GET_MODE (orig))
1384 return orig;
1386 gcc_assert (REGNO (orig) < FIRST_PSEUDO_REGISTER);
1388 return gen_rtx_REG (mode, REGNO (orig));
1391 /* Return 1 if *X is a thread-local symbol. */
1393 static int
1394 pa_tls_symbol_ref_1 (rtx *x, void *data ATTRIBUTE_UNUSED)
1396 return PA_SYMBOL_REF_TLS_P (*x);
1399 /* Return 1 if X contains a thread-local symbol. */
1401 bool
1402 pa_tls_referenced_p (rtx x)
1404 if (!TARGET_HAVE_TLS)
1405 return false;
1407 return for_each_rtx (&x, &pa_tls_symbol_ref_1, 0);
1410 /* Emit insns to move operands[1] into operands[0].
1412 Return 1 if we have written out everything that needs to be done to
1413 do the move. Otherwise, return 0 and the caller will emit the move
1414 normally.
1416 Note SCRATCH_REG may not be in the proper mode depending on how it
1417 will be used. This routine is responsible for creating a new copy
1418 of SCRATCH_REG in the proper mode. */
1421 emit_move_sequence (rtx *operands, enum machine_mode mode, rtx scratch_reg)
1423 register rtx operand0 = operands[0];
1424 register rtx operand1 = operands[1];
1425 register rtx tem;
1427 /* We can only handle indexed addresses in the destination operand
1428 of floating point stores. Thus, we need to break out indexed
1429 addresses from the destination operand. */
1430 if (GET_CODE (operand0) == MEM && IS_INDEX_ADDR_P (XEXP (operand0, 0)))
1432 gcc_assert (can_create_pseudo_p ());
1434 tem = copy_to_mode_reg (Pmode, XEXP (operand0, 0));
1435 operand0 = replace_equiv_address (operand0, tem);
1438 /* On targets with non-equivalent space registers, break out unscaled
1439 indexed addresses from the source operand before the final CSE.
1440 We have to do this because the REG_POINTER flag is not correctly
1441 carried through various optimization passes and CSE may substitute
1442 a pseudo without the pointer set for one with the pointer set. As
1443 a result, we loose various opportunities to create insns with
1444 unscaled indexed addresses. */
1445 if (!TARGET_NO_SPACE_REGS
1446 && !cse_not_expected
1447 && GET_CODE (operand1) == MEM
1448 && GET_CODE (XEXP (operand1, 0)) == PLUS
1449 && REG_P (XEXP (XEXP (operand1, 0), 0))
1450 && REG_P (XEXP (XEXP (operand1, 0), 1)))
1451 operand1
1452 = replace_equiv_address (operand1,
1453 copy_to_mode_reg (Pmode, XEXP (operand1, 0)));
1455 if (scratch_reg
1456 && reload_in_progress && GET_CODE (operand0) == REG
1457 && REGNO (operand0) >= FIRST_PSEUDO_REGISTER)
1458 operand0 = reg_equiv_mem[REGNO (operand0)];
1459 else if (scratch_reg
1460 && reload_in_progress && GET_CODE (operand0) == SUBREG
1461 && GET_CODE (SUBREG_REG (operand0)) == REG
1462 && REGNO (SUBREG_REG (operand0)) >= FIRST_PSEUDO_REGISTER)
1464 /* We must not alter SUBREG_BYTE (operand0) since that would confuse
1465 the code which tracks sets/uses for delete_output_reload. */
1466 rtx temp = gen_rtx_SUBREG (GET_MODE (operand0),
1467 reg_equiv_mem [REGNO (SUBREG_REG (operand0))],
1468 SUBREG_BYTE (operand0));
1469 operand0 = alter_subreg (&temp);
1472 if (scratch_reg
1473 && reload_in_progress && GET_CODE (operand1) == REG
1474 && REGNO (operand1) >= FIRST_PSEUDO_REGISTER)
1475 operand1 = reg_equiv_mem[REGNO (operand1)];
1476 else if (scratch_reg
1477 && reload_in_progress && GET_CODE (operand1) == SUBREG
1478 && GET_CODE (SUBREG_REG (operand1)) == REG
1479 && REGNO (SUBREG_REG (operand1)) >= FIRST_PSEUDO_REGISTER)
1481 /* We must not alter SUBREG_BYTE (operand0) since that would confuse
1482 the code which tracks sets/uses for delete_output_reload. */
1483 rtx temp = gen_rtx_SUBREG (GET_MODE (operand1),
1484 reg_equiv_mem [REGNO (SUBREG_REG (operand1))],
1485 SUBREG_BYTE (operand1));
1486 operand1 = alter_subreg (&temp);
1489 if (scratch_reg && reload_in_progress && GET_CODE (operand0) == MEM
1490 && ((tem = find_replacement (&XEXP (operand0, 0)))
1491 != XEXP (operand0, 0)))
1492 operand0 = replace_equiv_address (operand0, tem);
1494 if (scratch_reg && reload_in_progress && GET_CODE (operand1) == MEM
1495 && ((tem = find_replacement (&XEXP (operand1, 0)))
1496 != XEXP (operand1, 0)))
1497 operand1 = replace_equiv_address (operand1, tem);
1499 /* Handle secondary reloads for loads/stores of FP registers from
1500 REG+D addresses where D does not fit in 5 or 14 bits, including
1501 (subreg (mem (addr))) cases. */
1502 if (scratch_reg
1503 && fp_reg_operand (operand0, mode)
1504 && ((GET_CODE (operand1) == MEM
1505 && !memory_address_p ((GET_MODE_SIZE (mode) == 4 ? SFmode : DFmode),
1506 XEXP (operand1, 0)))
1507 || ((GET_CODE (operand1) == SUBREG
1508 && GET_CODE (XEXP (operand1, 0)) == MEM
1509 && !memory_address_p ((GET_MODE_SIZE (mode) == 4
1510 ? SFmode : DFmode),
1511 XEXP (XEXP (operand1, 0), 0))))))
1513 if (GET_CODE (operand1) == SUBREG)
1514 operand1 = XEXP (operand1, 0);
1516 /* SCRATCH_REG will hold an address and maybe the actual data. We want
1517 it in WORD_MODE regardless of what mode it was originally given
1518 to us. */
1519 scratch_reg = force_mode (word_mode, scratch_reg);
1521 /* D might not fit in 14 bits either; for such cases load D into
1522 scratch reg. */
1523 if (!memory_address_p (Pmode, XEXP (operand1, 0)))
1525 emit_move_insn (scratch_reg, XEXP (XEXP (operand1, 0), 1));
1526 emit_move_insn (scratch_reg,
1527 gen_rtx_fmt_ee (GET_CODE (XEXP (operand1, 0)),
1528 Pmode,
1529 XEXP (XEXP (operand1, 0), 0),
1530 scratch_reg));
1532 else
1533 emit_move_insn (scratch_reg, XEXP (operand1, 0));
1534 emit_insn (gen_rtx_SET (VOIDmode, operand0,
1535 replace_equiv_address (operand1, scratch_reg)));
1536 return 1;
1538 else if (scratch_reg
1539 && fp_reg_operand (operand1, mode)
1540 && ((GET_CODE (operand0) == MEM
1541 && !memory_address_p ((GET_MODE_SIZE (mode) == 4
1542 ? SFmode : DFmode),
1543 XEXP (operand0, 0)))
1544 || ((GET_CODE (operand0) == SUBREG)
1545 && GET_CODE (XEXP (operand0, 0)) == MEM
1546 && !memory_address_p ((GET_MODE_SIZE (mode) == 4
1547 ? SFmode : DFmode),
1548 XEXP (XEXP (operand0, 0), 0)))))
1550 if (GET_CODE (operand0) == SUBREG)
1551 operand0 = XEXP (operand0, 0);
1553 /* SCRATCH_REG will hold an address and maybe the actual data. We want
1554 it in WORD_MODE regardless of what mode it was originally given
1555 to us. */
1556 scratch_reg = force_mode (word_mode, scratch_reg);
1558 /* D might not fit in 14 bits either; for such cases load D into
1559 scratch reg. */
1560 if (!memory_address_p (Pmode, XEXP (operand0, 0)))
1562 emit_move_insn (scratch_reg, XEXP (XEXP (operand0, 0), 1));
1563 emit_move_insn (scratch_reg, gen_rtx_fmt_ee (GET_CODE (XEXP (operand0,
1564 0)),
1565 Pmode,
1566 XEXP (XEXP (operand0, 0),
1568 scratch_reg));
1570 else
1571 emit_move_insn (scratch_reg, XEXP (operand0, 0));
1572 emit_insn (gen_rtx_SET (VOIDmode,
1573 replace_equiv_address (operand0, scratch_reg),
1574 operand1));
1575 return 1;
1577 /* Handle secondary reloads for loads of FP registers from constant
1578 expressions by forcing the constant into memory.
1580 Use scratch_reg to hold the address of the memory location.
1582 The proper fix is to change PREFERRED_RELOAD_CLASS to return
1583 NO_REGS when presented with a const_int and a register class
1584 containing only FP registers. Doing so unfortunately creates
1585 more problems than it solves. Fix this for 2.5. */
1586 else if (scratch_reg
1587 && CONSTANT_P (operand1)
1588 && fp_reg_operand (operand0, mode))
1590 rtx const_mem, xoperands[2];
1592 /* SCRATCH_REG will hold an address and maybe the actual data. We want
1593 it in WORD_MODE regardless of what mode it was originally given
1594 to us. */
1595 scratch_reg = force_mode (word_mode, scratch_reg);
1597 /* Force the constant into memory and put the address of the
1598 memory location into scratch_reg. */
1599 const_mem = force_const_mem (mode, operand1);
1600 xoperands[0] = scratch_reg;
1601 xoperands[1] = XEXP (const_mem, 0);
1602 emit_move_sequence (xoperands, Pmode, 0);
1604 /* Now load the destination register. */
1605 emit_insn (gen_rtx_SET (mode, operand0,
1606 replace_equiv_address (const_mem, scratch_reg)));
1607 return 1;
1609 /* Handle secondary reloads for SAR. These occur when trying to load
1610 the SAR from memory, FP register, or with a constant. */
1611 else if (scratch_reg
1612 && GET_CODE (operand0) == REG
1613 && REGNO (operand0) < FIRST_PSEUDO_REGISTER
1614 && REGNO_REG_CLASS (REGNO (operand0)) == SHIFT_REGS
1615 && (GET_CODE (operand1) == MEM
1616 || GET_CODE (operand1) == CONST_INT
1617 || (GET_CODE (operand1) == REG
1618 && FP_REG_CLASS_P (REGNO_REG_CLASS (REGNO (operand1))))))
1620 /* D might not fit in 14 bits either; for such cases load D into
1621 scratch reg. */
1622 if (GET_CODE (operand1) == MEM
1623 && !memory_address_p (Pmode, XEXP (operand1, 0)))
1625 /* We are reloading the address into the scratch register, so we
1626 want to make sure the scratch register is a full register. */
1627 scratch_reg = force_mode (word_mode, scratch_reg);
1629 emit_move_insn (scratch_reg, XEXP (XEXP (operand1, 0), 1));
1630 emit_move_insn (scratch_reg, gen_rtx_fmt_ee (GET_CODE (XEXP (operand1,
1631 0)),
1632 Pmode,
1633 XEXP (XEXP (operand1, 0),
1635 scratch_reg));
1637 /* Now we are going to load the scratch register from memory,
1638 we want to load it in the same width as the original MEM,
1639 which must be the same as the width of the ultimate destination,
1640 OPERAND0. */
1641 scratch_reg = force_mode (GET_MODE (operand0), scratch_reg);
1643 emit_move_insn (scratch_reg,
1644 replace_equiv_address (operand1, scratch_reg));
1646 else
1648 /* We want to load the scratch register using the same mode as
1649 the ultimate destination. */
1650 scratch_reg = force_mode (GET_MODE (operand0), scratch_reg);
1652 emit_move_insn (scratch_reg, operand1);
1655 /* And emit the insn to set the ultimate destination. We know that
1656 the scratch register has the same mode as the destination at this
1657 point. */
1658 emit_move_insn (operand0, scratch_reg);
1659 return 1;
1661 /* Handle the most common case: storing into a register. */
1662 else if (register_operand (operand0, mode))
1664 if (register_operand (operand1, mode)
1665 || (GET_CODE (operand1) == CONST_INT
1666 && cint_ok_for_move (INTVAL (operand1)))
1667 || (operand1 == CONST0_RTX (mode))
1668 || (GET_CODE (operand1) == HIGH
1669 && !symbolic_operand (XEXP (operand1, 0), VOIDmode))
1670 /* Only `general_operands' can come here, so MEM is ok. */
1671 || GET_CODE (operand1) == MEM)
1673 /* Various sets are created during RTL generation which don't
1674 have the REG_POINTER flag correctly set. After the CSE pass,
1675 instruction recognition can fail if we don't consistently
1676 set this flag when performing register copies. This should
1677 also improve the opportunities for creating insns that use
1678 unscaled indexing. */
1679 if (REG_P (operand0) && REG_P (operand1))
1681 if (REG_POINTER (operand1)
1682 && !REG_POINTER (operand0)
1683 && !HARD_REGISTER_P (operand0))
1684 copy_reg_pointer (operand0, operand1);
1685 else if (REG_POINTER (operand0)
1686 && !REG_POINTER (operand1)
1687 && !HARD_REGISTER_P (operand1))
1688 copy_reg_pointer (operand1, operand0);
1691 /* When MEMs are broken out, the REG_POINTER flag doesn't
1692 get set. In some cases, we can set the REG_POINTER flag
1693 from the declaration for the MEM. */
1694 if (REG_P (operand0)
1695 && GET_CODE (operand1) == MEM
1696 && !REG_POINTER (operand0))
1698 tree decl = MEM_EXPR (operand1);
1700 /* Set the register pointer flag and register alignment
1701 if the declaration for this memory reference is a
1702 pointer type. Fortran indirect argument references
1703 are ignored. */
1704 if (decl
1705 && !(flag_argument_noalias > 1
1706 && TREE_CODE (decl) == INDIRECT_REF
1707 && TREE_CODE (TREE_OPERAND (decl, 0)) == PARM_DECL))
1709 tree type;
1711 /* If this is a COMPONENT_REF, use the FIELD_DECL from
1712 tree operand 1. */
1713 if (TREE_CODE (decl) == COMPONENT_REF)
1714 decl = TREE_OPERAND (decl, 1);
1716 type = TREE_TYPE (decl);
1717 type = strip_array_types (type);
1719 if (POINTER_TYPE_P (type))
1721 int align;
1723 type = TREE_TYPE (type);
1724 /* Using TYPE_ALIGN_OK is rather conservative as
1725 only the ada frontend actually sets it. */
1726 align = (TYPE_ALIGN_OK (type) ? TYPE_ALIGN (type)
1727 : BITS_PER_UNIT);
1728 mark_reg_pointer (operand0, align);
1733 emit_insn (gen_rtx_SET (VOIDmode, operand0, operand1));
1734 return 1;
1737 else if (GET_CODE (operand0) == MEM)
1739 if (mode == DFmode && operand1 == CONST0_RTX (mode)
1740 && !(reload_in_progress || reload_completed))
1742 rtx temp = gen_reg_rtx (DFmode);
1744 emit_insn (gen_rtx_SET (VOIDmode, temp, operand1));
1745 emit_insn (gen_rtx_SET (VOIDmode, operand0, temp));
1746 return 1;
1748 if (register_operand (operand1, mode) || operand1 == CONST0_RTX (mode))
1750 /* Run this case quickly. */
1751 emit_insn (gen_rtx_SET (VOIDmode, operand0, operand1));
1752 return 1;
1754 if (! (reload_in_progress || reload_completed))
1756 operands[0] = validize_mem (operand0);
1757 operands[1] = operand1 = force_reg (mode, operand1);
1761 /* Simplify the source if we need to.
1762 Note we do have to handle function labels here, even though we do
1763 not consider them legitimate constants. Loop optimizations can
1764 call the emit_move_xxx with one as a source. */
1765 if ((GET_CODE (operand1) != HIGH && immediate_operand (operand1, mode))
1766 || function_label_operand (operand1, mode)
1767 || (GET_CODE (operand1) == HIGH
1768 && symbolic_operand (XEXP (operand1, 0), mode)))
1770 int ishighonly = 0;
1772 if (GET_CODE (operand1) == HIGH)
1774 ishighonly = 1;
1775 operand1 = XEXP (operand1, 0);
1777 if (symbolic_operand (operand1, mode))
1779 /* Argh. The assembler and linker can't handle arithmetic
1780 involving plabels.
1782 So we force the plabel into memory, load operand0 from
1783 the memory location, then add in the constant part. */
1784 if ((GET_CODE (operand1) == CONST
1785 && GET_CODE (XEXP (operand1, 0)) == PLUS
1786 && function_label_operand (XEXP (XEXP (operand1, 0), 0), Pmode))
1787 || function_label_operand (operand1, mode))
1789 rtx temp, const_part;
1791 /* Figure out what (if any) scratch register to use. */
1792 if (reload_in_progress || reload_completed)
1794 scratch_reg = scratch_reg ? scratch_reg : operand0;
1795 /* SCRATCH_REG will hold an address and maybe the actual
1796 data. We want it in WORD_MODE regardless of what mode it
1797 was originally given to us. */
1798 scratch_reg = force_mode (word_mode, scratch_reg);
1800 else if (flag_pic)
1801 scratch_reg = gen_reg_rtx (Pmode);
1803 if (GET_CODE (operand1) == CONST)
1805 /* Save away the constant part of the expression. */
1806 const_part = XEXP (XEXP (operand1, 0), 1);
1807 gcc_assert (GET_CODE (const_part) == CONST_INT);
1809 /* Force the function label into memory. */
1810 temp = force_const_mem (mode, XEXP (XEXP (operand1, 0), 0));
1812 else
1814 /* No constant part. */
1815 const_part = NULL_RTX;
1817 /* Force the function label into memory. */
1818 temp = force_const_mem (mode, operand1);
1822 /* Get the address of the memory location. PIC-ify it if
1823 necessary. */
1824 temp = XEXP (temp, 0);
1825 if (flag_pic)
1826 temp = legitimize_pic_address (temp, mode, scratch_reg);
1828 /* Put the address of the memory location into our destination
1829 register. */
1830 operands[1] = temp;
1831 emit_move_sequence (operands, mode, scratch_reg);
1833 /* Now load from the memory location into our destination
1834 register. */
1835 operands[1] = gen_rtx_MEM (Pmode, operands[0]);
1836 emit_move_sequence (operands, mode, scratch_reg);
1838 /* And add back in the constant part. */
1839 if (const_part != NULL_RTX)
1840 expand_inc (operand0, const_part);
1842 return 1;
1845 if (flag_pic)
1847 rtx temp;
1849 if (reload_in_progress || reload_completed)
1851 temp = scratch_reg ? scratch_reg : operand0;
1852 /* TEMP will hold an address and maybe the actual
1853 data. We want it in WORD_MODE regardless of what mode it
1854 was originally given to us. */
1855 temp = force_mode (word_mode, temp);
1857 else
1858 temp = gen_reg_rtx (Pmode);
1860 /* (const (plus (symbol) (const_int))) must be forced to
1861 memory during/after reload if the const_int will not fit
1862 in 14 bits. */
1863 if (GET_CODE (operand1) == CONST
1864 && GET_CODE (XEXP (operand1, 0)) == PLUS
1865 && GET_CODE (XEXP (XEXP (operand1, 0), 1)) == CONST_INT
1866 && !INT_14_BITS (XEXP (XEXP (operand1, 0), 1))
1867 && (reload_completed || reload_in_progress)
1868 && flag_pic)
1870 rtx const_mem = force_const_mem (mode, operand1);
1871 operands[1] = legitimize_pic_address (XEXP (const_mem, 0),
1872 mode, temp);
1873 operands[1] = replace_equiv_address (const_mem, operands[1]);
1874 emit_move_sequence (operands, mode, temp);
1876 else
1878 operands[1] = legitimize_pic_address (operand1, mode, temp);
1879 if (REG_P (operand0) && REG_P (operands[1]))
1880 copy_reg_pointer (operand0, operands[1]);
1881 emit_insn (gen_rtx_SET (VOIDmode, operand0, operands[1]));
1884 /* On the HPPA, references to data space are supposed to use dp,
1885 register 27, but showing it in the RTL inhibits various cse
1886 and loop optimizations. */
1887 else
1889 rtx temp, set;
1891 if (reload_in_progress || reload_completed)
1893 temp = scratch_reg ? scratch_reg : operand0;
1894 /* TEMP will hold an address and maybe the actual
1895 data. We want it in WORD_MODE regardless of what mode it
1896 was originally given to us. */
1897 temp = force_mode (word_mode, temp);
1899 else
1900 temp = gen_reg_rtx (mode);
1902 /* Loading a SYMBOL_REF into a register makes that register
1903 safe to be used as the base in an indexed address.
1905 Don't mark hard registers though. That loses. */
1906 if (GET_CODE (operand0) == REG
1907 && REGNO (operand0) >= FIRST_PSEUDO_REGISTER)
1908 mark_reg_pointer (operand0, BITS_PER_UNIT);
1909 if (REGNO (temp) >= FIRST_PSEUDO_REGISTER)
1910 mark_reg_pointer (temp, BITS_PER_UNIT);
1912 if (ishighonly)
1913 set = gen_rtx_SET (mode, operand0, temp);
1914 else
1915 set = gen_rtx_SET (VOIDmode,
1916 operand0,
1917 gen_rtx_LO_SUM (mode, temp, operand1));
1919 emit_insn (gen_rtx_SET (VOIDmode,
1920 temp,
1921 gen_rtx_HIGH (mode, operand1)));
1922 emit_insn (set);
1925 return 1;
1927 else if (pa_tls_referenced_p (operand1))
1929 rtx tmp = operand1;
1930 rtx addend = NULL;
1932 if (GET_CODE (tmp) == CONST && GET_CODE (XEXP (tmp, 0)) == PLUS)
1934 addend = XEXP (XEXP (tmp, 0), 1);
1935 tmp = XEXP (XEXP (tmp, 0), 0);
1938 gcc_assert (GET_CODE (tmp) == SYMBOL_REF);
1939 tmp = legitimize_tls_address (tmp);
1940 if (addend)
1942 tmp = gen_rtx_PLUS (mode, tmp, addend);
1943 tmp = force_operand (tmp, operands[0]);
1945 operands[1] = tmp;
1947 else if (GET_CODE (operand1) != CONST_INT
1948 || !cint_ok_for_move (INTVAL (operand1)))
1950 rtx insn, temp;
1951 rtx op1 = operand1;
1952 HOST_WIDE_INT value = 0;
1953 HOST_WIDE_INT insv = 0;
1954 int insert = 0;
1956 if (GET_CODE (operand1) == CONST_INT)
1957 value = INTVAL (operand1);
1959 if (TARGET_64BIT
1960 && GET_CODE (operand1) == CONST_INT
1961 && HOST_BITS_PER_WIDE_INT > 32
1962 && GET_MODE_BITSIZE (GET_MODE (operand0)) > 32)
1964 HOST_WIDE_INT nval;
1966 /* Extract the low order 32 bits of the value and sign extend.
1967 If the new value is the same as the original value, we can
1968 can use the original value as-is. If the new value is
1969 different, we use it and insert the most-significant 32-bits
1970 of the original value into the final result. */
1971 nval = ((value & (((HOST_WIDE_INT) 2 << 31) - 1))
1972 ^ ((HOST_WIDE_INT) 1 << 31)) - ((HOST_WIDE_INT) 1 << 31);
1973 if (value != nval)
1975 #if HOST_BITS_PER_WIDE_INT > 32
1976 insv = value >= 0 ? value >> 32 : ~(~value >> 32);
1977 #endif
1978 insert = 1;
1979 value = nval;
1980 operand1 = GEN_INT (nval);
1984 if (reload_in_progress || reload_completed)
1985 temp = scratch_reg ? scratch_reg : operand0;
1986 else
1987 temp = gen_reg_rtx (mode);
1989 /* We don't directly split DImode constants on 32-bit targets
1990 because PLUS uses an 11-bit immediate and the insn sequence
1991 generated is not as efficient as the one using HIGH/LO_SUM. */
1992 if (GET_CODE (operand1) == CONST_INT
1993 && GET_MODE_BITSIZE (mode) <= BITS_PER_WORD
1994 && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
1995 && !insert)
1997 /* Directly break constant into high and low parts. This
1998 provides better optimization opportunities because various
1999 passes recognize constants split with PLUS but not LO_SUM.
2000 We use a 14-bit signed low part except when the addition
2001 of 0x4000 to the high part might change the sign of the
2002 high part. */
2003 HOST_WIDE_INT low = value & 0x3fff;
2004 HOST_WIDE_INT high = value & ~ 0x3fff;
2006 if (low >= 0x2000)
2008 if (high == 0x7fffc000 || (mode == HImode && high == 0x4000))
2009 high += 0x2000;
2010 else
2011 high += 0x4000;
2014 low = value - high;
2016 emit_insn (gen_rtx_SET (VOIDmode, temp, GEN_INT (high)));
2017 operands[1] = gen_rtx_PLUS (mode, temp, GEN_INT (low));
2019 else
2021 emit_insn (gen_rtx_SET (VOIDmode, temp,
2022 gen_rtx_HIGH (mode, operand1)));
2023 operands[1] = gen_rtx_LO_SUM (mode, temp, operand1);
2026 insn = emit_move_insn (operands[0], operands[1]);
2028 /* Now insert the most significant 32 bits of the value
2029 into the register. When we don't have a second register
2030 available, it could take up to nine instructions to load
2031 a 64-bit integer constant. Prior to reload, we force
2032 constants that would take more than three instructions
2033 to load to the constant pool. During and after reload,
2034 we have to handle all possible values. */
2035 if (insert)
2037 /* Use a HIGH/LO_SUM/INSV sequence if we have a second
2038 register and the value to be inserted is outside the
2039 range that can be loaded with three depdi instructions. */
2040 if (temp != operand0 && (insv >= 16384 || insv < -16384))
2042 operand1 = GEN_INT (insv);
2044 emit_insn (gen_rtx_SET (VOIDmode, temp,
2045 gen_rtx_HIGH (mode, operand1)));
2046 emit_move_insn (temp, gen_rtx_LO_SUM (mode, temp, operand1));
2047 emit_insn (gen_insv (operand0, GEN_INT (32),
2048 const0_rtx, temp));
2050 else
2052 int len = 5, pos = 27;
2054 /* Insert the bits using the depdi instruction. */
2055 while (pos >= 0)
2057 HOST_WIDE_INT v5 = ((insv & 31) ^ 16) - 16;
2058 HOST_WIDE_INT sign = v5 < 0;
2060 /* Left extend the insertion. */
2061 insv = (insv >= 0 ? insv >> len : ~(~insv >> len));
2062 while (pos > 0 && (insv & 1) == sign)
2064 insv = (insv >= 0 ? insv >> 1 : ~(~insv >> 1));
2065 len += 1;
2066 pos -= 1;
2069 emit_insn (gen_insv (operand0, GEN_INT (len),
2070 GEN_INT (pos), GEN_INT (v5)));
2072 len = pos > 0 && pos < 5 ? pos : 5;
2073 pos -= len;
2078 set_unique_reg_note (insn, REG_EQUAL, op1);
2080 return 1;
2083 /* Now have insn-emit do whatever it normally does. */
2084 return 0;
2087 /* Examine EXP and return nonzero if it contains an ADDR_EXPR (meaning
2088 it will need a link/runtime reloc). */
2091 reloc_needed (tree exp)
2093 int reloc = 0;
2095 switch (TREE_CODE (exp))
2097 case ADDR_EXPR:
2098 return 1;
2100 case POINTER_PLUS_EXPR:
2101 case PLUS_EXPR:
2102 case MINUS_EXPR:
2103 reloc = reloc_needed (TREE_OPERAND (exp, 0));
2104 reloc |= reloc_needed (TREE_OPERAND (exp, 1));
2105 break;
2107 CASE_CONVERT:
2108 case NON_LVALUE_EXPR:
2109 reloc = reloc_needed (TREE_OPERAND (exp, 0));
2110 break;
2112 case CONSTRUCTOR:
2114 tree value;
2115 unsigned HOST_WIDE_INT ix;
2117 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), ix, value)
2118 if (value)
2119 reloc |= reloc_needed (value);
2121 break;
2123 case ERROR_MARK:
2124 break;
2126 default:
2127 break;
2129 return reloc;
2132 /* Does operand (which is a symbolic_operand) live in text space?
2133 If so, SYMBOL_REF_FLAG, which is set by pa_encode_section_info,
2134 will be true. */
2137 read_only_operand (rtx operand, enum machine_mode mode ATTRIBUTE_UNUSED)
2139 if (GET_CODE (operand) == CONST)
2140 operand = XEXP (XEXP (operand, 0), 0);
2141 if (flag_pic)
2143 if (GET_CODE (operand) == SYMBOL_REF)
2144 return SYMBOL_REF_FLAG (operand) && !CONSTANT_POOL_ADDRESS_P (operand);
2146 else
2148 if (GET_CODE (operand) == SYMBOL_REF)
2149 return SYMBOL_REF_FLAG (operand) || CONSTANT_POOL_ADDRESS_P (operand);
2151 return 1;
2155 /* Return the best assembler insn template
2156 for moving operands[1] into operands[0] as a fullword. */
2157 const char *
2158 singlemove_string (rtx *operands)
2160 HOST_WIDE_INT intval;
2162 if (GET_CODE (operands[0]) == MEM)
2163 return "stw %r1,%0";
2164 if (GET_CODE (operands[1]) == MEM)
2165 return "ldw %1,%0";
2166 if (GET_CODE (operands[1]) == CONST_DOUBLE)
2168 long i;
2169 REAL_VALUE_TYPE d;
2171 gcc_assert (GET_MODE (operands[1]) == SFmode);
2173 /* Translate the CONST_DOUBLE to a CONST_INT with the same target
2174 bit pattern. */
2175 REAL_VALUE_FROM_CONST_DOUBLE (d, operands[1]);
2176 REAL_VALUE_TO_TARGET_SINGLE (d, i);
2178 operands[1] = GEN_INT (i);
2179 /* Fall through to CONST_INT case. */
2181 if (GET_CODE (operands[1]) == CONST_INT)
2183 intval = INTVAL (operands[1]);
2185 if (VAL_14_BITS_P (intval))
2186 return "ldi %1,%0";
2187 else if ((intval & 0x7ff) == 0)
2188 return "ldil L'%1,%0";
2189 else if (zdepi_cint_p (intval))
2190 return "{zdepi %Z1,%0|depwi,z %Z1,%0}";
2191 else
2192 return "ldil L'%1,%0\n\tldo R'%1(%0),%0";
2194 return "copy %1,%0";
2198 /* Compute position (in OP[1]) and width (in OP[2])
2199 useful for copying IMM to a register using the zdepi
2200 instructions. Store the immediate value to insert in OP[0]. */
2201 static void
2202 compute_zdepwi_operands (unsigned HOST_WIDE_INT imm, unsigned *op)
2204 int lsb, len;
2206 /* Find the least significant set bit in IMM. */
2207 for (lsb = 0; lsb < 32; lsb++)
2209 if ((imm & 1) != 0)
2210 break;
2211 imm >>= 1;
2214 /* Choose variants based on *sign* of the 5-bit field. */
2215 if ((imm & 0x10) == 0)
2216 len = (lsb <= 28) ? 4 : 32 - lsb;
2217 else
2219 /* Find the width of the bitstring in IMM. */
2220 for (len = 5; len < 32; len++)
2222 if ((imm & (1 << len)) == 0)
2223 break;
2226 /* Sign extend IMM as a 5-bit value. */
2227 imm = (imm & 0xf) - 0x10;
2230 op[0] = imm;
2231 op[1] = 31 - lsb;
2232 op[2] = len;
2235 /* Compute position (in OP[1]) and width (in OP[2])
2236 useful for copying IMM to a register using the depdi,z
2237 instructions. Store the immediate value to insert in OP[0]. */
2238 void
2239 compute_zdepdi_operands (unsigned HOST_WIDE_INT imm, unsigned *op)
2241 HOST_WIDE_INT lsb, len;
2243 /* Find the least significant set bit in IMM. */
2244 for (lsb = 0; lsb < HOST_BITS_PER_WIDE_INT; lsb++)
2246 if ((imm & 1) != 0)
2247 break;
2248 imm >>= 1;
2251 /* Choose variants based on *sign* of the 5-bit field. */
2252 if ((imm & 0x10) == 0)
2253 len = ((lsb <= HOST_BITS_PER_WIDE_INT - 4)
2254 ? 4 : HOST_BITS_PER_WIDE_INT - lsb);
2255 else
2257 /* Find the width of the bitstring in IMM. */
2258 for (len = 5; len < HOST_BITS_PER_WIDE_INT; len++)
2260 if ((imm & ((unsigned HOST_WIDE_INT) 1 << len)) == 0)
2261 break;
2264 /* Sign extend IMM as a 5-bit value. */
2265 imm = (imm & 0xf) - 0x10;
2268 op[0] = imm;
2269 op[1] = 63 - lsb;
2270 op[2] = len;
2273 /* Output assembler code to perform a doubleword move insn
2274 with operands OPERANDS. */
2276 const char *
2277 output_move_double (rtx *operands)
2279 enum { REGOP, OFFSOP, MEMOP, CNSTOP, RNDOP } optype0, optype1;
2280 rtx latehalf[2];
2281 rtx addreg0 = 0, addreg1 = 0;
2283 /* First classify both operands. */
2285 if (REG_P (operands[0]))
2286 optype0 = REGOP;
2287 else if (offsettable_memref_p (operands[0]))
2288 optype0 = OFFSOP;
2289 else if (GET_CODE (operands[0]) == MEM)
2290 optype0 = MEMOP;
2291 else
2292 optype0 = RNDOP;
2294 if (REG_P (operands[1]))
2295 optype1 = REGOP;
2296 else if (CONSTANT_P (operands[1]))
2297 optype1 = CNSTOP;
2298 else if (offsettable_memref_p (operands[1]))
2299 optype1 = OFFSOP;
2300 else if (GET_CODE (operands[1]) == MEM)
2301 optype1 = MEMOP;
2302 else
2303 optype1 = RNDOP;
2305 /* Check for the cases that the operand constraints are not
2306 supposed to allow to happen. */
2307 gcc_assert (optype0 == REGOP || optype1 == REGOP);
2309 /* Handle copies between general and floating registers. */
2311 if (optype0 == REGOP && optype1 == REGOP
2312 && FP_REG_P (operands[0]) ^ FP_REG_P (operands[1]))
2314 if (FP_REG_P (operands[0]))
2316 output_asm_insn ("{stws|stw} %1,-16(%%sp)", operands);
2317 output_asm_insn ("{stws|stw} %R1,-12(%%sp)", operands);
2318 return "{fldds|fldd} -16(%%sp),%0";
2320 else
2322 output_asm_insn ("{fstds|fstd} %1,-16(%%sp)", operands);
2323 output_asm_insn ("{ldws|ldw} -16(%%sp),%0", operands);
2324 return "{ldws|ldw} -12(%%sp),%R0";
2328 /* Handle auto decrementing and incrementing loads and stores
2329 specifically, since the structure of the function doesn't work
2330 for them without major modification. Do it better when we learn
2331 this port about the general inc/dec addressing of PA.
2332 (This was written by tege. Chide him if it doesn't work.) */
2334 if (optype0 == MEMOP)
2336 /* We have to output the address syntax ourselves, since print_operand
2337 doesn't deal with the addresses we want to use. Fix this later. */
2339 rtx addr = XEXP (operands[0], 0);
2340 if (GET_CODE (addr) == POST_INC || GET_CODE (addr) == POST_DEC)
2342 rtx high_reg = gen_rtx_SUBREG (SImode, operands[1], 0);
2344 operands[0] = XEXP (addr, 0);
2345 gcc_assert (GET_CODE (operands[1]) == REG
2346 && GET_CODE (operands[0]) == REG);
2348 gcc_assert (!reg_overlap_mentioned_p (high_reg, addr));
2350 /* No overlap between high target register and address
2351 register. (We do this in a non-obvious way to
2352 save a register file writeback) */
2353 if (GET_CODE (addr) == POST_INC)
2354 return "{stws|stw},ma %1,8(%0)\n\tstw %R1,-4(%0)";
2355 return "{stws|stw},ma %1,-8(%0)\n\tstw %R1,12(%0)";
2357 else if (GET_CODE (addr) == PRE_INC || GET_CODE (addr) == PRE_DEC)
2359 rtx high_reg = gen_rtx_SUBREG (SImode, operands[1], 0);
2361 operands[0] = XEXP (addr, 0);
2362 gcc_assert (GET_CODE (operands[1]) == REG
2363 && GET_CODE (operands[0]) == REG);
2365 gcc_assert (!reg_overlap_mentioned_p (high_reg, addr));
2366 /* No overlap between high target register and address
2367 register. (We do this in a non-obvious way to save a
2368 register file writeback) */
2369 if (GET_CODE (addr) == PRE_INC)
2370 return "{stws|stw},mb %1,8(%0)\n\tstw %R1,4(%0)";
2371 return "{stws|stw},mb %1,-8(%0)\n\tstw %R1,4(%0)";
2374 if (optype1 == MEMOP)
2376 /* We have to output the address syntax ourselves, since print_operand
2377 doesn't deal with the addresses we want to use. Fix this later. */
2379 rtx addr = XEXP (operands[1], 0);
2380 if (GET_CODE (addr) == POST_INC || GET_CODE (addr) == POST_DEC)
2382 rtx high_reg = gen_rtx_SUBREG (SImode, operands[0], 0);
2384 operands[1] = XEXP (addr, 0);
2385 gcc_assert (GET_CODE (operands[0]) == REG
2386 && GET_CODE (operands[1]) == REG);
2388 if (!reg_overlap_mentioned_p (high_reg, addr))
2390 /* No overlap between high target register and address
2391 register. (We do this in a non-obvious way to
2392 save a register file writeback) */
2393 if (GET_CODE (addr) == POST_INC)
2394 return "{ldws|ldw},ma 8(%1),%0\n\tldw -4(%1),%R0";
2395 return "{ldws|ldw},ma -8(%1),%0\n\tldw 12(%1),%R0";
2397 else
2399 /* This is an undefined situation. We should load into the
2400 address register *and* update that register. Probably
2401 we don't need to handle this at all. */
2402 if (GET_CODE (addr) == POST_INC)
2403 return "ldw 4(%1),%R0\n\t{ldws|ldw},ma 8(%1),%0";
2404 return "ldw 4(%1),%R0\n\t{ldws|ldw},ma -8(%1),%0";
2407 else if (GET_CODE (addr) == PRE_INC || GET_CODE (addr) == PRE_DEC)
2409 rtx high_reg = gen_rtx_SUBREG (SImode, operands[0], 0);
2411 operands[1] = XEXP (addr, 0);
2412 gcc_assert (GET_CODE (operands[0]) == REG
2413 && GET_CODE (operands[1]) == REG);
2415 if (!reg_overlap_mentioned_p (high_reg, addr))
2417 /* No overlap between high target register and address
2418 register. (We do this in a non-obvious way to
2419 save a register file writeback) */
2420 if (GET_CODE (addr) == PRE_INC)
2421 return "{ldws|ldw},mb 8(%1),%0\n\tldw 4(%1),%R0";
2422 return "{ldws|ldw},mb -8(%1),%0\n\tldw 4(%1),%R0";
2424 else
2426 /* This is an undefined situation. We should load into the
2427 address register *and* update that register. Probably
2428 we don't need to handle this at all. */
2429 if (GET_CODE (addr) == PRE_INC)
2430 return "ldw 12(%1),%R0\n\t{ldws|ldw},mb 8(%1),%0";
2431 return "ldw -4(%1),%R0\n\t{ldws|ldw},mb -8(%1),%0";
2434 else if (GET_CODE (addr) == PLUS
2435 && GET_CODE (XEXP (addr, 0)) == MULT)
2437 rtx xoperands[4];
2438 rtx high_reg = gen_rtx_SUBREG (SImode, operands[0], 0);
2440 if (!reg_overlap_mentioned_p (high_reg, addr))
2442 xoperands[0] = high_reg;
2443 xoperands[1] = XEXP (addr, 1);
2444 xoperands[2] = XEXP (XEXP (addr, 0), 0);
2445 xoperands[3] = XEXP (XEXP (addr, 0), 1);
2446 output_asm_insn ("{sh%O3addl %2,%1,%0|shladd,l %2,%O3,%1,%0}",
2447 xoperands);
2448 return "ldw 4(%0),%R0\n\tldw 0(%0),%0";
2450 else
2452 xoperands[0] = high_reg;
2453 xoperands[1] = XEXP (addr, 1);
2454 xoperands[2] = XEXP (XEXP (addr, 0), 0);
2455 xoperands[3] = XEXP (XEXP (addr, 0), 1);
2456 output_asm_insn ("{sh%O3addl %2,%1,%R0|shladd,l %2,%O3,%1,%R0}",
2457 xoperands);
2458 return "ldw 0(%R0),%0\n\tldw 4(%R0),%R0";
2463 /* If an operand is an unoffsettable memory ref, find a register
2464 we can increment temporarily to make it refer to the second word. */
2466 if (optype0 == MEMOP)
2467 addreg0 = find_addr_reg (XEXP (operands[0], 0));
2469 if (optype1 == MEMOP)
2470 addreg1 = find_addr_reg (XEXP (operands[1], 0));
2472 /* Ok, we can do one word at a time.
2473 Normally we do the low-numbered word first.
2475 In either case, set up in LATEHALF the operands to use
2476 for the high-numbered word and in some cases alter the
2477 operands in OPERANDS to be suitable for the low-numbered word. */
2479 if (optype0 == REGOP)
2480 latehalf[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
2481 else if (optype0 == OFFSOP)
2482 latehalf[0] = adjust_address (operands[0], SImode, 4);
2483 else
2484 latehalf[0] = operands[0];
2486 if (optype1 == REGOP)
2487 latehalf[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
2488 else if (optype1 == OFFSOP)
2489 latehalf[1] = adjust_address (operands[1], SImode, 4);
2490 else if (optype1 == CNSTOP)
2491 split_double (operands[1], &operands[1], &latehalf[1]);
2492 else
2493 latehalf[1] = operands[1];
2495 /* If the first move would clobber the source of the second one,
2496 do them in the other order.
2498 This can happen in two cases:
2500 mem -> register where the first half of the destination register
2501 is the same register used in the memory's address. Reload
2502 can create such insns.
2504 mem in this case will be either register indirect or register
2505 indirect plus a valid offset.
2507 register -> register move where REGNO(dst) == REGNO(src + 1)
2508 someone (Tim/Tege?) claimed this can happen for parameter loads.
2510 Handle mem -> register case first. */
2511 if (optype0 == REGOP
2512 && (optype1 == MEMOP || optype1 == OFFSOP)
2513 && refers_to_regno_p (REGNO (operands[0]), REGNO (operands[0]) + 1,
2514 operands[1], 0))
2516 /* Do the late half first. */
2517 if (addreg1)
2518 output_asm_insn ("ldo 4(%0),%0", &addreg1);
2519 output_asm_insn (singlemove_string (latehalf), latehalf);
2521 /* Then clobber. */
2522 if (addreg1)
2523 output_asm_insn ("ldo -4(%0),%0", &addreg1);
2524 return singlemove_string (operands);
2527 /* Now handle register -> register case. */
2528 if (optype0 == REGOP && optype1 == REGOP
2529 && REGNO (operands[0]) == REGNO (operands[1]) + 1)
2531 output_asm_insn (singlemove_string (latehalf), latehalf);
2532 return singlemove_string (operands);
2535 /* Normal case: do the two words, low-numbered first. */
2537 output_asm_insn (singlemove_string (operands), operands);
2539 /* Make any unoffsettable addresses point at high-numbered word. */
2540 if (addreg0)
2541 output_asm_insn ("ldo 4(%0),%0", &addreg0);
2542 if (addreg1)
2543 output_asm_insn ("ldo 4(%0),%0", &addreg1);
2545 /* Do that word. */
2546 output_asm_insn (singlemove_string (latehalf), latehalf);
2548 /* Undo the adds we just did. */
2549 if (addreg0)
2550 output_asm_insn ("ldo -4(%0),%0", &addreg0);
2551 if (addreg1)
2552 output_asm_insn ("ldo -4(%0),%0", &addreg1);
2554 return "";
2557 const char *
2558 output_fp_move_double (rtx *operands)
2560 if (FP_REG_P (operands[0]))
2562 if (FP_REG_P (operands[1])
2563 || operands[1] == CONST0_RTX (GET_MODE (operands[0])))
2564 output_asm_insn ("fcpy,dbl %f1,%0", operands);
2565 else
2566 output_asm_insn ("fldd%F1 %1,%0", operands);
2568 else if (FP_REG_P (operands[1]))
2570 output_asm_insn ("fstd%F0 %1,%0", operands);
2572 else
2574 rtx xoperands[2];
2576 gcc_assert (operands[1] == CONST0_RTX (GET_MODE (operands[0])));
2578 /* This is a pain. You have to be prepared to deal with an
2579 arbitrary address here including pre/post increment/decrement.
2581 so avoid this in the MD. */
2582 gcc_assert (GET_CODE (operands[0]) == REG);
2584 xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
2585 xoperands[0] = operands[0];
2586 output_asm_insn ("copy %%r0,%0\n\tcopy %%r0,%1", xoperands);
2588 return "";
2591 /* Return a REG that occurs in ADDR with coefficient 1.
2592 ADDR can be effectively incremented by incrementing REG. */
2594 static rtx
2595 find_addr_reg (rtx addr)
2597 while (GET_CODE (addr) == PLUS)
2599 if (GET_CODE (XEXP (addr, 0)) == REG)
2600 addr = XEXP (addr, 0);
2601 else if (GET_CODE (XEXP (addr, 1)) == REG)
2602 addr = XEXP (addr, 1);
2603 else if (CONSTANT_P (XEXP (addr, 0)))
2604 addr = XEXP (addr, 1);
2605 else if (CONSTANT_P (XEXP (addr, 1)))
2606 addr = XEXP (addr, 0);
2607 else
2608 gcc_unreachable ();
2610 gcc_assert (GET_CODE (addr) == REG);
2611 return addr;
2614 /* Emit code to perform a block move.
2616 OPERANDS[0] is the destination pointer as a REG, clobbered.
2617 OPERANDS[1] is the source pointer as a REG, clobbered.
2618 OPERANDS[2] is a register for temporary storage.
2619 OPERANDS[3] is a register for temporary storage.
2620 OPERANDS[4] is the size as a CONST_INT
2621 OPERANDS[5] is the alignment safe to use, as a CONST_INT.
2622 OPERANDS[6] is another temporary register. */
2624 const char *
2625 output_block_move (rtx *operands, int size_is_constant ATTRIBUTE_UNUSED)
2627 int align = INTVAL (operands[5]);
2628 unsigned long n_bytes = INTVAL (operands[4]);
2630 /* We can't move more than a word at a time because the PA
2631 has no longer integer move insns. (Could use fp mem ops?) */
2632 if (align > (TARGET_64BIT ? 8 : 4))
2633 align = (TARGET_64BIT ? 8 : 4);
2635 /* Note that we know each loop below will execute at least twice
2636 (else we would have open-coded the copy). */
2637 switch (align)
2639 case 8:
2640 /* Pre-adjust the loop counter. */
2641 operands[4] = GEN_INT (n_bytes - 16);
2642 output_asm_insn ("ldi %4,%2", operands);
2644 /* Copying loop. */
2645 output_asm_insn ("ldd,ma 8(%1),%3", operands);
2646 output_asm_insn ("ldd,ma 8(%1),%6", operands);
2647 output_asm_insn ("std,ma %3,8(%0)", operands);
2648 output_asm_insn ("addib,>= -16,%2,.-12", operands);
2649 output_asm_insn ("std,ma %6,8(%0)", operands);
2651 /* Handle the residual. There could be up to 7 bytes of
2652 residual to copy! */
2653 if (n_bytes % 16 != 0)
2655 operands[4] = GEN_INT (n_bytes % 8);
2656 if (n_bytes % 16 >= 8)
2657 output_asm_insn ("ldd,ma 8(%1),%3", operands);
2658 if (n_bytes % 8 != 0)
2659 output_asm_insn ("ldd 0(%1),%6", operands);
2660 if (n_bytes % 16 >= 8)
2661 output_asm_insn ("std,ma %3,8(%0)", operands);
2662 if (n_bytes % 8 != 0)
2663 output_asm_insn ("stdby,e %6,%4(%0)", operands);
2665 return "";
2667 case 4:
2668 /* Pre-adjust the loop counter. */
2669 operands[4] = GEN_INT (n_bytes - 8);
2670 output_asm_insn ("ldi %4,%2", operands);
2672 /* Copying loop. */
2673 output_asm_insn ("{ldws|ldw},ma 4(%1),%3", operands);
2674 output_asm_insn ("{ldws|ldw},ma 4(%1),%6", operands);
2675 output_asm_insn ("{stws|stw},ma %3,4(%0)", operands);
2676 output_asm_insn ("addib,>= -8,%2,.-12", operands);
2677 output_asm_insn ("{stws|stw},ma %6,4(%0)", operands);
2679 /* Handle the residual. There could be up to 7 bytes of
2680 residual to copy! */
2681 if (n_bytes % 8 != 0)
2683 operands[4] = GEN_INT (n_bytes % 4);
2684 if (n_bytes % 8 >= 4)
2685 output_asm_insn ("{ldws|ldw},ma 4(%1),%3", operands);
2686 if (n_bytes % 4 != 0)
2687 output_asm_insn ("ldw 0(%1),%6", operands);
2688 if (n_bytes % 8 >= 4)
2689 output_asm_insn ("{stws|stw},ma %3,4(%0)", operands);
2690 if (n_bytes % 4 != 0)
2691 output_asm_insn ("{stbys|stby},e %6,%4(%0)", operands);
2693 return "";
2695 case 2:
2696 /* Pre-adjust the loop counter. */
2697 operands[4] = GEN_INT (n_bytes - 4);
2698 output_asm_insn ("ldi %4,%2", operands);
2700 /* Copying loop. */
2701 output_asm_insn ("{ldhs|ldh},ma 2(%1),%3", operands);
2702 output_asm_insn ("{ldhs|ldh},ma 2(%1),%6", operands);
2703 output_asm_insn ("{sths|sth},ma %3,2(%0)", operands);
2704 output_asm_insn ("addib,>= -4,%2,.-12", operands);
2705 output_asm_insn ("{sths|sth},ma %6,2(%0)", operands);
2707 /* Handle the residual. */
2708 if (n_bytes % 4 != 0)
2710 if (n_bytes % 4 >= 2)
2711 output_asm_insn ("{ldhs|ldh},ma 2(%1),%3", operands);
2712 if (n_bytes % 2 != 0)
2713 output_asm_insn ("ldb 0(%1),%6", operands);
2714 if (n_bytes % 4 >= 2)
2715 output_asm_insn ("{sths|sth},ma %3,2(%0)", operands);
2716 if (n_bytes % 2 != 0)
2717 output_asm_insn ("stb %6,0(%0)", operands);
2719 return "";
2721 case 1:
2722 /* Pre-adjust the loop counter. */
2723 operands[4] = GEN_INT (n_bytes - 2);
2724 output_asm_insn ("ldi %4,%2", operands);
2726 /* Copying loop. */
2727 output_asm_insn ("{ldbs|ldb},ma 1(%1),%3", operands);
2728 output_asm_insn ("{ldbs|ldb},ma 1(%1),%6", operands);
2729 output_asm_insn ("{stbs|stb},ma %3,1(%0)", operands);
2730 output_asm_insn ("addib,>= -2,%2,.-12", operands);
2731 output_asm_insn ("{stbs|stb},ma %6,1(%0)", operands);
2733 /* Handle the residual. */
2734 if (n_bytes % 2 != 0)
2736 output_asm_insn ("ldb 0(%1),%3", operands);
2737 output_asm_insn ("stb %3,0(%0)", operands);
2739 return "";
2741 default:
2742 gcc_unreachable ();
2746 /* Count the number of insns necessary to handle this block move.
2748 Basic structure is the same as emit_block_move, except that we
2749 count insns rather than emit them. */
2751 static int
2752 compute_movmem_length (rtx insn)
2754 rtx pat = PATTERN (insn);
2755 unsigned int align = INTVAL (XEXP (XVECEXP (pat, 0, 7), 0));
2756 unsigned long n_bytes = INTVAL (XEXP (XVECEXP (pat, 0, 6), 0));
2757 unsigned int n_insns = 0;
2759 /* We can't move more than four bytes at a time because the PA
2760 has no longer integer move insns. (Could use fp mem ops?) */
2761 if (align > (TARGET_64BIT ? 8 : 4))
2762 align = (TARGET_64BIT ? 8 : 4);
2764 /* The basic copying loop. */
2765 n_insns = 6;
2767 /* Residuals. */
2768 if (n_bytes % (2 * align) != 0)
2770 if ((n_bytes % (2 * align)) >= align)
2771 n_insns += 2;
2773 if ((n_bytes % align) != 0)
2774 n_insns += 2;
2777 /* Lengths are expressed in bytes now; each insn is 4 bytes. */
2778 return n_insns * 4;
2781 /* Emit code to perform a block clear.
2783 OPERANDS[0] is the destination pointer as a REG, clobbered.
2784 OPERANDS[1] is a register for temporary storage.
2785 OPERANDS[2] is the size as a CONST_INT
2786 OPERANDS[3] is the alignment safe to use, as a CONST_INT. */
2788 const char *
2789 output_block_clear (rtx *operands, int size_is_constant ATTRIBUTE_UNUSED)
2791 int align = INTVAL (operands[3]);
2792 unsigned long n_bytes = INTVAL (operands[2]);
2794 /* We can't clear more than a word at a time because the PA
2795 has no longer integer move insns. */
2796 if (align > (TARGET_64BIT ? 8 : 4))
2797 align = (TARGET_64BIT ? 8 : 4);
2799 /* Note that we know each loop below will execute at least twice
2800 (else we would have open-coded the copy). */
2801 switch (align)
2803 case 8:
2804 /* Pre-adjust the loop counter. */
2805 operands[2] = GEN_INT (n_bytes - 16);
2806 output_asm_insn ("ldi %2,%1", operands);
2808 /* Loop. */
2809 output_asm_insn ("std,ma %%r0,8(%0)", operands);
2810 output_asm_insn ("addib,>= -16,%1,.-4", operands);
2811 output_asm_insn ("std,ma %%r0,8(%0)", operands);
2813 /* Handle the residual. There could be up to 7 bytes of
2814 residual to copy! */
2815 if (n_bytes % 16 != 0)
2817 operands[2] = GEN_INT (n_bytes % 8);
2818 if (n_bytes % 16 >= 8)
2819 output_asm_insn ("std,ma %%r0,8(%0)", operands);
2820 if (n_bytes % 8 != 0)
2821 output_asm_insn ("stdby,e %%r0,%2(%0)", operands);
2823 return "";
2825 case 4:
2826 /* Pre-adjust the loop counter. */
2827 operands[2] = GEN_INT (n_bytes - 8);
2828 output_asm_insn ("ldi %2,%1", operands);
2830 /* Loop. */
2831 output_asm_insn ("{stws|stw},ma %%r0,4(%0)", operands);
2832 output_asm_insn ("addib,>= -8,%1,.-4", operands);
2833 output_asm_insn ("{stws|stw},ma %%r0,4(%0)", operands);
2835 /* Handle the residual. There could be up to 7 bytes of
2836 residual to copy! */
2837 if (n_bytes % 8 != 0)
2839 operands[2] = GEN_INT (n_bytes % 4);
2840 if (n_bytes % 8 >= 4)
2841 output_asm_insn ("{stws|stw},ma %%r0,4(%0)", operands);
2842 if (n_bytes % 4 != 0)
2843 output_asm_insn ("{stbys|stby},e %%r0,%2(%0)", operands);
2845 return "";
2847 case 2:
2848 /* Pre-adjust the loop counter. */
2849 operands[2] = GEN_INT (n_bytes - 4);
2850 output_asm_insn ("ldi %2,%1", operands);
2852 /* Loop. */
2853 output_asm_insn ("{sths|sth},ma %%r0,2(%0)", operands);
2854 output_asm_insn ("addib,>= -4,%1,.-4", operands);
2855 output_asm_insn ("{sths|sth},ma %%r0,2(%0)", operands);
2857 /* Handle the residual. */
2858 if (n_bytes % 4 != 0)
2860 if (n_bytes % 4 >= 2)
2861 output_asm_insn ("{sths|sth},ma %%r0,2(%0)", operands);
2862 if (n_bytes % 2 != 0)
2863 output_asm_insn ("stb %%r0,0(%0)", operands);
2865 return "";
2867 case 1:
2868 /* Pre-adjust the loop counter. */
2869 operands[2] = GEN_INT (n_bytes - 2);
2870 output_asm_insn ("ldi %2,%1", operands);
2872 /* Loop. */
2873 output_asm_insn ("{stbs|stb},ma %%r0,1(%0)", operands);
2874 output_asm_insn ("addib,>= -2,%1,.-4", operands);
2875 output_asm_insn ("{stbs|stb},ma %%r0,1(%0)", operands);
2877 /* Handle the residual. */
2878 if (n_bytes % 2 != 0)
2879 output_asm_insn ("stb %%r0,0(%0)", operands);
2881 return "";
2883 default:
2884 gcc_unreachable ();
2888 /* Count the number of insns necessary to handle this block move.
2890 Basic structure is the same as emit_block_move, except that we
2891 count insns rather than emit them. */
2893 static int
2894 compute_clrmem_length (rtx insn)
2896 rtx pat = PATTERN (insn);
2897 unsigned int align = INTVAL (XEXP (XVECEXP (pat, 0, 4), 0));
2898 unsigned long n_bytes = INTVAL (XEXP (XVECEXP (pat, 0, 3), 0));
2899 unsigned int n_insns = 0;
2901 /* We can't clear more than a word at a time because the PA
2902 has no longer integer move insns. */
2903 if (align > (TARGET_64BIT ? 8 : 4))
2904 align = (TARGET_64BIT ? 8 : 4);
2906 /* The basic loop. */
2907 n_insns = 4;
2909 /* Residuals. */
2910 if (n_bytes % (2 * align) != 0)
2912 if ((n_bytes % (2 * align)) >= align)
2913 n_insns++;
2915 if ((n_bytes % align) != 0)
2916 n_insns++;
2919 /* Lengths are expressed in bytes now; each insn is 4 bytes. */
2920 return n_insns * 4;
2924 const char *
2925 output_and (rtx *operands)
2927 if (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) != 0)
2929 unsigned HOST_WIDE_INT mask = INTVAL (operands[2]);
2930 int ls0, ls1, ms0, p, len;
2932 for (ls0 = 0; ls0 < 32; ls0++)
2933 if ((mask & (1 << ls0)) == 0)
2934 break;
2936 for (ls1 = ls0; ls1 < 32; ls1++)
2937 if ((mask & (1 << ls1)) != 0)
2938 break;
2940 for (ms0 = ls1; ms0 < 32; ms0++)
2941 if ((mask & (1 << ms0)) == 0)
2942 break;
2944 gcc_assert (ms0 == 32);
2946 if (ls1 == 32)
2948 len = ls0;
2950 gcc_assert (len);
2952 operands[2] = GEN_INT (len);
2953 return "{extru|extrw,u} %1,31,%2,%0";
2955 else
2957 /* We could use this `depi' for the case above as well, but `depi'
2958 requires one more register file access than an `extru'. */
2960 p = 31 - ls0;
2961 len = ls1 - ls0;
2963 operands[2] = GEN_INT (p);
2964 operands[3] = GEN_INT (len);
2965 return "{depi|depwi} 0,%2,%3,%0";
2968 else
2969 return "and %1,%2,%0";
2972 /* Return a string to perform a bitwise-and of operands[1] with operands[2]
2973 storing the result in operands[0]. */
2974 const char *
2975 output_64bit_and (rtx *operands)
2977 if (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) != 0)
2979 unsigned HOST_WIDE_INT mask = INTVAL (operands[2]);
2980 int ls0, ls1, ms0, p, len;
2982 for (ls0 = 0; ls0 < HOST_BITS_PER_WIDE_INT; ls0++)
2983 if ((mask & ((unsigned HOST_WIDE_INT) 1 << ls0)) == 0)
2984 break;
2986 for (ls1 = ls0; ls1 < HOST_BITS_PER_WIDE_INT; ls1++)
2987 if ((mask & ((unsigned HOST_WIDE_INT) 1 << ls1)) != 0)
2988 break;
2990 for (ms0 = ls1; ms0 < HOST_BITS_PER_WIDE_INT; ms0++)
2991 if ((mask & ((unsigned HOST_WIDE_INT) 1 << ms0)) == 0)
2992 break;
2994 gcc_assert (ms0 == HOST_BITS_PER_WIDE_INT);
2996 if (ls1 == HOST_BITS_PER_WIDE_INT)
2998 len = ls0;
3000 gcc_assert (len);
3002 operands[2] = GEN_INT (len);
3003 return "extrd,u %1,63,%2,%0";
3005 else
3007 /* We could use this `depi' for the case above as well, but `depi'
3008 requires one more register file access than an `extru'. */
3010 p = 63 - ls0;
3011 len = ls1 - ls0;
3013 operands[2] = GEN_INT (p);
3014 operands[3] = GEN_INT (len);
3015 return "depdi 0,%2,%3,%0";
3018 else
3019 return "and %1,%2,%0";
3022 const char *
3023 output_ior (rtx *operands)
3025 unsigned HOST_WIDE_INT mask = INTVAL (operands[2]);
3026 int bs0, bs1, p, len;
3028 if (INTVAL (operands[2]) == 0)
3029 return "copy %1,%0";
3031 for (bs0 = 0; bs0 < 32; bs0++)
3032 if ((mask & (1 << bs0)) != 0)
3033 break;
3035 for (bs1 = bs0; bs1 < 32; bs1++)
3036 if ((mask & (1 << bs1)) == 0)
3037 break;
3039 gcc_assert (bs1 == 32 || ((unsigned HOST_WIDE_INT) 1 << bs1) > mask);
3041 p = 31 - bs0;
3042 len = bs1 - bs0;
3044 operands[2] = GEN_INT (p);
3045 operands[3] = GEN_INT (len);
3046 return "{depi|depwi} -1,%2,%3,%0";
3049 /* Return a string to perform a bitwise-and of operands[1] with operands[2]
3050 storing the result in operands[0]. */
3051 const char *
3052 output_64bit_ior (rtx *operands)
3054 unsigned HOST_WIDE_INT mask = INTVAL (operands[2]);
3055 int bs0, bs1, p, len;
3057 if (INTVAL (operands[2]) == 0)
3058 return "copy %1,%0";
3060 for (bs0 = 0; bs0 < HOST_BITS_PER_WIDE_INT; bs0++)
3061 if ((mask & ((unsigned HOST_WIDE_INT) 1 << bs0)) != 0)
3062 break;
3064 for (bs1 = bs0; bs1 < HOST_BITS_PER_WIDE_INT; bs1++)
3065 if ((mask & ((unsigned HOST_WIDE_INT) 1 << bs1)) == 0)
3066 break;
3068 gcc_assert (bs1 == HOST_BITS_PER_WIDE_INT
3069 || ((unsigned HOST_WIDE_INT) 1 << bs1) > mask);
3071 p = 63 - bs0;
3072 len = bs1 - bs0;
3074 operands[2] = GEN_INT (p);
3075 operands[3] = GEN_INT (len);
3076 return "depdi -1,%2,%3,%0";
3079 /* Target hook for assembling integer objects. This code handles
3080 aligned SI and DI integers specially since function references
3081 must be preceded by P%. */
3083 static bool
3084 pa_assemble_integer (rtx x, unsigned int size, int aligned_p)
3086 if (size == UNITS_PER_WORD
3087 && aligned_p
3088 && function_label_operand (x, VOIDmode))
3090 fputs (size == 8? "\t.dword\tP%" : "\t.word\tP%", asm_out_file);
3091 output_addr_const (asm_out_file, x);
3092 fputc ('\n', asm_out_file);
3093 return true;
3095 return default_assemble_integer (x, size, aligned_p);
3098 /* Output an ascii string. */
3099 void
3100 output_ascii (FILE *file, const char *p, int size)
3102 int i;
3103 int chars_output;
3104 unsigned char partial_output[16]; /* Max space 4 chars can occupy. */
3106 /* The HP assembler can only take strings of 256 characters at one
3107 time. This is a limitation on input line length, *not* the
3108 length of the string. Sigh. Even worse, it seems that the
3109 restriction is in number of input characters (see \xnn &
3110 \whatever). So we have to do this very carefully. */
3112 fputs ("\t.STRING \"", file);
3114 chars_output = 0;
3115 for (i = 0; i < size; i += 4)
3117 int co = 0;
3118 int io = 0;
3119 for (io = 0, co = 0; io < MIN (4, size - i); io++)
3121 register unsigned int c = (unsigned char) p[i + io];
3123 if (c == '\"' || c == '\\')
3124 partial_output[co++] = '\\';
3125 if (c >= ' ' && c < 0177)
3126 partial_output[co++] = c;
3127 else
3129 unsigned int hexd;
3130 partial_output[co++] = '\\';
3131 partial_output[co++] = 'x';
3132 hexd = c / 16 - 0 + '0';
3133 if (hexd > '9')
3134 hexd -= '9' - 'a' + 1;
3135 partial_output[co++] = hexd;
3136 hexd = c % 16 - 0 + '0';
3137 if (hexd > '9')
3138 hexd -= '9' - 'a' + 1;
3139 partial_output[co++] = hexd;
3142 if (chars_output + co > 243)
3144 fputs ("\"\n\t.STRING \"", file);
3145 chars_output = 0;
3147 fwrite (partial_output, 1, (size_t) co, file);
3148 chars_output += co;
3149 co = 0;
3151 fputs ("\"\n", file);
3154 /* Try to rewrite floating point comparisons & branches to avoid
3155 useless add,tr insns.
3157 CHECK_NOTES is nonzero if we should examine REG_DEAD notes
3158 to see if FPCC is dead. CHECK_NOTES is nonzero for the
3159 first attempt to remove useless add,tr insns. It is zero
3160 for the second pass as reorg sometimes leaves bogus REG_DEAD
3161 notes lying around.
3163 When CHECK_NOTES is zero we can only eliminate add,tr insns
3164 when there's a 1:1 correspondence between fcmp and ftest/fbranch
3165 instructions. */
3166 static void
3167 remove_useless_addtr_insns (int check_notes)
3169 rtx insn;
3170 static int pass = 0;
3172 /* This is fairly cheap, so always run it when optimizing. */
3173 if (optimize > 0)
3175 int fcmp_count = 0;
3176 int fbranch_count = 0;
3178 /* Walk all the insns in this function looking for fcmp & fbranch
3179 instructions. Keep track of how many of each we find. */
3180 for (insn = get_insns (); insn; insn = next_insn (insn))
3182 rtx tmp;
3184 /* Ignore anything that isn't an INSN or a JUMP_INSN. */
3185 if (GET_CODE (insn) != INSN && GET_CODE (insn) != JUMP_INSN)
3186 continue;
3188 tmp = PATTERN (insn);
3190 /* It must be a set. */
3191 if (GET_CODE (tmp) != SET)
3192 continue;
3194 /* If the destination is CCFP, then we've found an fcmp insn. */
3195 tmp = SET_DEST (tmp);
3196 if (GET_CODE (tmp) == REG && REGNO (tmp) == 0)
3198 fcmp_count++;
3199 continue;
3202 tmp = PATTERN (insn);
3203 /* If this is an fbranch instruction, bump the fbranch counter. */
3204 if (GET_CODE (tmp) == SET
3205 && SET_DEST (tmp) == pc_rtx
3206 && GET_CODE (SET_SRC (tmp)) == IF_THEN_ELSE
3207 && GET_CODE (XEXP (SET_SRC (tmp), 0)) == NE
3208 && GET_CODE (XEXP (XEXP (SET_SRC (tmp), 0), 0)) == REG
3209 && REGNO (XEXP (XEXP (SET_SRC (tmp), 0), 0)) == 0)
3211 fbranch_count++;
3212 continue;
3217 /* Find all floating point compare + branch insns. If possible,
3218 reverse the comparison & the branch to avoid add,tr insns. */
3219 for (insn = get_insns (); insn; insn = next_insn (insn))
3221 rtx tmp, next;
3223 /* Ignore anything that isn't an INSN. */
3224 if (GET_CODE (insn) != INSN)
3225 continue;
3227 tmp = PATTERN (insn);
3229 /* It must be a set. */
3230 if (GET_CODE (tmp) != SET)
3231 continue;
3233 /* The destination must be CCFP, which is register zero. */
3234 tmp = SET_DEST (tmp);
3235 if (GET_CODE (tmp) != REG || REGNO (tmp) != 0)
3236 continue;
3238 /* INSN should be a set of CCFP.
3240 See if the result of this insn is used in a reversed FP
3241 conditional branch. If so, reverse our condition and
3242 the branch. Doing so avoids useless add,tr insns. */
3243 next = next_insn (insn);
3244 while (next)
3246 /* Jumps, calls and labels stop our search. */
3247 if (GET_CODE (next) == JUMP_INSN
3248 || GET_CODE (next) == CALL_INSN
3249 || GET_CODE (next) == CODE_LABEL)
3250 break;
3252 /* As does another fcmp insn. */
3253 if (GET_CODE (next) == INSN
3254 && GET_CODE (PATTERN (next)) == SET
3255 && GET_CODE (SET_DEST (PATTERN (next))) == REG
3256 && REGNO (SET_DEST (PATTERN (next))) == 0)
3257 break;
3259 next = next_insn (next);
3262 /* Is NEXT_INSN a branch? */
3263 if (next
3264 && GET_CODE (next) == JUMP_INSN)
3266 rtx pattern = PATTERN (next);
3268 /* If it a reversed fp conditional branch (e.g. uses add,tr)
3269 and CCFP dies, then reverse our conditional and the branch
3270 to avoid the add,tr. */
3271 if (GET_CODE (pattern) == SET
3272 && SET_DEST (pattern) == pc_rtx
3273 && GET_CODE (SET_SRC (pattern)) == IF_THEN_ELSE
3274 && GET_CODE (XEXP (SET_SRC (pattern), 0)) == NE
3275 && GET_CODE (XEXP (XEXP (SET_SRC (pattern), 0), 0)) == REG
3276 && REGNO (XEXP (XEXP (SET_SRC (pattern), 0), 0)) == 0
3277 && GET_CODE (XEXP (SET_SRC (pattern), 1)) == PC
3278 && (fcmp_count == fbranch_count
3279 || (check_notes
3280 && find_regno_note (next, REG_DEAD, 0))))
3282 /* Reverse the branch. */
3283 tmp = XEXP (SET_SRC (pattern), 1);
3284 XEXP (SET_SRC (pattern), 1) = XEXP (SET_SRC (pattern), 2);
3285 XEXP (SET_SRC (pattern), 2) = tmp;
3286 INSN_CODE (next) = -1;
3288 /* Reverse our condition. */
3289 tmp = PATTERN (insn);
3290 PUT_CODE (XEXP (tmp, 1),
3291 (reverse_condition_maybe_unordered
3292 (GET_CODE (XEXP (tmp, 1)))));
3298 pass = !pass;
3302 /* You may have trouble believing this, but this is the 32 bit HP-PA
3303 stack layout. Wow.
3305 Offset Contents
3307 Variable arguments (optional; any number may be allocated)
3309 SP-(4*(N+9)) arg word N
3311 SP-56 arg word 5
3312 SP-52 arg word 4
3314 Fixed arguments (must be allocated; may remain unused)
3316 SP-48 arg word 3
3317 SP-44 arg word 2
3318 SP-40 arg word 1
3319 SP-36 arg word 0
3321 Frame Marker
3323 SP-32 External Data Pointer (DP)
3324 SP-28 External sr4
3325 SP-24 External/stub RP (RP')
3326 SP-20 Current RP
3327 SP-16 Static Link
3328 SP-12 Clean up
3329 SP-8 Calling Stub RP (RP'')
3330 SP-4 Previous SP
3332 Top of Frame
3334 SP-0 Stack Pointer (points to next available address)
3338 /* This function saves registers as follows. Registers marked with ' are
3339 this function's registers (as opposed to the previous function's).
3340 If a frame_pointer isn't needed, r4 is saved as a general register;
3341 the space for the frame pointer is still allocated, though, to keep
3342 things simple.
3345 Top of Frame
3347 SP (FP') Previous FP
3348 SP + 4 Alignment filler (sigh)
3349 SP + 8 Space for locals reserved here.
3353 SP + n All call saved register used.
3357 SP + o All call saved fp registers used.
3361 SP + p (SP') points to next available address.
3365 /* Global variables set by output_function_prologue(). */
3366 /* Size of frame. Need to know this to emit return insns from
3367 leaf procedures. */
3368 static HOST_WIDE_INT actual_fsize, local_fsize;
3369 static int save_fregs;
3371 /* Emit RTL to store REG at the memory location specified by BASE+DISP.
3372 Handle case where DISP > 8k by using the add_high_const patterns.
3374 Note in DISP > 8k case, we will leave the high part of the address
3375 in %r1. There is code in expand_hppa_{prologue,epilogue} that knows this.*/
3377 static void
3378 store_reg (int reg, HOST_WIDE_INT disp, int base)
3380 rtx insn, dest, src, basereg;
3382 src = gen_rtx_REG (word_mode, reg);
3383 basereg = gen_rtx_REG (Pmode, base);
3384 if (VAL_14_BITS_P (disp))
3386 dest = gen_rtx_MEM (word_mode, plus_constant (basereg, disp));
3387 insn = emit_move_insn (dest, src);
3389 else if (TARGET_64BIT && !VAL_32_BITS_P (disp))
3391 rtx delta = GEN_INT (disp);
3392 rtx tmpreg = gen_rtx_REG (Pmode, 1);
3394 emit_move_insn (tmpreg, delta);
3395 insn = emit_move_insn (tmpreg, gen_rtx_PLUS (Pmode, tmpreg, basereg));
3396 if (DO_FRAME_NOTES)
3398 REG_NOTES (insn)
3399 = gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
3400 gen_rtx_SET (VOIDmode, tmpreg,
3401 gen_rtx_PLUS (Pmode, basereg, delta)),
3402 REG_NOTES (insn));
3403 RTX_FRAME_RELATED_P (insn) = 1;
3405 dest = gen_rtx_MEM (word_mode, tmpreg);
3406 insn = emit_move_insn (dest, src);
3408 else
3410 rtx delta = GEN_INT (disp);
3411 rtx high = gen_rtx_PLUS (Pmode, basereg, gen_rtx_HIGH (Pmode, delta));
3412 rtx tmpreg = gen_rtx_REG (Pmode, 1);
3414 emit_move_insn (tmpreg, high);
3415 dest = gen_rtx_MEM (word_mode, gen_rtx_LO_SUM (Pmode, tmpreg, delta));
3416 insn = emit_move_insn (dest, src);
3417 if (DO_FRAME_NOTES)
3419 REG_NOTES (insn)
3420 = gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
3421 gen_rtx_SET (VOIDmode,
3422 gen_rtx_MEM (word_mode,
3423 gen_rtx_PLUS (word_mode, basereg,
3424 delta)),
3425 src),
3426 REG_NOTES (insn));
3430 if (DO_FRAME_NOTES)
3431 RTX_FRAME_RELATED_P (insn) = 1;
3434 /* Emit RTL to store REG at the memory location specified by BASE and then
3435 add MOD to BASE. MOD must be <= 8k. */
3437 static void
3438 store_reg_modify (int base, int reg, HOST_WIDE_INT mod)
3440 rtx insn, basereg, srcreg, delta;
3442 gcc_assert (VAL_14_BITS_P (mod));
3444 basereg = gen_rtx_REG (Pmode, base);
3445 srcreg = gen_rtx_REG (word_mode, reg);
3446 delta = GEN_INT (mod);
3448 insn = emit_insn (gen_post_store (basereg, srcreg, delta));
3449 if (DO_FRAME_NOTES)
3451 RTX_FRAME_RELATED_P (insn) = 1;
3453 /* RTX_FRAME_RELATED_P must be set on each frame related set
3454 in a parallel with more than one element. */
3455 RTX_FRAME_RELATED_P (XVECEXP (PATTERN (insn), 0, 0)) = 1;
3456 RTX_FRAME_RELATED_P (XVECEXP (PATTERN (insn), 0, 1)) = 1;
3460 /* Emit RTL to set REG to the value specified by BASE+DISP. Handle case
3461 where DISP > 8k by using the add_high_const patterns. NOTE indicates
3462 whether to add a frame note or not.
3464 In the DISP > 8k case, we leave the high part of the address in %r1.
3465 There is code in expand_hppa_{prologue,epilogue} that knows about this. */
3467 static void
3468 set_reg_plus_d (int reg, int base, HOST_WIDE_INT disp, int note)
3470 rtx insn;
3472 if (VAL_14_BITS_P (disp))
3474 insn = emit_move_insn (gen_rtx_REG (Pmode, reg),
3475 plus_constant (gen_rtx_REG (Pmode, base), disp));
3477 else if (TARGET_64BIT && !VAL_32_BITS_P (disp))
3479 rtx basereg = gen_rtx_REG (Pmode, base);
3480 rtx delta = GEN_INT (disp);
3481 rtx tmpreg = gen_rtx_REG (Pmode, 1);
3483 emit_move_insn (tmpreg, delta);
3484 insn = emit_move_insn (gen_rtx_REG (Pmode, reg),
3485 gen_rtx_PLUS (Pmode, tmpreg, basereg));
3486 if (DO_FRAME_NOTES)
3487 REG_NOTES (insn)
3488 = gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
3489 gen_rtx_SET (VOIDmode, tmpreg,
3490 gen_rtx_PLUS (Pmode, basereg, delta)),
3491 REG_NOTES (insn));
3493 else
3495 rtx basereg = gen_rtx_REG (Pmode, base);
3496 rtx delta = GEN_INT (disp);
3497 rtx tmpreg = gen_rtx_REG (Pmode, 1);
3499 emit_move_insn (tmpreg,
3500 gen_rtx_PLUS (Pmode, basereg,
3501 gen_rtx_HIGH (Pmode, delta)));
3502 insn = emit_move_insn (gen_rtx_REG (Pmode, reg),
3503 gen_rtx_LO_SUM (Pmode, tmpreg, delta));
3506 if (DO_FRAME_NOTES && note)
3507 RTX_FRAME_RELATED_P (insn) = 1;
3510 HOST_WIDE_INT
3511 compute_frame_size (HOST_WIDE_INT size, int *fregs_live)
3513 int freg_saved = 0;
3514 int i, j;
3516 /* The code in hppa_expand_prologue and hppa_expand_epilogue must
3517 be consistent with the rounding and size calculation done here.
3518 Change them at the same time. */
3520 /* We do our own stack alignment. First, round the size of the
3521 stack locals up to a word boundary. */
3522 size = (size + UNITS_PER_WORD - 1) & ~(UNITS_PER_WORD - 1);
3524 /* Space for previous frame pointer + filler. If any frame is
3525 allocated, we need to add in the STARTING_FRAME_OFFSET. We
3526 waste some space here for the sake of HP compatibility. The
3527 first slot is only used when the frame pointer is needed. */
3528 if (size || frame_pointer_needed)
3529 size += STARTING_FRAME_OFFSET;
3531 /* If the current function calls __builtin_eh_return, then we need
3532 to allocate stack space for registers that will hold data for
3533 the exception handler. */
3534 if (DO_FRAME_NOTES && crtl->calls_eh_return)
3536 unsigned int i;
3538 for (i = 0; EH_RETURN_DATA_REGNO (i) != INVALID_REGNUM; ++i)
3539 continue;
3540 size += i * UNITS_PER_WORD;
3543 /* Account for space used by the callee general register saves. */
3544 for (i = 18, j = frame_pointer_needed ? 4 : 3; i >= j; i--)
3545 if (df_regs_ever_live_p (i))
3546 size += UNITS_PER_WORD;
3548 /* Account for space used by the callee floating point register saves. */
3549 for (i = FP_SAVED_REG_LAST; i >= FP_SAVED_REG_FIRST; i -= FP_REG_STEP)
3550 if (df_regs_ever_live_p (i)
3551 || (!TARGET_64BIT && df_regs_ever_live_p (i + 1)))
3553 freg_saved = 1;
3555 /* We always save both halves of the FP register, so always
3556 increment the frame size by 8 bytes. */
3557 size += 8;
3560 /* If any of the floating registers are saved, account for the
3561 alignment needed for the floating point register save block. */
3562 if (freg_saved)
3564 size = (size + 7) & ~7;
3565 if (fregs_live)
3566 *fregs_live = 1;
3569 /* The various ABIs include space for the outgoing parameters in the
3570 size of the current function's stack frame. We don't need to align
3571 for the outgoing arguments as their alignment is set by the final
3572 rounding for the frame as a whole. */
3573 size += crtl->outgoing_args_size;
3575 /* Allocate space for the fixed frame marker. This space must be
3576 allocated for any function that makes calls or allocates
3577 stack space. */
3578 if (!current_function_is_leaf || size)
3579 size += TARGET_64BIT ? 48 : 32;
3581 /* Finally, round to the preferred stack boundary. */
3582 return ((size + PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1)
3583 & ~(PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1));
3586 /* Generate the assembly code for function entry. FILE is a stdio
3587 stream to output the code to. SIZE is an int: how many units of
3588 temporary storage to allocate.
3590 Refer to the array `regs_ever_live' to determine which registers to
3591 save; `regs_ever_live[I]' is nonzero if register number I is ever
3592 used in the function. This function is responsible for knowing
3593 which registers should not be saved even if used. */
3595 /* On HP-PA, move-double insns between fpu and cpu need an 8-byte block
3596 of memory. If any fpu reg is used in the function, we allocate
3597 such a block here, at the bottom of the frame, just in case it's needed.
3599 If this function is a leaf procedure, then we may choose not
3600 to do a "save" insn. The decision about whether or not
3601 to do this is made in regclass.c. */
3603 static void
3604 pa_output_function_prologue (FILE *file, HOST_WIDE_INT size ATTRIBUTE_UNUSED)
3606 /* The function's label and associated .PROC must never be
3607 separated and must be output *after* any profiling declarations
3608 to avoid changing spaces/subspaces within a procedure. */
3609 ASM_OUTPUT_LABEL (file, XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0));
3610 fputs ("\t.PROC\n", file);
3612 /* hppa_expand_prologue does the dirty work now. We just need
3613 to output the assembler directives which denote the start
3614 of a function. */
3615 fprintf (file, "\t.CALLINFO FRAME=" HOST_WIDE_INT_PRINT_DEC, actual_fsize);
3616 if (current_function_is_leaf)
3617 fputs (",NO_CALLS", file);
3618 else
3619 fputs (",CALLS", file);
3620 if (rp_saved)
3621 fputs (",SAVE_RP", file);
3623 /* The SAVE_SP flag is used to indicate that register %r3 is stored
3624 at the beginning of the frame and that it is used as the frame
3625 pointer for the frame. We do this because our current frame
3626 layout doesn't conform to that specified in the HP runtime
3627 documentation and we need a way to indicate to programs such as
3628 GDB where %r3 is saved. The SAVE_SP flag was chosen because it
3629 isn't used by HP compilers but is supported by the assembler.
3630 However, SAVE_SP is supposed to indicate that the previous stack
3631 pointer has been saved in the frame marker. */
3632 if (frame_pointer_needed)
3633 fputs (",SAVE_SP", file);
3635 /* Pass on information about the number of callee register saves
3636 performed in the prologue.
3638 The compiler is supposed to pass the highest register number
3639 saved, the assembler then has to adjust that number before
3640 entering it into the unwind descriptor (to account for any
3641 caller saved registers with lower register numbers than the
3642 first callee saved register). */
3643 if (gr_saved)
3644 fprintf (file, ",ENTRY_GR=%d", gr_saved + 2);
3646 if (fr_saved)
3647 fprintf (file, ",ENTRY_FR=%d", fr_saved + 11);
3649 fputs ("\n\t.ENTRY\n", file);
3651 remove_useless_addtr_insns (0);
3654 void
3655 hppa_expand_prologue (void)
3657 int merge_sp_adjust_with_store = 0;
3658 HOST_WIDE_INT size = get_frame_size ();
3659 HOST_WIDE_INT offset;
3660 int i;
3661 rtx insn, tmpreg;
3663 gr_saved = 0;
3664 fr_saved = 0;
3665 save_fregs = 0;
3667 /* Compute total size for frame pointer, filler, locals and rounding to
3668 the next word boundary. Similar code appears in compute_frame_size
3669 and must be changed in tandem with this code. */
3670 local_fsize = (size + UNITS_PER_WORD - 1) & ~(UNITS_PER_WORD - 1);
3671 if (local_fsize || frame_pointer_needed)
3672 local_fsize += STARTING_FRAME_OFFSET;
3674 actual_fsize = compute_frame_size (size, &save_fregs);
3676 /* Compute a few things we will use often. */
3677 tmpreg = gen_rtx_REG (word_mode, 1);
3679 /* Save RP first. The calling conventions manual states RP will
3680 always be stored into the caller's frame at sp - 20 or sp - 16
3681 depending on which ABI is in use. */
3682 if (df_regs_ever_live_p (2) || crtl->calls_eh_return)
3684 store_reg (2, TARGET_64BIT ? -16 : -20, STACK_POINTER_REGNUM);
3685 rp_saved = true;
3687 else
3688 rp_saved = false;
3690 /* Allocate the local frame and set up the frame pointer if needed. */
3691 if (actual_fsize != 0)
3693 if (frame_pointer_needed)
3695 /* Copy the old frame pointer temporarily into %r1. Set up the
3696 new stack pointer, then store away the saved old frame pointer
3697 into the stack at sp and at the same time update the stack
3698 pointer by actual_fsize bytes. Two versions, first
3699 handles small (<8k) frames. The second handles large (>=8k)
3700 frames. */
3701 insn = emit_move_insn (tmpreg, frame_pointer_rtx);
3702 if (DO_FRAME_NOTES)
3703 RTX_FRAME_RELATED_P (insn) = 1;
3705 insn = emit_move_insn (frame_pointer_rtx, stack_pointer_rtx);
3706 if (DO_FRAME_NOTES)
3707 RTX_FRAME_RELATED_P (insn) = 1;
3709 if (VAL_14_BITS_P (actual_fsize))
3710 store_reg_modify (STACK_POINTER_REGNUM, 1, actual_fsize);
3711 else
3713 /* It is incorrect to store the saved frame pointer at *sp,
3714 then increment sp (writes beyond the current stack boundary).
3716 So instead use stwm to store at *sp and post-increment the
3717 stack pointer as an atomic operation. Then increment sp to
3718 finish allocating the new frame. */
3719 HOST_WIDE_INT adjust1 = 8192 - 64;
3720 HOST_WIDE_INT adjust2 = actual_fsize - adjust1;
3722 store_reg_modify (STACK_POINTER_REGNUM, 1, adjust1);
3723 set_reg_plus_d (STACK_POINTER_REGNUM, STACK_POINTER_REGNUM,
3724 adjust2, 1);
3727 /* We set SAVE_SP in frames that need a frame pointer. Thus,
3728 we need to store the previous stack pointer (frame pointer)
3729 into the frame marker on targets that use the HP unwind
3730 library. This allows the HP unwind library to be used to
3731 unwind GCC frames. However, we are not fully compatible
3732 with the HP library because our frame layout differs from
3733 that specified in the HP runtime specification.
3735 We don't want a frame note on this instruction as the frame
3736 marker moves during dynamic stack allocation.
3738 This instruction also serves as a blockage to prevent
3739 register spills from being scheduled before the stack
3740 pointer is raised. This is necessary as we store
3741 registers using the frame pointer as a base register,
3742 and the frame pointer is set before sp is raised. */
3743 if (TARGET_HPUX_UNWIND_LIBRARY)
3745 rtx addr = gen_rtx_PLUS (word_mode, stack_pointer_rtx,
3746 GEN_INT (TARGET_64BIT ? -8 : -4));
3748 emit_move_insn (gen_rtx_MEM (word_mode, addr),
3749 frame_pointer_rtx);
3751 else
3752 emit_insn (gen_blockage ());
3754 /* no frame pointer needed. */
3755 else
3757 /* In some cases we can perform the first callee register save
3758 and allocating the stack frame at the same time. If so, just
3759 make a note of it and defer allocating the frame until saving
3760 the callee registers. */
3761 if (VAL_14_BITS_P (actual_fsize) && local_fsize == 0)
3762 merge_sp_adjust_with_store = 1;
3763 /* Can not optimize. Adjust the stack frame by actual_fsize
3764 bytes. */
3765 else
3766 set_reg_plus_d (STACK_POINTER_REGNUM, STACK_POINTER_REGNUM,
3767 actual_fsize, 1);
3771 /* Normal register save.
3773 Do not save the frame pointer in the frame_pointer_needed case. It
3774 was done earlier. */
3775 if (frame_pointer_needed)
3777 offset = local_fsize;
3779 /* Saving the EH return data registers in the frame is the simplest
3780 way to get the frame unwind information emitted. We put them
3781 just before the general registers. */
3782 if (DO_FRAME_NOTES && crtl->calls_eh_return)
3784 unsigned int i, regno;
3786 for (i = 0; ; ++i)
3788 regno = EH_RETURN_DATA_REGNO (i);
3789 if (regno == INVALID_REGNUM)
3790 break;
3792 store_reg (regno, offset, FRAME_POINTER_REGNUM);
3793 offset += UNITS_PER_WORD;
3797 for (i = 18; i >= 4; i--)
3798 if (df_regs_ever_live_p (i) && ! call_used_regs[i])
3800 store_reg (i, offset, FRAME_POINTER_REGNUM);
3801 offset += UNITS_PER_WORD;
3802 gr_saved++;
3804 /* Account for %r3 which is saved in a special place. */
3805 gr_saved++;
3807 /* No frame pointer needed. */
3808 else
3810 offset = local_fsize - actual_fsize;
3812 /* Saving the EH return data registers in the frame is the simplest
3813 way to get the frame unwind information emitted. */
3814 if (DO_FRAME_NOTES && crtl->calls_eh_return)
3816 unsigned int i, regno;
3818 for (i = 0; ; ++i)
3820 regno = EH_RETURN_DATA_REGNO (i);
3821 if (regno == INVALID_REGNUM)
3822 break;
3824 /* If merge_sp_adjust_with_store is nonzero, then we can
3825 optimize the first save. */
3826 if (merge_sp_adjust_with_store)
3828 store_reg_modify (STACK_POINTER_REGNUM, regno, -offset);
3829 merge_sp_adjust_with_store = 0;
3831 else
3832 store_reg (regno, offset, STACK_POINTER_REGNUM);
3833 offset += UNITS_PER_WORD;
3837 for (i = 18; i >= 3; i--)
3838 if (df_regs_ever_live_p (i) && ! call_used_regs[i])
3840 /* If merge_sp_adjust_with_store is nonzero, then we can
3841 optimize the first GR save. */
3842 if (merge_sp_adjust_with_store)
3844 store_reg_modify (STACK_POINTER_REGNUM, i, -offset);
3845 merge_sp_adjust_with_store = 0;
3847 else
3848 store_reg (i, offset, STACK_POINTER_REGNUM);
3849 offset += UNITS_PER_WORD;
3850 gr_saved++;
3853 /* If we wanted to merge the SP adjustment with a GR save, but we never
3854 did any GR saves, then just emit the adjustment here. */
3855 if (merge_sp_adjust_with_store)
3856 set_reg_plus_d (STACK_POINTER_REGNUM, STACK_POINTER_REGNUM,
3857 actual_fsize, 1);
3860 /* The hppa calling conventions say that %r19, the pic offset
3861 register, is saved at sp - 32 (in this function's frame)
3862 when generating PIC code. FIXME: What is the correct thing
3863 to do for functions which make no calls and allocate no
3864 frame? Do we need to allocate a frame, or can we just omit
3865 the save? For now we'll just omit the save.
3867 We don't want a note on this insn as the frame marker can
3868 move if there is a dynamic stack allocation. */
3869 if (flag_pic && actual_fsize != 0 && !TARGET_64BIT)
3871 rtx addr = gen_rtx_PLUS (word_mode, stack_pointer_rtx, GEN_INT (-32));
3873 emit_move_insn (gen_rtx_MEM (word_mode, addr), pic_offset_table_rtx);
3877 /* Align pointer properly (doubleword boundary). */
3878 offset = (offset + 7) & ~7;
3880 /* Floating point register store. */
3881 if (save_fregs)
3883 rtx base;
3885 /* First get the frame or stack pointer to the start of the FP register
3886 save area. */
3887 if (frame_pointer_needed)
3889 set_reg_plus_d (1, FRAME_POINTER_REGNUM, offset, 0);
3890 base = frame_pointer_rtx;
3892 else
3894 set_reg_plus_d (1, STACK_POINTER_REGNUM, offset, 0);
3895 base = stack_pointer_rtx;
3898 /* Now actually save the FP registers. */
3899 for (i = FP_SAVED_REG_LAST; i >= FP_SAVED_REG_FIRST; i -= FP_REG_STEP)
3901 if (df_regs_ever_live_p (i)
3902 || (! TARGET_64BIT && df_regs_ever_live_p (i + 1)))
3904 rtx addr, insn, reg;
3905 addr = gen_rtx_MEM (DFmode, gen_rtx_POST_INC (DFmode, tmpreg));
3906 reg = gen_rtx_REG (DFmode, i);
3907 insn = emit_move_insn (addr, reg);
3908 if (DO_FRAME_NOTES)
3910 RTX_FRAME_RELATED_P (insn) = 1;
3911 if (TARGET_64BIT)
3913 rtx mem = gen_rtx_MEM (DFmode,
3914 plus_constant (base, offset));
3915 REG_NOTES (insn)
3916 = gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
3917 gen_rtx_SET (VOIDmode, mem, reg),
3918 REG_NOTES (insn));
3920 else
3922 rtx meml = gen_rtx_MEM (SFmode,
3923 plus_constant (base, offset));
3924 rtx memr = gen_rtx_MEM (SFmode,
3925 plus_constant (base, offset + 4));
3926 rtx regl = gen_rtx_REG (SFmode, i);
3927 rtx regr = gen_rtx_REG (SFmode, i + 1);
3928 rtx setl = gen_rtx_SET (VOIDmode, meml, regl);
3929 rtx setr = gen_rtx_SET (VOIDmode, memr, regr);
3930 rtvec vec;
3932 RTX_FRAME_RELATED_P (setl) = 1;
3933 RTX_FRAME_RELATED_P (setr) = 1;
3934 vec = gen_rtvec (2, setl, setr);
3935 REG_NOTES (insn)
3936 = gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
3937 gen_rtx_SEQUENCE (VOIDmode, vec),
3938 REG_NOTES (insn));
3941 offset += GET_MODE_SIZE (DFmode);
3942 fr_saved++;
3948 /* Emit RTL to load REG from the memory location specified by BASE+DISP.
3949 Handle case where DISP > 8k by using the add_high_const patterns. */
3951 static void
3952 load_reg (int reg, HOST_WIDE_INT disp, int base)
3954 rtx dest = gen_rtx_REG (word_mode, reg);
3955 rtx basereg = gen_rtx_REG (Pmode, base);
3956 rtx src;
3958 if (VAL_14_BITS_P (disp))
3959 src = gen_rtx_MEM (word_mode, plus_constant (basereg, disp));
3960 else if (TARGET_64BIT && !VAL_32_BITS_P (disp))
3962 rtx delta = GEN_INT (disp);
3963 rtx tmpreg = gen_rtx_REG (Pmode, 1);
3965 emit_move_insn (tmpreg, delta);
3966 if (TARGET_DISABLE_INDEXING)
3968 emit_move_insn (tmpreg, gen_rtx_PLUS (Pmode, tmpreg, basereg));
3969 src = gen_rtx_MEM (word_mode, tmpreg);
3971 else
3972 src = gen_rtx_MEM (word_mode, gen_rtx_PLUS (Pmode, tmpreg, basereg));
3974 else
3976 rtx delta = GEN_INT (disp);
3977 rtx high = gen_rtx_PLUS (Pmode, basereg, gen_rtx_HIGH (Pmode, delta));
3978 rtx tmpreg = gen_rtx_REG (Pmode, 1);
3980 emit_move_insn (tmpreg, high);
3981 src = gen_rtx_MEM (word_mode, gen_rtx_LO_SUM (Pmode, tmpreg, delta));
3984 emit_move_insn (dest, src);
3987 /* Update the total code bytes output to the text section. */
3989 static void
3990 update_total_code_bytes (unsigned int nbytes)
3992 if ((TARGET_PORTABLE_RUNTIME || !TARGET_GAS || !TARGET_SOM)
3993 && !IN_NAMED_SECTION_P (cfun->decl))
3995 unsigned int old_total = total_code_bytes;
3997 total_code_bytes += nbytes;
3999 /* Be prepared to handle overflows. */
4000 if (old_total > total_code_bytes)
4001 total_code_bytes = UINT_MAX;
4005 /* This function generates the assembly code for function exit.
4006 Args are as for output_function_prologue ().
4008 The function epilogue should not depend on the current stack
4009 pointer! It should use the frame pointer only. This is mandatory
4010 because of alloca; we also take advantage of it to omit stack
4011 adjustments before returning. */
4013 static void
4014 pa_output_function_epilogue (FILE *file, HOST_WIDE_INT size ATTRIBUTE_UNUSED)
4016 rtx insn = get_last_insn ();
4018 last_address = 0;
4020 /* hppa_expand_epilogue does the dirty work now. We just need
4021 to output the assembler directives which denote the end
4022 of a function.
4024 To make debuggers happy, emit a nop if the epilogue was completely
4025 eliminated due to a volatile call as the last insn in the
4026 current function. That way the return address (in %r2) will
4027 always point to a valid instruction in the current function. */
4029 /* Get the last real insn. */
4030 if (GET_CODE (insn) == NOTE)
4031 insn = prev_real_insn (insn);
4033 /* If it is a sequence, then look inside. */
4034 if (insn && GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE)
4035 insn = XVECEXP (PATTERN (insn), 0, 0);
4037 /* If insn is a CALL_INSN, then it must be a call to a volatile
4038 function (otherwise there would be epilogue insns). */
4039 if (insn && GET_CODE (insn) == CALL_INSN)
4041 fputs ("\tnop\n", file);
4042 last_address += 4;
4045 fputs ("\t.EXIT\n\t.PROCEND\n", file);
4047 if (TARGET_SOM && TARGET_GAS)
4049 /* We done with this subspace except possibly for some additional
4050 debug information. Forget that we are in this subspace to ensure
4051 that the next function is output in its own subspace. */
4052 in_section = NULL;
4053 cfun->machine->in_nsubspa = 2;
4056 if (INSN_ADDRESSES_SET_P ())
4058 insn = get_last_nonnote_insn ();
4059 last_address += INSN_ADDRESSES (INSN_UID (insn));
4060 if (INSN_P (insn))
4061 last_address += insn_default_length (insn);
4062 last_address = ((last_address + FUNCTION_BOUNDARY / BITS_PER_UNIT - 1)
4063 & ~(FUNCTION_BOUNDARY / BITS_PER_UNIT - 1));
4065 else
4066 last_address = UINT_MAX;
4068 /* Finally, update the total number of code bytes output so far. */
4069 update_total_code_bytes (last_address);
4072 void
4073 hppa_expand_epilogue (void)
4075 rtx tmpreg;
4076 HOST_WIDE_INT offset;
4077 HOST_WIDE_INT ret_off = 0;
4078 int i;
4079 int merge_sp_adjust_with_load = 0;
4081 /* We will use this often. */
4082 tmpreg = gen_rtx_REG (word_mode, 1);
4084 /* Try to restore RP early to avoid load/use interlocks when
4085 RP gets used in the return (bv) instruction. This appears to still
4086 be necessary even when we schedule the prologue and epilogue. */
4087 if (rp_saved)
4089 ret_off = TARGET_64BIT ? -16 : -20;
4090 if (frame_pointer_needed)
4092 load_reg (2, ret_off, FRAME_POINTER_REGNUM);
4093 ret_off = 0;
4095 else
4097 /* No frame pointer, and stack is smaller than 8k. */
4098 if (VAL_14_BITS_P (ret_off - actual_fsize))
4100 load_reg (2, ret_off - actual_fsize, STACK_POINTER_REGNUM);
4101 ret_off = 0;
4106 /* General register restores. */
4107 if (frame_pointer_needed)
4109 offset = local_fsize;
4111 /* If the current function calls __builtin_eh_return, then we need
4112 to restore the saved EH data registers. */
4113 if (DO_FRAME_NOTES && crtl->calls_eh_return)
4115 unsigned int i, regno;
4117 for (i = 0; ; ++i)
4119 regno = EH_RETURN_DATA_REGNO (i);
4120 if (regno == INVALID_REGNUM)
4121 break;
4123 load_reg (regno, offset, FRAME_POINTER_REGNUM);
4124 offset += UNITS_PER_WORD;
4128 for (i = 18; i >= 4; i--)
4129 if (df_regs_ever_live_p (i) && ! call_used_regs[i])
4131 load_reg (i, offset, FRAME_POINTER_REGNUM);
4132 offset += UNITS_PER_WORD;
4135 else
4137 offset = local_fsize - actual_fsize;
4139 /* If the current function calls __builtin_eh_return, then we need
4140 to restore the saved EH data registers. */
4141 if (DO_FRAME_NOTES && crtl->calls_eh_return)
4143 unsigned int i, regno;
4145 for (i = 0; ; ++i)
4147 regno = EH_RETURN_DATA_REGNO (i);
4148 if (regno == INVALID_REGNUM)
4149 break;
4151 /* Only for the first load.
4152 merge_sp_adjust_with_load holds the register load
4153 with which we will merge the sp adjustment. */
4154 if (merge_sp_adjust_with_load == 0
4155 && local_fsize == 0
4156 && VAL_14_BITS_P (-actual_fsize))
4157 merge_sp_adjust_with_load = regno;
4158 else
4159 load_reg (regno, offset, STACK_POINTER_REGNUM);
4160 offset += UNITS_PER_WORD;
4164 for (i = 18; i >= 3; i--)
4166 if (df_regs_ever_live_p (i) && ! call_used_regs[i])
4168 /* Only for the first load.
4169 merge_sp_adjust_with_load holds the register load
4170 with which we will merge the sp adjustment. */
4171 if (merge_sp_adjust_with_load == 0
4172 && local_fsize == 0
4173 && VAL_14_BITS_P (-actual_fsize))
4174 merge_sp_adjust_with_load = i;
4175 else
4176 load_reg (i, offset, STACK_POINTER_REGNUM);
4177 offset += UNITS_PER_WORD;
4182 /* Align pointer properly (doubleword boundary). */
4183 offset = (offset + 7) & ~7;
4185 /* FP register restores. */
4186 if (save_fregs)
4188 /* Adjust the register to index off of. */
4189 if (frame_pointer_needed)
4190 set_reg_plus_d (1, FRAME_POINTER_REGNUM, offset, 0);
4191 else
4192 set_reg_plus_d (1, STACK_POINTER_REGNUM, offset, 0);
4194 /* Actually do the restores now. */
4195 for (i = FP_SAVED_REG_LAST; i >= FP_SAVED_REG_FIRST; i -= FP_REG_STEP)
4196 if (df_regs_ever_live_p (i)
4197 || (! TARGET_64BIT && df_regs_ever_live_p (i + 1)))
4199 rtx src = gen_rtx_MEM (DFmode, gen_rtx_POST_INC (DFmode, tmpreg));
4200 rtx dest = gen_rtx_REG (DFmode, i);
4201 emit_move_insn (dest, src);
4205 /* Emit a blockage insn here to keep these insns from being moved to
4206 an earlier spot in the epilogue, or into the main instruction stream.
4208 This is necessary as we must not cut the stack back before all the
4209 restores are finished. */
4210 emit_insn (gen_blockage ());
4212 /* Reset stack pointer (and possibly frame pointer). The stack
4213 pointer is initially set to fp + 64 to avoid a race condition. */
4214 if (frame_pointer_needed)
4216 rtx delta = GEN_INT (-64);
4218 set_reg_plus_d (STACK_POINTER_REGNUM, FRAME_POINTER_REGNUM, 64, 0);
4219 emit_insn (gen_pre_load (frame_pointer_rtx, stack_pointer_rtx, delta));
4221 /* If we were deferring a callee register restore, do it now. */
4222 else if (merge_sp_adjust_with_load)
4224 rtx delta = GEN_INT (-actual_fsize);
4225 rtx dest = gen_rtx_REG (word_mode, merge_sp_adjust_with_load);
4227 emit_insn (gen_pre_load (dest, stack_pointer_rtx, delta));
4229 else if (actual_fsize != 0)
4230 set_reg_plus_d (STACK_POINTER_REGNUM, STACK_POINTER_REGNUM,
4231 - actual_fsize, 0);
4233 /* If we haven't restored %r2 yet (no frame pointer, and a stack
4234 frame greater than 8k), do so now. */
4235 if (ret_off != 0)
4236 load_reg (2, ret_off, STACK_POINTER_REGNUM);
4238 if (DO_FRAME_NOTES && crtl->calls_eh_return)
4240 rtx sa = EH_RETURN_STACKADJ_RTX;
4242 emit_insn (gen_blockage ());
4243 emit_insn (TARGET_64BIT
4244 ? gen_subdi3 (stack_pointer_rtx, stack_pointer_rtx, sa)
4245 : gen_subsi3 (stack_pointer_rtx, stack_pointer_rtx, sa));
4250 hppa_pic_save_rtx (void)
4252 return get_hard_reg_initial_val (word_mode, PIC_OFFSET_TABLE_REGNUM);
4255 #ifndef NO_DEFERRED_PROFILE_COUNTERS
4256 #define NO_DEFERRED_PROFILE_COUNTERS 0
4257 #endif
4260 /* Vector of funcdef numbers. */
4261 static VEC(int,heap) *funcdef_nos;
4263 /* Output deferred profile counters. */
4264 static void
4265 output_deferred_profile_counters (void)
4267 unsigned int i;
4268 int align, n;
4270 if (VEC_empty (int, funcdef_nos))
4271 return;
4273 switch_to_section (data_section);
4274 align = MIN (BIGGEST_ALIGNMENT, LONG_TYPE_SIZE);
4275 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
4277 for (i = 0; VEC_iterate (int, funcdef_nos, i, n); i++)
4279 targetm.asm_out.internal_label (asm_out_file, "LP", n);
4280 assemble_integer (const0_rtx, LONG_TYPE_SIZE / BITS_PER_UNIT, align, 1);
4283 VEC_free (int, heap, funcdef_nos);
4286 void
4287 hppa_profile_hook (int label_no)
4289 /* We use SImode for the address of the function in both 32 and
4290 64-bit code to avoid having to provide DImode versions of the
4291 lcla2 and load_offset_label_address insn patterns. */
4292 rtx reg = gen_reg_rtx (SImode);
4293 rtx label_rtx = gen_label_rtx ();
4294 rtx begin_label_rtx, call_insn;
4295 char begin_label_name[16];
4297 ASM_GENERATE_INTERNAL_LABEL (begin_label_name, FUNC_BEGIN_PROLOG_LABEL,
4298 label_no);
4299 begin_label_rtx = gen_rtx_SYMBOL_REF (SImode, ggc_strdup (begin_label_name));
4301 if (TARGET_64BIT)
4302 emit_move_insn (arg_pointer_rtx,
4303 gen_rtx_PLUS (word_mode, virtual_outgoing_args_rtx,
4304 GEN_INT (64)));
4306 emit_move_insn (gen_rtx_REG (word_mode, 26), gen_rtx_REG (word_mode, 2));
4308 /* The address of the function is loaded into %r25 with an instruction-
4309 relative sequence that avoids the use of relocations. The sequence
4310 is split so that the load_offset_label_address instruction can
4311 occupy the delay slot of the call to _mcount. */
4312 if (TARGET_PA_20)
4313 emit_insn (gen_lcla2 (reg, label_rtx));
4314 else
4315 emit_insn (gen_lcla1 (reg, label_rtx));
4317 emit_insn (gen_load_offset_label_address (gen_rtx_REG (SImode, 25),
4318 reg, begin_label_rtx, label_rtx));
4320 #if !NO_DEFERRED_PROFILE_COUNTERS
4322 rtx count_label_rtx, addr, r24;
4323 char count_label_name[16];
4325 VEC_safe_push (int, heap, funcdef_nos, label_no);
4326 ASM_GENERATE_INTERNAL_LABEL (count_label_name, "LP", label_no);
4327 count_label_rtx = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (count_label_name));
4329 addr = force_reg (Pmode, count_label_rtx);
4330 r24 = gen_rtx_REG (Pmode, 24);
4331 emit_move_insn (r24, addr);
4333 call_insn =
4334 emit_call_insn (gen_call (gen_rtx_MEM (Pmode,
4335 gen_rtx_SYMBOL_REF (Pmode,
4336 "_mcount")),
4337 GEN_INT (TARGET_64BIT ? 24 : 12)));
4339 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), r24);
4341 #else
4343 call_insn =
4344 emit_call_insn (gen_call (gen_rtx_MEM (Pmode,
4345 gen_rtx_SYMBOL_REF (Pmode,
4346 "_mcount")),
4347 GEN_INT (TARGET_64BIT ? 16 : 8)));
4349 #endif
4351 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), gen_rtx_REG (SImode, 25));
4352 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), gen_rtx_REG (SImode, 26));
4354 /* Indicate the _mcount call cannot throw, nor will it execute a
4355 non-local goto. */
4356 REG_NOTES (call_insn)
4357 = gen_rtx_EXPR_LIST (REG_EH_REGION, constm1_rtx, REG_NOTES (call_insn));
4360 /* Fetch the return address for the frame COUNT steps up from
4361 the current frame, after the prologue. FRAMEADDR is the
4362 frame pointer of the COUNT frame.
4364 We want to ignore any export stub remnants here. To handle this,
4365 we examine the code at the return address, and if it is an export
4366 stub, we return a memory rtx for the stub return address stored
4367 at frame-24.
4369 The value returned is used in two different ways:
4371 1. To find a function's caller.
4373 2. To change the return address for a function.
4375 This function handles most instances of case 1; however, it will
4376 fail if there are two levels of stubs to execute on the return
4377 path. The only way I believe that can happen is if the return value
4378 needs a parameter relocation, which never happens for C code.
4380 This function handles most instances of case 2; however, it will
4381 fail if we did not originally have stub code on the return path
4382 but will need stub code on the new return path. This can happen if
4383 the caller & callee are both in the main program, but the new
4384 return location is in a shared library. */
4387 return_addr_rtx (int count, rtx frameaddr)
4389 rtx label;
4390 rtx rp;
4391 rtx saved_rp;
4392 rtx ins;
4394 if (count != 0)
4395 return NULL_RTX;
4397 rp = get_hard_reg_initial_val (Pmode, 2);
4399 if (TARGET_64BIT || TARGET_NO_SPACE_REGS)
4400 return rp;
4402 saved_rp = gen_reg_rtx (Pmode);
4403 emit_move_insn (saved_rp, rp);
4405 /* Get pointer to the instruction stream. We have to mask out the
4406 privilege level from the two low order bits of the return address
4407 pointer here so that ins will point to the start of the first
4408 instruction that would have been executed if we returned. */
4409 ins = copy_to_reg (gen_rtx_AND (Pmode, rp, MASK_RETURN_ADDR));
4410 label = gen_label_rtx ();
4412 /* Check the instruction stream at the normal return address for the
4413 export stub:
4415 0x4bc23fd1 | stub+8: ldw -18(sr0,sp),rp
4416 0x004010a1 | stub+12: ldsid (sr0,rp),r1
4417 0x00011820 | stub+16: mtsp r1,sr0
4418 0xe0400002 | stub+20: be,n 0(sr0,rp)
4420 If it is an export stub, than our return address is really in
4421 -24[frameaddr]. */
4423 emit_cmp_insn (gen_rtx_MEM (SImode, ins), GEN_INT (0x4bc23fd1), NE,
4424 NULL_RTX, SImode, 1);
4425 emit_jump_insn (gen_bne (label));
4427 emit_cmp_insn (gen_rtx_MEM (SImode, plus_constant (ins, 4)),
4428 GEN_INT (0x004010a1), NE, NULL_RTX, SImode, 1);
4429 emit_jump_insn (gen_bne (label));
4431 emit_cmp_insn (gen_rtx_MEM (SImode, plus_constant (ins, 8)),
4432 GEN_INT (0x00011820), NE, NULL_RTX, SImode, 1);
4433 emit_jump_insn (gen_bne (label));
4435 /* 0xe0400002 must be specified as -532676606 so that it won't be
4436 rejected as an invalid immediate operand on 64-bit hosts. */
4437 emit_cmp_insn (gen_rtx_MEM (SImode, plus_constant (ins, 12)),
4438 GEN_INT (-532676606), NE, NULL_RTX, SImode, 1);
4440 /* If there is no export stub then just use the value saved from
4441 the return pointer register. */
4443 emit_jump_insn (gen_bne (label));
4445 /* Here we know that our return address points to an export
4446 stub. We don't want to return the address of the export stub,
4447 but rather the return address of the export stub. That return
4448 address is stored at -24[frameaddr]. */
4450 emit_move_insn (saved_rp,
4451 gen_rtx_MEM (Pmode,
4452 memory_address (Pmode,
4453 plus_constant (frameaddr,
4454 -24))));
4456 emit_label (label);
4457 return saved_rp;
4460 void
4461 emit_bcond_fp (enum rtx_code code, rtx operand0)
4463 emit_jump_insn (gen_rtx_SET (VOIDmode, pc_rtx,
4464 gen_rtx_IF_THEN_ELSE (VOIDmode,
4465 gen_rtx_fmt_ee (code,
4466 VOIDmode,
4467 gen_rtx_REG (CCFPmode, 0),
4468 const0_rtx),
4469 gen_rtx_LABEL_REF (VOIDmode, operand0),
4470 pc_rtx)));
4475 gen_cmp_fp (enum rtx_code code, rtx operand0, rtx operand1)
4477 return gen_rtx_SET (VOIDmode, gen_rtx_REG (CCFPmode, 0),
4478 gen_rtx_fmt_ee (code, CCFPmode, operand0, operand1));
4481 /* Adjust the cost of a scheduling dependency. Return the new cost of
4482 a dependency LINK or INSN on DEP_INSN. COST is the current cost. */
4484 static int
4485 pa_adjust_cost (rtx insn, rtx link, rtx dep_insn, int cost)
4487 enum attr_type attr_type;
4489 /* Don't adjust costs for a pa8000 chip, also do not adjust any
4490 true dependencies as they are described with bypasses now. */
4491 if (pa_cpu >= PROCESSOR_8000 || REG_NOTE_KIND (link) == 0)
4492 return cost;
4494 if (! recog_memoized (insn))
4495 return 0;
4497 attr_type = get_attr_type (insn);
4499 switch (REG_NOTE_KIND (link))
4501 case REG_DEP_ANTI:
4502 /* Anti dependency; DEP_INSN reads a register that INSN writes some
4503 cycles later. */
4505 if (attr_type == TYPE_FPLOAD)
4507 rtx pat = PATTERN (insn);
4508 rtx dep_pat = PATTERN (dep_insn);
4509 if (GET_CODE (pat) == PARALLEL)
4511 /* This happens for the fldXs,mb patterns. */
4512 pat = XVECEXP (pat, 0, 0);
4514 if (GET_CODE (pat) != SET || GET_CODE (dep_pat) != SET)
4515 /* If this happens, we have to extend this to schedule
4516 optimally. Return 0 for now. */
4517 return 0;
4519 if (reg_mentioned_p (SET_DEST (pat), SET_SRC (dep_pat)))
4521 if (! recog_memoized (dep_insn))
4522 return 0;
4523 switch (get_attr_type (dep_insn))
4525 case TYPE_FPALU:
4526 case TYPE_FPMULSGL:
4527 case TYPE_FPMULDBL:
4528 case TYPE_FPDIVSGL:
4529 case TYPE_FPDIVDBL:
4530 case TYPE_FPSQRTSGL:
4531 case TYPE_FPSQRTDBL:
4532 /* A fpload can't be issued until one cycle before a
4533 preceding arithmetic operation has finished if
4534 the target of the fpload is any of the sources
4535 (or destination) of the arithmetic operation. */
4536 return insn_default_latency (dep_insn) - 1;
4538 default:
4539 return 0;
4543 else if (attr_type == TYPE_FPALU)
4545 rtx pat = PATTERN (insn);
4546 rtx dep_pat = PATTERN (dep_insn);
4547 if (GET_CODE (pat) == PARALLEL)
4549 /* This happens for the fldXs,mb patterns. */
4550 pat = XVECEXP (pat, 0, 0);
4552 if (GET_CODE (pat) != SET || GET_CODE (dep_pat) != SET)
4553 /* If this happens, we have to extend this to schedule
4554 optimally. Return 0 for now. */
4555 return 0;
4557 if (reg_mentioned_p (SET_DEST (pat), SET_SRC (dep_pat)))
4559 if (! recog_memoized (dep_insn))
4560 return 0;
4561 switch (get_attr_type (dep_insn))
4563 case TYPE_FPDIVSGL:
4564 case TYPE_FPDIVDBL:
4565 case TYPE_FPSQRTSGL:
4566 case TYPE_FPSQRTDBL:
4567 /* An ALU flop can't be issued until two cycles before a
4568 preceding divide or sqrt operation has finished if
4569 the target of the ALU flop is any of the sources
4570 (or destination) of the divide or sqrt operation. */
4571 return insn_default_latency (dep_insn) - 2;
4573 default:
4574 return 0;
4579 /* For other anti dependencies, the cost is 0. */
4580 return 0;
4582 case REG_DEP_OUTPUT:
4583 /* Output dependency; DEP_INSN writes a register that INSN writes some
4584 cycles later. */
4585 if (attr_type == TYPE_FPLOAD)
4587 rtx pat = PATTERN (insn);
4588 rtx dep_pat = PATTERN (dep_insn);
4589 if (GET_CODE (pat) == PARALLEL)
4591 /* This happens for the fldXs,mb patterns. */
4592 pat = XVECEXP (pat, 0, 0);
4594 if (GET_CODE (pat) != SET || GET_CODE (dep_pat) != SET)
4595 /* If this happens, we have to extend this to schedule
4596 optimally. Return 0 for now. */
4597 return 0;
4599 if (reg_mentioned_p (SET_DEST (pat), SET_DEST (dep_pat)))
4601 if (! recog_memoized (dep_insn))
4602 return 0;
4603 switch (get_attr_type (dep_insn))
4605 case TYPE_FPALU:
4606 case TYPE_FPMULSGL:
4607 case TYPE_FPMULDBL:
4608 case TYPE_FPDIVSGL:
4609 case TYPE_FPDIVDBL:
4610 case TYPE_FPSQRTSGL:
4611 case TYPE_FPSQRTDBL:
4612 /* A fpload can't be issued until one cycle before a
4613 preceding arithmetic operation has finished if
4614 the target of the fpload is the destination of the
4615 arithmetic operation.
4617 Exception: For PA7100LC, PA7200 and PA7300, the cost
4618 is 3 cycles, unless they bundle together. We also
4619 pay the penalty if the second insn is a fpload. */
4620 return insn_default_latency (dep_insn) - 1;
4622 default:
4623 return 0;
4627 else if (attr_type == TYPE_FPALU)
4629 rtx pat = PATTERN (insn);
4630 rtx dep_pat = PATTERN (dep_insn);
4631 if (GET_CODE (pat) == PARALLEL)
4633 /* This happens for the fldXs,mb patterns. */
4634 pat = XVECEXP (pat, 0, 0);
4636 if (GET_CODE (pat) != SET || GET_CODE (dep_pat) != SET)
4637 /* If this happens, we have to extend this to schedule
4638 optimally. Return 0 for now. */
4639 return 0;
4641 if (reg_mentioned_p (SET_DEST (pat), SET_DEST (dep_pat)))
4643 if (! recog_memoized (dep_insn))
4644 return 0;
4645 switch (get_attr_type (dep_insn))
4647 case TYPE_FPDIVSGL:
4648 case TYPE_FPDIVDBL:
4649 case TYPE_FPSQRTSGL:
4650 case TYPE_FPSQRTDBL:
4651 /* An ALU flop can't be issued until two cycles before a
4652 preceding divide or sqrt operation has finished if
4653 the target of the ALU flop is also the target of
4654 the divide or sqrt operation. */
4655 return insn_default_latency (dep_insn) - 2;
4657 default:
4658 return 0;
4663 /* For other output dependencies, the cost is 0. */
4664 return 0;
4666 default:
4667 gcc_unreachable ();
4671 /* Adjust scheduling priorities. We use this to try and keep addil
4672 and the next use of %r1 close together. */
4673 static int
4674 pa_adjust_priority (rtx insn, int priority)
4676 rtx set = single_set (insn);
4677 rtx src, dest;
4678 if (set)
4680 src = SET_SRC (set);
4681 dest = SET_DEST (set);
4682 if (GET_CODE (src) == LO_SUM
4683 && symbolic_operand (XEXP (src, 1), VOIDmode)
4684 && ! read_only_operand (XEXP (src, 1), VOIDmode))
4685 priority >>= 3;
4687 else if (GET_CODE (src) == MEM
4688 && GET_CODE (XEXP (src, 0)) == LO_SUM
4689 && symbolic_operand (XEXP (XEXP (src, 0), 1), VOIDmode)
4690 && ! read_only_operand (XEXP (XEXP (src, 0), 1), VOIDmode))
4691 priority >>= 1;
4693 else if (GET_CODE (dest) == MEM
4694 && GET_CODE (XEXP (dest, 0)) == LO_SUM
4695 && symbolic_operand (XEXP (XEXP (dest, 0), 1), VOIDmode)
4696 && ! read_only_operand (XEXP (XEXP (dest, 0), 1), VOIDmode))
4697 priority >>= 3;
4699 return priority;
4702 /* The 700 can only issue a single insn at a time.
4703 The 7XXX processors can issue two insns at a time.
4704 The 8000 can issue 4 insns at a time. */
4705 static int
4706 pa_issue_rate (void)
4708 switch (pa_cpu)
4710 case PROCESSOR_700: return 1;
4711 case PROCESSOR_7100: return 2;
4712 case PROCESSOR_7100LC: return 2;
4713 case PROCESSOR_7200: return 2;
4714 case PROCESSOR_7300: return 2;
4715 case PROCESSOR_8000: return 4;
4717 default:
4718 gcc_unreachable ();
4724 /* Return any length adjustment needed by INSN which already has its length
4725 computed as LENGTH. Return zero if no adjustment is necessary.
4727 For the PA: function calls, millicode calls, and backwards short
4728 conditional branches with unfilled delay slots need an adjustment by +1
4729 (to account for the NOP which will be inserted into the instruction stream).
4731 Also compute the length of an inline block move here as it is too
4732 complicated to express as a length attribute in pa.md. */
4734 pa_adjust_insn_length (rtx insn, int length)
4736 rtx pat = PATTERN (insn);
4738 /* Jumps inside switch tables which have unfilled delay slots need
4739 adjustment. */
4740 if (GET_CODE (insn) == JUMP_INSN
4741 && GET_CODE (pat) == PARALLEL
4742 && get_attr_type (insn) == TYPE_BTABLE_BRANCH)
4743 return 4;
4744 /* Millicode insn with an unfilled delay slot. */
4745 else if (GET_CODE (insn) == INSN
4746 && GET_CODE (pat) != SEQUENCE
4747 && GET_CODE (pat) != USE
4748 && GET_CODE (pat) != CLOBBER
4749 && get_attr_type (insn) == TYPE_MILLI)
4750 return 4;
4751 /* Block move pattern. */
4752 else if (GET_CODE (insn) == INSN
4753 && GET_CODE (pat) == PARALLEL
4754 && GET_CODE (XVECEXP (pat, 0, 0)) == SET
4755 && GET_CODE (XEXP (XVECEXP (pat, 0, 0), 0)) == MEM
4756 && GET_CODE (XEXP (XVECEXP (pat, 0, 0), 1)) == MEM
4757 && GET_MODE (XEXP (XVECEXP (pat, 0, 0), 0)) == BLKmode
4758 && GET_MODE (XEXP (XVECEXP (pat, 0, 0), 1)) == BLKmode)
4759 return compute_movmem_length (insn) - 4;
4760 /* Block clear pattern. */
4761 else if (GET_CODE (insn) == INSN
4762 && GET_CODE (pat) == PARALLEL
4763 && GET_CODE (XVECEXP (pat, 0, 0)) == SET
4764 && GET_CODE (XEXP (XVECEXP (pat, 0, 0), 0)) == MEM
4765 && XEXP (XVECEXP (pat, 0, 0), 1) == const0_rtx
4766 && GET_MODE (XEXP (XVECEXP (pat, 0, 0), 0)) == BLKmode)
4767 return compute_clrmem_length (insn) - 4;
4768 /* Conditional branch with an unfilled delay slot. */
4769 else if (GET_CODE (insn) == JUMP_INSN && ! simplejump_p (insn))
4771 /* Adjust a short backwards conditional with an unfilled delay slot. */
4772 if (GET_CODE (pat) == SET
4773 && length == 4
4774 && ! forward_branch_p (insn))
4775 return 4;
4776 else if (GET_CODE (pat) == PARALLEL
4777 && get_attr_type (insn) == TYPE_PARALLEL_BRANCH
4778 && length == 4)
4779 return 4;
4780 /* Adjust dbra insn with short backwards conditional branch with
4781 unfilled delay slot -- only for case where counter is in a
4782 general register register. */
4783 else if (GET_CODE (pat) == PARALLEL
4784 && GET_CODE (XVECEXP (pat, 0, 1)) == SET
4785 && GET_CODE (XEXP (XVECEXP (pat, 0, 1), 0)) == REG
4786 && ! FP_REG_P (XEXP (XVECEXP (pat, 0, 1), 0))
4787 && length == 4
4788 && ! forward_branch_p (insn))
4789 return 4;
4790 else
4791 return 0;
4793 return 0;
4796 /* Print operand X (an rtx) in assembler syntax to file FILE.
4797 CODE is a letter or dot (`z' in `%z0') or 0 if no letter was specified.
4798 For `%' followed by punctuation, CODE is the punctuation and X is null. */
4800 void
4801 print_operand (FILE *file, rtx x, int code)
4803 switch (code)
4805 case '#':
4806 /* Output a 'nop' if there's nothing for the delay slot. */
4807 if (dbr_sequence_length () == 0)
4808 fputs ("\n\tnop", file);
4809 return;
4810 case '*':
4811 /* Output a nullification completer if there's nothing for the */
4812 /* delay slot or nullification is requested. */
4813 if (dbr_sequence_length () == 0 ||
4814 (final_sequence &&
4815 INSN_ANNULLED_BRANCH_P (XVECEXP (final_sequence, 0, 0))))
4816 fputs (",n", file);
4817 return;
4818 case 'R':
4819 /* Print out the second register name of a register pair.
4820 I.e., R (6) => 7. */
4821 fputs (reg_names[REGNO (x) + 1], file);
4822 return;
4823 case 'r':
4824 /* A register or zero. */
4825 if (x == const0_rtx
4826 || (x == CONST0_RTX (DFmode))
4827 || (x == CONST0_RTX (SFmode)))
4829 fputs ("%r0", file);
4830 return;
4832 else
4833 break;
4834 case 'f':
4835 /* A register or zero (floating point). */
4836 if (x == const0_rtx
4837 || (x == CONST0_RTX (DFmode))
4838 || (x == CONST0_RTX (SFmode)))
4840 fputs ("%fr0", file);
4841 return;
4843 else
4844 break;
4845 case 'A':
4847 rtx xoperands[2];
4849 xoperands[0] = XEXP (XEXP (x, 0), 0);
4850 xoperands[1] = XVECEXP (XEXP (XEXP (x, 0), 1), 0, 0);
4851 output_global_address (file, xoperands[1], 0);
4852 fprintf (file, "(%s)", reg_names [REGNO (xoperands[0])]);
4853 return;
4856 case 'C': /* Plain (C)ondition */
4857 case 'X':
4858 switch (GET_CODE (x))
4860 case EQ:
4861 fputs ("=", file); break;
4862 case NE:
4863 fputs ("<>", file); break;
4864 case GT:
4865 fputs (">", file); break;
4866 case GE:
4867 fputs (">=", file); break;
4868 case GEU:
4869 fputs (">>=", file); break;
4870 case GTU:
4871 fputs (">>", file); break;
4872 case LT:
4873 fputs ("<", file); break;
4874 case LE:
4875 fputs ("<=", file); break;
4876 case LEU:
4877 fputs ("<<=", file); break;
4878 case LTU:
4879 fputs ("<<", file); break;
4880 default:
4881 gcc_unreachable ();
4883 return;
4884 case 'N': /* Condition, (N)egated */
4885 switch (GET_CODE (x))
4887 case EQ:
4888 fputs ("<>", file); break;
4889 case NE:
4890 fputs ("=", file); break;
4891 case GT:
4892 fputs ("<=", file); break;
4893 case GE:
4894 fputs ("<", file); break;
4895 case GEU:
4896 fputs ("<<", file); break;
4897 case GTU:
4898 fputs ("<<=", file); break;
4899 case LT:
4900 fputs (">=", file); break;
4901 case LE:
4902 fputs (">", file); break;
4903 case LEU:
4904 fputs (">>", file); break;
4905 case LTU:
4906 fputs (">>=", file); break;
4907 default:
4908 gcc_unreachable ();
4910 return;
4911 /* For floating point comparisons. Note that the output
4912 predicates are the complement of the desired mode. The
4913 conditions for GT, GE, LT, LE and LTGT cause an invalid
4914 operation exception if the result is unordered and this
4915 exception is enabled in the floating-point status register. */
4916 case 'Y':
4917 switch (GET_CODE (x))
4919 case EQ:
4920 fputs ("!=", file); break;
4921 case NE:
4922 fputs ("=", file); break;
4923 case GT:
4924 fputs ("!>", file); break;
4925 case GE:
4926 fputs ("!>=", file); break;
4927 case LT:
4928 fputs ("!<", file); break;
4929 case LE:
4930 fputs ("!<=", file); break;
4931 case LTGT:
4932 fputs ("!<>", file); break;
4933 case UNLE:
4934 fputs ("!?<=", file); break;
4935 case UNLT:
4936 fputs ("!?<", file); break;
4937 case UNGE:
4938 fputs ("!?>=", file); break;
4939 case UNGT:
4940 fputs ("!?>", file); break;
4941 case UNEQ:
4942 fputs ("!?=", file); break;
4943 case UNORDERED:
4944 fputs ("!?", file); break;
4945 case ORDERED:
4946 fputs ("?", file); break;
4947 default:
4948 gcc_unreachable ();
4950 return;
4951 case 'S': /* Condition, operands are (S)wapped. */
4952 switch (GET_CODE (x))
4954 case EQ:
4955 fputs ("=", file); break;
4956 case NE:
4957 fputs ("<>", file); break;
4958 case GT:
4959 fputs ("<", file); break;
4960 case GE:
4961 fputs ("<=", file); break;
4962 case GEU:
4963 fputs ("<<=", file); break;
4964 case GTU:
4965 fputs ("<<", file); break;
4966 case LT:
4967 fputs (">", file); break;
4968 case LE:
4969 fputs (">=", file); break;
4970 case LEU:
4971 fputs (">>=", file); break;
4972 case LTU:
4973 fputs (">>", file); break;
4974 default:
4975 gcc_unreachable ();
4977 return;
4978 case 'B': /* Condition, (B)oth swapped and negate. */
4979 switch (GET_CODE (x))
4981 case EQ:
4982 fputs ("<>", file); break;
4983 case NE:
4984 fputs ("=", file); break;
4985 case GT:
4986 fputs (">=", file); break;
4987 case GE:
4988 fputs (">", file); break;
4989 case GEU:
4990 fputs (">>", file); break;
4991 case GTU:
4992 fputs (">>=", file); break;
4993 case LT:
4994 fputs ("<=", file); break;
4995 case LE:
4996 fputs ("<", file); break;
4997 case LEU:
4998 fputs ("<<", file); break;
4999 case LTU:
5000 fputs ("<<=", file); break;
5001 default:
5002 gcc_unreachable ();
5004 return;
5005 case 'k':
5006 gcc_assert (GET_CODE (x) == CONST_INT);
5007 fprintf (file, HOST_WIDE_INT_PRINT_DEC, ~INTVAL (x));
5008 return;
5009 case 'Q':
5010 gcc_assert (GET_CODE (x) == CONST_INT);
5011 fprintf (file, HOST_WIDE_INT_PRINT_DEC, 64 - (INTVAL (x) & 63));
5012 return;
5013 case 'L':
5014 gcc_assert (GET_CODE (x) == CONST_INT);
5015 fprintf (file, HOST_WIDE_INT_PRINT_DEC, 32 - (INTVAL (x) & 31));
5016 return;
5017 case 'O':
5018 gcc_assert (GET_CODE (x) == CONST_INT && exact_log2 (INTVAL (x)) >= 0);
5019 fprintf (file, "%d", exact_log2 (INTVAL (x)));
5020 return;
5021 case 'p':
5022 gcc_assert (GET_CODE (x) == CONST_INT);
5023 fprintf (file, HOST_WIDE_INT_PRINT_DEC, 63 - (INTVAL (x) & 63));
5024 return;
5025 case 'P':
5026 gcc_assert (GET_CODE (x) == CONST_INT);
5027 fprintf (file, HOST_WIDE_INT_PRINT_DEC, 31 - (INTVAL (x) & 31));
5028 return;
5029 case 'I':
5030 if (GET_CODE (x) == CONST_INT)
5031 fputs ("i", file);
5032 return;
5033 case 'M':
5034 case 'F':
5035 switch (GET_CODE (XEXP (x, 0)))
5037 case PRE_DEC:
5038 case PRE_INC:
5039 if (ASSEMBLER_DIALECT == 0)
5040 fputs ("s,mb", file);
5041 else
5042 fputs (",mb", file);
5043 break;
5044 case POST_DEC:
5045 case POST_INC:
5046 if (ASSEMBLER_DIALECT == 0)
5047 fputs ("s,ma", file);
5048 else
5049 fputs (",ma", file);
5050 break;
5051 case PLUS:
5052 if (GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
5053 && GET_CODE (XEXP (XEXP (x, 0), 1)) == REG)
5055 if (ASSEMBLER_DIALECT == 0)
5056 fputs ("x", file);
5058 else if (GET_CODE (XEXP (XEXP (x, 0), 0)) == MULT
5059 || GET_CODE (XEXP (XEXP (x, 0), 1)) == MULT)
5061 if (ASSEMBLER_DIALECT == 0)
5062 fputs ("x,s", file);
5063 else
5064 fputs (",s", file);
5066 else if (code == 'F' && ASSEMBLER_DIALECT == 0)
5067 fputs ("s", file);
5068 break;
5069 default:
5070 if (code == 'F' && ASSEMBLER_DIALECT == 0)
5071 fputs ("s", file);
5072 break;
5074 return;
5075 case 'G':
5076 output_global_address (file, x, 0);
5077 return;
5078 case 'H':
5079 output_global_address (file, x, 1);
5080 return;
5081 case 0: /* Don't do anything special */
5082 break;
5083 case 'Z':
5085 unsigned op[3];
5086 compute_zdepwi_operands (INTVAL (x), op);
5087 fprintf (file, "%d,%d,%d", op[0], op[1], op[2]);
5088 return;
5090 case 'z':
5092 unsigned op[3];
5093 compute_zdepdi_operands (INTVAL (x), op);
5094 fprintf (file, "%d,%d,%d", op[0], op[1], op[2]);
5095 return;
5097 case 'c':
5098 /* We can get here from a .vtable_inherit due to our
5099 CONSTANT_ADDRESS_P rejecting perfectly good constant
5100 addresses. */
5101 break;
5102 default:
5103 gcc_unreachable ();
5105 if (GET_CODE (x) == REG)
5107 fputs (reg_names [REGNO (x)], file);
5108 if (TARGET_64BIT && FP_REG_P (x) && GET_MODE_SIZE (GET_MODE (x)) <= 4)
5110 fputs ("R", file);
5111 return;
5113 if (FP_REG_P (x)
5114 && GET_MODE_SIZE (GET_MODE (x)) <= 4
5115 && (REGNO (x) & 1) == 0)
5116 fputs ("L", file);
5118 else if (GET_CODE (x) == MEM)
5120 int size = GET_MODE_SIZE (GET_MODE (x));
5121 rtx base = NULL_RTX;
5122 switch (GET_CODE (XEXP (x, 0)))
5124 case PRE_DEC:
5125 case POST_DEC:
5126 base = XEXP (XEXP (x, 0), 0);
5127 fprintf (file, "-%d(%s)", size, reg_names [REGNO (base)]);
5128 break;
5129 case PRE_INC:
5130 case POST_INC:
5131 base = XEXP (XEXP (x, 0), 0);
5132 fprintf (file, "%d(%s)", size, reg_names [REGNO (base)]);
5133 break;
5134 case PLUS:
5135 if (GET_CODE (XEXP (XEXP (x, 0), 0)) == MULT)
5136 fprintf (file, "%s(%s)",
5137 reg_names [REGNO (XEXP (XEXP (XEXP (x, 0), 0), 0))],
5138 reg_names [REGNO (XEXP (XEXP (x, 0), 1))]);
5139 else if (GET_CODE (XEXP (XEXP (x, 0), 1)) == MULT)
5140 fprintf (file, "%s(%s)",
5141 reg_names [REGNO (XEXP (XEXP (XEXP (x, 0), 1), 0))],
5142 reg_names [REGNO (XEXP (XEXP (x, 0), 0))]);
5143 else if (GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
5144 && GET_CODE (XEXP (XEXP (x, 0), 1)) == REG)
5146 /* Because the REG_POINTER flag can get lost during reload,
5147 GO_IF_LEGITIMATE_ADDRESS canonicalizes the order of the
5148 index and base registers in the combined move patterns. */
5149 rtx base = XEXP (XEXP (x, 0), 1);
5150 rtx index = XEXP (XEXP (x, 0), 0);
5152 fprintf (file, "%s(%s)",
5153 reg_names [REGNO (index)], reg_names [REGNO (base)]);
5155 else
5156 output_address (XEXP (x, 0));
5157 break;
5158 default:
5159 output_address (XEXP (x, 0));
5160 break;
5163 else
5164 output_addr_const (file, x);
5167 /* output a SYMBOL_REF or a CONST expression involving a SYMBOL_REF. */
5169 void
5170 output_global_address (FILE *file, rtx x, int round_constant)
5173 /* Imagine (high (const (plus ...))). */
5174 if (GET_CODE (x) == HIGH)
5175 x = XEXP (x, 0);
5177 if (GET_CODE (x) == SYMBOL_REF && read_only_operand (x, VOIDmode))
5178 output_addr_const (file, x);
5179 else if (GET_CODE (x) == SYMBOL_REF && !flag_pic)
5181 output_addr_const (file, x);
5182 fputs ("-$global$", file);
5184 else if (GET_CODE (x) == CONST)
5186 const char *sep = "";
5187 int offset = 0; /* assembler wants -$global$ at end */
5188 rtx base = NULL_RTX;
5190 switch (GET_CODE (XEXP (XEXP (x, 0), 0)))
5192 case SYMBOL_REF:
5193 base = XEXP (XEXP (x, 0), 0);
5194 output_addr_const (file, base);
5195 break;
5196 case CONST_INT:
5197 offset = INTVAL (XEXP (XEXP (x, 0), 0));
5198 break;
5199 default:
5200 gcc_unreachable ();
5203 switch (GET_CODE (XEXP (XEXP (x, 0), 1)))
5205 case SYMBOL_REF:
5206 base = XEXP (XEXP (x, 0), 1);
5207 output_addr_const (file, base);
5208 break;
5209 case CONST_INT:
5210 offset = INTVAL (XEXP (XEXP (x, 0), 1));
5211 break;
5212 default:
5213 gcc_unreachable ();
5216 /* How bogus. The compiler is apparently responsible for
5217 rounding the constant if it uses an LR field selector.
5219 The linker and/or assembler seem a better place since
5220 they have to do this kind of thing already.
5222 If we fail to do this, HP's optimizing linker may eliminate
5223 an addil, but not update the ldw/stw/ldo instruction that
5224 uses the result of the addil. */
5225 if (round_constant)
5226 offset = ((offset + 0x1000) & ~0x1fff);
5228 switch (GET_CODE (XEXP (x, 0)))
5230 case PLUS:
5231 if (offset < 0)
5233 offset = -offset;
5234 sep = "-";
5236 else
5237 sep = "+";
5238 break;
5240 case MINUS:
5241 gcc_assert (GET_CODE (XEXP (XEXP (x, 0), 0)) == SYMBOL_REF);
5242 sep = "-";
5243 break;
5245 default:
5246 gcc_unreachable ();
5249 if (!read_only_operand (base, VOIDmode) && !flag_pic)
5250 fputs ("-$global$", file);
5251 if (offset)
5252 fprintf (file, "%s%d", sep, offset);
5254 else
5255 output_addr_const (file, x);
5258 /* Output boilerplate text to appear at the beginning of the file.
5259 There are several possible versions. */
5260 #define aputs(x) fputs(x, asm_out_file)
5261 static inline void
5262 pa_file_start_level (void)
5264 if (TARGET_64BIT)
5265 aputs ("\t.LEVEL 2.0w\n");
5266 else if (TARGET_PA_20)
5267 aputs ("\t.LEVEL 2.0\n");
5268 else if (TARGET_PA_11)
5269 aputs ("\t.LEVEL 1.1\n");
5270 else
5271 aputs ("\t.LEVEL 1.0\n");
5274 static inline void
5275 pa_file_start_space (int sortspace)
5277 aputs ("\t.SPACE $PRIVATE$");
5278 if (sortspace)
5279 aputs (",SORT=16");
5280 aputs ("\n\t.SUBSPA $DATA$,QUAD=1,ALIGN=8,ACCESS=31"
5281 "\n\t.SUBSPA $BSS$,QUAD=1,ALIGN=8,ACCESS=31,ZERO,SORT=82"
5282 "\n\t.SPACE $TEXT$");
5283 if (sortspace)
5284 aputs (",SORT=8");
5285 aputs ("\n\t.SUBSPA $LIT$,QUAD=0,ALIGN=8,ACCESS=44"
5286 "\n\t.SUBSPA $CODE$,QUAD=0,ALIGN=8,ACCESS=44,CODE_ONLY\n");
5289 static inline void
5290 pa_file_start_file (int want_version)
5292 if (write_symbols != NO_DEBUG)
5294 output_file_directive (asm_out_file, main_input_filename);
5295 if (want_version)
5296 aputs ("\t.version\t\"01.01\"\n");
5300 static inline void
5301 pa_file_start_mcount (const char *aswhat)
5303 if (profile_flag)
5304 fprintf (asm_out_file, "\t.IMPORT _mcount,%s\n", aswhat);
5307 static void
5308 pa_elf_file_start (void)
5310 pa_file_start_level ();
5311 pa_file_start_mcount ("ENTRY");
5312 pa_file_start_file (0);
5315 static void
5316 pa_som_file_start (void)
5318 pa_file_start_level ();
5319 pa_file_start_space (0);
5320 aputs ("\t.IMPORT $global$,DATA\n"
5321 "\t.IMPORT $$dyncall,MILLICODE\n");
5322 pa_file_start_mcount ("CODE");
5323 pa_file_start_file (0);
5326 static void
5327 pa_linux_file_start (void)
5329 pa_file_start_file (1);
5330 pa_file_start_level ();
5331 pa_file_start_mcount ("CODE");
5334 static void
5335 pa_hpux64_gas_file_start (void)
5337 pa_file_start_level ();
5338 #ifdef ASM_OUTPUT_TYPE_DIRECTIVE
5339 if (profile_flag)
5340 ASM_OUTPUT_TYPE_DIRECTIVE (asm_out_file, "_mcount", "function");
5341 #endif
5342 pa_file_start_file (1);
5345 static void
5346 pa_hpux64_hpas_file_start (void)
5348 pa_file_start_level ();
5349 pa_file_start_space (1);
5350 pa_file_start_mcount ("CODE");
5351 pa_file_start_file (0);
5353 #undef aputs
5355 /* Search the deferred plabel list for SYMBOL and return its internal
5356 label. If an entry for SYMBOL is not found, a new entry is created. */
5359 get_deferred_plabel (rtx symbol)
5361 const char *fname = XSTR (symbol, 0);
5362 size_t i;
5364 /* See if we have already put this function on the list of deferred
5365 plabels. This list is generally small, so a liner search is not
5366 too ugly. If it proves too slow replace it with something faster. */
5367 for (i = 0; i < n_deferred_plabels; i++)
5368 if (strcmp (fname, XSTR (deferred_plabels[i].symbol, 0)) == 0)
5369 break;
5371 /* If the deferred plabel list is empty, or this entry was not found
5372 on the list, create a new entry on the list. */
5373 if (deferred_plabels == NULL || i == n_deferred_plabels)
5375 tree id;
5377 if (deferred_plabels == 0)
5378 deferred_plabels = (struct deferred_plabel *)
5379 ggc_alloc (sizeof (struct deferred_plabel));
5380 else
5381 deferred_plabels = (struct deferred_plabel *)
5382 ggc_realloc (deferred_plabels,
5383 ((n_deferred_plabels + 1)
5384 * sizeof (struct deferred_plabel)));
5386 i = n_deferred_plabels++;
5387 deferred_plabels[i].internal_label = gen_label_rtx ();
5388 deferred_plabels[i].symbol = symbol;
5390 /* Gross. We have just implicitly taken the address of this
5391 function. Mark it in the same manner as assemble_name. */
5392 id = maybe_get_identifier (targetm.strip_name_encoding (fname));
5393 if (id)
5394 mark_referenced (id);
5397 return deferred_plabels[i].internal_label;
5400 static void
5401 output_deferred_plabels (void)
5403 size_t i;
5405 /* If we have some deferred plabels, then we need to switch into the
5406 data or readonly data section, and align it to a 4 byte boundary
5407 before outputting the deferred plabels. */
5408 if (n_deferred_plabels)
5410 switch_to_section (flag_pic ? data_section : readonly_data_section);
5411 ASM_OUTPUT_ALIGN (asm_out_file, TARGET_64BIT ? 3 : 2);
5414 /* Now output the deferred plabels. */
5415 for (i = 0; i < n_deferred_plabels; i++)
5417 targetm.asm_out.internal_label (asm_out_file, "L",
5418 CODE_LABEL_NUMBER (deferred_plabels[i].internal_label));
5419 assemble_integer (deferred_plabels[i].symbol,
5420 TARGET_64BIT ? 8 : 4, TARGET_64BIT ? 64 : 32, 1);
5424 #ifdef HPUX_LONG_DOUBLE_LIBRARY
5425 /* Initialize optabs to point to HPUX long double emulation routines. */
5426 static void
5427 pa_hpux_init_libfuncs (void)
5429 set_optab_libfunc (add_optab, TFmode, "_U_Qfadd");
5430 set_optab_libfunc (sub_optab, TFmode, "_U_Qfsub");
5431 set_optab_libfunc (smul_optab, TFmode, "_U_Qfmpy");
5432 set_optab_libfunc (sdiv_optab, TFmode, "_U_Qfdiv");
5433 set_optab_libfunc (smin_optab, TFmode, "_U_Qmin");
5434 set_optab_libfunc (smax_optab, TFmode, "_U_Qfmax");
5435 set_optab_libfunc (sqrt_optab, TFmode, "_U_Qfsqrt");
5436 set_optab_libfunc (abs_optab, TFmode, "_U_Qfabs");
5437 set_optab_libfunc (neg_optab, TFmode, "_U_Qfneg");
5439 set_optab_libfunc (eq_optab, TFmode, "_U_Qfeq");
5440 set_optab_libfunc (ne_optab, TFmode, "_U_Qfne");
5441 set_optab_libfunc (gt_optab, TFmode, "_U_Qfgt");
5442 set_optab_libfunc (ge_optab, TFmode, "_U_Qfge");
5443 set_optab_libfunc (lt_optab, TFmode, "_U_Qflt");
5444 set_optab_libfunc (le_optab, TFmode, "_U_Qfle");
5445 set_optab_libfunc (unord_optab, TFmode, "_U_Qfunord");
5447 set_conv_libfunc (sext_optab, TFmode, SFmode, "_U_Qfcnvff_sgl_to_quad");
5448 set_conv_libfunc (sext_optab, TFmode, DFmode, "_U_Qfcnvff_dbl_to_quad");
5449 set_conv_libfunc (trunc_optab, SFmode, TFmode, "_U_Qfcnvff_quad_to_sgl");
5450 set_conv_libfunc (trunc_optab, DFmode, TFmode, "_U_Qfcnvff_quad_to_dbl");
5452 set_conv_libfunc (sfix_optab, SImode, TFmode, TARGET_64BIT
5453 ? "__U_Qfcnvfxt_quad_to_sgl"
5454 : "_U_Qfcnvfxt_quad_to_sgl");
5455 set_conv_libfunc (sfix_optab, DImode, TFmode, "_U_Qfcnvfxt_quad_to_dbl");
5456 set_conv_libfunc (ufix_optab, SImode, TFmode, "_U_Qfcnvfxt_quad_to_usgl");
5457 set_conv_libfunc (ufix_optab, DImode, TFmode, "_U_Qfcnvfxt_quad_to_udbl");
5459 set_conv_libfunc (sfloat_optab, TFmode, SImode, "_U_Qfcnvxf_sgl_to_quad");
5460 set_conv_libfunc (sfloat_optab, TFmode, DImode, "_U_Qfcnvxf_dbl_to_quad");
5461 set_conv_libfunc (ufloat_optab, TFmode, SImode, "_U_Qfcnvxf_usgl_to_quad");
5462 set_conv_libfunc (ufloat_optab, TFmode, DImode, "_U_Qfcnvxf_udbl_to_quad");
5464 #endif
5466 /* HP's millicode routines mean something special to the assembler.
5467 Keep track of which ones we have used. */
5469 enum millicodes { remI, remU, divI, divU, mulI, end1000 };
5470 static void import_milli (enum millicodes);
5471 static char imported[(int) end1000];
5472 static const char * const milli_names[] = {"remI", "remU", "divI", "divU", "mulI"};
5473 static const char import_string[] = ".IMPORT $$....,MILLICODE";
5474 #define MILLI_START 10
5476 static void
5477 import_milli (enum millicodes code)
5479 char str[sizeof (import_string)];
5481 if (!imported[(int) code])
5483 imported[(int) code] = 1;
5484 strcpy (str, import_string);
5485 strncpy (str + MILLI_START, milli_names[(int) code], 4);
5486 output_asm_insn (str, 0);
5490 /* The register constraints have put the operands and return value in
5491 the proper registers. */
5493 const char *
5494 output_mul_insn (int unsignedp ATTRIBUTE_UNUSED, rtx insn)
5496 import_milli (mulI);
5497 return output_millicode_call (insn, gen_rtx_SYMBOL_REF (Pmode, "$$mulI"));
5500 /* Emit the rtl for doing a division by a constant. */
5502 /* Do magic division millicodes exist for this value? */
5503 const int magic_milli[]= {0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1};
5505 /* We'll use an array to keep track of the magic millicodes and
5506 whether or not we've used them already. [n][0] is signed, [n][1] is
5507 unsigned. */
5509 static int div_milli[16][2];
5512 emit_hpdiv_const (rtx *operands, int unsignedp)
5514 if (GET_CODE (operands[2]) == CONST_INT
5515 && INTVAL (operands[2]) > 0
5516 && INTVAL (operands[2]) < 16
5517 && magic_milli[INTVAL (operands[2])])
5519 rtx ret = gen_rtx_REG (SImode, TARGET_64BIT ? 2 : 31);
5521 emit_move_insn (gen_rtx_REG (SImode, 26), operands[1]);
5522 emit
5523 (gen_rtx_PARALLEL
5524 (VOIDmode,
5525 gen_rtvec (6, gen_rtx_SET (VOIDmode, gen_rtx_REG (SImode, 29),
5526 gen_rtx_fmt_ee (unsignedp ? UDIV : DIV,
5527 SImode,
5528 gen_rtx_REG (SImode, 26),
5529 operands[2])),
5530 gen_rtx_CLOBBER (VOIDmode, operands[4]),
5531 gen_rtx_CLOBBER (VOIDmode, operands[3]),
5532 gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, 26)),
5533 gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, 25)),
5534 gen_rtx_CLOBBER (VOIDmode, ret))));
5535 emit_move_insn (operands[0], gen_rtx_REG (SImode, 29));
5536 return 1;
5538 return 0;
5541 const char *
5542 output_div_insn (rtx *operands, int unsignedp, rtx insn)
5544 int divisor;
5546 /* If the divisor is a constant, try to use one of the special
5547 opcodes .*/
5548 if (GET_CODE (operands[0]) == CONST_INT)
5550 static char buf[100];
5551 divisor = INTVAL (operands[0]);
5552 if (!div_milli[divisor][unsignedp])
5554 div_milli[divisor][unsignedp] = 1;
5555 if (unsignedp)
5556 output_asm_insn (".IMPORT $$divU_%0,MILLICODE", operands);
5557 else
5558 output_asm_insn (".IMPORT $$divI_%0,MILLICODE", operands);
5560 if (unsignedp)
5562 sprintf (buf, "$$divU_" HOST_WIDE_INT_PRINT_DEC,
5563 INTVAL (operands[0]));
5564 return output_millicode_call (insn,
5565 gen_rtx_SYMBOL_REF (SImode, buf));
5567 else
5569 sprintf (buf, "$$divI_" HOST_WIDE_INT_PRINT_DEC,
5570 INTVAL (operands[0]));
5571 return output_millicode_call (insn,
5572 gen_rtx_SYMBOL_REF (SImode, buf));
5575 /* Divisor isn't a special constant. */
5576 else
5578 if (unsignedp)
5580 import_milli (divU);
5581 return output_millicode_call (insn,
5582 gen_rtx_SYMBOL_REF (SImode, "$$divU"));
5584 else
5586 import_milli (divI);
5587 return output_millicode_call (insn,
5588 gen_rtx_SYMBOL_REF (SImode, "$$divI"));
5593 /* Output a $$rem millicode to do mod. */
5595 const char *
5596 output_mod_insn (int unsignedp, rtx insn)
5598 if (unsignedp)
5600 import_milli (remU);
5601 return output_millicode_call (insn,
5602 gen_rtx_SYMBOL_REF (SImode, "$$remU"));
5604 else
5606 import_milli (remI);
5607 return output_millicode_call (insn,
5608 gen_rtx_SYMBOL_REF (SImode, "$$remI"));
5612 void
5613 output_arg_descriptor (rtx call_insn)
5615 const char *arg_regs[4];
5616 enum machine_mode arg_mode;
5617 rtx link;
5618 int i, output_flag = 0;
5619 int regno;
5621 /* We neither need nor want argument location descriptors for the
5622 64bit runtime environment or the ELF32 environment. */
5623 if (TARGET_64BIT || TARGET_ELF32)
5624 return;
5626 for (i = 0; i < 4; i++)
5627 arg_regs[i] = 0;
5629 /* Specify explicitly that no argument relocations should take place
5630 if using the portable runtime calling conventions. */
5631 if (TARGET_PORTABLE_RUNTIME)
5633 fputs ("\t.CALL ARGW0=NO,ARGW1=NO,ARGW2=NO,ARGW3=NO,RETVAL=NO\n",
5634 asm_out_file);
5635 return;
5638 gcc_assert (GET_CODE (call_insn) == CALL_INSN);
5639 for (link = CALL_INSN_FUNCTION_USAGE (call_insn);
5640 link; link = XEXP (link, 1))
5642 rtx use = XEXP (link, 0);
5644 if (! (GET_CODE (use) == USE
5645 && GET_CODE (XEXP (use, 0)) == REG
5646 && FUNCTION_ARG_REGNO_P (REGNO (XEXP (use, 0)))))
5647 continue;
5649 arg_mode = GET_MODE (XEXP (use, 0));
5650 regno = REGNO (XEXP (use, 0));
5651 if (regno >= 23 && regno <= 26)
5653 arg_regs[26 - regno] = "GR";
5654 if (arg_mode == DImode)
5655 arg_regs[25 - regno] = "GR";
5657 else if (regno >= 32 && regno <= 39)
5659 if (arg_mode == SFmode)
5660 arg_regs[(regno - 32) / 2] = "FR";
5661 else
5663 #ifndef HP_FP_ARG_DESCRIPTOR_REVERSED
5664 arg_regs[(regno - 34) / 2] = "FR";
5665 arg_regs[(regno - 34) / 2 + 1] = "FU";
5666 #else
5667 arg_regs[(regno - 34) / 2] = "FU";
5668 arg_regs[(regno - 34) / 2 + 1] = "FR";
5669 #endif
5673 fputs ("\t.CALL ", asm_out_file);
5674 for (i = 0; i < 4; i++)
5676 if (arg_regs[i])
5678 if (output_flag++)
5679 fputc (',', asm_out_file);
5680 fprintf (asm_out_file, "ARGW%d=%s", i, arg_regs[i]);
5683 fputc ('\n', asm_out_file);
5686 static enum reg_class
5687 pa_secondary_reload (bool in_p, rtx x, enum reg_class rclass,
5688 enum machine_mode mode, secondary_reload_info *sri)
5690 int is_symbolic, regno;
5692 /* Handle the easy stuff first. */
5693 if (rclass == R1_REGS)
5694 return NO_REGS;
5696 if (REG_P (x))
5698 regno = REGNO (x);
5699 if (rclass == BASE_REG_CLASS && regno < FIRST_PSEUDO_REGISTER)
5700 return NO_REGS;
5702 else
5703 regno = -1;
5705 /* If we have something like (mem (mem (...)), we can safely assume the
5706 inner MEM will end up in a general register after reloading, so there's
5707 no need for a secondary reload. */
5708 if (GET_CODE (x) == MEM && GET_CODE (XEXP (x, 0)) == MEM)
5709 return NO_REGS;
5711 /* Trying to load a constant into a FP register during PIC code
5712 generation requires %r1 as a scratch register. */
5713 if (flag_pic
5714 && (mode == SImode || mode == DImode)
5715 && FP_REG_CLASS_P (rclass)
5716 && (GET_CODE (x) == CONST_INT || GET_CODE (x) == CONST_DOUBLE))
5718 sri->icode = (mode == SImode ? CODE_FOR_reload_insi_r1
5719 : CODE_FOR_reload_indi_r1);
5720 return NO_REGS;
5723 /* Profiling showed the PA port spends about 1.3% of its compilation
5724 time in true_regnum from calls inside pa_secondary_reload_class. */
5725 if (regno >= FIRST_PSEUDO_REGISTER || GET_CODE (x) == SUBREG)
5726 regno = true_regnum (x);
5728 /* In order to allow 14-bit displacements in integer loads and stores,
5729 we need to prevent reload from generating out of range integer mode
5730 loads and stores to the floating point registers. Previously, we
5731 used to call for a secondary reload and have emit_move_sequence()
5732 fix the instruction sequence. However, reload occasionally wouldn't
5733 generate the reload and we would end up with an invalid REG+D memory
5734 address. So, now we use an intermediate general register for most
5735 memory loads and stores. */
5736 if ((regno >= FIRST_PSEUDO_REGISTER || regno == -1)
5737 && GET_MODE_CLASS (mode) == MODE_INT
5738 && FP_REG_CLASS_P (rclass))
5740 /* Reload passes (mem:SI (reg/f:DI 30 %r30) when it wants to check
5741 the secondary reload needed for a pseudo. It never passes a
5742 REG+D address. */
5743 if (GET_CODE (x) == MEM)
5745 x = XEXP (x, 0);
5747 /* We don't need an intermediate for indexed and LO_SUM DLT
5748 memory addresses. When INT14_OK_STRICT is true, it might
5749 appear that we could directly allow register indirect
5750 memory addresses. However, this doesn't work because we
5751 don't support SUBREGs in floating-point register copies
5752 and reload doesn't tell us when it's going to use a SUBREG. */
5753 if (IS_INDEX_ADDR_P (x)
5754 || IS_LO_SUM_DLT_ADDR_P (x))
5755 return NO_REGS;
5757 /* Otherwise, we need an intermediate general register. */
5758 return GENERAL_REGS;
5761 /* Request a secondary reload with a general scratch register
5762 for everthing else. ??? Could symbolic operands be handled
5763 directly when generating non-pic PA 2.0 code? */
5764 sri->icode = in_p ? reload_in_optab[mode] : reload_out_optab[mode];
5765 return NO_REGS;
5768 /* We need a secondary register (GPR) for copies between the SAR
5769 and anything other than a general register. */
5770 if (rclass == SHIFT_REGS && (regno <= 0 || regno >= 32))
5772 sri->icode = in_p ? reload_in_optab[mode] : reload_out_optab[mode];
5773 return NO_REGS;
5776 /* A SAR<->FP register copy requires a secondary register (GPR) as
5777 well as secondary memory. */
5778 if (regno >= 0 && regno < FIRST_PSEUDO_REGISTER
5779 && (REGNO_REG_CLASS (regno) == SHIFT_REGS
5780 && FP_REG_CLASS_P (rclass)))
5782 sri->icode = in_p ? reload_in_optab[mode] : reload_out_optab[mode];
5783 return NO_REGS;
5786 /* Secondary reloads of symbolic operands require %r1 as a scratch
5787 register when we're generating PIC code and when the operand isn't
5788 readonly. */
5789 if (GET_CODE (x) == HIGH)
5790 x = XEXP (x, 0);
5792 /* Profiling has showed GCC spends about 2.6% of its compilation
5793 time in symbolic_operand from calls inside pa_secondary_reload_class.
5794 So, we use an inline copy to avoid useless work. */
5795 switch (GET_CODE (x))
5797 rtx op;
5799 case SYMBOL_REF:
5800 is_symbolic = !SYMBOL_REF_TLS_MODEL (x);
5801 break;
5802 case LABEL_REF:
5803 is_symbolic = 1;
5804 break;
5805 case CONST:
5806 op = XEXP (x, 0);
5807 is_symbolic = (((GET_CODE (XEXP (op, 0)) == SYMBOL_REF
5808 && !SYMBOL_REF_TLS_MODEL (XEXP (op, 0)))
5809 || GET_CODE (XEXP (op, 0)) == LABEL_REF)
5810 && GET_CODE (XEXP (op, 1)) == CONST_INT);
5811 break;
5812 default:
5813 is_symbolic = 0;
5814 break;
5817 if (is_symbolic && (flag_pic || !read_only_operand (x, VOIDmode)))
5819 gcc_assert (mode == SImode || mode == DImode);
5820 sri->icode = (mode == SImode ? CODE_FOR_reload_insi_r1
5821 : CODE_FOR_reload_indi_r1);
5824 return NO_REGS;
5827 /* Implement TARGET_EXTRA_LIVE_ON_ENTRY. The argument pointer
5828 is only marked as live on entry by df-scan when it is a fixed
5829 register. It isn't a fixed register in the 64-bit runtime,
5830 so we need to mark it here. */
5832 static void
5833 pa_extra_live_on_entry (bitmap regs)
5835 if (TARGET_64BIT)
5836 bitmap_set_bit (regs, ARG_POINTER_REGNUM);
5839 /* Implement EH_RETURN_HANDLER_RTX. The MEM needs to be volatile
5840 to prevent it from being deleted. */
5843 pa_eh_return_handler_rtx (void)
5845 rtx tmp;
5847 tmp = gen_rtx_PLUS (word_mode, frame_pointer_rtx,
5848 TARGET_64BIT ? GEN_INT (-16) : GEN_INT (-20));
5849 tmp = gen_rtx_MEM (word_mode, tmp);
5850 tmp->volatil = 1;
5851 return tmp;
5854 /* In the 32-bit runtime, arguments larger than eight bytes are passed
5855 by invisible reference. As a GCC extension, we also pass anything
5856 with a zero or variable size by reference.
5858 The 64-bit runtime does not describe passing any types by invisible
5859 reference. The internals of GCC can't currently handle passing
5860 empty structures, and zero or variable length arrays when they are
5861 not passed entirely on the stack or by reference. Thus, as a GCC
5862 extension, we pass these types by reference. The HP compiler doesn't
5863 support these types, so hopefully there shouldn't be any compatibility
5864 issues. This may have to be revisited when HP releases a C99 compiler
5865 or updates the ABI. */
5867 static bool
5868 pa_pass_by_reference (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
5869 enum machine_mode mode, const_tree type,
5870 bool named ATTRIBUTE_UNUSED)
5872 HOST_WIDE_INT size;
5874 if (type)
5875 size = int_size_in_bytes (type);
5876 else
5877 size = GET_MODE_SIZE (mode);
5879 if (TARGET_64BIT)
5880 return size <= 0;
5881 else
5882 return size <= 0 || size > 8;
5885 enum direction
5886 function_arg_padding (enum machine_mode mode, const_tree type)
5888 if (mode == BLKmode
5889 || (TARGET_64BIT
5890 && type
5891 && (AGGREGATE_TYPE_P (type)
5892 || TREE_CODE (type) == COMPLEX_TYPE
5893 || TREE_CODE (type) == VECTOR_TYPE)))
5895 /* Return none if justification is not required. */
5896 if (type
5897 && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST
5898 && (int_size_in_bytes (type) * BITS_PER_UNIT) % PARM_BOUNDARY == 0)
5899 return none;
5901 /* The directions set here are ignored when a BLKmode argument larger
5902 than a word is placed in a register. Different code is used for
5903 the stack and registers. This makes it difficult to have a
5904 consistent data representation for both the stack and registers.
5905 For both runtimes, the justification and padding for arguments on
5906 the stack and in registers should be identical. */
5907 if (TARGET_64BIT)
5908 /* The 64-bit runtime specifies left justification for aggregates. */
5909 return upward;
5910 else
5911 /* The 32-bit runtime architecture specifies right justification.
5912 When the argument is passed on the stack, the argument is padded
5913 with garbage on the left. The HP compiler pads with zeros. */
5914 return downward;
5917 if (GET_MODE_BITSIZE (mode) < PARM_BOUNDARY)
5918 return downward;
5919 else
5920 return none;
5924 /* Do what is necessary for `va_start'. We look at the current function
5925 to determine if stdargs or varargs is used and fill in an initial
5926 va_list. A pointer to this constructor is returned. */
5928 static rtx
5929 hppa_builtin_saveregs (void)
5931 rtx offset, dest;
5932 tree fntype = TREE_TYPE (current_function_decl);
5933 int argadj = ((!(TYPE_ARG_TYPES (fntype) != 0
5934 && (TREE_VALUE (tree_last (TYPE_ARG_TYPES (fntype)))
5935 != void_type_node)))
5936 ? UNITS_PER_WORD : 0);
5938 if (argadj)
5939 offset = plus_constant (crtl->args.arg_offset_rtx, argadj);
5940 else
5941 offset = crtl->args.arg_offset_rtx;
5943 if (TARGET_64BIT)
5945 int i, off;
5947 /* Adjust for varargs/stdarg differences. */
5948 if (argadj)
5949 offset = plus_constant (crtl->args.arg_offset_rtx, -argadj);
5950 else
5951 offset = crtl->args.arg_offset_rtx;
5953 /* We need to save %r26 .. %r19 inclusive starting at offset -64
5954 from the incoming arg pointer and growing to larger addresses. */
5955 for (i = 26, off = -64; i >= 19; i--, off += 8)
5956 emit_move_insn (gen_rtx_MEM (word_mode,
5957 plus_constant (arg_pointer_rtx, off)),
5958 gen_rtx_REG (word_mode, i));
5960 /* The incoming args pointer points just beyond the flushback area;
5961 normally this is not a serious concern. However, when we are doing
5962 varargs/stdargs we want to make the arg pointer point to the start
5963 of the incoming argument area. */
5964 emit_move_insn (virtual_incoming_args_rtx,
5965 plus_constant (arg_pointer_rtx, -64));
5967 /* Now return a pointer to the first anonymous argument. */
5968 return copy_to_reg (expand_binop (Pmode, add_optab,
5969 virtual_incoming_args_rtx,
5970 offset, 0, 0, OPTAB_LIB_WIDEN));
5973 /* Store general registers on the stack. */
5974 dest = gen_rtx_MEM (BLKmode,
5975 plus_constant (crtl->args.internal_arg_pointer,
5976 -16));
5977 set_mem_alias_set (dest, get_varargs_alias_set ());
5978 set_mem_align (dest, BITS_PER_WORD);
5979 move_block_from_reg (23, dest, 4);
5981 /* move_block_from_reg will emit code to store the argument registers
5982 individually as scalar stores.
5984 However, other insns may later load from the same addresses for
5985 a structure load (passing a struct to a varargs routine).
5987 The alias code assumes that such aliasing can never happen, so we
5988 have to keep memory referencing insns from moving up beyond the
5989 last argument register store. So we emit a blockage insn here. */
5990 emit_insn (gen_blockage ());
5992 return copy_to_reg (expand_binop (Pmode, add_optab,
5993 crtl->args.internal_arg_pointer,
5994 offset, 0, 0, OPTAB_LIB_WIDEN));
5997 static void
5998 hppa_va_start (tree valist, rtx nextarg)
6000 nextarg = expand_builtin_saveregs ();
6001 std_expand_builtin_va_start (valist, nextarg);
6004 static tree
6005 hppa_gimplify_va_arg_expr (tree valist, tree type, gimple_seq *pre_p,
6006 gimple_seq *post_p)
6008 if (TARGET_64BIT)
6010 /* Args grow upward. We can use the generic routines. */
6011 return std_gimplify_va_arg_expr (valist, type, pre_p, post_p);
6013 else /* !TARGET_64BIT */
6015 tree ptr = build_pointer_type (type);
6016 tree valist_type;
6017 tree t, u;
6018 unsigned int size, ofs;
6019 bool indirect;
6021 indirect = pass_by_reference (NULL, TYPE_MODE (type), type, 0);
6022 if (indirect)
6024 type = ptr;
6025 ptr = build_pointer_type (type);
6027 size = int_size_in_bytes (type);
6028 valist_type = TREE_TYPE (valist);
6030 /* Args grow down. Not handled by generic routines. */
6032 u = fold_convert (sizetype, size_in_bytes (type));
6033 u = fold_build1 (NEGATE_EXPR, sizetype, u);
6034 t = build2 (POINTER_PLUS_EXPR, valist_type, valist, u);
6036 /* Copied from va-pa.h, but we probably don't need to align to
6037 word size, since we generate and preserve that invariant. */
6038 u = size_int (size > 4 ? -8 : -4);
6039 t = fold_convert (sizetype, t);
6040 t = build2 (BIT_AND_EXPR, sizetype, t, u);
6041 t = fold_convert (valist_type, t);
6043 t = build2 (MODIFY_EXPR, valist_type, valist, t);
6045 ofs = (8 - size) % 4;
6046 if (ofs != 0)
6048 u = size_int (ofs);
6049 t = build2 (POINTER_PLUS_EXPR, valist_type, t, u);
6052 t = fold_convert (ptr, t);
6053 t = build_va_arg_indirect_ref (t);
6055 if (indirect)
6056 t = build_va_arg_indirect_ref (t);
6058 return t;
6062 /* True if MODE is valid for the target. By "valid", we mean able to
6063 be manipulated in non-trivial ways. In particular, this means all
6064 the arithmetic is supported.
6066 Currently, TImode is not valid as the HP 64-bit runtime documentation
6067 doesn't document the alignment and calling conventions for this type.
6068 Thus, we return false when PRECISION is 2 * BITS_PER_WORD and
6069 2 * BITS_PER_WORD isn't equal LONG_LONG_TYPE_SIZE. */
6071 static bool
6072 pa_scalar_mode_supported_p (enum machine_mode mode)
6074 int precision = GET_MODE_PRECISION (mode);
6076 switch (GET_MODE_CLASS (mode))
6078 case MODE_PARTIAL_INT:
6079 case MODE_INT:
6080 if (precision == CHAR_TYPE_SIZE)
6081 return true;
6082 if (precision == SHORT_TYPE_SIZE)
6083 return true;
6084 if (precision == INT_TYPE_SIZE)
6085 return true;
6086 if (precision == LONG_TYPE_SIZE)
6087 return true;
6088 if (precision == LONG_LONG_TYPE_SIZE)
6089 return true;
6090 return false;
6092 case MODE_FLOAT:
6093 if (precision == FLOAT_TYPE_SIZE)
6094 return true;
6095 if (precision == DOUBLE_TYPE_SIZE)
6096 return true;
6097 if (precision == LONG_DOUBLE_TYPE_SIZE)
6098 return true;
6099 return false;
6101 case MODE_DECIMAL_FLOAT:
6102 return false;
6104 default:
6105 gcc_unreachable ();
6109 /* This routine handles all the normal conditional branch sequences we
6110 might need to generate. It handles compare immediate vs compare
6111 register, nullification of delay slots, varying length branches,
6112 negated branches, and all combinations of the above. It returns the
6113 output appropriate to emit the branch corresponding to all given
6114 parameters. */
6116 const char *
6117 output_cbranch (rtx *operands, int negated, rtx insn)
6119 static char buf[100];
6120 int useskip = 0;
6121 int nullify = INSN_ANNULLED_BRANCH_P (insn);
6122 int length = get_attr_length (insn);
6123 int xdelay;
6125 /* A conditional branch to the following instruction (e.g. the delay slot)
6126 is asking for a disaster. This can happen when not optimizing and
6127 when jump optimization fails.
6129 While it is usually safe to emit nothing, this can fail if the
6130 preceding instruction is a nullified branch with an empty delay
6131 slot and the same branch target as this branch. We could check
6132 for this but jump optimization should eliminate nop jumps. It
6133 is always safe to emit a nop. */
6134 if (next_real_insn (JUMP_LABEL (insn)) == next_real_insn (insn))
6135 return "nop";
6137 /* The doubleword form of the cmpib instruction doesn't have the LEU
6138 and GTU conditions while the cmpb instruction does. Since we accept
6139 zero for cmpb, we must ensure that we use cmpb for the comparison. */
6140 if (GET_MODE (operands[1]) == DImode && operands[2] == const0_rtx)
6141 operands[2] = gen_rtx_REG (DImode, 0);
6142 if (GET_MODE (operands[2]) == DImode && operands[1] == const0_rtx)
6143 operands[1] = gen_rtx_REG (DImode, 0);
6145 /* If this is a long branch with its delay slot unfilled, set `nullify'
6146 as it can nullify the delay slot and save a nop. */
6147 if (length == 8 && dbr_sequence_length () == 0)
6148 nullify = 1;
6150 /* If this is a short forward conditional branch which did not get
6151 its delay slot filled, the delay slot can still be nullified. */
6152 if (! nullify && length == 4 && dbr_sequence_length () == 0)
6153 nullify = forward_branch_p (insn);
6155 /* A forward branch over a single nullified insn can be done with a
6156 comclr instruction. This avoids a single cycle penalty due to
6157 mis-predicted branch if we fall through (branch not taken). */
6158 if (length == 4
6159 && next_real_insn (insn) != 0
6160 && get_attr_length (next_real_insn (insn)) == 4
6161 && JUMP_LABEL (insn) == next_nonnote_insn (next_real_insn (insn))
6162 && nullify)
6163 useskip = 1;
6165 switch (length)
6167 /* All short conditional branches except backwards with an unfilled
6168 delay slot. */
6169 case 4:
6170 if (useskip)
6171 strcpy (buf, "{com%I2clr,|cmp%I2clr,}");
6172 else
6173 strcpy (buf, "{com%I2b,|cmp%I2b,}");
6174 if (GET_MODE (operands[1]) == DImode)
6175 strcat (buf, "*");
6176 if (negated)
6177 strcat (buf, "%B3");
6178 else
6179 strcat (buf, "%S3");
6180 if (useskip)
6181 strcat (buf, " %2,%r1,%%r0");
6182 else if (nullify)
6183 strcat (buf, ",n %2,%r1,%0");
6184 else
6185 strcat (buf, " %2,%r1,%0");
6186 break;
6188 /* All long conditionals. Note a short backward branch with an
6189 unfilled delay slot is treated just like a long backward branch
6190 with an unfilled delay slot. */
6191 case 8:
6192 /* Handle weird backwards branch with a filled delay slot
6193 which is nullified. */
6194 if (dbr_sequence_length () != 0
6195 && ! forward_branch_p (insn)
6196 && nullify)
6198 strcpy (buf, "{com%I2b,|cmp%I2b,}");
6199 if (GET_MODE (operands[1]) == DImode)
6200 strcat (buf, "*");
6201 if (negated)
6202 strcat (buf, "%S3");
6203 else
6204 strcat (buf, "%B3");
6205 strcat (buf, ",n %2,%r1,.+12\n\tb %0");
6207 /* Handle short backwards branch with an unfilled delay slot.
6208 Using a comb;nop rather than comiclr;bl saves 1 cycle for both
6209 taken and untaken branches. */
6210 else if (dbr_sequence_length () == 0
6211 && ! forward_branch_p (insn)
6212 && INSN_ADDRESSES_SET_P ()
6213 && VAL_14_BITS_P (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (insn)))
6214 - INSN_ADDRESSES (INSN_UID (insn)) - 8))
6216 strcpy (buf, "{com%I2b,|cmp%I2b,}");
6217 if (GET_MODE (operands[1]) == DImode)
6218 strcat (buf, "*");
6219 if (negated)
6220 strcat (buf, "%B3 %2,%r1,%0%#");
6221 else
6222 strcat (buf, "%S3 %2,%r1,%0%#");
6224 else
6226 strcpy (buf, "{com%I2clr,|cmp%I2clr,}");
6227 if (GET_MODE (operands[1]) == DImode)
6228 strcat (buf, "*");
6229 if (negated)
6230 strcat (buf, "%S3");
6231 else
6232 strcat (buf, "%B3");
6233 if (nullify)
6234 strcat (buf, " %2,%r1,%%r0\n\tb,n %0");
6235 else
6236 strcat (buf, " %2,%r1,%%r0\n\tb %0");
6238 break;
6240 default:
6241 /* The reversed conditional branch must branch over one additional
6242 instruction if the delay slot is filled and needs to be extracted
6243 by output_lbranch. If the delay slot is empty or this is a
6244 nullified forward branch, the instruction after the reversed
6245 condition branch must be nullified. */
6246 if (dbr_sequence_length () == 0
6247 || (nullify && forward_branch_p (insn)))
6249 nullify = 1;
6250 xdelay = 0;
6251 operands[4] = GEN_INT (length);
6253 else
6255 xdelay = 1;
6256 operands[4] = GEN_INT (length + 4);
6259 /* Create a reversed conditional branch which branches around
6260 the following insns. */
6261 if (GET_MODE (operands[1]) != DImode)
6263 if (nullify)
6265 if (negated)
6266 strcpy (buf,
6267 "{com%I2b,%S3,n %2,%r1,.+%4|cmp%I2b,%S3,n %2,%r1,.+%4}");
6268 else
6269 strcpy (buf,
6270 "{com%I2b,%B3,n %2,%r1,.+%4|cmp%I2b,%B3,n %2,%r1,.+%4}");
6272 else
6274 if (negated)
6275 strcpy (buf,
6276 "{com%I2b,%S3 %2,%r1,.+%4|cmp%I2b,%S3 %2,%r1,.+%4}");
6277 else
6278 strcpy (buf,
6279 "{com%I2b,%B3 %2,%r1,.+%4|cmp%I2b,%B3 %2,%r1,.+%4}");
6282 else
6284 if (nullify)
6286 if (negated)
6287 strcpy (buf,
6288 "{com%I2b,*%S3,n %2,%r1,.+%4|cmp%I2b,*%S3,n %2,%r1,.+%4}");
6289 else
6290 strcpy (buf,
6291 "{com%I2b,*%B3,n %2,%r1,.+%4|cmp%I2b,*%B3,n %2,%r1,.+%4}");
6293 else
6295 if (negated)
6296 strcpy (buf,
6297 "{com%I2b,*%S3 %2,%r1,.+%4|cmp%I2b,*%S3 %2,%r1,.+%4}");
6298 else
6299 strcpy (buf,
6300 "{com%I2b,*%B3 %2,%r1,.+%4|cmp%I2b,*%B3 %2,%r1,.+%4}");
6304 output_asm_insn (buf, operands);
6305 return output_lbranch (operands[0], insn, xdelay);
6307 return buf;
6310 /* This routine handles output of long unconditional branches that
6311 exceed the maximum range of a simple branch instruction. Since
6312 we don't have a register available for the branch, we save register
6313 %r1 in the frame marker, load the branch destination DEST into %r1,
6314 execute the branch, and restore %r1 in the delay slot of the branch.
6316 Since long branches may have an insn in the delay slot and the
6317 delay slot is used to restore %r1, we in general need to extract
6318 this insn and execute it before the branch. However, to facilitate
6319 use of this function by conditional branches, we also provide an
6320 option to not extract the delay insn so that it will be emitted
6321 after the long branch. So, if there is an insn in the delay slot,
6322 it is extracted if XDELAY is nonzero.
6324 The lengths of the various long-branch sequences are 20, 16 and 24
6325 bytes for the portable runtime, non-PIC and PIC cases, respectively. */
6327 const char *
6328 output_lbranch (rtx dest, rtx insn, int xdelay)
6330 rtx xoperands[2];
6332 xoperands[0] = dest;
6334 /* First, free up the delay slot. */
6335 if (xdelay && dbr_sequence_length () != 0)
6337 /* We can't handle a jump in the delay slot. */
6338 gcc_assert (GET_CODE (NEXT_INSN (insn)) != JUMP_INSN);
6340 final_scan_insn (NEXT_INSN (insn), asm_out_file,
6341 optimize, 0, NULL);
6343 /* Now delete the delay insn. */
6344 SET_INSN_DELETED (NEXT_INSN (insn));
6347 /* Output an insn to save %r1. The runtime documentation doesn't
6348 specify whether the "Clean Up" slot in the callers frame can
6349 be clobbered by the callee. It isn't copied by HP's builtin
6350 alloca, so this suggests that it can be clobbered if necessary.
6351 The "Static Link" location is copied by HP builtin alloca, so
6352 we avoid using it. Using the cleanup slot might be a problem
6353 if we have to interoperate with languages that pass cleanup
6354 information. However, it should be possible to handle these
6355 situations with GCC's asm feature.
6357 The "Current RP" slot is reserved for the called procedure, so
6358 we try to use it when we don't have a frame of our own. It's
6359 rather unlikely that we won't have a frame when we need to emit
6360 a very long branch.
6362 Really the way to go long term is a register scavenger; goto
6363 the target of the jump and find a register which we can use
6364 as a scratch to hold the value in %r1. Then, we wouldn't have
6365 to free up the delay slot or clobber a slot that may be needed
6366 for other purposes. */
6367 if (TARGET_64BIT)
6369 if (actual_fsize == 0 && !df_regs_ever_live_p (2))
6370 /* Use the return pointer slot in the frame marker. */
6371 output_asm_insn ("std %%r1,-16(%%r30)", xoperands);
6372 else
6373 /* Use the slot at -40 in the frame marker since HP builtin
6374 alloca doesn't copy it. */
6375 output_asm_insn ("std %%r1,-40(%%r30)", xoperands);
6377 else
6379 if (actual_fsize == 0 && !df_regs_ever_live_p (2))
6380 /* Use the return pointer slot in the frame marker. */
6381 output_asm_insn ("stw %%r1,-20(%%r30)", xoperands);
6382 else
6383 /* Use the "Clean Up" slot in the frame marker. In GCC,
6384 the only other use of this location is for copying a
6385 floating point double argument from a floating-point
6386 register to two general registers. The copy is done
6387 as an "atomic" operation when outputting a call, so it
6388 won't interfere with our using the location here. */
6389 output_asm_insn ("stw %%r1,-12(%%r30)", xoperands);
6392 if (TARGET_PORTABLE_RUNTIME)
6394 output_asm_insn ("ldil L'%0,%%r1", xoperands);
6395 output_asm_insn ("ldo R'%0(%%r1),%%r1", xoperands);
6396 output_asm_insn ("bv %%r0(%%r1)", xoperands);
6398 else if (flag_pic)
6400 output_asm_insn ("{bl|b,l} .+8,%%r1", xoperands);
6401 if (TARGET_SOM || !TARGET_GAS)
6403 xoperands[1] = gen_label_rtx ();
6404 output_asm_insn ("addil L'%l0-%l1,%%r1", xoperands);
6405 targetm.asm_out.internal_label (asm_out_file, "L",
6406 CODE_LABEL_NUMBER (xoperands[1]));
6407 output_asm_insn ("ldo R'%l0-%l1(%%r1),%%r1", xoperands);
6409 else
6411 output_asm_insn ("addil L'%l0-$PIC_pcrel$0+4,%%r1", xoperands);
6412 output_asm_insn ("ldo R'%l0-$PIC_pcrel$0+8(%%r1),%%r1", xoperands);
6414 output_asm_insn ("bv %%r0(%%r1)", xoperands);
6416 else
6417 /* Now output a very long branch to the original target. */
6418 output_asm_insn ("ldil L'%l0,%%r1\n\tbe R'%l0(%%sr4,%%r1)", xoperands);
6420 /* Now restore the value of %r1 in the delay slot. */
6421 if (TARGET_64BIT)
6423 if (actual_fsize == 0 && !df_regs_ever_live_p (2))
6424 return "ldd -16(%%r30),%%r1";
6425 else
6426 return "ldd -40(%%r30),%%r1";
6428 else
6430 if (actual_fsize == 0 && !df_regs_ever_live_p (2))
6431 return "ldw -20(%%r30),%%r1";
6432 else
6433 return "ldw -12(%%r30),%%r1";
6437 /* This routine handles all the branch-on-bit conditional branch sequences we
6438 might need to generate. It handles nullification of delay slots,
6439 varying length branches, negated branches and all combinations of the
6440 above. it returns the appropriate output template to emit the branch. */
6442 const char *
6443 output_bb (rtx *operands ATTRIBUTE_UNUSED, int negated, rtx insn, int which)
6445 static char buf[100];
6446 int useskip = 0;
6447 int nullify = INSN_ANNULLED_BRANCH_P (insn);
6448 int length = get_attr_length (insn);
6449 int xdelay;
6451 /* A conditional branch to the following instruction (e.g. the delay slot) is
6452 asking for a disaster. I do not think this can happen as this pattern
6453 is only used when optimizing; jump optimization should eliminate the
6454 jump. But be prepared just in case. */
6456 if (next_real_insn (JUMP_LABEL (insn)) == next_real_insn (insn))
6457 return "nop";
6459 /* If this is a long branch with its delay slot unfilled, set `nullify'
6460 as it can nullify the delay slot and save a nop. */
6461 if (length == 8 && dbr_sequence_length () == 0)
6462 nullify = 1;
6464 /* If this is a short forward conditional branch which did not get
6465 its delay slot filled, the delay slot can still be nullified. */
6466 if (! nullify && length == 4 && dbr_sequence_length () == 0)
6467 nullify = forward_branch_p (insn);
6469 /* A forward branch over a single nullified insn can be done with a
6470 extrs instruction. This avoids a single cycle penalty due to
6471 mis-predicted branch if we fall through (branch not taken). */
6473 if (length == 4
6474 && next_real_insn (insn) != 0
6475 && get_attr_length (next_real_insn (insn)) == 4
6476 && JUMP_LABEL (insn) == next_nonnote_insn (next_real_insn (insn))
6477 && nullify)
6478 useskip = 1;
6480 switch (length)
6483 /* All short conditional branches except backwards with an unfilled
6484 delay slot. */
6485 case 4:
6486 if (useskip)
6487 strcpy (buf, "{extrs,|extrw,s,}");
6488 else
6489 strcpy (buf, "bb,");
6490 if (useskip && GET_MODE (operands[0]) == DImode)
6491 strcpy (buf, "extrd,s,*");
6492 else if (GET_MODE (operands[0]) == DImode)
6493 strcpy (buf, "bb,*");
6494 if ((which == 0 && negated)
6495 || (which == 1 && ! negated))
6496 strcat (buf, ">=");
6497 else
6498 strcat (buf, "<");
6499 if (useskip)
6500 strcat (buf, " %0,%1,1,%%r0");
6501 else if (nullify && negated)
6502 strcat (buf, ",n %0,%1,%3");
6503 else if (nullify && ! negated)
6504 strcat (buf, ",n %0,%1,%2");
6505 else if (! nullify && negated)
6506 strcat (buf, "%0,%1,%3");
6507 else if (! nullify && ! negated)
6508 strcat (buf, " %0,%1,%2");
6509 break;
6511 /* All long conditionals. Note a short backward branch with an
6512 unfilled delay slot is treated just like a long backward branch
6513 with an unfilled delay slot. */
6514 case 8:
6515 /* Handle weird backwards branch with a filled delay slot
6516 which is nullified. */
6517 if (dbr_sequence_length () != 0
6518 && ! forward_branch_p (insn)
6519 && nullify)
6521 strcpy (buf, "bb,");
6522 if (GET_MODE (operands[0]) == DImode)
6523 strcat (buf, "*");
6524 if ((which == 0 && negated)
6525 || (which == 1 && ! negated))
6526 strcat (buf, "<");
6527 else
6528 strcat (buf, ">=");
6529 if (negated)
6530 strcat (buf, ",n %0,%1,.+12\n\tb %3");
6531 else
6532 strcat (buf, ",n %0,%1,.+12\n\tb %2");
6534 /* Handle short backwards branch with an unfilled delay slot.
6535 Using a bb;nop rather than extrs;bl saves 1 cycle for both
6536 taken and untaken branches. */
6537 else if (dbr_sequence_length () == 0
6538 && ! forward_branch_p (insn)
6539 && INSN_ADDRESSES_SET_P ()
6540 && VAL_14_BITS_P (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (insn)))
6541 - INSN_ADDRESSES (INSN_UID (insn)) - 8))
6543 strcpy (buf, "bb,");
6544 if (GET_MODE (operands[0]) == DImode)
6545 strcat (buf, "*");
6546 if ((which == 0 && negated)
6547 || (which == 1 && ! negated))
6548 strcat (buf, ">=");
6549 else
6550 strcat (buf, "<");
6551 if (negated)
6552 strcat (buf, " %0,%1,%3%#");
6553 else
6554 strcat (buf, " %0,%1,%2%#");
6556 else
6558 if (GET_MODE (operands[0]) == DImode)
6559 strcpy (buf, "extrd,s,*");
6560 else
6561 strcpy (buf, "{extrs,|extrw,s,}");
6562 if ((which == 0 && negated)
6563 || (which == 1 && ! negated))
6564 strcat (buf, "<");
6565 else
6566 strcat (buf, ">=");
6567 if (nullify && negated)
6568 strcat (buf, " %0,%1,1,%%r0\n\tb,n %3");
6569 else if (nullify && ! negated)
6570 strcat (buf, " %0,%1,1,%%r0\n\tb,n %2");
6571 else if (negated)
6572 strcat (buf, " %0,%1,1,%%r0\n\tb %3");
6573 else
6574 strcat (buf, " %0,%1,1,%%r0\n\tb %2");
6576 break;
6578 default:
6579 /* The reversed conditional branch must branch over one additional
6580 instruction if the delay slot is filled and needs to be extracted
6581 by output_lbranch. If the delay slot is empty or this is a
6582 nullified forward branch, the instruction after the reversed
6583 condition branch must be nullified. */
6584 if (dbr_sequence_length () == 0
6585 || (nullify && forward_branch_p (insn)))
6587 nullify = 1;
6588 xdelay = 0;
6589 operands[4] = GEN_INT (length);
6591 else
6593 xdelay = 1;
6594 operands[4] = GEN_INT (length + 4);
6597 if (GET_MODE (operands[0]) == DImode)
6598 strcpy (buf, "bb,*");
6599 else
6600 strcpy (buf, "bb,");
6601 if ((which == 0 && negated)
6602 || (which == 1 && !negated))
6603 strcat (buf, "<");
6604 else
6605 strcat (buf, ">=");
6606 if (nullify)
6607 strcat (buf, ",n %0,%1,.+%4");
6608 else
6609 strcat (buf, " %0,%1,.+%4");
6610 output_asm_insn (buf, operands);
6611 return output_lbranch (negated ? operands[3] : operands[2],
6612 insn, xdelay);
6614 return buf;
6617 /* This routine handles all the branch-on-variable-bit conditional branch
6618 sequences we might need to generate. It handles nullification of delay
6619 slots, varying length branches, negated branches and all combinations
6620 of the above. it returns the appropriate output template to emit the
6621 branch. */
6623 const char *
6624 output_bvb (rtx *operands ATTRIBUTE_UNUSED, int negated, rtx insn, int which)
6626 static char buf[100];
6627 int useskip = 0;
6628 int nullify = INSN_ANNULLED_BRANCH_P (insn);
6629 int length = get_attr_length (insn);
6630 int xdelay;
6632 /* A conditional branch to the following instruction (e.g. the delay slot) is
6633 asking for a disaster. I do not think this can happen as this pattern
6634 is only used when optimizing; jump optimization should eliminate the
6635 jump. But be prepared just in case. */
6637 if (next_real_insn (JUMP_LABEL (insn)) == next_real_insn (insn))
6638 return "nop";
6640 /* If this is a long branch with its delay slot unfilled, set `nullify'
6641 as it can nullify the delay slot and save a nop. */
6642 if (length == 8 && dbr_sequence_length () == 0)
6643 nullify = 1;
6645 /* If this is a short forward conditional branch which did not get
6646 its delay slot filled, the delay slot can still be nullified. */
6647 if (! nullify && length == 4 && dbr_sequence_length () == 0)
6648 nullify = forward_branch_p (insn);
6650 /* A forward branch over a single nullified insn can be done with a
6651 extrs instruction. This avoids a single cycle penalty due to
6652 mis-predicted branch if we fall through (branch not taken). */
6654 if (length == 4
6655 && next_real_insn (insn) != 0
6656 && get_attr_length (next_real_insn (insn)) == 4
6657 && JUMP_LABEL (insn) == next_nonnote_insn (next_real_insn (insn))
6658 && nullify)
6659 useskip = 1;
6661 switch (length)
6664 /* All short conditional branches except backwards with an unfilled
6665 delay slot. */
6666 case 4:
6667 if (useskip)
6668 strcpy (buf, "{vextrs,|extrw,s,}");
6669 else
6670 strcpy (buf, "{bvb,|bb,}");
6671 if (useskip && GET_MODE (operands[0]) == DImode)
6672 strcpy (buf, "extrd,s,*");
6673 else if (GET_MODE (operands[0]) == DImode)
6674 strcpy (buf, "bb,*");
6675 if ((which == 0 && negated)
6676 || (which == 1 && ! negated))
6677 strcat (buf, ">=");
6678 else
6679 strcat (buf, "<");
6680 if (useskip)
6681 strcat (buf, "{ %0,1,%%r0| %0,%%sar,1,%%r0}");
6682 else if (nullify && negated)
6683 strcat (buf, "{,n %0,%3|,n %0,%%sar,%3}");
6684 else if (nullify && ! negated)
6685 strcat (buf, "{,n %0,%2|,n %0,%%sar,%2}");
6686 else if (! nullify && negated)
6687 strcat (buf, "{%0,%3|%0,%%sar,%3}");
6688 else if (! nullify && ! negated)
6689 strcat (buf, "{ %0,%2| %0,%%sar,%2}");
6690 break;
6692 /* All long conditionals. Note a short backward branch with an
6693 unfilled delay slot is treated just like a long backward branch
6694 with an unfilled delay slot. */
6695 case 8:
6696 /* Handle weird backwards branch with a filled delay slot
6697 which is nullified. */
6698 if (dbr_sequence_length () != 0
6699 && ! forward_branch_p (insn)
6700 && nullify)
6702 strcpy (buf, "{bvb,|bb,}");
6703 if (GET_MODE (operands[0]) == DImode)
6704 strcat (buf, "*");
6705 if ((which == 0 && negated)
6706 || (which == 1 && ! negated))
6707 strcat (buf, "<");
6708 else
6709 strcat (buf, ">=");
6710 if (negated)
6711 strcat (buf, "{,n %0,.+12\n\tb %3|,n %0,%%sar,.+12\n\tb %3}");
6712 else
6713 strcat (buf, "{,n %0,.+12\n\tb %2|,n %0,%%sar,.+12\n\tb %2}");
6715 /* Handle short backwards branch with an unfilled delay slot.
6716 Using a bb;nop rather than extrs;bl saves 1 cycle for both
6717 taken and untaken branches. */
6718 else if (dbr_sequence_length () == 0
6719 && ! forward_branch_p (insn)
6720 && INSN_ADDRESSES_SET_P ()
6721 && VAL_14_BITS_P (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (insn)))
6722 - INSN_ADDRESSES (INSN_UID (insn)) - 8))
6724 strcpy (buf, "{bvb,|bb,}");
6725 if (GET_MODE (operands[0]) == DImode)
6726 strcat (buf, "*");
6727 if ((which == 0 && negated)
6728 || (which == 1 && ! negated))
6729 strcat (buf, ">=");
6730 else
6731 strcat (buf, "<");
6732 if (negated)
6733 strcat (buf, "{ %0,%3%#| %0,%%sar,%3%#}");
6734 else
6735 strcat (buf, "{ %0,%2%#| %0,%%sar,%2%#}");
6737 else
6739 strcpy (buf, "{vextrs,|extrw,s,}");
6740 if (GET_MODE (operands[0]) == DImode)
6741 strcpy (buf, "extrd,s,*");
6742 if ((which == 0 && negated)
6743 || (which == 1 && ! negated))
6744 strcat (buf, "<");
6745 else
6746 strcat (buf, ">=");
6747 if (nullify && negated)
6748 strcat (buf, "{ %0,1,%%r0\n\tb,n %3| %0,%%sar,1,%%r0\n\tb,n %3}");
6749 else if (nullify && ! negated)
6750 strcat (buf, "{ %0,1,%%r0\n\tb,n %2| %0,%%sar,1,%%r0\n\tb,n %2}");
6751 else if (negated)
6752 strcat (buf, "{ %0,1,%%r0\n\tb %3| %0,%%sar,1,%%r0\n\tb %3}");
6753 else
6754 strcat (buf, "{ %0,1,%%r0\n\tb %2| %0,%%sar,1,%%r0\n\tb %2}");
6756 break;
6758 default:
6759 /* The reversed conditional branch must branch over one additional
6760 instruction if the delay slot is filled and needs to be extracted
6761 by output_lbranch. If the delay slot is empty or this is a
6762 nullified forward branch, the instruction after the reversed
6763 condition branch must be nullified. */
6764 if (dbr_sequence_length () == 0
6765 || (nullify && forward_branch_p (insn)))
6767 nullify = 1;
6768 xdelay = 0;
6769 operands[4] = GEN_INT (length);
6771 else
6773 xdelay = 1;
6774 operands[4] = GEN_INT (length + 4);
6777 if (GET_MODE (operands[0]) == DImode)
6778 strcpy (buf, "bb,*");
6779 else
6780 strcpy (buf, "{bvb,|bb,}");
6781 if ((which == 0 && negated)
6782 || (which == 1 && !negated))
6783 strcat (buf, "<");
6784 else
6785 strcat (buf, ">=");
6786 if (nullify)
6787 strcat (buf, ",n {%0,.+%4|%0,%%sar,.+%4}");
6788 else
6789 strcat (buf, " {%0,.+%4|%0,%%sar,.+%4}");
6790 output_asm_insn (buf, operands);
6791 return output_lbranch (negated ? operands[3] : operands[2],
6792 insn, xdelay);
6794 return buf;
6797 /* Return the output template for emitting a dbra type insn.
6799 Note it may perform some output operations on its own before
6800 returning the final output string. */
6801 const char *
6802 output_dbra (rtx *operands, rtx insn, int which_alternative)
6804 int length = get_attr_length (insn);
6806 /* A conditional branch to the following instruction (e.g. the delay slot) is
6807 asking for a disaster. Be prepared! */
6809 if (next_real_insn (JUMP_LABEL (insn)) == next_real_insn (insn))
6811 if (which_alternative == 0)
6812 return "ldo %1(%0),%0";
6813 else if (which_alternative == 1)
6815 output_asm_insn ("{fstws|fstw} %0,-16(%%r30)", operands);
6816 output_asm_insn ("ldw -16(%%r30),%4", operands);
6817 output_asm_insn ("ldo %1(%4),%4\n\tstw %4,-16(%%r30)", operands);
6818 return "{fldws|fldw} -16(%%r30),%0";
6820 else
6822 output_asm_insn ("ldw %0,%4", operands);
6823 return "ldo %1(%4),%4\n\tstw %4,%0";
6827 if (which_alternative == 0)
6829 int nullify = INSN_ANNULLED_BRANCH_P (insn);
6830 int xdelay;
6832 /* If this is a long branch with its delay slot unfilled, set `nullify'
6833 as it can nullify the delay slot and save a nop. */
6834 if (length == 8 && dbr_sequence_length () == 0)
6835 nullify = 1;
6837 /* If this is a short forward conditional branch which did not get
6838 its delay slot filled, the delay slot can still be nullified. */
6839 if (! nullify && length == 4 && dbr_sequence_length () == 0)
6840 nullify = forward_branch_p (insn);
6842 switch (length)
6844 case 4:
6845 if (nullify)
6846 return "addib,%C2,n %1,%0,%3";
6847 else
6848 return "addib,%C2 %1,%0,%3";
6850 case 8:
6851 /* Handle weird backwards branch with a fulled delay slot
6852 which is nullified. */
6853 if (dbr_sequence_length () != 0
6854 && ! forward_branch_p (insn)
6855 && nullify)
6856 return "addib,%N2,n %1,%0,.+12\n\tb %3";
6857 /* Handle short backwards branch with an unfilled delay slot.
6858 Using a addb;nop rather than addi;bl saves 1 cycle for both
6859 taken and untaken branches. */
6860 else if (dbr_sequence_length () == 0
6861 && ! forward_branch_p (insn)
6862 && INSN_ADDRESSES_SET_P ()
6863 && VAL_14_BITS_P (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (insn)))
6864 - INSN_ADDRESSES (INSN_UID (insn)) - 8))
6865 return "addib,%C2 %1,%0,%3%#";
6867 /* Handle normal cases. */
6868 if (nullify)
6869 return "addi,%N2 %1,%0,%0\n\tb,n %3";
6870 else
6871 return "addi,%N2 %1,%0,%0\n\tb %3";
6873 default:
6874 /* The reversed conditional branch must branch over one additional
6875 instruction if the delay slot is filled and needs to be extracted
6876 by output_lbranch. If the delay slot is empty or this is a
6877 nullified forward branch, the instruction after the reversed
6878 condition branch must be nullified. */
6879 if (dbr_sequence_length () == 0
6880 || (nullify && forward_branch_p (insn)))
6882 nullify = 1;
6883 xdelay = 0;
6884 operands[4] = GEN_INT (length);
6886 else
6888 xdelay = 1;
6889 operands[4] = GEN_INT (length + 4);
6892 if (nullify)
6893 output_asm_insn ("addib,%N2,n %1,%0,.+%4", operands);
6894 else
6895 output_asm_insn ("addib,%N2 %1,%0,.+%4", operands);
6897 return output_lbranch (operands[3], insn, xdelay);
6901 /* Deal with gross reload from FP register case. */
6902 else if (which_alternative == 1)
6904 /* Move loop counter from FP register to MEM then into a GR,
6905 increment the GR, store the GR into MEM, and finally reload
6906 the FP register from MEM from within the branch's delay slot. */
6907 output_asm_insn ("{fstws|fstw} %0,-16(%%r30)\n\tldw -16(%%r30),%4",
6908 operands);
6909 output_asm_insn ("ldo %1(%4),%4\n\tstw %4,-16(%%r30)", operands);
6910 if (length == 24)
6911 return "{comb|cmpb},%S2 %%r0,%4,%3\n\t{fldws|fldw} -16(%%r30),%0";
6912 else if (length == 28)
6913 return "{comclr|cmpclr},%B2 %%r0,%4,%%r0\n\tb %3\n\t{fldws|fldw} -16(%%r30),%0";
6914 else
6916 operands[5] = GEN_INT (length - 16);
6917 output_asm_insn ("{comb|cmpb},%B2 %%r0,%4,.+%5", operands);
6918 output_asm_insn ("{fldws|fldw} -16(%%r30),%0", operands);
6919 return output_lbranch (operands[3], insn, 0);
6922 /* Deal with gross reload from memory case. */
6923 else
6925 /* Reload loop counter from memory, the store back to memory
6926 happens in the branch's delay slot. */
6927 output_asm_insn ("ldw %0,%4", operands);
6928 if (length == 12)
6929 return "addib,%C2 %1,%4,%3\n\tstw %4,%0";
6930 else if (length == 16)
6931 return "addi,%N2 %1,%4,%4\n\tb %3\n\tstw %4,%0";
6932 else
6934 operands[5] = GEN_INT (length - 4);
6935 output_asm_insn ("addib,%N2 %1,%4,.+%5\n\tstw %4,%0", operands);
6936 return output_lbranch (operands[3], insn, 0);
6941 /* Return the output template for emitting a movb type insn.
6943 Note it may perform some output operations on its own before
6944 returning the final output string. */
6945 const char *
6946 output_movb (rtx *operands, rtx insn, int which_alternative,
6947 int reverse_comparison)
6949 int length = get_attr_length (insn);
6951 /* A conditional branch to the following instruction (e.g. the delay slot) is
6952 asking for a disaster. Be prepared! */
6954 if (next_real_insn (JUMP_LABEL (insn)) == next_real_insn (insn))
6956 if (which_alternative == 0)
6957 return "copy %1,%0";
6958 else if (which_alternative == 1)
6960 output_asm_insn ("stw %1,-16(%%r30)", operands);
6961 return "{fldws|fldw} -16(%%r30),%0";
6963 else if (which_alternative == 2)
6964 return "stw %1,%0";
6965 else
6966 return "mtsar %r1";
6969 /* Support the second variant. */
6970 if (reverse_comparison)
6971 PUT_CODE (operands[2], reverse_condition (GET_CODE (operands[2])));
6973 if (which_alternative == 0)
6975 int nullify = INSN_ANNULLED_BRANCH_P (insn);
6976 int xdelay;
6978 /* If this is a long branch with its delay slot unfilled, set `nullify'
6979 as it can nullify the delay slot and save a nop. */
6980 if (length == 8 && dbr_sequence_length () == 0)
6981 nullify = 1;
6983 /* If this is a short forward conditional branch which did not get
6984 its delay slot filled, the delay slot can still be nullified. */
6985 if (! nullify && length == 4 && dbr_sequence_length () == 0)
6986 nullify = forward_branch_p (insn);
6988 switch (length)
6990 case 4:
6991 if (nullify)
6992 return "movb,%C2,n %1,%0,%3";
6993 else
6994 return "movb,%C2 %1,%0,%3";
6996 case 8:
6997 /* Handle weird backwards branch with a filled delay slot
6998 which is nullified. */
6999 if (dbr_sequence_length () != 0
7000 && ! forward_branch_p (insn)
7001 && nullify)
7002 return "movb,%N2,n %1,%0,.+12\n\tb %3";
7004 /* Handle short backwards branch with an unfilled delay slot.
7005 Using a movb;nop rather than or;bl saves 1 cycle for both
7006 taken and untaken branches. */
7007 else if (dbr_sequence_length () == 0
7008 && ! forward_branch_p (insn)
7009 && INSN_ADDRESSES_SET_P ()
7010 && VAL_14_BITS_P (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (insn)))
7011 - INSN_ADDRESSES (INSN_UID (insn)) - 8))
7012 return "movb,%C2 %1,%0,%3%#";
7013 /* Handle normal cases. */
7014 if (nullify)
7015 return "or,%N2 %1,%%r0,%0\n\tb,n %3";
7016 else
7017 return "or,%N2 %1,%%r0,%0\n\tb %3";
7019 default:
7020 /* The reversed conditional branch must branch over one additional
7021 instruction if the delay slot is filled and needs to be extracted
7022 by output_lbranch. If the delay slot is empty or this is a
7023 nullified forward branch, the instruction after the reversed
7024 condition branch must be nullified. */
7025 if (dbr_sequence_length () == 0
7026 || (nullify && forward_branch_p (insn)))
7028 nullify = 1;
7029 xdelay = 0;
7030 operands[4] = GEN_INT (length);
7032 else
7034 xdelay = 1;
7035 operands[4] = GEN_INT (length + 4);
7038 if (nullify)
7039 output_asm_insn ("movb,%N2,n %1,%0,.+%4", operands);
7040 else
7041 output_asm_insn ("movb,%N2 %1,%0,.+%4", operands);
7043 return output_lbranch (operands[3], insn, xdelay);
7046 /* Deal with gross reload for FP destination register case. */
7047 else if (which_alternative == 1)
7049 /* Move source register to MEM, perform the branch test, then
7050 finally load the FP register from MEM from within the branch's
7051 delay slot. */
7052 output_asm_insn ("stw %1,-16(%%r30)", operands);
7053 if (length == 12)
7054 return "{comb|cmpb},%S2 %%r0,%1,%3\n\t{fldws|fldw} -16(%%r30),%0";
7055 else if (length == 16)
7056 return "{comclr|cmpclr},%B2 %%r0,%1,%%r0\n\tb %3\n\t{fldws|fldw} -16(%%r30),%0";
7057 else
7059 operands[4] = GEN_INT (length - 4);
7060 output_asm_insn ("{comb|cmpb},%B2 %%r0,%1,.+%4", operands);
7061 output_asm_insn ("{fldws|fldw} -16(%%r30),%0", operands);
7062 return output_lbranch (operands[3], insn, 0);
7065 /* Deal with gross reload from memory case. */
7066 else if (which_alternative == 2)
7068 /* Reload loop counter from memory, the store back to memory
7069 happens in the branch's delay slot. */
7070 if (length == 8)
7071 return "{comb|cmpb},%S2 %%r0,%1,%3\n\tstw %1,%0";
7072 else if (length == 12)
7073 return "{comclr|cmpclr},%B2 %%r0,%1,%%r0\n\tb %3\n\tstw %1,%0";
7074 else
7076 operands[4] = GEN_INT (length);
7077 output_asm_insn ("{comb|cmpb},%B2 %%r0,%1,.+%4\n\tstw %1,%0",
7078 operands);
7079 return output_lbranch (operands[3], insn, 0);
7082 /* Handle SAR as a destination. */
7083 else
7085 if (length == 8)
7086 return "{comb|cmpb},%S2 %%r0,%1,%3\n\tmtsar %r1";
7087 else if (length == 12)
7088 return "{comclr|cmpclr},%B2 %%r0,%1,%%r0\n\tb %3\n\tmtsar %r1";
7089 else
7091 operands[4] = GEN_INT (length);
7092 output_asm_insn ("{comb|cmpb},%B2 %%r0,%1,.+%4\n\tmtsar %r1",
7093 operands);
7094 return output_lbranch (operands[3], insn, 0);
7099 /* Copy any FP arguments in INSN into integer registers. */
7100 static void
7101 copy_fp_args (rtx insn)
7103 rtx link;
7104 rtx xoperands[2];
7106 for (link = CALL_INSN_FUNCTION_USAGE (insn); link; link = XEXP (link, 1))
7108 int arg_mode, regno;
7109 rtx use = XEXP (link, 0);
7111 if (! (GET_CODE (use) == USE
7112 && GET_CODE (XEXP (use, 0)) == REG
7113 && FUNCTION_ARG_REGNO_P (REGNO (XEXP (use, 0)))))
7114 continue;
7116 arg_mode = GET_MODE (XEXP (use, 0));
7117 regno = REGNO (XEXP (use, 0));
7119 /* Is it a floating point register? */
7120 if (regno >= 32 && regno <= 39)
7122 /* Copy the FP register into an integer register via memory. */
7123 if (arg_mode == SFmode)
7125 xoperands[0] = XEXP (use, 0);
7126 xoperands[1] = gen_rtx_REG (SImode, 26 - (regno - 32) / 2);
7127 output_asm_insn ("{fstws|fstw} %0,-16(%%sr0,%%r30)", xoperands);
7128 output_asm_insn ("ldw -16(%%sr0,%%r30),%1", xoperands);
7130 else
7132 xoperands[0] = XEXP (use, 0);
7133 xoperands[1] = gen_rtx_REG (DImode, 25 - (regno - 34) / 2);
7134 output_asm_insn ("{fstds|fstd} %0,-16(%%sr0,%%r30)", xoperands);
7135 output_asm_insn ("ldw -12(%%sr0,%%r30),%R1", xoperands);
7136 output_asm_insn ("ldw -16(%%sr0,%%r30),%1", xoperands);
7142 /* Compute length of the FP argument copy sequence for INSN. */
7143 static int
7144 length_fp_args (rtx insn)
7146 int length = 0;
7147 rtx link;
7149 for (link = CALL_INSN_FUNCTION_USAGE (insn); link; link = XEXP (link, 1))
7151 int arg_mode, regno;
7152 rtx use = XEXP (link, 0);
7154 if (! (GET_CODE (use) == USE
7155 && GET_CODE (XEXP (use, 0)) == REG
7156 && FUNCTION_ARG_REGNO_P (REGNO (XEXP (use, 0)))))
7157 continue;
7159 arg_mode = GET_MODE (XEXP (use, 0));
7160 regno = REGNO (XEXP (use, 0));
7162 /* Is it a floating point register? */
7163 if (regno >= 32 && regno <= 39)
7165 if (arg_mode == SFmode)
7166 length += 8;
7167 else
7168 length += 12;
7172 return length;
7175 /* Return the attribute length for the millicode call instruction INSN.
7176 The length must match the code generated by output_millicode_call.
7177 We include the delay slot in the returned length as it is better to
7178 over estimate the length than to under estimate it. */
7181 attr_length_millicode_call (rtx insn)
7183 unsigned long distance = -1;
7184 unsigned long total = IN_NAMED_SECTION_P (cfun->decl) ? 0 : total_code_bytes;
7186 if (INSN_ADDRESSES_SET_P ())
7188 distance = (total + insn_current_reference_address (insn));
7189 if (distance < total)
7190 distance = -1;
7193 if (TARGET_64BIT)
7195 if (!TARGET_LONG_CALLS && distance < 7600000)
7196 return 8;
7198 return 20;
7200 else if (TARGET_PORTABLE_RUNTIME)
7201 return 24;
7202 else
7204 if (!TARGET_LONG_CALLS && distance < 240000)
7205 return 8;
7207 if (TARGET_LONG_ABS_CALL && !flag_pic)
7208 return 12;
7210 return 24;
7214 /* INSN is a function call. It may have an unconditional jump
7215 in its delay slot.
7217 CALL_DEST is the routine we are calling. */
7219 const char *
7220 output_millicode_call (rtx insn, rtx call_dest)
7222 int attr_length = get_attr_length (insn);
7223 int seq_length = dbr_sequence_length ();
7224 int distance;
7225 rtx seq_insn;
7226 rtx xoperands[3];
7228 xoperands[0] = call_dest;
7229 xoperands[2] = gen_rtx_REG (Pmode, TARGET_64BIT ? 2 : 31);
7231 /* Handle the common case where we are sure that the branch will
7232 reach the beginning of the $CODE$ subspace. The within reach
7233 form of the $$sh_func_adrs call has a length of 28. Because
7234 it has an attribute type of multi, it never has a nonzero
7235 sequence length. The length of the $$sh_func_adrs is the same
7236 as certain out of reach PIC calls to other routines. */
7237 if (!TARGET_LONG_CALLS
7238 && ((seq_length == 0
7239 && (attr_length == 12
7240 || (attr_length == 28 && get_attr_type (insn) == TYPE_MULTI)))
7241 || (seq_length != 0 && attr_length == 8)))
7243 output_asm_insn ("{bl|b,l} %0,%2", xoperands);
7245 else
7247 if (TARGET_64BIT)
7249 /* It might seem that one insn could be saved by accessing
7250 the millicode function using the linkage table. However,
7251 this doesn't work in shared libraries and other dynamically
7252 loaded objects. Using a pc-relative sequence also avoids
7253 problems related to the implicit use of the gp register. */
7254 output_asm_insn ("b,l .+8,%%r1", xoperands);
7256 if (TARGET_GAS)
7258 output_asm_insn ("addil L'%0-$PIC_pcrel$0+4,%%r1", xoperands);
7259 output_asm_insn ("ldo R'%0-$PIC_pcrel$0+8(%%r1),%%r1", xoperands);
7261 else
7263 xoperands[1] = gen_label_rtx ();
7264 output_asm_insn ("addil L'%0-%l1,%%r1", xoperands);
7265 targetm.asm_out.internal_label (asm_out_file, "L",
7266 CODE_LABEL_NUMBER (xoperands[1]));
7267 output_asm_insn ("ldo R'%0-%l1(%%r1),%%r1", xoperands);
7270 output_asm_insn ("bve,l (%%r1),%%r2", xoperands);
7272 else if (TARGET_PORTABLE_RUNTIME)
7274 /* Pure portable runtime doesn't allow be/ble; we also don't
7275 have PIC support in the assembler/linker, so this sequence
7276 is needed. */
7278 /* Get the address of our target into %r1. */
7279 output_asm_insn ("ldil L'%0,%%r1", xoperands);
7280 output_asm_insn ("ldo R'%0(%%r1),%%r1", xoperands);
7282 /* Get our return address into %r31. */
7283 output_asm_insn ("{bl|b,l} .+8,%%r31", xoperands);
7284 output_asm_insn ("addi 8,%%r31,%%r31", xoperands);
7286 /* Jump to our target address in %r1. */
7287 output_asm_insn ("bv %%r0(%%r1)", xoperands);
7289 else if (!flag_pic)
7291 output_asm_insn ("ldil L'%0,%%r1", xoperands);
7292 if (TARGET_PA_20)
7293 output_asm_insn ("be,l R'%0(%%sr4,%%r1),%%sr0,%%r31", xoperands);
7294 else
7295 output_asm_insn ("ble R'%0(%%sr4,%%r1)", xoperands);
7297 else
7299 output_asm_insn ("{bl|b,l} .+8,%%r1", xoperands);
7300 output_asm_insn ("addi 16,%%r1,%%r31", xoperands);
7302 if (TARGET_SOM || !TARGET_GAS)
7304 /* The HP assembler can generate relocations for the
7305 difference of two symbols. GAS can do this for a
7306 millicode symbol but not an arbitrary external
7307 symbol when generating SOM output. */
7308 xoperands[1] = gen_label_rtx ();
7309 targetm.asm_out.internal_label (asm_out_file, "L",
7310 CODE_LABEL_NUMBER (xoperands[1]));
7311 output_asm_insn ("addil L'%0-%l1,%%r1", xoperands);
7312 output_asm_insn ("ldo R'%0-%l1(%%r1),%%r1", xoperands);
7314 else
7316 output_asm_insn ("addil L'%0-$PIC_pcrel$0+8,%%r1", xoperands);
7317 output_asm_insn ("ldo R'%0-$PIC_pcrel$0+12(%%r1),%%r1",
7318 xoperands);
7321 /* Jump to our target address in %r1. */
7322 output_asm_insn ("bv %%r0(%%r1)", xoperands);
7326 if (seq_length == 0)
7327 output_asm_insn ("nop", xoperands);
7329 /* We are done if there isn't a jump in the delay slot. */
7330 if (seq_length == 0 || GET_CODE (NEXT_INSN (insn)) != JUMP_INSN)
7331 return "";
7333 /* This call has an unconditional jump in its delay slot. */
7334 xoperands[0] = XEXP (PATTERN (NEXT_INSN (insn)), 1);
7336 /* See if the return address can be adjusted. Use the containing
7337 sequence insn's address. */
7338 if (INSN_ADDRESSES_SET_P ())
7340 seq_insn = NEXT_INSN (PREV_INSN (XVECEXP (final_sequence, 0, 0)));
7341 distance = (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (NEXT_INSN (insn))))
7342 - INSN_ADDRESSES (INSN_UID (seq_insn)) - 8);
7344 if (VAL_14_BITS_P (distance))
7346 xoperands[1] = gen_label_rtx ();
7347 output_asm_insn ("ldo %0-%1(%2),%2", xoperands);
7348 targetm.asm_out.internal_label (asm_out_file, "L",
7349 CODE_LABEL_NUMBER (xoperands[1]));
7351 else
7352 /* ??? This branch may not reach its target. */
7353 output_asm_insn ("nop\n\tb,n %0", xoperands);
7355 else
7356 /* ??? This branch may not reach its target. */
7357 output_asm_insn ("nop\n\tb,n %0", xoperands);
7359 /* Delete the jump. */
7360 SET_INSN_DELETED (NEXT_INSN (insn));
7362 return "";
7365 /* Return the attribute length of the call instruction INSN. The SIBCALL
7366 flag indicates whether INSN is a regular call or a sibling call. The
7367 length returned must be longer than the code actually generated by
7368 output_call. Since branch shortening is done before delay branch
7369 sequencing, there is no way to determine whether or not the delay
7370 slot will be filled during branch shortening. Even when the delay
7371 slot is filled, we may have to add a nop if the delay slot contains
7372 a branch that can't reach its target. Thus, we always have to include
7373 the delay slot in the length estimate. This used to be done in
7374 pa_adjust_insn_length but we do it here now as some sequences always
7375 fill the delay slot and we can save four bytes in the estimate for
7376 these sequences. */
7379 attr_length_call (rtx insn, int sibcall)
7381 int local_call;
7382 rtx call, call_dest;
7383 tree call_decl;
7384 int length = 0;
7385 rtx pat = PATTERN (insn);
7386 unsigned long distance = -1;
7388 gcc_assert (GET_CODE (insn) == CALL_INSN);
7390 if (INSN_ADDRESSES_SET_P ())
7392 unsigned long total;
7394 total = IN_NAMED_SECTION_P (cfun->decl) ? 0 : total_code_bytes;
7395 distance = (total + insn_current_reference_address (insn));
7396 if (distance < total)
7397 distance = -1;
7400 gcc_assert (GET_CODE (pat) == PARALLEL);
7402 /* Get the call rtx. */
7403 call = XVECEXP (pat, 0, 0);
7404 if (GET_CODE (call) == SET)
7405 call = SET_SRC (call);
7407 gcc_assert (GET_CODE (call) == CALL);
7409 /* Determine if this is a local call. */
7410 call_dest = XEXP (XEXP (call, 0), 0);
7411 call_decl = SYMBOL_REF_DECL (call_dest);
7412 local_call = call_decl && targetm.binds_local_p (call_decl);
7414 /* pc-relative branch. */
7415 if (!TARGET_LONG_CALLS
7416 && ((TARGET_PA_20 && !sibcall && distance < 7600000)
7417 || distance < 240000))
7418 length += 8;
7420 /* 64-bit plabel sequence. */
7421 else if (TARGET_64BIT && !local_call)
7422 length += sibcall ? 28 : 24;
7424 /* non-pic long absolute branch sequence. */
7425 else if ((TARGET_LONG_ABS_CALL || local_call) && !flag_pic)
7426 length += 12;
7428 /* long pc-relative branch sequence. */
7429 else if (TARGET_LONG_PIC_SDIFF_CALL
7430 || (TARGET_GAS && !TARGET_SOM
7431 && (TARGET_LONG_PIC_PCREL_CALL || local_call)))
7433 length += 20;
7435 if (!TARGET_PA_20 && !TARGET_NO_SPACE_REGS && flag_pic)
7436 length += 8;
7439 /* 32-bit plabel sequence. */
7440 else
7442 length += 32;
7444 if (TARGET_SOM)
7445 length += length_fp_args (insn);
7447 if (flag_pic)
7448 length += 4;
7450 if (!TARGET_PA_20)
7452 if (!sibcall)
7453 length += 8;
7455 if (!TARGET_NO_SPACE_REGS && flag_pic)
7456 length += 8;
7460 return length;
7463 /* INSN is a function call. It may have an unconditional jump
7464 in its delay slot.
7466 CALL_DEST is the routine we are calling. */
7468 const char *
7469 output_call (rtx insn, rtx call_dest, int sibcall)
7471 int delay_insn_deleted = 0;
7472 int delay_slot_filled = 0;
7473 int seq_length = dbr_sequence_length ();
7474 tree call_decl = SYMBOL_REF_DECL (call_dest);
7475 int local_call = call_decl && targetm.binds_local_p (call_decl);
7476 rtx xoperands[2];
7478 xoperands[0] = call_dest;
7480 /* Handle the common case where we're sure that the branch will reach
7481 the beginning of the "$CODE$" subspace. This is the beginning of
7482 the current function if we are in a named section. */
7483 if (!TARGET_LONG_CALLS && attr_length_call (insn, sibcall) == 8)
7485 xoperands[1] = gen_rtx_REG (word_mode, sibcall ? 0 : 2);
7486 output_asm_insn ("{bl|b,l} %0,%1", xoperands);
7488 else
7490 if (TARGET_64BIT && !local_call)
7492 /* ??? As far as I can tell, the HP linker doesn't support the
7493 long pc-relative sequence described in the 64-bit runtime
7494 architecture. So, we use a slightly longer indirect call. */
7495 xoperands[0] = get_deferred_plabel (call_dest);
7496 xoperands[1] = gen_label_rtx ();
7498 /* If this isn't a sibcall, we put the load of %r27 into the
7499 delay slot. We can't do this in a sibcall as we don't
7500 have a second call-clobbered scratch register available. */
7501 if (seq_length != 0
7502 && GET_CODE (NEXT_INSN (insn)) != JUMP_INSN
7503 && !sibcall)
7505 final_scan_insn (NEXT_INSN (insn), asm_out_file,
7506 optimize, 0, NULL);
7508 /* Now delete the delay insn. */
7509 SET_INSN_DELETED (NEXT_INSN (insn));
7510 delay_insn_deleted = 1;
7513 output_asm_insn ("addil LT'%0,%%r27", xoperands);
7514 output_asm_insn ("ldd RT'%0(%%r1),%%r1", xoperands);
7515 output_asm_insn ("ldd 0(%%r1),%%r1", xoperands);
7517 if (sibcall)
7519 output_asm_insn ("ldd 24(%%r1),%%r27", xoperands);
7520 output_asm_insn ("ldd 16(%%r1),%%r1", xoperands);
7521 output_asm_insn ("bve (%%r1)", xoperands);
7523 else
7525 output_asm_insn ("ldd 16(%%r1),%%r2", xoperands);
7526 output_asm_insn ("bve,l (%%r2),%%r2", xoperands);
7527 output_asm_insn ("ldd 24(%%r1),%%r27", xoperands);
7528 delay_slot_filled = 1;
7531 else
7533 int indirect_call = 0;
7535 /* Emit a long call. There are several different sequences
7536 of increasing length and complexity. In most cases,
7537 they don't allow an instruction in the delay slot. */
7538 if (!((TARGET_LONG_ABS_CALL || local_call) && !flag_pic)
7539 && !TARGET_LONG_PIC_SDIFF_CALL
7540 && !(TARGET_GAS && !TARGET_SOM
7541 && (TARGET_LONG_PIC_PCREL_CALL || local_call))
7542 && !TARGET_64BIT)
7543 indirect_call = 1;
7545 if (seq_length != 0
7546 && GET_CODE (NEXT_INSN (insn)) != JUMP_INSN
7547 && !sibcall
7548 && (!TARGET_PA_20
7549 || indirect_call
7550 || ((TARGET_LONG_ABS_CALL || local_call) && !flag_pic)))
7552 /* A non-jump insn in the delay slot. By definition we can
7553 emit this insn before the call (and in fact before argument
7554 relocating. */
7555 final_scan_insn (NEXT_INSN (insn), asm_out_file, optimize, 0,
7556 NULL);
7558 /* Now delete the delay insn. */
7559 SET_INSN_DELETED (NEXT_INSN (insn));
7560 delay_insn_deleted = 1;
7563 if ((TARGET_LONG_ABS_CALL || local_call) && !flag_pic)
7565 /* This is the best sequence for making long calls in
7566 non-pic code. Unfortunately, GNU ld doesn't provide
7567 the stub needed for external calls, and GAS's support
7568 for this with the SOM linker is buggy. It is safe
7569 to use this for local calls. */
7570 output_asm_insn ("ldil L'%0,%%r1", xoperands);
7571 if (sibcall)
7572 output_asm_insn ("be R'%0(%%sr4,%%r1)", xoperands);
7573 else
7575 if (TARGET_PA_20)
7576 output_asm_insn ("be,l R'%0(%%sr4,%%r1),%%sr0,%%r31",
7577 xoperands);
7578 else
7579 output_asm_insn ("ble R'%0(%%sr4,%%r1)", xoperands);
7581 output_asm_insn ("copy %%r31,%%r2", xoperands);
7582 delay_slot_filled = 1;
7585 else
7587 if (TARGET_LONG_PIC_SDIFF_CALL)
7589 /* The HP assembler and linker can handle relocations
7590 for the difference of two symbols. The HP assembler
7591 recognizes the sequence as a pc-relative call and
7592 the linker provides stubs when needed. */
7593 xoperands[1] = gen_label_rtx ();
7594 output_asm_insn ("{bl|b,l} .+8,%%r1", xoperands);
7595 output_asm_insn ("addil L'%0-%l1,%%r1", xoperands);
7596 targetm.asm_out.internal_label (asm_out_file, "L",
7597 CODE_LABEL_NUMBER (xoperands[1]));
7598 output_asm_insn ("ldo R'%0-%l1(%%r1),%%r1", xoperands);
7600 else if (TARGET_GAS && !TARGET_SOM
7601 && (TARGET_LONG_PIC_PCREL_CALL || local_call))
7603 /* GAS currently can't generate the relocations that
7604 are needed for the SOM linker under HP-UX using this
7605 sequence. The GNU linker doesn't generate the stubs
7606 that are needed for external calls on TARGET_ELF32
7607 with this sequence. For now, we have to use a
7608 longer plabel sequence when using GAS. */
7609 output_asm_insn ("{bl|b,l} .+8,%%r1", xoperands);
7610 output_asm_insn ("addil L'%0-$PIC_pcrel$0+4,%%r1",
7611 xoperands);
7612 output_asm_insn ("ldo R'%0-$PIC_pcrel$0+8(%%r1),%%r1",
7613 xoperands);
7615 else
7617 /* Emit a long plabel-based call sequence. This is
7618 essentially an inline implementation of $$dyncall.
7619 We don't actually try to call $$dyncall as this is
7620 as difficult as calling the function itself. */
7621 xoperands[0] = get_deferred_plabel (call_dest);
7622 xoperands[1] = gen_label_rtx ();
7624 /* Since the call is indirect, FP arguments in registers
7625 need to be copied to the general registers. Then, the
7626 argument relocation stub will copy them back. */
7627 if (TARGET_SOM)
7628 copy_fp_args (insn);
7630 if (flag_pic)
7632 output_asm_insn ("addil LT'%0,%%r19", xoperands);
7633 output_asm_insn ("ldw RT'%0(%%r1),%%r1", xoperands);
7634 output_asm_insn ("ldw 0(%%r1),%%r1", xoperands);
7636 else
7638 output_asm_insn ("addil LR'%0-$global$,%%r27",
7639 xoperands);
7640 output_asm_insn ("ldw RR'%0-$global$(%%r1),%%r1",
7641 xoperands);
7644 output_asm_insn ("bb,>=,n %%r1,30,.+16", xoperands);
7645 output_asm_insn ("depi 0,31,2,%%r1", xoperands);
7646 output_asm_insn ("ldw 4(%%sr0,%%r1),%%r19", xoperands);
7647 output_asm_insn ("ldw 0(%%sr0,%%r1),%%r1", xoperands);
7649 if (!sibcall && !TARGET_PA_20)
7651 output_asm_insn ("{bl|b,l} .+8,%%r2", xoperands);
7652 if (TARGET_NO_SPACE_REGS)
7653 output_asm_insn ("addi 8,%%r2,%%r2", xoperands);
7654 else
7655 output_asm_insn ("addi 16,%%r2,%%r2", xoperands);
7659 if (TARGET_PA_20)
7661 if (sibcall)
7662 output_asm_insn ("bve (%%r1)", xoperands);
7663 else
7665 if (indirect_call)
7667 output_asm_insn ("bve,l (%%r1),%%r2", xoperands);
7668 output_asm_insn ("stw %%r2,-24(%%sp)", xoperands);
7669 delay_slot_filled = 1;
7671 else
7672 output_asm_insn ("bve,l (%%r1),%%r2", xoperands);
7675 else
7677 if (!TARGET_NO_SPACE_REGS && flag_pic)
7678 output_asm_insn ("ldsid (%%r1),%%r31\n\tmtsp %%r31,%%sr0",
7679 xoperands);
7681 if (sibcall)
7683 if (TARGET_NO_SPACE_REGS || !flag_pic)
7684 output_asm_insn ("be 0(%%sr4,%%r1)", xoperands);
7685 else
7686 output_asm_insn ("be 0(%%sr0,%%r1)", xoperands);
7688 else
7690 if (TARGET_NO_SPACE_REGS || !flag_pic)
7691 output_asm_insn ("ble 0(%%sr4,%%r1)", xoperands);
7692 else
7693 output_asm_insn ("ble 0(%%sr0,%%r1)", xoperands);
7695 if (indirect_call)
7696 output_asm_insn ("stw %%r31,-24(%%sp)", xoperands);
7697 else
7698 output_asm_insn ("copy %%r31,%%r2", xoperands);
7699 delay_slot_filled = 1;
7706 if (!delay_slot_filled && (seq_length == 0 || delay_insn_deleted))
7707 output_asm_insn ("nop", xoperands);
7709 /* We are done if there isn't a jump in the delay slot. */
7710 if (seq_length == 0
7711 || delay_insn_deleted
7712 || GET_CODE (NEXT_INSN (insn)) != JUMP_INSN)
7713 return "";
7715 /* A sibcall should never have a branch in the delay slot. */
7716 gcc_assert (!sibcall);
7718 /* This call has an unconditional jump in its delay slot. */
7719 xoperands[0] = XEXP (PATTERN (NEXT_INSN (insn)), 1);
7721 if (!delay_slot_filled && INSN_ADDRESSES_SET_P ())
7723 /* See if the return address can be adjusted. Use the containing
7724 sequence insn's address. */
7725 rtx seq_insn = NEXT_INSN (PREV_INSN (XVECEXP (final_sequence, 0, 0)));
7726 int distance = (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (NEXT_INSN (insn))))
7727 - INSN_ADDRESSES (INSN_UID (seq_insn)) - 8);
7729 if (VAL_14_BITS_P (distance))
7731 xoperands[1] = gen_label_rtx ();
7732 output_asm_insn ("ldo %0-%1(%%r2),%%r2", xoperands);
7733 targetm.asm_out.internal_label (asm_out_file, "L",
7734 CODE_LABEL_NUMBER (xoperands[1]));
7736 else
7737 output_asm_insn ("nop\n\tb,n %0", xoperands);
7739 else
7740 output_asm_insn ("b,n %0", xoperands);
7742 /* Delete the jump. */
7743 SET_INSN_DELETED (NEXT_INSN (insn));
7745 return "";
7748 /* Return the attribute length of the indirect call instruction INSN.
7749 The length must match the code generated by output_indirect call.
7750 The returned length includes the delay slot. Currently, the delay
7751 slot of an indirect call sequence is not exposed and it is used by
7752 the sequence itself. */
7755 attr_length_indirect_call (rtx insn)
7757 unsigned long distance = -1;
7758 unsigned long total = IN_NAMED_SECTION_P (cfun->decl) ? 0 : total_code_bytes;
7760 if (INSN_ADDRESSES_SET_P ())
7762 distance = (total + insn_current_reference_address (insn));
7763 if (distance < total)
7764 distance = -1;
7767 if (TARGET_64BIT)
7768 return 12;
7770 if (TARGET_FAST_INDIRECT_CALLS
7771 || (!TARGET_PORTABLE_RUNTIME
7772 && ((TARGET_PA_20 && !TARGET_SOM && distance < 7600000)
7773 || distance < 240000)))
7774 return 8;
7776 if (flag_pic)
7777 return 24;
7779 if (TARGET_PORTABLE_RUNTIME)
7780 return 20;
7782 /* Out of reach, can use ble. */
7783 return 12;
7786 const char *
7787 output_indirect_call (rtx insn, rtx call_dest)
7789 rtx xoperands[1];
7791 if (TARGET_64BIT)
7793 xoperands[0] = call_dest;
7794 output_asm_insn ("ldd 16(%0),%%r2", xoperands);
7795 output_asm_insn ("bve,l (%%r2),%%r2\n\tldd 24(%0),%%r27", xoperands);
7796 return "";
7799 /* First the special case for kernels, level 0 systems, etc. */
7800 if (TARGET_FAST_INDIRECT_CALLS)
7801 return "ble 0(%%sr4,%%r22)\n\tcopy %%r31,%%r2";
7803 /* Now the normal case -- we can reach $$dyncall directly or
7804 we're sure that we can get there via a long-branch stub.
7806 No need to check target flags as the length uniquely identifies
7807 the remaining cases. */
7808 if (attr_length_indirect_call (insn) == 8)
7810 /* The HP linker sometimes substitutes a BLE for BL/B,L calls to
7811 $$dyncall. Since BLE uses %r31 as the link register, the 22-bit
7812 variant of the B,L instruction can't be used on the SOM target. */
7813 if (TARGET_PA_20 && !TARGET_SOM)
7814 return ".CALL\tARGW0=GR\n\tb,l $$dyncall,%%r2\n\tcopy %%r2,%%r31";
7815 else
7816 return ".CALL\tARGW0=GR\n\tbl $$dyncall,%%r31\n\tcopy %%r31,%%r2";
7819 /* Long millicode call, but we are not generating PIC or portable runtime
7820 code. */
7821 if (attr_length_indirect_call (insn) == 12)
7822 return ".CALL\tARGW0=GR\n\tldil L'$$dyncall,%%r2\n\tble R'$$dyncall(%%sr4,%%r2)\n\tcopy %%r31,%%r2";
7824 /* Long millicode call for portable runtime. */
7825 if (attr_length_indirect_call (insn) == 20)
7826 return "ldil L'$$dyncall,%%r31\n\tldo R'$$dyncall(%%r31),%%r31\n\tblr %%r0,%%r2\n\tbv,n %%r0(%%r31)\n\tnop";
7828 /* We need a long PIC call to $$dyncall. */
7829 xoperands[0] = NULL_RTX;
7830 output_asm_insn ("{bl|b,l} .+8,%%r1", xoperands);
7831 if (TARGET_SOM || !TARGET_GAS)
7833 xoperands[0] = gen_label_rtx ();
7834 output_asm_insn ("addil L'$$dyncall-%0,%%r1", xoperands);
7835 targetm.asm_out.internal_label (asm_out_file, "L",
7836 CODE_LABEL_NUMBER (xoperands[0]));
7837 output_asm_insn ("ldo R'$$dyncall-%0(%%r1),%%r1", xoperands);
7839 else
7841 output_asm_insn ("addil L'$$dyncall-$PIC_pcrel$0+4,%%r1", xoperands);
7842 output_asm_insn ("ldo R'$$dyncall-$PIC_pcrel$0+8(%%r1),%%r1",
7843 xoperands);
7845 output_asm_insn ("blr %%r0,%%r2", xoperands);
7846 output_asm_insn ("bv,n %%r0(%%r1)\n\tnop", xoperands);
7847 return "";
7850 /* Return the total length of the save and restore instructions needed for
7851 the data linkage table pointer (i.e., the PIC register) across the call
7852 instruction INSN. No-return calls do not require a save and restore.
7853 In addition, we may be able to avoid the save and restore for calls
7854 within the same translation unit. */
7857 attr_length_save_restore_dltp (rtx insn)
7859 if (find_reg_note (insn, REG_NORETURN, NULL_RTX))
7860 return 0;
7862 return 8;
7865 /* In HPUX 8.0's shared library scheme, special relocations are needed
7866 for function labels if they might be passed to a function
7867 in a shared library (because shared libraries don't live in code
7868 space), and special magic is needed to construct their address. */
7870 void
7871 hppa_encode_label (rtx sym)
7873 const char *str = XSTR (sym, 0);
7874 int len = strlen (str) + 1;
7875 char *newstr, *p;
7877 p = newstr = XALLOCAVEC (char, len + 1);
7878 *p++ = '@';
7879 strcpy (p, str);
7881 XSTR (sym, 0) = ggc_alloc_string (newstr, len);
7884 static void
7885 pa_encode_section_info (tree decl, rtx rtl, int first)
7887 int old_referenced = 0;
7889 if (!first && MEM_P (rtl) && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF)
7890 old_referenced
7891 = SYMBOL_REF_FLAGS (XEXP (rtl, 0)) & SYMBOL_FLAG_REFERENCED;
7893 default_encode_section_info (decl, rtl, first);
7895 if (first && TEXT_SPACE_P (decl))
7897 SYMBOL_REF_FLAG (XEXP (rtl, 0)) = 1;
7898 if (TREE_CODE (decl) == FUNCTION_DECL)
7899 hppa_encode_label (XEXP (rtl, 0));
7901 else if (old_referenced)
7902 SYMBOL_REF_FLAGS (XEXP (rtl, 0)) |= old_referenced;
7905 /* This is sort of inverse to pa_encode_section_info. */
7907 static const char *
7908 pa_strip_name_encoding (const char *str)
7910 str += (*str == '@');
7911 str += (*str == '*');
7912 return str;
7916 function_label_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
7918 return GET_CODE (op) == SYMBOL_REF && FUNCTION_NAME_P (XSTR (op, 0));
7921 /* Returns 1 if OP is a function label involved in a simple addition
7922 with a constant. Used to keep certain patterns from matching
7923 during instruction combination. */
7925 is_function_label_plus_const (rtx op)
7927 /* Strip off any CONST. */
7928 if (GET_CODE (op) == CONST)
7929 op = XEXP (op, 0);
7931 return (GET_CODE (op) == PLUS
7932 && function_label_operand (XEXP (op, 0), Pmode)
7933 && GET_CODE (XEXP (op, 1)) == CONST_INT);
7936 /* Output assembly code for a thunk to FUNCTION. */
7938 static void
7939 pa_asm_output_mi_thunk (FILE *file, tree thunk_fndecl, HOST_WIDE_INT delta,
7940 HOST_WIDE_INT vcall_offset ATTRIBUTE_UNUSED,
7941 tree function)
7943 static unsigned int current_thunk_number;
7944 int val_14 = VAL_14_BITS_P (delta);
7945 unsigned int old_last_address = last_address, nbytes = 0;
7946 char label[16];
7947 rtx xoperands[4];
7949 xoperands[0] = XEXP (DECL_RTL (function), 0);
7950 xoperands[1] = XEXP (DECL_RTL (thunk_fndecl), 0);
7951 xoperands[2] = GEN_INT (delta);
7953 ASM_OUTPUT_LABEL (file, XSTR (xoperands[1], 0));
7954 fprintf (file, "\t.PROC\n\t.CALLINFO FRAME=0,NO_CALLS\n\t.ENTRY\n");
7956 /* Output the thunk. We know that the function is in the same
7957 translation unit (i.e., the same space) as the thunk, and that
7958 thunks are output after their method. Thus, we don't need an
7959 external branch to reach the function. With SOM and GAS,
7960 functions and thunks are effectively in different sections.
7961 Thus, we can always use a IA-relative branch and the linker
7962 will add a long branch stub if necessary.
7964 However, we have to be careful when generating PIC code on the
7965 SOM port to ensure that the sequence does not transfer to an
7966 import stub for the target function as this could clobber the
7967 return value saved at SP-24. This would also apply to the
7968 32-bit linux port if the multi-space model is implemented. */
7969 if ((!TARGET_LONG_CALLS && TARGET_SOM && !TARGET_PORTABLE_RUNTIME
7970 && !(flag_pic && TREE_PUBLIC (function))
7971 && (TARGET_GAS || last_address < 262132))
7972 || (!TARGET_LONG_CALLS && !TARGET_SOM && !TARGET_PORTABLE_RUNTIME
7973 && ((targetm.have_named_sections
7974 && DECL_SECTION_NAME (thunk_fndecl) != NULL
7975 /* The GNU 64-bit linker has rather poor stub management.
7976 So, we use a long branch from thunks that aren't in
7977 the same section as the target function. */
7978 && ((!TARGET_64BIT
7979 && (DECL_SECTION_NAME (thunk_fndecl)
7980 != DECL_SECTION_NAME (function)))
7981 || ((DECL_SECTION_NAME (thunk_fndecl)
7982 == DECL_SECTION_NAME (function))
7983 && last_address < 262132)))
7984 || (targetm.have_named_sections
7985 && DECL_SECTION_NAME (thunk_fndecl) == NULL
7986 && DECL_SECTION_NAME (function) == NULL
7987 && last_address < 262132)
7988 || (!targetm.have_named_sections && last_address < 262132))))
7990 if (!val_14)
7991 output_asm_insn ("addil L'%2,%%r26", xoperands);
7993 output_asm_insn ("b %0", xoperands);
7995 if (val_14)
7997 output_asm_insn ("ldo %2(%%r26),%%r26", xoperands);
7998 nbytes += 8;
8000 else
8002 output_asm_insn ("ldo R'%2(%%r1),%%r26", xoperands);
8003 nbytes += 12;
8006 else if (TARGET_64BIT)
8008 /* We only have one call-clobbered scratch register, so we can't
8009 make use of the delay slot if delta doesn't fit in 14 bits. */
8010 if (!val_14)
8012 output_asm_insn ("addil L'%2,%%r26", xoperands);
8013 output_asm_insn ("ldo R'%2(%%r1),%%r26", xoperands);
8016 output_asm_insn ("b,l .+8,%%r1", xoperands);
8018 if (TARGET_GAS)
8020 output_asm_insn ("addil L'%0-$PIC_pcrel$0+4,%%r1", xoperands);
8021 output_asm_insn ("ldo R'%0-$PIC_pcrel$0+8(%%r1),%%r1", xoperands);
8023 else
8025 xoperands[3] = GEN_INT (val_14 ? 8 : 16);
8026 output_asm_insn ("addil L'%0-%1-%3,%%r1", xoperands);
8029 if (val_14)
8031 output_asm_insn ("bv %%r0(%%r1)", xoperands);
8032 output_asm_insn ("ldo %2(%%r26),%%r26", xoperands);
8033 nbytes += 20;
8035 else
8037 output_asm_insn ("bv,n %%r0(%%r1)", xoperands);
8038 nbytes += 24;
8041 else if (TARGET_PORTABLE_RUNTIME)
8043 output_asm_insn ("ldil L'%0,%%r1", xoperands);
8044 output_asm_insn ("ldo R'%0(%%r1),%%r22", xoperands);
8046 if (!val_14)
8047 output_asm_insn ("addil L'%2,%%r26", xoperands);
8049 output_asm_insn ("bv %%r0(%%r22)", xoperands);
8051 if (val_14)
8053 output_asm_insn ("ldo %2(%%r26),%%r26", xoperands);
8054 nbytes += 16;
8056 else
8058 output_asm_insn ("ldo R'%2(%%r1),%%r26", xoperands);
8059 nbytes += 20;
8062 else if (TARGET_SOM && flag_pic && TREE_PUBLIC (function))
8064 /* The function is accessible from outside this module. The only
8065 way to avoid an import stub between the thunk and function is to
8066 call the function directly with an indirect sequence similar to
8067 that used by $$dyncall. This is possible because $$dyncall acts
8068 as the import stub in an indirect call. */
8069 ASM_GENERATE_INTERNAL_LABEL (label, "LTHN", current_thunk_number);
8070 xoperands[3] = gen_rtx_SYMBOL_REF (Pmode, label);
8071 output_asm_insn ("addil LT'%3,%%r19", xoperands);
8072 output_asm_insn ("ldw RT'%3(%%r1),%%r22", xoperands);
8073 output_asm_insn ("ldw 0(%%sr0,%%r22),%%r22", xoperands);
8074 output_asm_insn ("bb,>=,n %%r22,30,.+16", xoperands);
8075 output_asm_insn ("depi 0,31,2,%%r22", xoperands);
8076 output_asm_insn ("ldw 4(%%sr0,%%r22),%%r19", xoperands);
8077 output_asm_insn ("ldw 0(%%sr0,%%r22),%%r22", xoperands);
8079 if (!val_14)
8081 output_asm_insn ("addil L'%2,%%r26", xoperands);
8082 nbytes += 4;
8085 if (TARGET_PA_20)
8087 output_asm_insn ("bve (%%r22)", xoperands);
8088 nbytes += 36;
8090 else if (TARGET_NO_SPACE_REGS)
8092 output_asm_insn ("be 0(%%sr4,%%r22)", xoperands);
8093 nbytes += 36;
8095 else
8097 output_asm_insn ("ldsid (%%sr0,%%r22),%%r21", xoperands);
8098 output_asm_insn ("mtsp %%r21,%%sr0", xoperands);
8099 output_asm_insn ("be 0(%%sr0,%%r22)", xoperands);
8100 nbytes += 44;
8103 if (val_14)
8104 output_asm_insn ("ldo %2(%%r26),%%r26", xoperands);
8105 else
8106 output_asm_insn ("ldo R'%2(%%r1),%%r26", xoperands);
8108 else if (flag_pic)
8110 output_asm_insn ("{bl|b,l} .+8,%%r1", xoperands);
8112 if (TARGET_SOM || !TARGET_GAS)
8114 output_asm_insn ("addil L'%0-%1-8,%%r1", xoperands);
8115 output_asm_insn ("ldo R'%0-%1-8(%%r1),%%r22", xoperands);
8117 else
8119 output_asm_insn ("addil L'%0-$PIC_pcrel$0+4,%%r1", xoperands);
8120 output_asm_insn ("ldo R'%0-$PIC_pcrel$0+8(%%r1),%%r22", xoperands);
8123 if (!val_14)
8124 output_asm_insn ("addil L'%2,%%r26", xoperands);
8126 output_asm_insn ("bv %%r0(%%r22)", xoperands);
8128 if (val_14)
8130 output_asm_insn ("ldo %2(%%r26),%%r26", xoperands);
8131 nbytes += 20;
8133 else
8135 output_asm_insn ("ldo R'%2(%%r1),%%r26", xoperands);
8136 nbytes += 24;
8139 else
8141 if (!val_14)
8142 output_asm_insn ("addil L'%2,%%r26", xoperands);
8144 output_asm_insn ("ldil L'%0,%%r22", xoperands);
8145 output_asm_insn ("be R'%0(%%sr4,%%r22)", xoperands);
8147 if (val_14)
8149 output_asm_insn ("ldo %2(%%r26),%%r26", xoperands);
8150 nbytes += 12;
8152 else
8154 output_asm_insn ("ldo R'%2(%%r1),%%r26", xoperands);
8155 nbytes += 16;
8159 fprintf (file, "\t.EXIT\n\t.PROCEND\n");
8161 if (TARGET_SOM && TARGET_GAS)
8163 /* We done with this subspace except possibly for some additional
8164 debug information. Forget that we are in this subspace to ensure
8165 that the next function is output in its own subspace. */
8166 in_section = NULL;
8167 cfun->machine->in_nsubspa = 2;
8170 if (TARGET_SOM && flag_pic && TREE_PUBLIC (function))
8172 switch_to_section (data_section);
8173 output_asm_insn (".align 4", xoperands);
8174 ASM_OUTPUT_LABEL (file, label);
8175 output_asm_insn (".word P'%0", xoperands);
8178 current_thunk_number++;
8179 nbytes = ((nbytes + FUNCTION_BOUNDARY / BITS_PER_UNIT - 1)
8180 & ~(FUNCTION_BOUNDARY / BITS_PER_UNIT - 1));
8181 last_address += nbytes;
8182 if (old_last_address > last_address)
8183 last_address = UINT_MAX;
8184 update_total_code_bytes (nbytes);
8187 /* Only direct calls to static functions are allowed to be sibling (tail)
8188 call optimized.
8190 This restriction is necessary because some linker generated stubs will
8191 store return pointers into rp' in some cases which might clobber a
8192 live value already in rp'.
8194 In a sibcall the current function and the target function share stack
8195 space. Thus if the path to the current function and the path to the
8196 target function save a value in rp', they save the value into the
8197 same stack slot, which has undesirable consequences.
8199 Because of the deferred binding nature of shared libraries any function
8200 with external scope could be in a different load module and thus require
8201 rp' to be saved when calling that function. So sibcall optimizations
8202 can only be safe for static function.
8204 Note that GCC never needs return value relocations, so we don't have to
8205 worry about static calls with return value relocations (which require
8206 saving rp').
8208 It is safe to perform a sibcall optimization when the target function
8209 will never return. */
8210 static bool
8211 pa_function_ok_for_sibcall (tree decl, tree exp ATTRIBUTE_UNUSED)
8213 if (TARGET_PORTABLE_RUNTIME)
8214 return false;
8216 /* Sibcalls are ok for TARGET_ELF32 as along as the linker is used in
8217 single subspace mode and the call is not indirect. As far as I know,
8218 there is no operating system support for the multiple subspace mode.
8219 It might be possible to support indirect calls if we didn't use
8220 $$dyncall (see the indirect sequence generated in output_call). */
8221 if (TARGET_ELF32)
8222 return (decl != NULL_TREE);
8224 /* Sibcalls are not ok because the arg pointer register is not a fixed
8225 register. This prevents the sibcall optimization from occurring. In
8226 addition, there are problems with stub placement using GNU ld. This
8227 is because a normal sibcall branch uses a 17-bit relocation while
8228 a regular call branch uses a 22-bit relocation. As a result, more
8229 care needs to be taken in the placement of long-branch stubs. */
8230 if (TARGET_64BIT)
8231 return false;
8233 /* Sibcalls are only ok within a translation unit. */
8234 return (decl && !TREE_PUBLIC (decl));
8237 /* ??? Addition is not commutative on the PA due to the weird implicit
8238 space register selection rules for memory addresses. Therefore, we
8239 don't consider a + b == b + a, as this might be inside a MEM. */
8240 static bool
8241 pa_commutative_p (const_rtx x, int outer_code)
8243 return (COMMUTATIVE_P (x)
8244 && (TARGET_NO_SPACE_REGS
8245 || (outer_code != UNKNOWN && outer_code != MEM)
8246 || GET_CODE (x) != PLUS));
8249 /* Returns 1 if the 6 operands specified in OPERANDS are suitable for
8250 use in fmpyadd instructions. */
8252 fmpyaddoperands (rtx *operands)
8254 enum machine_mode mode = GET_MODE (operands[0]);
8256 /* Must be a floating point mode. */
8257 if (mode != SFmode && mode != DFmode)
8258 return 0;
8260 /* All modes must be the same. */
8261 if (! (mode == GET_MODE (operands[1])
8262 && mode == GET_MODE (operands[2])
8263 && mode == GET_MODE (operands[3])
8264 && mode == GET_MODE (operands[4])
8265 && mode == GET_MODE (operands[5])))
8266 return 0;
8268 /* All operands must be registers. */
8269 if (! (GET_CODE (operands[1]) == REG
8270 && GET_CODE (operands[2]) == REG
8271 && GET_CODE (operands[3]) == REG
8272 && GET_CODE (operands[4]) == REG
8273 && GET_CODE (operands[5]) == REG))
8274 return 0;
8276 /* Only 2 real operands to the addition. One of the input operands must
8277 be the same as the output operand. */
8278 if (! rtx_equal_p (operands[3], operands[4])
8279 && ! rtx_equal_p (operands[3], operands[5]))
8280 return 0;
8282 /* Inout operand of add cannot conflict with any operands from multiply. */
8283 if (rtx_equal_p (operands[3], operands[0])
8284 || rtx_equal_p (operands[3], operands[1])
8285 || rtx_equal_p (operands[3], operands[2]))
8286 return 0;
8288 /* multiply cannot feed into addition operands. */
8289 if (rtx_equal_p (operands[4], operands[0])
8290 || rtx_equal_p (operands[5], operands[0]))
8291 return 0;
8293 /* SFmode limits the registers to the upper 32 of the 32bit FP regs. */
8294 if (mode == SFmode
8295 && (REGNO_REG_CLASS (REGNO (operands[0])) != FPUPPER_REGS
8296 || REGNO_REG_CLASS (REGNO (operands[1])) != FPUPPER_REGS
8297 || REGNO_REG_CLASS (REGNO (operands[2])) != FPUPPER_REGS
8298 || REGNO_REG_CLASS (REGNO (operands[3])) != FPUPPER_REGS
8299 || REGNO_REG_CLASS (REGNO (operands[4])) != FPUPPER_REGS
8300 || REGNO_REG_CLASS (REGNO (operands[5])) != FPUPPER_REGS))
8301 return 0;
8303 /* Passed. Operands are suitable for fmpyadd. */
8304 return 1;
8307 #if !defined(USE_COLLECT2)
8308 static void
8309 pa_asm_out_constructor (rtx symbol, int priority)
8311 if (!function_label_operand (symbol, VOIDmode))
8312 hppa_encode_label (symbol);
8314 #ifdef CTORS_SECTION_ASM_OP
8315 default_ctor_section_asm_out_constructor (symbol, priority);
8316 #else
8317 # ifdef TARGET_ASM_NAMED_SECTION
8318 default_named_section_asm_out_constructor (symbol, priority);
8319 # else
8320 default_stabs_asm_out_constructor (symbol, priority);
8321 # endif
8322 #endif
8325 static void
8326 pa_asm_out_destructor (rtx symbol, int priority)
8328 if (!function_label_operand (symbol, VOIDmode))
8329 hppa_encode_label (symbol);
8331 #ifdef DTORS_SECTION_ASM_OP
8332 default_dtor_section_asm_out_destructor (symbol, priority);
8333 #else
8334 # ifdef TARGET_ASM_NAMED_SECTION
8335 default_named_section_asm_out_destructor (symbol, priority);
8336 # else
8337 default_stabs_asm_out_destructor (symbol, priority);
8338 # endif
8339 #endif
8341 #endif
8343 /* This function places uninitialized global data in the bss section.
8344 The ASM_OUTPUT_ALIGNED_BSS macro needs to be defined to call this
8345 function on the SOM port to prevent uninitialized global data from
8346 being placed in the data section. */
8348 void
8349 pa_asm_output_aligned_bss (FILE *stream,
8350 const char *name,
8351 unsigned HOST_WIDE_INT size,
8352 unsigned int align)
8354 switch_to_section (bss_section);
8355 fprintf (stream, "\t.align %u\n", align / BITS_PER_UNIT);
8357 #ifdef ASM_OUTPUT_TYPE_DIRECTIVE
8358 ASM_OUTPUT_TYPE_DIRECTIVE (stream, name, "object");
8359 #endif
8361 #ifdef ASM_OUTPUT_SIZE_DIRECTIVE
8362 ASM_OUTPUT_SIZE_DIRECTIVE (stream, name, size);
8363 #endif
8365 fprintf (stream, "\t.align %u\n", align / BITS_PER_UNIT);
8366 ASM_OUTPUT_LABEL (stream, name);
8367 fprintf (stream, "\t.block "HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
8370 /* Both the HP and GNU assemblers under HP-UX provide a .comm directive
8371 that doesn't allow the alignment of global common storage to be directly
8372 specified. The SOM linker aligns common storage based on the rounded
8373 value of the NUM_BYTES parameter in the .comm directive. It's not
8374 possible to use the .align directive as it doesn't affect the alignment
8375 of the label associated with a .comm directive. */
8377 void
8378 pa_asm_output_aligned_common (FILE *stream,
8379 const char *name,
8380 unsigned HOST_WIDE_INT size,
8381 unsigned int align)
8383 unsigned int max_common_align;
8385 max_common_align = TARGET_64BIT ? 128 : (size >= 4096 ? 256 : 64);
8386 if (align > max_common_align)
8388 warning (0, "alignment (%u) for %s exceeds maximum alignment "
8389 "for global common data. Using %u",
8390 align / BITS_PER_UNIT, name, max_common_align / BITS_PER_UNIT);
8391 align = max_common_align;
8394 switch_to_section (bss_section);
8396 assemble_name (stream, name);
8397 fprintf (stream, "\t.comm "HOST_WIDE_INT_PRINT_UNSIGNED"\n",
8398 MAX (size, align / BITS_PER_UNIT));
8401 /* We can't use .comm for local common storage as the SOM linker effectively
8402 treats the symbol as universal and uses the same storage for local symbols
8403 with the same name in different object files. The .block directive
8404 reserves an uninitialized block of storage. However, it's not common
8405 storage. Fortunately, GCC never requests common storage with the same
8406 name in any given translation unit. */
8408 void
8409 pa_asm_output_aligned_local (FILE *stream,
8410 const char *name,
8411 unsigned HOST_WIDE_INT size,
8412 unsigned int align)
8414 switch_to_section (bss_section);
8415 fprintf (stream, "\t.align %u\n", align / BITS_PER_UNIT);
8417 #ifdef LOCAL_ASM_OP
8418 fprintf (stream, "%s", LOCAL_ASM_OP);
8419 assemble_name (stream, name);
8420 fprintf (stream, "\n");
8421 #endif
8423 ASM_OUTPUT_LABEL (stream, name);
8424 fprintf (stream, "\t.block "HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
8427 /* Returns 1 if the 6 operands specified in OPERANDS are suitable for
8428 use in fmpysub instructions. */
8430 fmpysuboperands (rtx *operands)
8432 enum machine_mode mode = GET_MODE (operands[0]);
8434 /* Must be a floating point mode. */
8435 if (mode != SFmode && mode != DFmode)
8436 return 0;
8438 /* All modes must be the same. */
8439 if (! (mode == GET_MODE (operands[1])
8440 && mode == GET_MODE (operands[2])
8441 && mode == GET_MODE (operands[3])
8442 && mode == GET_MODE (operands[4])
8443 && mode == GET_MODE (operands[5])))
8444 return 0;
8446 /* All operands must be registers. */
8447 if (! (GET_CODE (operands[1]) == REG
8448 && GET_CODE (operands[2]) == REG
8449 && GET_CODE (operands[3]) == REG
8450 && GET_CODE (operands[4]) == REG
8451 && GET_CODE (operands[5]) == REG))
8452 return 0;
8454 /* Only 2 real operands to the subtraction. Subtraction is not a commutative
8455 operation, so operands[4] must be the same as operand[3]. */
8456 if (! rtx_equal_p (operands[3], operands[4]))
8457 return 0;
8459 /* multiply cannot feed into subtraction. */
8460 if (rtx_equal_p (operands[5], operands[0]))
8461 return 0;
8463 /* Inout operand of sub cannot conflict with any operands from multiply. */
8464 if (rtx_equal_p (operands[3], operands[0])
8465 || rtx_equal_p (operands[3], operands[1])
8466 || rtx_equal_p (operands[3], operands[2]))
8467 return 0;
8469 /* SFmode limits the registers to the upper 32 of the 32bit FP regs. */
8470 if (mode == SFmode
8471 && (REGNO_REG_CLASS (REGNO (operands[0])) != FPUPPER_REGS
8472 || REGNO_REG_CLASS (REGNO (operands[1])) != FPUPPER_REGS
8473 || REGNO_REG_CLASS (REGNO (operands[2])) != FPUPPER_REGS
8474 || REGNO_REG_CLASS (REGNO (operands[3])) != FPUPPER_REGS
8475 || REGNO_REG_CLASS (REGNO (operands[4])) != FPUPPER_REGS
8476 || REGNO_REG_CLASS (REGNO (operands[5])) != FPUPPER_REGS))
8477 return 0;
8479 /* Passed. Operands are suitable for fmpysub. */
8480 return 1;
8483 /* Return 1 if the given constant is 2, 4, or 8. These are the valid
8484 constants for shadd instructions. */
8486 shadd_constant_p (int val)
8488 if (val == 2 || val == 4 || val == 8)
8489 return 1;
8490 else
8491 return 0;
8494 /* Return 1 if OP is valid as a base or index register in a
8495 REG+REG address. */
8498 borx_reg_operand (rtx op, enum machine_mode mode)
8500 if (GET_CODE (op) != REG)
8501 return 0;
8503 /* We must reject virtual registers as the only expressions that
8504 can be instantiated are REG and REG+CONST. */
8505 if (op == virtual_incoming_args_rtx
8506 || op == virtual_stack_vars_rtx
8507 || op == virtual_stack_dynamic_rtx
8508 || op == virtual_outgoing_args_rtx
8509 || op == virtual_cfa_rtx)
8510 return 0;
8512 /* While it's always safe to index off the frame pointer, it's not
8513 profitable to do so when the frame pointer is being eliminated. */
8514 if (!reload_completed
8515 && flag_omit_frame_pointer
8516 && !cfun->calls_alloca
8517 && op == frame_pointer_rtx)
8518 return 0;
8520 return register_operand (op, mode);
8523 /* Return 1 if this operand is anything other than a hard register. */
8526 non_hard_reg_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
8528 return ! (GET_CODE (op) == REG && REGNO (op) < FIRST_PSEUDO_REGISTER);
8531 /* Return 1 if INSN branches forward. Should be using insn_addresses
8532 to avoid walking through all the insns... */
8533 static int
8534 forward_branch_p (rtx insn)
8536 rtx label = JUMP_LABEL (insn);
8538 while (insn)
8540 if (insn == label)
8541 break;
8542 else
8543 insn = NEXT_INSN (insn);
8546 return (insn == label);
8549 /* Return 1 if OP is an equality comparison, else return 0. */
8551 eq_neq_comparison_operator (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
8553 return (GET_CODE (op) == EQ || GET_CODE (op) == NE);
8556 /* Return 1 if INSN is in the delay slot of a call instruction. */
8558 jump_in_call_delay (rtx insn)
8561 if (GET_CODE (insn) != JUMP_INSN)
8562 return 0;
8564 if (PREV_INSN (insn)
8565 && PREV_INSN (PREV_INSN (insn))
8566 && GET_CODE (next_real_insn (PREV_INSN (PREV_INSN (insn)))) == INSN)
8568 rtx test_insn = next_real_insn (PREV_INSN (PREV_INSN (insn)));
8570 return (GET_CODE (PATTERN (test_insn)) == SEQUENCE
8571 && XVECEXP (PATTERN (test_insn), 0, 1) == insn);
8574 else
8575 return 0;
8578 /* Output an unconditional move and branch insn. */
8580 const char *
8581 output_parallel_movb (rtx *operands, rtx insn)
8583 int length = get_attr_length (insn);
8585 /* These are the cases in which we win. */
8586 if (length == 4)
8587 return "mov%I1b,tr %1,%0,%2";
8589 /* None of the following cases win, but they don't lose either. */
8590 if (length == 8)
8592 if (dbr_sequence_length () == 0)
8594 /* Nothing in the delay slot, fake it by putting the combined
8595 insn (the copy or add) in the delay slot of a bl. */
8596 if (GET_CODE (operands[1]) == CONST_INT)
8597 return "b %2\n\tldi %1,%0";
8598 else
8599 return "b %2\n\tcopy %1,%0";
8601 else
8603 /* Something in the delay slot, but we've got a long branch. */
8604 if (GET_CODE (operands[1]) == CONST_INT)
8605 return "ldi %1,%0\n\tb %2";
8606 else
8607 return "copy %1,%0\n\tb %2";
8611 if (GET_CODE (operands[1]) == CONST_INT)
8612 output_asm_insn ("ldi %1,%0", operands);
8613 else
8614 output_asm_insn ("copy %1,%0", operands);
8615 return output_lbranch (operands[2], insn, 1);
8618 /* Output an unconditional add and branch insn. */
8620 const char *
8621 output_parallel_addb (rtx *operands, rtx insn)
8623 int length = get_attr_length (insn);
8625 /* To make life easy we want operand0 to be the shared input/output
8626 operand and operand1 to be the readonly operand. */
8627 if (operands[0] == operands[1])
8628 operands[1] = operands[2];
8630 /* These are the cases in which we win. */
8631 if (length == 4)
8632 return "add%I1b,tr %1,%0,%3";
8634 /* None of the following cases win, but they don't lose either. */
8635 if (length == 8)
8637 if (dbr_sequence_length () == 0)
8638 /* Nothing in the delay slot, fake it by putting the combined
8639 insn (the copy or add) in the delay slot of a bl. */
8640 return "b %3\n\tadd%I1 %1,%0,%0";
8641 else
8642 /* Something in the delay slot, but we've got a long branch. */
8643 return "add%I1 %1,%0,%0\n\tb %3";
8646 output_asm_insn ("add%I1 %1,%0,%0", operands);
8647 return output_lbranch (operands[3], insn, 1);
8650 /* Return nonzero if INSN (a jump insn) immediately follows a call
8651 to a named function. This is used to avoid filling the delay slot
8652 of the jump since it can usually be eliminated by modifying RP in
8653 the delay slot of the call. */
8656 following_call (rtx insn)
8658 if (! TARGET_JUMP_IN_DELAY)
8659 return 0;
8661 /* Find the previous real insn, skipping NOTEs. */
8662 insn = PREV_INSN (insn);
8663 while (insn && GET_CODE (insn) == NOTE)
8664 insn = PREV_INSN (insn);
8666 /* Check for CALL_INSNs and millicode calls. */
8667 if (insn
8668 && ((GET_CODE (insn) == CALL_INSN
8669 && get_attr_type (insn) != TYPE_DYNCALL)
8670 || (GET_CODE (insn) == INSN
8671 && GET_CODE (PATTERN (insn)) != SEQUENCE
8672 && GET_CODE (PATTERN (insn)) != USE
8673 && GET_CODE (PATTERN (insn)) != CLOBBER
8674 && get_attr_type (insn) == TYPE_MILLI)))
8675 return 1;
8677 return 0;
8680 /* We use this hook to perform a PA specific optimization which is difficult
8681 to do in earlier passes.
8683 We want the delay slots of branches within jump tables to be filled.
8684 None of the compiler passes at the moment even has the notion that a
8685 PA jump table doesn't contain addresses, but instead contains actual
8686 instructions!
8688 Because we actually jump into the table, the addresses of each entry
8689 must stay constant in relation to the beginning of the table (which
8690 itself must stay constant relative to the instruction to jump into
8691 it). I don't believe we can guarantee earlier passes of the compiler
8692 will adhere to those rules.
8694 So, late in the compilation process we find all the jump tables, and
8695 expand them into real code -- e.g. each entry in the jump table vector
8696 will get an appropriate label followed by a jump to the final target.
8698 Reorg and the final jump pass can then optimize these branches and
8699 fill their delay slots. We end up with smaller, more efficient code.
8701 The jump instructions within the table are special; we must be able
8702 to identify them during assembly output (if the jumps don't get filled
8703 we need to emit a nop rather than nullifying the delay slot)). We
8704 identify jumps in switch tables by using insns with the attribute
8705 type TYPE_BTABLE_BRANCH.
8707 We also surround the jump table itself with BEGIN_BRTAB and END_BRTAB
8708 insns. This serves two purposes, first it prevents jump.c from
8709 noticing that the last N entries in the table jump to the instruction
8710 immediately after the table and deleting the jumps. Second, those
8711 insns mark where we should emit .begin_brtab and .end_brtab directives
8712 when using GAS (allows for better link time optimizations). */
8714 static void
8715 pa_reorg (void)
8717 rtx insn;
8719 remove_useless_addtr_insns (1);
8721 if (pa_cpu < PROCESSOR_8000)
8722 pa_combine_instructions ();
8725 /* This is fairly cheap, so always run it if optimizing. */
8726 if (optimize > 0 && !TARGET_BIG_SWITCH)
8728 /* Find and explode all ADDR_VEC or ADDR_DIFF_VEC insns. */
8729 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
8731 rtx pattern, tmp, location, label;
8732 unsigned int length, i;
8734 /* Find an ADDR_VEC or ADDR_DIFF_VEC insn to explode. */
8735 if (GET_CODE (insn) != JUMP_INSN
8736 || (GET_CODE (PATTERN (insn)) != ADDR_VEC
8737 && GET_CODE (PATTERN (insn)) != ADDR_DIFF_VEC))
8738 continue;
8740 /* Emit marker for the beginning of the branch table. */
8741 emit_insn_before (gen_begin_brtab (), insn);
8743 pattern = PATTERN (insn);
8744 location = PREV_INSN (insn);
8745 length = XVECLEN (pattern, GET_CODE (pattern) == ADDR_DIFF_VEC);
8747 for (i = 0; i < length; i++)
8749 /* Emit a label before each jump to keep jump.c from
8750 removing this code. */
8751 tmp = gen_label_rtx ();
8752 LABEL_NUSES (tmp) = 1;
8753 emit_label_after (tmp, location);
8754 location = NEXT_INSN (location);
8756 if (GET_CODE (pattern) == ADDR_VEC)
8757 label = XEXP (XVECEXP (pattern, 0, i), 0);
8758 else
8759 label = XEXP (XVECEXP (pattern, 1, i), 0);
8761 tmp = gen_short_jump (label);
8763 /* Emit the jump itself. */
8764 tmp = emit_jump_insn_after (tmp, location);
8765 JUMP_LABEL (tmp) = label;
8766 LABEL_NUSES (label)++;
8767 location = NEXT_INSN (location);
8769 /* Emit a BARRIER after the jump. */
8770 emit_barrier_after (location);
8771 location = NEXT_INSN (location);
8774 /* Emit marker for the end of the branch table. */
8775 emit_insn_before (gen_end_brtab (), location);
8776 location = NEXT_INSN (location);
8777 emit_barrier_after (location);
8779 /* Delete the ADDR_VEC or ADDR_DIFF_VEC. */
8780 delete_insn (insn);
8783 else
8785 /* Still need brtab marker insns. FIXME: the presence of these
8786 markers disables output of the branch table to readonly memory,
8787 and any alignment directives that might be needed. Possibly,
8788 the begin_brtab insn should be output before the label for the
8789 table. This doesn't matter at the moment since the tables are
8790 always output in the text section. */
8791 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
8793 /* Find an ADDR_VEC insn. */
8794 if (GET_CODE (insn) != JUMP_INSN
8795 || (GET_CODE (PATTERN (insn)) != ADDR_VEC
8796 && GET_CODE (PATTERN (insn)) != ADDR_DIFF_VEC))
8797 continue;
8799 /* Now generate markers for the beginning and end of the
8800 branch table. */
8801 emit_insn_before (gen_begin_brtab (), insn);
8802 emit_insn_after (gen_end_brtab (), insn);
8807 /* The PA has a number of odd instructions which can perform multiple
8808 tasks at once. On first generation PA machines (PA1.0 and PA1.1)
8809 it may be profitable to combine two instructions into one instruction
8810 with two outputs. It's not profitable PA2.0 machines because the
8811 two outputs would take two slots in the reorder buffers.
8813 This routine finds instructions which can be combined and combines
8814 them. We only support some of the potential combinations, and we
8815 only try common ways to find suitable instructions.
8817 * addb can add two registers or a register and a small integer
8818 and jump to a nearby (+-8k) location. Normally the jump to the
8819 nearby location is conditional on the result of the add, but by
8820 using the "true" condition we can make the jump unconditional.
8821 Thus addb can perform two independent operations in one insn.
8823 * movb is similar to addb in that it can perform a reg->reg
8824 or small immediate->reg copy and jump to a nearby (+-8k location).
8826 * fmpyadd and fmpysub can perform a FP multiply and either an
8827 FP add or FP sub if the operands of the multiply and add/sub are
8828 independent (there are other minor restrictions). Note both
8829 the fmpy and fadd/fsub can in theory move to better spots according
8830 to data dependencies, but for now we require the fmpy stay at a
8831 fixed location.
8833 * Many of the memory operations can perform pre & post updates
8834 of index registers. GCC's pre/post increment/decrement addressing
8835 is far too simple to take advantage of all the possibilities. This
8836 pass may not be suitable since those insns may not be independent.
8838 * comclr can compare two ints or an int and a register, nullify
8839 the following instruction and zero some other register. This
8840 is more difficult to use as it's harder to find an insn which
8841 will generate a comclr than finding something like an unconditional
8842 branch. (conditional moves & long branches create comclr insns).
8844 * Most arithmetic operations can conditionally skip the next
8845 instruction. They can be viewed as "perform this operation
8846 and conditionally jump to this nearby location" (where nearby
8847 is an insns away). These are difficult to use due to the
8848 branch length restrictions. */
8850 static void
8851 pa_combine_instructions (void)
8853 rtx anchor, new_rtx;
8855 /* This can get expensive since the basic algorithm is on the
8856 order of O(n^2) (or worse). Only do it for -O2 or higher
8857 levels of optimization. */
8858 if (optimize < 2)
8859 return;
8861 /* Walk down the list of insns looking for "anchor" insns which
8862 may be combined with "floating" insns. As the name implies,
8863 "anchor" instructions don't move, while "floating" insns may
8864 move around. */
8865 new_rtx = gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, NULL_RTX, NULL_RTX));
8866 new_rtx = make_insn_raw (new_rtx);
8868 for (anchor = get_insns (); anchor; anchor = NEXT_INSN (anchor))
8870 enum attr_pa_combine_type anchor_attr;
8871 enum attr_pa_combine_type floater_attr;
8873 /* We only care about INSNs, JUMP_INSNs, and CALL_INSNs.
8874 Also ignore any special USE insns. */
8875 if ((GET_CODE (anchor) != INSN
8876 && GET_CODE (anchor) != JUMP_INSN
8877 && GET_CODE (anchor) != CALL_INSN)
8878 || GET_CODE (PATTERN (anchor)) == USE
8879 || GET_CODE (PATTERN (anchor)) == CLOBBER
8880 || GET_CODE (PATTERN (anchor)) == ADDR_VEC
8881 || GET_CODE (PATTERN (anchor)) == ADDR_DIFF_VEC)
8882 continue;
8884 anchor_attr = get_attr_pa_combine_type (anchor);
8885 /* See if anchor is an insn suitable for combination. */
8886 if (anchor_attr == PA_COMBINE_TYPE_FMPY
8887 || anchor_attr == PA_COMBINE_TYPE_FADDSUB
8888 || (anchor_attr == PA_COMBINE_TYPE_UNCOND_BRANCH
8889 && ! forward_branch_p (anchor)))
8891 rtx floater;
8893 for (floater = PREV_INSN (anchor);
8894 floater;
8895 floater = PREV_INSN (floater))
8897 if (GET_CODE (floater) == NOTE
8898 || (GET_CODE (floater) == INSN
8899 && (GET_CODE (PATTERN (floater)) == USE
8900 || GET_CODE (PATTERN (floater)) == CLOBBER)))
8901 continue;
8903 /* Anything except a regular INSN will stop our search. */
8904 if (GET_CODE (floater) != INSN
8905 || GET_CODE (PATTERN (floater)) == ADDR_VEC
8906 || GET_CODE (PATTERN (floater)) == ADDR_DIFF_VEC)
8908 floater = NULL_RTX;
8909 break;
8912 /* See if FLOATER is suitable for combination with the
8913 anchor. */
8914 floater_attr = get_attr_pa_combine_type (floater);
8915 if ((anchor_attr == PA_COMBINE_TYPE_FMPY
8916 && floater_attr == PA_COMBINE_TYPE_FADDSUB)
8917 || (anchor_attr == PA_COMBINE_TYPE_FADDSUB
8918 && floater_attr == PA_COMBINE_TYPE_FMPY))
8920 /* If ANCHOR and FLOATER can be combined, then we're
8921 done with this pass. */
8922 if (pa_can_combine_p (new_rtx, anchor, floater, 0,
8923 SET_DEST (PATTERN (floater)),
8924 XEXP (SET_SRC (PATTERN (floater)), 0),
8925 XEXP (SET_SRC (PATTERN (floater)), 1)))
8926 break;
8929 else if (anchor_attr == PA_COMBINE_TYPE_UNCOND_BRANCH
8930 && floater_attr == PA_COMBINE_TYPE_ADDMOVE)
8932 if (GET_CODE (SET_SRC (PATTERN (floater))) == PLUS)
8934 if (pa_can_combine_p (new_rtx, anchor, floater, 0,
8935 SET_DEST (PATTERN (floater)),
8936 XEXP (SET_SRC (PATTERN (floater)), 0),
8937 XEXP (SET_SRC (PATTERN (floater)), 1)))
8938 break;
8940 else
8942 if (pa_can_combine_p (new_rtx, anchor, floater, 0,
8943 SET_DEST (PATTERN (floater)),
8944 SET_SRC (PATTERN (floater)),
8945 SET_SRC (PATTERN (floater))))
8946 break;
8951 /* If we didn't find anything on the backwards scan try forwards. */
8952 if (!floater
8953 && (anchor_attr == PA_COMBINE_TYPE_FMPY
8954 || anchor_attr == PA_COMBINE_TYPE_FADDSUB))
8956 for (floater = anchor; floater; floater = NEXT_INSN (floater))
8958 if (GET_CODE (floater) == NOTE
8959 || (GET_CODE (floater) == INSN
8960 && (GET_CODE (PATTERN (floater)) == USE
8961 || GET_CODE (PATTERN (floater)) == CLOBBER)))
8963 continue;
8965 /* Anything except a regular INSN will stop our search. */
8966 if (GET_CODE (floater) != INSN
8967 || GET_CODE (PATTERN (floater)) == ADDR_VEC
8968 || GET_CODE (PATTERN (floater)) == ADDR_DIFF_VEC)
8970 floater = NULL_RTX;
8971 break;
8974 /* See if FLOATER is suitable for combination with the
8975 anchor. */
8976 floater_attr = get_attr_pa_combine_type (floater);
8977 if ((anchor_attr == PA_COMBINE_TYPE_FMPY
8978 && floater_attr == PA_COMBINE_TYPE_FADDSUB)
8979 || (anchor_attr == PA_COMBINE_TYPE_FADDSUB
8980 && floater_attr == PA_COMBINE_TYPE_FMPY))
8982 /* If ANCHOR and FLOATER can be combined, then we're
8983 done with this pass. */
8984 if (pa_can_combine_p (new_rtx, anchor, floater, 1,
8985 SET_DEST (PATTERN (floater)),
8986 XEXP (SET_SRC (PATTERN (floater)),
8988 XEXP (SET_SRC (PATTERN (floater)),
8989 1)))
8990 break;
8995 /* FLOATER will be nonzero if we found a suitable floating
8996 insn for combination with ANCHOR. */
8997 if (floater
8998 && (anchor_attr == PA_COMBINE_TYPE_FADDSUB
8999 || anchor_attr == PA_COMBINE_TYPE_FMPY))
9001 /* Emit the new instruction and delete the old anchor. */
9002 emit_insn_before (gen_rtx_PARALLEL
9003 (VOIDmode,
9004 gen_rtvec (2, PATTERN (anchor),
9005 PATTERN (floater))),
9006 anchor);
9008 SET_INSN_DELETED (anchor);
9010 /* Emit a special USE insn for FLOATER, then delete
9011 the floating insn. */
9012 emit_insn_before (gen_rtx_USE (VOIDmode, floater), floater);
9013 delete_insn (floater);
9015 continue;
9017 else if (floater
9018 && anchor_attr == PA_COMBINE_TYPE_UNCOND_BRANCH)
9020 rtx temp;
9021 /* Emit the new_jump instruction and delete the old anchor. */
9022 temp
9023 = emit_jump_insn_before (gen_rtx_PARALLEL
9024 (VOIDmode,
9025 gen_rtvec (2, PATTERN (anchor),
9026 PATTERN (floater))),
9027 anchor);
9029 JUMP_LABEL (temp) = JUMP_LABEL (anchor);
9030 SET_INSN_DELETED (anchor);
9032 /* Emit a special USE insn for FLOATER, then delete
9033 the floating insn. */
9034 emit_insn_before (gen_rtx_USE (VOIDmode, floater), floater);
9035 delete_insn (floater);
9036 continue;
9042 static int
9043 pa_can_combine_p (rtx new_rtx, rtx anchor, rtx floater, int reversed, rtx dest,
9044 rtx src1, rtx src2)
9046 int insn_code_number;
9047 rtx start, end;
9049 /* Create a PARALLEL with the patterns of ANCHOR and
9050 FLOATER, try to recognize it, then test constraints
9051 for the resulting pattern.
9053 If the pattern doesn't match or the constraints
9054 aren't met keep searching for a suitable floater
9055 insn. */
9056 XVECEXP (PATTERN (new_rtx), 0, 0) = PATTERN (anchor);
9057 XVECEXP (PATTERN (new_rtx), 0, 1) = PATTERN (floater);
9058 INSN_CODE (new_rtx) = -1;
9059 insn_code_number = recog_memoized (new_rtx);
9060 if (insn_code_number < 0
9061 || (extract_insn (new_rtx), ! constrain_operands (1)))
9062 return 0;
9064 if (reversed)
9066 start = anchor;
9067 end = floater;
9069 else
9071 start = floater;
9072 end = anchor;
9075 /* There's up to three operands to consider. One
9076 output and two inputs.
9078 The output must not be used between FLOATER & ANCHOR
9079 exclusive. The inputs must not be set between
9080 FLOATER and ANCHOR exclusive. */
9082 if (reg_used_between_p (dest, start, end))
9083 return 0;
9085 if (reg_set_between_p (src1, start, end))
9086 return 0;
9088 if (reg_set_between_p (src2, start, end))
9089 return 0;
9091 /* If we get here, then everything is good. */
9092 return 1;
9095 /* Return nonzero if references for INSN are delayed.
9097 Millicode insns are actually function calls with some special
9098 constraints on arguments and register usage.
9100 Millicode calls always expect their arguments in the integer argument
9101 registers, and always return their result in %r29 (ret1). They
9102 are expected to clobber their arguments, %r1, %r29, and the return
9103 pointer which is %r31 on 32-bit and %r2 on 64-bit, and nothing else.
9105 This function tells reorg that the references to arguments and
9106 millicode calls do not appear to happen until after the millicode call.
9107 This allows reorg to put insns which set the argument registers into the
9108 delay slot of the millicode call -- thus they act more like traditional
9109 CALL_INSNs.
9111 Note we cannot consider side effects of the insn to be delayed because
9112 the branch and link insn will clobber the return pointer. If we happened
9113 to use the return pointer in the delay slot of the call, then we lose.
9115 get_attr_type will try to recognize the given insn, so make sure to
9116 filter out things it will not accept -- SEQUENCE, USE and CLOBBER insns
9117 in particular. */
9119 insn_refs_are_delayed (rtx insn)
9121 return ((GET_CODE (insn) == INSN
9122 && GET_CODE (PATTERN (insn)) != SEQUENCE
9123 && GET_CODE (PATTERN (insn)) != USE
9124 && GET_CODE (PATTERN (insn)) != CLOBBER
9125 && get_attr_type (insn) == TYPE_MILLI));
9128 /* On the HP-PA the value is found in register(s) 28(-29), unless
9129 the mode is SF or DF. Then the value is returned in fr4 (32).
9131 This must perform the same promotions as PROMOTE_MODE, else
9132 TARGET_PROMOTE_FUNCTION_RETURN will not work correctly.
9134 Small structures must be returned in a PARALLEL on PA64 in order
9135 to match the HP Compiler ABI. */
9138 function_value (const_tree valtype, const_tree func ATTRIBUTE_UNUSED)
9140 enum machine_mode valmode;
9142 if (AGGREGATE_TYPE_P (valtype)
9143 || TREE_CODE (valtype) == COMPLEX_TYPE
9144 || TREE_CODE (valtype) == VECTOR_TYPE)
9146 if (TARGET_64BIT)
9148 /* Aggregates with a size less than or equal to 128 bits are
9149 returned in GR 28(-29). They are left justified. The pad
9150 bits are undefined. Larger aggregates are returned in
9151 memory. */
9152 rtx loc[2];
9153 int i, offset = 0;
9154 int ub = int_size_in_bytes (valtype) <= UNITS_PER_WORD ? 1 : 2;
9156 for (i = 0; i < ub; i++)
9158 loc[i] = gen_rtx_EXPR_LIST (VOIDmode,
9159 gen_rtx_REG (DImode, 28 + i),
9160 GEN_INT (offset));
9161 offset += 8;
9164 return gen_rtx_PARALLEL (BLKmode, gen_rtvec_v (ub, loc));
9166 else if (int_size_in_bytes (valtype) > UNITS_PER_WORD)
9168 /* Aggregates 5 to 8 bytes in size are returned in general
9169 registers r28-r29 in the same manner as other non
9170 floating-point objects. The data is right-justified and
9171 zero-extended to 64 bits. This is opposite to the normal
9172 justification used on big endian targets and requires
9173 special treatment. */
9174 rtx loc = gen_rtx_EXPR_LIST (VOIDmode,
9175 gen_rtx_REG (DImode, 28), const0_rtx);
9176 return gen_rtx_PARALLEL (BLKmode, gen_rtvec (1, loc));
9180 if ((INTEGRAL_TYPE_P (valtype)
9181 && GET_MODE_BITSIZE (TYPE_MODE (valtype)) < BITS_PER_WORD)
9182 || POINTER_TYPE_P (valtype))
9183 valmode = word_mode;
9184 else
9185 valmode = TYPE_MODE (valtype);
9187 if (TREE_CODE (valtype) == REAL_TYPE
9188 && !AGGREGATE_TYPE_P (valtype)
9189 && TYPE_MODE (valtype) != TFmode
9190 && !TARGET_SOFT_FLOAT)
9191 return gen_rtx_REG (valmode, 32);
9193 return gen_rtx_REG (valmode, 28);
9196 /* Return the location of a parameter that is passed in a register or NULL
9197 if the parameter has any component that is passed in memory.
9199 This is new code and will be pushed to into the net sources after
9200 further testing.
9202 ??? We might want to restructure this so that it looks more like other
9203 ports. */
9205 function_arg (CUMULATIVE_ARGS *cum, enum machine_mode mode, tree type,
9206 int named ATTRIBUTE_UNUSED)
9208 int max_arg_words = (TARGET_64BIT ? 8 : 4);
9209 int alignment = 0;
9210 int arg_size;
9211 int fpr_reg_base;
9212 int gpr_reg_base;
9213 rtx retval;
9215 if (mode == VOIDmode)
9216 return NULL_RTX;
9218 arg_size = FUNCTION_ARG_SIZE (mode, type);
9220 /* If this arg would be passed partially or totally on the stack, then
9221 this routine should return zero. pa_arg_partial_bytes will
9222 handle arguments which are split between regs and stack slots if
9223 the ABI mandates split arguments. */
9224 if (!TARGET_64BIT)
9226 /* The 32-bit ABI does not split arguments. */
9227 if (cum->words + arg_size > max_arg_words)
9228 return NULL_RTX;
9230 else
9232 if (arg_size > 1)
9233 alignment = cum->words & 1;
9234 if (cum->words + alignment >= max_arg_words)
9235 return NULL_RTX;
9238 /* The 32bit ABIs and the 64bit ABIs are rather different,
9239 particularly in their handling of FP registers. We might
9240 be able to cleverly share code between them, but I'm not
9241 going to bother in the hope that splitting them up results
9242 in code that is more easily understood. */
9244 if (TARGET_64BIT)
9246 /* Advance the base registers to their current locations.
9248 Remember, gprs grow towards smaller register numbers while
9249 fprs grow to higher register numbers. Also remember that
9250 although FP regs are 32-bit addressable, we pretend that
9251 the registers are 64-bits wide. */
9252 gpr_reg_base = 26 - cum->words;
9253 fpr_reg_base = 32 + cum->words;
9255 /* Arguments wider than one word and small aggregates need special
9256 treatment. */
9257 if (arg_size > 1
9258 || mode == BLKmode
9259 || (type && (AGGREGATE_TYPE_P (type)
9260 || TREE_CODE (type) == COMPLEX_TYPE
9261 || TREE_CODE (type) == VECTOR_TYPE)))
9263 /* Double-extended precision (80-bit), quad-precision (128-bit)
9264 and aggregates including complex numbers are aligned on
9265 128-bit boundaries. The first eight 64-bit argument slots
9266 are associated one-to-one, with general registers r26
9267 through r19, and also with floating-point registers fr4
9268 through fr11. Arguments larger than one word are always
9269 passed in general registers.
9271 Using a PARALLEL with a word mode register results in left
9272 justified data on a big-endian target. */
9274 rtx loc[8];
9275 int i, offset = 0, ub = arg_size;
9277 /* Align the base register. */
9278 gpr_reg_base -= alignment;
9280 ub = MIN (ub, max_arg_words - cum->words - alignment);
9281 for (i = 0; i < ub; i++)
9283 loc[i] = gen_rtx_EXPR_LIST (VOIDmode,
9284 gen_rtx_REG (DImode, gpr_reg_base),
9285 GEN_INT (offset));
9286 gpr_reg_base -= 1;
9287 offset += 8;
9290 return gen_rtx_PARALLEL (mode, gen_rtvec_v (ub, loc));
9293 else
9295 /* If the argument is larger than a word, then we know precisely
9296 which registers we must use. */
9297 if (arg_size > 1)
9299 if (cum->words)
9301 gpr_reg_base = 23;
9302 fpr_reg_base = 38;
9304 else
9306 gpr_reg_base = 25;
9307 fpr_reg_base = 34;
9310 /* Structures 5 to 8 bytes in size are passed in the general
9311 registers in the same manner as other non floating-point
9312 objects. The data is right-justified and zero-extended
9313 to 64 bits. This is opposite to the normal justification
9314 used on big endian targets and requires special treatment.
9315 We now define BLOCK_REG_PADDING to pad these objects.
9316 Aggregates, complex and vector types are passed in the same
9317 manner as structures. */
9318 if (mode == BLKmode
9319 || (type && (AGGREGATE_TYPE_P (type)
9320 || TREE_CODE (type) == COMPLEX_TYPE
9321 || TREE_CODE (type) == VECTOR_TYPE)))
9323 rtx loc = gen_rtx_EXPR_LIST (VOIDmode,
9324 gen_rtx_REG (DImode, gpr_reg_base),
9325 const0_rtx);
9326 return gen_rtx_PARALLEL (BLKmode, gen_rtvec (1, loc));
9329 else
9331 /* We have a single word (32 bits). A simple computation
9332 will get us the register #s we need. */
9333 gpr_reg_base = 26 - cum->words;
9334 fpr_reg_base = 32 + 2 * cum->words;
9338 /* Determine if the argument needs to be passed in both general and
9339 floating point registers. */
9340 if (((TARGET_PORTABLE_RUNTIME || TARGET_64BIT || TARGET_ELF32)
9341 /* If we are doing soft-float with portable runtime, then there
9342 is no need to worry about FP regs. */
9343 && !TARGET_SOFT_FLOAT
9344 /* The parameter must be some kind of scalar float, else we just
9345 pass it in integer registers. */
9346 && GET_MODE_CLASS (mode) == MODE_FLOAT
9347 /* The target function must not have a prototype. */
9348 && cum->nargs_prototype <= 0
9349 /* libcalls do not need to pass items in both FP and general
9350 registers. */
9351 && type != NULL_TREE
9352 /* All this hair applies to "outgoing" args only. This includes
9353 sibcall arguments setup with FUNCTION_INCOMING_ARG. */
9354 && !cum->incoming)
9355 /* Also pass outgoing floating arguments in both registers in indirect
9356 calls with the 32 bit ABI and the HP assembler since there is no
9357 way to the specify argument locations in static functions. */
9358 || (!TARGET_64BIT
9359 && !TARGET_GAS
9360 && !cum->incoming
9361 && cum->indirect
9362 && GET_MODE_CLASS (mode) == MODE_FLOAT))
9364 retval
9365 = gen_rtx_PARALLEL
9366 (mode,
9367 gen_rtvec (2,
9368 gen_rtx_EXPR_LIST (VOIDmode,
9369 gen_rtx_REG (mode, fpr_reg_base),
9370 const0_rtx),
9371 gen_rtx_EXPR_LIST (VOIDmode,
9372 gen_rtx_REG (mode, gpr_reg_base),
9373 const0_rtx)));
9375 else
9377 /* See if we should pass this parameter in a general register. */
9378 if (TARGET_SOFT_FLOAT
9379 /* Indirect calls in the normal 32bit ABI require all arguments
9380 to be passed in general registers. */
9381 || (!TARGET_PORTABLE_RUNTIME
9382 && !TARGET_64BIT
9383 && !TARGET_ELF32
9384 && cum->indirect)
9385 /* If the parameter is not a scalar floating-point parameter,
9386 then it belongs in GPRs. */
9387 || GET_MODE_CLASS (mode) != MODE_FLOAT
9388 /* Structure with single SFmode field belongs in GPR. */
9389 || (type && AGGREGATE_TYPE_P (type)))
9390 retval = gen_rtx_REG (mode, gpr_reg_base);
9391 else
9392 retval = gen_rtx_REG (mode, fpr_reg_base);
9394 return retval;
9398 /* If this arg would be passed totally in registers or totally on the stack,
9399 then this routine should return zero. */
9401 static int
9402 pa_arg_partial_bytes (CUMULATIVE_ARGS *cum, enum machine_mode mode,
9403 tree type, bool named ATTRIBUTE_UNUSED)
9405 unsigned int max_arg_words = 8;
9406 unsigned int offset = 0;
9408 if (!TARGET_64BIT)
9409 return 0;
9411 if (FUNCTION_ARG_SIZE (mode, type) > 1 && (cum->words & 1))
9412 offset = 1;
9414 if (cum->words + offset + FUNCTION_ARG_SIZE (mode, type) <= max_arg_words)
9415 /* Arg fits fully into registers. */
9416 return 0;
9417 else if (cum->words + offset >= max_arg_words)
9418 /* Arg fully on the stack. */
9419 return 0;
9420 else
9421 /* Arg is split. */
9422 return (max_arg_words - cum->words - offset) * UNITS_PER_WORD;
9426 /* A get_unnamed_section callback for switching to the text section.
9428 This function is only used with SOM. Because we don't support
9429 named subspaces, we can only create a new subspace or switch back
9430 to the default text subspace. */
9432 static void
9433 som_output_text_section_asm_op (const void *data ATTRIBUTE_UNUSED)
9435 gcc_assert (TARGET_SOM);
9436 if (TARGET_GAS)
9438 if (cfun && cfun->machine && !cfun->machine->in_nsubspa)
9440 /* We only want to emit a .nsubspa directive once at the
9441 start of the function. */
9442 cfun->machine->in_nsubspa = 1;
9444 /* Create a new subspace for the text. This provides
9445 better stub placement and one-only functions. */
9446 if (cfun->decl
9447 && DECL_ONE_ONLY (cfun->decl)
9448 && !DECL_WEAK (cfun->decl))
9450 output_section_asm_op ("\t.SPACE $TEXT$\n"
9451 "\t.NSUBSPA $CODE$,QUAD=0,ALIGN=8,"
9452 "ACCESS=44,SORT=24,COMDAT");
9453 return;
9456 else
9458 /* There isn't a current function or the body of the current
9459 function has been completed. So, we are changing to the
9460 text section to output debugging information. Thus, we
9461 need to forget that we are in the text section so that
9462 varasm.c will call us when text_section is selected again. */
9463 gcc_assert (!cfun || !cfun->machine
9464 || cfun->machine->in_nsubspa == 2);
9465 in_section = NULL;
9467 output_section_asm_op ("\t.SPACE $TEXT$\n\t.NSUBSPA $CODE$");
9468 return;
9470 output_section_asm_op ("\t.SPACE $TEXT$\n\t.SUBSPA $CODE$");
9473 /* A get_unnamed_section callback for switching to comdat data
9474 sections. This function is only used with SOM. */
9476 static void
9477 som_output_comdat_data_section_asm_op (const void *data)
9479 in_section = NULL;
9480 output_section_asm_op (data);
9483 /* Implement TARGET_ASM_INITIALIZE_SECTIONS */
9485 static void
9486 pa_som_asm_init_sections (void)
9488 text_section
9489 = get_unnamed_section (0, som_output_text_section_asm_op, NULL);
9491 /* SOM puts readonly data in the default $LIT$ subspace when PIC code
9492 is not being generated. */
9493 som_readonly_data_section
9494 = get_unnamed_section (0, output_section_asm_op,
9495 "\t.SPACE $TEXT$\n\t.SUBSPA $LIT$");
9497 /* When secondary definitions are not supported, SOM makes readonly
9498 data one-only by creating a new $LIT$ subspace in $TEXT$ with
9499 the comdat flag. */
9500 som_one_only_readonly_data_section
9501 = get_unnamed_section (0, som_output_comdat_data_section_asm_op,
9502 "\t.SPACE $TEXT$\n"
9503 "\t.NSUBSPA $LIT$,QUAD=0,ALIGN=8,"
9504 "ACCESS=0x2c,SORT=16,COMDAT");
9507 /* When secondary definitions are not supported, SOM makes data one-only
9508 by creating a new $DATA$ subspace in $PRIVATE$ with the comdat flag. */
9509 som_one_only_data_section
9510 = get_unnamed_section (SECTION_WRITE,
9511 som_output_comdat_data_section_asm_op,
9512 "\t.SPACE $PRIVATE$\n"
9513 "\t.NSUBSPA $DATA$,QUAD=1,ALIGN=8,"
9514 "ACCESS=31,SORT=24,COMDAT");
9516 /* FIXME: HPUX ld generates incorrect GOT entries for "T" fixups
9517 which reference data within the $TEXT$ space (for example constant
9518 strings in the $LIT$ subspace).
9520 The assemblers (GAS and HP as) both have problems with handling
9521 the difference of two symbols which is the other correct way to
9522 reference constant data during PIC code generation.
9524 So, there's no way to reference constant data which is in the
9525 $TEXT$ space during PIC generation. Instead place all constant
9526 data into the $PRIVATE$ subspace (this reduces sharing, but it
9527 works correctly). */
9528 readonly_data_section = flag_pic ? data_section : som_readonly_data_section;
9530 /* We must not have a reference to an external symbol defined in a
9531 shared library in a readonly section, else the SOM linker will
9532 complain.
9534 So, we force exception information into the data section. */
9535 exception_section = data_section;
9538 /* On hpux10, the linker will give an error if we have a reference
9539 in the read-only data section to a symbol defined in a shared
9540 library. Therefore, expressions that might require a reloc can
9541 not be placed in the read-only data section. */
9543 static section *
9544 pa_select_section (tree exp, int reloc,
9545 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
9547 if (TREE_CODE (exp) == VAR_DECL
9548 && TREE_READONLY (exp)
9549 && !TREE_THIS_VOLATILE (exp)
9550 && DECL_INITIAL (exp)
9551 && (DECL_INITIAL (exp) == error_mark_node
9552 || TREE_CONSTANT (DECL_INITIAL (exp)))
9553 && !reloc)
9555 if (TARGET_SOM
9556 && DECL_ONE_ONLY (exp)
9557 && !DECL_WEAK (exp))
9558 return som_one_only_readonly_data_section;
9559 else
9560 return readonly_data_section;
9562 else if (CONSTANT_CLASS_P (exp) && !reloc)
9563 return readonly_data_section;
9564 else if (TARGET_SOM
9565 && TREE_CODE (exp) == VAR_DECL
9566 && DECL_ONE_ONLY (exp)
9567 && !DECL_WEAK (exp))
9568 return som_one_only_data_section;
9569 else
9570 return data_section;
9573 static void
9574 pa_globalize_label (FILE *stream, const char *name)
9576 /* We only handle DATA objects here, functions are globalized in
9577 ASM_DECLARE_FUNCTION_NAME. */
9578 if (! FUNCTION_NAME_P (name))
9580 fputs ("\t.EXPORT ", stream);
9581 assemble_name (stream, name);
9582 fputs (",DATA\n", stream);
9586 /* Worker function for TARGET_STRUCT_VALUE_RTX. */
9588 static rtx
9589 pa_struct_value_rtx (tree fntype ATTRIBUTE_UNUSED,
9590 int incoming ATTRIBUTE_UNUSED)
9592 return gen_rtx_REG (Pmode, PA_STRUCT_VALUE_REGNUM);
9595 /* Worker function for TARGET_RETURN_IN_MEMORY. */
9597 bool
9598 pa_return_in_memory (const_tree type, const_tree fntype ATTRIBUTE_UNUSED)
9600 /* SOM ABI says that objects larger than 64 bits are returned in memory.
9601 PA64 ABI says that objects larger than 128 bits are returned in memory.
9602 Note, int_size_in_bytes can return -1 if the size of the object is
9603 variable or larger than the maximum value that can be expressed as
9604 a HOST_WIDE_INT. It can also return zero for an empty type. The
9605 simplest way to handle variable and empty types is to pass them in
9606 memory. This avoids problems in defining the boundaries of argument
9607 slots, allocating registers, etc. */
9608 return (int_size_in_bytes (type) > (TARGET_64BIT ? 16 : 8)
9609 || int_size_in_bytes (type) <= 0);
9612 /* Structure to hold declaration and name of external symbols that are
9613 emitted by GCC. We generate a vector of these symbols and output them
9614 at the end of the file if and only if SYMBOL_REF_REFERENCED_P is true.
9615 This avoids putting out names that are never really used. */
9617 typedef struct extern_symbol GTY(())
9619 tree decl;
9620 const char *name;
9621 } extern_symbol;
9623 /* Define gc'd vector type for extern_symbol. */
9624 DEF_VEC_O(extern_symbol);
9625 DEF_VEC_ALLOC_O(extern_symbol,gc);
9627 /* Vector of extern_symbol pointers. */
9628 static GTY(()) VEC(extern_symbol,gc) *extern_symbols;
9630 #ifdef ASM_OUTPUT_EXTERNAL_REAL
9631 /* Mark DECL (name NAME) as an external reference (assembler output
9632 file FILE). This saves the names to output at the end of the file
9633 if actually referenced. */
9635 void
9636 pa_hpux_asm_output_external (FILE *file, tree decl, const char *name)
9638 extern_symbol * p = VEC_safe_push (extern_symbol, gc, extern_symbols, NULL);
9640 gcc_assert (file == asm_out_file);
9641 p->decl = decl;
9642 p->name = name;
9645 /* Output text required at the end of an assembler file.
9646 This includes deferred plabels and .import directives for
9647 all external symbols that were actually referenced. */
9649 static void
9650 pa_hpux_file_end (void)
9652 unsigned int i;
9653 extern_symbol *p;
9655 if (!NO_DEFERRED_PROFILE_COUNTERS)
9656 output_deferred_profile_counters ();
9658 output_deferred_plabels ();
9660 for (i = 0; VEC_iterate (extern_symbol, extern_symbols, i, p); i++)
9662 tree decl = p->decl;
9664 if (!TREE_ASM_WRITTEN (decl)
9665 && SYMBOL_REF_REFERENCED_P (XEXP (DECL_RTL (decl), 0)))
9666 ASM_OUTPUT_EXTERNAL_REAL (asm_out_file, decl, p->name);
9669 VEC_free (extern_symbol, gc, extern_symbols);
9671 #endif
9673 /* Return true if a change from mode FROM to mode TO for a register
9674 in register class RCLASS is invalid. */
9676 bool
9677 pa_cannot_change_mode_class (enum machine_mode from, enum machine_mode to,
9678 enum reg_class rclass)
9680 if (from == to)
9681 return false;
9683 /* Reject changes to/from complex and vector modes. */
9684 if (COMPLEX_MODE_P (from) || VECTOR_MODE_P (from)
9685 || COMPLEX_MODE_P (to) || VECTOR_MODE_P (to))
9686 return true;
9688 if (GET_MODE_SIZE (from) == GET_MODE_SIZE (to))
9689 return false;
9691 /* There is no way to load QImode or HImode values directly from
9692 memory. SImode loads to the FP registers are not zero extended.
9693 On the 64-bit target, this conflicts with the definition of
9694 LOAD_EXTEND_OP. Thus, we can't allow changing between modes
9695 with different sizes in the floating-point registers. */
9696 if (MAYBE_FP_REG_CLASS_P (rclass))
9697 return true;
9699 /* HARD_REGNO_MODE_OK places modes with sizes larger than a word
9700 in specific sets of registers. Thus, we cannot allow changing
9701 to a larger mode when it's larger than a word. */
9702 if (GET_MODE_SIZE (to) > UNITS_PER_WORD
9703 && GET_MODE_SIZE (to) > GET_MODE_SIZE (from))
9704 return true;
9706 return false;
9709 /* Returns TRUE if it is a good idea to tie two pseudo registers
9710 when one has mode MODE1 and one has mode MODE2.
9711 If HARD_REGNO_MODE_OK could produce different values for MODE1 and MODE2,
9712 for any hard reg, then this must be FALSE for correct output.
9714 We should return FALSE for QImode and HImode because these modes
9715 are not ok in the floating-point registers. However, this prevents
9716 tieing these modes to SImode and DImode in the general registers.
9717 So, this isn't a good idea. We rely on HARD_REGNO_MODE_OK and
9718 CANNOT_CHANGE_MODE_CLASS to prevent these modes from being used
9719 in the floating-point registers. */
9721 bool
9722 pa_modes_tieable_p (enum machine_mode mode1, enum machine_mode mode2)
9724 /* Don't tie modes in different classes. */
9725 if (GET_MODE_CLASS (mode1) != GET_MODE_CLASS (mode2))
9726 return false;
9728 return true;
9731 #include "gt-pa.h"