* config/darwin-c.c, config/arc/arc.c, config/arc/arc.md,
[official-gcc.git] / gcc / config / pa / pa.c
bloba4edfeb19cb61bfeb8a2f51a7605eb504845b810
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 Free Software Foundation, Inc.
4 Contributed by Tim Moore (moore@cs.utah.edu), based on sparc.c
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
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"
51 /* Return nonzero if there is a bypass for the output of
52 OUT_INSN and the fp store IN_INSN. */
53 int
54 hppa_fpstore_bypass_p (rtx out_insn, rtx in_insn)
56 enum machine_mode store_mode;
57 enum machine_mode other_mode;
58 rtx set;
60 if (recog_memoized (in_insn) < 0
61 || get_attr_type (in_insn) != TYPE_FPSTORE
62 || recog_memoized (out_insn) < 0)
63 return 0;
65 store_mode = GET_MODE (SET_SRC (PATTERN (in_insn)));
67 set = single_set (out_insn);
68 if (!set)
69 return 0;
71 other_mode = GET_MODE (SET_SRC (set));
73 return (GET_MODE_SIZE (store_mode) == GET_MODE_SIZE (other_mode));
77 #ifndef DO_FRAME_NOTES
78 #ifdef INCOMING_RETURN_ADDR_RTX
79 #define DO_FRAME_NOTES 1
80 #else
81 #define DO_FRAME_NOTES 0
82 #endif
83 #endif
85 static void copy_reg_pointer (rtx, rtx);
86 static void fix_range (const char *);
87 static int hppa_address_cost (rtx);
88 static bool hppa_rtx_costs (rtx, int, int, int *);
89 static inline rtx force_mode (enum machine_mode, rtx);
90 static void pa_reorg (void);
91 static void pa_combine_instructions (void);
92 static int pa_can_combine_p (rtx, rtx, rtx, int, rtx, rtx, rtx);
93 static int forward_branch_p (rtx);
94 static int shadd_constant_p (int);
95 static void compute_zdepwi_operands (unsigned HOST_WIDE_INT, unsigned *);
96 static int compute_movmem_length (rtx);
97 static int compute_clrmem_length (rtx);
98 static bool pa_assemble_integer (rtx, unsigned int, int);
99 static void remove_useless_addtr_insns (int);
100 static void store_reg (int, HOST_WIDE_INT, int);
101 static void store_reg_modify (int, int, HOST_WIDE_INT);
102 static void load_reg (int, HOST_WIDE_INT, int);
103 static void set_reg_plus_d (int, int, HOST_WIDE_INT, int);
104 static void pa_output_function_prologue (FILE *, HOST_WIDE_INT);
105 static void update_total_code_bytes (int);
106 static void pa_output_function_epilogue (FILE *, HOST_WIDE_INT);
107 static int pa_adjust_cost (rtx, rtx, rtx, int);
108 static int pa_adjust_priority (rtx, int);
109 static int pa_issue_rate (void);
110 static void pa_select_section (tree, int, unsigned HOST_WIDE_INT)
111 ATTRIBUTE_UNUSED;
112 static void pa_encode_section_info (tree, rtx, int);
113 static const char *pa_strip_name_encoding (const char *);
114 static bool pa_function_ok_for_sibcall (tree, tree);
115 static void pa_globalize_label (FILE *, const char *)
116 ATTRIBUTE_UNUSED;
117 static void pa_asm_output_mi_thunk (FILE *, tree, HOST_WIDE_INT,
118 HOST_WIDE_INT, tree);
119 #if !defined(USE_COLLECT2)
120 static void pa_asm_out_constructor (rtx, int);
121 static void pa_asm_out_destructor (rtx, int);
122 #endif
123 static void pa_init_builtins (void);
124 static rtx hppa_builtin_saveregs (void);
125 static tree hppa_gimplify_va_arg_expr (tree, tree, tree *, tree *);
126 static void copy_fp_args (rtx) ATTRIBUTE_UNUSED;
127 static int length_fp_args (rtx) ATTRIBUTE_UNUSED;
128 static struct deferred_plabel *get_plabel (const char *)
129 ATTRIBUTE_UNUSED;
130 static inline void pa_file_start_level (void) ATTRIBUTE_UNUSED;
131 static inline void pa_file_start_space (int) ATTRIBUTE_UNUSED;
132 static inline void pa_file_start_file (int) ATTRIBUTE_UNUSED;
133 static inline void pa_file_start_mcount (const char*) ATTRIBUTE_UNUSED;
134 static void pa_elf_file_start (void) ATTRIBUTE_UNUSED;
135 static void pa_som_file_start (void) ATTRIBUTE_UNUSED;
136 static void pa_linux_file_start (void) ATTRIBUTE_UNUSED;
137 static void pa_hpux64_gas_file_start (void) ATTRIBUTE_UNUSED;
138 static void pa_hpux64_hpas_file_start (void) ATTRIBUTE_UNUSED;
139 static void output_deferred_plabels (void);
140 #ifdef HPUX_LONG_DOUBLE_LIBRARY
141 static void pa_hpux_init_libfuncs (void);
142 #endif
143 static rtx pa_struct_value_rtx (tree, int);
144 static bool pa_pass_by_reference (CUMULATIVE_ARGS *ca, enum machine_mode,
145 tree, bool);
146 static struct machine_function * pa_init_machine_status (void);
149 /* Save the operands last given to a compare for use when we
150 generate a scc or bcc insn. */
151 rtx hppa_compare_op0, hppa_compare_op1;
152 enum cmp_type hppa_branch_type;
154 /* Which architecture we are generating code for. */
155 enum architecture_type pa_arch;
157 /* String to hold which architecture we are generating code for. */
158 const char *pa_arch_string;
160 /* String used with the -mfixed-range= option. */
161 const char *pa_fixed_range_string;
163 /* Which cpu we are scheduling for. */
164 enum processor_type pa_cpu;
166 /* String to hold which cpu we are scheduling for. */
167 const char *pa_cpu_string;
169 /* String used with the -munix= option. */
170 const char *pa_unix_string;
172 /* The UNIX standard to use for predefines and linking. */
173 int flag_pa_unix;
175 /* Counts for the number of callee-saved general and floating point
176 registers which were saved by the current function's prologue. */
177 static int gr_saved, fr_saved;
179 static rtx find_addr_reg (rtx);
181 /* Keep track of the number of bytes we have output in the CODE subspace
182 during this compilation so we'll know when to emit inline long-calls. */
183 unsigned long total_code_bytes;
185 /* The last address of the previous function plus the number of bytes in
186 associated thunks that have been output. This is used to determine if
187 a thunk can use an IA-relative branch to reach its target function. */
188 static int last_address;
190 /* Variables to handle plabels that we discover are necessary at assembly
191 output time. They are output after the current function. */
192 struct deferred_plabel GTY(())
194 rtx internal_label;
195 const char *name;
197 static GTY((length ("n_deferred_plabels"))) struct deferred_plabel *
198 deferred_plabels;
199 static size_t n_deferred_plabels = 0;
202 /* Initialize the GCC target structure. */
204 #undef TARGET_ASM_ALIGNED_HI_OP
205 #define TARGET_ASM_ALIGNED_HI_OP "\t.half\t"
206 #undef TARGET_ASM_ALIGNED_SI_OP
207 #define TARGET_ASM_ALIGNED_SI_OP "\t.word\t"
208 #undef TARGET_ASM_ALIGNED_DI_OP
209 #define TARGET_ASM_ALIGNED_DI_OP "\t.dword\t"
210 #undef TARGET_ASM_UNALIGNED_HI_OP
211 #define TARGET_ASM_UNALIGNED_HI_OP TARGET_ASM_ALIGNED_HI_OP
212 #undef TARGET_ASM_UNALIGNED_SI_OP
213 #define TARGET_ASM_UNALIGNED_SI_OP TARGET_ASM_ALIGNED_SI_OP
214 #undef TARGET_ASM_UNALIGNED_DI_OP
215 #define TARGET_ASM_UNALIGNED_DI_OP TARGET_ASM_ALIGNED_DI_OP
216 #undef TARGET_ASM_INTEGER
217 #define TARGET_ASM_INTEGER pa_assemble_integer
219 #undef TARGET_ASM_FUNCTION_PROLOGUE
220 #define TARGET_ASM_FUNCTION_PROLOGUE pa_output_function_prologue
221 #undef TARGET_ASM_FUNCTION_EPILOGUE
222 #define TARGET_ASM_FUNCTION_EPILOGUE pa_output_function_epilogue
224 #undef TARGET_SCHED_ADJUST_COST
225 #define TARGET_SCHED_ADJUST_COST pa_adjust_cost
226 #undef TARGET_SCHED_ADJUST_PRIORITY
227 #define TARGET_SCHED_ADJUST_PRIORITY pa_adjust_priority
228 #undef TARGET_SCHED_ISSUE_RATE
229 #define TARGET_SCHED_ISSUE_RATE pa_issue_rate
231 #undef TARGET_ENCODE_SECTION_INFO
232 #define TARGET_ENCODE_SECTION_INFO pa_encode_section_info
233 #undef TARGET_STRIP_NAME_ENCODING
234 #define TARGET_STRIP_NAME_ENCODING pa_strip_name_encoding
236 #undef TARGET_FUNCTION_OK_FOR_SIBCALL
237 #define TARGET_FUNCTION_OK_FOR_SIBCALL pa_function_ok_for_sibcall
239 #undef TARGET_ASM_OUTPUT_MI_THUNK
240 #define TARGET_ASM_OUTPUT_MI_THUNK pa_asm_output_mi_thunk
241 #undef TARGET_ASM_CAN_OUTPUT_MI_THUNK
242 #define TARGET_ASM_CAN_OUTPUT_MI_THUNK default_can_output_mi_thunk_no_vcall
244 #undef TARGET_ASM_FILE_END
245 #define TARGET_ASM_FILE_END output_deferred_plabels
247 #if !defined(USE_COLLECT2)
248 #undef TARGET_ASM_CONSTRUCTOR
249 #define TARGET_ASM_CONSTRUCTOR pa_asm_out_constructor
250 #undef TARGET_ASM_DESTRUCTOR
251 #define TARGET_ASM_DESTRUCTOR pa_asm_out_destructor
252 #endif
254 #undef TARGET_INIT_BUILTINS
255 #define TARGET_INIT_BUILTINS pa_init_builtins
257 #undef TARGET_RTX_COSTS
258 #define TARGET_RTX_COSTS hppa_rtx_costs
259 #undef TARGET_ADDRESS_COST
260 #define TARGET_ADDRESS_COST hppa_address_cost
262 #undef TARGET_MACHINE_DEPENDENT_REORG
263 #define TARGET_MACHINE_DEPENDENT_REORG pa_reorg
265 #ifdef HPUX_LONG_DOUBLE_LIBRARY
266 #undef TARGET_INIT_LIBFUNCS
267 #define TARGET_INIT_LIBFUNCS pa_hpux_init_libfuncs
268 #endif
270 #undef TARGET_PROMOTE_FUNCTION_RETURN
271 #define TARGET_PROMOTE_FUNCTION_RETURN hook_bool_tree_true
272 #undef TARGET_PROMOTE_PROTOTYPES
273 #define TARGET_PROMOTE_PROTOTYPES hook_bool_tree_true
275 #undef TARGET_STRUCT_VALUE_RTX
276 #define TARGET_STRUCT_VALUE_RTX pa_struct_value_rtx
277 #undef TARGET_RETURN_IN_MEMORY
278 #define TARGET_RETURN_IN_MEMORY pa_return_in_memory
279 #undef TARGET_MUST_PASS_IN_STACK
280 #define TARGET_MUST_PASS_IN_STACK must_pass_in_stack_var_size
281 #undef TARGET_PASS_BY_REFERENCE
282 #define TARGET_PASS_BY_REFERENCE pa_pass_by_reference
283 #undef TARGET_CALLEE_COPIES
284 #define TARGET_CALLEE_COPIES hook_bool_CUMULATIVE_ARGS_mode_tree_bool_true
286 #undef TARGET_EXPAND_BUILTIN_SAVEREGS
287 #define TARGET_EXPAND_BUILTIN_SAVEREGS hppa_builtin_saveregs
288 #undef TARGET_GIMPLIFY_VA_ARG_EXPR
289 #define TARGET_GIMPLIFY_VA_ARG_EXPR hppa_gimplify_va_arg_expr
291 struct gcc_target targetm = TARGET_INITIALIZER;
293 /* Parse the -mfixed-range= option string. */
295 static void
296 fix_range (const char *const_str)
298 int i, first, last;
299 char *str, *dash, *comma;
301 /* str must be of the form REG1'-'REG2{,REG1'-'REG} where REG1 and
302 REG2 are either register names or register numbers. The effect
303 of this option is to mark the registers in the range from REG1 to
304 REG2 as ``fixed'' so they won't be used by the compiler. This is
305 used, e.g., to ensure that kernel mode code doesn't use f32-f127. */
307 i = strlen (const_str);
308 str = (char *) alloca (i + 1);
309 memcpy (str, const_str, i + 1);
311 while (1)
313 dash = strchr (str, '-');
314 if (!dash)
316 warning ("value of -mfixed-range must have form REG1-REG2");
317 return;
319 *dash = '\0';
321 comma = strchr (dash + 1, ',');
322 if (comma)
323 *comma = '\0';
325 first = decode_reg_name (str);
326 if (first < 0)
328 warning ("unknown register name: %s", str);
329 return;
332 last = decode_reg_name (dash + 1);
333 if (last < 0)
335 warning ("unknown register name: %s", dash + 1);
336 return;
339 *dash = '-';
341 if (first > last)
343 warning ("%s-%s is an empty range", str, dash + 1);
344 return;
347 for (i = first; i <= last; ++i)
348 fixed_regs[i] = call_used_regs[i] = 1;
350 if (!comma)
351 break;
353 *comma = ',';
354 str = comma + 1;
357 /* Check if all floating point registers have been fixed. */
358 for (i = FP_REG_FIRST; i <= FP_REG_LAST; i++)
359 if (!fixed_regs[i])
360 break;
362 if (i > FP_REG_LAST)
363 target_flags |= MASK_DISABLE_FPREGS;
366 void
367 override_options (void)
369 if (pa_cpu_string == NULL)
370 pa_cpu_string = TARGET_SCHED_DEFAULT;
372 if (! strcmp (pa_cpu_string, "8000"))
374 pa_cpu_string = "8000";
375 pa_cpu = PROCESSOR_8000;
377 else if (! strcmp (pa_cpu_string, "7100"))
379 pa_cpu_string = "7100";
380 pa_cpu = PROCESSOR_7100;
382 else if (! strcmp (pa_cpu_string, "700"))
384 pa_cpu_string = "700";
385 pa_cpu = PROCESSOR_700;
387 else if (! strcmp (pa_cpu_string, "7100LC"))
389 pa_cpu_string = "7100LC";
390 pa_cpu = PROCESSOR_7100LC;
392 else if (! strcmp (pa_cpu_string, "7200"))
394 pa_cpu_string = "7200";
395 pa_cpu = PROCESSOR_7200;
397 else if (! strcmp (pa_cpu_string, "7300"))
399 pa_cpu_string = "7300";
400 pa_cpu = PROCESSOR_7300;
402 else
404 warning ("unknown -mschedule= option (%s).\nValid options are 700, 7100, 7100LC, 7200, 7300, and 8000\n", pa_cpu_string);
407 /* Set the instruction architecture. */
408 if (pa_arch_string && ! strcmp (pa_arch_string, "1.0"))
410 pa_arch_string = "1.0";
411 pa_arch = ARCHITECTURE_10;
412 target_flags &= ~(MASK_PA_11 | MASK_PA_20);
414 else if (pa_arch_string && ! strcmp (pa_arch_string, "1.1"))
416 pa_arch_string = "1.1";
417 pa_arch = ARCHITECTURE_11;
418 target_flags &= ~MASK_PA_20;
419 target_flags |= MASK_PA_11;
421 else if (pa_arch_string && ! strcmp (pa_arch_string, "2.0"))
423 pa_arch_string = "2.0";
424 pa_arch = ARCHITECTURE_20;
425 target_flags |= MASK_PA_11 | MASK_PA_20;
427 else if (pa_arch_string)
429 warning ("unknown -march= option (%s).\nValid options are 1.0, 1.1, and 2.0\n", pa_arch_string);
432 if (TARGET_HPUX)
434 /* Set the default UNIX standard for HP-UX. This affects the
435 predefines and startfiles used for the target. */
436 if (pa_unix_string == NULL)
437 pa_unix_string
438 = TARGET_HPUX_11_11 ? "98" : (TARGET_HPUX_10_10 ? "95" : "93");
440 if (!strcmp (pa_unix_string, "93"))
441 flag_pa_unix = 1993;
442 else if (!strcmp (pa_unix_string, "95"))
443 flag_pa_unix = 1995;
444 else if (TARGET_HPUX_11_11)
446 if (!strcmp (pa_unix_string, "98"))
447 flag_pa_unix = 1998;
448 else
449 warning ("unknown -munix= option (%s).\n"
450 "Valid options are 93, 95 and 98.\n",
451 pa_unix_string);
453 else if (TARGET_HPUX_10_10)
454 warning ("unknown -munix= option (%s)."
455 "\nValid options are 93 and 95.\n",
456 pa_unix_string);
457 else
458 warning ("unknown -munix= option (%s).\nValid option is 93.\n",
459 pa_unix_string);
462 if (pa_fixed_range_string)
463 fix_range (pa_fixed_range_string);
465 /* Unconditional branches in the delay slot are not compatible with dwarf2
466 call frame information. There is no benefit in using this optimization
467 on PA8000 and later processors. */
468 if (pa_cpu >= PROCESSOR_8000
469 || (! USING_SJLJ_EXCEPTIONS && flag_exceptions)
470 || flag_unwind_tables)
471 target_flags &= ~MASK_JUMP_IN_DELAY;
473 if (flag_pic && TARGET_PORTABLE_RUNTIME)
475 warning ("PIC code generation is not supported in the portable runtime model\n");
478 if (flag_pic && TARGET_FAST_INDIRECT_CALLS)
480 warning ("PIC code generation is not compatible with fast indirect calls\n");
483 if (! TARGET_GAS && write_symbols != NO_DEBUG)
485 warning ("-g is only supported when using GAS on this processor,");
486 warning ("-g option disabled");
487 write_symbols = NO_DEBUG;
490 /* We only support the "big PIC" model now. And we always generate PIC
491 code when in 64bit mode. */
492 if (flag_pic == 1 || TARGET_64BIT)
493 flag_pic = 2;
495 /* We can't guarantee that .dword is available for 32-bit targets. */
496 if (UNITS_PER_WORD == 4)
497 targetm.asm_out.aligned_op.di = NULL;
499 /* The unaligned ops are only available when using GAS. */
500 if (!TARGET_GAS)
502 targetm.asm_out.unaligned_op.hi = NULL;
503 targetm.asm_out.unaligned_op.si = NULL;
504 targetm.asm_out.unaligned_op.di = NULL;
507 init_machine_status = pa_init_machine_status;
510 static void
511 pa_init_builtins (void)
513 #ifdef DONT_HAVE_FPUTC_UNLOCKED
514 built_in_decls[(int) BUILT_IN_FPUTC_UNLOCKED] = NULL_TREE;
515 implicit_built_in_decls[(int) BUILT_IN_FPUTC_UNLOCKED] = NULL_TREE;
516 #endif
519 /* Function to init struct machine_function.
520 This will be called, via a pointer variable,
521 from push_function_context. */
523 static struct machine_function *
524 pa_init_machine_status (void)
526 return ggc_alloc_cleared (sizeof (machine_function));
529 /* If FROM is a probable pointer register, mark TO as a probable
530 pointer register with the same pointer alignment as FROM. */
532 static void
533 copy_reg_pointer (rtx to, rtx from)
535 if (REG_POINTER (from))
536 mark_reg_pointer (to, REGNO_POINTER_ALIGN (REGNO (from)));
539 /* Return nonzero only if OP is a register of mode MODE,
540 or CONST0_RTX. */
542 reg_or_0_operand (rtx op, enum machine_mode mode)
544 return (op == CONST0_RTX (mode) || register_operand (op, mode));
547 /* Return nonzero if OP is suitable for use in a call to a named
548 function.
550 For 2.5 try to eliminate either call_operand_address or
551 function_label_operand, they perform very similar functions. */
553 call_operand_address (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
555 return (GET_MODE (op) == word_mode
556 && CONSTANT_P (op) && ! TARGET_PORTABLE_RUNTIME);
559 /* Return 1 if X contains a symbolic expression. We know these
560 expressions will have one of a few well defined forms, so
561 we need only check those forms. */
563 symbolic_expression_p (rtx x)
566 /* Strip off any HIGH. */
567 if (GET_CODE (x) == HIGH)
568 x = XEXP (x, 0);
570 return (symbolic_operand (x, VOIDmode));
574 symbolic_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
576 switch (GET_CODE (op))
578 case SYMBOL_REF:
579 case LABEL_REF:
580 return 1;
581 case CONST:
582 op = XEXP (op, 0);
583 return ((GET_CODE (XEXP (op, 0)) == SYMBOL_REF
584 || GET_CODE (XEXP (op, 0)) == LABEL_REF)
585 && GET_CODE (XEXP (op, 1)) == CONST_INT);
586 default:
587 return 0;
591 /* Return truth value of statement that OP is a symbolic memory
592 operand of mode MODE. */
595 symbolic_memory_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
597 if (GET_CODE (op) == SUBREG)
598 op = SUBREG_REG (op);
599 if (GET_CODE (op) != MEM)
600 return 0;
601 op = XEXP (op, 0);
602 return (GET_CODE (op) == SYMBOL_REF || GET_CODE (op) == CONST
603 || GET_CODE (op) == HIGH || GET_CODE (op) == LABEL_REF);
606 /* Return 1 if the operand is either a register, zero, or a memory operand
607 that is not symbolic. */
610 reg_or_0_or_nonsymb_mem_operand (rtx op, enum machine_mode mode)
612 if (register_operand (op, mode))
613 return 1;
615 if (op == CONST0_RTX (mode))
616 return 1;
618 if (GET_CODE (op) == SUBREG)
619 op = SUBREG_REG (op);
621 if (GET_CODE (op) != MEM)
622 return 0;
624 /* Until problems with management of the REG_POINTER flag are resolved,
625 we need to delay creating move insns with unscaled indexed addresses
626 until CSE is not expected. */
627 if (!TARGET_NO_SPACE_REGS
628 && !cse_not_expected
629 && GET_CODE (XEXP (op, 0)) == PLUS
630 && REG_P (XEXP (XEXP (op, 0), 0))
631 && REG_P (XEXP (XEXP (op, 0), 1)))
632 return 0;
634 return (!symbolic_memory_operand (op, mode)
635 && memory_address_p (mode, XEXP (op, 0)));
638 /* Return 1 if the operand is a register operand or a non-symbolic memory
639 operand after reload. This predicate is used for branch patterns that
640 internally handle register reloading. We need to accept non-symbolic
641 memory operands after reload to ensure that the pattern is still valid
642 if reload didn't find a hard register for the operand. */
645 reg_before_reload_operand (rtx op, enum machine_mode mode)
647 /* Don't accept a SUBREG since it will need a reload. */
648 if (GET_CODE (op) == SUBREG)
649 return 0;
651 if (register_operand (op, mode))
652 return 1;
654 if (reload_completed
655 && memory_operand (op, mode)
656 && !symbolic_memory_operand (op, mode))
657 return 1;
659 return 0;
662 /* Accept any constant that can be moved in one instruction into a
663 general register. */
665 cint_ok_for_move (HOST_WIDE_INT intval)
667 /* OK if ldo, ldil, or zdepi, can be used. */
668 return (CONST_OK_FOR_LETTER_P (intval, 'J')
669 || CONST_OK_FOR_LETTER_P (intval, 'N')
670 || CONST_OK_FOR_LETTER_P (intval, 'K'));
673 /* Return 1 iff OP is an indexed memory operand. */
675 indexed_memory_operand (rtx op, enum machine_mode mode)
677 if (GET_MODE (op) != mode)
678 return 0;
680 /* Before reload, a (SUBREG (MEM...)) forces reloading into a register. */
681 if (reload_completed && GET_CODE (op) == SUBREG)
682 op = SUBREG_REG (op);
684 if (GET_CODE (op) != MEM || symbolic_memory_operand (op, mode))
685 return 0;
687 op = XEXP (op, 0);
689 return (memory_address_p (mode, op) && IS_INDEX_ADDR_P (op));
692 /* Accept anything that can be used as a destination operand for a
693 move instruction. We don't accept indexed memory operands since
694 they are supported only for floating point stores. */
696 move_dest_operand (rtx op, enum machine_mode mode)
698 if (register_operand (op, mode))
699 return 1;
701 if (GET_MODE (op) != mode)
702 return 0;
704 if (GET_CODE (op) == SUBREG)
705 op = SUBREG_REG (op);
707 if (GET_CODE (op) != MEM || symbolic_memory_operand (op, mode))
708 return 0;
710 op = XEXP (op, 0);
712 return (memory_address_p (mode, op)
713 && !IS_INDEX_ADDR_P (op)
714 && !IS_LO_SUM_DLT_ADDR_P (op));
717 /* Accept anything that can be used as a source operand for a move
718 instruction. */
720 move_src_operand (rtx op, enum machine_mode mode)
722 if (register_operand (op, mode))
723 return 1;
725 if (GET_CODE (op) == CONST_INT)
726 return cint_ok_for_move (INTVAL (op));
728 if (GET_MODE (op) != mode)
729 return 0;
731 if (GET_CODE (op) == SUBREG)
732 op = SUBREG_REG (op);
734 if (GET_CODE (op) != MEM)
735 return 0;
737 /* Until problems with management of the REG_POINTER flag are resolved,
738 we need to delay creating move insns with unscaled indexed addresses
739 until CSE is not expected. */
740 if (!TARGET_NO_SPACE_REGS
741 && !cse_not_expected
742 && GET_CODE (XEXP (op, 0)) == PLUS
743 && REG_P (XEXP (XEXP (op, 0), 0))
744 && REG_P (XEXP (XEXP (op, 0), 1)))
745 return 0;
747 return memory_address_p (mode, XEXP (op, 0));
750 /* Accept anything that can be used as the source operand for a prefetch
751 instruction. */
753 prefetch_operand (rtx op, enum machine_mode mode)
755 if (GET_CODE (op) != MEM)
756 return 0;
758 /* Until problems with management of the REG_POINTER flag are resolved,
759 we need to delay creating prefetch insns with unscaled indexed addresses
760 until CSE is not expected. */
761 if (!TARGET_NO_SPACE_REGS
762 && !cse_not_expected
763 && GET_CODE (XEXP (op, 0)) == PLUS
764 && REG_P (XEXP (XEXP (op, 0), 0))
765 && REG_P (XEXP (XEXP (op, 0), 1)))
766 return 0;
768 return memory_address_p (mode, XEXP (op, 0));
771 /* Accept REG and any CONST_INT that can be moved in one instruction into a
772 general register. */
774 reg_or_cint_move_operand (rtx op, enum machine_mode mode)
776 if (register_operand (op, mode))
777 return 1;
779 return (GET_CODE (op) == CONST_INT && cint_ok_for_move (INTVAL (op)));
783 pic_label_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
785 if (!flag_pic)
786 return 0;
788 switch (GET_CODE (op))
790 case LABEL_REF:
791 return 1;
792 case CONST:
793 op = XEXP (op, 0);
794 return (GET_CODE (XEXP (op, 0)) == LABEL_REF
795 && GET_CODE (XEXP (op, 1)) == CONST_INT);
796 default:
797 return 0;
802 fp_reg_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
804 return reg_renumber && FP_REG_P (op);
809 /* Return truth value of whether OP can be used as an operand in a
810 three operand arithmetic insn that accepts registers of mode MODE
811 or 14-bit signed integers. */
813 arith_operand (rtx op, enum machine_mode mode)
815 return (register_operand (op, mode)
816 || (GET_CODE (op) == CONST_INT && INT_14_BITS (op)));
819 /* Return truth value of whether OP can be used as an operand in a
820 three operand arithmetic insn that accepts registers of mode MODE
821 or 11-bit signed integers. */
823 arith11_operand (rtx op, enum machine_mode mode)
825 return (register_operand (op, mode)
826 || (GET_CODE (op) == CONST_INT && INT_11_BITS (op)));
829 /* Return truth value of whether OP can be used as an operand in a
830 adddi3 insn. */
832 adddi3_operand (rtx op, enum machine_mode mode)
834 return (register_operand (op, mode)
835 || (GET_CODE (op) == CONST_INT
836 && (TARGET_64BIT ? INT_14_BITS (op) : INT_11_BITS (op))));
839 /* A constant integer suitable for use in a PRE_MODIFY memory
840 reference. */
842 pre_cint_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
844 return (GET_CODE (op) == CONST_INT
845 && INTVAL (op) >= -0x2000 && INTVAL (op) < 0x10);
848 /* A constant integer suitable for use in a POST_MODIFY memory
849 reference. */
851 post_cint_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
853 return (GET_CODE (op) == CONST_INT
854 && INTVAL (op) < 0x2000 && INTVAL (op) >= -0x10);
858 arith_double_operand (rtx op, enum machine_mode mode)
860 return (register_operand (op, mode)
861 || (GET_CODE (op) == CONST_DOUBLE
862 && GET_MODE (op) == mode
863 && VAL_14_BITS_P (CONST_DOUBLE_LOW (op))
864 && ((CONST_DOUBLE_HIGH (op) >= 0)
865 == ((CONST_DOUBLE_LOW (op) & 0x1000) == 0))));
868 /* Return truth value of whether OP is an integer which fits the
869 range constraining immediate operands in three-address insns, or
870 is an integer register. */
873 ireg_or_int5_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
875 return ((GET_CODE (op) == CONST_INT && INT_5_BITS (op))
876 || (GET_CODE (op) == REG && REGNO (op) > 0 && REGNO (op) < 32));
879 /* Return nonzero if OP is an integer register, else return zero. */
881 ireg_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
883 return (GET_CODE (op) == REG && REGNO (op) > 0 && REGNO (op) < 32);
886 /* Return truth value of whether OP is an integer which fits the
887 range constraining immediate operands in three-address insns. */
890 int5_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
892 return (GET_CODE (op) == CONST_INT && INT_5_BITS (op));
896 uint5_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
898 return (GET_CODE (op) == CONST_INT && INT_U5_BITS (op));
902 int11_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
904 return (GET_CODE (op) == CONST_INT && INT_11_BITS (op));
908 uint32_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
910 #if HOST_BITS_PER_WIDE_INT > 32
911 /* All allowed constants will fit a CONST_INT. */
912 return (GET_CODE (op) == CONST_INT
913 && (INTVAL (op) >= 0 && INTVAL (op) < (HOST_WIDE_INT) 1 << 32));
914 #else
915 return (GET_CODE (op) == CONST_INT
916 || (GET_CODE (op) == CONST_DOUBLE
917 && CONST_DOUBLE_HIGH (op) == 0));
918 #endif
922 arith5_operand (rtx op, enum machine_mode mode)
924 return register_operand (op, mode) || int5_operand (op, mode);
927 /* True iff zdepi can be used to generate this CONST_INT.
928 zdepi first sign extends a 5 bit signed number to a given field
929 length, then places this field anywhere in a zero. */
931 zdepi_cint_p (unsigned HOST_WIDE_INT x)
933 unsigned HOST_WIDE_INT lsb_mask, t;
935 /* This might not be obvious, but it's at least fast.
936 This function is critical; we don't have the time loops would take. */
937 lsb_mask = x & -x;
938 t = ((x >> 4) + lsb_mask) & ~(lsb_mask - 1);
939 /* Return true iff t is a power of two. */
940 return ((t & (t - 1)) == 0);
943 /* True iff depi or extru can be used to compute (reg & mask).
944 Accept bit pattern like these:
945 0....01....1
946 1....10....0
947 1..10..01..1 */
949 and_mask_p (unsigned HOST_WIDE_INT mask)
951 mask = ~mask;
952 mask += mask & -mask;
953 return (mask & (mask - 1)) == 0;
956 /* True iff depi or extru can be used to compute (reg & OP). */
958 and_operand (rtx op, enum machine_mode mode)
960 return (register_operand (op, mode)
961 || (GET_CODE (op) == CONST_INT && and_mask_p (INTVAL (op))));
964 /* True iff depi can be used to compute (reg | MASK). */
966 ior_mask_p (unsigned HOST_WIDE_INT mask)
968 mask += mask & -mask;
969 return (mask & (mask - 1)) == 0;
972 /* True iff depi can be used to compute (reg | OP). */
974 ior_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
976 return (GET_CODE (op) == CONST_INT && ior_mask_p (INTVAL (op)));
980 lhs_lshift_operand (rtx op, enum machine_mode mode)
982 return register_operand (op, mode) || lhs_lshift_cint_operand (op, mode);
985 /* True iff OP is a CONST_INT of the forms 0...0xxxx or 0...01...1xxxx.
986 Such values can be the left hand side x in (x << r), using the zvdepi
987 instruction. */
989 lhs_lshift_cint_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
991 unsigned HOST_WIDE_INT x;
992 if (GET_CODE (op) != CONST_INT)
993 return 0;
994 x = INTVAL (op) >> 4;
995 return (x & (x + 1)) == 0;
999 arith32_operand (rtx op, enum machine_mode mode)
1001 return register_operand (op, mode) || GET_CODE (op) == CONST_INT;
1005 pc_or_label_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
1007 return (GET_CODE (op) == PC || GET_CODE (op) == LABEL_REF);
1010 /* Legitimize PIC addresses. If the address is already
1011 position-independent, we return ORIG. Newly generated
1012 position-independent addresses go to REG. If we need more
1013 than one register, we lose. */
1016 legitimize_pic_address (rtx orig, enum machine_mode mode, rtx reg)
1018 rtx pic_ref = orig;
1020 /* Labels need special handling. */
1021 if (pic_label_operand (orig, mode))
1023 /* We do not want to go through the movXX expanders here since that
1024 would create recursion.
1026 Nor do we really want to call a generator for a named pattern
1027 since that requires multiple patterns if we want to support
1028 multiple word sizes.
1030 So instead we just emit the raw set, which avoids the movXX
1031 expanders completely. */
1032 mark_reg_pointer (reg, BITS_PER_UNIT);
1033 emit_insn (gen_rtx_SET (VOIDmode, reg, orig));
1034 current_function_uses_pic_offset_table = 1;
1035 return reg;
1037 if (GET_CODE (orig) == SYMBOL_REF)
1039 rtx insn, tmp_reg;
1041 if (reg == 0)
1042 abort ();
1044 /* Before reload, allocate a temporary register for the intermediate
1045 result. This allows the sequence to be deleted when the final
1046 result is unused and the insns are trivially dead. */
1047 tmp_reg = ((reload_in_progress || reload_completed)
1048 ? reg : gen_reg_rtx (Pmode));
1050 emit_move_insn (tmp_reg,
1051 gen_rtx_PLUS (word_mode, pic_offset_table_rtx,
1052 gen_rtx_HIGH (word_mode, orig)));
1053 pic_ref
1054 = gen_const_mem (Pmode,
1055 gen_rtx_LO_SUM (Pmode, tmp_reg,
1056 gen_rtx_UNSPEC (Pmode,
1057 gen_rtvec (1, orig),
1058 UNSPEC_DLTIND14R)));
1060 current_function_uses_pic_offset_table = 1;
1061 mark_reg_pointer (reg, BITS_PER_UNIT);
1062 insn = emit_move_insn (reg, pic_ref);
1064 /* Put a REG_EQUAL note on this insn, so that it can be optimized. */
1065 REG_NOTES (insn) = gen_rtx_EXPR_LIST (REG_EQUAL, orig, REG_NOTES (insn));
1067 return reg;
1069 else if (GET_CODE (orig) == CONST)
1071 rtx base;
1073 if (GET_CODE (XEXP (orig, 0)) == PLUS
1074 && XEXP (XEXP (orig, 0), 0) == pic_offset_table_rtx)
1075 return orig;
1077 if (reg == 0)
1078 abort ();
1080 if (GET_CODE (XEXP (orig, 0)) == PLUS)
1082 base = legitimize_pic_address (XEXP (XEXP (orig, 0), 0), Pmode, reg);
1083 orig = legitimize_pic_address (XEXP (XEXP (orig, 0), 1), Pmode,
1084 base == reg ? 0 : reg);
1086 else
1087 abort ();
1089 if (GET_CODE (orig) == CONST_INT)
1091 if (INT_14_BITS (orig))
1092 return plus_constant (base, INTVAL (orig));
1093 orig = force_reg (Pmode, orig);
1095 pic_ref = gen_rtx_PLUS (Pmode, base, orig);
1096 /* Likewise, should we set special REG_NOTEs here? */
1099 return pic_ref;
1102 /* Try machine-dependent ways of modifying an illegitimate address
1103 to be legitimate. If we find one, return the new, valid address.
1104 This macro is used in only one place: `memory_address' in explow.c.
1106 OLDX is the address as it was before break_out_memory_refs was called.
1107 In some cases it is useful to look at this to decide what needs to be done.
1109 MODE and WIN are passed so that this macro can use
1110 GO_IF_LEGITIMATE_ADDRESS.
1112 It is always safe for this macro to do nothing. It exists to recognize
1113 opportunities to optimize the output.
1115 For the PA, transform:
1117 memory(X + <large int>)
1119 into:
1121 if (<large int> & mask) >= 16
1122 Y = (<large int> & ~mask) + mask + 1 Round up.
1123 else
1124 Y = (<large int> & ~mask) Round down.
1125 Z = X + Y
1126 memory (Z + (<large int> - Y));
1128 This is for CSE to find several similar references, and only use one Z.
1130 X can either be a SYMBOL_REF or REG, but because combine cannot
1131 perform a 4->2 combination we do nothing for SYMBOL_REF + D where
1132 D will not fit in 14 bits.
1134 MODE_FLOAT references allow displacements which fit in 5 bits, so use
1135 0x1f as the mask.
1137 MODE_INT references allow displacements which fit in 14 bits, so use
1138 0x3fff as the mask.
1140 This relies on the fact that most mode MODE_FLOAT references will use FP
1141 registers and most mode MODE_INT references will use integer registers.
1142 (In the rare case of an FP register used in an integer MODE, we depend
1143 on secondary reloads to clean things up.)
1146 It is also beneficial to handle (plus (mult (X) (Y)) (Z)) in a special
1147 manner if Y is 2, 4, or 8. (allows more shadd insns and shifted indexed
1148 addressing modes to be used).
1150 Put X and Z into registers. Then put the entire expression into
1151 a register. */
1154 hppa_legitimize_address (rtx x, rtx oldx ATTRIBUTE_UNUSED,
1155 enum machine_mode mode)
1157 rtx orig = x;
1159 /* We need to canonicalize the order of operands in unscaled indexed
1160 addresses since the code that checks if an address is valid doesn't
1161 always try both orders. */
1162 if (!TARGET_NO_SPACE_REGS
1163 && GET_CODE (x) == PLUS
1164 && GET_MODE (x) == Pmode
1165 && REG_P (XEXP (x, 0))
1166 && REG_P (XEXP (x, 1))
1167 && REG_POINTER (XEXP (x, 0))
1168 && !REG_POINTER (XEXP (x, 1)))
1169 return gen_rtx_PLUS (Pmode, XEXP (x, 1), XEXP (x, 0));
1171 if (flag_pic)
1172 return legitimize_pic_address (x, mode, gen_reg_rtx (Pmode));
1174 /* Strip off CONST. */
1175 if (GET_CODE (x) == CONST)
1176 x = XEXP (x, 0);
1178 /* Special case. Get the SYMBOL_REF into a register and use indexing.
1179 That should always be safe. */
1180 if (GET_CODE (x) == PLUS
1181 && GET_CODE (XEXP (x, 0)) == REG
1182 && GET_CODE (XEXP (x, 1)) == SYMBOL_REF)
1184 rtx reg = force_reg (Pmode, XEXP (x, 1));
1185 return force_reg (Pmode, gen_rtx_PLUS (Pmode, reg, XEXP (x, 0)));
1188 /* Note we must reject symbols which represent function addresses
1189 since the assembler/linker can't handle arithmetic on plabels. */
1190 if (GET_CODE (x) == PLUS
1191 && GET_CODE (XEXP (x, 1)) == CONST_INT
1192 && ((GET_CODE (XEXP (x, 0)) == SYMBOL_REF
1193 && !FUNCTION_NAME_P (XSTR (XEXP (x, 0), 0)))
1194 || GET_CODE (XEXP (x, 0)) == REG))
1196 rtx int_part, ptr_reg;
1197 int newoffset;
1198 int offset = INTVAL (XEXP (x, 1));
1199 int mask;
1201 mask = (GET_MODE_CLASS (mode) == MODE_FLOAT
1202 ? (TARGET_PA_20 ? 0x3fff : 0x1f) : 0x3fff);
1204 /* Choose which way to round the offset. Round up if we
1205 are >= halfway to the next boundary. */
1206 if ((offset & mask) >= ((mask + 1) / 2))
1207 newoffset = (offset & ~ mask) + mask + 1;
1208 else
1209 newoffset = (offset & ~ mask);
1211 /* If the newoffset will not fit in 14 bits (ldo), then
1212 handling this would take 4 or 5 instructions (2 to load
1213 the SYMBOL_REF + 1 or 2 to load the newoffset + 1 to
1214 add the new offset and the SYMBOL_REF.) Combine can
1215 not handle 4->2 or 5->2 combinations, so do not create
1216 them. */
1217 if (! VAL_14_BITS_P (newoffset)
1218 && GET_CODE (XEXP (x, 0)) == SYMBOL_REF)
1220 rtx const_part = plus_constant (XEXP (x, 0), newoffset);
1221 rtx tmp_reg
1222 = force_reg (Pmode,
1223 gen_rtx_HIGH (Pmode, const_part));
1224 ptr_reg
1225 = force_reg (Pmode,
1226 gen_rtx_LO_SUM (Pmode,
1227 tmp_reg, const_part));
1229 else
1231 if (! VAL_14_BITS_P (newoffset))
1232 int_part = force_reg (Pmode, GEN_INT (newoffset));
1233 else
1234 int_part = GEN_INT (newoffset);
1236 ptr_reg = force_reg (Pmode,
1237 gen_rtx_PLUS (Pmode,
1238 force_reg (Pmode, XEXP (x, 0)),
1239 int_part));
1241 return plus_constant (ptr_reg, offset - newoffset);
1244 /* Handle (plus (mult (a) (shadd_constant)) (b)). */
1246 if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 0)) == MULT
1247 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
1248 && shadd_constant_p (INTVAL (XEXP (XEXP (x, 0), 1)))
1249 && (OBJECT_P (XEXP (x, 1))
1250 || GET_CODE (XEXP (x, 1)) == SUBREG)
1251 && GET_CODE (XEXP (x, 1)) != CONST)
1253 int val = INTVAL (XEXP (XEXP (x, 0), 1));
1254 rtx reg1, reg2;
1256 reg1 = XEXP (x, 1);
1257 if (GET_CODE (reg1) != REG)
1258 reg1 = force_reg (Pmode, force_operand (reg1, 0));
1260 reg2 = XEXP (XEXP (x, 0), 0);
1261 if (GET_CODE (reg2) != REG)
1262 reg2 = force_reg (Pmode, force_operand (reg2, 0));
1264 return force_reg (Pmode, gen_rtx_PLUS (Pmode,
1265 gen_rtx_MULT (Pmode,
1266 reg2,
1267 GEN_INT (val)),
1268 reg1));
1271 /* Similarly for (plus (plus (mult (a) (shadd_constant)) (b)) (c)).
1273 Only do so for floating point modes since this is more speculative
1274 and we lose if it's an integer store. */
1275 if (GET_CODE (x) == PLUS
1276 && GET_CODE (XEXP (x, 0)) == PLUS
1277 && GET_CODE (XEXP (XEXP (x, 0), 0)) == MULT
1278 && GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 1)) == CONST_INT
1279 && shadd_constant_p (INTVAL (XEXP (XEXP (XEXP (x, 0), 0), 1)))
1280 && (mode == SFmode || mode == DFmode))
1283 /* First, try and figure out what to use as a base register. */
1284 rtx reg1, reg2, base, idx, orig_base;
1286 reg1 = XEXP (XEXP (x, 0), 1);
1287 reg2 = XEXP (x, 1);
1288 base = NULL_RTX;
1289 idx = NULL_RTX;
1291 /* Make sure they're both regs. If one was a SYMBOL_REF [+ const],
1292 then emit_move_sequence will turn on REG_POINTER so we'll know
1293 it's a base register below. */
1294 if (GET_CODE (reg1) != REG)
1295 reg1 = force_reg (Pmode, force_operand (reg1, 0));
1297 if (GET_CODE (reg2) != REG)
1298 reg2 = force_reg (Pmode, force_operand (reg2, 0));
1300 /* Figure out what the base and index are. */
1302 if (GET_CODE (reg1) == REG
1303 && REG_POINTER (reg1))
1305 base = reg1;
1306 orig_base = XEXP (XEXP (x, 0), 1);
1307 idx = gen_rtx_PLUS (Pmode,
1308 gen_rtx_MULT (Pmode,
1309 XEXP (XEXP (XEXP (x, 0), 0), 0),
1310 XEXP (XEXP (XEXP (x, 0), 0), 1)),
1311 XEXP (x, 1));
1313 else if (GET_CODE (reg2) == REG
1314 && REG_POINTER (reg2))
1316 base = reg2;
1317 orig_base = XEXP (x, 1);
1318 idx = XEXP (x, 0);
1321 if (base == 0)
1322 return orig;
1324 /* If the index adds a large constant, try to scale the
1325 constant so that it can be loaded with only one insn. */
1326 if (GET_CODE (XEXP (idx, 1)) == CONST_INT
1327 && VAL_14_BITS_P (INTVAL (XEXP (idx, 1))
1328 / INTVAL (XEXP (XEXP (idx, 0), 1)))
1329 && INTVAL (XEXP (idx, 1)) % INTVAL (XEXP (XEXP (idx, 0), 1)) == 0)
1331 /* Divide the CONST_INT by the scale factor, then add it to A. */
1332 int val = INTVAL (XEXP (idx, 1));
1334 val /= INTVAL (XEXP (XEXP (idx, 0), 1));
1335 reg1 = XEXP (XEXP (idx, 0), 0);
1336 if (GET_CODE (reg1) != REG)
1337 reg1 = force_reg (Pmode, force_operand (reg1, 0));
1339 reg1 = force_reg (Pmode, gen_rtx_PLUS (Pmode, reg1, GEN_INT (val)));
1341 /* We can now generate a simple scaled indexed address. */
1342 return
1343 force_reg
1344 (Pmode, gen_rtx_PLUS (Pmode,
1345 gen_rtx_MULT (Pmode, reg1,
1346 XEXP (XEXP (idx, 0), 1)),
1347 base));
1350 /* If B + C is still a valid base register, then add them. */
1351 if (GET_CODE (XEXP (idx, 1)) == CONST_INT
1352 && INTVAL (XEXP (idx, 1)) <= 4096
1353 && INTVAL (XEXP (idx, 1)) >= -4096)
1355 int val = INTVAL (XEXP (XEXP (idx, 0), 1));
1356 rtx reg1, reg2;
1358 reg1 = force_reg (Pmode, gen_rtx_PLUS (Pmode, base, XEXP (idx, 1)));
1360 reg2 = XEXP (XEXP (idx, 0), 0);
1361 if (GET_CODE (reg2) != CONST_INT)
1362 reg2 = force_reg (Pmode, force_operand (reg2, 0));
1364 return force_reg (Pmode, gen_rtx_PLUS (Pmode,
1365 gen_rtx_MULT (Pmode,
1366 reg2,
1367 GEN_INT (val)),
1368 reg1));
1371 /* Get the index into a register, then add the base + index and
1372 return a register holding the result. */
1374 /* First get A into a register. */
1375 reg1 = XEXP (XEXP (idx, 0), 0);
1376 if (GET_CODE (reg1) != REG)
1377 reg1 = force_reg (Pmode, force_operand (reg1, 0));
1379 /* And get B into a register. */
1380 reg2 = XEXP (idx, 1);
1381 if (GET_CODE (reg2) != REG)
1382 reg2 = force_reg (Pmode, force_operand (reg2, 0));
1384 reg1 = force_reg (Pmode,
1385 gen_rtx_PLUS (Pmode,
1386 gen_rtx_MULT (Pmode, reg1,
1387 XEXP (XEXP (idx, 0), 1)),
1388 reg2));
1390 /* Add the result to our base register and return. */
1391 return force_reg (Pmode, gen_rtx_PLUS (Pmode, base, reg1));
1395 /* Uh-oh. We might have an address for x[n-100000]. This needs
1396 special handling to avoid creating an indexed memory address
1397 with x-100000 as the base.
1399 If the constant part is small enough, then it's still safe because
1400 there is a guard page at the beginning and end of the data segment.
1402 Scaled references are common enough that we want to try and rearrange the
1403 terms so that we can use indexing for these addresses too. Only
1404 do the optimization for floatint point modes. */
1406 if (GET_CODE (x) == PLUS
1407 && symbolic_expression_p (XEXP (x, 1)))
1409 /* Ugly. We modify things here so that the address offset specified
1410 by the index expression is computed first, then added to x to form
1411 the entire address. */
1413 rtx regx1, regx2, regy1, regy2, y;
1415 /* Strip off any CONST. */
1416 y = XEXP (x, 1);
1417 if (GET_CODE (y) == CONST)
1418 y = XEXP (y, 0);
1420 if (GET_CODE (y) == PLUS || GET_CODE (y) == MINUS)
1422 /* See if this looks like
1423 (plus (mult (reg) (shadd_const))
1424 (const (plus (symbol_ref) (const_int))))
1426 Where const_int is small. In that case the const
1427 expression is a valid pointer for indexing.
1429 If const_int is big, but can be divided evenly by shadd_const
1430 and added to (reg). This allows more scaled indexed addresses. */
1431 if (GET_CODE (XEXP (y, 0)) == SYMBOL_REF
1432 && GET_CODE (XEXP (x, 0)) == MULT
1433 && GET_CODE (XEXP (y, 1)) == CONST_INT
1434 && INTVAL (XEXP (y, 1)) >= -4096
1435 && INTVAL (XEXP (y, 1)) <= 4095
1436 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
1437 && shadd_constant_p (INTVAL (XEXP (XEXP (x, 0), 1))))
1439 int val = INTVAL (XEXP (XEXP (x, 0), 1));
1440 rtx reg1, reg2;
1442 reg1 = XEXP (x, 1);
1443 if (GET_CODE (reg1) != REG)
1444 reg1 = force_reg (Pmode, force_operand (reg1, 0));
1446 reg2 = XEXP (XEXP (x, 0), 0);
1447 if (GET_CODE (reg2) != REG)
1448 reg2 = force_reg (Pmode, force_operand (reg2, 0));
1450 return force_reg (Pmode,
1451 gen_rtx_PLUS (Pmode,
1452 gen_rtx_MULT (Pmode,
1453 reg2,
1454 GEN_INT (val)),
1455 reg1));
1457 else if ((mode == DFmode || mode == SFmode)
1458 && GET_CODE (XEXP (y, 0)) == SYMBOL_REF
1459 && GET_CODE (XEXP (x, 0)) == MULT
1460 && GET_CODE (XEXP (y, 1)) == CONST_INT
1461 && INTVAL (XEXP (y, 1)) % INTVAL (XEXP (XEXP (x, 0), 1)) == 0
1462 && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
1463 && shadd_constant_p (INTVAL (XEXP (XEXP (x, 0), 1))))
1465 regx1
1466 = force_reg (Pmode, GEN_INT (INTVAL (XEXP (y, 1))
1467 / INTVAL (XEXP (XEXP (x, 0), 1))));
1468 regx2 = XEXP (XEXP (x, 0), 0);
1469 if (GET_CODE (regx2) != REG)
1470 regx2 = force_reg (Pmode, force_operand (regx2, 0));
1471 regx2 = force_reg (Pmode, gen_rtx_fmt_ee (GET_CODE (y), Pmode,
1472 regx2, regx1));
1473 return
1474 force_reg (Pmode,
1475 gen_rtx_PLUS (Pmode,
1476 gen_rtx_MULT (Pmode, regx2,
1477 XEXP (XEXP (x, 0), 1)),
1478 force_reg (Pmode, XEXP (y, 0))));
1480 else if (GET_CODE (XEXP (y, 1)) == CONST_INT
1481 && INTVAL (XEXP (y, 1)) >= -4096
1482 && INTVAL (XEXP (y, 1)) <= 4095)
1484 /* This is safe because of the guard page at the
1485 beginning and end of the data space. Just
1486 return the original address. */
1487 return orig;
1489 else
1491 /* Doesn't look like one we can optimize. */
1492 regx1 = force_reg (Pmode, force_operand (XEXP (x, 0), 0));
1493 regy1 = force_reg (Pmode, force_operand (XEXP (y, 0), 0));
1494 regy2 = force_reg (Pmode, force_operand (XEXP (y, 1), 0));
1495 regx1 = force_reg (Pmode,
1496 gen_rtx_fmt_ee (GET_CODE (y), Pmode,
1497 regx1, regy2));
1498 return force_reg (Pmode, gen_rtx_PLUS (Pmode, regx1, regy1));
1503 return orig;
1506 /* For the HPPA, REG and REG+CONST is cost 0
1507 and addresses involving symbolic constants are cost 2.
1509 PIC addresses are very expensive.
1511 It is no coincidence that this has the same structure
1512 as GO_IF_LEGITIMATE_ADDRESS. */
1514 static int
1515 hppa_address_cost (rtx X)
1517 switch (GET_CODE (X))
1519 case REG:
1520 case PLUS:
1521 case LO_SUM:
1522 return 1;
1523 case HIGH:
1524 return 2;
1525 default:
1526 return 4;
1530 /* Compute a (partial) cost for rtx X. Return true if the complete
1531 cost has been computed, and false if subexpressions should be
1532 scanned. In either case, *TOTAL contains the cost result. */
1534 static bool
1535 hppa_rtx_costs (rtx x, int code, int outer_code, int *total)
1537 switch (code)
1539 case CONST_INT:
1540 if (INTVAL (x) == 0)
1541 *total = 0;
1542 else if (INT_14_BITS (x))
1543 *total = 1;
1544 else
1545 *total = 2;
1546 return true;
1548 case HIGH:
1549 *total = 2;
1550 return true;
1552 case CONST:
1553 case LABEL_REF:
1554 case SYMBOL_REF:
1555 *total = 4;
1556 return true;
1558 case CONST_DOUBLE:
1559 if ((x == CONST0_RTX (DFmode) || x == CONST0_RTX (SFmode))
1560 && outer_code != SET)
1561 *total = 0;
1562 else
1563 *total = 8;
1564 return true;
1566 case MULT:
1567 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
1568 *total = COSTS_N_INSNS (3);
1569 else if (TARGET_PA_11 && !TARGET_DISABLE_FPREGS && !TARGET_SOFT_FLOAT)
1570 *total = COSTS_N_INSNS (8);
1571 else
1572 *total = COSTS_N_INSNS (20);
1573 return true;
1575 case DIV:
1576 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
1578 *total = COSTS_N_INSNS (14);
1579 return true;
1581 /* FALLTHRU */
1583 case UDIV:
1584 case MOD:
1585 case UMOD:
1586 *total = COSTS_N_INSNS (60);
1587 return true;
1589 case PLUS: /* this includes shNadd insns */
1590 case MINUS:
1591 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
1592 *total = COSTS_N_INSNS (3);
1593 else
1594 *total = COSTS_N_INSNS (1);
1595 return true;
1597 case ASHIFT:
1598 case ASHIFTRT:
1599 case LSHIFTRT:
1600 *total = COSTS_N_INSNS (1);
1601 return true;
1603 default:
1604 return false;
1608 /* Ensure mode of ORIG, a REG rtx, is MODE. Returns either ORIG or a
1609 new rtx with the correct mode. */
1610 static inline rtx
1611 force_mode (enum machine_mode mode, rtx orig)
1613 if (mode == GET_MODE (orig))
1614 return orig;
1616 if (REGNO (orig) >= FIRST_PSEUDO_REGISTER)
1617 abort ();
1619 return gen_rtx_REG (mode, REGNO (orig));
1622 /* Emit insns to move operands[1] into operands[0].
1624 Return 1 if we have written out everything that needs to be done to
1625 do the move. Otherwise, return 0 and the caller will emit the move
1626 normally.
1628 Note SCRATCH_REG may not be in the proper mode depending on how it
1629 will be used. This routine is responsible for creating a new copy
1630 of SCRATCH_REG in the proper mode. */
1633 emit_move_sequence (rtx *operands, enum machine_mode mode, rtx scratch_reg)
1635 register rtx operand0 = operands[0];
1636 register rtx operand1 = operands[1];
1637 register rtx tem;
1639 /* We can only handle indexed addresses in the destination operand
1640 of floating point stores. Thus, we need to break out indexed
1641 addresses from the destination operand. */
1642 if (GET_CODE (operand0) == MEM && IS_INDEX_ADDR_P (XEXP (operand0, 0)))
1644 /* This is only safe up to the beginning of life analysis. */
1645 if (no_new_pseudos)
1646 abort ();
1648 tem = copy_to_mode_reg (Pmode, XEXP (operand0, 0));
1649 operand0 = replace_equiv_address (operand0, tem);
1652 /* On targets with non-equivalent space registers, break out unscaled
1653 indexed addresses from the source operand before the final CSE.
1654 We have to do this because the REG_POINTER flag is not correctly
1655 carried through various optimization passes and CSE may substitute
1656 a pseudo without the pointer set for one with the pointer set. As
1657 a result, we loose various opportunities to create insns with
1658 unscaled indexed addresses. */
1659 if (!TARGET_NO_SPACE_REGS
1660 && !cse_not_expected
1661 && GET_CODE (operand1) == MEM
1662 && GET_CODE (XEXP (operand1, 0)) == PLUS
1663 && REG_P (XEXP (XEXP (operand1, 0), 0))
1664 && REG_P (XEXP (XEXP (operand1, 0), 1)))
1665 operand1
1666 = replace_equiv_address (operand1,
1667 copy_to_mode_reg (Pmode, XEXP (operand1, 0)));
1669 if (scratch_reg
1670 && reload_in_progress && GET_CODE (operand0) == REG
1671 && REGNO (operand0) >= FIRST_PSEUDO_REGISTER)
1672 operand0 = reg_equiv_mem[REGNO (operand0)];
1673 else if (scratch_reg
1674 && reload_in_progress && GET_CODE (operand0) == SUBREG
1675 && GET_CODE (SUBREG_REG (operand0)) == REG
1676 && REGNO (SUBREG_REG (operand0)) >= FIRST_PSEUDO_REGISTER)
1678 /* We must not alter SUBREG_BYTE (operand0) since that would confuse
1679 the code which tracks sets/uses for delete_output_reload. */
1680 rtx temp = gen_rtx_SUBREG (GET_MODE (operand0),
1681 reg_equiv_mem [REGNO (SUBREG_REG (operand0))],
1682 SUBREG_BYTE (operand0));
1683 operand0 = alter_subreg (&temp);
1686 if (scratch_reg
1687 && reload_in_progress && GET_CODE (operand1) == REG
1688 && REGNO (operand1) >= FIRST_PSEUDO_REGISTER)
1689 operand1 = reg_equiv_mem[REGNO (operand1)];
1690 else if (scratch_reg
1691 && reload_in_progress && GET_CODE (operand1) == SUBREG
1692 && GET_CODE (SUBREG_REG (operand1)) == REG
1693 && REGNO (SUBREG_REG (operand1)) >= FIRST_PSEUDO_REGISTER)
1695 /* We must not alter SUBREG_BYTE (operand0) since that would confuse
1696 the code which tracks sets/uses for delete_output_reload. */
1697 rtx temp = gen_rtx_SUBREG (GET_MODE (operand1),
1698 reg_equiv_mem [REGNO (SUBREG_REG (operand1))],
1699 SUBREG_BYTE (operand1));
1700 operand1 = alter_subreg (&temp);
1703 if (scratch_reg && reload_in_progress && GET_CODE (operand0) == MEM
1704 && ((tem = find_replacement (&XEXP (operand0, 0)))
1705 != XEXP (operand0, 0)))
1706 operand0 = gen_rtx_MEM (GET_MODE (operand0), tem);
1708 if (scratch_reg && reload_in_progress && GET_CODE (operand1) == MEM
1709 && ((tem = find_replacement (&XEXP (operand1, 0)))
1710 != XEXP (operand1, 0)))
1711 operand1 = gen_rtx_MEM (GET_MODE (operand1), tem);
1713 /* Handle secondary reloads for loads/stores of FP registers from
1714 REG+D addresses where D does not fit in 5 or 14 bits, including
1715 (subreg (mem (addr))) cases. */
1716 if (scratch_reg
1717 && fp_reg_operand (operand0, mode)
1718 && ((GET_CODE (operand1) == MEM
1719 && !memory_address_p ((GET_MODE_SIZE (mode) == 4 ? SFmode : DFmode),
1720 XEXP (operand1, 0)))
1721 || ((GET_CODE (operand1) == SUBREG
1722 && GET_CODE (XEXP (operand1, 0)) == MEM
1723 && !memory_address_p ((GET_MODE_SIZE (mode) == 4
1724 ? SFmode : DFmode),
1725 XEXP (XEXP (operand1, 0), 0))))))
1727 if (GET_CODE (operand1) == SUBREG)
1728 operand1 = XEXP (operand1, 0);
1730 /* SCRATCH_REG will hold an address and maybe the actual data. We want
1731 it in WORD_MODE regardless of what mode it was originally given
1732 to us. */
1733 scratch_reg = force_mode (word_mode, scratch_reg);
1735 /* D might not fit in 14 bits either; for such cases load D into
1736 scratch reg. */
1737 if (!memory_address_p (Pmode, XEXP (operand1, 0)))
1739 emit_move_insn (scratch_reg, XEXP (XEXP (operand1, 0), 1));
1740 emit_move_insn (scratch_reg,
1741 gen_rtx_fmt_ee (GET_CODE (XEXP (operand1, 0)),
1742 Pmode,
1743 XEXP (XEXP (operand1, 0), 0),
1744 scratch_reg));
1746 else
1747 emit_move_insn (scratch_reg, XEXP (operand1, 0));
1748 emit_insn (gen_rtx_SET (VOIDmode, operand0,
1749 gen_rtx_MEM (mode, scratch_reg)));
1750 return 1;
1752 else if (scratch_reg
1753 && fp_reg_operand (operand1, mode)
1754 && ((GET_CODE (operand0) == MEM
1755 && !memory_address_p ((GET_MODE_SIZE (mode) == 4
1756 ? SFmode : DFmode),
1757 XEXP (operand0, 0)))
1758 || ((GET_CODE (operand0) == SUBREG)
1759 && GET_CODE (XEXP (operand0, 0)) == MEM
1760 && !memory_address_p ((GET_MODE_SIZE (mode) == 4
1761 ? SFmode : DFmode),
1762 XEXP (XEXP (operand0, 0), 0)))))
1764 if (GET_CODE (operand0) == SUBREG)
1765 operand0 = XEXP (operand0, 0);
1767 /* SCRATCH_REG will hold an address and maybe the actual data. We want
1768 it in WORD_MODE regardless of what mode it was originally given
1769 to us. */
1770 scratch_reg = force_mode (word_mode, scratch_reg);
1772 /* D might not fit in 14 bits either; for such cases load D into
1773 scratch reg. */
1774 if (!memory_address_p (Pmode, XEXP (operand0, 0)))
1776 emit_move_insn (scratch_reg, XEXP (XEXP (operand0, 0), 1));
1777 emit_move_insn (scratch_reg, gen_rtx_fmt_ee (GET_CODE (XEXP (operand0,
1778 0)),
1779 Pmode,
1780 XEXP (XEXP (operand0, 0),
1782 scratch_reg));
1784 else
1785 emit_move_insn (scratch_reg, XEXP (operand0, 0));
1786 emit_insn (gen_rtx_SET (VOIDmode, gen_rtx_MEM (mode, scratch_reg),
1787 operand1));
1788 return 1;
1790 /* Handle secondary reloads for loads of FP registers from constant
1791 expressions by forcing the constant into memory.
1793 Use scratch_reg to hold the address of the memory location.
1795 The proper fix is to change PREFERRED_RELOAD_CLASS to return
1796 NO_REGS when presented with a const_int and a register class
1797 containing only FP registers. Doing so unfortunately creates
1798 more problems than it solves. Fix this for 2.5. */
1799 else if (scratch_reg
1800 && CONSTANT_P (operand1)
1801 && fp_reg_operand (operand0, mode))
1803 rtx xoperands[2];
1805 /* SCRATCH_REG will hold an address and maybe the actual data. We want
1806 it in WORD_MODE regardless of what mode it was originally given
1807 to us. */
1808 scratch_reg = force_mode (word_mode, scratch_reg);
1810 /* Force the constant into memory and put the address of the
1811 memory location into scratch_reg. */
1812 xoperands[0] = scratch_reg;
1813 xoperands[1] = XEXP (force_const_mem (mode, operand1), 0);
1814 emit_move_sequence (xoperands, Pmode, 0);
1816 /* Now load the destination register. */
1817 emit_insn (gen_rtx_SET (mode, operand0,
1818 gen_rtx_MEM (mode, scratch_reg)));
1819 return 1;
1821 /* Handle secondary reloads for SAR. These occur when trying to load
1822 the SAR from memory, FP register, or with a constant. */
1823 else if (scratch_reg
1824 && GET_CODE (operand0) == REG
1825 && REGNO (operand0) < FIRST_PSEUDO_REGISTER
1826 && REGNO_REG_CLASS (REGNO (operand0)) == SHIFT_REGS
1827 && (GET_CODE (operand1) == MEM
1828 || GET_CODE (operand1) == CONST_INT
1829 || (GET_CODE (operand1) == REG
1830 && FP_REG_CLASS_P (REGNO_REG_CLASS (REGNO (operand1))))))
1832 /* D might not fit in 14 bits either; for such cases load D into
1833 scratch reg. */
1834 if (GET_CODE (operand1) == MEM
1835 && !memory_address_p (Pmode, XEXP (operand1, 0)))
1837 /* We are reloading the address into the scratch register, so we
1838 want to make sure the scratch register is a full register. */
1839 scratch_reg = force_mode (word_mode, scratch_reg);
1841 emit_move_insn (scratch_reg, XEXP (XEXP (operand1, 0), 1));
1842 emit_move_insn (scratch_reg, gen_rtx_fmt_ee (GET_CODE (XEXP (operand1,
1843 0)),
1844 Pmode,
1845 XEXP (XEXP (operand1, 0),
1847 scratch_reg));
1849 /* Now we are going to load the scratch register from memory,
1850 we want to load it in the same width as the original MEM,
1851 which must be the same as the width of the ultimate destination,
1852 OPERAND0. */
1853 scratch_reg = force_mode (GET_MODE (operand0), scratch_reg);
1855 emit_move_insn (scratch_reg, gen_rtx_MEM (GET_MODE (operand0),
1856 scratch_reg));
1858 else
1860 /* We want to load the scratch register using the same mode as
1861 the ultimate destination. */
1862 scratch_reg = force_mode (GET_MODE (operand0), scratch_reg);
1864 emit_move_insn (scratch_reg, operand1);
1867 /* And emit the insn to set the ultimate destination. We know that
1868 the scratch register has the same mode as the destination at this
1869 point. */
1870 emit_move_insn (operand0, scratch_reg);
1871 return 1;
1873 /* Handle the most common case: storing into a register. */
1874 else if (register_operand (operand0, mode))
1876 if (register_operand (operand1, mode)
1877 || (GET_CODE (operand1) == CONST_INT
1878 && cint_ok_for_move (INTVAL (operand1)))
1879 || (operand1 == CONST0_RTX (mode))
1880 || (GET_CODE (operand1) == HIGH
1881 && !symbolic_operand (XEXP (operand1, 0), VOIDmode))
1882 /* Only `general_operands' can come here, so MEM is ok. */
1883 || GET_CODE (operand1) == MEM)
1885 /* Various sets are created during RTL generation which don't
1886 have the REG_POINTER flag correctly set. After the CSE pass,
1887 instruction recognition can fail if we don't consistently
1888 set this flag when performing register copies. This should
1889 also improve the opportunities for creating insns that use
1890 unscaled indexing. */
1891 if (REG_P (operand0) && REG_P (operand1))
1893 if (REG_POINTER (operand1)
1894 && !REG_POINTER (operand0)
1895 && !HARD_REGISTER_P (operand0))
1896 copy_reg_pointer (operand0, operand1);
1897 else if (REG_POINTER (operand0)
1898 && !REG_POINTER (operand1)
1899 && !HARD_REGISTER_P (operand1))
1900 copy_reg_pointer (operand1, operand0);
1903 /* When MEMs are broken out, the REG_POINTER flag doesn't
1904 get set. In some cases, we can set the REG_POINTER flag
1905 from the declaration for the MEM. */
1906 if (REG_P (operand0)
1907 && GET_CODE (operand1) == MEM
1908 && !REG_POINTER (operand0))
1910 tree decl = MEM_EXPR (operand1);
1912 /* Set the register pointer flag and register alignment
1913 if the declaration for this memory reference is a
1914 pointer type. Fortran indirect argument references
1915 are ignored. */
1916 if (decl
1917 && !(flag_argument_noalias > 1
1918 && TREE_CODE (decl) == INDIRECT_REF
1919 && TREE_CODE (TREE_OPERAND (decl, 0)) == PARM_DECL))
1921 tree type;
1923 /* If this is a COMPONENT_REF, use the FIELD_DECL from
1924 tree operand 1. */
1925 if (TREE_CODE (decl) == COMPONENT_REF)
1926 decl = TREE_OPERAND (decl, 1);
1928 type = TREE_TYPE (decl);
1929 if (TREE_CODE (type) == ARRAY_TYPE)
1930 type = get_inner_array_type (type);
1932 if (POINTER_TYPE_P (type))
1934 int align;
1936 type = TREE_TYPE (type);
1937 /* Using TYPE_ALIGN_OK is rather conservative as
1938 only the ada frontend actually sets it. */
1939 align = (TYPE_ALIGN_OK (type) ? TYPE_ALIGN (type)
1940 : BITS_PER_UNIT);
1941 mark_reg_pointer (operand0, align);
1946 emit_insn (gen_rtx_SET (VOIDmode, operand0, operand1));
1947 return 1;
1950 else if (GET_CODE (operand0) == MEM)
1952 if (mode == DFmode && operand1 == CONST0_RTX (mode)
1953 && !(reload_in_progress || reload_completed))
1955 rtx temp = gen_reg_rtx (DFmode);
1957 emit_insn (gen_rtx_SET (VOIDmode, temp, operand1));
1958 emit_insn (gen_rtx_SET (VOIDmode, operand0, temp));
1959 return 1;
1961 if (register_operand (operand1, mode) || operand1 == CONST0_RTX (mode))
1963 /* Run this case quickly. */
1964 emit_insn (gen_rtx_SET (VOIDmode, operand0, operand1));
1965 return 1;
1967 if (! (reload_in_progress || reload_completed))
1969 operands[0] = validize_mem (operand0);
1970 operands[1] = operand1 = force_reg (mode, operand1);
1974 /* Simplify the source if we need to.
1975 Note we do have to handle function labels here, even though we do
1976 not consider them legitimate constants. Loop optimizations can
1977 call the emit_move_xxx with one as a source. */
1978 if ((GET_CODE (operand1) != HIGH && immediate_operand (operand1, mode))
1979 || function_label_operand (operand1, mode)
1980 || (GET_CODE (operand1) == HIGH
1981 && symbolic_operand (XEXP (operand1, 0), mode)))
1983 int ishighonly = 0;
1985 if (GET_CODE (operand1) == HIGH)
1987 ishighonly = 1;
1988 operand1 = XEXP (operand1, 0);
1990 if (symbolic_operand (operand1, mode))
1992 /* Argh. The assembler and linker can't handle arithmetic
1993 involving plabels.
1995 So we force the plabel into memory, load operand0 from
1996 the memory location, then add in the constant part. */
1997 if ((GET_CODE (operand1) == CONST
1998 && GET_CODE (XEXP (operand1, 0)) == PLUS
1999 && function_label_operand (XEXP (XEXP (operand1, 0), 0), Pmode))
2000 || function_label_operand (operand1, mode))
2002 rtx temp, const_part;
2004 /* Figure out what (if any) scratch register to use. */
2005 if (reload_in_progress || reload_completed)
2007 scratch_reg = scratch_reg ? scratch_reg : operand0;
2008 /* SCRATCH_REG will hold an address and maybe the actual
2009 data. We want it in WORD_MODE regardless of what mode it
2010 was originally given to us. */
2011 scratch_reg = force_mode (word_mode, scratch_reg);
2013 else if (flag_pic)
2014 scratch_reg = gen_reg_rtx (Pmode);
2016 if (GET_CODE (operand1) == CONST)
2018 /* Save away the constant part of the expression. */
2019 const_part = XEXP (XEXP (operand1, 0), 1);
2020 if (GET_CODE (const_part) != CONST_INT)
2021 abort ();
2023 /* Force the function label into memory. */
2024 temp = force_const_mem (mode, XEXP (XEXP (operand1, 0), 0));
2026 else
2028 /* No constant part. */
2029 const_part = NULL_RTX;
2031 /* Force the function label into memory. */
2032 temp = force_const_mem (mode, operand1);
2036 /* Get the address of the memory location. PIC-ify it if
2037 necessary. */
2038 temp = XEXP (temp, 0);
2039 if (flag_pic)
2040 temp = legitimize_pic_address (temp, mode, scratch_reg);
2042 /* Put the address of the memory location into our destination
2043 register. */
2044 operands[1] = temp;
2045 emit_move_sequence (operands, mode, scratch_reg);
2047 /* Now load from the memory location into our destination
2048 register. */
2049 operands[1] = gen_rtx_MEM (Pmode, operands[0]);
2050 emit_move_sequence (operands, mode, scratch_reg);
2052 /* And add back in the constant part. */
2053 if (const_part != NULL_RTX)
2054 expand_inc (operand0, const_part);
2056 return 1;
2059 if (flag_pic)
2061 rtx temp;
2063 if (reload_in_progress || reload_completed)
2065 temp = scratch_reg ? scratch_reg : operand0;
2066 /* TEMP will hold an address and maybe the actual
2067 data. We want it in WORD_MODE regardless of what mode it
2068 was originally given to us. */
2069 temp = force_mode (word_mode, temp);
2071 else
2072 temp = gen_reg_rtx (Pmode);
2074 /* (const (plus (symbol) (const_int))) must be forced to
2075 memory during/after reload if the const_int will not fit
2076 in 14 bits. */
2077 if (GET_CODE (operand1) == CONST
2078 && GET_CODE (XEXP (operand1, 0)) == PLUS
2079 && GET_CODE (XEXP (XEXP (operand1, 0), 1)) == CONST_INT
2080 && !INT_14_BITS (XEXP (XEXP (operand1, 0), 1))
2081 && (reload_completed || reload_in_progress)
2082 && flag_pic)
2084 operands[1] = force_const_mem (mode, operand1);
2085 operands[1] = legitimize_pic_address (XEXP (operands[1], 0),
2086 mode, temp);
2087 operands[1] = gen_rtx_MEM (mode, operands[1]);
2088 emit_move_sequence (operands, mode, temp);
2090 else
2092 operands[1] = legitimize_pic_address (operand1, mode, temp);
2093 if (REG_P (operand0) && REG_P (operands[1]))
2094 copy_reg_pointer (operand0, operands[1]);
2095 emit_insn (gen_rtx_SET (VOIDmode, operand0, operands[1]));
2098 /* On the HPPA, references to data space are supposed to use dp,
2099 register 27, but showing it in the RTL inhibits various cse
2100 and loop optimizations. */
2101 else
2103 rtx temp, set;
2105 if (reload_in_progress || reload_completed)
2107 temp = scratch_reg ? scratch_reg : operand0;
2108 /* TEMP will hold an address and maybe the actual
2109 data. We want it in WORD_MODE regardless of what mode it
2110 was originally given to us. */
2111 temp = force_mode (word_mode, temp);
2113 else
2114 temp = gen_reg_rtx (mode);
2116 /* Loading a SYMBOL_REF into a register makes that register
2117 safe to be used as the base in an indexed address.
2119 Don't mark hard registers though. That loses. */
2120 if (GET_CODE (operand0) == REG
2121 && REGNO (operand0) >= FIRST_PSEUDO_REGISTER)
2122 mark_reg_pointer (operand0, BITS_PER_UNIT);
2123 if (REGNO (temp) >= FIRST_PSEUDO_REGISTER)
2124 mark_reg_pointer (temp, BITS_PER_UNIT);
2126 if (ishighonly)
2127 set = gen_rtx_SET (mode, operand0, temp);
2128 else
2129 set = gen_rtx_SET (VOIDmode,
2130 operand0,
2131 gen_rtx_LO_SUM (mode, temp, operand1));
2133 emit_insn (gen_rtx_SET (VOIDmode,
2134 temp,
2135 gen_rtx_HIGH (mode, operand1)));
2136 emit_insn (set);
2139 return 1;
2141 else if (GET_CODE (operand1) != CONST_INT
2142 || !cint_ok_for_move (INTVAL (operand1)))
2144 rtx insn, temp;
2145 rtx op1 = operand1;
2146 HOST_WIDE_INT value = 0;
2147 HOST_WIDE_INT insv = 0;
2148 int insert = 0;
2150 if (GET_CODE (operand1) == CONST_INT)
2151 value = INTVAL (operand1);
2153 if (TARGET_64BIT
2154 && GET_CODE (operand1) == CONST_INT
2155 && HOST_BITS_PER_WIDE_INT > 32
2156 && GET_MODE_BITSIZE (GET_MODE (operand0)) > 32)
2158 HOST_WIDE_INT nval;
2160 /* Extract the low order 32 bits of the value and sign extend.
2161 If the new value is the same as the original value, we can
2162 can use the original value as-is. If the new value is
2163 different, we use it and insert the most-significant 32-bits
2164 of the original value into the final result. */
2165 nval = ((value & (((HOST_WIDE_INT) 2 << 31) - 1))
2166 ^ ((HOST_WIDE_INT) 1 << 31)) - ((HOST_WIDE_INT) 1 << 31);
2167 if (value != nval)
2169 #if HOST_BITS_PER_WIDE_INT > 32
2170 insv = value >= 0 ? value >> 32 : ~(~value >> 32);
2171 #endif
2172 insert = 1;
2173 value = nval;
2174 operand1 = GEN_INT (nval);
2178 if (reload_in_progress || reload_completed)
2179 temp = scratch_reg ? scratch_reg : operand0;
2180 else
2181 temp = gen_reg_rtx (mode);
2183 /* We don't directly split DImode constants on 32-bit targets
2184 because PLUS uses an 11-bit immediate and the insn sequence
2185 generated is not as efficient as the one using HIGH/LO_SUM. */
2186 if (GET_CODE (operand1) == CONST_INT
2187 && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
2188 && !insert)
2190 /* Directly break constant into high and low parts. This
2191 provides better optimization opportunities because various
2192 passes recognize constants split with PLUS but not LO_SUM.
2193 We use a 14-bit signed low part except when the addition
2194 of 0x4000 to the high part might change the sign of the
2195 high part. */
2196 HOST_WIDE_INT low = value & 0x3fff;
2197 HOST_WIDE_INT high = value & ~ 0x3fff;
2199 if (low >= 0x2000)
2201 if (high == 0x7fffc000 || (mode == HImode && high == 0x4000))
2202 high += 0x2000;
2203 else
2204 high += 0x4000;
2207 low = value - high;
2209 emit_insn (gen_rtx_SET (VOIDmode, temp, GEN_INT (high)));
2210 operands[1] = gen_rtx_PLUS (mode, temp, GEN_INT (low));
2212 else
2214 emit_insn (gen_rtx_SET (VOIDmode, temp,
2215 gen_rtx_HIGH (mode, operand1)));
2216 operands[1] = gen_rtx_LO_SUM (mode, temp, operand1);
2219 insn = emit_move_insn (operands[0], operands[1]);
2221 /* Now insert the most significant 32 bits of the value
2222 into the register. When we don't have a second register
2223 available, it could take up to nine instructions to load
2224 a 64-bit integer constant. Prior to reload, we force
2225 constants that would take more than three instructions
2226 to load to the constant pool. During and after reload,
2227 we have to handle all possible values. */
2228 if (insert)
2230 /* Use a HIGH/LO_SUM/INSV sequence if we have a second
2231 register and the value to be inserted is outside the
2232 range that can be loaded with three depdi instructions. */
2233 if (temp != operand0 && (insv >= 16384 || insv < -16384))
2235 operand1 = GEN_INT (insv);
2237 emit_insn (gen_rtx_SET (VOIDmode, temp,
2238 gen_rtx_HIGH (mode, operand1)));
2239 emit_move_insn (temp, gen_rtx_LO_SUM (mode, temp, operand1));
2240 emit_insn (gen_insv (operand0, GEN_INT (32),
2241 const0_rtx, temp));
2243 else
2245 int len = 5, pos = 27;
2247 /* Insert the bits using the depdi instruction. */
2248 while (pos >= 0)
2250 HOST_WIDE_INT v5 = ((insv & 31) ^ 16) - 16;
2251 HOST_WIDE_INT sign = v5 < 0;
2253 /* Left extend the insertion. */
2254 insv = (insv >= 0 ? insv >> len : ~(~insv >> len));
2255 while (pos > 0 && (insv & 1) == sign)
2257 insv = (insv >= 0 ? insv >> 1 : ~(~insv >> 1));
2258 len += 1;
2259 pos -= 1;
2262 emit_insn (gen_insv (operand0, GEN_INT (len),
2263 GEN_INT (pos), GEN_INT (v5)));
2265 len = pos > 0 && pos < 5 ? pos : 5;
2266 pos -= len;
2271 REG_NOTES (insn)
2272 = gen_rtx_EXPR_LIST (REG_EQUAL, op1, REG_NOTES (insn));
2274 return 1;
2277 /* Now have insn-emit do whatever it normally does. */
2278 return 0;
2281 /* Examine EXP and return nonzero if it contains an ADDR_EXPR (meaning
2282 it will need a link/runtime reloc). */
2285 reloc_needed (tree exp)
2287 int reloc = 0;
2289 switch (TREE_CODE (exp))
2291 case ADDR_EXPR:
2292 return 1;
2294 case PLUS_EXPR:
2295 case MINUS_EXPR:
2296 reloc = reloc_needed (TREE_OPERAND (exp, 0));
2297 reloc |= reloc_needed (TREE_OPERAND (exp, 1));
2298 break;
2300 case NOP_EXPR:
2301 case CONVERT_EXPR:
2302 case NON_LVALUE_EXPR:
2303 reloc = reloc_needed (TREE_OPERAND (exp, 0));
2304 break;
2306 case CONSTRUCTOR:
2308 register tree link;
2309 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2310 if (TREE_VALUE (link) != 0)
2311 reloc |= reloc_needed (TREE_VALUE (link));
2313 break;
2315 case ERROR_MARK:
2316 break;
2318 default:
2319 break;
2321 return reloc;
2324 /* Does operand (which is a symbolic_operand) live in text space?
2325 If so, SYMBOL_REF_FLAG, which is set by pa_encode_section_info,
2326 will be true. */
2329 read_only_operand (rtx operand, enum machine_mode mode ATTRIBUTE_UNUSED)
2331 if (GET_CODE (operand) == CONST)
2332 operand = XEXP (XEXP (operand, 0), 0);
2333 if (flag_pic)
2335 if (GET_CODE (operand) == SYMBOL_REF)
2336 return SYMBOL_REF_FLAG (operand) && !CONSTANT_POOL_ADDRESS_P (operand);
2338 else
2340 if (GET_CODE (operand) == SYMBOL_REF)
2341 return SYMBOL_REF_FLAG (operand) || CONSTANT_POOL_ADDRESS_P (operand);
2343 return 1;
2347 /* Return the best assembler insn template
2348 for moving operands[1] into operands[0] as a fullword. */
2349 const char *
2350 singlemove_string (rtx *operands)
2352 HOST_WIDE_INT intval;
2354 if (GET_CODE (operands[0]) == MEM)
2355 return "stw %r1,%0";
2356 if (GET_CODE (operands[1]) == MEM)
2357 return "ldw %1,%0";
2358 if (GET_CODE (operands[1]) == CONST_DOUBLE)
2360 long i;
2361 REAL_VALUE_TYPE d;
2363 if (GET_MODE (operands[1]) != SFmode)
2364 abort ();
2366 /* Translate the CONST_DOUBLE to a CONST_INT with the same target
2367 bit pattern. */
2368 REAL_VALUE_FROM_CONST_DOUBLE (d, operands[1]);
2369 REAL_VALUE_TO_TARGET_SINGLE (d, i);
2371 operands[1] = GEN_INT (i);
2372 /* Fall through to CONST_INT case. */
2374 if (GET_CODE (operands[1]) == CONST_INT)
2376 intval = INTVAL (operands[1]);
2378 if (VAL_14_BITS_P (intval))
2379 return "ldi %1,%0";
2380 else if ((intval & 0x7ff) == 0)
2381 return "ldil L'%1,%0";
2382 else if (zdepi_cint_p (intval))
2383 return "{zdepi %Z1,%0|depwi,z %Z1,%0}";
2384 else
2385 return "ldil L'%1,%0\n\tldo R'%1(%0),%0";
2387 return "copy %1,%0";
2391 /* Compute position (in OP[1]) and width (in OP[2])
2392 useful for copying IMM to a register using the zdepi
2393 instructions. Store the immediate value to insert in OP[0]. */
2394 static void
2395 compute_zdepwi_operands (unsigned HOST_WIDE_INT imm, unsigned *op)
2397 int lsb, len;
2399 /* Find the least significant set bit in IMM. */
2400 for (lsb = 0; lsb < 32; lsb++)
2402 if ((imm & 1) != 0)
2403 break;
2404 imm >>= 1;
2407 /* Choose variants based on *sign* of the 5-bit field. */
2408 if ((imm & 0x10) == 0)
2409 len = (lsb <= 28) ? 4 : 32 - lsb;
2410 else
2412 /* Find the width of the bitstring in IMM. */
2413 for (len = 5; len < 32; len++)
2415 if ((imm & (1 << len)) == 0)
2416 break;
2419 /* Sign extend IMM as a 5-bit value. */
2420 imm = (imm & 0xf) - 0x10;
2423 op[0] = imm;
2424 op[1] = 31 - lsb;
2425 op[2] = len;
2428 /* Compute position (in OP[1]) and width (in OP[2])
2429 useful for copying IMM to a register using the depdi,z
2430 instructions. Store the immediate value to insert in OP[0]. */
2431 void
2432 compute_zdepdi_operands (unsigned HOST_WIDE_INT imm, unsigned *op)
2434 HOST_WIDE_INT lsb, len;
2436 /* Find the least significant set bit in IMM. */
2437 for (lsb = 0; lsb < HOST_BITS_PER_WIDE_INT; lsb++)
2439 if ((imm & 1) != 0)
2440 break;
2441 imm >>= 1;
2444 /* Choose variants based on *sign* of the 5-bit field. */
2445 if ((imm & 0x10) == 0)
2446 len = ((lsb <= HOST_BITS_PER_WIDE_INT - 4)
2447 ? 4 : HOST_BITS_PER_WIDE_INT - lsb);
2448 else
2450 /* Find the width of the bitstring in IMM. */
2451 for (len = 5; len < HOST_BITS_PER_WIDE_INT; len++)
2453 if ((imm & ((unsigned HOST_WIDE_INT) 1 << len)) == 0)
2454 break;
2457 /* Sign extend IMM as a 5-bit value. */
2458 imm = (imm & 0xf) - 0x10;
2461 op[0] = imm;
2462 op[1] = 63 - lsb;
2463 op[2] = len;
2466 /* Output assembler code to perform a doubleword move insn
2467 with operands OPERANDS. */
2469 const char *
2470 output_move_double (rtx *operands)
2472 enum { REGOP, OFFSOP, MEMOP, CNSTOP, RNDOP } optype0, optype1;
2473 rtx latehalf[2];
2474 rtx addreg0 = 0, addreg1 = 0;
2476 /* First classify both operands. */
2478 if (REG_P (operands[0]))
2479 optype0 = REGOP;
2480 else if (offsettable_memref_p (operands[0]))
2481 optype0 = OFFSOP;
2482 else if (GET_CODE (operands[0]) == MEM)
2483 optype0 = MEMOP;
2484 else
2485 optype0 = RNDOP;
2487 if (REG_P (operands[1]))
2488 optype1 = REGOP;
2489 else if (CONSTANT_P (operands[1]))
2490 optype1 = CNSTOP;
2491 else if (offsettable_memref_p (operands[1]))
2492 optype1 = OFFSOP;
2493 else if (GET_CODE (operands[1]) == MEM)
2494 optype1 = MEMOP;
2495 else
2496 optype1 = RNDOP;
2498 /* Check for the cases that the operand constraints are not
2499 supposed to allow to happen. Abort if we get one,
2500 because generating code for these cases is painful. */
2502 if (optype0 != REGOP && optype1 != REGOP)
2503 abort ();
2505 /* Handle auto decrementing and incrementing loads and stores
2506 specifically, since the structure of the function doesn't work
2507 for them without major modification. Do it better when we learn
2508 this port about the general inc/dec addressing of PA.
2509 (This was written by tege. Chide him if it doesn't work.) */
2511 if (optype0 == MEMOP)
2513 /* We have to output the address syntax ourselves, since print_operand
2514 doesn't deal with the addresses we want to use. Fix this later. */
2516 rtx addr = XEXP (operands[0], 0);
2517 if (GET_CODE (addr) == POST_INC || GET_CODE (addr) == POST_DEC)
2519 rtx high_reg = gen_rtx_SUBREG (SImode, operands[1], 0);
2521 operands[0] = XEXP (addr, 0);
2522 if (GET_CODE (operands[1]) != REG || GET_CODE (operands[0]) != REG)
2523 abort ();
2525 if (!reg_overlap_mentioned_p (high_reg, addr))
2527 /* No overlap between high target register and address
2528 register. (We do this in a non-obvious way to
2529 save a register file writeback) */
2530 if (GET_CODE (addr) == POST_INC)
2531 return "{stws|stw},ma %1,8(%0)\n\tstw %R1,-4(%0)";
2532 return "{stws|stw},ma %1,-8(%0)\n\tstw %R1,12(%0)";
2534 else
2535 abort ();
2537 else if (GET_CODE (addr) == PRE_INC || GET_CODE (addr) == PRE_DEC)
2539 rtx high_reg = gen_rtx_SUBREG (SImode, operands[1], 0);
2541 operands[0] = XEXP (addr, 0);
2542 if (GET_CODE (operands[1]) != REG || GET_CODE (operands[0]) != REG)
2543 abort ();
2545 if (!reg_overlap_mentioned_p (high_reg, addr))
2547 /* No overlap between high target register and address
2548 register. (We do this in a non-obvious way to
2549 save a register file writeback) */
2550 if (GET_CODE (addr) == PRE_INC)
2551 return "{stws|stw},mb %1,8(%0)\n\tstw %R1,4(%0)";
2552 return "{stws|stw},mb %1,-8(%0)\n\tstw %R1,4(%0)";
2554 else
2555 abort ();
2558 if (optype1 == MEMOP)
2560 /* We have to output the address syntax ourselves, since print_operand
2561 doesn't deal with the addresses we want to use. Fix this later. */
2563 rtx addr = XEXP (operands[1], 0);
2564 if (GET_CODE (addr) == POST_INC || GET_CODE (addr) == POST_DEC)
2566 rtx high_reg = gen_rtx_SUBREG (SImode, operands[0], 0);
2568 operands[1] = XEXP (addr, 0);
2569 if (GET_CODE (operands[0]) != REG || GET_CODE (operands[1]) != REG)
2570 abort ();
2572 if (!reg_overlap_mentioned_p (high_reg, addr))
2574 /* No overlap between high target register and address
2575 register. (We do this in a non-obvious way to
2576 save a register file writeback) */
2577 if (GET_CODE (addr) == POST_INC)
2578 return "{ldws|ldw},ma 8(%1),%0\n\tldw -4(%1),%R0";
2579 return "{ldws|ldw},ma -8(%1),%0\n\tldw 12(%1),%R0";
2581 else
2583 /* This is an undefined situation. We should load into the
2584 address register *and* update that register. Probably
2585 we don't need to handle this at all. */
2586 if (GET_CODE (addr) == POST_INC)
2587 return "ldw 4(%1),%R0\n\t{ldws|ldw},ma 8(%1),%0";
2588 return "ldw 4(%1),%R0\n\t{ldws|ldw},ma -8(%1),%0";
2591 else if (GET_CODE (addr) == PRE_INC || GET_CODE (addr) == PRE_DEC)
2593 rtx high_reg = gen_rtx_SUBREG (SImode, operands[0], 0);
2595 operands[1] = XEXP (addr, 0);
2596 if (GET_CODE (operands[0]) != REG || GET_CODE (operands[1]) != REG)
2597 abort ();
2599 if (!reg_overlap_mentioned_p (high_reg, addr))
2601 /* No overlap between high target register and address
2602 register. (We do this in a non-obvious way to
2603 save a register file writeback) */
2604 if (GET_CODE (addr) == PRE_INC)
2605 return "{ldws|ldw},mb 8(%1),%0\n\tldw 4(%1),%R0";
2606 return "{ldws|ldw},mb -8(%1),%0\n\tldw 4(%1),%R0";
2608 else
2610 /* This is an undefined situation. We should load into the
2611 address register *and* update that register. Probably
2612 we don't need to handle this at all. */
2613 if (GET_CODE (addr) == PRE_INC)
2614 return "ldw 12(%1),%R0\n\t{ldws|ldw},mb 8(%1),%0";
2615 return "ldw -4(%1),%R0\n\t{ldws|ldw},mb -8(%1),%0";
2618 else if (GET_CODE (addr) == PLUS
2619 && GET_CODE (XEXP (addr, 0)) == MULT)
2621 rtx high_reg = gen_rtx_SUBREG (SImode, operands[0], 0);
2623 if (!reg_overlap_mentioned_p (high_reg, addr))
2625 rtx xoperands[3];
2627 xoperands[0] = high_reg;
2628 xoperands[1] = XEXP (addr, 1);
2629 xoperands[2] = XEXP (XEXP (addr, 0), 0);
2630 xoperands[3] = XEXP (XEXP (addr, 0), 1);
2631 output_asm_insn ("{sh%O3addl %2,%1,%0|shladd,l %2,%O3,%1,%0}",
2632 xoperands);
2633 return "ldw 4(%0),%R0\n\tldw 0(%0),%0";
2635 else
2637 rtx xoperands[3];
2639 xoperands[0] = high_reg;
2640 xoperands[1] = XEXP (addr, 1);
2641 xoperands[2] = XEXP (XEXP (addr, 0), 0);
2642 xoperands[3] = XEXP (XEXP (addr, 0), 1);
2643 output_asm_insn ("{sh%O3addl %2,%1,%R0|shladd,l %2,%O3,%1,%R0}",
2644 xoperands);
2645 return "ldw 0(%R0),%0\n\tldw 4(%R0),%R0";
2650 /* If an operand is an unoffsettable memory ref, find a register
2651 we can increment temporarily to make it refer to the second word. */
2653 if (optype0 == MEMOP)
2654 addreg0 = find_addr_reg (XEXP (operands[0], 0));
2656 if (optype1 == MEMOP)
2657 addreg1 = find_addr_reg (XEXP (operands[1], 0));
2659 /* Ok, we can do one word at a time.
2660 Normally we do the low-numbered word first.
2662 In either case, set up in LATEHALF the operands to use
2663 for the high-numbered word and in some cases alter the
2664 operands in OPERANDS to be suitable for the low-numbered word. */
2666 if (optype0 == REGOP)
2667 latehalf[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
2668 else if (optype0 == OFFSOP)
2669 latehalf[0] = adjust_address (operands[0], SImode, 4);
2670 else
2671 latehalf[0] = operands[0];
2673 if (optype1 == REGOP)
2674 latehalf[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
2675 else if (optype1 == OFFSOP)
2676 latehalf[1] = adjust_address (operands[1], SImode, 4);
2677 else if (optype1 == CNSTOP)
2678 split_double (operands[1], &operands[1], &latehalf[1]);
2679 else
2680 latehalf[1] = operands[1];
2682 /* If the first move would clobber the source of the second one,
2683 do them in the other order.
2685 This can happen in two cases:
2687 mem -> register where the first half of the destination register
2688 is the same register used in the memory's address. Reload
2689 can create such insns.
2691 mem in this case will be either register indirect or register
2692 indirect plus a valid offset.
2694 register -> register move where REGNO(dst) == REGNO(src + 1)
2695 someone (Tim/Tege?) claimed this can happen for parameter loads.
2697 Handle mem -> register case first. */
2698 if (optype0 == REGOP
2699 && (optype1 == MEMOP || optype1 == OFFSOP)
2700 && refers_to_regno_p (REGNO (operands[0]), REGNO (operands[0]) + 1,
2701 operands[1], 0))
2703 /* Do the late half first. */
2704 if (addreg1)
2705 output_asm_insn ("ldo 4(%0),%0", &addreg1);
2706 output_asm_insn (singlemove_string (latehalf), latehalf);
2708 /* Then clobber. */
2709 if (addreg1)
2710 output_asm_insn ("ldo -4(%0),%0", &addreg1);
2711 return singlemove_string (operands);
2714 /* Now handle register -> register case. */
2715 if (optype0 == REGOP && optype1 == REGOP
2716 && REGNO (operands[0]) == REGNO (operands[1]) + 1)
2718 output_asm_insn (singlemove_string (latehalf), latehalf);
2719 return singlemove_string (operands);
2722 /* Normal case: do the two words, low-numbered first. */
2724 output_asm_insn (singlemove_string (operands), operands);
2726 /* Make any unoffsettable addresses point at high-numbered word. */
2727 if (addreg0)
2728 output_asm_insn ("ldo 4(%0),%0", &addreg0);
2729 if (addreg1)
2730 output_asm_insn ("ldo 4(%0),%0", &addreg1);
2732 /* Do that word. */
2733 output_asm_insn (singlemove_string (latehalf), latehalf);
2735 /* Undo the adds we just did. */
2736 if (addreg0)
2737 output_asm_insn ("ldo -4(%0),%0", &addreg0);
2738 if (addreg1)
2739 output_asm_insn ("ldo -4(%0),%0", &addreg1);
2741 return "";
2744 const char *
2745 output_fp_move_double (rtx *operands)
2747 if (FP_REG_P (operands[0]))
2749 if (FP_REG_P (operands[1])
2750 || operands[1] == CONST0_RTX (GET_MODE (operands[0])))
2751 output_asm_insn ("fcpy,dbl %f1,%0", operands);
2752 else
2753 output_asm_insn ("fldd%F1 %1,%0", operands);
2755 else if (FP_REG_P (operands[1]))
2757 output_asm_insn ("fstd%F0 %1,%0", operands);
2759 else if (operands[1] == CONST0_RTX (GET_MODE (operands[0])))
2761 if (GET_CODE (operands[0]) == REG)
2763 rtx xoperands[2];
2764 xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
2765 xoperands[0] = operands[0];
2766 output_asm_insn ("copy %%r0,%0\n\tcopy %%r0,%1", xoperands);
2768 /* This is a pain. You have to be prepared to deal with an
2769 arbitrary address here including pre/post increment/decrement.
2771 so avoid this in the MD. */
2772 else
2773 abort ();
2775 else abort ();
2776 return "";
2779 /* Return a REG that occurs in ADDR with coefficient 1.
2780 ADDR can be effectively incremented by incrementing REG. */
2782 static rtx
2783 find_addr_reg (rtx addr)
2785 while (GET_CODE (addr) == PLUS)
2787 if (GET_CODE (XEXP (addr, 0)) == REG)
2788 addr = XEXP (addr, 0);
2789 else if (GET_CODE (XEXP (addr, 1)) == REG)
2790 addr = XEXP (addr, 1);
2791 else if (CONSTANT_P (XEXP (addr, 0)))
2792 addr = XEXP (addr, 1);
2793 else if (CONSTANT_P (XEXP (addr, 1)))
2794 addr = XEXP (addr, 0);
2795 else
2796 abort ();
2798 if (GET_CODE (addr) == REG)
2799 return addr;
2800 abort ();
2803 /* Emit code to perform a block move.
2805 OPERANDS[0] is the destination pointer as a REG, clobbered.
2806 OPERANDS[1] is the source pointer as a REG, clobbered.
2807 OPERANDS[2] is a register for temporary storage.
2808 OPERANDS[3] is a register for temporary storage.
2809 OPERANDS[4] is the size as a CONST_INT
2810 OPERANDS[5] is the alignment safe to use, as a CONST_INT.
2811 OPERANDS[6] is another temporary register. */
2813 const char *
2814 output_block_move (rtx *operands, int size_is_constant ATTRIBUTE_UNUSED)
2816 int align = INTVAL (operands[5]);
2817 unsigned long n_bytes = INTVAL (operands[4]);
2819 /* We can't move more than a word at a time because the PA
2820 has no longer integer move insns. (Could use fp mem ops?) */
2821 if (align > (TARGET_64BIT ? 8 : 4))
2822 align = (TARGET_64BIT ? 8 : 4);
2824 /* Note that we know each loop below will execute at least twice
2825 (else we would have open-coded the copy). */
2826 switch (align)
2828 case 8:
2829 /* Pre-adjust the loop counter. */
2830 operands[4] = GEN_INT (n_bytes - 16);
2831 output_asm_insn ("ldi %4,%2", operands);
2833 /* Copying loop. */
2834 output_asm_insn ("ldd,ma 8(%1),%3", operands);
2835 output_asm_insn ("ldd,ma 8(%1),%6", operands);
2836 output_asm_insn ("std,ma %3,8(%0)", operands);
2837 output_asm_insn ("addib,>= -16,%2,.-12", operands);
2838 output_asm_insn ("std,ma %6,8(%0)", operands);
2840 /* Handle the residual. There could be up to 7 bytes of
2841 residual to copy! */
2842 if (n_bytes % 16 != 0)
2844 operands[4] = GEN_INT (n_bytes % 8);
2845 if (n_bytes % 16 >= 8)
2846 output_asm_insn ("ldd,ma 8(%1),%3", operands);
2847 if (n_bytes % 8 != 0)
2848 output_asm_insn ("ldd 0(%1),%6", operands);
2849 if (n_bytes % 16 >= 8)
2850 output_asm_insn ("std,ma %3,8(%0)", operands);
2851 if (n_bytes % 8 != 0)
2852 output_asm_insn ("stdby,e %6,%4(%0)", operands);
2854 return "";
2856 case 4:
2857 /* Pre-adjust the loop counter. */
2858 operands[4] = GEN_INT (n_bytes - 8);
2859 output_asm_insn ("ldi %4,%2", operands);
2861 /* Copying loop. */
2862 output_asm_insn ("{ldws|ldw},ma 4(%1),%3", operands);
2863 output_asm_insn ("{ldws|ldw},ma 4(%1),%6", operands);
2864 output_asm_insn ("{stws|stw},ma %3,4(%0)", operands);
2865 output_asm_insn ("addib,>= -8,%2,.-12", operands);
2866 output_asm_insn ("{stws|stw},ma %6,4(%0)", operands);
2868 /* Handle the residual. There could be up to 7 bytes of
2869 residual to copy! */
2870 if (n_bytes % 8 != 0)
2872 operands[4] = GEN_INT (n_bytes % 4);
2873 if (n_bytes % 8 >= 4)
2874 output_asm_insn ("{ldws|ldw},ma 4(%1),%3", operands);
2875 if (n_bytes % 4 != 0)
2876 output_asm_insn ("ldw 0(%1),%6", operands);
2877 if (n_bytes % 8 >= 4)
2878 output_asm_insn ("{stws|stw},ma %3,4(%0)", operands);
2879 if (n_bytes % 4 != 0)
2880 output_asm_insn ("{stbys|stby},e %6,%4(%0)", operands);
2882 return "";
2884 case 2:
2885 /* Pre-adjust the loop counter. */
2886 operands[4] = GEN_INT (n_bytes - 4);
2887 output_asm_insn ("ldi %4,%2", operands);
2889 /* Copying loop. */
2890 output_asm_insn ("{ldhs|ldh},ma 2(%1),%3", operands);
2891 output_asm_insn ("{ldhs|ldh},ma 2(%1),%6", operands);
2892 output_asm_insn ("{sths|sth},ma %3,2(%0)", operands);
2893 output_asm_insn ("addib,>= -4,%2,.-12", operands);
2894 output_asm_insn ("{sths|sth},ma %6,2(%0)", operands);
2896 /* Handle the residual. */
2897 if (n_bytes % 4 != 0)
2899 if (n_bytes % 4 >= 2)
2900 output_asm_insn ("{ldhs|ldh},ma 2(%1),%3", operands);
2901 if (n_bytes % 2 != 0)
2902 output_asm_insn ("ldb 0(%1),%6", operands);
2903 if (n_bytes % 4 >= 2)
2904 output_asm_insn ("{sths|sth},ma %3,2(%0)", operands);
2905 if (n_bytes % 2 != 0)
2906 output_asm_insn ("stb %6,0(%0)", operands);
2908 return "";
2910 case 1:
2911 /* Pre-adjust the loop counter. */
2912 operands[4] = GEN_INT (n_bytes - 2);
2913 output_asm_insn ("ldi %4,%2", operands);
2915 /* Copying loop. */
2916 output_asm_insn ("{ldbs|ldb},ma 1(%1),%3", operands);
2917 output_asm_insn ("{ldbs|ldb},ma 1(%1),%6", operands);
2918 output_asm_insn ("{stbs|stb},ma %3,1(%0)", operands);
2919 output_asm_insn ("addib,>= -2,%2,.-12", operands);
2920 output_asm_insn ("{stbs|stb},ma %6,1(%0)", operands);
2922 /* Handle the residual. */
2923 if (n_bytes % 2 != 0)
2925 output_asm_insn ("ldb 0(%1),%3", operands);
2926 output_asm_insn ("stb %3,0(%0)", operands);
2928 return "";
2930 default:
2931 abort ();
2935 /* Count the number of insns necessary to handle this block move.
2937 Basic structure is the same as emit_block_move, except that we
2938 count insns rather than emit them. */
2940 static int
2941 compute_movmem_length (rtx insn)
2943 rtx pat = PATTERN (insn);
2944 unsigned int align = INTVAL (XEXP (XVECEXP (pat, 0, 7), 0));
2945 unsigned long n_bytes = INTVAL (XEXP (XVECEXP (pat, 0, 6), 0));
2946 unsigned int n_insns = 0;
2948 /* We can't move more than four bytes at a time because the PA
2949 has no longer integer move insns. (Could use fp mem ops?) */
2950 if (align > (TARGET_64BIT ? 8 : 4))
2951 align = (TARGET_64BIT ? 8 : 4);
2953 /* The basic copying loop. */
2954 n_insns = 6;
2956 /* Residuals. */
2957 if (n_bytes % (2 * align) != 0)
2959 if ((n_bytes % (2 * align)) >= align)
2960 n_insns += 2;
2962 if ((n_bytes % align) != 0)
2963 n_insns += 2;
2966 /* Lengths are expressed in bytes now; each insn is 4 bytes. */
2967 return n_insns * 4;
2970 /* Emit code to perform a block clear.
2972 OPERANDS[0] is the destination pointer as a REG, clobbered.
2973 OPERANDS[1] is a register for temporary storage.
2974 OPERANDS[2] is the size as a CONST_INT
2975 OPERANDS[3] is the alignment safe to use, as a CONST_INT. */
2977 const char *
2978 output_block_clear (rtx *operands, int size_is_constant ATTRIBUTE_UNUSED)
2980 int align = INTVAL (operands[3]);
2981 unsigned long n_bytes = INTVAL (operands[2]);
2983 /* We can't clear more than a word at a time because the PA
2984 has no longer integer move insns. */
2985 if (align > (TARGET_64BIT ? 8 : 4))
2986 align = (TARGET_64BIT ? 8 : 4);
2988 /* Note that we know each loop below will execute at least twice
2989 (else we would have open-coded the copy). */
2990 switch (align)
2992 case 8:
2993 /* Pre-adjust the loop counter. */
2994 operands[2] = GEN_INT (n_bytes - 16);
2995 output_asm_insn ("ldi %2,%1", operands);
2997 /* Loop. */
2998 output_asm_insn ("std,ma %%r0,8(%0)", operands);
2999 output_asm_insn ("addib,>= -16,%1,.-4", operands);
3000 output_asm_insn ("std,ma %%r0,8(%0)", operands);
3002 /* Handle the residual. There could be up to 7 bytes of
3003 residual to copy! */
3004 if (n_bytes % 16 != 0)
3006 operands[2] = GEN_INT (n_bytes % 8);
3007 if (n_bytes % 16 >= 8)
3008 output_asm_insn ("std,ma %%r0,8(%0)", operands);
3009 if (n_bytes % 8 != 0)
3010 output_asm_insn ("stdby,e %%r0,%2(%0)", operands);
3012 return "";
3014 case 4:
3015 /* Pre-adjust the loop counter. */
3016 operands[2] = GEN_INT (n_bytes - 8);
3017 output_asm_insn ("ldi %2,%1", operands);
3019 /* Loop. */
3020 output_asm_insn ("{stws|stw},ma %%r0,4(%0)", operands);
3021 output_asm_insn ("addib,>= -8,%1,.-4", operands);
3022 output_asm_insn ("{stws|stw},ma %%r0,4(%0)", operands);
3024 /* Handle the residual. There could be up to 7 bytes of
3025 residual to copy! */
3026 if (n_bytes % 8 != 0)
3028 operands[2] = GEN_INT (n_bytes % 4);
3029 if (n_bytes % 8 >= 4)
3030 output_asm_insn ("{stws|stw},ma %%r0,4(%0)", operands);
3031 if (n_bytes % 4 != 0)
3032 output_asm_insn ("{stbys|stby},e %%r0,%2(%0)", operands);
3034 return "";
3036 case 2:
3037 /* Pre-adjust the loop counter. */
3038 operands[2] = GEN_INT (n_bytes - 4);
3039 output_asm_insn ("ldi %2,%1", operands);
3041 /* Loop. */
3042 output_asm_insn ("{sths|sth},ma %%r0,2(%0)", operands);
3043 output_asm_insn ("addib,>= -4,%1,.-4", operands);
3044 output_asm_insn ("{sths|sth},ma %%r0,2(%0)", operands);
3046 /* Handle the residual. */
3047 if (n_bytes % 4 != 0)
3049 if (n_bytes % 4 >= 2)
3050 output_asm_insn ("{sths|sth},ma %%r0,2(%0)", operands);
3051 if (n_bytes % 2 != 0)
3052 output_asm_insn ("stb %%r0,0(%0)", operands);
3054 return "";
3056 case 1:
3057 /* Pre-adjust the loop counter. */
3058 operands[2] = GEN_INT (n_bytes - 2);
3059 output_asm_insn ("ldi %2,%1", operands);
3061 /* Loop. */
3062 output_asm_insn ("{stbs|stb},ma %%r0,1(%0)", operands);
3063 output_asm_insn ("addib,>= -2,%1,.-4", operands);
3064 output_asm_insn ("{stbs|stb},ma %%r0,1(%0)", operands);
3066 /* Handle the residual. */
3067 if (n_bytes % 2 != 0)
3068 output_asm_insn ("stb %%r0,0(%0)", operands);
3070 return "";
3072 default:
3073 abort ();
3077 /* Count the number of insns necessary to handle this block move.
3079 Basic structure is the same as emit_block_move, except that we
3080 count insns rather than emit them. */
3082 static int
3083 compute_clrmem_length (rtx insn)
3085 rtx pat = PATTERN (insn);
3086 unsigned int align = INTVAL (XEXP (XVECEXP (pat, 0, 4), 0));
3087 unsigned long n_bytes = INTVAL (XEXP (XVECEXP (pat, 0, 3), 0));
3088 unsigned int n_insns = 0;
3090 /* We can't clear more than a word at a time because the PA
3091 has no longer integer move insns. */
3092 if (align > (TARGET_64BIT ? 8 : 4))
3093 align = (TARGET_64BIT ? 8 : 4);
3095 /* The basic loop. */
3096 n_insns = 4;
3098 /* Residuals. */
3099 if (n_bytes % (2 * align) != 0)
3101 if ((n_bytes % (2 * align)) >= align)
3102 n_insns++;
3104 if ((n_bytes % align) != 0)
3105 n_insns++;
3108 /* Lengths are expressed in bytes now; each insn is 4 bytes. */
3109 return n_insns * 4;
3113 const char *
3114 output_and (rtx *operands)
3116 if (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) != 0)
3118 unsigned HOST_WIDE_INT mask = INTVAL (operands[2]);
3119 int ls0, ls1, ms0, p, len;
3121 for (ls0 = 0; ls0 < 32; ls0++)
3122 if ((mask & (1 << ls0)) == 0)
3123 break;
3125 for (ls1 = ls0; ls1 < 32; ls1++)
3126 if ((mask & (1 << ls1)) != 0)
3127 break;
3129 for (ms0 = ls1; ms0 < 32; ms0++)
3130 if ((mask & (1 << ms0)) == 0)
3131 break;
3133 if (ms0 != 32)
3134 abort ();
3136 if (ls1 == 32)
3138 len = ls0;
3140 if (len == 0)
3141 abort ();
3143 operands[2] = GEN_INT (len);
3144 return "{extru|extrw,u} %1,31,%2,%0";
3146 else
3148 /* We could use this `depi' for the case above as well, but `depi'
3149 requires one more register file access than an `extru'. */
3151 p = 31 - ls0;
3152 len = ls1 - ls0;
3154 operands[2] = GEN_INT (p);
3155 operands[3] = GEN_INT (len);
3156 return "{depi|depwi} 0,%2,%3,%0";
3159 else
3160 return "and %1,%2,%0";
3163 /* Return a string to perform a bitwise-and of operands[1] with operands[2]
3164 storing the result in operands[0]. */
3165 const char *
3166 output_64bit_and (rtx *operands)
3168 if (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) != 0)
3170 unsigned HOST_WIDE_INT mask = INTVAL (operands[2]);
3171 int ls0, ls1, ms0, p, len;
3173 for (ls0 = 0; ls0 < HOST_BITS_PER_WIDE_INT; ls0++)
3174 if ((mask & ((unsigned HOST_WIDE_INT) 1 << ls0)) == 0)
3175 break;
3177 for (ls1 = ls0; ls1 < HOST_BITS_PER_WIDE_INT; ls1++)
3178 if ((mask & ((unsigned HOST_WIDE_INT) 1 << ls1)) != 0)
3179 break;
3181 for (ms0 = ls1; ms0 < HOST_BITS_PER_WIDE_INT; ms0++)
3182 if ((mask & ((unsigned HOST_WIDE_INT) 1 << ms0)) == 0)
3183 break;
3185 if (ms0 != HOST_BITS_PER_WIDE_INT)
3186 abort ();
3188 if (ls1 == HOST_BITS_PER_WIDE_INT)
3190 len = ls0;
3192 if (len == 0)
3193 abort ();
3195 operands[2] = GEN_INT (len);
3196 return "extrd,u %1,63,%2,%0";
3198 else
3200 /* We could use this `depi' for the case above as well, but `depi'
3201 requires one more register file access than an `extru'. */
3203 p = 63 - ls0;
3204 len = ls1 - ls0;
3206 operands[2] = GEN_INT (p);
3207 operands[3] = GEN_INT (len);
3208 return "depdi 0,%2,%3,%0";
3211 else
3212 return "and %1,%2,%0";
3215 const char *
3216 output_ior (rtx *operands)
3218 unsigned HOST_WIDE_INT mask = INTVAL (operands[2]);
3219 int bs0, bs1, p, len;
3221 if (INTVAL (operands[2]) == 0)
3222 return "copy %1,%0";
3224 for (bs0 = 0; bs0 < 32; bs0++)
3225 if ((mask & (1 << bs0)) != 0)
3226 break;
3228 for (bs1 = bs0; bs1 < 32; bs1++)
3229 if ((mask & (1 << bs1)) == 0)
3230 break;
3232 if (bs1 != 32 && ((unsigned HOST_WIDE_INT) 1 << bs1) <= mask)
3233 abort ();
3235 p = 31 - bs0;
3236 len = bs1 - bs0;
3238 operands[2] = GEN_INT (p);
3239 operands[3] = GEN_INT (len);
3240 return "{depi|depwi} -1,%2,%3,%0";
3243 /* Return a string to perform a bitwise-and of operands[1] with operands[2]
3244 storing the result in operands[0]. */
3245 const char *
3246 output_64bit_ior (rtx *operands)
3248 unsigned HOST_WIDE_INT mask = INTVAL (operands[2]);
3249 int bs0, bs1, p, len;
3251 if (INTVAL (operands[2]) == 0)
3252 return "copy %1,%0";
3254 for (bs0 = 0; bs0 < HOST_BITS_PER_WIDE_INT; bs0++)
3255 if ((mask & ((unsigned HOST_WIDE_INT) 1 << bs0)) != 0)
3256 break;
3258 for (bs1 = bs0; bs1 < HOST_BITS_PER_WIDE_INT; bs1++)
3259 if ((mask & ((unsigned HOST_WIDE_INT) 1 << bs1)) == 0)
3260 break;
3262 if (bs1 != HOST_BITS_PER_WIDE_INT
3263 && ((unsigned HOST_WIDE_INT) 1 << bs1) <= mask)
3264 abort ();
3266 p = 63 - bs0;
3267 len = bs1 - bs0;
3269 operands[2] = GEN_INT (p);
3270 operands[3] = GEN_INT (len);
3271 return "depdi -1,%2,%3,%0";
3274 /* Target hook for assembling integer objects. This code handles
3275 aligned SI and DI integers specially, since function references must
3276 be preceded by P%. */
3278 static bool
3279 pa_assemble_integer (rtx x, unsigned int size, int aligned_p)
3281 if (size == UNITS_PER_WORD && aligned_p
3282 && function_label_operand (x, VOIDmode))
3284 fputs (size == 8? "\t.dword\tP%" : "\t.word\tP%", asm_out_file);
3285 output_addr_const (asm_out_file, x);
3286 fputc ('\n', asm_out_file);
3287 return true;
3289 return default_assemble_integer (x, size, aligned_p);
3292 /* Output an ascii string. */
3293 void
3294 output_ascii (FILE *file, const char *p, int size)
3296 int i;
3297 int chars_output;
3298 unsigned char partial_output[16]; /* Max space 4 chars can occupy. */
3300 /* The HP assembler can only take strings of 256 characters at one
3301 time. This is a limitation on input line length, *not* the
3302 length of the string. Sigh. Even worse, it seems that the
3303 restriction is in number of input characters (see \xnn &
3304 \whatever). So we have to do this very carefully. */
3306 fputs ("\t.STRING \"", file);
3308 chars_output = 0;
3309 for (i = 0; i < size; i += 4)
3311 int co = 0;
3312 int io = 0;
3313 for (io = 0, co = 0; io < MIN (4, size - i); io++)
3315 register unsigned int c = (unsigned char) p[i + io];
3317 if (c == '\"' || c == '\\')
3318 partial_output[co++] = '\\';
3319 if (c >= ' ' && c < 0177)
3320 partial_output[co++] = c;
3321 else
3323 unsigned int hexd;
3324 partial_output[co++] = '\\';
3325 partial_output[co++] = 'x';
3326 hexd = c / 16 - 0 + '0';
3327 if (hexd > '9')
3328 hexd -= '9' - 'a' + 1;
3329 partial_output[co++] = hexd;
3330 hexd = c % 16 - 0 + '0';
3331 if (hexd > '9')
3332 hexd -= '9' - 'a' + 1;
3333 partial_output[co++] = hexd;
3336 if (chars_output + co > 243)
3338 fputs ("\"\n\t.STRING \"", file);
3339 chars_output = 0;
3341 fwrite (partial_output, 1, (size_t) co, file);
3342 chars_output += co;
3343 co = 0;
3345 fputs ("\"\n", file);
3348 /* Try to rewrite floating point comparisons & branches to avoid
3349 useless add,tr insns.
3351 CHECK_NOTES is nonzero if we should examine REG_DEAD notes
3352 to see if FPCC is dead. CHECK_NOTES is nonzero for the
3353 first attempt to remove useless add,tr insns. It is zero
3354 for the second pass as reorg sometimes leaves bogus REG_DEAD
3355 notes lying around.
3357 When CHECK_NOTES is zero we can only eliminate add,tr insns
3358 when there's a 1:1 correspondence between fcmp and ftest/fbranch
3359 instructions. */
3360 static void
3361 remove_useless_addtr_insns (int check_notes)
3363 rtx insn;
3364 static int pass = 0;
3366 /* This is fairly cheap, so always run it when optimizing. */
3367 if (optimize > 0)
3369 int fcmp_count = 0;
3370 int fbranch_count = 0;
3372 /* Walk all the insns in this function looking for fcmp & fbranch
3373 instructions. Keep track of how many of each we find. */
3374 for (insn = get_insns (); insn; insn = next_insn (insn))
3376 rtx tmp;
3378 /* Ignore anything that isn't an INSN or a JUMP_INSN. */
3379 if (GET_CODE (insn) != INSN && GET_CODE (insn) != JUMP_INSN)
3380 continue;
3382 tmp = PATTERN (insn);
3384 /* It must be a set. */
3385 if (GET_CODE (tmp) != SET)
3386 continue;
3388 /* If the destination is CCFP, then we've found an fcmp insn. */
3389 tmp = SET_DEST (tmp);
3390 if (GET_CODE (tmp) == REG && REGNO (tmp) == 0)
3392 fcmp_count++;
3393 continue;
3396 tmp = PATTERN (insn);
3397 /* If this is an fbranch instruction, bump the fbranch counter. */
3398 if (GET_CODE (tmp) == SET
3399 && SET_DEST (tmp) == pc_rtx
3400 && GET_CODE (SET_SRC (tmp)) == IF_THEN_ELSE
3401 && GET_CODE (XEXP (SET_SRC (tmp), 0)) == NE
3402 && GET_CODE (XEXP (XEXP (SET_SRC (tmp), 0), 0)) == REG
3403 && REGNO (XEXP (XEXP (SET_SRC (tmp), 0), 0)) == 0)
3405 fbranch_count++;
3406 continue;
3411 /* Find all floating point compare + branch insns. If possible,
3412 reverse the comparison & the branch to avoid add,tr insns. */
3413 for (insn = get_insns (); insn; insn = next_insn (insn))
3415 rtx tmp, next;
3417 /* Ignore anything that isn't an INSN. */
3418 if (GET_CODE (insn) != INSN)
3419 continue;
3421 tmp = PATTERN (insn);
3423 /* It must be a set. */
3424 if (GET_CODE (tmp) != SET)
3425 continue;
3427 /* The destination must be CCFP, which is register zero. */
3428 tmp = SET_DEST (tmp);
3429 if (GET_CODE (tmp) != REG || REGNO (tmp) != 0)
3430 continue;
3432 /* INSN should be a set of CCFP.
3434 See if the result of this insn is used in a reversed FP
3435 conditional branch. If so, reverse our condition and
3436 the branch. Doing so avoids useless add,tr insns. */
3437 next = next_insn (insn);
3438 while (next)
3440 /* Jumps, calls and labels stop our search. */
3441 if (GET_CODE (next) == JUMP_INSN
3442 || GET_CODE (next) == CALL_INSN
3443 || GET_CODE (next) == CODE_LABEL)
3444 break;
3446 /* As does another fcmp insn. */
3447 if (GET_CODE (next) == INSN
3448 && GET_CODE (PATTERN (next)) == SET
3449 && GET_CODE (SET_DEST (PATTERN (next))) == REG
3450 && REGNO (SET_DEST (PATTERN (next))) == 0)
3451 break;
3453 next = next_insn (next);
3456 /* Is NEXT_INSN a branch? */
3457 if (next
3458 && GET_CODE (next) == JUMP_INSN)
3460 rtx pattern = PATTERN (next);
3462 /* If it a reversed fp conditional branch (e.g. uses add,tr)
3463 and CCFP dies, then reverse our conditional and the branch
3464 to avoid the add,tr. */
3465 if (GET_CODE (pattern) == SET
3466 && SET_DEST (pattern) == pc_rtx
3467 && GET_CODE (SET_SRC (pattern)) == IF_THEN_ELSE
3468 && GET_CODE (XEXP (SET_SRC (pattern), 0)) == NE
3469 && GET_CODE (XEXP (XEXP (SET_SRC (pattern), 0), 0)) == REG
3470 && REGNO (XEXP (XEXP (SET_SRC (pattern), 0), 0)) == 0
3471 && GET_CODE (XEXP (SET_SRC (pattern), 1)) == PC
3472 && (fcmp_count == fbranch_count
3473 || (check_notes
3474 && find_regno_note (next, REG_DEAD, 0))))
3476 /* Reverse the branch. */
3477 tmp = XEXP (SET_SRC (pattern), 1);
3478 XEXP (SET_SRC (pattern), 1) = XEXP (SET_SRC (pattern), 2);
3479 XEXP (SET_SRC (pattern), 2) = tmp;
3480 INSN_CODE (next) = -1;
3482 /* Reverse our condition. */
3483 tmp = PATTERN (insn);
3484 PUT_CODE (XEXP (tmp, 1),
3485 (reverse_condition_maybe_unordered
3486 (GET_CODE (XEXP (tmp, 1)))));
3492 pass = !pass;
3496 /* You may have trouble believing this, but this is the 32 bit HP-PA
3497 stack layout. Wow.
3499 Offset Contents
3501 Variable arguments (optional; any number may be allocated)
3503 SP-(4*(N+9)) arg word N
3505 SP-56 arg word 5
3506 SP-52 arg word 4
3508 Fixed arguments (must be allocated; may remain unused)
3510 SP-48 arg word 3
3511 SP-44 arg word 2
3512 SP-40 arg word 1
3513 SP-36 arg word 0
3515 Frame Marker
3517 SP-32 External Data Pointer (DP)
3518 SP-28 External sr4
3519 SP-24 External/stub RP (RP')
3520 SP-20 Current RP
3521 SP-16 Static Link
3522 SP-12 Clean up
3523 SP-8 Calling Stub RP (RP'')
3524 SP-4 Previous SP
3526 Top of Frame
3528 SP-0 Stack Pointer (points to next available address)
3532 /* This function saves registers as follows. Registers marked with ' are
3533 this function's registers (as opposed to the previous function's).
3534 If a frame_pointer isn't needed, r4 is saved as a general register;
3535 the space for the frame pointer is still allocated, though, to keep
3536 things simple.
3539 Top of Frame
3541 SP (FP') Previous FP
3542 SP + 4 Alignment filler (sigh)
3543 SP + 8 Space for locals reserved here.
3547 SP + n All call saved register used.
3551 SP + o All call saved fp registers used.
3555 SP + p (SP') points to next available address.
3559 /* Global variables set by output_function_prologue(). */
3560 /* Size of frame. Need to know this to emit return insns from
3561 leaf procedures. */
3562 static HOST_WIDE_INT actual_fsize, local_fsize;
3563 static int save_fregs;
3565 /* Emit RTL to store REG at the memory location specified by BASE+DISP.
3566 Handle case where DISP > 8k by using the add_high_const patterns.
3568 Note in DISP > 8k case, we will leave the high part of the address
3569 in %r1. There is code in expand_hppa_{prologue,epilogue} that knows this.*/
3571 static void
3572 store_reg (int reg, HOST_WIDE_INT disp, int base)
3574 rtx insn, dest, src, basereg;
3576 src = gen_rtx_REG (word_mode, reg);
3577 basereg = gen_rtx_REG (Pmode, base);
3578 if (VAL_14_BITS_P (disp))
3580 dest = gen_rtx_MEM (word_mode, plus_constant (basereg, disp));
3581 insn = emit_move_insn (dest, src);
3583 else if (TARGET_64BIT && !VAL_32_BITS_P (disp))
3585 rtx delta = GEN_INT (disp);
3586 rtx tmpreg = gen_rtx_REG (Pmode, 1);
3588 emit_move_insn (tmpreg, delta);
3589 emit_move_insn (tmpreg, gen_rtx_PLUS (Pmode, tmpreg, basereg));
3590 dest = gen_rtx_MEM (word_mode, tmpreg);
3591 insn = emit_move_insn (dest, src);
3592 if (DO_FRAME_NOTES)
3594 REG_NOTES (insn)
3595 = gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
3596 gen_rtx_SET (VOIDmode,
3597 gen_rtx_MEM (word_mode,
3598 gen_rtx_PLUS (word_mode, basereg,
3599 delta)),
3600 src),
3601 REG_NOTES (insn));
3604 else
3606 rtx delta = GEN_INT (disp);
3607 rtx high = gen_rtx_PLUS (Pmode, basereg, gen_rtx_HIGH (Pmode, delta));
3608 rtx tmpreg = gen_rtx_REG (Pmode, 1);
3610 emit_move_insn (tmpreg, high);
3611 dest = gen_rtx_MEM (word_mode, gen_rtx_LO_SUM (Pmode, tmpreg, delta));
3612 insn = emit_move_insn (dest, src);
3613 if (DO_FRAME_NOTES)
3615 REG_NOTES (insn)
3616 = gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
3617 gen_rtx_SET (VOIDmode,
3618 gen_rtx_MEM (word_mode,
3619 gen_rtx_PLUS (word_mode, basereg,
3620 delta)),
3621 src),
3622 REG_NOTES (insn));
3626 if (DO_FRAME_NOTES)
3627 RTX_FRAME_RELATED_P (insn) = 1;
3630 /* Emit RTL to store REG at the memory location specified by BASE and then
3631 add MOD to BASE. MOD must be <= 8k. */
3633 static void
3634 store_reg_modify (int base, int reg, HOST_WIDE_INT mod)
3636 rtx insn, basereg, srcreg, delta;
3638 if (!VAL_14_BITS_P (mod))
3639 abort ();
3641 basereg = gen_rtx_REG (Pmode, base);
3642 srcreg = gen_rtx_REG (word_mode, reg);
3643 delta = GEN_INT (mod);
3645 insn = emit_insn (gen_post_store (basereg, srcreg, delta));
3646 if (DO_FRAME_NOTES)
3648 RTX_FRAME_RELATED_P (insn) = 1;
3650 /* RTX_FRAME_RELATED_P must be set on each frame related set
3651 in a parallel with more than one element. Don't set
3652 RTX_FRAME_RELATED_P in the first set if reg is temporary
3653 register 1. The effect of this operation is recorded in
3654 the initial copy. */
3655 if (reg != 1)
3657 RTX_FRAME_RELATED_P (XVECEXP (PATTERN (insn), 0, 0)) = 1;
3658 RTX_FRAME_RELATED_P (XVECEXP (PATTERN (insn), 0, 1)) = 1;
3660 else
3662 /* The first element of a PARALLEL is always processed if it is
3663 a SET. Thus, we need an expression list for this case. */
3664 REG_NOTES (insn)
3665 = gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
3666 gen_rtx_SET (VOIDmode, basereg,
3667 gen_rtx_PLUS (word_mode, basereg, delta)),
3668 REG_NOTES (insn));
3673 /* Emit RTL to set REG to the value specified by BASE+DISP. Handle case
3674 where DISP > 8k by using the add_high_const patterns. NOTE indicates
3675 whether to add a frame note or not.
3677 In the DISP > 8k case, we leave the high part of the address in %r1.
3678 There is code in expand_hppa_{prologue,epilogue} that knows about this. */
3680 static void
3681 set_reg_plus_d (int reg, int base, HOST_WIDE_INT disp, int note)
3683 rtx insn;
3685 if (VAL_14_BITS_P (disp))
3687 insn = emit_move_insn (gen_rtx_REG (Pmode, reg),
3688 plus_constant (gen_rtx_REG (Pmode, base), disp));
3690 else if (TARGET_64BIT && !VAL_32_BITS_P (disp))
3692 rtx basereg = gen_rtx_REG (Pmode, base);
3693 rtx delta = GEN_INT (disp);
3694 rtx tmpreg = gen_rtx_REG (Pmode, 1);
3696 emit_move_insn (tmpreg, delta);
3697 insn = emit_move_insn (gen_rtx_REG (Pmode, reg),
3698 gen_rtx_PLUS (Pmode, tmpreg, basereg));
3700 else
3702 rtx basereg = gen_rtx_REG (Pmode, base);
3703 rtx delta = GEN_INT (disp);
3704 rtx tmpreg = gen_rtx_REG (Pmode, 1);
3706 emit_move_insn (tmpreg,
3707 gen_rtx_PLUS (Pmode, basereg,
3708 gen_rtx_HIGH (Pmode, delta)));
3709 insn = emit_move_insn (gen_rtx_REG (Pmode, reg),
3710 gen_rtx_LO_SUM (Pmode, tmpreg, delta));
3713 if (DO_FRAME_NOTES && note)
3714 RTX_FRAME_RELATED_P (insn) = 1;
3717 HOST_WIDE_INT
3718 compute_frame_size (HOST_WIDE_INT size, int *fregs_live)
3720 int freg_saved = 0;
3721 int i, j;
3723 /* The code in hppa_expand_prologue and hppa_expand_epilogue must
3724 be consistent with the rounding and size calculation done here.
3725 Change them at the same time. */
3727 /* We do our own stack alignment. First, round the size of the
3728 stack locals up to a word boundary. */
3729 size = (size + UNITS_PER_WORD - 1) & ~(UNITS_PER_WORD - 1);
3731 /* Space for previous frame pointer + filler. If any frame is
3732 allocated, we need to add in the STARTING_FRAME_OFFSET. We
3733 waste some space here for the sake of HP compatibility. The
3734 first slot is only used when the frame pointer is needed. */
3735 if (size || frame_pointer_needed)
3736 size += STARTING_FRAME_OFFSET;
3738 /* If the current function calls __builtin_eh_return, then we need
3739 to allocate stack space for registers that will hold data for
3740 the exception handler. */
3741 if (DO_FRAME_NOTES && current_function_calls_eh_return)
3743 unsigned int i;
3745 for (i = 0; EH_RETURN_DATA_REGNO (i) != INVALID_REGNUM; ++i)
3746 continue;
3747 size += i * UNITS_PER_WORD;
3750 /* Account for space used by the callee general register saves. */
3751 for (i = 18, j = frame_pointer_needed ? 4 : 3; i >= j; i--)
3752 if (regs_ever_live[i])
3753 size += UNITS_PER_WORD;
3755 /* Account for space used by the callee floating point register saves. */
3756 for (i = FP_SAVED_REG_LAST; i >= FP_SAVED_REG_FIRST; i -= FP_REG_STEP)
3757 if (regs_ever_live[i]
3758 || (!TARGET_64BIT && regs_ever_live[i + 1]))
3760 freg_saved = 1;
3762 /* We always save both halves of the FP register, so always
3763 increment the frame size by 8 bytes. */
3764 size += 8;
3767 /* If any of the floating registers are saved, account for the
3768 alignment needed for the floating point register save block. */
3769 if (freg_saved)
3771 size = (size + 7) & ~7;
3772 if (fregs_live)
3773 *fregs_live = 1;
3776 /* The various ABIs include space for the outgoing parameters in the
3777 size of the current function's stack frame. We don't need to align
3778 for the outgoing arguments as their alignment is set by the final
3779 rounding for the frame as a whole. */
3780 size += current_function_outgoing_args_size;
3782 /* Allocate space for the fixed frame marker. This space must be
3783 allocated for any function that makes calls or allocates
3784 stack space. */
3785 if (!current_function_is_leaf || size)
3786 size += TARGET_64BIT ? 48 : 32;
3788 /* Finally, round to the preferred stack boundary. */
3789 return ((size + PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1)
3790 & ~(PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1));
3793 /* Generate the assembly code for function entry. FILE is a stdio
3794 stream to output the code to. SIZE is an int: how many units of
3795 temporary storage to allocate.
3797 Refer to the array `regs_ever_live' to determine which registers to
3798 save; `regs_ever_live[I]' is nonzero if register number I is ever
3799 used in the function. This function is responsible for knowing
3800 which registers should not be saved even if used. */
3802 /* On HP-PA, move-double insns between fpu and cpu need an 8-byte block
3803 of memory. If any fpu reg is used in the function, we allocate
3804 such a block here, at the bottom of the frame, just in case it's needed.
3806 If this function is a leaf procedure, then we may choose not
3807 to do a "save" insn. The decision about whether or not
3808 to do this is made in regclass.c. */
3810 static void
3811 pa_output_function_prologue (FILE *file, HOST_WIDE_INT size ATTRIBUTE_UNUSED)
3813 /* The function's label and associated .PROC must never be
3814 separated and must be output *after* any profiling declarations
3815 to avoid changing spaces/subspaces within a procedure. */
3816 ASM_OUTPUT_LABEL (file, XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0));
3817 fputs ("\t.PROC\n", file);
3819 /* hppa_expand_prologue does the dirty work now. We just need
3820 to output the assembler directives which denote the start
3821 of a function. */
3822 fprintf (file, "\t.CALLINFO FRAME=" HOST_WIDE_INT_PRINT_DEC, actual_fsize);
3823 if (regs_ever_live[2])
3824 fputs (",CALLS,SAVE_RP", file);
3825 else
3826 fputs (",NO_CALLS", file);
3828 /* The SAVE_SP flag is used to indicate that register %r3 is stored
3829 at the beginning of the frame and that it is used as the frame
3830 pointer for the frame. We do this because our current frame
3831 layout doesn't conform to that specified in the the HP runtime
3832 documentation and we need a way to indicate to programs such as
3833 GDB where %r3 is saved. The SAVE_SP flag was chosen because it
3834 isn't used by HP compilers but is supported by the assembler.
3835 However, SAVE_SP is supposed to indicate that the previous stack
3836 pointer has been saved in the frame marker. */
3837 if (frame_pointer_needed)
3838 fputs (",SAVE_SP", file);
3840 /* Pass on information about the number of callee register saves
3841 performed in the prologue.
3843 The compiler is supposed to pass the highest register number
3844 saved, the assembler then has to adjust that number before
3845 entering it into the unwind descriptor (to account for any
3846 caller saved registers with lower register numbers than the
3847 first callee saved register). */
3848 if (gr_saved)
3849 fprintf (file, ",ENTRY_GR=%d", gr_saved + 2);
3851 if (fr_saved)
3852 fprintf (file, ",ENTRY_FR=%d", fr_saved + 11);
3854 fputs ("\n\t.ENTRY\n", file);
3856 remove_useless_addtr_insns (0);
3859 void
3860 hppa_expand_prologue (void)
3862 int merge_sp_adjust_with_store = 0;
3863 HOST_WIDE_INT size = get_frame_size ();
3864 HOST_WIDE_INT offset;
3865 int i;
3866 rtx insn, tmpreg;
3868 gr_saved = 0;
3869 fr_saved = 0;
3870 save_fregs = 0;
3872 /* Compute total size for frame pointer, filler, locals and rounding to
3873 the next word boundary. Similar code appears in compute_frame_size
3874 and must be changed in tandem with this code. */
3875 local_fsize = (size + UNITS_PER_WORD - 1) & ~(UNITS_PER_WORD - 1);
3876 if (local_fsize || frame_pointer_needed)
3877 local_fsize += STARTING_FRAME_OFFSET;
3879 actual_fsize = compute_frame_size (size, &save_fregs);
3881 /* Compute a few things we will use often. */
3882 tmpreg = gen_rtx_REG (word_mode, 1);
3884 /* Save RP first. The calling conventions manual states RP will
3885 always be stored into the caller's frame at sp - 20 or sp - 16
3886 depending on which ABI is in use. */
3887 if (regs_ever_live[2] || current_function_calls_eh_return)
3888 store_reg (2, TARGET_64BIT ? -16 : -20, STACK_POINTER_REGNUM);
3890 /* Allocate the local frame and set up the frame pointer if needed. */
3891 if (actual_fsize != 0)
3893 if (frame_pointer_needed)
3895 /* Copy the old frame pointer temporarily into %r1. Set up the
3896 new stack pointer, then store away the saved old frame pointer
3897 into the stack at sp and at the same time update the stack
3898 pointer by actual_fsize bytes. Two versions, first
3899 handles small (<8k) frames. The second handles large (>=8k)
3900 frames. */
3901 insn = emit_move_insn (tmpreg, frame_pointer_rtx);
3902 if (DO_FRAME_NOTES)
3904 /* We need to record the frame pointer save here since the
3905 new frame pointer is set in the following insn. */
3906 RTX_FRAME_RELATED_P (insn) = 1;
3907 REG_NOTES (insn)
3908 = gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
3909 gen_rtx_SET (VOIDmode,
3910 gen_rtx_MEM (word_mode, stack_pointer_rtx),
3911 frame_pointer_rtx),
3912 REG_NOTES (insn));
3915 insn = emit_move_insn (frame_pointer_rtx, stack_pointer_rtx);
3916 if (DO_FRAME_NOTES)
3917 RTX_FRAME_RELATED_P (insn) = 1;
3919 if (VAL_14_BITS_P (actual_fsize))
3920 store_reg_modify (STACK_POINTER_REGNUM, 1, actual_fsize);
3921 else
3923 /* It is incorrect to store the saved frame pointer at *sp,
3924 then increment sp (writes beyond the current stack boundary).
3926 So instead use stwm to store at *sp and post-increment the
3927 stack pointer as an atomic operation. Then increment sp to
3928 finish allocating the new frame. */
3929 HOST_WIDE_INT adjust1 = 8192 - 64;
3930 HOST_WIDE_INT adjust2 = actual_fsize - adjust1;
3932 store_reg_modify (STACK_POINTER_REGNUM, 1, adjust1);
3933 set_reg_plus_d (STACK_POINTER_REGNUM, STACK_POINTER_REGNUM,
3934 adjust2, 1);
3937 /* We set SAVE_SP in frames that need a frame pointer. Thus,
3938 we need to store the previous stack pointer (frame pointer)
3939 into the frame marker on targets that use the HP unwind
3940 library. This allows the HP unwind library to be used to
3941 unwind GCC frames. However, we are not fully compatible
3942 with the HP library because our frame layout differs from
3943 that specified in the HP runtime specification.
3945 We don't want a frame note on this instruction as the frame
3946 marker moves during dynamic stack allocation.
3948 This instruction also serves as a blockage to prevent
3949 register spills from being scheduled before the stack
3950 pointer is raised. This is necessary as we store
3951 registers using the frame pointer as a base register,
3952 and the frame pointer is set before sp is raised. */
3953 if (TARGET_HPUX_UNWIND_LIBRARY)
3955 rtx addr = gen_rtx_PLUS (word_mode, stack_pointer_rtx,
3956 GEN_INT (TARGET_64BIT ? -8 : -4));
3958 emit_move_insn (gen_rtx_MEM (word_mode, addr),
3959 frame_pointer_rtx);
3961 else
3962 emit_insn (gen_blockage ());
3964 /* no frame pointer needed. */
3965 else
3967 /* In some cases we can perform the first callee register save
3968 and allocating the stack frame at the same time. If so, just
3969 make a note of it and defer allocating the frame until saving
3970 the callee registers. */
3971 if (VAL_14_BITS_P (actual_fsize) && local_fsize == 0)
3972 merge_sp_adjust_with_store = 1;
3973 /* Can not optimize. Adjust the stack frame by actual_fsize
3974 bytes. */
3975 else
3976 set_reg_plus_d (STACK_POINTER_REGNUM, STACK_POINTER_REGNUM,
3977 actual_fsize, 1);
3981 /* Normal register save.
3983 Do not save the frame pointer in the frame_pointer_needed case. It
3984 was done earlier. */
3985 if (frame_pointer_needed)
3987 offset = local_fsize;
3989 /* Saving the EH return data registers in the frame is the simplest
3990 way to get the frame unwind information emitted. We put them
3991 just before the general registers. */
3992 if (DO_FRAME_NOTES && current_function_calls_eh_return)
3994 unsigned int i, regno;
3996 for (i = 0; ; ++i)
3998 regno = EH_RETURN_DATA_REGNO (i);
3999 if (regno == INVALID_REGNUM)
4000 break;
4002 store_reg (regno, offset, FRAME_POINTER_REGNUM);
4003 offset += UNITS_PER_WORD;
4007 for (i = 18; i >= 4; i--)
4008 if (regs_ever_live[i] && ! call_used_regs[i])
4010 store_reg (i, offset, FRAME_POINTER_REGNUM);
4011 offset += UNITS_PER_WORD;
4012 gr_saved++;
4014 /* Account for %r3 which is saved in a special place. */
4015 gr_saved++;
4017 /* No frame pointer needed. */
4018 else
4020 offset = local_fsize - actual_fsize;
4022 /* Saving the EH return data registers in the frame is the simplest
4023 way to get the frame unwind information emitted. */
4024 if (DO_FRAME_NOTES && current_function_calls_eh_return)
4026 unsigned int i, regno;
4028 for (i = 0; ; ++i)
4030 regno = EH_RETURN_DATA_REGNO (i);
4031 if (regno == INVALID_REGNUM)
4032 break;
4034 /* If merge_sp_adjust_with_store is nonzero, then we can
4035 optimize the first save. */
4036 if (merge_sp_adjust_with_store)
4038 store_reg_modify (STACK_POINTER_REGNUM, regno, -offset);
4039 merge_sp_adjust_with_store = 0;
4041 else
4042 store_reg (regno, offset, STACK_POINTER_REGNUM);
4043 offset += UNITS_PER_WORD;
4047 for (i = 18; i >= 3; i--)
4048 if (regs_ever_live[i] && ! call_used_regs[i])
4050 /* If merge_sp_adjust_with_store is nonzero, then we can
4051 optimize the first GR save. */
4052 if (merge_sp_adjust_with_store)
4054 store_reg_modify (STACK_POINTER_REGNUM, i, -offset);
4055 merge_sp_adjust_with_store = 0;
4057 else
4058 store_reg (i, offset, STACK_POINTER_REGNUM);
4059 offset += UNITS_PER_WORD;
4060 gr_saved++;
4063 /* If we wanted to merge the SP adjustment with a GR save, but we never
4064 did any GR saves, then just emit the adjustment here. */
4065 if (merge_sp_adjust_with_store)
4066 set_reg_plus_d (STACK_POINTER_REGNUM, STACK_POINTER_REGNUM,
4067 actual_fsize, 1);
4070 /* The hppa calling conventions say that %r19, the pic offset
4071 register, is saved at sp - 32 (in this function's frame)
4072 when generating PIC code. FIXME: What is the correct thing
4073 to do for functions which make no calls and allocate no
4074 frame? Do we need to allocate a frame, or can we just omit
4075 the save? For now we'll just omit the save.
4077 We don't want a note on this insn as the frame marker can
4078 move if there is a dynamic stack allocation. */
4079 if (flag_pic && actual_fsize != 0 && !TARGET_64BIT)
4081 rtx addr = gen_rtx_PLUS (word_mode, stack_pointer_rtx, GEN_INT (-32));
4083 emit_move_insn (gen_rtx_MEM (word_mode, addr), pic_offset_table_rtx);
4087 /* Align pointer properly (doubleword boundary). */
4088 offset = (offset + 7) & ~7;
4090 /* Floating point register store. */
4091 if (save_fregs)
4093 rtx base;
4095 /* First get the frame or stack pointer to the start of the FP register
4096 save area. */
4097 if (frame_pointer_needed)
4099 set_reg_plus_d (1, FRAME_POINTER_REGNUM, offset, 0);
4100 base = frame_pointer_rtx;
4102 else
4104 set_reg_plus_d (1, STACK_POINTER_REGNUM, offset, 0);
4105 base = stack_pointer_rtx;
4108 /* Now actually save the FP registers. */
4109 for (i = FP_SAVED_REG_LAST; i >= FP_SAVED_REG_FIRST; i -= FP_REG_STEP)
4111 if (regs_ever_live[i]
4112 || (! TARGET_64BIT && regs_ever_live[i + 1]))
4114 rtx addr, insn, reg;
4115 addr = gen_rtx_MEM (DFmode, gen_rtx_POST_INC (DFmode, tmpreg));
4116 reg = gen_rtx_REG (DFmode, i);
4117 insn = emit_move_insn (addr, reg);
4118 if (DO_FRAME_NOTES)
4120 RTX_FRAME_RELATED_P (insn) = 1;
4121 if (TARGET_64BIT)
4123 rtx mem = gen_rtx_MEM (DFmode,
4124 plus_constant (base, offset));
4125 REG_NOTES (insn)
4126 = gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
4127 gen_rtx_SET (VOIDmode, mem, reg),
4128 REG_NOTES (insn));
4130 else
4132 rtx meml = gen_rtx_MEM (SFmode,
4133 plus_constant (base, offset));
4134 rtx memr = gen_rtx_MEM (SFmode,
4135 plus_constant (base, offset + 4));
4136 rtx regl = gen_rtx_REG (SFmode, i);
4137 rtx regr = gen_rtx_REG (SFmode, i + 1);
4138 rtx setl = gen_rtx_SET (VOIDmode, meml, regl);
4139 rtx setr = gen_rtx_SET (VOIDmode, memr, regr);
4140 rtvec vec;
4142 RTX_FRAME_RELATED_P (setl) = 1;
4143 RTX_FRAME_RELATED_P (setr) = 1;
4144 vec = gen_rtvec (2, setl, setr);
4145 REG_NOTES (insn)
4146 = gen_rtx_EXPR_LIST (REG_FRAME_RELATED_EXPR,
4147 gen_rtx_SEQUENCE (VOIDmode, vec),
4148 REG_NOTES (insn));
4151 offset += GET_MODE_SIZE (DFmode);
4152 fr_saved++;
4158 /* Emit RTL to load REG from the memory location specified by BASE+DISP.
4159 Handle case where DISP > 8k by using the add_high_const patterns. */
4161 static void
4162 load_reg (int reg, HOST_WIDE_INT disp, int base)
4164 rtx dest = gen_rtx_REG (word_mode, reg);
4165 rtx basereg = gen_rtx_REG (Pmode, base);
4166 rtx src;
4168 if (VAL_14_BITS_P (disp))
4169 src = gen_rtx_MEM (word_mode, plus_constant (basereg, disp));
4170 else if (TARGET_64BIT && !VAL_32_BITS_P (disp))
4172 rtx delta = GEN_INT (disp);
4173 rtx tmpreg = gen_rtx_REG (Pmode, 1);
4175 emit_move_insn (tmpreg, delta);
4176 if (TARGET_DISABLE_INDEXING)
4178 emit_move_insn (tmpreg, gen_rtx_PLUS (Pmode, tmpreg, basereg));
4179 src = gen_rtx_MEM (word_mode, tmpreg);
4181 else
4182 src = gen_rtx_MEM (word_mode, gen_rtx_PLUS (Pmode, tmpreg, basereg));
4184 else
4186 rtx delta = GEN_INT (disp);
4187 rtx high = gen_rtx_PLUS (Pmode, basereg, gen_rtx_HIGH (Pmode, delta));
4188 rtx tmpreg = gen_rtx_REG (Pmode, 1);
4190 emit_move_insn (tmpreg, high);
4191 src = gen_rtx_MEM (word_mode, gen_rtx_LO_SUM (Pmode, tmpreg, delta));
4194 emit_move_insn (dest, src);
4197 /* Update the total code bytes output to the text section. */
4199 static void
4200 update_total_code_bytes (int nbytes)
4202 if ((TARGET_PORTABLE_RUNTIME || !TARGET_GAS || !TARGET_SOM)
4203 && !IN_NAMED_SECTION_P (cfun->decl))
4205 if (INSN_ADDRESSES_SET_P ())
4207 unsigned long old_total = total_code_bytes;
4209 total_code_bytes += nbytes;
4211 /* Be prepared to handle overflows. */
4212 if (old_total > total_code_bytes)
4213 total_code_bytes = -1;
4215 else
4216 total_code_bytes = -1;
4220 /* This function generates the assembly code for function exit.
4221 Args are as for output_function_prologue ().
4223 The function epilogue should not depend on the current stack
4224 pointer! It should use the frame pointer only. This is mandatory
4225 because of alloca; we also take advantage of it to omit stack
4226 adjustments before returning. */
4228 static void
4229 pa_output_function_epilogue (FILE *file, HOST_WIDE_INT size ATTRIBUTE_UNUSED)
4231 rtx insn = get_last_insn ();
4233 last_address = 0;
4235 /* hppa_expand_epilogue does the dirty work now. We just need
4236 to output the assembler directives which denote the end
4237 of a function.
4239 To make debuggers happy, emit a nop if the epilogue was completely
4240 eliminated due to a volatile call as the last insn in the
4241 current function. That way the return address (in %r2) will
4242 always point to a valid instruction in the current function. */
4244 /* Get the last real insn. */
4245 if (GET_CODE (insn) == NOTE)
4246 insn = prev_real_insn (insn);
4248 /* If it is a sequence, then look inside. */
4249 if (insn && GET_CODE (insn) == INSN && GET_CODE (PATTERN (insn)) == SEQUENCE)
4250 insn = XVECEXP (PATTERN (insn), 0, 0);
4252 /* If insn is a CALL_INSN, then it must be a call to a volatile
4253 function (otherwise there would be epilogue insns). */
4254 if (insn && GET_CODE (insn) == CALL_INSN)
4256 fputs ("\tnop\n", file);
4257 last_address += 4;
4260 fputs ("\t.EXIT\n\t.PROCEND\n", file);
4262 if (TARGET_SOM && TARGET_GAS)
4264 /* We done with this subspace except possibly for some additional
4265 debug information. Forget that we are in this subspace to ensure
4266 that the next function is output in its own subspace. */
4267 forget_section ();
4270 if (INSN_ADDRESSES_SET_P ())
4272 insn = get_last_nonnote_insn ();
4273 last_address += INSN_ADDRESSES (INSN_UID (insn));
4274 if (INSN_P (insn))
4275 last_address += insn_default_length (insn);
4276 last_address = ((last_address + FUNCTION_BOUNDARY / BITS_PER_UNIT - 1)
4277 & ~(FUNCTION_BOUNDARY / BITS_PER_UNIT - 1));
4280 /* Finally, update the total number of code bytes output so far. */
4281 update_total_code_bytes (last_address);
4284 void
4285 hppa_expand_epilogue (void)
4287 rtx tmpreg;
4288 HOST_WIDE_INT offset;
4289 HOST_WIDE_INT ret_off = 0;
4290 int i;
4291 int merge_sp_adjust_with_load = 0;
4293 /* We will use this often. */
4294 tmpreg = gen_rtx_REG (word_mode, 1);
4296 /* Try to restore RP early to avoid load/use interlocks when
4297 RP gets used in the return (bv) instruction. This appears to still
4298 be necessary even when we schedule the prologue and epilogue. */
4299 if (regs_ever_live [2] || current_function_calls_eh_return)
4301 ret_off = TARGET_64BIT ? -16 : -20;
4302 if (frame_pointer_needed)
4304 load_reg (2, ret_off, FRAME_POINTER_REGNUM);
4305 ret_off = 0;
4307 else
4309 /* No frame pointer, and stack is smaller than 8k. */
4310 if (VAL_14_BITS_P (ret_off - actual_fsize))
4312 load_reg (2, ret_off - actual_fsize, STACK_POINTER_REGNUM);
4313 ret_off = 0;
4318 /* General register restores. */
4319 if (frame_pointer_needed)
4321 offset = local_fsize;
4323 /* If the current function calls __builtin_eh_return, then we need
4324 to restore the saved EH data registers. */
4325 if (DO_FRAME_NOTES && current_function_calls_eh_return)
4327 unsigned int i, regno;
4329 for (i = 0; ; ++i)
4331 regno = EH_RETURN_DATA_REGNO (i);
4332 if (regno == INVALID_REGNUM)
4333 break;
4335 load_reg (regno, offset, FRAME_POINTER_REGNUM);
4336 offset += UNITS_PER_WORD;
4340 for (i = 18; i >= 4; i--)
4341 if (regs_ever_live[i] && ! call_used_regs[i])
4343 load_reg (i, offset, FRAME_POINTER_REGNUM);
4344 offset += UNITS_PER_WORD;
4347 else
4349 offset = local_fsize - actual_fsize;
4351 /* If the current function calls __builtin_eh_return, then we need
4352 to restore the saved EH data registers. */
4353 if (DO_FRAME_NOTES && current_function_calls_eh_return)
4355 unsigned int i, regno;
4357 for (i = 0; ; ++i)
4359 regno = EH_RETURN_DATA_REGNO (i);
4360 if (regno == INVALID_REGNUM)
4361 break;
4363 /* Only for the first load.
4364 merge_sp_adjust_with_load holds the register load
4365 with which we will merge the sp adjustment. */
4366 if (merge_sp_adjust_with_load == 0
4367 && local_fsize == 0
4368 && VAL_14_BITS_P (-actual_fsize))
4369 merge_sp_adjust_with_load = regno;
4370 else
4371 load_reg (regno, offset, STACK_POINTER_REGNUM);
4372 offset += UNITS_PER_WORD;
4376 for (i = 18; i >= 3; i--)
4378 if (regs_ever_live[i] && ! call_used_regs[i])
4380 /* Only for the first load.
4381 merge_sp_adjust_with_load holds the register load
4382 with which we will merge the sp adjustment. */
4383 if (merge_sp_adjust_with_load == 0
4384 && local_fsize == 0
4385 && VAL_14_BITS_P (-actual_fsize))
4386 merge_sp_adjust_with_load = i;
4387 else
4388 load_reg (i, offset, STACK_POINTER_REGNUM);
4389 offset += UNITS_PER_WORD;
4394 /* Align pointer properly (doubleword boundary). */
4395 offset = (offset + 7) & ~7;
4397 /* FP register restores. */
4398 if (save_fregs)
4400 /* Adjust the register to index off of. */
4401 if (frame_pointer_needed)
4402 set_reg_plus_d (1, FRAME_POINTER_REGNUM, offset, 0);
4403 else
4404 set_reg_plus_d (1, STACK_POINTER_REGNUM, offset, 0);
4406 /* Actually do the restores now. */
4407 for (i = FP_SAVED_REG_LAST; i >= FP_SAVED_REG_FIRST; i -= FP_REG_STEP)
4408 if (regs_ever_live[i]
4409 || (! TARGET_64BIT && regs_ever_live[i + 1]))
4411 rtx src = gen_rtx_MEM (DFmode, gen_rtx_POST_INC (DFmode, tmpreg));
4412 rtx dest = gen_rtx_REG (DFmode, i);
4413 emit_move_insn (dest, src);
4417 /* Emit a blockage insn here to keep these insns from being moved to
4418 an earlier spot in the epilogue, or into the main instruction stream.
4420 This is necessary as we must not cut the stack back before all the
4421 restores are finished. */
4422 emit_insn (gen_blockage ());
4424 /* Reset stack pointer (and possibly frame pointer). The stack
4425 pointer is initially set to fp + 64 to avoid a race condition. */
4426 if (frame_pointer_needed)
4428 rtx delta = GEN_INT (-64);
4430 set_reg_plus_d (STACK_POINTER_REGNUM, FRAME_POINTER_REGNUM, 64, 0);
4431 emit_insn (gen_pre_load (frame_pointer_rtx, stack_pointer_rtx, delta));
4433 /* If we were deferring a callee register restore, do it now. */
4434 else if (merge_sp_adjust_with_load)
4436 rtx delta = GEN_INT (-actual_fsize);
4437 rtx dest = gen_rtx_REG (word_mode, merge_sp_adjust_with_load);
4439 emit_insn (gen_pre_load (dest, stack_pointer_rtx, delta));
4441 else if (actual_fsize != 0)
4442 set_reg_plus_d (STACK_POINTER_REGNUM, STACK_POINTER_REGNUM,
4443 - actual_fsize, 0);
4445 /* If we haven't restored %r2 yet (no frame pointer, and a stack
4446 frame greater than 8k), do so now. */
4447 if (ret_off != 0)
4448 load_reg (2, ret_off, STACK_POINTER_REGNUM);
4450 if (DO_FRAME_NOTES && current_function_calls_eh_return)
4452 rtx sa = EH_RETURN_STACKADJ_RTX;
4454 emit_insn (gen_blockage ());
4455 emit_insn (TARGET_64BIT
4456 ? gen_subdi3 (stack_pointer_rtx, stack_pointer_rtx, sa)
4457 : gen_subsi3 (stack_pointer_rtx, stack_pointer_rtx, sa));
4462 hppa_pic_save_rtx (void)
4464 return get_hard_reg_initial_val (word_mode, PIC_OFFSET_TABLE_REGNUM);
4467 void
4468 hppa_profile_hook (int label_no)
4470 /* We use SImode for the address of the function in both 32 and
4471 64-bit code to avoid having to provide DImode versions of the
4472 lcla2 and load_offset_label_address insn patterns. */
4473 rtx reg = gen_reg_rtx (SImode);
4474 rtx label_rtx = gen_label_rtx ();
4475 rtx begin_label_rtx, call_insn;
4476 char begin_label_name[16];
4478 ASM_GENERATE_INTERNAL_LABEL (begin_label_name, FUNC_BEGIN_PROLOG_LABEL,
4479 label_no);
4480 begin_label_rtx = gen_rtx_SYMBOL_REF (SImode, ggc_strdup (begin_label_name));
4482 if (TARGET_64BIT)
4483 emit_move_insn (arg_pointer_rtx,
4484 gen_rtx_PLUS (word_mode, virtual_outgoing_args_rtx,
4485 GEN_INT (64)));
4487 emit_move_insn (gen_rtx_REG (word_mode, 26), gen_rtx_REG (word_mode, 2));
4489 /* The address of the function is loaded into %r25 with a instruction-
4490 relative sequence that avoids the use of relocations. The sequence
4491 is split so that the load_offset_label_address instruction can
4492 occupy the delay slot of the call to _mcount. */
4493 if (TARGET_PA_20)
4494 emit_insn (gen_lcla2 (reg, label_rtx));
4495 else
4496 emit_insn (gen_lcla1 (reg, label_rtx));
4498 emit_insn (gen_load_offset_label_address (gen_rtx_REG (SImode, 25),
4499 reg, begin_label_rtx, label_rtx));
4501 #ifndef NO_PROFILE_COUNTERS
4503 rtx count_label_rtx, addr, r24;
4504 char count_label_name[16];
4506 ASM_GENERATE_INTERNAL_LABEL (count_label_name, "LP", label_no);
4507 count_label_rtx = gen_rtx_SYMBOL_REF (Pmode, ggc_strdup (count_label_name));
4509 addr = force_reg (Pmode, count_label_rtx);
4510 r24 = gen_rtx_REG (Pmode, 24);
4511 emit_move_insn (r24, addr);
4513 call_insn =
4514 emit_call_insn (gen_call (gen_rtx_MEM (Pmode,
4515 gen_rtx_SYMBOL_REF (Pmode,
4516 "_mcount")),
4517 GEN_INT (TARGET_64BIT ? 24 : 12)));
4519 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), r24);
4521 #else
4523 call_insn =
4524 emit_call_insn (gen_call (gen_rtx_MEM (Pmode,
4525 gen_rtx_SYMBOL_REF (Pmode,
4526 "_mcount")),
4527 GEN_INT (TARGET_64BIT ? 16 : 8)));
4529 #endif
4531 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), gen_rtx_REG (SImode, 25));
4532 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), gen_rtx_REG (SImode, 26));
4534 /* Indicate the _mcount call cannot throw, nor will it execute a
4535 non-local goto. */
4536 REG_NOTES (call_insn)
4537 = gen_rtx_EXPR_LIST (REG_EH_REGION, constm1_rtx, REG_NOTES (call_insn));
4540 /* Fetch the return address for the frame COUNT steps up from
4541 the current frame, after the prologue. FRAMEADDR is the
4542 frame pointer of the COUNT frame.
4544 We want to ignore any export stub remnants here. To handle this,
4545 we examine the code at the return address, and if it is an export
4546 stub, we return a memory rtx for the stub return address stored
4547 at frame-24.
4549 The value returned is used in two different ways:
4551 1. To find a function's caller.
4553 2. To change the return address for a function.
4555 This function handles most instances of case 1; however, it will
4556 fail if there are two levels of stubs to execute on the return
4557 path. The only way I believe that can happen is if the return value
4558 needs a parameter relocation, which never happens for C code.
4560 This function handles most instances of case 2; however, it will
4561 fail if we did not originally have stub code on the return path
4562 but will need stub code on the new return path. This can happen if
4563 the caller & callee are both in the main program, but the new
4564 return location is in a shared library. */
4567 return_addr_rtx (int count, rtx frameaddr)
4569 rtx label;
4570 rtx rp;
4571 rtx saved_rp;
4572 rtx ins;
4574 if (count != 0)
4575 return NULL_RTX;
4577 rp = get_hard_reg_initial_val (Pmode, 2);
4579 if (TARGET_64BIT || TARGET_NO_SPACE_REGS)
4580 return rp;
4582 saved_rp = gen_reg_rtx (Pmode);
4583 emit_move_insn (saved_rp, rp);
4585 /* Get pointer to the instruction stream. We have to mask out the
4586 privilege level from the two low order bits of the return address
4587 pointer here so that ins will point to the start of the first
4588 instruction that would have been executed if we returned. */
4589 ins = copy_to_reg (gen_rtx_AND (Pmode, rp, MASK_RETURN_ADDR));
4590 label = gen_label_rtx ();
4592 /* Check the instruction stream at the normal return address for the
4593 export stub:
4595 0x4bc23fd1 | stub+8: ldw -18(sr0,sp),rp
4596 0x004010a1 | stub+12: ldsid (sr0,rp),r1
4597 0x00011820 | stub+16: mtsp r1,sr0
4598 0xe0400002 | stub+20: be,n 0(sr0,rp)
4600 If it is an export stub, than our return address is really in
4601 -24[frameaddr]. */
4603 emit_cmp_insn (gen_rtx_MEM (SImode, ins), GEN_INT (0x4bc23fd1), NE,
4604 NULL_RTX, SImode, 1);
4605 emit_jump_insn (gen_bne (label));
4607 emit_cmp_insn (gen_rtx_MEM (SImode, plus_constant (ins, 4)),
4608 GEN_INT (0x004010a1), NE, NULL_RTX, SImode, 1);
4609 emit_jump_insn (gen_bne (label));
4611 emit_cmp_insn (gen_rtx_MEM (SImode, plus_constant (ins, 8)),
4612 GEN_INT (0x00011820), NE, NULL_RTX, SImode, 1);
4613 emit_jump_insn (gen_bne (label));
4615 emit_cmp_insn (gen_rtx_MEM (SImode, plus_constant (ins, 12)),
4616 GEN_INT (0xe0400002), NE, NULL_RTX, SImode, 1);
4618 /* If there is no export stub then just use the value saved from
4619 the return pointer register. */
4621 emit_jump_insn (gen_bne (label));
4623 /* Here we know that our return address points to an export
4624 stub. We don't want to return the address of the export stub,
4625 but rather the return address of the export stub. That return
4626 address is stored at -24[frameaddr]. */
4628 emit_move_insn (saved_rp,
4629 gen_rtx_MEM (Pmode,
4630 memory_address (Pmode,
4631 plus_constant (frameaddr,
4632 -24))));
4634 emit_label (label);
4635 return saved_rp;
4638 /* This is only valid once reload has completed because it depends on
4639 knowing exactly how much (if any) frame there is and...
4641 It's only valid if there is no frame marker to de-allocate and...
4643 It's only valid if %r2 hasn't been saved into the caller's frame
4644 (we're not profiling and %r2 isn't live anywhere). */
4646 hppa_can_use_return_insn_p (void)
4648 return (reload_completed
4649 && (compute_frame_size (get_frame_size (), 0) ? 0 : 1)
4650 && ! regs_ever_live[2]
4651 && ! frame_pointer_needed);
4654 void
4655 emit_bcond_fp (enum rtx_code code, rtx operand0)
4657 emit_jump_insn (gen_rtx_SET (VOIDmode, pc_rtx,
4658 gen_rtx_IF_THEN_ELSE (VOIDmode,
4659 gen_rtx_fmt_ee (code,
4660 VOIDmode,
4661 gen_rtx_REG (CCFPmode, 0),
4662 const0_rtx),
4663 gen_rtx_LABEL_REF (VOIDmode, operand0),
4664 pc_rtx)));
4669 gen_cmp_fp (enum rtx_code code, rtx operand0, rtx operand1)
4671 return gen_rtx_SET (VOIDmode, gen_rtx_REG (CCFPmode, 0),
4672 gen_rtx_fmt_ee (code, CCFPmode, operand0, operand1));
4675 /* Adjust the cost of a scheduling dependency. Return the new cost of
4676 a dependency LINK or INSN on DEP_INSN. COST is the current cost. */
4678 static int
4679 pa_adjust_cost (rtx insn, rtx link, rtx dep_insn, int cost)
4681 enum attr_type attr_type;
4683 /* Don't adjust costs for a pa8000 chip, also do not adjust any
4684 true dependencies as they are described with bypasses now. */
4685 if (pa_cpu >= PROCESSOR_8000 || REG_NOTE_KIND (link) == 0)
4686 return cost;
4688 if (! recog_memoized (insn))
4689 return 0;
4691 attr_type = get_attr_type (insn);
4693 if (REG_NOTE_KIND (link) == REG_DEP_ANTI)
4695 /* Anti dependency; DEP_INSN reads a register that INSN writes some
4696 cycles later. */
4698 if (attr_type == TYPE_FPLOAD)
4700 rtx pat = PATTERN (insn);
4701 rtx dep_pat = PATTERN (dep_insn);
4702 if (GET_CODE (pat) == PARALLEL)
4704 /* This happens for the fldXs,mb patterns. */
4705 pat = XVECEXP (pat, 0, 0);
4707 if (GET_CODE (pat) != SET || GET_CODE (dep_pat) != SET)
4708 /* If this happens, we have to extend this to schedule
4709 optimally. Return 0 for now. */
4710 return 0;
4712 if (reg_mentioned_p (SET_DEST (pat), SET_SRC (dep_pat)))
4714 if (! recog_memoized (dep_insn))
4715 return 0;
4716 switch (get_attr_type (dep_insn))
4718 case TYPE_FPALU:
4719 case TYPE_FPMULSGL:
4720 case TYPE_FPMULDBL:
4721 case TYPE_FPDIVSGL:
4722 case TYPE_FPDIVDBL:
4723 case TYPE_FPSQRTSGL:
4724 case TYPE_FPSQRTDBL:
4725 /* A fpload can't be issued until one cycle before a
4726 preceding arithmetic operation has finished if
4727 the target of the fpload is any of the sources
4728 (or destination) of the arithmetic operation. */
4729 return insn_default_latency (dep_insn) - 1;
4731 default:
4732 return 0;
4736 else if (attr_type == TYPE_FPALU)
4738 rtx pat = PATTERN (insn);
4739 rtx dep_pat = PATTERN (dep_insn);
4740 if (GET_CODE (pat) == PARALLEL)
4742 /* This happens for the fldXs,mb patterns. */
4743 pat = XVECEXP (pat, 0, 0);
4745 if (GET_CODE (pat) != SET || GET_CODE (dep_pat) != SET)
4746 /* If this happens, we have to extend this to schedule
4747 optimally. Return 0 for now. */
4748 return 0;
4750 if (reg_mentioned_p (SET_DEST (pat), SET_SRC (dep_pat)))
4752 if (! recog_memoized (dep_insn))
4753 return 0;
4754 switch (get_attr_type (dep_insn))
4756 case TYPE_FPDIVSGL:
4757 case TYPE_FPDIVDBL:
4758 case TYPE_FPSQRTSGL:
4759 case TYPE_FPSQRTDBL:
4760 /* An ALU flop can't be issued until two cycles before a
4761 preceding divide or sqrt operation has finished if
4762 the target of the ALU flop is any of the sources
4763 (or destination) of the divide or sqrt operation. */
4764 return insn_default_latency (dep_insn) - 2;
4766 default:
4767 return 0;
4772 /* For other anti dependencies, the cost is 0. */
4773 return 0;
4775 else if (REG_NOTE_KIND (link) == REG_DEP_OUTPUT)
4777 /* Output dependency; DEP_INSN writes a register that INSN writes some
4778 cycles later. */
4779 if (attr_type == TYPE_FPLOAD)
4781 rtx pat = PATTERN (insn);
4782 rtx dep_pat = PATTERN (dep_insn);
4783 if (GET_CODE (pat) == PARALLEL)
4785 /* This happens for the fldXs,mb patterns. */
4786 pat = XVECEXP (pat, 0, 0);
4788 if (GET_CODE (pat) != SET || GET_CODE (dep_pat) != SET)
4789 /* If this happens, we have to extend this to schedule
4790 optimally. Return 0 for now. */
4791 return 0;
4793 if (reg_mentioned_p (SET_DEST (pat), SET_DEST (dep_pat)))
4795 if (! recog_memoized (dep_insn))
4796 return 0;
4797 switch (get_attr_type (dep_insn))
4799 case TYPE_FPALU:
4800 case TYPE_FPMULSGL:
4801 case TYPE_FPMULDBL:
4802 case TYPE_FPDIVSGL:
4803 case TYPE_FPDIVDBL:
4804 case TYPE_FPSQRTSGL:
4805 case TYPE_FPSQRTDBL:
4806 /* A fpload can't be issued until one cycle before a
4807 preceding arithmetic operation has finished if
4808 the target of the fpload is the destination of the
4809 arithmetic operation.
4811 Exception: For PA7100LC, PA7200 and PA7300, the cost
4812 is 3 cycles, unless they bundle together. We also
4813 pay the penalty if the second insn is a fpload. */
4814 return insn_default_latency (dep_insn) - 1;
4816 default:
4817 return 0;
4821 else if (attr_type == TYPE_FPALU)
4823 rtx pat = PATTERN (insn);
4824 rtx dep_pat = PATTERN (dep_insn);
4825 if (GET_CODE (pat) == PARALLEL)
4827 /* This happens for the fldXs,mb patterns. */
4828 pat = XVECEXP (pat, 0, 0);
4830 if (GET_CODE (pat) != SET || GET_CODE (dep_pat) != SET)
4831 /* If this happens, we have to extend this to schedule
4832 optimally. Return 0 for now. */
4833 return 0;
4835 if (reg_mentioned_p (SET_DEST (pat), SET_DEST (dep_pat)))
4837 if (! recog_memoized (dep_insn))
4838 return 0;
4839 switch (get_attr_type (dep_insn))
4841 case TYPE_FPDIVSGL:
4842 case TYPE_FPDIVDBL:
4843 case TYPE_FPSQRTSGL:
4844 case TYPE_FPSQRTDBL:
4845 /* An ALU flop can't be issued until two cycles before a
4846 preceding divide or sqrt operation has finished if
4847 the target of the ALU flop is also the target of
4848 the divide or sqrt operation. */
4849 return insn_default_latency (dep_insn) - 2;
4851 default:
4852 return 0;
4857 /* For other output dependencies, the cost is 0. */
4858 return 0;
4860 else
4861 abort ();
4864 /* Adjust scheduling priorities. We use this to try and keep addil
4865 and the next use of %r1 close together. */
4866 static int
4867 pa_adjust_priority (rtx insn, int priority)
4869 rtx set = single_set (insn);
4870 rtx src, dest;
4871 if (set)
4873 src = SET_SRC (set);
4874 dest = SET_DEST (set);
4875 if (GET_CODE (src) == LO_SUM
4876 && symbolic_operand (XEXP (src, 1), VOIDmode)
4877 && ! read_only_operand (XEXP (src, 1), VOIDmode))
4878 priority >>= 3;
4880 else if (GET_CODE (src) == MEM
4881 && GET_CODE (XEXP (src, 0)) == LO_SUM
4882 && symbolic_operand (XEXP (XEXP (src, 0), 1), VOIDmode)
4883 && ! read_only_operand (XEXP (XEXP (src, 0), 1), VOIDmode))
4884 priority >>= 1;
4886 else if (GET_CODE (dest) == MEM
4887 && GET_CODE (XEXP (dest, 0)) == LO_SUM
4888 && symbolic_operand (XEXP (XEXP (dest, 0), 1), VOIDmode)
4889 && ! read_only_operand (XEXP (XEXP (dest, 0), 1), VOIDmode))
4890 priority >>= 3;
4892 return priority;
4895 /* The 700 can only issue a single insn at a time.
4896 The 7XXX processors can issue two insns at a time.
4897 The 8000 can issue 4 insns at a time. */
4898 static int
4899 pa_issue_rate (void)
4901 switch (pa_cpu)
4903 case PROCESSOR_700: return 1;
4904 case PROCESSOR_7100: return 2;
4905 case PROCESSOR_7100LC: return 2;
4906 case PROCESSOR_7200: return 2;
4907 case PROCESSOR_7300: return 2;
4908 case PROCESSOR_8000: return 4;
4910 default:
4911 abort ();
4917 /* Return any length adjustment needed by INSN which already has its length
4918 computed as LENGTH. Return zero if no adjustment is necessary.
4920 For the PA: function calls, millicode calls, and backwards short
4921 conditional branches with unfilled delay slots need an adjustment by +1
4922 (to account for the NOP which will be inserted into the instruction stream).
4924 Also compute the length of an inline block move here as it is too
4925 complicated to express as a length attribute in pa.md. */
4927 pa_adjust_insn_length (rtx insn, int length)
4929 rtx pat = PATTERN (insn);
4931 /* Jumps inside switch tables which have unfilled delay slots need
4932 adjustment. */
4933 if (GET_CODE (insn) == JUMP_INSN
4934 && GET_CODE (pat) == PARALLEL
4935 && get_attr_type (insn) == TYPE_BTABLE_BRANCH)
4936 return 4;
4937 /* Millicode insn with an unfilled delay slot. */
4938 else if (GET_CODE (insn) == INSN
4939 && GET_CODE (pat) != SEQUENCE
4940 && GET_CODE (pat) != USE
4941 && GET_CODE (pat) != CLOBBER
4942 && get_attr_type (insn) == TYPE_MILLI)
4943 return 4;
4944 /* Block move pattern. */
4945 else if (GET_CODE (insn) == INSN
4946 && GET_CODE (pat) == PARALLEL
4947 && GET_CODE (XVECEXP (pat, 0, 0)) == SET
4948 && GET_CODE (XEXP (XVECEXP (pat, 0, 0), 0)) == MEM
4949 && GET_CODE (XEXP (XVECEXP (pat, 0, 0), 1)) == MEM
4950 && GET_MODE (XEXP (XVECEXP (pat, 0, 0), 0)) == BLKmode
4951 && GET_MODE (XEXP (XVECEXP (pat, 0, 0), 1)) == BLKmode)
4952 return compute_movmem_length (insn) - 4;
4953 /* Block clear pattern. */
4954 else if (GET_CODE (insn) == INSN
4955 && GET_CODE (pat) == PARALLEL
4956 && GET_CODE (XVECEXP (pat, 0, 0)) == SET
4957 && GET_CODE (XEXP (XVECEXP (pat, 0, 0), 0)) == MEM
4958 && XEXP (XVECEXP (pat, 0, 0), 1) == const0_rtx
4959 && GET_MODE (XEXP (XVECEXP (pat, 0, 0), 0)) == BLKmode)
4960 return compute_clrmem_length (insn) - 4;
4961 /* Conditional branch with an unfilled delay slot. */
4962 else if (GET_CODE (insn) == JUMP_INSN && ! simplejump_p (insn))
4964 /* Adjust a short backwards conditional with an unfilled delay slot. */
4965 if (GET_CODE (pat) == SET
4966 && length == 4
4967 && ! forward_branch_p (insn))
4968 return 4;
4969 else if (GET_CODE (pat) == PARALLEL
4970 && get_attr_type (insn) == TYPE_PARALLEL_BRANCH
4971 && length == 4)
4972 return 4;
4973 /* Adjust dbra insn with short backwards conditional branch with
4974 unfilled delay slot -- only for case where counter is in a
4975 general register register. */
4976 else if (GET_CODE (pat) == PARALLEL
4977 && GET_CODE (XVECEXP (pat, 0, 1)) == SET
4978 && GET_CODE (XEXP (XVECEXP (pat, 0, 1), 0)) == REG
4979 && ! FP_REG_P (XEXP (XVECEXP (pat, 0, 1), 0))
4980 && length == 4
4981 && ! forward_branch_p (insn))
4982 return 4;
4983 else
4984 return 0;
4986 return 0;
4989 /* Print operand X (an rtx) in assembler syntax to file FILE.
4990 CODE is a letter or dot (`z' in `%z0') or 0 if no letter was specified.
4991 For `%' followed by punctuation, CODE is the punctuation and X is null. */
4993 void
4994 print_operand (FILE *file, rtx x, int code)
4996 switch (code)
4998 case '#':
4999 /* Output a 'nop' if there's nothing for the delay slot. */
5000 if (dbr_sequence_length () == 0)
5001 fputs ("\n\tnop", file);
5002 return;
5003 case '*':
5004 /* Output a nullification completer if there's nothing for the */
5005 /* delay slot or nullification is requested. */
5006 if (dbr_sequence_length () == 0 ||
5007 (final_sequence &&
5008 INSN_ANNULLED_BRANCH_P (XVECEXP (final_sequence, 0, 0))))
5009 fputs (",n", file);
5010 return;
5011 case 'R':
5012 /* Print out the second register name of a register pair.
5013 I.e., R (6) => 7. */
5014 fputs (reg_names[REGNO (x) + 1], file);
5015 return;
5016 case 'r':
5017 /* A register or zero. */
5018 if (x == const0_rtx
5019 || (x == CONST0_RTX (DFmode))
5020 || (x == CONST0_RTX (SFmode)))
5022 fputs ("%r0", file);
5023 return;
5025 else
5026 break;
5027 case 'f':
5028 /* A register or zero (floating point). */
5029 if (x == const0_rtx
5030 || (x == CONST0_RTX (DFmode))
5031 || (x == CONST0_RTX (SFmode)))
5033 fputs ("%fr0", file);
5034 return;
5036 else
5037 break;
5038 case 'A':
5040 rtx xoperands[2];
5042 xoperands[0] = XEXP (XEXP (x, 0), 0);
5043 xoperands[1] = XVECEXP (XEXP (XEXP (x, 0), 1), 0, 0);
5044 output_global_address (file, xoperands[1], 0);
5045 fprintf (file, "(%s)", reg_names [REGNO (xoperands[0])]);
5046 return;
5049 case 'C': /* Plain (C)ondition */
5050 case 'X':
5051 switch (GET_CODE (x))
5053 case EQ:
5054 fputs ("=", file); break;
5055 case NE:
5056 fputs ("<>", file); break;
5057 case GT:
5058 fputs (">", file); break;
5059 case GE:
5060 fputs (">=", file); break;
5061 case GEU:
5062 fputs (">>=", file); break;
5063 case GTU:
5064 fputs (">>", file); break;
5065 case LT:
5066 fputs ("<", file); break;
5067 case LE:
5068 fputs ("<=", file); break;
5069 case LEU:
5070 fputs ("<<=", file); break;
5071 case LTU:
5072 fputs ("<<", file); break;
5073 default:
5074 abort ();
5076 return;
5077 case 'N': /* Condition, (N)egated */
5078 switch (GET_CODE (x))
5080 case EQ:
5081 fputs ("<>", file); break;
5082 case NE:
5083 fputs ("=", file); break;
5084 case GT:
5085 fputs ("<=", file); break;
5086 case GE:
5087 fputs ("<", file); break;
5088 case GEU:
5089 fputs ("<<", file); break;
5090 case GTU:
5091 fputs ("<<=", file); break;
5092 case LT:
5093 fputs (">=", file); break;
5094 case LE:
5095 fputs (">", file); break;
5096 case LEU:
5097 fputs (">>", file); break;
5098 case LTU:
5099 fputs (">>=", file); break;
5100 default:
5101 abort ();
5103 return;
5104 /* For floating point comparisons. Note that the output
5105 predicates are the complement of the desired mode. */
5106 case 'Y':
5107 switch (GET_CODE (x))
5109 case EQ:
5110 fputs ("!=", file); break;
5111 case NE:
5112 fputs ("=", file); break;
5113 case GT:
5114 fputs ("!>", file); break;
5115 case GE:
5116 fputs ("!>=", file); break;
5117 case LT:
5118 fputs ("!<", file); break;
5119 case LE:
5120 fputs ("!<=", file); break;
5121 case LTGT:
5122 fputs ("!<>", file); break;
5123 case UNLE:
5124 fputs (">", file); break;
5125 case UNLT:
5126 fputs (">=", file); break;
5127 case UNGE:
5128 fputs ("<", file); break;
5129 case UNGT:
5130 fputs ("<=", file); break;
5131 case UNEQ:
5132 fputs ("<>", file); break;
5133 case UNORDERED:
5134 fputs ("<=>", file); break;
5135 case ORDERED:
5136 fputs ("!<=>", file); break;
5137 default:
5138 abort ();
5140 return;
5141 case 'S': /* Condition, operands are (S)wapped. */
5142 switch (GET_CODE (x))
5144 case EQ:
5145 fputs ("=", file); break;
5146 case NE:
5147 fputs ("<>", file); break;
5148 case GT:
5149 fputs ("<", file); break;
5150 case GE:
5151 fputs ("<=", file); break;
5152 case GEU:
5153 fputs ("<<=", file); break;
5154 case GTU:
5155 fputs ("<<", file); break;
5156 case LT:
5157 fputs (">", file); break;
5158 case LE:
5159 fputs (">=", file); break;
5160 case LEU:
5161 fputs (">>=", file); break;
5162 case LTU:
5163 fputs (">>", file); break;
5164 default:
5165 abort ();
5167 return;
5168 case 'B': /* Condition, (B)oth swapped and negate. */
5169 switch (GET_CODE (x))
5171 case EQ:
5172 fputs ("<>", file); break;
5173 case NE:
5174 fputs ("=", file); break;
5175 case GT:
5176 fputs (">=", file); break;
5177 case GE:
5178 fputs (">", file); break;
5179 case GEU:
5180 fputs (">>", file); break;
5181 case GTU:
5182 fputs (">>=", file); break;
5183 case LT:
5184 fputs ("<=", file); break;
5185 case LE:
5186 fputs ("<", file); break;
5187 case LEU:
5188 fputs ("<<", file); break;
5189 case LTU:
5190 fputs ("<<=", file); break;
5191 default:
5192 abort ();
5194 return;
5195 case 'k':
5196 if (GET_CODE (x) == CONST_INT)
5198 fprintf (file, HOST_WIDE_INT_PRINT_DEC, ~INTVAL (x));
5199 return;
5201 abort ();
5202 case 'Q':
5203 if (GET_CODE (x) == CONST_INT)
5205 fprintf (file, HOST_WIDE_INT_PRINT_DEC, 64 - (INTVAL (x) & 63));
5206 return;
5208 abort ();
5209 case 'L':
5210 if (GET_CODE (x) == CONST_INT)
5212 fprintf (file, HOST_WIDE_INT_PRINT_DEC, 32 - (INTVAL (x) & 31));
5213 return;
5215 abort ();
5216 case 'O':
5217 if (GET_CODE (x) == CONST_INT && exact_log2 (INTVAL (x)) >= 0)
5219 fprintf (file, "%d", exact_log2 (INTVAL (x)));
5220 return;
5222 abort ();
5223 case 'p':
5224 if (GET_CODE (x) == CONST_INT)
5226 fprintf (file, HOST_WIDE_INT_PRINT_DEC, 63 - (INTVAL (x) & 63));
5227 return;
5229 abort ();
5230 case 'P':
5231 if (GET_CODE (x) == CONST_INT)
5233 fprintf (file, HOST_WIDE_INT_PRINT_DEC, 31 - (INTVAL (x) & 31));
5234 return;
5236 abort ();
5237 case 'I':
5238 if (GET_CODE (x) == CONST_INT)
5239 fputs ("i", file);
5240 return;
5241 case 'M':
5242 case 'F':
5243 switch (GET_CODE (XEXP (x, 0)))
5245 case PRE_DEC:
5246 case PRE_INC:
5247 if (ASSEMBLER_DIALECT == 0)
5248 fputs ("s,mb", file);
5249 else
5250 fputs (",mb", file);
5251 break;
5252 case POST_DEC:
5253 case POST_INC:
5254 if (ASSEMBLER_DIALECT == 0)
5255 fputs ("s,ma", file);
5256 else
5257 fputs (",ma", file);
5258 break;
5259 case PLUS:
5260 if (GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
5261 && GET_CODE (XEXP (XEXP (x, 0), 1)) == REG)
5263 if (ASSEMBLER_DIALECT == 0)
5264 fputs ("x", file);
5266 else if (GET_CODE (XEXP (XEXP (x, 0), 0)) == MULT
5267 || GET_CODE (XEXP (XEXP (x, 0), 1)) == MULT)
5269 if (ASSEMBLER_DIALECT == 0)
5270 fputs ("x,s", file);
5271 else
5272 fputs (",s", file);
5274 else if (code == 'F' && ASSEMBLER_DIALECT == 0)
5275 fputs ("s", file);
5276 break;
5277 default:
5278 if (code == 'F' && ASSEMBLER_DIALECT == 0)
5279 fputs ("s", file);
5280 break;
5282 return;
5283 case 'G':
5284 output_global_address (file, x, 0);
5285 return;
5286 case 'H':
5287 output_global_address (file, x, 1);
5288 return;
5289 case 0: /* Don't do anything special */
5290 break;
5291 case 'Z':
5293 unsigned op[3];
5294 compute_zdepwi_operands (INTVAL (x), op);
5295 fprintf (file, "%d,%d,%d", op[0], op[1], op[2]);
5296 return;
5298 case 'z':
5300 unsigned op[3];
5301 compute_zdepdi_operands (INTVAL (x), op);
5302 fprintf (file, "%d,%d,%d", op[0], op[1], op[2]);
5303 return;
5305 case 'c':
5306 /* We can get here from a .vtable_inherit due to our
5307 CONSTANT_ADDRESS_P rejecting perfectly good constant
5308 addresses. */
5309 break;
5310 default:
5311 abort ();
5313 if (GET_CODE (x) == REG)
5315 fputs (reg_names [REGNO (x)], file);
5316 if (TARGET_64BIT && FP_REG_P (x) && GET_MODE_SIZE (GET_MODE (x)) <= 4)
5318 fputs ("R", file);
5319 return;
5321 if (FP_REG_P (x)
5322 && GET_MODE_SIZE (GET_MODE (x)) <= 4
5323 && (REGNO (x) & 1) == 0)
5324 fputs ("L", file);
5326 else if (GET_CODE (x) == MEM)
5328 int size = GET_MODE_SIZE (GET_MODE (x));
5329 rtx base = NULL_RTX;
5330 switch (GET_CODE (XEXP (x, 0)))
5332 case PRE_DEC:
5333 case POST_DEC:
5334 base = XEXP (XEXP (x, 0), 0);
5335 fprintf (file, "-%d(%s)", size, reg_names [REGNO (base)]);
5336 break;
5337 case PRE_INC:
5338 case POST_INC:
5339 base = XEXP (XEXP (x, 0), 0);
5340 fprintf (file, "%d(%s)", size, reg_names [REGNO (base)]);
5341 break;
5342 case PLUS:
5343 if (GET_CODE (XEXP (XEXP (x, 0), 0)) == MULT)
5344 fprintf (file, "%s(%s)",
5345 reg_names [REGNO (XEXP (XEXP (XEXP (x, 0), 0), 0))],
5346 reg_names [REGNO (XEXP (XEXP (x, 0), 1))]);
5347 else if (GET_CODE (XEXP (XEXP (x, 0), 1)) == MULT)
5348 fprintf (file, "%s(%s)",
5349 reg_names [REGNO (XEXP (XEXP (XEXP (x, 0), 1), 0))],
5350 reg_names [REGNO (XEXP (XEXP (x, 0), 0))]);
5351 else if (GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
5352 && GET_CODE (XEXP (XEXP (x, 0), 1)) == REG)
5354 /* Because the REG_POINTER flag can get lost during reload,
5355 GO_IF_LEGITIMATE_ADDRESS canonicalizes the order of the
5356 index and base registers in the combined move patterns. */
5357 rtx base = XEXP (XEXP (x, 0), 1);
5358 rtx index = XEXP (XEXP (x, 0), 0);
5360 fprintf (file, "%s(%s)",
5361 reg_names [REGNO (index)], reg_names [REGNO (base)]);
5363 else
5364 output_address (XEXP (x, 0));
5365 break;
5366 default:
5367 output_address (XEXP (x, 0));
5368 break;
5371 else
5372 output_addr_const (file, x);
5375 /* output a SYMBOL_REF or a CONST expression involving a SYMBOL_REF. */
5377 void
5378 output_global_address (FILE *file, rtx x, int round_constant)
5381 /* Imagine (high (const (plus ...))). */
5382 if (GET_CODE (x) == HIGH)
5383 x = XEXP (x, 0);
5385 if (GET_CODE (x) == SYMBOL_REF && read_only_operand (x, VOIDmode))
5386 assemble_name (file, XSTR (x, 0));
5387 else if (GET_CODE (x) == SYMBOL_REF && !flag_pic)
5389 assemble_name (file, XSTR (x, 0));
5390 fputs ("-$global$", file);
5392 else if (GET_CODE (x) == CONST)
5394 const char *sep = "";
5395 int offset = 0; /* assembler wants -$global$ at end */
5396 rtx base = NULL_RTX;
5398 if (GET_CODE (XEXP (XEXP (x, 0), 0)) == SYMBOL_REF)
5400 base = XEXP (XEXP (x, 0), 0);
5401 output_addr_const (file, base);
5403 else if (GET_CODE (XEXP (XEXP (x, 0), 0)) == CONST_INT)
5404 offset = INTVAL (XEXP (XEXP (x, 0), 0));
5405 else abort ();
5407 if (GET_CODE (XEXP (XEXP (x, 0), 1)) == SYMBOL_REF)
5409 base = XEXP (XEXP (x, 0), 1);
5410 output_addr_const (file, base);
5412 else if (GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT)
5413 offset = INTVAL (XEXP (XEXP (x, 0), 1));
5414 else abort ();
5416 /* How bogus. The compiler is apparently responsible for
5417 rounding the constant if it uses an LR field selector.
5419 The linker and/or assembler seem a better place since
5420 they have to do this kind of thing already.
5422 If we fail to do this, HP's optimizing linker may eliminate
5423 an addil, but not update the ldw/stw/ldo instruction that
5424 uses the result of the addil. */
5425 if (round_constant)
5426 offset = ((offset + 0x1000) & ~0x1fff);
5428 if (GET_CODE (XEXP (x, 0)) == PLUS)
5430 if (offset < 0)
5432 offset = -offset;
5433 sep = "-";
5435 else
5436 sep = "+";
5438 else if (GET_CODE (XEXP (x, 0)) == MINUS
5439 && (GET_CODE (XEXP (XEXP (x, 0), 0)) == SYMBOL_REF))
5440 sep = "-";
5441 else abort ();
5443 if (!read_only_operand (base, VOIDmode) && !flag_pic)
5444 fputs ("-$global$", file);
5445 if (offset)
5446 fprintf (file, "%s%d", sep, offset);
5448 else
5449 output_addr_const (file, x);
5452 /* Output boilerplate text to appear at the beginning of the file.
5453 There are several possible versions. */
5454 #define aputs(x) fputs(x, asm_out_file)
5455 static inline void
5456 pa_file_start_level (void)
5458 if (TARGET_64BIT)
5459 aputs ("\t.LEVEL 2.0w\n");
5460 else if (TARGET_PA_20)
5461 aputs ("\t.LEVEL 2.0\n");
5462 else if (TARGET_PA_11)
5463 aputs ("\t.LEVEL 1.1\n");
5464 else
5465 aputs ("\t.LEVEL 1.0\n");
5468 static inline void
5469 pa_file_start_space (int sortspace)
5471 aputs ("\t.SPACE $PRIVATE$");
5472 if (sortspace)
5473 aputs (",SORT=16");
5474 aputs ("\n\t.SUBSPA $DATA$,QUAD=1,ALIGN=8,ACCESS=31"
5475 "\n\t.SUBSPA $BSS$,QUAD=1,ALIGN=8,ACCESS=31,ZERO,SORT=82"
5476 "\n\t.SPACE $TEXT$");
5477 if (sortspace)
5478 aputs (",SORT=8");
5479 aputs ("\n\t.SUBSPA $LIT$,QUAD=0,ALIGN=8,ACCESS=44"
5480 "\n\t.SUBSPA $CODE$,QUAD=0,ALIGN=8,ACCESS=44,CODE_ONLY\n");
5483 static inline void
5484 pa_file_start_file (int want_version)
5486 if (write_symbols != NO_DEBUG)
5488 output_file_directive (asm_out_file, main_input_filename);
5489 if (want_version)
5490 aputs ("\t.version\t\"01.01\"\n");
5494 static inline void
5495 pa_file_start_mcount (const char *aswhat)
5497 if (profile_flag)
5498 fprintf (asm_out_file, "\t.IMPORT _mcount,%s\n", aswhat);
5501 static void
5502 pa_elf_file_start (void)
5504 pa_file_start_level ();
5505 pa_file_start_mcount ("ENTRY");
5506 pa_file_start_file (0);
5509 static void
5510 pa_som_file_start (void)
5512 pa_file_start_level ();
5513 pa_file_start_space (0);
5514 aputs ("\t.IMPORT $global$,DATA\n"
5515 "\t.IMPORT $$dyncall,MILLICODE\n");
5516 pa_file_start_mcount ("CODE");
5517 pa_file_start_file (0);
5520 static void
5521 pa_linux_file_start (void)
5523 pa_file_start_file (1);
5524 pa_file_start_level ();
5525 pa_file_start_mcount ("CODE");
5528 static void
5529 pa_hpux64_gas_file_start (void)
5531 pa_file_start_level ();
5532 #ifdef ASM_OUTPUT_TYPE_DIRECTIVE
5533 if (profile_flag)
5534 ASM_OUTPUT_TYPE_DIRECTIVE (asm_out_file, "_mcount", "function");
5535 #endif
5536 pa_file_start_file (1);
5539 static void
5540 pa_hpux64_hpas_file_start (void)
5542 pa_file_start_level ();
5543 pa_file_start_space (1);
5544 pa_file_start_mcount ("CODE");
5545 pa_file_start_file (0);
5547 #undef aputs
5549 static struct deferred_plabel *
5550 get_plabel (const char *fname)
5552 size_t i;
5554 /* See if we have already put this function on the list of deferred
5555 plabels. This list is generally small, so a liner search is not
5556 too ugly. If it proves too slow replace it with something faster. */
5557 for (i = 0; i < n_deferred_plabels; i++)
5558 if (strcmp (fname, deferred_plabels[i].name) == 0)
5559 break;
5561 /* If the deferred plabel list is empty, or this entry was not found
5562 on the list, create a new entry on the list. */
5563 if (deferred_plabels == NULL || i == n_deferred_plabels)
5565 const char *real_name;
5567 if (deferred_plabels == 0)
5568 deferred_plabels = (struct deferred_plabel *)
5569 ggc_alloc (sizeof (struct deferred_plabel));
5570 else
5571 deferred_plabels = (struct deferred_plabel *)
5572 ggc_realloc (deferred_plabels,
5573 ((n_deferred_plabels + 1)
5574 * sizeof (struct deferred_plabel)));
5576 i = n_deferred_plabels++;
5577 deferred_plabels[i].internal_label = gen_label_rtx ();
5578 deferred_plabels[i].name = ggc_strdup (fname);
5580 /* Gross. We have just implicitly taken the address of this function,
5581 mark it as such. */
5582 real_name = (*targetm.strip_name_encoding) (fname);
5583 TREE_SYMBOL_REFERENCED (get_identifier (real_name)) = 1;
5586 return &deferred_plabels[i];
5589 static void
5590 output_deferred_plabels (void)
5592 size_t i;
5593 /* If we have deferred plabels, then we need to switch into the data
5594 section and align it to a 4 byte boundary before we output the
5595 deferred plabels. */
5596 if (n_deferred_plabels)
5598 data_section ();
5599 ASM_OUTPUT_ALIGN (asm_out_file, TARGET_64BIT ? 3 : 2);
5602 /* Now output the deferred plabels. */
5603 for (i = 0; i < n_deferred_plabels; i++)
5605 (*targetm.asm_out.internal_label) (asm_out_file, "L",
5606 CODE_LABEL_NUMBER (deferred_plabels[i].internal_label));
5607 assemble_integer (gen_rtx_SYMBOL_REF (Pmode, deferred_plabels[i].name),
5608 TARGET_64BIT ? 8 : 4, TARGET_64BIT ? 64 : 32, 1);
5612 #ifdef HPUX_LONG_DOUBLE_LIBRARY
5613 /* Initialize optabs to point to HPUX long double emulation routines. */
5614 static void
5615 pa_hpux_init_libfuncs (void)
5617 set_optab_libfunc (add_optab, TFmode, "_U_Qfadd");
5618 set_optab_libfunc (sub_optab, TFmode, "_U_Qfsub");
5619 set_optab_libfunc (smul_optab, TFmode, "_U_Qfmpy");
5620 set_optab_libfunc (sdiv_optab, TFmode, "_U_Qfdiv");
5621 set_optab_libfunc (smin_optab, TFmode, "_U_Qmin");
5622 set_optab_libfunc (smax_optab, TFmode, "_U_Qfmax");
5623 set_optab_libfunc (sqrt_optab, TFmode, "_U_Qfsqrt");
5624 set_optab_libfunc (abs_optab, TFmode, "_U_Qfabs");
5625 set_optab_libfunc (neg_optab, TFmode, "_U_Qfneg");
5627 set_optab_libfunc (eq_optab, TFmode, "_U_Qfeq");
5628 set_optab_libfunc (ne_optab, TFmode, "_U_Qfne");
5629 set_optab_libfunc (gt_optab, TFmode, "_U_Qfgt");
5630 set_optab_libfunc (ge_optab, TFmode, "_U_Qfge");
5631 set_optab_libfunc (lt_optab, TFmode, "_U_Qflt");
5632 set_optab_libfunc (le_optab, TFmode, "_U_Qfle");
5633 set_optab_libfunc (unord_optab, TFmode, "_U_Qfunord");
5635 set_conv_libfunc (sext_optab, TFmode, SFmode, "_U_Qfcnvff_sgl_to_quad");
5636 set_conv_libfunc (sext_optab, TFmode, DFmode, "_U_Qfcnvff_dbl_to_quad");
5637 set_conv_libfunc (trunc_optab, SFmode, TFmode, "_U_Qfcnvff_quad_to_sgl");
5638 set_conv_libfunc (trunc_optab, DFmode, TFmode, "_U_Qfcnvff_quad_to_dbl");
5640 set_conv_libfunc (sfix_optab, SImode, TFmode, TARGET_64BIT
5641 ? "__U_Qfcnvfxt_quad_to_sgl"
5642 : "_U_Qfcnvfxt_quad_to_sgl");
5643 set_conv_libfunc (sfix_optab, DImode, TFmode, "_U_Qfcnvfxt_quad_to_dbl");
5644 set_conv_libfunc (ufix_optab, SImode, TFmode, "_U_Qfcnvfxt_quad_to_usgl");
5645 set_conv_libfunc (ufix_optab, DImode, TFmode, "_U_Qfcnvfxt_quad_to_udbl");
5647 set_conv_libfunc (sfloat_optab, TFmode, SImode, "_U_Qfcnvxf_sgl_to_quad");
5648 set_conv_libfunc (sfloat_optab, TFmode, DImode, "_U_Qfcnvxf_dbl_to_quad");
5650 #endif
5652 /* HP's millicode routines mean something special to the assembler.
5653 Keep track of which ones we have used. */
5655 enum millicodes { remI, remU, divI, divU, mulI, end1000 };
5656 static void import_milli (enum millicodes);
5657 static char imported[(int) end1000];
5658 static const char * const milli_names[] = {"remI", "remU", "divI", "divU", "mulI"};
5659 static const char import_string[] = ".IMPORT $$....,MILLICODE";
5660 #define MILLI_START 10
5662 static void
5663 import_milli (enum millicodes code)
5665 char str[sizeof (import_string)];
5667 if (!imported[(int) code])
5669 imported[(int) code] = 1;
5670 strcpy (str, import_string);
5671 strncpy (str + MILLI_START, milli_names[(int) code], 4);
5672 output_asm_insn (str, 0);
5676 /* The register constraints have put the operands and return value in
5677 the proper registers. */
5679 const char *
5680 output_mul_insn (int unsignedp ATTRIBUTE_UNUSED, rtx insn)
5682 import_milli (mulI);
5683 return output_millicode_call (insn, gen_rtx_SYMBOL_REF (Pmode, "$$mulI"));
5686 /* Emit the rtl for doing a division by a constant. */
5688 /* Do magic division millicodes exist for this value? */
5689 static const int magic_milli[]= {0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0,
5690 1, 1};
5692 /* We'll use an array to keep track of the magic millicodes and
5693 whether or not we've used them already. [n][0] is signed, [n][1] is
5694 unsigned. */
5696 static int div_milli[16][2];
5699 div_operand (rtx op, enum machine_mode mode)
5701 return (mode == SImode
5702 && ((GET_CODE (op) == REG && REGNO (op) == 25)
5703 || (GET_CODE (op) == CONST_INT && INTVAL (op) > 0
5704 && INTVAL (op) < 16 && magic_milli[INTVAL (op)])));
5708 emit_hpdiv_const (rtx *operands, int unsignedp)
5710 if (GET_CODE (operands[2]) == CONST_INT
5711 && INTVAL (operands[2]) > 0
5712 && INTVAL (operands[2]) < 16
5713 && magic_milli[INTVAL (operands[2])])
5715 rtx ret = gen_rtx_REG (SImode, TARGET_64BIT ? 2 : 31);
5717 emit_move_insn (gen_rtx_REG (SImode, 26), operands[1]);
5718 emit
5719 (gen_rtx_PARALLEL
5720 (VOIDmode,
5721 gen_rtvec (6, gen_rtx_SET (VOIDmode, gen_rtx_REG (SImode, 29),
5722 gen_rtx_fmt_ee (unsignedp ? UDIV : DIV,
5723 SImode,
5724 gen_rtx_REG (SImode, 26),
5725 operands[2])),
5726 gen_rtx_CLOBBER (VOIDmode, operands[4]),
5727 gen_rtx_CLOBBER (VOIDmode, operands[3]),
5728 gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, 26)),
5729 gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, 25)),
5730 gen_rtx_CLOBBER (VOIDmode, ret))));
5731 emit_move_insn (operands[0], gen_rtx_REG (SImode, 29));
5732 return 1;
5734 return 0;
5737 const char *
5738 output_div_insn (rtx *operands, int unsignedp, rtx insn)
5740 int divisor;
5742 /* If the divisor is a constant, try to use one of the special
5743 opcodes .*/
5744 if (GET_CODE (operands[0]) == CONST_INT)
5746 static char buf[100];
5747 divisor = INTVAL (operands[0]);
5748 if (!div_milli[divisor][unsignedp])
5750 div_milli[divisor][unsignedp] = 1;
5751 if (unsignedp)
5752 output_asm_insn (".IMPORT $$divU_%0,MILLICODE", operands);
5753 else
5754 output_asm_insn (".IMPORT $$divI_%0,MILLICODE", operands);
5756 if (unsignedp)
5758 sprintf (buf, "$$divU_" HOST_WIDE_INT_PRINT_DEC,
5759 INTVAL (operands[0]));
5760 return output_millicode_call (insn,
5761 gen_rtx_SYMBOL_REF (SImode, buf));
5763 else
5765 sprintf (buf, "$$divI_" HOST_WIDE_INT_PRINT_DEC,
5766 INTVAL (operands[0]));
5767 return output_millicode_call (insn,
5768 gen_rtx_SYMBOL_REF (SImode, buf));
5771 /* Divisor isn't a special constant. */
5772 else
5774 if (unsignedp)
5776 import_milli (divU);
5777 return output_millicode_call (insn,
5778 gen_rtx_SYMBOL_REF (SImode, "$$divU"));
5780 else
5782 import_milli (divI);
5783 return output_millicode_call (insn,
5784 gen_rtx_SYMBOL_REF (SImode, "$$divI"));
5789 /* Output a $$rem millicode to do mod. */
5791 const char *
5792 output_mod_insn (int unsignedp, rtx insn)
5794 if (unsignedp)
5796 import_milli (remU);
5797 return output_millicode_call (insn,
5798 gen_rtx_SYMBOL_REF (SImode, "$$remU"));
5800 else
5802 import_milli (remI);
5803 return output_millicode_call (insn,
5804 gen_rtx_SYMBOL_REF (SImode, "$$remI"));
5808 void
5809 output_arg_descriptor (rtx call_insn)
5811 const char *arg_regs[4];
5812 enum machine_mode arg_mode;
5813 rtx link;
5814 int i, output_flag = 0;
5815 int regno;
5817 /* We neither need nor want argument location descriptors for the
5818 64bit runtime environment or the ELF32 environment. */
5819 if (TARGET_64BIT || TARGET_ELF32)
5820 return;
5822 for (i = 0; i < 4; i++)
5823 arg_regs[i] = 0;
5825 /* Specify explicitly that no argument relocations should take place
5826 if using the portable runtime calling conventions. */
5827 if (TARGET_PORTABLE_RUNTIME)
5829 fputs ("\t.CALL ARGW0=NO,ARGW1=NO,ARGW2=NO,ARGW3=NO,RETVAL=NO\n",
5830 asm_out_file);
5831 return;
5834 if (GET_CODE (call_insn) != CALL_INSN)
5835 abort ();
5836 for (link = CALL_INSN_FUNCTION_USAGE (call_insn); link; link = XEXP (link, 1))
5838 rtx use = XEXP (link, 0);
5840 if (! (GET_CODE (use) == USE
5841 && GET_CODE (XEXP (use, 0)) == REG
5842 && FUNCTION_ARG_REGNO_P (REGNO (XEXP (use, 0)))))
5843 continue;
5845 arg_mode = GET_MODE (XEXP (use, 0));
5846 regno = REGNO (XEXP (use, 0));
5847 if (regno >= 23 && regno <= 26)
5849 arg_regs[26 - regno] = "GR";
5850 if (arg_mode == DImode)
5851 arg_regs[25 - regno] = "GR";
5853 else if (regno >= 32 && regno <= 39)
5855 if (arg_mode == SFmode)
5856 arg_regs[(regno - 32) / 2] = "FR";
5857 else
5859 #ifndef HP_FP_ARG_DESCRIPTOR_REVERSED
5860 arg_regs[(regno - 34) / 2] = "FR";
5861 arg_regs[(regno - 34) / 2 + 1] = "FU";
5862 #else
5863 arg_regs[(regno - 34) / 2] = "FU";
5864 arg_regs[(regno - 34) / 2 + 1] = "FR";
5865 #endif
5869 fputs ("\t.CALL ", asm_out_file);
5870 for (i = 0; i < 4; i++)
5872 if (arg_regs[i])
5874 if (output_flag++)
5875 fputc (',', asm_out_file);
5876 fprintf (asm_out_file, "ARGW%d=%s", i, arg_regs[i]);
5879 fputc ('\n', asm_out_file);
5882 /* Return the class of any secondary reload register that is needed to
5883 move IN into a register in class CLASS using mode MODE.
5885 Profiling has showed this routine and its descendants account for
5886 a significant amount of compile time (~7%). So it has been
5887 optimized to reduce redundant computations and eliminate useless
5888 function calls.
5890 It might be worthwhile to try and make this a leaf function too. */
5892 enum reg_class
5893 secondary_reload_class (enum reg_class class, enum machine_mode mode, rtx in)
5895 int regno, is_symbolic;
5897 /* Trying to load a constant into a FP register during PIC code
5898 generation will require %r1 as a scratch register. */
5899 if (flag_pic
5900 && GET_MODE_CLASS (mode) == MODE_INT
5901 && FP_REG_CLASS_P (class)
5902 && (GET_CODE (in) == CONST_INT || GET_CODE (in) == CONST_DOUBLE))
5903 return R1_REGS;
5905 /* Profiling showed the PA port spends about 1.3% of its compilation
5906 time in true_regnum from calls inside secondary_reload_class. */
5908 if (GET_CODE (in) == REG)
5910 regno = REGNO (in);
5911 if (regno >= FIRST_PSEUDO_REGISTER)
5912 regno = true_regnum (in);
5914 else if (GET_CODE (in) == SUBREG)
5915 regno = true_regnum (in);
5916 else
5917 regno = -1;
5919 /* If we have something like (mem (mem (...)), we can safely assume the
5920 inner MEM will end up in a general register after reloading, so there's
5921 no need for a secondary reload. */
5922 if (GET_CODE (in) == MEM
5923 && GET_CODE (XEXP (in, 0)) == MEM)
5924 return NO_REGS;
5926 /* Handle out of range displacement for integer mode loads/stores of
5927 FP registers. */
5928 if (((regno >= FIRST_PSEUDO_REGISTER || regno == -1)
5929 && GET_MODE_CLASS (mode) == MODE_INT
5930 && FP_REG_CLASS_P (class))
5931 || (class == SHIFT_REGS && (regno <= 0 || regno >= 32)))
5932 return GENERAL_REGS;
5934 /* A SAR<->FP register copy requires a secondary register (GPR) as
5935 well as secondary memory. */
5936 if (regno >= 0 && regno < FIRST_PSEUDO_REGISTER
5937 && ((REGNO_REG_CLASS (regno) == SHIFT_REGS && FP_REG_CLASS_P (class))
5938 || (class == SHIFT_REGS && FP_REG_CLASS_P (REGNO_REG_CLASS (regno)))))
5939 return GENERAL_REGS;
5941 if (GET_CODE (in) == HIGH)
5942 in = XEXP (in, 0);
5944 /* Profiling has showed GCC spends about 2.6% of its compilation
5945 time in symbolic_operand from calls inside secondary_reload_class.
5947 We use an inline copy and only compute its return value once to avoid
5948 useless work. */
5949 switch (GET_CODE (in))
5951 rtx tmp;
5953 case SYMBOL_REF:
5954 case LABEL_REF:
5955 is_symbolic = 1;
5956 break;
5957 case CONST:
5958 tmp = XEXP (in, 0);
5959 is_symbolic = ((GET_CODE (XEXP (tmp, 0)) == SYMBOL_REF
5960 || GET_CODE (XEXP (tmp, 0)) == LABEL_REF)
5961 && GET_CODE (XEXP (tmp, 1)) == CONST_INT);
5962 break;
5964 default:
5965 is_symbolic = 0;
5966 break;
5969 if (!flag_pic
5970 && is_symbolic
5971 && read_only_operand (in, VOIDmode))
5972 return NO_REGS;
5974 if (class != R1_REGS && is_symbolic)
5975 return R1_REGS;
5977 return NO_REGS;
5980 /* In the 32-bit runtime, arguments larger than eight bytes are passed
5981 by invisible reference. As a GCC extension, we also pass anything
5982 with a zero or variable size by reference.
5984 The 64-bit runtime does not describe passing any types by invisible
5985 reference. The internals of GCC can't currently handle passing
5986 empty structures, and zero or variable length arrays when they are
5987 not passed entirely on the stack or by reference. Thus, as a GCC
5988 extension, we pass these types by reference. The HP compiler doesn't
5989 support these types, so hopefully there shouldn't be any compatibility
5990 issues. This may have to be revisited when HP releases a C99 compiler
5991 or updates the ABI. */
5993 static bool
5994 pa_pass_by_reference (CUMULATIVE_ARGS *ca ATTRIBUTE_UNUSED,
5995 enum machine_mode mode, tree type,
5996 bool named ATTRIBUTE_UNUSED)
5998 HOST_WIDE_INT size;
6000 if (type)
6001 size = int_size_in_bytes (type);
6002 else
6003 size = GET_MODE_SIZE (mode);
6005 if (TARGET_64BIT)
6006 return size <= 0;
6007 else
6008 return size <= 0 || size > 8;
6011 enum direction
6012 function_arg_padding (enum machine_mode mode, tree type)
6014 if (mode == BLKmode
6015 || (TARGET_64BIT && type && AGGREGATE_TYPE_P (type)))
6017 /* Return none if justification is not required. */
6018 if (type
6019 && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST
6020 && (int_size_in_bytes (type) * BITS_PER_UNIT) % PARM_BOUNDARY == 0)
6021 return none;
6023 /* The directions set here are ignored when a BLKmode argument larger
6024 than a word is placed in a register. Different code is used for
6025 the stack and registers. This makes it difficult to have a
6026 consistent data representation for both the stack and registers.
6027 For both runtimes, the justification and padding for arguments on
6028 the stack and in registers should be identical. */
6029 if (TARGET_64BIT)
6030 /* The 64-bit runtime specifies left justification for aggregates. */
6031 return upward;
6032 else
6033 /* The 32-bit runtime architecture specifies right justification.
6034 When the argument is passed on the stack, the argument is padded
6035 with garbage on the left. The HP compiler pads with zeros. */
6036 return downward;
6039 if (GET_MODE_BITSIZE (mode) < PARM_BOUNDARY)
6040 return downward;
6041 else
6042 return none;
6046 /* Do what is necessary for `va_start'. We look at the current function
6047 to determine if stdargs or varargs is used and fill in an initial
6048 va_list. A pointer to this constructor is returned. */
6050 static rtx
6051 hppa_builtin_saveregs (void)
6053 rtx offset, dest;
6054 tree fntype = TREE_TYPE (current_function_decl);
6055 int argadj = ((!(TYPE_ARG_TYPES (fntype) != 0
6056 && (TREE_VALUE (tree_last (TYPE_ARG_TYPES (fntype)))
6057 != void_type_node)))
6058 ? UNITS_PER_WORD : 0);
6060 if (argadj)
6061 offset = plus_constant (current_function_arg_offset_rtx, argadj);
6062 else
6063 offset = current_function_arg_offset_rtx;
6065 if (TARGET_64BIT)
6067 int i, off;
6069 /* Adjust for varargs/stdarg differences. */
6070 if (argadj)
6071 offset = plus_constant (current_function_arg_offset_rtx, -argadj);
6072 else
6073 offset = current_function_arg_offset_rtx;
6075 /* We need to save %r26 .. %r19 inclusive starting at offset -64
6076 from the incoming arg pointer and growing to larger addresses. */
6077 for (i = 26, off = -64; i >= 19; i--, off += 8)
6078 emit_move_insn (gen_rtx_MEM (word_mode,
6079 plus_constant (arg_pointer_rtx, off)),
6080 gen_rtx_REG (word_mode, i));
6082 /* The incoming args pointer points just beyond the flushback area;
6083 normally this is not a serious concern. However, when we are doing
6084 varargs/stdargs we want to make the arg pointer point to the start
6085 of the incoming argument area. */
6086 emit_move_insn (virtual_incoming_args_rtx,
6087 plus_constant (arg_pointer_rtx, -64));
6089 /* Now return a pointer to the first anonymous argument. */
6090 return copy_to_reg (expand_binop (Pmode, add_optab,
6091 virtual_incoming_args_rtx,
6092 offset, 0, 0, OPTAB_LIB_WIDEN));
6095 /* Store general registers on the stack. */
6096 dest = gen_rtx_MEM (BLKmode,
6097 plus_constant (current_function_internal_arg_pointer,
6098 -16));
6099 set_mem_alias_set (dest, get_varargs_alias_set ());
6100 set_mem_align (dest, BITS_PER_WORD);
6101 move_block_from_reg (23, dest, 4);
6103 /* move_block_from_reg will emit code to store the argument registers
6104 individually as scalar stores.
6106 However, other insns may later load from the same addresses for
6107 a structure load (passing a struct to a varargs routine).
6109 The alias code assumes that such aliasing can never happen, so we
6110 have to keep memory referencing insns from moving up beyond the
6111 last argument register store. So we emit a blockage insn here. */
6112 emit_insn (gen_blockage ());
6114 return copy_to_reg (expand_binop (Pmode, add_optab,
6115 current_function_internal_arg_pointer,
6116 offset, 0, 0, OPTAB_LIB_WIDEN));
6119 void
6120 hppa_va_start (tree valist, rtx nextarg)
6122 nextarg = expand_builtin_saveregs ();
6123 std_expand_builtin_va_start (valist, nextarg);
6126 static tree
6127 hppa_gimplify_va_arg_expr (tree valist, tree type, tree *pre_p, tree *post_p)
6129 if (TARGET_64BIT)
6131 /* Args grow upward. We can use the generic routines. */
6132 return std_gimplify_va_arg_expr (valist, type, pre_p, post_p);
6134 else /* !TARGET_64BIT */
6136 tree ptr = build_pointer_type (type);
6137 tree valist_type;
6138 tree t, u;
6139 unsigned int size, ofs;
6140 bool indirect;
6142 indirect = pass_by_reference (NULL, TYPE_MODE (type), type, 0);
6143 if (indirect)
6145 type = ptr;
6146 ptr = build_pointer_type (type);
6148 size = int_size_in_bytes (type);
6149 valist_type = TREE_TYPE (valist);
6151 /* Args grow down. Not handled by generic routines. */
6153 u = fold_convert (valist_type, size_in_bytes (type));
6154 t = build (MINUS_EXPR, valist_type, valist, u);
6156 /* Copied from va-pa.h, but we probably don't need to align to
6157 word size, since we generate and preserve that invariant. */
6158 u = build_int_cst (valist_type, (size > 4 ? -8 : -4));
6159 t = build (BIT_AND_EXPR, valist_type, t, u);
6161 t = build (MODIFY_EXPR, valist_type, valist, t);
6163 ofs = (8 - size) % 4;
6164 if (ofs != 0)
6166 u = fold_convert (valist_type, size_int (ofs));
6167 t = build (PLUS_EXPR, valist_type, t, u);
6170 t = fold_convert (ptr, t);
6171 t = build_fold_indirect_ref (t);
6173 if (indirect)
6174 t = build_fold_indirect_ref (t);
6176 return t;
6180 /* This routine handles all the normal conditional branch sequences we
6181 might need to generate. It handles compare immediate vs compare
6182 register, nullification of delay slots, varying length branches,
6183 negated branches, and all combinations of the above. It returns the
6184 output appropriate to emit the branch corresponding to all given
6185 parameters. */
6187 const char *
6188 output_cbranch (rtx *operands, int nullify, int length, int negated, rtx insn)
6190 static char buf[100];
6191 int useskip = 0;
6192 rtx xoperands[5];
6194 /* A conditional branch to the following instruction (e.g. the delay slot)
6195 is asking for a disaster. This can happen when not optimizing and
6196 when jump optimization fails.
6198 While it is usually safe to emit nothing, this can fail if the
6199 preceding instruction is a nullified branch with an empty delay
6200 slot and the same branch target as this branch. We could check
6201 for this but jump optimization should eliminate nop jumps. It
6202 is always safe to emit a nop. */
6203 if (next_real_insn (JUMP_LABEL (insn)) == next_real_insn (insn))
6204 return "nop";
6206 /* The doubleword form of the cmpib instruction doesn't have the LEU
6207 and GTU conditions while the cmpb instruction does. Since we accept
6208 zero for cmpb, we must ensure that we use cmpb for the comparison. */
6209 if (GET_MODE (operands[1]) == DImode && operands[2] == const0_rtx)
6210 operands[2] = gen_rtx_REG (DImode, 0);
6212 /* If this is a long branch with its delay slot unfilled, set `nullify'
6213 as it can nullify the delay slot and save a nop. */
6214 if (length == 8 && dbr_sequence_length () == 0)
6215 nullify = 1;
6217 /* If this is a short forward conditional branch which did not get
6218 its delay slot filled, the delay slot can still be nullified. */
6219 if (! nullify && length == 4 && dbr_sequence_length () == 0)
6220 nullify = forward_branch_p (insn);
6222 /* A forward branch over a single nullified insn can be done with a
6223 comclr instruction. This avoids a single cycle penalty due to
6224 mis-predicted branch if we fall through (branch not taken). */
6225 if (length == 4
6226 && next_real_insn (insn) != 0
6227 && get_attr_length (next_real_insn (insn)) == 4
6228 && JUMP_LABEL (insn) == next_nonnote_insn (next_real_insn (insn))
6229 && nullify)
6230 useskip = 1;
6232 switch (length)
6234 /* All short conditional branches except backwards with an unfilled
6235 delay slot. */
6236 case 4:
6237 if (useskip)
6238 strcpy (buf, "{com%I2clr,|cmp%I2clr,}");
6239 else
6240 strcpy (buf, "{com%I2b,|cmp%I2b,}");
6241 if (GET_MODE (operands[1]) == DImode)
6242 strcat (buf, "*");
6243 if (negated)
6244 strcat (buf, "%B3");
6245 else
6246 strcat (buf, "%S3");
6247 if (useskip)
6248 strcat (buf, " %2,%r1,%%r0");
6249 else if (nullify)
6250 strcat (buf, ",n %2,%r1,%0");
6251 else
6252 strcat (buf, " %2,%r1,%0");
6253 break;
6255 /* All long conditionals. Note a short backward branch with an
6256 unfilled delay slot is treated just like a long backward branch
6257 with an unfilled delay slot. */
6258 case 8:
6259 /* Handle weird backwards branch with a filled delay slot
6260 with is nullified. */
6261 if (dbr_sequence_length () != 0
6262 && ! forward_branch_p (insn)
6263 && nullify)
6265 strcpy (buf, "{com%I2b,|cmp%I2b,}");
6266 if (GET_MODE (operands[1]) == DImode)
6267 strcat (buf, "*");
6268 if (negated)
6269 strcat (buf, "%S3");
6270 else
6271 strcat (buf, "%B3");
6272 strcat (buf, ",n %2,%r1,.+12\n\tb %0");
6274 /* Handle short backwards branch with an unfilled delay slot.
6275 Using a comb;nop rather than comiclr;bl saves 1 cycle for both
6276 taken and untaken branches. */
6277 else if (dbr_sequence_length () == 0
6278 && ! forward_branch_p (insn)
6279 && INSN_ADDRESSES_SET_P ()
6280 && VAL_14_BITS_P (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (insn)))
6281 - INSN_ADDRESSES (INSN_UID (insn)) - 8))
6283 strcpy (buf, "{com%I2b,|cmp%I2b,}");
6284 if (GET_MODE (operands[1]) == DImode)
6285 strcat (buf, "*");
6286 if (negated)
6287 strcat (buf, "%B3 %2,%r1,%0%#");
6288 else
6289 strcat (buf, "%S3 %2,%r1,%0%#");
6291 else
6293 strcpy (buf, "{com%I2clr,|cmp%I2clr,}");
6294 if (GET_MODE (operands[1]) == DImode)
6295 strcat (buf, "*");
6296 if (negated)
6297 strcat (buf, "%S3");
6298 else
6299 strcat (buf, "%B3");
6300 if (nullify)
6301 strcat (buf, " %2,%r1,%%r0\n\tb,n %0");
6302 else
6303 strcat (buf, " %2,%r1,%%r0\n\tb %0");
6305 break;
6307 case 20:
6308 case 28:
6309 xoperands[0] = operands[0];
6310 xoperands[1] = operands[1];
6311 xoperands[2] = operands[2];
6312 xoperands[3] = operands[3];
6314 /* The reversed conditional branch must branch over one additional
6315 instruction if the delay slot is filled. If the delay slot
6316 is empty, the instruction after the reversed condition branch
6317 must be nullified. */
6318 nullify = dbr_sequence_length () == 0;
6319 xoperands[4] = nullify ? GEN_INT (length) : GEN_INT (length + 4);
6321 /* Create a reversed conditional branch which branches around
6322 the following insns. */
6323 if (GET_MODE (operands[1]) != DImode)
6325 if (nullify)
6327 if (negated)
6328 strcpy (buf,
6329 "{com%I2b,%S3,n %2,%r1,.+%4|cmp%I2b,%S3,n %2,%r1,.+%4}");
6330 else
6331 strcpy (buf,
6332 "{com%I2b,%B3,n %2,%r1,.+%4|cmp%I2b,%B3,n %2,%r1,.+%4}");
6334 else
6336 if (negated)
6337 strcpy (buf,
6338 "{com%I2b,%S3 %2,%r1,.+%4|cmp%I2b,%S3 %2,%r1,.+%4}");
6339 else
6340 strcpy (buf,
6341 "{com%I2b,%B3 %2,%r1,.+%4|cmp%I2b,%B3 %2,%r1,.+%4}");
6344 else
6346 if (nullify)
6348 if (negated)
6349 strcpy (buf,
6350 "{com%I2b,*%S3,n %2,%r1,.+%4|cmp%I2b,*%S3,n %2,%r1,.+%4}");
6351 else
6352 strcpy (buf,
6353 "{com%I2b,*%B3,n %2,%r1,.+%4|cmp%I2b,*%B3,n %2,%r1,.+%4}");
6355 else
6357 if (negated)
6358 strcpy (buf,
6359 "{com%I2b,*%S3 %2,%r1,.+%4|cmp%I2b,*%S3 %2,%r1,.+%4}");
6360 else
6361 strcpy (buf,
6362 "{com%I2b,*%B3 %2,%r1,.+%4|cmp%I2b,*%B3 %2,%r1,.+%4}");
6366 output_asm_insn (buf, xoperands);
6367 return output_lbranch (operands[0], insn);
6369 default:
6370 abort ();
6372 return buf;
6375 /* This routine handles long unconditional branches that exceed the
6376 maximum range of a simple branch instruction. */
6378 const char *
6379 output_lbranch (rtx dest, rtx insn)
6381 rtx xoperands[2];
6383 xoperands[0] = dest;
6385 /* First, free up the delay slot. */
6386 if (dbr_sequence_length () != 0)
6388 /* We can't handle a jump in the delay slot. */
6389 if (GET_CODE (NEXT_INSN (insn)) == JUMP_INSN)
6390 abort ();
6392 final_scan_insn (NEXT_INSN (insn), asm_out_file,
6393 optimize, 0, 0, NULL);
6395 /* Now delete the delay insn. */
6396 PUT_CODE (NEXT_INSN (insn), NOTE);
6397 NOTE_LINE_NUMBER (NEXT_INSN (insn)) = NOTE_INSN_DELETED;
6398 NOTE_SOURCE_FILE (NEXT_INSN (insn)) = 0;
6401 /* Output an insn to save %r1. The runtime documentation doesn't
6402 specify whether the "Clean Up" slot in the callers frame can
6403 be clobbered by the callee. It isn't copied by HP's builtin
6404 alloca, so this suggests that it can be clobbered if necessary.
6405 The "Static Link" location is copied by HP builtin alloca, so
6406 we avoid using it. Using the cleanup slot might be a problem
6407 if we have to interoperate with languages that pass cleanup
6408 information. However, it should be possible to handle these
6409 situations with GCC's asm feature.
6411 The "Current RP" slot is reserved for the called procedure, so
6412 we try to use it when we don't have a frame of our own. It's
6413 rather unlikely that we won't have a frame when we need to emit
6414 a very long branch.
6416 Really the way to go long term is a register scavenger; goto
6417 the target of the jump and find a register which we can use
6418 as a scratch to hold the value in %r1. Then, we wouldn't have
6419 to free up the delay slot or clobber a slot that may be needed
6420 for other purposes. */
6421 if (TARGET_64BIT)
6423 if (actual_fsize == 0 && !regs_ever_live[2])
6424 /* Use the return pointer slot in the frame marker. */
6425 output_asm_insn ("std %%r1,-16(%%r30)", xoperands);
6426 else
6427 /* Use the slot at -40 in the frame marker since HP builtin
6428 alloca doesn't copy it. */
6429 output_asm_insn ("std %%r1,-40(%%r30)", xoperands);
6431 else
6433 if (actual_fsize == 0 && !regs_ever_live[2])
6434 /* Use the return pointer slot in the frame marker. */
6435 output_asm_insn ("stw %%r1,-20(%%r30)", xoperands);
6436 else
6437 /* Use the "Clean Up" slot in the frame marker. In GCC,
6438 the only other use of this location is for copying a
6439 floating point double argument from a floating-point
6440 register to two general registers. The copy is done
6441 as an "atomic" operation when outputting a call, so it
6442 won't interfere with our using the location here. */
6443 output_asm_insn ("stw %%r1,-12(%%r30)", xoperands);
6446 if (TARGET_PORTABLE_RUNTIME)
6448 output_asm_insn ("ldil L'%0,%%r1", xoperands);
6449 output_asm_insn ("ldo R'%0(%%r1),%%r1", xoperands);
6450 output_asm_insn ("bv %%r0(%%r1)", xoperands);
6452 else if (flag_pic)
6454 output_asm_insn ("{bl|b,l} .+8,%%r1", xoperands);
6455 if (TARGET_SOM || !TARGET_GAS)
6457 xoperands[1] = gen_label_rtx ();
6458 output_asm_insn ("addil L'%l0-%l1,%%r1", xoperands);
6459 (*targetm.asm_out.internal_label) (asm_out_file, "L",
6460 CODE_LABEL_NUMBER (xoperands[1]));
6461 output_asm_insn ("ldo R'%l0-%l1(%%r1),%%r1", xoperands);
6463 else
6465 output_asm_insn ("addil L'%l0-$PIC_pcrel$0+4,%%r1", xoperands);
6466 output_asm_insn ("ldo R'%l0-$PIC_pcrel$0+8(%%r1),%%r1", xoperands);
6468 output_asm_insn ("bv %%r0(%%r1)", xoperands);
6470 else
6471 /* Now output a very long branch to the original target. */
6472 output_asm_insn ("ldil L'%l0,%%r1\n\tbe R'%l0(%%sr4,%%r1)", xoperands);
6474 /* Now restore the value of %r1 in the delay slot. */
6475 if (TARGET_64BIT)
6477 if (actual_fsize == 0 && !regs_ever_live[2])
6478 return "ldd -16(%%r30),%%r1";
6479 else
6480 return "ldd -40(%%r30),%%r1";
6482 else
6484 if (actual_fsize == 0 && !regs_ever_live[2])
6485 return "ldw -20(%%r30),%%r1";
6486 else
6487 return "ldw -12(%%r30),%%r1";
6491 /* This routine handles all the branch-on-bit conditional branch sequences we
6492 might need to generate. It handles nullification of delay slots,
6493 varying length branches, negated branches and all combinations of the
6494 above. it returns the appropriate output template to emit the branch. */
6496 const char *
6497 output_bb (rtx *operands ATTRIBUTE_UNUSED, int nullify, int length,
6498 int negated, rtx insn, int which)
6500 static char buf[100];
6501 int useskip = 0;
6503 /* A conditional branch to the following instruction (e.g. the delay slot) is
6504 asking for a disaster. I do not think this can happen as this pattern
6505 is only used when optimizing; jump optimization should eliminate the
6506 jump. But be prepared just in case. */
6508 if (next_real_insn (JUMP_LABEL (insn)) == next_real_insn (insn))
6509 return "nop";
6511 /* If this is a long branch with its delay slot unfilled, set `nullify'
6512 as it can nullify the delay slot and save a nop. */
6513 if (length == 8 && dbr_sequence_length () == 0)
6514 nullify = 1;
6516 /* If this is a short forward conditional branch which did not get
6517 its delay slot filled, the delay slot can still be nullified. */
6518 if (! nullify && length == 4 && dbr_sequence_length () == 0)
6519 nullify = forward_branch_p (insn);
6521 /* A forward branch over a single nullified insn can be done with a
6522 extrs instruction. This avoids a single cycle penalty due to
6523 mis-predicted branch if we fall through (branch not taken). */
6525 if (length == 4
6526 && next_real_insn (insn) != 0
6527 && get_attr_length (next_real_insn (insn)) == 4
6528 && JUMP_LABEL (insn) == next_nonnote_insn (next_real_insn (insn))
6529 && nullify)
6530 useskip = 1;
6532 switch (length)
6535 /* All short conditional branches except backwards with an unfilled
6536 delay slot. */
6537 case 4:
6538 if (useskip)
6539 strcpy (buf, "{extrs,|extrw,s,}");
6540 else
6541 strcpy (buf, "bb,");
6542 if (useskip && GET_MODE (operands[0]) == DImode)
6543 strcpy (buf, "extrd,s,*");
6544 else if (GET_MODE (operands[0]) == DImode)
6545 strcpy (buf, "bb,*");
6546 if ((which == 0 && negated)
6547 || (which == 1 && ! negated))
6548 strcat (buf, ">=");
6549 else
6550 strcat (buf, "<");
6551 if (useskip)
6552 strcat (buf, " %0,%1,1,%%r0");
6553 else if (nullify && negated)
6554 strcat (buf, ",n %0,%1,%3");
6555 else if (nullify && ! negated)
6556 strcat (buf, ",n %0,%1,%2");
6557 else if (! nullify && negated)
6558 strcat (buf, "%0,%1,%3");
6559 else if (! nullify && ! negated)
6560 strcat (buf, " %0,%1,%2");
6561 break;
6563 /* All long conditionals. Note a short backward branch with an
6564 unfilled delay slot is treated just like a long backward branch
6565 with an unfilled delay slot. */
6566 case 8:
6567 /* Handle weird backwards branch with a filled delay slot
6568 with is nullified. */
6569 if (dbr_sequence_length () != 0
6570 && ! forward_branch_p (insn)
6571 && nullify)
6573 strcpy (buf, "bb,");
6574 if (GET_MODE (operands[0]) == DImode)
6575 strcat (buf, "*");
6576 if ((which == 0 && negated)
6577 || (which == 1 && ! negated))
6578 strcat (buf, "<");
6579 else
6580 strcat (buf, ">=");
6581 if (negated)
6582 strcat (buf, ",n %0,%1,.+12\n\tb %3");
6583 else
6584 strcat (buf, ",n %0,%1,.+12\n\tb %2");
6586 /* Handle short backwards branch with an unfilled delay slot.
6587 Using a bb;nop rather than extrs;bl saves 1 cycle for both
6588 taken and untaken branches. */
6589 else if (dbr_sequence_length () == 0
6590 && ! forward_branch_p (insn)
6591 && INSN_ADDRESSES_SET_P ()
6592 && VAL_14_BITS_P (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (insn)))
6593 - INSN_ADDRESSES (INSN_UID (insn)) - 8))
6595 strcpy (buf, "bb,");
6596 if (GET_MODE (operands[0]) == DImode)
6597 strcat (buf, "*");
6598 if ((which == 0 && negated)
6599 || (which == 1 && ! negated))
6600 strcat (buf, ">=");
6601 else
6602 strcat (buf, "<");
6603 if (negated)
6604 strcat (buf, " %0,%1,%3%#");
6605 else
6606 strcat (buf, " %0,%1,%2%#");
6608 else
6610 strcpy (buf, "{extrs,|extrw,s,}");
6611 if (GET_MODE (operands[0]) == DImode)
6612 strcpy (buf, "extrd,s,*");
6613 if ((which == 0 && negated)
6614 || (which == 1 && ! negated))
6615 strcat (buf, "<");
6616 else
6617 strcat (buf, ">=");
6618 if (nullify && negated)
6619 strcat (buf, " %0,%1,1,%%r0\n\tb,n %3");
6620 else if (nullify && ! negated)
6621 strcat (buf, " %0,%1,1,%%r0\n\tb,n %2");
6622 else if (negated)
6623 strcat (buf, " %0,%1,1,%%r0\n\tb %3");
6624 else
6625 strcat (buf, " %0,%1,1,%%r0\n\tb %2");
6627 break;
6629 default:
6630 abort ();
6632 return buf;
6635 /* This routine handles all the branch-on-variable-bit conditional branch
6636 sequences we might need to generate. It handles nullification of delay
6637 slots, varying length branches, negated branches and all combinations
6638 of the above. it returns the appropriate output template to emit the
6639 branch. */
6641 const char *
6642 output_bvb (rtx *operands ATTRIBUTE_UNUSED, int nullify, int length,
6643 int negated, rtx insn, int which)
6645 static char buf[100];
6646 int useskip = 0;
6648 /* A conditional branch to the following instruction (e.g. the delay slot) is
6649 asking for a disaster. I do not think this can happen as this pattern
6650 is only used when optimizing; jump optimization should eliminate the
6651 jump. But be prepared just in case. */
6653 if (next_real_insn (JUMP_LABEL (insn)) == next_real_insn (insn))
6654 return "nop";
6656 /* If this is a long branch with its delay slot unfilled, set `nullify'
6657 as it can nullify the delay slot and save a nop. */
6658 if (length == 8 && dbr_sequence_length () == 0)
6659 nullify = 1;
6661 /* If this is a short forward conditional branch which did not get
6662 its delay slot filled, the delay slot can still be nullified. */
6663 if (! nullify && length == 4 && dbr_sequence_length () == 0)
6664 nullify = forward_branch_p (insn);
6666 /* A forward branch over a single nullified insn can be done with a
6667 extrs instruction. This avoids a single cycle penalty due to
6668 mis-predicted branch if we fall through (branch not taken). */
6670 if (length == 4
6671 && next_real_insn (insn) != 0
6672 && get_attr_length (next_real_insn (insn)) == 4
6673 && JUMP_LABEL (insn) == next_nonnote_insn (next_real_insn (insn))
6674 && nullify)
6675 useskip = 1;
6677 switch (length)
6680 /* All short conditional branches except backwards with an unfilled
6681 delay slot. */
6682 case 4:
6683 if (useskip)
6684 strcpy (buf, "{vextrs,|extrw,s,}");
6685 else
6686 strcpy (buf, "{bvb,|bb,}");
6687 if (useskip && GET_MODE (operands[0]) == DImode)
6688 strcpy (buf, "extrd,s,*");
6689 else if (GET_MODE (operands[0]) == DImode)
6690 strcpy (buf, "bb,*");
6691 if ((which == 0 && negated)
6692 || (which == 1 && ! negated))
6693 strcat (buf, ">=");
6694 else
6695 strcat (buf, "<");
6696 if (useskip)
6697 strcat (buf, "{ %0,1,%%r0| %0,%%sar,1,%%r0}");
6698 else if (nullify && negated)
6699 strcat (buf, "{,n %0,%3|,n %0,%%sar,%3}");
6700 else if (nullify && ! negated)
6701 strcat (buf, "{,n %0,%2|,n %0,%%sar,%2}");
6702 else if (! nullify && negated)
6703 strcat (buf, "{%0,%3|%0,%%sar,%3}");
6704 else if (! nullify && ! negated)
6705 strcat (buf, "{ %0,%2| %0,%%sar,%2}");
6706 break;
6708 /* All long conditionals. Note a short backward branch with an
6709 unfilled delay slot is treated just like a long backward branch
6710 with an unfilled delay slot. */
6711 case 8:
6712 /* Handle weird backwards branch with a filled delay slot
6713 with is nullified. */
6714 if (dbr_sequence_length () != 0
6715 && ! forward_branch_p (insn)
6716 && nullify)
6718 strcpy (buf, "{bvb,|bb,}");
6719 if (GET_MODE (operands[0]) == DImode)
6720 strcat (buf, "*");
6721 if ((which == 0 && negated)
6722 || (which == 1 && ! negated))
6723 strcat (buf, "<");
6724 else
6725 strcat (buf, ">=");
6726 if (negated)
6727 strcat (buf, "{,n %0,.+12\n\tb %3|,n %0,%%sar,.+12\n\tb %3}");
6728 else
6729 strcat (buf, "{,n %0,.+12\n\tb %2|,n %0,%%sar,.+12\n\tb %2}");
6731 /* Handle short backwards branch with an unfilled delay slot.
6732 Using a bb;nop rather than extrs;bl saves 1 cycle for both
6733 taken and untaken branches. */
6734 else if (dbr_sequence_length () == 0
6735 && ! forward_branch_p (insn)
6736 && INSN_ADDRESSES_SET_P ()
6737 && VAL_14_BITS_P (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (insn)))
6738 - INSN_ADDRESSES (INSN_UID (insn)) - 8))
6740 strcpy (buf, "{bvb,|bb,}");
6741 if (GET_MODE (operands[0]) == DImode)
6742 strcat (buf, "*");
6743 if ((which == 0 && negated)
6744 || (which == 1 && ! negated))
6745 strcat (buf, ">=");
6746 else
6747 strcat (buf, "<");
6748 if (negated)
6749 strcat (buf, "{ %0,%3%#| %0,%%sar,%3%#}");
6750 else
6751 strcat (buf, "{ %0,%2%#| %0,%%sar,%2%#}");
6753 else
6755 strcpy (buf, "{vextrs,|extrw,s,}");
6756 if (GET_MODE (operands[0]) == DImode)
6757 strcpy (buf, "extrd,s,*");
6758 if ((which == 0 && negated)
6759 || (which == 1 && ! negated))
6760 strcat (buf, "<");
6761 else
6762 strcat (buf, ">=");
6763 if (nullify && negated)
6764 strcat (buf, "{ %0,1,%%r0\n\tb,n %3| %0,%%sar,1,%%r0\n\tb,n %3}");
6765 else if (nullify && ! negated)
6766 strcat (buf, "{ %0,1,%%r0\n\tb,n %2| %0,%%sar,1,%%r0\n\tb,n %2}");
6767 else if (negated)
6768 strcat (buf, "{ %0,1,%%r0\n\tb %3| %0,%%sar,1,%%r0\n\tb %3}");
6769 else
6770 strcat (buf, "{ %0,1,%%r0\n\tb %2| %0,%%sar,1,%%r0\n\tb %2}");
6772 break;
6774 default:
6775 abort ();
6777 return buf;
6780 /* Return the output template for emitting a dbra type insn.
6782 Note it may perform some output operations on its own before
6783 returning the final output string. */
6784 const char *
6785 output_dbra (rtx *operands, rtx insn, int which_alternative)
6788 /* A conditional branch to the following instruction (e.g. the delay slot) is
6789 asking for a disaster. Be prepared! */
6791 if (next_real_insn (JUMP_LABEL (insn)) == next_real_insn (insn))
6793 if (which_alternative == 0)
6794 return "ldo %1(%0),%0";
6795 else if (which_alternative == 1)
6797 output_asm_insn ("{fstws|fstw} %0,-16(%%r30)", operands);
6798 output_asm_insn ("ldw -16(%%r30),%4", operands);
6799 output_asm_insn ("ldo %1(%4),%4\n\tstw %4,-16(%%r30)", operands);
6800 return "{fldws|fldw} -16(%%r30),%0";
6802 else
6804 output_asm_insn ("ldw %0,%4", operands);
6805 return "ldo %1(%4),%4\n\tstw %4,%0";
6809 if (which_alternative == 0)
6811 int nullify = INSN_ANNULLED_BRANCH_P (insn);
6812 int length = get_attr_length (insn);
6814 /* If this is a long branch with its delay slot unfilled, set `nullify'
6815 as it can nullify the delay slot and save a nop. */
6816 if (length == 8 && dbr_sequence_length () == 0)
6817 nullify = 1;
6819 /* If this is a short forward conditional branch which did not get
6820 its delay slot filled, the delay slot can still be nullified. */
6821 if (! nullify && length == 4 && dbr_sequence_length () == 0)
6822 nullify = forward_branch_p (insn);
6824 /* Handle short versions first. */
6825 if (length == 4 && nullify)
6826 return "addib,%C2,n %1,%0,%3";
6827 else if (length == 4 && ! nullify)
6828 return "addib,%C2 %1,%0,%3";
6829 else if (length == 8)
6831 /* Handle weird backwards branch with a fulled delay slot
6832 which is nullified. */
6833 if (dbr_sequence_length () != 0
6834 && ! forward_branch_p (insn)
6835 && nullify)
6836 return "addib,%N2,n %1,%0,.+12\n\tb %3";
6837 /* Handle short backwards branch with an unfilled delay slot.
6838 Using a addb;nop rather than addi;bl saves 1 cycle for both
6839 taken and untaken branches. */
6840 else if (dbr_sequence_length () == 0
6841 && ! forward_branch_p (insn)
6842 && INSN_ADDRESSES_SET_P ()
6843 && VAL_14_BITS_P (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (insn)))
6844 - INSN_ADDRESSES (INSN_UID (insn)) - 8))
6845 return "addib,%C2 %1,%0,%3%#";
6847 /* Handle normal cases. */
6848 if (nullify)
6849 return "addi,%N2 %1,%0,%0\n\tb,n %3";
6850 else
6851 return "addi,%N2 %1,%0,%0\n\tb %3";
6853 else
6854 abort ();
6856 /* Deal with gross reload from FP register case. */
6857 else if (which_alternative == 1)
6859 /* Move loop counter from FP register to MEM then into a GR,
6860 increment the GR, store the GR into MEM, and finally reload
6861 the FP register from MEM from within the branch's delay slot. */
6862 output_asm_insn ("{fstws|fstw} %0,-16(%%r30)\n\tldw -16(%%r30),%4",
6863 operands);
6864 output_asm_insn ("ldo %1(%4),%4\n\tstw %4,-16(%%r30)", operands);
6865 if (get_attr_length (insn) == 24)
6866 return "{comb|cmpb},%S2 %%r0,%4,%3\n\t{fldws|fldw} -16(%%r30),%0";
6867 else
6868 return "{comclr|cmpclr},%B2 %%r0,%4,%%r0\n\tb %3\n\t{fldws|fldw} -16(%%r30),%0";
6870 /* Deal with gross reload from memory case. */
6871 else
6873 /* Reload loop counter from memory, the store back to memory
6874 happens in the branch's delay slot. */
6875 output_asm_insn ("ldw %0,%4", operands);
6876 if (get_attr_length (insn) == 12)
6877 return "addib,%C2 %1,%4,%3\n\tstw %4,%0";
6878 else
6879 return "addi,%N2 %1,%4,%4\n\tb %3\n\tstw %4,%0";
6883 /* Return the output template for emitting a dbra type insn.
6885 Note it may perform some output operations on its own before
6886 returning the final output string. */
6887 const char *
6888 output_movb (rtx *operands, rtx insn, int which_alternative,
6889 int reverse_comparison)
6892 /* A conditional branch to the following instruction (e.g. the delay slot) is
6893 asking for a disaster. Be prepared! */
6895 if (next_real_insn (JUMP_LABEL (insn)) == next_real_insn (insn))
6897 if (which_alternative == 0)
6898 return "copy %1,%0";
6899 else if (which_alternative == 1)
6901 output_asm_insn ("stw %1,-16(%%r30)", operands);
6902 return "{fldws|fldw} -16(%%r30),%0";
6904 else if (which_alternative == 2)
6905 return "stw %1,%0";
6906 else
6907 return "mtsar %r1";
6910 /* Support the second variant. */
6911 if (reverse_comparison)
6912 PUT_CODE (operands[2], reverse_condition (GET_CODE (operands[2])));
6914 if (which_alternative == 0)
6916 int nullify = INSN_ANNULLED_BRANCH_P (insn);
6917 int length = get_attr_length (insn);
6919 /* If this is a long branch with its delay slot unfilled, set `nullify'
6920 as it can nullify the delay slot and save a nop. */
6921 if (length == 8 && dbr_sequence_length () == 0)
6922 nullify = 1;
6924 /* If this is a short forward conditional branch which did not get
6925 its delay slot filled, the delay slot can still be nullified. */
6926 if (! nullify && length == 4 && dbr_sequence_length () == 0)
6927 nullify = forward_branch_p (insn);
6929 /* Handle short versions first. */
6930 if (length == 4 && nullify)
6931 return "movb,%C2,n %1,%0,%3";
6932 else if (length == 4 && ! nullify)
6933 return "movb,%C2 %1,%0,%3";
6934 else if (length == 8)
6936 /* Handle weird backwards branch with a filled delay slot
6937 which is nullified. */
6938 if (dbr_sequence_length () != 0
6939 && ! forward_branch_p (insn)
6940 && nullify)
6941 return "movb,%N2,n %1,%0,.+12\n\tb %3";
6943 /* Handle short backwards branch with an unfilled delay slot.
6944 Using a movb;nop rather than or;bl saves 1 cycle for both
6945 taken and untaken branches. */
6946 else if (dbr_sequence_length () == 0
6947 && ! forward_branch_p (insn)
6948 && INSN_ADDRESSES_SET_P ()
6949 && VAL_14_BITS_P (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (insn)))
6950 - INSN_ADDRESSES (INSN_UID (insn)) - 8))
6951 return "movb,%C2 %1,%0,%3%#";
6952 /* Handle normal cases. */
6953 if (nullify)
6954 return "or,%N2 %1,%%r0,%0\n\tb,n %3";
6955 else
6956 return "or,%N2 %1,%%r0,%0\n\tb %3";
6958 else
6959 abort ();
6961 /* Deal with gross reload from FP register case. */
6962 else if (which_alternative == 1)
6964 /* Move loop counter from FP register to MEM then into a GR,
6965 increment the GR, store the GR into MEM, and finally reload
6966 the FP register from MEM from within the branch's delay slot. */
6967 output_asm_insn ("stw %1,-16(%%r30)", operands);
6968 if (get_attr_length (insn) == 12)
6969 return "{comb|cmpb},%S2 %%r0,%1,%3\n\t{fldws|fldw} -16(%%r30),%0";
6970 else
6971 return "{comclr|cmpclr},%B2 %%r0,%1,%%r0\n\tb %3\n\t{fldws|fldw} -16(%%r30),%0";
6973 /* Deal with gross reload from memory case. */
6974 else if (which_alternative == 2)
6976 /* Reload loop counter from memory, the store back to memory
6977 happens in the branch's delay slot. */
6978 if (get_attr_length (insn) == 8)
6979 return "{comb|cmpb},%S2 %%r0,%1,%3\n\tstw %1,%0";
6980 else
6981 return "{comclr|cmpclr},%B2 %%r0,%1,%%r0\n\tb %3\n\tstw %1,%0";
6983 /* Handle SAR as a destination. */
6984 else
6986 if (get_attr_length (insn) == 8)
6987 return "{comb|cmpb},%S2 %%r0,%1,%3\n\tmtsar %r1";
6988 else
6989 return "{comclr|cmpclr},%B2 %%r0,%1,%%r0\n\tb %3\n\tmtsar %r1";
6993 /* Copy any FP arguments in INSN into integer registers. */
6994 static void
6995 copy_fp_args (rtx insn)
6997 rtx link;
6998 rtx xoperands[2];
7000 for (link = CALL_INSN_FUNCTION_USAGE (insn); link; link = XEXP (link, 1))
7002 int arg_mode, regno;
7003 rtx use = XEXP (link, 0);
7005 if (! (GET_CODE (use) == USE
7006 && GET_CODE (XEXP (use, 0)) == REG
7007 && FUNCTION_ARG_REGNO_P (REGNO (XEXP (use, 0)))))
7008 continue;
7010 arg_mode = GET_MODE (XEXP (use, 0));
7011 regno = REGNO (XEXP (use, 0));
7013 /* Is it a floating point register? */
7014 if (regno >= 32 && regno <= 39)
7016 /* Copy the FP register into an integer register via memory. */
7017 if (arg_mode == SFmode)
7019 xoperands[0] = XEXP (use, 0);
7020 xoperands[1] = gen_rtx_REG (SImode, 26 - (regno - 32) / 2);
7021 output_asm_insn ("{fstws|fstw} %0,-16(%%sr0,%%r30)", xoperands);
7022 output_asm_insn ("ldw -16(%%sr0,%%r30),%1", xoperands);
7024 else
7026 xoperands[0] = XEXP (use, 0);
7027 xoperands[1] = gen_rtx_REG (DImode, 25 - (regno - 34) / 2);
7028 output_asm_insn ("{fstds|fstd} %0,-16(%%sr0,%%r30)", xoperands);
7029 output_asm_insn ("ldw -12(%%sr0,%%r30),%R1", xoperands);
7030 output_asm_insn ("ldw -16(%%sr0,%%r30),%1", xoperands);
7036 /* Compute length of the FP argument copy sequence for INSN. */
7037 static int
7038 length_fp_args (rtx insn)
7040 int length = 0;
7041 rtx link;
7043 for (link = CALL_INSN_FUNCTION_USAGE (insn); link; link = XEXP (link, 1))
7045 int arg_mode, regno;
7046 rtx use = XEXP (link, 0);
7048 if (! (GET_CODE (use) == USE
7049 && GET_CODE (XEXP (use, 0)) == REG
7050 && FUNCTION_ARG_REGNO_P (REGNO (XEXP (use, 0)))))
7051 continue;
7053 arg_mode = GET_MODE (XEXP (use, 0));
7054 regno = REGNO (XEXP (use, 0));
7056 /* Is it a floating point register? */
7057 if (regno >= 32 && regno <= 39)
7059 if (arg_mode == SFmode)
7060 length += 8;
7061 else
7062 length += 12;
7066 return length;
7069 /* Return the attribute length for the millicode call instruction INSN.
7070 The length must match the code generated by output_millicode_call.
7071 We include the delay slot in the returned length as it is better to
7072 over estimate the length than to under estimate it. */
7075 attr_length_millicode_call (rtx insn)
7077 unsigned long distance = -1;
7078 unsigned long total = IN_NAMED_SECTION_P (cfun->decl) ? 0 : total_code_bytes;
7080 if (INSN_ADDRESSES_SET_P ())
7082 distance = (total + insn_current_reference_address (insn));
7083 if (distance < total)
7084 distance = -1;
7087 if (TARGET_64BIT)
7089 if (!TARGET_LONG_CALLS && distance < 7600000)
7090 return 8;
7092 return 20;
7094 else if (TARGET_PORTABLE_RUNTIME)
7095 return 24;
7096 else
7098 if (!TARGET_LONG_CALLS && distance < 240000)
7099 return 8;
7101 if (TARGET_LONG_ABS_CALL && !flag_pic)
7102 return 12;
7104 return 24;
7108 /* INSN is a function call. It may have an unconditional jump
7109 in its delay slot.
7111 CALL_DEST is the routine we are calling. */
7113 const char *
7114 output_millicode_call (rtx insn, rtx call_dest)
7116 int attr_length = get_attr_length (insn);
7117 int seq_length = dbr_sequence_length ();
7118 int distance;
7119 rtx seq_insn;
7120 rtx xoperands[3];
7122 xoperands[0] = call_dest;
7123 xoperands[2] = gen_rtx_REG (Pmode, TARGET_64BIT ? 2 : 31);
7125 /* Handle the common case where we are sure that the branch will
7126 reach the beginning of the $CODE$ subspace. The within reach
7127 form of the $$sh_func_adrs call has a length of 28. Because
7128 it has an attribute type of multi, it never has a nonzero
7129 sequence length. The length of the $$sh_func_adrs is the same
7130 as certain out of reach PIC calls to other routines. */
7131 if (!TARGET_LONG_CALLS
7132 && ((seq_length == 0
7133 && (attr_length == 12
7134 || (attr_length == 28 && get_attr_type (insn) == TYPE_MULTI)))
7135 || (seq_length != 0 && attr_length == 8)))
7137 output_asm_insn ("{bl|b,l} %0,%2", xoperands);
7139 else
7141 if (TARGET_64BIT)
7143 /* It might seem that one insn could be saved by accessing
7144 the millicode function using the linkage table. However,
7145 this doesn't work in shared libraries and other dynamically
7146 loaded objects. Using a pc-relative sequence also avoids
7147 problems related to the implicit use of the gp register. */
7148 output_asm_insn ("b,l .+8,%%r1", xoperands);
7150 if (TARGET_GAS)
7152 output_asm_insn ("addil L'%0-$PIC_pcrel$0+4,%%r1", xoperands);
7153 output_asm_insn ("ldo R'%0-$PIC_pcrel$0+8(%%r1),%%r1", xoperands);
7155 else
7157 xoperands[1] = gen_label_rtx ();
7158 output_asm_insn ("addil L'%0-%l1,%%r1", xoperands);
7159 (*targetm.asm_out.internal_label) (asm_out_file, "L",
7160 CODE_LABEL_NUMBER (xoperands[1]));
7161 output_asm_insn ("ldo R'%0-%l1(%%r1),%%r1", xoperands);
7164 output_asm_insn ("bve,l (%%r1),%%r2", xoperands);
7166 else if (TARGET_PORTABLE_RUNTIME)
7168 /* Pure portable runtime doesn't allow be/ble; we also don't
7169 have PIC support in the assembler/linker, so this sequence
7170 is needed. */
7172 /* Get the address of our target into %r1. */
7173 output_asm_insn ("ldil L'%0,%%r1", xoperands);
7174 output_asm_insn ("ldo R'%0(%%r1),%%r1", xoperands);
7176 /* Get our return address into %r31. */
7177 output_asm_insn ("{bl|b,l} .+8,%%r31", xoperands);
7178 output_asm_insn ("addi 8,%%r31,%%r31", xoperands);
7180 /* Jump to our target address in %r1. */
7181 output_asm_insn ("bv %%r0(%%r1)", xoperands);
7183 else if (!flag_pic)
7185 output_asm_insn ("ldil L'%0,%%r1", xoperands);
7186 if (TARGET_PA_20)
7187 output_asm_insn ("be,l R'%0(%%sr4,%%r1),%%sr0,%%r31", xoperands);
7188 else
7189 output_asm_insn ("ble R'%0(%%sr4,%%r1)", xoperands);
7191 else
7193 output_asm_insn ("{bl|b,l} .+8,%%r1", xoperands);
7194 output_asm_insn ("addi 16,%%r1,%%r31", xoperands);
7196 if (TARGET_SOM || !TARGET_GAS)
7198 /* The HP assembler can generate relocations for the
7199 difference of two symbols. GAS can do this for a
7200 millicode symbol but not an arbitrary external
7201 symbol when generating SOM output. */
7202 xoperands[1] = gen_label_rtx ();
7203 (*targetm.asm_out.internal_label) (asm_out_file, "L",
7204 CODE_LABEL_NUMBER (xoperands[1]));
7205 output_asm_insn ("addil L'%0-%l1,%%r1", xoperands);
7206 output_asm_insn ("ldo R'%0-%l1(%%r1),%%r1", xoperands);
7208 else
7210 output_asm_insn ("addil L'%0-$PIC_pcrel$0+8,%%r1", xoperands);
7211 output_asm_insn ("ldo R'%0-$PIC_pcrel$0+12(%%r1),%%r1",
7212 xoperands);
7215 /* Jump to our target address in %r1. */
7216 output_asm_insn ("bv %%r0(%%r1)", xoperands);
7220 if (seq_length == 0)
7221 output_asm_insn ("nop", xoperands);
7223 /* We are done if there isn't a jump in the delay slot. */
7224 if (seq_length == 0 || GET_CODE (NEXT_INSN (insn)) != JUMP_INSN)
7225 return "";
7227 /* This call has an unconditional jump in its delay slot. */
7228 xoperands[0] = XEXP (PATTERN (NEXT_INSN (insn)), 1);
7230 /* See if the return address can be adjusted. Use the containing
7231 sequence insn's address. */
7232 if (INSN_ADDRESSES_SET_P ())
7234 seq_insn = NEXT_INSN (PREV_INSN (XVECEXP (final_sequence, 0, 0)));
7235 distance = (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (NEXT_INSN (insn))))
7236 - INSN_ADDRESSES (INSN_UID (seq_insn)) - 8);
7238 if (VAL_14_BITS_P (distance))
7240 xoperands[1] = gen_label_rtx ();
7241 output_asm_insn ("ldo %0-%1(%2),%2", xoperands);
7242 (*targetm.asm_out.internal_label) (asm_out_file, "L",
7243 CODE_LABEL_NUMBER (xoperands[1]));
7245 else
7246 /* ??? This branch may not reach its target. */
7247 output_asm_insn ("nop\n\tb,n %0", xoperands);
7249 else
7250 /* ??? This branch may not reach its target. */
7251 output_asm_insn ("nop\n\tb,n %0", xoperands);
7253 /* Delete the jump. */
7254 PUT_CODE (NEXT_INSN (insn), NOTE);
7255 NOTE_LINE_NUMBER (NEXT_INSN (insn)) = NOTE_INSN_DELETED;
7256 NOTE_SOURCE_FILE (NEXT_INSN (insn)) = 0;
7258 return "";
7261 /* Return the attribute length of the call instruction INSN. The SIBCALL
7262 flag indicates whether INSN is a regular call or a sibling call. The
7263 length returned must be longer than the code actually generated by
7264 output_call. Since branch shortening is done before delay branch
7265 sequencing, there is no way to determine whether or not the delay
7266 slot will be filled during branch shortening. Even when the delay
7267 slot is filled, we may have to add a nop if the delay slot contains
7268 a branch that can't reach its target. Thus, we always have to include
7269 the delay slot in the length estimate. This used to be done in
7270 pa_adjust_insn_length but we do it here now as some sequences always
7271 fill the delay slot and we can save four bytes in the estimate for
7272 these sequences. */
7275 attr_length_call (rtx insn, int sibcall)
7277 int local_call;
7278 rtx call_dest;
7279 tree call_decl;
7280 int length = 0;
7281 rtx pat = PATTERN (insn);
7282 unsigned long distance = -1;
7284 if (INSN_ADDRESSES_SET_P ())
7286 unsigned long total;
7288 total = IN_NAMED_SECTION_P (cfun->decl) ? 0 : total_code_bytes;
7289 distance = (total + insn_current_reference_address (insn));
7290 if (distance < total)
7291 distance = -1;
7294 /* Determine if this is a local call. */
7295 if (GET_CODE (XVECEXP (pat, 0, 0)) == CALL)
7296 call_dest = XEXP (XEXP (XVECEXP (pat, 0, 0), 0), 0);
7297 else
7298 call_dest = XEXP (XEXP (XEXP (XVECEXP (pat, 0, 0), 1), 0), 0);
7300 call_decl = SYMBOL_REF_DECL (call_dest);
7301 local_call = call_decl && (*targetm.binds_local_p) (call_decl);
7303 /* pc-relative branch. */
7304 if (!TARGET_LONG_CALLS
7305 && ((TARGET_PA_20 && !sibcall && distance < 7600000)
7306 || distance < 240000))
7307 length += 8;
7309 /* 64-bit plabel sequence. */
7310 else if (TARGET_64BIT && !local_call)
7311 length += sibcall ? 28 : 24;
7313 /* non-pic long absolute branch sequence. */
7314 else if ((TARGET_LONG_ABS_CALL || local_call) && !flag_pic)
7315 length += 12;
7317 /* long pc-relative branch sequence. */
7318 else if ((TARGET_SOM && TARGET_LONG_PIC_SDIFF_CALL)
7319 || (TARGET_64BIT && !TARGET_GAS)
7320 || (TARGET_GAS && (TARGET_LONG_PIC_PCREL_CALL || local_call)))
7322 length += 20;
7324 if (!TARGET_PA_20 && !TARGET_NO_SPACE_REGS)
7325 length += 8;
7328 /* 32-bit plabel sequence. */
7329 else
7331 length += 32;
7333 if (TARGET_SOM)
7334 length += length_fp_args (insn);
7336 if (flag_pic)
7337 length += 4;
7339 if (!TARGET_PA_20)
7341 if (!sibcall)
7342 length += 8;
7344 if (!TARGET_NO_SPACE_REGS)
7345 length += 8;
7349 return length;
7352 /* INSN is a function call. It may have an unconditional jump
7353 in its delay slot.
7355 CALL_DEST is the routine we are calling. */
7357 const char *
7358 output_call (rtx insn, rtx call_dest, int sibcall)
7360 int delay_insn_deleted = 0;
7361 int delay_slot_filled = 0;
7362 int seq_length = dbr_sequence_length ();
7363 tree call_decl = SYMBOL_REF_DECL (call_dest);
7364 int local_call = call_decl && (*targetm.binds_local_p) (call_decl);
7365 rtx xoperands[2];
7367 xoperands[0] = call_dest;
7369 /* Handle the common case where we're sure that the branch will reach
7370 the beginning of the "$CODE$" subspace. This is the beginning of
7371 the current function if we are in a named section. */
7372 if (!TARGET_LONG_CALLS && attr_length_call (insn, sibcall) == 8)
7374 xoperands[1] = gen_rtx_REG (word_mode, sibcall ? 0 : 2);
7375 output_asm_insn ("{bl|b,l} %0,%1", xoperands);
7377 else
7379 if (TARGET_64BIT && !local_call)
7381 /* ??? As far as I can tell, the HP linker doesn't support the
7382 long pc-relative sequence described in the 64-bit runtime
7383 architecture. So, we use a slightly longer indirect call. */
7384 struct deferred_plabel *p = get_plabel (XSTR (call_dest, 0));
7386 xoperands[0] = p->internal_label;
7387 xoperands[1] = gen_label_rtx ();
7389 /* If this isn't a sibcall, we put the load of %r27 into the
7390 delay slot. We can't do this in a sibcall as we don't
7391 have a second call-clobbered scratch register available. */
7392 if (seq_length != 0
7393 && GET_CODE (NEXT_INSN (insn)) != JUMP_INSN
7394 && !sibcall)
7396 final_scan_insn (NEXT_INSN (insn), asm_out_file,
7397 optimize, 0, 0, NULL);
7399 /* Now delete the delay insn. */
7400 PUT_CODE (NEXT_INSN (insn), NOTE);
7401 NOTE_LINE_NUMBER (NEXT_INSN (insn)) = NOTE_INSN_DELETED;
7402 NOTE_SOURCE_FILE (NEXT_INSN (insn)) = 0;
7403 delay_insn_deleted = 1;
7406 output_asm_insn ("addil LT'%0,%%r27", xoperands);
7407 output_asm_insn ("ldd RT'%0(%%r1),%%r1", xoperands);
7408 output_asm_insn ("ldd 0(%%r1),%%r1", xoperands);
7410 if (sibcall)
7412 output_asm_insn ("ldd 24(%%r1),%%r27", xoperands);
7413 output_asm_insn ("ldd 16(%%r1),%%r1", xoperands);
7414 output_asm_insn ("bve (%%r1)", xoperands);
7416 else
7418 output_asm_insn ("ldd 16(%%r1),%%r2", xoperands);
7419 output_asm_insn ("bve,l (%%r2),%%r2", xoperands);
7420 output_asm_insn ("ldd 24(%%r1),%%r27", xoperands);
7421 delay_slot_filled = 1;
7424 else
7426 int indirect_call = 0;
7428 /* Emit a long call. There are several different sequences
7429 of increasing length and complexity. In most cases,
7430 they don't allow an instruction in the delay slot. */
7431 if (!((TARGET_LONG_ABS_CALL || local_call) && !flag_pic)
7432 && !(TARGET_SOM && TARGET_LONG_PIC_SDIFF_CALL)
7433 && !(TARGET_GAS && (TARGET_LONG_PIC_PCREL_CALL || local_call))
7434 && !TARGET_64BIT)
7435 indirect_call = 1;
7437 if (seq_length != 0
7438 && GET_CODE (NEXT_INSN (insn)) != JUMP_INSN
7439 && !sibcall
7440 && (!TARGET_PA_20 || indirect_call))
7442 /* A non-jump insn in the delay slot. By definition we can
7443 emit this insn before the call (and in fact before argument
7444 relocating. */
7445 final_scan_insn (NEXT_INSN (insn), asm_out_file, optimize, 0, 0,
7446 NULL);
7448 /* Now delete the delay insn. */
7449 PUT_CODE (NEXT_INSN (insn), NOTE);
7450 NOTE_LINE_NUMBER (NEXT_INSN (insn)) = NOTE_INSN_DELETED;
7451 NOTE_SOURCE_FILE (NEXT_INSN (insn)) = 0;
7452 delay_insn_deleted = 1;
7455 if ((TARGET_LONG_ABS_CALL || local_call) && !flag_pic)
7457 /* This is the best sequence for making long calls in
7458 non-pic code. Unfortunately, GNU ld doesn't provide
7459 the stub needed for external calls, and GAS's support
7460 for this with the SOM linker is buggy. It is safe
7461 to use this for local calls. */
7462 output_asm_insn ("ldil L'%0,%%r1", xoperands);
7463 if (sibcall)
7464 output_asm_insn ("be R'%0(%%sr4,%%r1)", xoperands);
7465 else
7467 if (TARGET_PA_20)
7468 output_asm_insn ("be,l R'%0(%%sr4,%%r1),%%sr0,%%r31",
7469 xoperands);
7470 else
7471 output_asm_insn ("ble R'%0(%%sr4,%%r1)", xoperands);
7473 output_asm_insn ("copy %%r31,%%r2", xoperands);
7474 delay_slot_filled = 1;
7477 else
7479 if ((TARGET_SOM && TARGET_LONG_PIC_SDIFF_CALL)
7480 || (TARGET_64BIT && !TARGET_GAS))
7482 /* The HP assembler and linker can handle relocations
7483 for the difference of two symbols. GAS and the HP
7484 linker can't do this when one of the symbols is
7485 external. */
7486 xoperands[1] = gen_label_rtx ();
7487 output_asm_insn ("{bl|b,l} .+8,%%r1", xoperands);
7488 output_asm_insn ("addil L'%0-%l1,%%r1", xoperands);
7489 (*targetm.asm_out.internal_label) (asm_out_file, "L",
7490 CODE_LABEL_NUMBER (xoperands[1]));
7491 output_asm_insn ("ldo R'%0-%l1(%%r1),%%r1", xoperands);
7493 else if (TARGET_GAS && (TARGET_LONG_PIC_PCREL_CALL || local_call))
7495 /* GAS currently can't generate the relocations that
7496 are needed for the SOM linker under HP-UX using this
7497 sequence. The GNU linker doesn't generate the stubs
7498 that are needed for external calls on TARGET_ELF32
7499 with this sequence. For now, we have to use a
7500 longer plabel sequence when using GAS. */
7501 output_asm_insn ("{bl|b,l} .+8,%%r1", xoperands);
7502 output_asm_insn ("addil L'%0-$PIC_pcrel$0+4,%%r1",
7503 xoperands);
7504 output_asm_insn ("ldo R'%0-$PIC_pcrel$0+8(%%r1),%%r1",
7505 xoperands);
7507 else
7509 /* Emit a long plabel-based call sequence. This is
7510 essentially an inline implementation of $$dyncall.
7511 We don't actually try to call $$dyncall as this is
7512 as difficult as calling the function itself. */
7513 struct deferred_plabel *p = get_plabel (XSTR (call_dest, 0));
7515 xoperands[0] = p->internal_label;
7516 xoperands[1] = gen_label_rtx ();
7518 /* Since the call is indirect, FP arguments in registers
7519 need to be copied to the general registers. Then, the
7520 argument relocation stub will copy them back. */
7521 if (TARGET_SOM)
7522 copy_fp_args (insn);
7524 if (flag_pic)
7526 output_asm_insn ("addil LT'%0,%%r19", xoperands);
7527 output_asm_insn ("ldw RT'%0(%%r1),%%r1", xoperands);
7528 output_asm_insn ("ldw 0(%%r1),%%r1", xoperands);
7530 else
7532 output_asm_insn ("addil LR'%0-$global$,%%r27",
7533 xoperands);
7534 output_asm_insn ("ldw RR'%0-$global$(%%r1),%%r1",
7535 xoperands);
7538 output_asm_insn ("bb,>=,n %%r1,30,.+16", xoperands);
7539 output_asm_insn ("depi 0,31,2,%%r1", xoperands);
7540 output_asm_insn ("ldw 4(%%sr0,%%r1),%%r19", xoperands);
7541 output_asm_insn ("ldw 0(%%sr0,%%r1),%%r1", xoperands);
7543 if (!sibcall && !TARGET_PA_20)
7545 output_asm_insn ("{bl|b,l} .+8,%%r2", xoperands);
7546 if (TARGET_NO_SPACE_REGS)
7547 output_asm_insn ("addi 8,%%r2,%%r2", xoperands);
7548 else
7549 output_asm_insn ("addi 16,%%r2,%%r2", xoperands);
7553 if (TARGET_PA_20)
7555 if (sibcall)
7556 output_asm_insn ("bve (%%r1)", xoperands);
7557 else
7559 if (indirect_call)
7561 output_asm_insn ("bve,l (%%r1),%%r2", xoperands);
7562 output_asm_insn ("stw %%r2,-24(%%sp)", xoperands);
7563 delay_slot_filled = 1;
7565 else
7566 output_asm_insn ("bve,l (%%r1),%%r2", xoperands);
7569 else
7571 if (!TARGET_NO_SPACE_REGS)
7572 output_asm_insn ("ldsid (%%r1),%%r31\n\tmtsp %%r31,%%sr0",
7573 xoperands);
7575 if (sibcall)
7577 if (TARGET_NO_SPACE_REGS)
7578 output_asm_insn ("be 0(%%sr4,%%r1)", xoperands);
7579 else
7580 output_asm_insn ("be 0(%%sr0,%%r1)", xoperands);
7582 else
7584 if (TARGET_NO_SPACE_REGS)
7585 output_asm_insn ("ble 0(%%sr4,%%r1)", xoperands);
7586 else
7587 output_asm_insn ("ble 0(%%sr0,%%r1)", xoperands);
7589 if (indirect_call)
7590 output_asm_insn ("stw %%r31,-24(%%sp)", xoperands);
7591 else
7592 output_asm_insn ("copy %%r31,%%r2", xoperands);
7593 delay_slot_filled = 1;
7600 if (!delay_slot_filled && (seq_length == 0 || delay_insn_deleted))
7601 output_asm_insn ("nop", xoperands);
7603 /* We are done if there isn't a jump in the delay slot. */
7604 if (seq_length == 0
7605 || delay_insn_deleted
7606 || GET_CODE (NEXT_INSN (insn)) != JUMP_INSN)
7607 return "";
7609 /* A sibcall should never have a branch in the delay slot. */
7610 if (sibcall)
7611 abort ();
7613 /* This call has an unconditional jump in its delay slot. */
7614 xoperands[0] = XEXP (PATTERN (NEXT_INSN (insn)), 1);
7616 if (!delay_slot_filled && INSN_ADDRESSES_SET_P ())
7618 /* See if the return address can be adjusted. Use the containing
7619 sequence insn's address. */
7620 rtx seq_insn = NEXT_INSN (PREV_INSN (XVECEXP (final_sequence, 0, 0)));
7621 int distance = (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (NEXT_INSN (insn))))
7622 - INSN_ADDRESSES (INSN_UID (seq_insn)) - 8);
7624 if (VAL_14_BITS_P (distance))
7626 xoperands[1] = gen_label_rtx ();
7627 output_asm_insn ("ldo %0-%1(%%r2),%%r2", xoperands);
7628 (*targetm.asm_out.internal_label) (asm_out_file, "L",
7629 CODE_LABEL_NUMBER (xoperands[1]));
7631 else
7632 output_asm_insn ("nop\n\tb,n %0", xoperands);
7634 else
7635 output_asm_insn ("b,n %0", xoperands);
7637 /* Delete the jump. */
7638 PUT_CODE (NEXT_INSN (insn), NOTE);
7639 NOTE_LINE_NUMBER (NEXT_INSN (insn)) = NOTE_INSN_DELETED;
7640 NOTE_SOURCE_FILE (NEXT_INSN (insn)) = 0;
7642 return "";
7645 /* Return the attribute length of the indirect call instruction INSN.
7646 The length must match the code generated by output_indirect call.
7647 The returned length includes the delay slot. Currently, the delay
7648 slot of an indirect call sequence is not exposed and it is used by
7649 the sequence itself. */
7652 attr_length_indirect_call (rtx insn)
7654 unsigned long distance = -1;
7655 unsigned long total = IN_NAMED_SECTION_P (cfun->decl) ? 0 : total_code_bytes;
7657 if (INSN_ADDRESSES_SET_P ())
7659 distance = (total + insn_current_reference_address (insn));
7660 if (distance < total)
7661 distance = -1;
7664 if (TARGET_64BIT)
7665 return 12;
7667 if (TARGET_FAST_INDIRECT_CALLS
7668 || (!TARGET_PORTABLE_RUNTIME
7669 && ((TARGET_PA_20 && distance < 7600000) || distance < 240000)))
7670 return 8;
7672 if (flag_pic)
7673 return 24;
7675 if (TARGET_PORTABLE_RUNTIME)
7676 return 20;
7678 /* Out of reach, can use ble. */
7679 return 12;
7682 const char *
7683 output_indirect_call (rtx insn, rtx call_dest)
7685 rtx xoperands[1];
7687 if (TARGET_64BIT)
7689 xoperands[0] = call_dest;
7690 output_asm_insn ("ldd 16(%0),%%r2", xoperands);
7691 output_asm_insn ("bve,l (%%r2),%%r2\n\tldd 24(%0),%%r27", xoperands);
7692 return "";
7695 /* First the special case for kernels, level 0 systems, etc. */
7696 if (TARGET_FAST_INDIRECT_CALLS)
7697 return "ble 0(%%sr4,%%r22)\n\tcopy %%r31,%%r2";
7699 /* Now the normal case -- we can reach $$dyncall directly or
7700 we're sure that we can get there via a long-branch stub.
7702 No need to check target flags as the length uniquely identifies
7703 the remaining cases. */
7704 if (attr_length_indirect_call (insn) == 8)
7706 /* The HP linker substitutes a BLE for millicode calls using
7707 the short PIC PCREL form. Thus, we must use %r31 as the
7708 link register when generating PA 1.x code. */
7709 if (TARGET_PA_20)
7710 return ".CALL\tARGW0=GR\n\tb,l $$dyncall,%%r2\n\tcopy %%r2,%%r31";
7711 else
7712 return ".CALL\tARGW0=GR\n\tbl $$dyncall,%%r31\n\tcopy %%r31,%%r2";
7715 /* Long millicode call, but we are not generating PIC or portable runtime
7716 code. */
7717 if (attr_length_indirect_call (insn) == 12)
7718 return ".CALL\tARGW0=GR\n\tldil L'$$dyncall,%%r2\n\tble R'$$dyncall(%%sr4,%%r2)\n\tcopy %%r31,%%r2";
7720 /* Long millicode call for portable runtime. */
7721 if (attr_length_indirect_call (insn) == 20)
7722 return "ldil L'$$dyncall,%%r31\n\tldo R'$$dyncall(%%r31),%%r31\n\tblr %%r0,%%r2\n\tbv,n %%r0(%%r31)\n\tnop";
7724 /* We need a long PIC call to $$dyncall. */
7725 xoperands[0] = NULL_RTX;
7726 output_asm_insn ("{bl|b,l} .+8,%%r1", xoperands);
7727 if (TARGET_SOM || !TARGET_GAS)
7729 xoperands[0] = gen_label_rtx ();
7730 output_asm_insn ("addil L'$$dyncall-%0,%%r1", xoperands);
7731 (*targetm.asm_out.internal_label) (asm_out_file, "L",
7732 CODE_LABEL_NUMBER (xoperands[0]));
7733 output_asm_insn ("ldo R'$$dyncall-%0(%%r1),%%r1", xoperands);
7735 else
7737 output_asm_insn ("addil L'$$dyncall-$PIC_pcrel$0+4,%%r1", xoperands);
7738 output_asm_insn ("ldo R'$$dyncall-$PIC_pcrel$0+8(%%r1),%%r1",
7739 xoperands);
7741 output_asm_insn ("blr %%r0,%%r2", xoperands);
7742 output_asm_insn ("bv,n %%r0(%%r1)\n\tnop", xoperands);
7743 return "";
7746 /* Return the total length of the save and restore instructions needed for
7747 the data linkage table pointer (i.e., the PIC register) across the call
7748 instruction INSN. No-return calls do not require a save and restore.
7749 In addition, we may be able to avoid the save and restore for calls
7750 within the same translation unit. */
7753 attr_length_save_restore_dltp (rtx insn)
7755 if (find_reg_note (insn, REG_NORETURN, NULL_RTX))
7756 return 0;
7758 return 8;
7761 /* In HPUX 8.0's shared library scheme, special relocations are needed
7762 for function labels if they might be passed to a function
7763 in a shared library (because shared libraries don't live in code
7764 space), and special magic is needed to construct their address. */
7766 void
7767 hppa_encode_label (rtx sym)
7769 const char *str = XSTR (sym, 0);
7770 int len = strlen (str) + 1;
7771 char *newstr, *p;
7773 p = newstr = alloca (len + 1);
7774 *p++ = '@';
7775 strcpy (p, str);
7777 XSTR (sym, 0) = ggc_alloc_string (newstr, len);
7780 static void
7781 pa_encode_section_info (tree decl, rtx rtl, int first)
7783 if (first && TEXT_SPACE_P (decl))
7785 SYMBOL_REF_FLAG (XEXP (rtl, 0)) = 1;
7786 if (TREE_CODE (decl) == FUNCTION_DECL)
7787 hppa_encode_label (XEXP (rtl, 0));
7791 /* This is sort of inverse to pa_encode_section_info. */
7793 static const char *
7794 pa_strip_name_encoding (const char *str)
7796 str += (*str == '@');
7797 str += (*str == '*');
7798 return str;
7802 function_label_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
7804 return GET_CODE (op) == SYMBOL_REF && FUNCTION_NAME_P (XSTR (op, 0));
7807 /* Returns 1 if OP is a function label involved in a simple addition
7808 with a constant. Used to keep certain patterns from matching
7809 during instruction combination. */
7811 is_function_label_plus_const (rtx op)
7813 /* Strip off any CONST. */
7814 if (GET_CODE (op) == CONST)
7815 op = XEXP (op, 0);
7817 return (GET_CODE (op) == PLUS
7818 && function_label_operand (XEXP (op, 0), Pmode)
7819 && GET_CODE (XEXP (op, 1)) == CONST_INT);
7822 /* Output assembly code for a thunk to FUNCTION. */
7824 static void
7825 pa_asm_output_mi_thunk (FILE *file, tree thunk_fndecl, HOST_WIDE_INT delta,
7826 HOST_WIDE_INT vcall_offset ATTRIBUTE_UNUSED,
7827 tree function)
7829 const char *fname = XSTR (XEXP (DECL_RTL (function), 0), 0);
7830 const char *tname = XSTR (XEXP (DECL_RTL (thunk_fndecl), 0), 0);
7831 int val_14 = VAL_14_BITS_P (delta);
7832 int nbytes = 0;
7833 static unsigned int current_thunk_number;
7834 char label[16];
7836 ASM_OUTPUT_LABEL (file, tname);
7837 fprintf (file, "\t.PROC\n\t.CALLINFO FRAME=0,NO_CALLS\n\t.ENTRY\n");
7839 fname = (*targetm.strip_name_encoding) (fname);
7840 tname = (*targetm.strip_name_encoding) (tname);
7842 /* Output the thunk. We know that the function is in the same
7843 translation unit (i.e., the same space) as the thunk, and that
7844 thunks are output after their method. Thus, we don't need an
7845 external branch to reach the function. With SOM and GAS,
7846 functions and thunks are effectively in different sections.
7847 Thus, we can always use a IA-relative branch and the linker
7848 will add a long branch stub if necessary.
7850 However, we have to be careful when generating PIC code on the
7851 SOM port to ensure that the sequence does not transfer to an
7852 import stub for the target function as this could clobber the
7853 return value saved at SP-24. This would also apply to the
7854 32-bit linux port if the multi-space model is implemented. */
7855 if ((!TARGET_LONG_CALLS && TARGET_SOM && !TARGET_PORTABLE_RUNTIME
7856 && !(flag_pic && TREE_PUBLIC (function))
7857 && (TARGET_GAS || last_address < 262132))
7858 || (!TARGET_LONG_CALLS && !TARGET_SOM && !TARGET_PORTABLE_RUNTIME
7859 && ((targetm.have_named_sections
7860 && DECL_SECTION_NAME (thunk_fndecl) != NULL
7861 /* The GNU 64-bit linker has rather poor stub management.
7862 So, we use a long branch from thunks that aren't in
7863 the same section as the target function. */
7864 && ((!TARGET_64BIT
7865 && (DECL_SECTION_NAME (thunk_fndecl)
7866 != DECL_SECTION_NAME (function)))
7867 || ((DECL_SECTION_NAME (thunk_fndecl)
7868 == DECL_SECTION_NAME (function))
7869 && last_address < 262132)))
7870 || (!targetm.have_named_sections && last_address < 262132))))
7872 if (val_14)
7874 fprintf (file, "\tb %s\n\tldo " HOST_WIDE_INT_PRINT_DEC
7875 "(%%r26),%%r26\n", fname, delta);
7876 nbytes += 8;
7878 else
7880 fprintf (file, "\taddil L'" HOST_WIDE_INT_PRINT_DEC
7881 ",%%r26\n", delta);
7882 fprintf (file, "\tb %s\n\tldo R'" HOST_WIDE_INT_PRINT_DEC
7883 "(%%r1),%%r26\n", fname, delta);
7884 nbytes += 12;
7887 else if (TARGET_64BIT)
7889 /* We only have one call-clobbered scratch register, so we can't
7890 make use of the delay slot if delta doesn't fit in 14 bits. */
7891 if (!val_14)
7892 fprintf (file, "\taddil L'" HOST_WIDE_INT_PRINT_DEC
7893 ",%%r26\n\tldo R'" HOST_WIDE_INT_PRINT_DEC
7894 "(%%r1),%%r26\n", delta, delta);
7896 fprintf (file, "\tb,l .+8,%%r1\n");
7898 if (TARGET_GAS)
7900 fprintf (file, "\taddil L'%s-$PIC_pcrel$0+4,%%r1\n", fname);
7901 fprintf (file, "\tldo R'%s-$PIC_pcrel$0+8(%%r1),%%r1\n", fname);
7903 else
7905 int off = val_14 ? 8 : 16;
7906 fprintf (file, "\taddil L'%s-%s-%d,%%r1\n", fname, tname, off);
7907 fprintf (file, "\tldo R'%s-%s-%d(%%r1),%%r1\n", fname, tname, off);
7910 if (val_14)
7912 fprintf (file, "\tbv %%r0(%%r1)\n\tldo ");
7913 fprintf (file, HOST_WIDE_INT_PRINT_DEC "(%%r26),%%r26\n", delta);
7914 nbytes += 20;
7916 else
7918 fprintf (file, "\tbv,n %%r0(%%r1)\n");
7919 nbytes += 24;
7922 else if (TARGET_PORTABLE_RUNTIME)
7924 fprintf (file, "\tldil L'%s,%%r1\n", fname);
7925 fprintf (file, "\tldo R'%s(%%r1),%%r22\n", fname);
7927 if (val_14)
7929 fprintf (file, "\tbv %%r0(%%r22)\n\tldo ");
7930 fprintf (file, HOST_WIDE_INT_PRINT_DEC "(%%r26),%%r26\n", delta);
7931 nbytes += 16;
7933 else
7935 fprintf (file, "\taddil L'" HOST_WIDE_INT_PRINT_DEC
7936 ",%%r26\n", delta);
7937 fprintf (file, "\tbv %%r0(%%r22)\n\tldo ");
7938 fprintf (file, "R'" HOST_WIDE_INT_PRINT_DEC "(%%r1),%%r26\n", delta);
7939 nbytes += 20;
7942 else if (TARGET_SOM && flag_pic && TREE_PUBLIC (function))
7944 /* The function is accessible from outside this module. The only
7945 way to avoid an import stub between the thunk and function is to
7946 call the function directly with an indirect sequence similar to
7947 that used by $$dyncall. This is possible because $$dyncall acts
7948 as the import stub in an indirect call. */
7949 const char *lab;
7951 ASM_GENERATE_INTERNAL_LABEL (label, "LTHN", current_thunk_number);
7952 lab = (*targetm.strip_name_encoding) (label);
7954 fprintf (file, "\taddil LT'%s,%%r19\n", lab);
7955 fprintf (file, "\tldw RT'%s(%%r1),%%r22\n", lab);
7956 fprintf (file, "\tldw 0(%%sr0,%%r22),%%r22\n");
7957 fprintf (file, "\tbb,>=,n %%r22,30,.+16\n");
7958 fprintf (file, "\tdepi 0,31,2,%%r22\n");
7959 fprintf (file, "\tldw 4(%%sr0,%%r22),%%r19\n");
7960 fprintf (file, "\tldw 0(%%sr0,%%r22),%%r22\n");
7961 if (!val_14)
7963 fprintf (file, "\taddil L'" HOST_WIDE_INT_PRINT_DEC
7964 ",%%r26\n", delta);
7965 nbytes += 4;
7967 if (TARGET_PA_20)
7969 fprintf (file, "\tbve (%%r22)\n\tldo ");
7970 nbytes += 36;
7972 else
7974 if (TARGET_NO_SPACE_REGS)
7976 fprintf (file, "\tbe 0(%%sr4,%%r22)\n\tldo ");
7977 nbytes += 36;
7979 else
7981 fprintf (file, "\tldsid (%%sr0,%%r22),%%r21\n");
7982 fprintf (file, "\tmtsp %%r21,%%sr0\n");
7983 fprintf (file, "\tbe 0(%%sr0,%%r22)\n\tldo ");
7984 nbytes += 44;
7988 if (val_14)
7989 fprintf (file, HOST_WIDE_INT_PRINT_DEC "(%%r26),%%r26\n", delta);
7990 else
7991 fprintf (file, "R'" HOST_WIDE_INT_PRINT_DEC "(%%r1),%%r26\n", delta);
7993 else if (flag_pic)
7995 if (TARGET_PA_20)
7996 fprintf (file, "\tb,l .+8,%%r1\n");
7997 else
7998 fprintf (file, "\tbl .+8,%%r1\n");
8000 if (TARGET_SOM || !TARGET_GAS)
8002 fprintf (file, "\taddil L'%s-%s-8,%%r1\n", fname, tname);
8003 fprintf (file, "\tldo R'%s-%s-8(%%r1),%%r22\n", fname, tname);
8005 else
8007 fprintf (file, "\taddil L'%s-$PIC_pcrel$0+4,%%r1\n", fname);
8008 fprintf (file, "\tldo R'%s-$PIC_pcrel$0+8(%%r1),%%r22\n", fname);
8011 if (val_14)
8013 fprintf (file, "\tbv %%r0(%%r22)\n\tldo ");
8014 fprintf (file, HOST_WIDE_INT_PRINT_DEC "(%%r26),%%r26\n", delta);
8015 nbytes += 20;
8017 else
8019 fprintf (file, "\taddil L'" HOST_WIDE_INT_PRINT_DEC
8020 ",%%r26\n", delta);
8021 fprintf (file, "\tbv %%r0(%%r22)\n\tldo ");
8022 fprintf (file, "R'" HOST_WIDE_INT_PRINT_DEC "(%%r1),%%r26\n", delta);
8023 nbytes += 24;
8026 else
8028 if (!val_14)
8029 fprintf (file, "\taddil L'" HOST_WIDE_INT_PRINT_DEC ",%%r26\n", delta);
8031 fprintf (file, "\tldil L'%s,%%r22\n", fname);
8032 fprintf (file, "\tbe R'%s(%%sr4,%%r22)\n\tldo ", fname);
8034 if (val_14)
8036 fprintf (file, HOST_WIDE_INT_PRINT_DEC "(%%r26),%%r26\n", delta);
8037 nbytes += 12;
8039 else
8041 fprintf (file, "R'" HOST_WIDE_INT_PRINT_DEC "(%%r1),%%r26\n", delta);
8042 nbytes += 16;
8046 fprintf (file, "\t.EXIT\n\t.PROCEND\n");
8048 if (TARGET_SOM && flag_pic && TREE_PUBLIC (function))
8050 data_section ();
8051 fprintf (file, "\t.align 4\n");
8052 ASM_OUTPUT_LABEL (file, label);
8053 fprintf (file, "\t.word P'%s\n", fname);
8055 else if (TARGET_SOM && TARGET_GAS)
8056 forget_section ();
8058 current_thunk_number++;
8059 nbytes = ((nbytes + FUNCTION_BOUNDARY / BITS_PER_UNIT - 1)
8060 & ~(FUNCTION_BOUNDARY / BITS_PER_UNIT - 1));
8061 last_address += nbytes;
8062 update_total_code_bytes (nbytes);
8065 /* Only direct calls to static functions are allowed to be sibling (tail)
8066 call optimized.
8068 This restriction is necessary because some linker generated stubs will
8069 store return pointers into rp' in some cases which might clobber a
8070 live value already in rp'.
8072 In a sibcall the current function and the target function share stack
8073 space. Thus if the path to the current function and the path to the
8074 target function save a value in rp', they save the value into the
8075 same stack slot, which has undesirable consequences.
8077 Because of the deferred binding nature of shared libraries any function
8078 with external scope could be in a different load module and thus require
8079 rp' to be saved when calling that function. So sibcall optimizations
8080 can only be safe for static function.
8082 Note that GCC never needs return value relocations, so we don't have to
8083 worry about static calls with return value relocations (which require
8084 saving rp').
8086 It is safe to perform a sibcall optimization when the target function
8087 will never return. */
8088 static bool
8089 pa_function_ok_for_sibcall (tree decl, tree exp ATTRIBUTE_UNUSED)
8091 /* Sibcalls are ok for TARGET_ELF32 as along as the linker is used in
8092 single subspace mode and the call is not indirect. As far as I know,
8093 there is no operating system support for the multiple subspace mode.
8094 It might be possible to support indirect calls if we didn't use
8095 $$dyncall (see the indirect sequence generated in output_call). */
8096 if (TARGET_ELF32)
8097 return (decl != NULL_TREE);
8099 /* Sibcalls are not ok because the arg pointer register is not a fixed
8100 register. This prevents the sibcall optimization from occurring. In
8101 addition, there are problems with stub placement using GNU ld. This
8102 is because a normal sibcall branch uses a 17-bit relocation while
8103 a regular call branch uses a 22-bit relocation. As a result, more
8104 care needs to be taken in the placement of long-branch stubs. */
8105 if (TARGET_64BIT)
8106 return false;
8108 return (decl
8109 && !TARGET_PORTABLE_RUNTIME
8110 && !TREE_PUBLIC (decl));
8113 /* Returns 1 if the 6 operands specified in OPERANDS are suitable for
8114 use in fmpyadd instructions. */
8116 fmpyaddoperands (rtx *operands)
8118 enum machine_mode mode = GET_MODE (operands[0]);
8120 /* Must be a floating point mode. */
8121 if (mode != SFmode && mode != DFmode)
8122 return 0;
8124 /* All modes must be the same. */
8125 if (! (mode == GET_MODE (operands[1])
8126 && mode == GET_MODE (operands[2])
8127 && mode == GET_MODE (operands[3])
8128 && mode == GET_MODE (operands[4])
8129 && mode == GET_MODE (operands[5])))
8130 return 0;
8132 /* All operands must be registers. */
8133 if (! (GET_CODE (operands[1]) == REG
8134 && GET_CODE (operands[2]) == REG
8135 && GET_CODE (operands[3]) == REG
8136 && GET_CODE (operands[4]) == REG
8137 && GET_CODE (operands[5]) == REG))
8138 return 0;
8140 /* Only 2 real operands to the addition. One of the input operands must
8141 be the same as the output operand. */
8142 if (! rtx_equal_p (operands[3], operands[4])
8143 && ! rtx_equal_p (operands[3], operands[5]))
8144 return 0;
8146 /* Inout operand of add cannot conflict with any operands from multiply. */
8147 if (rtx_equal_p (operands[3], operands[0])
8148 || rtx_equal_p (operands[3], operands[1])
8149 || rtx_equal_p (operands[3], operands[2]))
8150 return 0;
8152 /* multiply cannot feed into addition operands. */
8153 if (rtx_equal_p (operands[4], operands[0])
8154 || rtx_equal_p (operands[5], operands[0]))
8155 return 0;
8157 /* SFmode limits the registers to the upper 32 of the 32bit FP regs. */
8158 if (mode == SFmode
8159 && (REGNO_REG_CLASS (REGNO (operands[0])) != FPUPPER_REGS
8160 || REGNO_REG_CLASS (REGNO (operands[1])) != FPUPPER_REGS
8161 || REGNO_REG_CLASS (REGNO (operands[2])) != FPUPPER_REGS
8162 || REGNO_REG_CLASS (REGNO (operands[3])) != FPUPPER_REGS
8163 || REGNO_REG_CLASS (REGNO (operands[4])) != FPUPPER_REGS
8164 || REGNO_REG_CLASS (REGNO (operands[5])) != FPUPPER_REGS))
8165 return 0;
8167 /* Passed. Operands are suitable for fmpyadd. */
8168 return 1;
8171 #if !defined(USE_COLLECT2)
8172 static void
8173 pa_asm_out_constructor (rtx symbol, int priority)
8175 if (!function_label_operand (symbol, VOIDmode))
8176 hppa_encode_label (symbol);
8178 #ifdef CTORS_SECTION_ASM_OP
8179 default_ctor_section_asm_out_constructor (symbol, priority);
8180 #else
8181 # ifdef TARGET_ASM_NAMED_SECTION
8182 default_named_section_asm_out_constructor (symbol, priority);
8183 # else
8184 default_stabs_asm_out_constructor (symbol, priority);
8185 # endif
8186 #endif
8189 static void
8190 pa_asm_out_destructor (rtx symbol, int priority)
8192 if (!function_label_operand (symbol, VOIDmode))
8193 hppa_encode_label (symbol);
8195 #ifdef DTORS_SECTION_ASM_OP
8196 default_dtor_section_asm_out_destructor (symbol, priority);
8197 #else
8198 # ifdef TARGET_ASM_NAMED_SECTION
8199 default_named_section_asm_out_destructor (symbol, priority);
8200 # else
8201 default_stabs_asm_out_destructor (symbol, priority);
8202 # endif
8203 #endif
8205 #endif
8207 /* This function places uninitialized global data in the bss section.
8208 The ASM_OUTPUT_ALIGNED_BSS macro needs to be defined to call this
8209 function on the SOM port to prevent uninitialized global data from
8210 being placed in the data section. */
8212 void
8213 pa_asm_output_aligned_bss (FILE *stream,
8214 const char *name,
8215 unsigned HOST_WIDE_INT size,
8216 unsigned int align)
8218 bss_section ();
8219 fprintf (stream, "\t.align %u\n", align / BITS_PER_UNIT);
8221 #ifdef ASM_OUTPUT_TYPE_DIRECTIVE
8222 ASM_OUTPUT_TYPE_DIRECTIVE (stream, name, "object");
8223 #endif
8225 #ifdef ASM_OUTPUT_SIZE_DIRECTIVE
8226 ASM_OUTPUT_SIZE_DIRECTIVE (stream, name, size);
8227 #endif
8229 fprintf (stream, "\t.align %u\n", align / BITS_PER_UNIT);
8230 ASM_OUTPUT_LABEL (stream, name);
8231 fprintf (stream, "\t.block "HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
8234 /* Both the HP and GNU assemblers under HP-UX provide a .comm directive
8235 that doesn't allow the alignment of global common storage to be directly
8236 specified. The SOM linker aligns common storage based on the rounded
8237 value of the NUM_BYTES parameter in the .comm directive. It's not
8238 possible to use the .align directive as it doesn't affect the alignment
8239 of the label associated with a .comm directive. */
8241 void
8242 pa_asm_output_aligned_common (FILE *stream,
8243 const char *name,
8244 unsigned HOST_WIDE_INT size,
8245 unsigned int align)
8247 bss_section ();
8249 assemble_name (stream, name);
8250 fprintf (stream, "\t.comm "HOST_WIDE_INT_PRINT_UNSIGNED"\n",
8251 MAX (size, align / BITS_PER_UNIT));
8254 /* We can't use .comm for local common storage as the SOM linker effectively
8255 treats the symbol as universal and uses the same storage for local symbols
8256 with the same name in different object files. The .block directive
8257 reserves an uninitialized block of storage. However, it's not common
8258 storage. Fortunately, GCC never requests common storage with the same
8259 name in any given translation unit. */
8261 void
8262 pa_asm_output_aligned_local (FILE *stream,
8263 const char *name,
8264 unsigned HOST_WIDE_INT size,
8265 unsigned int align)
8267 bss_section ();
8268 fprintf (stream, "\t.align %u\n", align / BITS_PER_UNIT);
8270 #ifdef LOCAL_ASM_OP
8271 fprintf (stream, "%s", LOCAL_ASM_OP);
8272 assemble_name (stream, name);
8273 fprintf (stream, "\n");
8274 #endif
8276 ASM_OUTPUT_LABEL (stream, name);
8277 fprintf (stream, "\t.block "HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
8280 /* Returns 1 if the 6 operands specified in OPERANDS are suitable for
8281 use in fmpysub instructions. */
8283 fmpysuboperands (rtx *operands)
8285 enum machine_mode mode = GET_MODE (operands[0]);
8287 /* Must be a floating point mode. */
8288 if (mode != SFmode && mode != DFmode)
8289 return 0;
8291 /* All modes must be the same. */
8292 if (! (mode == GET_MODE (operands[1])
8293 && mode == GET_MODE (operands[2])
8294 && mode == GET_MODE (operands[3])
8295 && mode == GET_MODE (operands[4])
8296 && mode == GET_MODE (operands[5])))
8297 return 0;
8299 /* All operands must be registers. */
8300 if (! (GET_CODE (operands[1]) == REG
8301 && GET_CODE (operands[2]) == REG
8302 && GET_CODE (operands[3]) == REG
8303 && GET_CODE (operands[4]) == REG
8304 && GET_CODE (operands[5]) == REG))
8305 return 0;
8307 /* Only 2 real operands to the subtraction. Subtraction is not a commutative
8308 operation, so operands[4] must be the same as operand[3]. */
8309 if (! rtx_equal_p (operands[3], operands[4]))
8310 return 0;
8312 /* multiply cannot feed into subtraction. */
8313 if (rtx_equal_p (operands[5], operands[0]))
8314 return 0;
8316 /* Inout operand of sub cannot conflict with any operands from multiply. */
8317 if (rtx_equal_p (operands[3], operands[0])
8318 || rtx_equal_p (operands[3], operands[1])
8319 || rtx_equal_p (operands[3], operands[2]))
8320 return 0;
8322 /* SFmode limits the registers to the upper 32 of the 32bit FP regs. */
8323 if (mode == SFmode
8324 && (REGNO_REG_CLASS (REGNO (operands[0])) != FPUPPER_REGS
8325 || REGNO_REG_CLASS (REGNO (operands[1])) != FPUPPER_REGS
8326 || REGNO_REG_CLASS (REGNO (operands[2])) != FPUPPER_REGS
8327 || REGNO_REG_CLASS (REGNO (operands[3])) != FPUPPER_REGS
8328 || REGNO_REG_CLASS (REGNO (operands[4])) != FPUPPER_REGS
8329 || REGNO_REG_CLASS (REGNO (operands[5])) != FPUPPER_REGS))
8330 return 0;
8332 /* Passed. Operands are suitable for fmpysub. */
8333 return 1;
8337 plus_xor_ior_operator (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
8339 return (GET_CODE (op) == PLUS || GET_CODE (op) == XOR
8340 || GET_CODE (op) == IOR);
8343 /* Return 1 if the given constant is 2, 4, or 8. These are the valid
8344 constants for shadd instructions. */
8345 static int
8346 shadd_constant_p (int val)
8348 if (val == 2 || val == 4 || val == 8)
8349 return 1;
8350 else
8351 return 0;
8354 /* Return 1 if OP is a CONST_INT with the value 2, 4, or 8. These are
8355 the valid constant for shadd instructions. */
8357 shadd_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
8359 return (GET_CODE (op) == CONST_INT && shadd_constant_p (INTVAL (op)));
8362 /* Return 1 if OP is valid as a base or index register in a
8363 REG+REG address. */
8366 borx_reg_operand (rtx op, enum machine_mode mode)
8368 if (GET_CODE (op) != REG)
8369 return 0;
8371 /* We must reject virtual registers as the only expressions that
8372 can be instantiated are REG and REG+CONST. */
8373 if (op == virtual_incoming_args_rtx
8374 || op == virtual_stack_vars_rtx
8375 || op == virtual_stack_dynamic_rtx
8376 || op == virtual_outgoing_args_rtx
8377 || op == virtual_cfa_rtx)
8378 return 0;
8380 /* While it's always safe to index off the frame pointer, it's not
8381 profitable to do so when the frame pointer is being eliminated. */
8382 if (!reload_completed
8383 && flag_omit_frame_pointer
8384 && !current_function_calls_alloca
8385 && op == frame_pointer_rtx)
8386 return 0;
8388 return register_operand (op, mode);
8391 /* Return 1 if this operand is anything other than a hard register. */
8394 non_hard_reg_operand (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
8396 return ! (GET_CODE (op) == REG && REGNO (op) < FIRST_PSEUDO_REGISTER);
8399 /* Return 1 if INSN branches forward. Should be using insn_addresses
8400 to avoid walking through all the insns... */
8401 static int
8402 forward_branch_p (rtx insn)
8404 rtx label = JUMP_LABEL (insn);
8406 while (insn)
8408 if (insn == label)
8409 break;
8410 else
8411 insn = NEXT_INSN (insn);
8414 return (insn == label);
8417 /* Return 1 if OP is an equality comparison, else return 0. */
8419 eq_neq_comparison_operator (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
8421 return (GET_CODE (op) == EQ || GET_CODE (op) == NE);
8424 /* Return 1 if OP is an operator suitable for use in a movb instruction. */
8426 movb_comparison_operator (rtx op, enum machine_mode mode ATTRIBUTE_UNUSED)
8428 return (GET_CODE (op) == EQ || GET_CODE (op) == NE
8429 || GET_CODE (op) == LT || GET_CODE (op) == GE);
8432 /* Return 1 if INSN is in the delay slot of a call instruction. */
8434 jump_in_call_delay (rtx insn)
8437 if (GET_CODE (insn) != JUMP_INSN)
8438 return 0;
8440 if (PREV_INSN (insn)
8441 && PREV_INSN (PREV_INSN (insn))
8442 && GET_CODE (next_real_insn (PREV_INSN (PREV_INSN (insn)))) == INSN)
8444 rtx test_insn = next_real_insn (PREV_INSN (PREV_INSN (insn)));
8446 return (GET_CODE (PATTERN (test_insn)) == SEQUENCE
8447 && XVECEXP (PATTERN (test_insn), 0, 1) == insn);
8450 else
8451 return 0;
8454 /* Output an unconditional move and branch insn. */
8456 const char *
8457 output_parallel_movb (rtx *operands, int length)
8459 /* These are the cases in which we win. */
8460 if (length == 4)
8461 return "mov%I1b,tr %1,%0,%2";
8463 /* None of these cases wins, but they don't lose either. */
8464 if (dbr_sequence_length () == 0)
8466 /* Nothing in the delay slot, fake it by putting the combined
8467 insn (the copy or add) in the delay slot of a bl. */
8468 if (GET_CODE (operands[1]) == CONST_INT)
8469 return "b %2\n\tldi %1,%0";
8470 else
8471 return "b %2\n\tcopy %1,%0";
8473 else
8475 /* Something in the delay slot, but we've got a long branch. */
8476 if (GET_CODE (operands[1]) == CONST_INT)
8477 return "ldi %1,%0\n\tb %2";
8478 else
8479 return "copy %1,%0\n\tb %2";
8483 /* Output an unconditional add and branch insn. */
8485 const char *
8486 output_parallel_addb (rtx *operands, int length)
8488 /* To make life easy we want operand0 to be the shared input/output
8489 operand and operand1 to be the readonly operand. */
8490 if (operands[0] == operands[1])
8491 operands[1] = operands[2];
8493 /* These are the cases in which we win. */
8494 if (length == 4)
8495 return "add%I1b,tr %1,%0,%3";
8497 /* None of these cases win, but they don't lose either. */
8498 if (dbr_sequence_length () == 0)
8500 /* Nothing in the delay slot, fake it by putting the combined
8501 insn (the copy or add) in the delay slot of a bl. */
8502 return "b %3\n\tadd%I1 %1,%0,%0";
8504 else
8506 /* Something in the delay slot, but we've got a long branch. */
8507 return "add%I1 %1,%0,%0\n\tb %3";
8511 /* Return nonzero if INSN (a jump insn) immediately follows a call
8512 to a named function. This is used to avoid filling the delay slot
8513 of the jump since it can usually be eliminated by modifying RP in
8514 the delay slot of the call. */
8517 following_call (rtx insn)
8519 if (! TARGET_JUMP_IN_DELAY)
8520 return 0;
8522 /* Find the previous real insn, skipping NOTEs. */
8523 insn = PREV_INSN (insn);
8524 while (insn && GET_CODE (insn) == NOTE)
8525 insn = PREV_INSN (insn);
8527 /* Check for CALL_INSNs and millicode calls. */
8528 if (insn
8529 && ((GET_CODE (insn) == CALL_INSN
8530 && get_attr_type (insn) != TYPE_DYNCALL)
8531 || (GET_CODE (insn) == INSN
8532 && GET_CODE (PATTERN (insn)) != SEQUENCE
8533 && GET_CODE (PATTERN (insn)) != USE
8534 && GET_CODE (PATTERN (insn)) != CLOBBER
8535 && get_attr_type (insn) == TYPE_MILLI)))
8536 return 1;
8538 return 0;
8541 /* We use this hook to perform a PA specific optimization which is difficult
8542 to do in earlier passes.
8544 We want the delay slots of branches within jump tables to be filled.
8545 None of the compiler passes at the moment even has the notion that a
8546 PA jump table doesn't contain addresses, but instead contains actual
8547 instructions!
8549 Because we actually jump into the table, the addresses of each entry
8550 must stay constant in relation to the beginning of the table (which
8551 itself must stay constant relative to the instruction to jump into
8552 it). I don't believe we can guarantee earlier passes of the compiler
8553 will adhere to those rules.
8555 So, late in the compilation process we find all the jump tables, and
8556 expand them into real code -- e.g. each entry in the jump table vector
8557 will get an appropriate label followed by a jump to the final target.
8559 Reorg and the final jump pass can then optimize these branches and
8560 fill their delay slots. We end up with smaller, more efficient code.
8562 The jump instructions within the table are special; we must be able
8563 to identify them during assembly output (if the jumps don't get filled
8564 we need to emit a nop rather than nullifying the delay slot)). We
8565 identify jumps in switch tables by using insns with the attribute
8566 type TYPE_BTABLE_BRANCH.
8568 We also surround the jump table itself with BEGIN_BRTAB and END_BRTAB
8569 insns. This serves two purposes, first it prevents jump.c from
8570 noticing that the last N entries in the table jump to the instruction
8571 immediately after the table and deleting the jumps. Second, those
8572 insns mark where we should emit .begin_brtab and .end_brtab directives
8573 when using GAS (allows for better link time optimizations). */
8575 static void
8576 pa_reorg (void)
8578 rtx insn;
8580 remove_useless_addtr_insns (1);
8582 if (pa_cpu < PROCESSOR_8000)
8583 pa_combine_instructions ();
8586 /* This is fairly cheap, so always run it if optimizing. */
8587 if (optimize > 0 && !TARGET_BIG_SWITCH)
8589 /* Find and explode all ADDR_VEC or ADDR_DIFF_VEC insns. */
8590 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
8592 rtx pattern, tmp, location, label;
8593 unsigned int length, i;
8595 /* Find an ADDR_VEC or ADDR_DIFF_VEC insn to explode. */
8596 if (GET_CODE (insn) != JUMP_INSN
8597 || (GET_CODE (PATTERN (insn)) != ADDR_VEC
8598 && GET_CODE (PATTERN (insn)) != ADDR_DIFF_VEC))
8599 continue;
8601 /* Emit marker for the beginning of the branch table. */
8602 emit_insn_before (gen_begin_brtab (), insn);
8604 pattern = PATTERN (insn);
8605 location = PREV_INSN (insn);
8606 length = XVECLEN (pattern, GET_CODE (pattern) == ADDR_DIFF_VEC);
8608 for (i = 0; i < length; i++)
8610 /* Emit a label before each jump to keep jump.c from
8611 removing this code. */
8612 tmp = gen_label_rtx ();
8613 LABEL_NUSES (tmp) = 1;
8614 emit_label_after (tmp, location);
8615 location = NEXT_INSN (location);
8617 if (GET_CODE (pattern) == ADDR_VEC)
8618 label = XEXP (XVECEXP (pattern, 0, i), 0);
8619 else
8620 label = XEXP (XVECEXP (pattern, 1, i), 0);
8622 tmp = gen_short_jump (label);
8624 /* Emit the jump itself. */
8625 tmp = emit_jump_insn_after (tmp, location);
8626 JUMP_LABEL (tmp) = label;
8627 LABEL_NUSES (label)++;
8628 location = NEXT_INSN (location);
8630 /* Emit a BARRIER after the jump. */
8631 emit_barrier_after (location);
8632 location = NEXT_INSN (location);
8635 /* Emit marker for the end of the branch table. */
8636 emit_insn_before (gen_end_brtab (), location);
8637 location = NEXT_INSN (location);
8638 emit_barrier_after (location);
8640 /* Delete the ADDR_VEC or ADDR_DIFF_VEC. */
8641 delete_insn (insn);
8644 else
8646 /* Still need brtab marker insns. FIXME: the presence of these
8647 markers disables output of the branch table to readonly memory,
8648 and any alignment directives that might be needed. Possibly,
8649 the begin_brtab insn should be output before the label for the
8650 table. This doesn't matter at the moment since the tables are
8651 always output in the text section. */
8652 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
8654 /* Find an ADDR_VEC insn. */
8655 if (GET_CODE (insn) != JUMP_INSN
8656 || (GET_CODE (PATTERN (insn)) != ADDR_VEC
8657 && GET_CODE (PATTERN (insn)) != ADDR_DIFF_VEC))
8658 continue;
8660 /* Now generate markers for the beginning and end of the
8661 branch table. */
8662 emit_insn_before (gen_begin_brtab (), insn);
8663 emit_insn_after (gen_end_brtab (), insn);
8668 /* The PA has a number of odd instructions which can perform multiple
8669 tasks at once. On first generation PA machines (PA1.0 and PA1.1)
8670 it may be profitable to combine two instructions into one instruction
8671 with two outputs. It's not profitable PA2.0 machines because the
8672 two outputs would take two slots in the reorder buffers.
8674 This routine finds instructions which can be combined and combines
8675 them. We only support some of the potential combinations, and we
8676 only try common ways to find suitable instructions.
8678 * addb can add two registers or a register and a small integer
8679 and jump to a nearby (+-8k) location. Normally the jump to the
8680 nearby location is conditional on the result of the add, but by
8681 using the "true" condition we can make the jump unconditional.
8682 Thus addb can perform two independent operations in one insn.
8684 * movb is similar to addb in that it can perform a reg->reg
8685 or small immediate->reg copy and jump to a nearby (+-8k location).
8687 * fmpyadd and fmpysub can perform a FP multiply and either an
8688 FP add or FP sub if the operands of the multiply and add/sub are
8689 independent (there are other minor restrictions). Note both
8690 the fmpy and fadd/fsub can in theory move to better spots according
8691 to data dependencies, but for now we require the fmpy stay at a
8692 fixed location.
8694 * Many of the memory operations can perform pre & post updates
8695 of index registers. GCC's pre/post increment/decrement addressing
8696 is far too simple to take advantage of all the possibilities. This
8697 pass may not be suitable since those insns may not be independent.
8699 * comclr can compare two ints or an int and a register, nullify
8700 the following instruction and zero some other register. This
8701 is more difficult to use as it's harder to find an insn which
8702 will generate a comclr than finding something like an unconditional
8703 branch. (conditional moves & long branches create comclr insns).
8705 * Most arithmetic operations can conditionally skip the next
8706 instruction. They can be viewed as "perform this operation
8707 and conditionally jump to this nearby location" (where nearby
8708 is an insns away). These are difficult to use due to the
8709 branch length restrictions. */
8711 static void
8712 pa_combine_instructions (void)
8714 rtx anchor, new;
8716 /* This can get expensive since the basic algorithm is on the
8717 order of O(n^2) (or worse). Only do it for -O2 or higher
8718 levels of optimization. */
8719 if (optimize < 2)
8720 return;
8722 /* Walk down the list of insns looking for "anchor" insns which
8723 may be combined with "floating" insns. As the name implies,
8724 "anchor" instructions don't move, while "floating" insns may
8725 move around. */
8726 new = gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, NULL_RTX, NULL_RTX));
8727 new = make_insn_raw (new);
8729 for (anchor = get_insns (); anchor; anchor = NEXT_INSN (anchor))
8731 enum attr_pa_combine_type anchor_attr;
8732 enum attr_pa_combine_type floater_attr;
8734 /* We only care about INSNs, JUMP_INSNs, and CALL_INSNs.
8735 Also ignore any special USE insns. */
8736 if ((GET_CODE (anchor) != INSN
8737 && GET_CODE (anchor) != JUMP_INSN
8738 && GET_CODE (anchor) != CALL_INSN)
8739 || GET_CODE (PATTERN (anchor)) == USE
8740 || GET_CODE (PATTERN (anchor)) == CLOBBER
8741 || GET_CODE (PATTERN (anchor)) == ADDR_VEC
8742 || GET_CODE (PATTERN (anchor)) == ADDR_DIFF_VEC)
8743 continue;
8745 anchor_attr = get_attr_pa_combine_type (anchor);
8746 /* See if anchor is an insn suitable for combination. */
8747 if (anchor_attr == PA_COMBINE_TYPE_FMPY
8748 || anchor_attr == PA_COMBINE_TYPE_FADDSUB
8749 || (anchor_attr == PA_COMBINE_TYPE_UNCOND_BRANCH
8750 && ! forward_branch_p (anchor)))
8752 rtx floater;
8754 for (floater = PREV_INSN (anchor);
8755 floater;
8756 floater = PREV_INSN (floater))
8758 if (GET_CODE (floater) == NOTE
8759 || (GET_CODE (floater) == INSN
8760 && (GET_CODE (PATTERN (floater)) == USE
8761 || GET_CODE (PATTERN (floater)) == CLOBBER)))
8762 continue;
8764 /* Anything except a regular INSN will stop our search. */
8765 if (GET_CODE (floater) != INSN
8766 || GET_CODE (PATTERN (floater)) == ADDR_VEC
8767 || GET_CODE (PATTERN (floater)) == ADDR_DIFF_VEC)
8769 floater = NULL_RTX;
8770 break;
8773 /* See if FLOATER is suitable for combination with the
8774 anchor. */
8775 floater_attr = get_attr_pa_combine_type (floater);
8776 if ((anchor_attr == PA_COMBINE_TYPE_FMPY
8777 && floater_attr == PA_COMBINE_TYPE_FADDSUB)
8778 || (anchor_attr == PA_COMBINE_TYPE_FADDSUB
8779 && floater_attr == PA_COMBINE_TYPE_FMPY))
8781 /* If ANCHOR and FLOATER can be combined, then we're
8782 done with this pass. */
8783 if (pa_can_combine_p (new, anchor, floater, 0,
8784 SET_DEST (PATTERN (floater)),
8785 XEXP (SET_SRC (PATTERN (floater)), 0),
8786 XEXP (SET_SRC (PATTERN (floater)), 1)))
8787 break;
8790 else if (anchor_attr == PA_COMBINE_TYPE_UNCOND_BRANCH
8791 && floater_attr == PA_COMBINE_TYPE_ADDMOVE)
8793 if (GET_CODE (SET_SRC (PATTERN (floater))) == PLUS)
8795 if (pa_can_combine_p (new, anchor, floater, 0,
8796 SET_DEST (PATTERN (floater)),
8797 XEXP (SET_SRC (PATTERN (floater)), 0),
8798 XEXP (SET_SRC (PATTERN (floater)), 1)))
8799 break;
8801 else
8803 if (pa_can_combine_p (new, anchor, floater, 0,
8804 SET_DEST (PATTERN (floater)),
8805 SET_SRC (PATTERN (floater)),
8806 SET_SRC (PATTERN (floater))))
8807 break;
8812 /* If we didn't find anything on the backwards scan try forwards. */
8813 if (!floater
8814 && (anchor_attr == PA_COMBINE_TYPE_FMPY
8815 || anchor_attr == PA_COMBINE_TYPE_FADDSUB))
8817 for (floater = anchor; floater; floater = NEXT_INSN (floater))
8819 if (GET_CODE (floater) == NOTE
8820 || (GET_CODE (floater) == INSN
8821 && (GET_CODE (PATTERN (floater)) == USE
8822 || GET_CODE (PATTERN (floater)) == CLOBBER)))
8824 continue;
8826 /* Anything except a regular INSN will stop our search. */
8827 if (GET_CODE (floater) != INSN
8828 || GET_CODE (PATTERN (floater)) == ADDR_VEC
8829 || GET_CODE (PATTERN (floater)) == ADDR_DIFF_VEC)
8831 floater = NULL_RTX;
8832 break;
8835 /* See if FLOATER is suitable for combination with the
8836 anchor. */
8837 floater_attr = get_attr_pa_combine_type (floater);
8838 if ((anchor_attr == PA_COMBINE_TYPE_FMPY
8839 && floater_attr == PA_COMBINE_TYPE_FADDSUB)
8840 || (anchor_attr == PA_COMBINE_TYPE_FADDSUB
8841 && floater_attr == PA_COMBINE_TYPE_FMPY))
8843 /* If ANCHOR and FLOATER can be combined, then we're
8844 done with this pass. */
8845 if (pa_can_combine_p (new, anchor, floater, 1,
8846 SET_DEST (PATTERN (floater)),
8847 XEXP (SET_SRC (PATTERN (floater)),
8849 XEXP (SET_SRC (PATTERN (floater)),
8850 1)))
8851 break;
8856 /* FLOATER will be nonzero if we found a suitable floating
8857 insn for combination with ANCHOR. */
8858 if (floater
8859 && (anchor_attr == PA_COMBINE_TYPE_FADDSUB
8860 || anchor_attr == PA_COMBINE_TYPE_FMPY))
8862 /* Emit the new instruction and delete the old anchor. */
8863 emit_insn_before (gen_rtx_PARALLEL
8864 (VOIDmode,
8865 gen_rtvec (2, PATTERN (anchor),
8866 PATTERN (floater))),
8867 anchor);
8869 PUT_CODE (anchor, NOTE);
8870 NOTE_LINE_NUMBER (anchor) = NOTE_INSN_DELETED;
8871 NOTE_SOURCE_FILE (anchor) = 0;
8873 /* Emit a special USE insn for FLOATER, then delete
8874 the floating insn. */
8875 emit_insn_before (gen_rtx_USE (VOIDmode, floater), floater);
8876 delete_insn (floater);
8878 continue;
8880 else if (floater
8881 && anchor_attr == PA_COMBINE_TYPE_UNCOND_BRANCH)
8883 rtx temp;
8884 /* Emit the new_jump instruction and delete the old anchor. */
8885 temp
8886 = emit_jump_insn_before (gen_rtx_PARALLEL
8887 (VOIDmode,
8888 gen_rtvec (2, PATTERN (anchor),
8889 PATTERN (floater))),
8890 anchor);
8892 JUMP_LABEL (temp) = JUMP_LABEL (anchor);
8893 PUT_CODE (anchor, NOTE);
8894 NOTE_LINE_NUMBER (anchor) = NOTE_INSN_DELETED;
8895 NOTE_SOURCE_FILE (anchor) = 0;
8897 /* Emit a special USE insn for FLOATER, then delete
8898 the floating insn. */
8899 emit_insn_before (gen_rtx_USE (VOIDmode, floater), floater);
8900 delete_insn (floater);
8901 continue;
8907 static int
8908 pa_can_combine_p (rtx new, rtx anchor, rtx floater, int reversed, rtx dest,
8909 rtx src1, rtx src2)
8911 int insn_code_number;
8912 rtx start, end;
8914 /* Create a PARALLEL with the patterns of ANCHOR and
8915 FLOATER, try to recognize it, then test constraints
8916 for the resulting pattern.
8918 If the pattern doesn't match or the constraints
8919 aren't met keep searching for a suitable floater
8920 insn. */
8921 XVECEXP (PATTERN (new), 0, 0) = PATTERN (anchor);
8922 XVECEXP (PATTERN (new), 0, 1) = PATTERN (floater);
8923 INSN_CODE (new) = -1;
8924 insn_code_number = recog_memoized (new);
8925 if (insn_code_number < 0
8926 || (extract_insn (new), ! constrain_operands (1)))
8927 return 0;
8929 if (reversed)
8931 start = anchor;
8932 end = floater;
8934 else
8936 start = floater;
8937 end = anchor;
8940 /* There's up to three operands to consider. One
8941 output and two inputs.
8943 The output must not be used between FLOATER & ANCHOR
8944 exclusive. The inputs must not be set between
8945 FLOATER and ANCHOR exclusive. */
8947 if (reg_used_between_p (dest, start, end))
8948 return 0;
8950 if (reg_set_between_p (src1, start, end))
8951 return 0;
8953 if (reg_set_between_p (src2, start, end))
8954 return 0;
8956 /* If we get here, then everything is good. */
8957 return 1;
8960 /* Return nonzero if references for INSN are delayed.
8962 Millicode insns are actually function calls with some special
8963 constraints on arguments and register usage.
8965 Millicode calls always expect their arguments in the integer argument
8966 registers, and always return their result in %r29 (ret1). They
8967 are expected to clobber their arguments, %r1, %r29, and the return
8968 pointer which is %r31 on 32-bit and %r2 on 64-bit, and nothing else.
8970 This function tells reorg that the references to arguments and
8971 millicode calls do not appear to happen until after the millicode call.
8972 This allows reorg to put insns which set the argument registers into the
8973 delay slot of the millicode call -- thus they act more like traditional
8974 CALL_INSNs.
8976 Note we cannot consider side effects of the insn to be delayed because
8977 the branch and link insn will clobber the return pointer. If we happened
8978 to use the return pointer in the delay slot of the call, then we lose.
8980 get_attr_type will try to recognize the given insn, so make sure to
8981 filter out things it will not accept -- SEQUENCE, USE and CLOBBER insns
8982 in particular. */
8984 insn_refs_are_delayed (rtx insn)
8986 return ((GET_CODE (insn) == INSN
8987 && GET_CODE (PATTERN (insn)) != SEQUENCE
8988 && GET_CODE (PATTERN (insn)) != USE
8989 && GET_CODE (PATTERN (insn)) != CLOBBER
8990 && get_attr_type (insn) == TYPE_MILLI));
8993 /* On the HP-PA the value is found in register(s) 28(-29), unless
8994 the mode is SF or DF. Then the value is returned in fr4 (32).
8996 This must perform the same promotions as PROMOTE_MODE, else
8997 TARGET_PROMOTE_FUNCTION_RETURN will not work correctly.
8999 Small structures must be returned in a PARALLEL on PA64 in order
9000 to match the HP Compiler ABI. */
9003 function_value (tree valtype, tree func ATTRIBUTE_UNUSED)
9005 enum machine_mode valmode;
9007 /* Aggregates with a size less than or equal to 128 bits are returned
9008 in GR 28(-29). They are left justified. The pad bits are undefined.
9009 Larger aggregates are returned in memory. */
9010 if (TARGET_64BIT && AGGREGATE_TYPE_P (valtype))
9012 rtx loc[2];
9013 int i, offset = 0;
9014 int ub = int_size_in_bytes (valtype) <= UNITS_PER_WORD ? 1 : 2;
9016 for (i = 0; i < ub; i++)
9018 loc[i] = gen_rtx_EXPR_LIST (VOIDmode,
9019 gen_rtx_REG (DImode, 28 + i),
9020 GEN_INT (offset));
9021 offset += 8;
9024 return gen_rtx_PARALLEL (BLKmode, gen_rtvec_v (ub, loc));
9027 if ((INTEGRAL_TYPE_P (valtype)
9028 && TYPE_PRECISION (valtype) < BITS_PER_WORD)
9029 || POINTER_TYPE_P (valtype))
9030 valmode = word_mode;
9031 else
9032 valmode = TYPE_MODE (valtype);
9034 if (TREE_CODE (valtype) == REAL_TYPE
9035 && TYPE_MODE (valtype) != TFmode
9036 && !TARGET_SOFT_FLOAT)
9037 return gen_rtx_REG (valmode, 32);
9039 return gen_rtx_REG (valmode, 28);
9042 /* Return the location of a parameter that is passed in a register or NULL
9043 if the parameter has any component that is passed in memory.
9045 This is new code and will be pushed to into the net sources after
9046 further testing.
9048 ??? We might want to restructure this so that it looks more like other
9049 ports. */
9051 function_arg (CUMULATIVE_ARGS *cum, enum machine_mode mode, tree type,
9052 int named ATTRIBUTE_UNUSED)
9054 int max_arg_words = (TARGET_64BIT ? 8 : 4);
9055 int alignment = 0;
9056 int arg_size;
9057 int fpr_reg_base;
9058 int gpr_reg_base;
9059 rtx retval;
9061 if (mode == VOIDmode)
9062 return NULL_RTX;
9064 arg_size = FUNCTION_ARG_SIZE (mode, type);
9066 /* If this arg would be passed partially or totally on the stack, then
9067 this routine should return zero. FUNCTION_ARG_PARTIAL_NREGS will
9068 handle arguments which are split between regs and stack slots if
9069 the ABI mandates split arguments. */
9070 if (! TARGET_64BIT)
9072 /* The 32-bit ABI does not split arguments. */
9073 if (cum->words + arg_size > max_arg_words)
9074 return NULL_RTX;
9076 else
9078 if (arg_size > 1)
9079 alignment = cum->words & 1;
9080 if (cum->words + alignment >= max_arg_words)
9081 return NULL_RTX;
9084 /* The 32bit ABIs and the 64bit ABIs are rather different,
9085 particularly in their handling of FP registers. We might
9086 be able to cleverly share code between them, but I'm not
9087 going to bother in the hope that splitting them up results
9088 in code that is more easily understood. */
9090 if (TARGET_64BIT)
9092 /* Advance the base registers to their current locations.
9094 Remember, gprs grow towards smaller register numbers while
9095 fprs grow to higher register numbers. Also remember that
9096 although FP regs are 32-bit addressable, we pretend that
9097 the registers are 64-bits wide. */
9098 gpr_reg_base = 26 - cum->words;
9099 fpr_reg_base = 32 + cum->words;
9101 /* Arguments wider than one word and small aggregates need special
9102 treatment. */
9103 if (arg_size > 1
9104 || mode == BLKmode
9105 || (type && AGGREGATE_TYPE_P (type)))
9107 /* Double-extended precision (80-bit), quad-precision (128-bit)
9108 and aggregates including complex numbers are aligned on
9109 128-bit boundaries. The first eight 64-bit argument slots
9110 are associated one-to-one, with general registers r26
9111 through r19, and also with floating-point registers fr4
9112 through fr11. Arguments larger than one word are always
9113 passed in general registers.
9115 Using a PARALLEL with a word mode register results in left
9116 justified data on a big-endian target. */
9118 rtx loc[8];
9119 int i, offset = 0, ub = arg_size;
9121 /* Align the base register. */
9122 gpr_reg_base -= alignment;
9124 ub = MIN (ub, max_arg_words - cum->words - alignment);
9125 for (i = 0; i < ub; i++)
9127 loc[i] = gen_rtx_EXPR_LIST (VOIDmode,
9128 gen_rtx_REG (DImode, gpr_reg_base),
9129 GEN_INT (offset));
9130 gpr_reg_base -= 1;
9131 offset += 8;
9134 return gen_rtx_PARALLEL (mode, gen_rtvec_v (ub, loc));
9137 else
9139 /* If the argument is larger than a word, then we know precisely
9140 which registers we must use. */
9141 if (arg_size > 1)
9143 if (cum->words)
9145 gpr_reg_base = 23;
9146 fpr_reg_base = 38;
9148 else
9150 gpr_reg_base = 25;
9151 fpr_reg_base = 34;
9154 /* Structures 5 to 8 bytes in size are passed in the general
9155 registers in the same manner as other non floating-point
9156 objects. The data is right-justified and zero-extended
9157 to 64 bits. This is opposite to the normal justification
9158 used on big endian targets and requires special treatment.
9159 We now define BLOCK_REG_PADDING to pad these objects. */
9160 if (mode == BLKmode)
9162 rtx loc = gen_rtx_EXPR_LIST (VOIDmode,
9163 gen_rtx_REG (DImode, gpr_reg_base),
9164 const0_rtx);
9165 return gen_rtx_PARALLEL (mode, gen_rtvec (1, loc));
9168 else
9170 /* We have a single word (32 bits). A simple computation
9171 will get us the register #s we need. */
9172 gpr_reg_base = 26 - cum->words;
9173 fpr_reg_base = 32 + 2 * cum->words;
9177 /* Determine if the argument needs to be passed in both general and
9178 floating point registers. */
9179 if (((TARGET_PORTABLE_RUNTIME || TARGET_64BIT || TARGET_ELF32)
9180 /* If we are doing soft-float with portable runtime, then there
9181 is no need to worry about FP regs. */
9182 && !TARGET_SOFT_FLOAT
9183 /* The parameter must be some kind of float, else we can just
9184 pass it in integer registers. */
9185 && FLOAT_MODE_P (mode)
9186 /* The target function must not have a prototype. */
9187 && cum->nargs_prototype <= 0
9188 /* libcalls do not need to pass items in both FP and general
9189 registers. */
9190 && type != NULL_TREE
9191 /* All this hair applies to "outgoing" args only. This includes
9192 sibcall arguments setup with FUNCTION_INCOMING_ARG. */
9193 && !cum->incoming)
9194 /* Also pass outgoing floating arguments in both registers in indirect
9195 calls with the 32 bit ABI and the HP assembler since there is no
9196 way to the specify argument locations in static functions. */
9197 || (!TARGET_64BIT
9198 && !TARGET_GAS
9199 && !cum->incoming
9200 && cum->indirect
9201 && FLOAT_MODE_P (mode)))
9203 retval
9204 = gen_rtx_PARALLEL
9205 (mode,
9206 gen_rtvec (2,
9207 gen_rtx_EXPR_LIST (VOIDmode,
9208 gen_rtx_REG (mode, fpr_reg_base),
9209 const0_rtx),
9210 gen_rtx_EXPR_LIST (VOIDmode,
9211 gen_rtx_REG (mode, gpr_reg_base),
9212 const0_rtx)));
9214 else
9216 /* See if we should pass this parameter in a general register. */
9217 if (TARGET_SOFT_FLOAT
9218 /* Indirect calls in the normal 32bit ABI require all arguments
9219 to be passed in general registers. */
9220 || (!TARGET_PORTABLE_RUNTIME
9221 && !TARGET_64BIT
9222 && !TARGET_ELF32
9223 && cum->indirect)
9224 /* If the parameter is not a floating point parameter, then
9225 it belongs in GPRs. */
9226 || !FLOAT_MODE_P (mode))
9227 retval = gen_rtx_REG (mode, gpr_reg_base);
9228 else
9229 retval = gen_rtx_REG (mode, fpr_reg_base);
9231 return retval;
9235 /* If this arg would be passed totally in registers or totally on the stack,
9236 then this routine should return zero. It is currently called only for
9237 the 64-bit target. */
9239 function_arg_partial_nregs (CUMULATIVE_ARGS *cum, enum machine_mode mode,
9240 tree type, int named ATTRIBUTE_UNUSED)
9242 unsigned int max_arg_words = 8;
9243 unsigned int offset = 0;
9245 if (FUNCTION_ARG_SIZE (mode, type) > 1 && (cum->words & 1))
9246 offset = 1;
9248 if (cum->words + offset + FUNCTION_ARG_SIZE (mode, type) <= max_arg_words)
9249 /* Arg fits fully into registers. */
9250 return 0;
9251 else if (cum->words + offset >= max_arg_words)
9252 /* Arg fully on the stack. */
9253 return 0;
9254 else
9255 /* Arg is split. */
9256 return max_arg_words - cum->words - offset;
9260 /* Return 1 if this is a comparison operator. This allows the use of
9261 MATCH_OPERATOR to recognize all the branch insns. */
9264 cmpib_comparison_operator (rtx op, enum machine_mode mode)
9266 return ((mode == VOIDmode || GET_MODE (op) == mode)
9267 && (GET_CODE (op) == EQ
9268 || GET_CODE (op) == NE
9269 || GET_CODE (op) == GT
9270 || GET_CODE (op) == GTU
9271 || GET_CODE (op) == GE
9272 || GET_CODE (op) == LT
9273 || GET_CODE (op) == LE
9274 || GET_CODE (op) == LEU));
9277 /* Return a string to output before text in the current function.
9279 This function is only used with SOM. Because we don't support
9280 named subspaces, we can only create a new subspace or switch back
9281 to the default text subspace. */
9282 const char *
9283 som_text_section_asm_op (void)
9285 if (!TARGET_SOM)
9286 return "";
9288 if (TARGET_GAS)
9290 if (cfun && !cfun->machine->in_nsubspa)
9292 /* We only want to emit a .nsubspa directive once at the
9293 start of the function. */
9294 cfun->machine->in_nsubspa = 1;
9296 /* Create a new subspace for the text. This provides
9297 better stub placement and one-only functions. */
9298 if (cfun->decl
9299 && DECL_ONE_ONLY (cfun->decl)
9300 && !DECL_WEAK (cfun->decl))
9301 return
9302 "\t.SPACE $TEXT$\n\t.NSUBSPA $CODE$,QUAD=0,ALIGN=8,ACCESS=44,SORT=24,COMDAT";
9304 return "\t.SPACE $TEXT$\n\t.NSUBSPA $CODE$";
9306 else
9308 /* There isn't a current function or the body of the current
9309 function has been completed. So, we are changing to the
9310 text section to output debugging information. Do this in
9311 the default text section. We need to forget that we are
9312 in the text section so that the function text_section in
9313 varasm.c will call us the next time around. */
9314 forget_section ();
9318 return "\t.SPACE $TEXT$\n\t.SUBSPA $CODE$";
9321 /* On hpux10, the linker will give an error if we have a reference
9322 in the read-only data section to a symbol defined in a shared
9323 library. Therefore, expressions that might require a reloc can
9324 not be placed in the read-only data section. */
9326 static void
9327 pa_select_section (tree exp, int reloc,
9328 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
9330 if (TREE_CODE (exp) == VAR_DECL
9331 && TREE_READONLY (exp)
9332 && !TREE_THIS_VOLATILE (exp)
9333 && DECL_INITIAL (exp)
9334 && (DECL_INITIAL (exp) == error_mark_node
9335 || TREE_CONSTANT (DECL_INITIAL (exp)))
9336 && !reloc)
9338 if (TARGET_SOM
9339 && DECL_ONE_ONLY (exp)
9340 && !DECL_WEAK (exp))
9341 som_one_only_readonly_data_section ();
9342 else
9343 readonly_data_section ();
9345 else if (CONSTANT_CLASS_P (exp) && !reloc)
9346 readonly_data_section ();
9347 else if (TARGET_SOM
9348 && TREE_CODE (exp) == VAR_DECL
9349 && DECL_ONE_ONLY (exp)
9350 && !DECL_WEAK (exp)
9351 && DECL_INITIAL (exp))
9352 som_one_only_data_section ();
9353 else
9354 data_section ();
9357 static void
9358 pa_globalize_label (FILE *stream, const char *name)
9360 /* We only handle DATA objects here, functions are globalized in
9361 ASM_DECLARE_FUNCTION_NAME. */
9362 if (! FUNCTION_NAME_P (name))
9364 fputs ("\t.EXPORT ", stream);
9365 assemble_name (stream, name);
9366 fputs (",DATA\n", stream);
9370 /* Worker function for TARGET_STRUCT_VALUE_RTX. */
9372 static rtx
9373 pa_struct_value_rtx (tree fntype ATTRIBUTE_UNUSED,
9374 int incoming ATTRIBUTE_UNUSED)
9376 return gen_rtx_REG (Pmode, PA_STRUCT_VALUE_REGNUM);
9379 /* Worker function for TARGET_RETURN_IN_MEMORY. */
9381 bool
9382 pa_return_in_memory (tree type, tree fntype ATTRIBUTE_UNUSED)
9384 /* SOM ABI says that objects larger than 64 bits are returned in memory.
9385 PA64 ABI says that objects larger than 128 bits are returned in memory.
9386 Note, int_size_in_bytes can return -1 if the size of the object is
9387 variable or larger than the maximum value that can be expressed as
9388 a HOST_WIDE_INT. It can also return zero for an empty type. The
9389 simplest way to handle variable and empty types is to pass them in
9390 memory. This avoids problems in defining the boundaries of argument
9391 slots, allocating registers, etc. */
9392 return (int_size_in_bytes (type) > (TARGET_64BIT ? 16 : 8)
9393 || int_size_in_bytes (type) <= 0);
9396 #include "gt-pa.h"