]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config/pa/pa.c
2019-01-09 Sandra Loosemore <sandra@codesourcery.com>
[thirdparty/gcc.git] / gcc / config / pa / pa.c
CommitLineData
87ad11b0 1/* Subroutines for insn-output.c for HPPA.
fbd26352 2 Copyright (C) 1992-2019 Free Software Foundation, Inc.
87ad11b0 3 Contributed by Tim Moore (moore@cs.utah.edu), based on sparc.c
4
5c1d8983 5This file is part of GCC.
87ad11b0 6
5c1d8983 7GCC is free software; you can redistribute it and/or modify
87ad11b0 8it under the terms of the GNU General Public License as published by
038d1e19 9the Free Software Foundation; either version 3, or (at your option)
87ad11b0 10any later version.
11
5c1d8983 12GCC is distributed in the hope that it will be useful,
87ad11b0 13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
038d1e19 18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
87ad11b0 20
785790dc 21#define IN_TARGET_CODE 1
22
87ad11b0 23#include "config.h"
b1ca791d 24#include "system.h"
805e22b2 25#include "coretypes.h"
ad7b10a2 26#include "memmodel.h"
9ef16211 27#include "backend.h"
c1eb80de 28#include "target.h"
87ad11b0 29#include "rtl.h"
c1eb80de 30#include "tree.h"
9ef16211 31#include "df.h"
c1eb80de 32#include "tm_p.h"
33#include "stringpool.h"
30a86690 34#include "attribs.h"
c1eb80de 35#include "optabs.h"
87ad11b0 36#include "regs.h"
c1eb80de 37#include "emit-rtl.h"
38#include "recog.h"
39#include "diagnostic-core.h"
87ad11b0 40#include "insn-attr.h"
b20a8bb4 41#include "alias.h"
b20a8bb4 42#include "fold-const.h"
9ed99284 43#include "stor-layout.h"
9ed99284 44#include "varasm.h"
45#include "calls.h"
9d2d8bd6 46#include "output.h"
a584fe8a 47#include "except.h"
d53441c8 48#include "explow.h"
32509e56 49#include "expr.h"
d8fc4d0b 50#include "reload.h"
218e3e4e 51#include "common/common-target.h"
0f9c87cc 52#include "langhooks.h"
94ea8568 53#include "cfgrtl.h"
fba5dd52 54#include "opts.h"
f7715905 55#include "builtins.h"
87ad11b0 56
0c71fb4f 57/* This file should be included last. */
4b498588 58#include "target-def.h"
59
cde3e16c 60/* Return nonzero if there is a bypass for the output of
61 OUT_INSN and the fp store IN_INSN. */
62int
ed3e6e5d 63pa_fpstore_bypass_p (rtx_insn *out_insn, rtx_insn *in_insn)
cde3e16c 64{
3754d046 65 machine_mode store_mode;
66 machine_mode other_mode;
cde3e16c 67 rtx set;
68
69 if (recog_memoized (in_insn) < 0
7d9f62cc 70 || (get_attr_type (in_insn) != TYPE_FPSTORE
71 && get_attr_type (in_insn) != TYPE_FPSTORE_LOAD)
cde3e16c 72 || recog_memoized (out_insn) < 0)
73 return 0;
74
75 store_mode = GET_MODE (SET_SRC (PATTERN (in_insn)));
76
77 set = single_set (out_insn);
78 if (!set)
79 return 0;
80
81 other_mode = GET_MODE (SET_SRC (set));
82
83 return (GET_MODE_SIZE (store_mode) == GET_MODE_SIZE (other_mode));
84}
85
86
cc858176 87#ifndef DO_FRAME_NOTES
88#ifdef INCOMING_RETURN_ADDR_RTX
89#define DO_FRAME_NOTES 1
90#else
91#define DO_FRAME_NOTES 0
92#endif
93#endif
94
93d3ee56 95static void pa_option_override (void);
dbd3d89d 96static void copy_reg_pointer (rtx, rtx);
320e1276 97static void fix_range (const char *);
3754d046 98static int hppa_register_move_cost (machine_mode mode, reg_class_t,
93d3ee56 99 reg_class_t);
3754d046 100static int hppa_address_cost (rtx, machine_mode mode, addr_space_t, bool);
5ae4887d 101static bool hppa_rtx_costs (rtx, machine_mode, int, int, int *, bool);
3754d046 102static inline rtx force_mode (machine_mode, rtx);
5c1d8983 103static void pa_reorg (void);
104static void pa_combine_instructions (void);
ed3e6e5d 105static int pa_can_combine_p (rtx_insn *, rtx_insn *, rtx_insn *, int, rtx,
106 rtx, rtx);
91a55c11 107static bool forward_branch_p (rtx_insn *);
5c1d8983 108static void compute_zdepwi_operands (unsigned HOST_WIDE_INT, unsigned *);
e202682d 109static void compute_zdepdi_operands (unsigned HOST_WIDE_INT, unsigned *);
89dcddd6 110static int compute_movmem_length (rtx_insn *);
111static int compute_clrmem_length (rtx_insn *);
5c1d8983 112static bool pa_assemble_integer (rtx, unsigned int, int);
113static void remove_useless_addtr_insns (int);
6bcdc1fb 114static void store_reg (int, HOST_WIDE_INT, int);
115static void store_reg_modify (int, int, HOST_WIDE_INT);
116static void load_reg (int, HOST_WIDE_INT, int);
117static void set_reg_plus_d (int, int, HOST_WIDE_INT, int);
cb0b8817 118static rtx pa_function_value (const_tree, const_tree, bool);
3754d046 119static rtx pa_libcall_value (machine_mode, const_rtx);
93d3ee56 120static bool pa_function_value_regno_p (const unsigned int);
718e6d56 121static void pa_output_function_prologue (FILE *);
21a47bc9 122static void update_total_code_bytes (unsigned int);
718e6d56 123static void pa_output_function_epilogue (FILE *);
99f52c2b 124static int pa_adjust_cost (rtx_insn *, int, rtx_insn *, int, unsigned int);
5c1d8983 125static int pa_issue_rate (void);
0e485231 126static int pa_reloc_rw_mask (void);
2f14b1f9 127static void pa_som_asm_init_sections (void) ATTRIBUTE_UNUSED;
8151bf30 128static section *pa_som_tm_clone_table_section (void) ATTRIBUTE_UNUSED;
2f14b1f9 129static section *pa_select_section (tree, int, unsigned HOST_WIDE_INT)
52470889 130 ATTRIBUTE_UNUSED;
5c1d8983 131static void pa_encode_section_info (tree, rtx, int);
132static const char *pa_strip_name_encoding (const char *);
133static bool pa_function_ok_for_sibcall (tree, tree);
134static void pa_globalize_label (FILE *, const char *)
63b8cd48 135 ATTRIBUTE_UNUSED;
5c1d8983 136static void pa_asm_output_mi_thunk (FILE *, tree, HOST_WIDE_INT,
137 HOST_WIDE_INT, tree);
de419443 138#if !defined(USE_COLLECT2)
5c1d8983 139static void pa_asm_out_constructor (rtx, int);
140static void pa_asm_out_destructor (rtx, int);
de419443 141#endif
5c1d8983 142static void pa_init_builtins (void);
3754d046 143static rtx pa_expand_builtin (tree, rtx, rtx, machine_mode mode, int);
b8debbe8 144static rtx hppa_builtin_saveregs (void);
8a58ed0a 145static void hppa_va_start (tree, rtx);
75a70cf9 146static tree hppa_gimplify_va_arg_expr (tree, tree, gimple_seq *, gimple_seq *);
8aec1ebb 147static bool pa_scalar_mode_supported_p (scalar_mode);
a9f1838b 148static bool pa_commutative_p (const_rtx x, int outer_code);
89dcddd6 149static void copy_fp_args (rtx_insn *) ATTRIBUTE_UNUSED;
150static int length_fp_args (rtx_insn *) ATTRIBUTE_UNUSED;
3754d046 151static rtx hppa_legitimize_address (rtx, rtx, machine_mode);
5c1d8983 152static inline void pa_file_start_level (void) ATTRIBUTE_UNUSED;
153static inline void pa_file_start_space (int) ATTRIBUTE_UNUSED;
154static inline void pa_file_start_file (int) ATTRIBUTE_UNUSED;
155static inline void pa_file_start_mcount (const char*) ATTRIBUTE_UNUSED;
156static void pa_elf_file_start (void) ATTRIBUTE_UNUSED;
157static void pa_som_file_start (void) ATTRIBUTE_UNUSED;
158static void pa_linux_file_start (void) ATTRIBUTE_UNUSED;
159static void pa_hpux64_gas_file_start (void) ATTRIBUTE_UNUSED;
160static void pa_hpux64_hpas_file_start (void) ATTRIBUTE_UNUSED;
161static void output_deferred_plabels (void);
bb1bc2ca 162static void output_deferred_profile_counters (void) ATTRIBUTE_UNUSED;
cb442ed3 163static void pa_file_end (void);
3912b4d0 164static void pa_init_libfuncs (void);
b8debbe8 165static rtx pa_struct_value_rtx (tree, int);
3754d046 166static bool pa_pass_by_reference (cumulative_args_t, machine_mode,
fb80456a 167 const_tree, bool);
3754d046 168static int pa_arg_partial_bytes (cumulative_args_t, machine_mode,
f054eb3c 169 tree, bool);
3754d046 170static void pa_function_arg_advance (cumulative_args_t, machine_mode,
8b4bd662 171 const_tree, bool);
3754d046 172static rtx pa_function_arg (cumulative_args_t, machine_mode,
8b4bd662 173 const_tree, bool);
d7ab0e3d 174static pad_direction pa_function_arg_padding (machine_mode, const_tree);
3754d046 175static unsigned int pa_function_arg_boundary (machine_mode, const_tree);
916c9cef 176static struct machine_function * pa_init_machine_status (void);
964229b7 177static reg_class_t pa_secondary_reload (bool, rtx, reg_class_t,
3754d046 178 machine_mode,
964229b7 179 secondary_reload_info *);
c836e75b 180static bool pa_secondary_memory_needed (machine_mode,
181 reg_class_t, reg_class_t);
df6b92e4 182static void pa_extra_live_on_entry (bitmap);
3754d046 183static machine_mode pa_promote_function_mode (const_tree,
184 machine_mode, int *,
15a27966 185 const_tree, int);
9d3ddb8f 186
623a97bc 187static void pa_asm_trampoline_template (FILE *);
188static void pa_trampoline_init (rtx, tree, rtx);
189static rtx pa_trampoline_adjust_address (rtx);
c731c4f5 190static rtx pa_delegitimize_address (rtx);
93d3ee56 191static bool pa_print_operand_punct_valid_p (unsigned char);
68bc9ae6 192static rtx pa_internal_arg_pointer (void);
193static bool pa_can_eliminate (const int, const int);
b2d7ede1 194static void pa_conditional_register_usage (void);
3754d046 195static machine_mode pa_c_mode_for_suffix (char);
c9b4a514 196static section *pa_function_section (tree, enum node_frequency, bool, bool);
3754d046 197static bool pa_cannot_force_const_mem (machine_mode, rtx);
198static bool pa_legitimate_constant_p (machine_mode, rtx);
7949e3eb 199static unsigned int pa_section_type_flags (tree, const char *, int);
3754d046 200static bool pa_legitimate_address_p (machine_mode, rtx, bool);
90bc9464 201static bool pa_callee_copies (cumulative_args_t, machine_mode,
202 const_tree, bool);
74f68e49 203static unsigned int pa_hard_regno_nregs (unsigned int, machine_mode);
b395382f 204static bool pa_hard_regno_mode_ok (unsigned int, machine_mode);
5f6dcf1a 205static bool pa_modes_tieable_p (machine_mode, machine_mode);
b56a9dbc 206static bool pa_can_change_mode_class (machine_mode, machine_mode, reg_class_t);
8374586c 207static HOST_WIDE_INT pa_starting_frame_offset (void);
623a97bc 208
2f14b1f9 209/* The following extra sections are only used for SOM. */
210static GTY(()) section *som_readonly_data_section;
211static GTY(()) section *som_one_only_readonly_data_section;
212static GTY(()) section *som_one_only_data_section;
8151bf30 213static GTY(()) section *som_tm_clone_table_section;
2f14b1f9 214
a9960cdc 215/* Counts for the number of callee-saved general and floating point
216 registers which were saved by the current function's prologue. */
217static int gr_saved, fr_saved;
218
df6b92e4 219/* Boolean indicating whether the return pointer was saved by the
220 current function's prologue. */
221static bool rp_saved;
222
5c1d8983 223static rtx find_addr_reg (rtx);
87ad11b0 224
2247cc5f 225/* Keep track of the number of bytes we have output in the CODE subspace
06ddb6f8 226 during this compilation so we'll know when to emit inline long-calls. */
ece88821 227unsigned long total_code_bytes;
06ddb6f8 228
2247cc5f 229/* The last address of the previous function plus the number of bytes in
230 associated thunks that have been output. This is used to determine if
231 a thunk can use an IA-relative branch to reach its target function. */
21a47bc9 232static unsigned int last_address;
2247cc5f 233
e3f53689 234/* Variables to handle plabels that we discover are necessary at assembly
01cc3b75 235 output time. They are output after the current function. */
fb1e4f4a 236struct GTY(()) deferred_plabel
e3f53689 237{
238 rtx internal_label;
5f43b4f6 239 rtx symbol;
1f3233d1 240};
241static GTY((length ("n_deferred_plabels"))) struct deferred_plabel *
242 deferred_plabels;
e11bd7e5 243static size_t n_deferred_plabels = 0;
a767736d 244\f
245/* Initialize the GCC target structure. */
58356836 246
93d3ee56 247#undef TARGET_OPTION_OVERRIDE
248#define TARGET_OPTION_OVERRIDE pa_option_override
249
58356836 250#undef TARGET_ASM_ALIGNED_HI_OP
251#define TARGET_ASM_ALIGNED_HI_OP "\t.half\t"
252#undef TARGET_ASM_ALIGNED_SI_OP
253#define TARGET_ASM_ALIGNED_SI_OP "\t.word\t"
254#undef TARGET_ASM_ALIGNED_DI_OP
255#define TARGET_ASM_ALIGNED_DI_OP "\t.dword\t"
256#undef TARGET_ASM_UNALIGNED_HI_OP
257#define TARGET_ASM_UNALIGNED_HI_OP TARGET_ASM_ALIGNED_HI_OP
258#undef TARGET_ASM_UNALIGNED_SI_OP
259#define TARGET_ASM_UNALIGNED_SI_OP TARGET_ASM_ALIGNED_SI_OP
260#undef TARGET_ASM_UNALIGNED_DI_OP
261#define TARGET_ASM_UNALIGNED_DI_OP TARGET_ASM_ALIGNED_DI_OP
262#undef TARGET_ASM_INTEGER
263#define TARGET_ASM_INTEGER pa_assemble_integer
264
17d9b0c3 265#undef TARGET_ASM_FUNCTION_PROLOGUE
266#define TARGET_ASM_FUNCTION_PROLOGUE pa_output_function_prologue
267#undef TARGET_ASM_FUNCTION_EPILOGUE
268#define TARGET_ASM_FUNCTION_EPILOGUE pa_output_function_epilogue
e3f53689 269
cb0b8817 270#undef TARGET_FUNCTION_VALUE
271#define TARGET_FUNCTION_VALUE pa_function_value
93d3ee56 272#undef TARGET_LIBCALL_VALUE
273#define TARGET_LIBCALL_VALUE pa_libcall_value
274#undef TARGET_FUNCTION_VALUE_REGNO_P
275#define TARGET_FUNCTION_VALUE_REGNO_P pa_function_value_regno_p
cb0b8817 276
41e3a0c7 277#undef TARGET_LEGITIMIZE_ADDRESS
278#define TARGET_LEGITIMIZE_ADDRESS hppa_legitimize_address
279
747af5e7 280#undef TARGET_SCHED_ADJUST_COST
281#define TARGET_SCHED_ADJUST_COST pa_adjust_cost
747af5e7 282#undef TARGET_SCHED_ISSUE_RATE
283#define TARGET_SCHED_ISSUE_RATE pa_issue_rate
284
7811991d 285#undef TARGET_ENCODE_SECTION_INFO
286#define TARGET_ENCODE_SECTION_INFO pa_encode_section_info
7b4a38a6 287#undef TARGET_STRIP_NAME_ENCODING
288#define TARGET_STRIP_NAME_ENCODING pa_strip_name_encoding
7811991d 289
805e22b2 290#undef TARGET_FUNCTION_OK_FOR_SIBCALL
291#define TARGET_FUNCTION_OK_FOR_SIBCALL pa_function_ok_for_sibcall
292
280566a7 293#undef TARGET_COMMUTATIVE_P
294#define TARGET_COMMUTATIVE_P pa_commutative_p
295
6988553d 296#undef TARGET_ASM_OUTPUT_MI_THUNK
297#define TARGET_ASM_OUTPUT_MI_THUNK pa_asm_output_mi_thunk
eb344f43 298#undef TARGET_ASM_CAN_OUTPUT_MI_THUNK
299#define TARGET_ASM_CAN_OUTPUT_MI_THUNK default_can_output_mi_thunk_no_vcall
6988553d 300
f6940372 301#undef TARGET_ASM_FILE_END
cb442ed3 302#define TARGET_ASM_FILE_END pa_file_end
f6940372 303
0e485231 304#undef TARGET_ASM_RELOC_RW_MASK
305#define TARGET_ASM_RELOC_RW_MASK pa_reloc_rw_mask
306
93d3ee56 307#undef TARGET_PRINT_OPERAND_PUNCT_VALID_P
308#define TARGET_PRINT_OPERAND_PUNCT_VALID_P pa_print_operand_punct_valid_p
309
de419443 310#if !defined(USE_COLLECT2)
311#undef TARGET_ASM_CONSTRUCTOR
312#define TARGET_ASM_CONSTRUCTOR pa_asm_out_constructor
313#undef TARGET_ASM_DESTRUCTOR
314#define TARGET_ASM_DESTRUCTOR pa_asm_out_destructor
315#endif
316
ffa8918b 317#undef TARGET_INIT_BUILTINS
318#define TARGET_INIT_BUILTINS pa_init_builtins
319
0f9c87cc 320#undef TARGET_EXPAND_BUILTIN
321#define TARGET_EXPAND_BUILTIN pa_expand_builtin
322
93d3ee56 323#undef TARGET_REGISTER_MOVE_COST
324#define TARGET_REGISTER_MOVE_COST hppa_register_move_cost
fab7adbf 325#undef TARGET_RTX_COSTS
326#define TARGET_RTX_COSTS hppa_rtx_costs
ec0457a8 327#undef TARGET_ADDRESS_COST
328#define TARGET_ADDRESS_COST hppa_address_cost
fab7adbf 329
2efea8c0 330#undef TARGET_MACHINE_DEPENDENT_REORG
331#define TARGET_MACHINE_DEPENDENT_REORG pa_reorg
332
f2f543a3 333#undef TARGET_INIT_LIBFUNCS
3912b4d0 334#define TARGET_INIT_LIBFUNCS pa_init_libfuncs
f2f543a3 335
3b2411a8 336#undef TARGET_PROMOTE_FUNCTION_MODE
337#define TARGET_PROMOTE_FUNCTION_MODE pa_promote_function_mode
b8debbe8 338#undef TARGET_PROMOTE_PROTOTYPES
fb80456a 339#define TARGET_PROMOTE_PROTOTYPES hook_bool_const_tree_true
b8debbe8 340
341#undef TARGET_STRUCT_VALUE_RTX
342#define TARGET_STRUCT_VALUE_RTX pa_struct_value_rtx
343#undef TARGET_RETURN_IN_MEMORY
344#define TARGET_RETURN_IN_MEMORY pa_return_in_memory
0336f0f0 345#undef TARGET_MUST_PASS_IN_STACK
346#define TARGET_MUST_PASS_IN_STACK must_pass_in_stack_var_size
b981d932 347#undef TARGET_PASS_BY_REFERENCE
348#define TARGET_PASS_BY_REFERENCE pa_pass_by_reference
13f08ee7 349#undef TARGET_CALLEE_COPIES
90bc9464 350#define TARGET_CALLEE_COPIES pa_callee_copies
f054eb3c 351#undef TARGET_ARG_PARTIAL_BYTES
352#define TARGET_ARG_PARTIAL_BYTES pa_arg_partial_bytes
8b4bd662 353#undef TARGET_FUNCTION_ARG
354#define TARGET_FUNCTION_ARG pa_function_arg
355#undef TARGET_FUNCTION_ARG_ADVANCE
356#define TARGET_FUNCTION_ARG_ADVANCE pa_function_arg_advance
d7ab0e3d 357#undef TARGET_FUNCTION_ARG_PADDING
358#define TARGET_FUNCTION_ARG_PADDING pa_function_arg_padding
bd99ba64 359#undef TARGET_FUNCTION_ARG_BOUNDARY
360#define TARGET_FUNCTION_ARG_BOUNDARY pa_function_arg_boundary
b8debbe8 361
362#undef TARGET_EXPAND_BUILTIN_SAVEREGS
363#define TARGET_EXPAND_BUILTIN_SAVEREGS hppa_builtin_saveregs
8a58ed0a 364#undef TARGET_EXPAND_BUILTIN_VA_START
365#define TARGET_EXPAND_BUILTIN_VA_START hppa_va_start
4c33eb68 366#undef TARGET_GIMPLIFY_VA_ARG_EXPR
367#define TARGET_GIMPLIFY_VA_ARG_EXPR hppa_gimplify_va_arg_expr
b8debbe8 368
2b1e7cc3 369#undef TARGET_SCALAR_MODE_SUPPORTED_P
370#define TARGET_SCALAR_MODE_SUPPORTED_P pa_scalar_mode_supported_p
371
716b2c5a 372#undef TARGET_CANNOT_FORCE_CONST_MEM
7d7d7bd2 373#define TARGET_CANNOT_FORCE_CONST_MEM pa_cannot_force_const_mem
716b2c5a 374
5655a0e5 375#undef TARGET_SECONDARY_RELOAD
376#define TARGET_SECONDARY_RELOAD pa_secondary_reload
c836e75b 377#undef TARGET_SECONDARY_MEMORY_NEEDED
378#define TARGET_SECONDARY_MEMORY_NEEDED pa_secondary_memory_needed
5655a0e5 379
df6b92e4 380#undef TARGET_EXTRA_LIVE_ON_ENTRY
381#define TARGET_EXTRA_LIVE_ON_ENTRY pa_extra_live_on_entry
382
623a97bc 383#undef TARGET_ASM_TRAMPOLINE_TEMPLATE
384#define TARGET_ASM_TRAMPOLINE_TEMPLATE pa_asm_trampoline_template
385#undef TARGET_TRAMPOLINE_INIT
386#define TARGET_TRAMPOLINE_INIT pa_trampoline_init
387#undef TARGET_TRAMPOLINE_ADJUST_ADDRESS
388#define TARGET_TRAMPOLINE_ADJUST_ADDRESS pa_trampoline_adjust_address
c731c4f5 389#undef TARGET_DELEGITIMIZE_ADDRESS
390#define TARGET_DELEGITIMIZE_ADDRESS pa_delegitimize_address
68bc9ae6 391#undef TARGET_INTERNAL_ARG_POINTER
392#define TARGET_INTERNAL_ARG_POINTER pa_internal_arg_pointer
393#undef TARGET_CAN_ELIMINATE
394#define TARGET_CAN_ELIMINATE pa_can_eliminate
b2d7ede1 395#undef TARGET_CONDITIONAL_REGISTER_USAGE
396#define TARGET_CONDITIONAL_REGISTER_USAGE pa_conditional_register_usage
0f9c87cc 397#undef TARGET_C_MODE_FOR_SUFFIX
398#define TARGET_C_MODE_FOR_SUFFIX pa_c_mode_for_suffix
c9b4a514 399#undef TARGET_ASM_FUNCTION_SECTION
400#define TARGET_ASM_FUNCTION_SECTION pa_function_section
623a97bc 401
ca316360 402#undef TARGET_LEGITIMATE_CONSTANT_P
403#define TARGET_LEGITIMATE_CONSTANT_P pa_legitimate_constant_p
7949e3eb 404#undef TARGET_SECTION_TYPE_FLAGS
405#define TARGET_SECTION_TYPE_FLAGS pa_section_type_flags
e8248b41 406#undef TARGET_LEGITIMATE_ADDRESS_P
407#define TARGET_LEGITIMATE_ADDRESS_P pa_legitimate_address_p
ca316360 408
e46fbef5 409#undef TARGET_LRA_P
410#define TARGET_LRA_P hook_bool_void_false
411
74f68e49 412#undef TARGET_HARD_REGNO_NREGS
413#define TARGET_HARD_REGNO_NREGS pa_hard_regno_nregs
b395382f 414#undef TARGET_HARD_REGNO_MODE_OK
415#define TARGET_HARD_REGNO_MODE_OK pa_hard_regno_mode_ok
5f6dcf1a 416#undef TARGET_MODES_TIEABLE_P
417#define TARGET_MODES_TIEABLE_P pa_modes_tieable_p
b395382f 418
b56a9dbc 419#undef TARGET_CAN_CHANGE_MODE_CLASS
420#define TARGET_CAN_CHANGE_MODE_CLASS pa_can_change_mode_class
421
579d67ba 422#undef TARGET_CONSTANT_ALIGNMENT
423#define TARGET_CONSTANT_ALIGNMENT constant_alignment_word_strings
424
8374586c 425#undef TARGET_STARTING_FRAME_OFFSET
426#define TARGET_STARTING_FRAME_OFFSET pa_starting_frame_offset
427
a4a93b38 428#undef TARGET_HAVE_SPECULATION_SAFE_VALUE
429#define TARGET_HAVE_SPECULATION_SAFE_VALUE speculation_safe_value_not_needed
430
57e4bbfb 431struct gcc_target targetm = TARGET_INITIALIZER;
a767736d 432\f
320e1276 433/* Parse the -mfixed-range= option string. */
434
435static void
436fix_range (const char *const_str)
437{
438 int i, first, last;
439 char *str, *dash, *comma;
440
441 /* str must be of the form REG1'-'REG2{,REG1'-'REG} where REG1 and
442 REG2 are either register names or register numbers. The effect
443 of this option is to mark the registers in the range from REG1 to
444 REG2 as ``fixed'' so they won't be used by the compiler. This is
765cebfc 445 used, e.g., to ensure that kernel mode code doesn't use fr4-fr31. */
320e1276 446
447 i = strlen (const_str);
448 str = (char *) alloca (i + 1);
449 memcpy (str, const_str, i + 1);
450
451 while (1)
452 {
453 dash = strchr (str, '-');
454 if (!dash)
455 {
c3ceba8e 456 warning (0, "value of -mfixed-range must have form REG1-REG2");
320e1276 457 return;
458 }
459 *dash = '\0';
460
461 comma = strchr (dash + 1, ',');
462 if (comma)
463 *comma = '\0';
464
465 first = decode_reg_name (str);
466 if (first < 0)
467 {
c3ceba8e 468 warning (0, "unknown register name: %s", str);
320e1276 469 return;
470 }
471
472 last = decode_reg_name (dash + 1);
473 if (last < 0)
474 {
c3ceba8e 475 warning (0, "unknown register name: %s", dash + 1);
320e1276 476 return;
477 }
478
479 *dash = '-';
480
481 if (first > last)
482 {
c3ceba8e 483 warning (0, "%s-%s is an empty range", str, dash + 1);
320e1276 484 return;
485 }
486
487 for (i = first; i <= last; ++i)
488 fixed_regs[i] = call_used_regs[i] = 1;
489
490 if (!comma)
491 break;
492
493 *comma = ',';
494 str = comma + 1;
495 }
496
497 /* Check if all floating point registers have been fixed. */
498 for (i = FP_REG_FIRST; i <= FP_REG_LAST; i++)
499 if (!fixed_regs[i])
500 break;
501
502 if (i > FP_REG_LAST)
503 target_flags |= MASK_DISABLE_FPREGS;
504}
505
93d3ee56 506/* Implement the TARGET_OPTION_OVERRIDE hook. */
507
508static void
509pa_option_override (void)
bd57250e 510{
d09dbe0a 511 unsigned int i;
512 cl_deferred_option *opt;
f1f41a6c 513 vec<cl_deferred_option> *v
514 = (vec<cl_deferred_option> *) pa_deferred_options;
d09dbe0a 515
f1f41a6c 516 if (v)
517 FOR_EACH_VEC_ELT (*v, i, opt)
518 {
519 switch (opt->opt_index)
520 {
521 case OPT_mfixed_range_:
522 fix_range (opt->arg);
523 break;
d09dbe0a 524
f1f41a6c 525 default:
526 gcc_unreachable ();
527 }
528 }
d09dbe0a 529
c7a4e712 530 if (flag_pic && TARGET_PORTABLE_RUNTIME)
531 {
0a81f5a0 532 warning (0, "PIC code generation is not supported in the portable runtime model");
c7a4e712 533 }
534
b29897dd 535 if (flag_pic && TARGET_FAST_INDIRECT_CALLS)
c7a4e712 536 {
0a81f5a0 537 warning (0, "PIC code generation is not compatible with fast indirect calls");
c7a4e712 538 }
751e64a1 539
5bd7b548 540 if (! TARGET_GAS && write_symbols != NO_DEBUG)
541 {
c3ceba8e 542 warning (0, "-g is only supported when using GAS on this processor,");
543 warning (0, "-g option disabled");
5bd7b548 544 write_symbols = NO_DEBUG;
545 }
5cb4669a 546
fc44315f 547 /* We only support the "big PIC" model now. And we always generate PIC
548 code when in 64bit mode. */
549 if (flag_pic == 1 || TARGET_64BIT)
5e3c5739 550 flag_pic = 2;
551
1724df0b 552 /* Disable -freorder-blocks-and-partition as we don't support hot and
553 cold partitioning. */
554 if (flag_reorder_blocks_and_partition)
555 {
556 inform (input_location,
557 "-freorder-blocks-and-partition does not work "
558 "on this architecture");
559 flag_reorder_blocks_and_partition = 0;
560 flag_reorder_blocks = 1;
561 }
562
58356836 563 /* We can't guarantee that .dword is available for 32-bit targets. */
564 if (UNITS_PER_WORD == 4)
565 targetm.asm_out.aligned_op.di = NULL;
566
567 /* The unaligned ops are only available when using GAS. */
568 if (!TARGET_GAS)
569 {
570 targetm.asm_out.unaligned_op.hi = NULL;
571 targetm.asm_out.unaligned_op.si = NULL;
572 targetm.asm_out.unaligned_op.di = NULL;
573 }
916c9cef 574
575 init_machine_status = pa_init_machine_status;
134b4858 576}
577
0f9c87cc 578enum pa_builtins
579{
580 PA_BUILTIN_COPYSIGNQ,
581 PA_BUILTIN_FABSQ,
582 PA_BUILTIN_INFQ,
583 PA_BUILTIN_HUGE_VALQ,
584 PA_BUILTIN_max
585};
586
587static GTY(()) tree pa_builtins[(int) PA_BUILTIN_max];
588
066397a3 589static void
5c1d8983 590pa_init_builtins (void)
ffa8918b 591{
592#ifdef DONT_HAVE_FPUTC_UNLOCKED
b9a16870 593 {
594 tree decl = builtin_decl_explicit (BUILT_IN_PUTC_UNLOCKED);
595 set_builtin_decl (BUILT_IN_FPUTC_UNLOCKED, decl,
596 builtin_decl_implicit_p (BUILT_IN_PUTC_UNLOCKED));
597 }
ffa8918b 598#endif
01cbacb9 599#if TARGET_HPUX_11
b9a16870 600 {
601 tree decl;
602
603 if ((decl = builtin_decl_explicit (BUILT_IN_FINITE)) != NULL_TREE)
604 set_user_assembler_name (decl, "_Isfinite");
605 if ((decl = builtin_decl_explicit (BUILT_IN_FINITEF)) != NULL_TREE)
606 set_user_assembler_name (decl, "_Isfinitef");
607 }
aafb162c 608#endif
0f9c87cc 609
610 if (HPUX_LONG_DOUBLE_LIBRARY)
611 {
612 tree decl, ftype;
613
614 /* Under HPUX, the __float128 type is a synonym for "long double". */
615 (*lang_hooks.types.register_builtin_type) (long_double_type_node,
616 "__float128");
617
618 /* TFmode support builtins. */
619 ftype = build_function_type_list (long_double_type_node,
620 long_double_type_node,
621 NULL_TREE);
622 decl = add_builtin_function ("__builtin_fabsq", ftype,
623 PA_BUILTIN_FABSQ, BUILT_IN_MD,
624 "_U_Qfabs", NULL_TREE);
625 TREE_READONLY (decl) = 1;
626 pa_builtins[PA_BUILTIN_FABSQ] = decl;
627
628 ftype = build_function_type_list (long_double_type_node,
629 long_double_type_node,
630 long_double_type_node,
631 NULL_TREE);
632 decl = add_builtin_function ("__builtin_copysignq", ftype,
633 PA_BUILTIN_COPYSIGNQ, BUILT_IN_MD,
634 "_U_Qfcopysign", NULL_TREE);
635 TREE_READONLY (decl) = 1;
636 pa_builtins[PA_BUILTIN_COPYSIGNQ] = decl;
637
ab27801e 638 ftype = build_function_type_list (long_double_type_node, NULL_TREE);
0f9c87cc 639 decl = add_builtin_function ("__builtin_infq", ftype,
640 PA_BUILTIN_INFQ, BUILT_IN_MD,
641 NULL, NULL_TREE);
642 pa_builtins[PA_BUILTIN_INFQ] = decl;
643
644 decl = add_builtin_function ("__builtin_huge_valq", ftype,
645 PA_BUILTIN_HUGE_VALQ, BUILT_IN_MD,
646 NULL, NULL_TREE);
647 pa_builtins[PA_BUILTIN_HUGE_VALQ] = decl;
648 }
649}
650
651static rtx
652pa_expand_builtin (tree exp, rtx target, rtx subtarget ATTRIBUTE_UNUSED,
3754d046 653 machine_mode mode ATTRIBUTE_UNUSED,
0f9c87cc 654 int ignore ATTRIBUTE_UNUSED)
655{
656 tree fndecl = TREE_OPERAND (CALL_EXPR_FN (exp), 0);
657 unsigned int fcode = DECL_FUNCTION_CODE (fndecl);
658
659 switch (fcode)
660 {
661 case PA_BUILTIN_FABSQ:
662 case PA_BUILTIN_COPYSIGNQ:
663 return expand_call (exp, target, ignore);
664
665 case PA_BUILTIN_INFQ:
666 case PA_BUILTIN_HUGE_VALQ:
667 {
3754d046 668 machine_mode target_mode = TYPE_MODE (TREE_TYPE (exp));
0f9c87cc 669 REAL_VALUE_TYPE inf;
670 rtx tmp;
671
672 real_inf (&inf);
d5f9611d 673 tmp = const_double_from_real_value (inf, target_mode);
0f9c87cc 674
675 tmp = validize_mem (force_const_mem (target_mode, tmp));
676
677 if (target == 0)
678 target = gen_reg_rtx (target_mode);
679
680 emit_move_insn (target, tmp);
681 return target;
682 }
683
684 default:
685 gcc_unreachable ();
686 }
687
688 return NULL_RTX;
ffa8918b 689}
690
916c9cef 691/* Function to init struct machine_function.
692 This will be called, via a pointer variable,
693 from push_function_context. */
694
695static struct machine_function *
696pa_init_machine_status (void)
697{
25a27413 698 return ggc_cleared_alloc<machine_function> ();
916c9cef 699}
700
dbd3d89d 701/* If FROM is a probable pointer register, mark TO as a probable
702 pointer register with the same pointer alignment as FROM. */
703
704static void
705copy_reg_pointer (rtx to, rtx from)
706{
707 if (REG_POINTER (from))
708 mark_reg_pointer (to, REGNO_POINTER_ALIGN (REGNO (from)));
709}
710
6d36483b 711/* Return 1 if X contains a symbolic expression. We know these
712 expressions will have one of a few well defined forms, so
347b5848 713 we need only check those forms. */
714int
e202682d 715pa_symbolic_expression_p (rtx x)
347b5848 716{
717
6dc3b0d9 718 /* Strip off any HIGH. */
347b5848 719 if (GET_CODE (x) == HIGH)
720 x = XEXP (x, 0);
721
e8248b41 722 return symbolic_operand (x, VOIDmode);
347b5848 723}
724
7c4d3047 725/* Accept any constant that can be moved in one instruction into a
d9d7c968 726 general register. */
6d36483b 727int
1e5769bd 728pa_cint_ok_for_move (unsigned HOST_WIDE_INT ival)
d9d7c968 729{
730 /* OK if ldo, ldil, or zdepi, can be used. */
59ad2f1e 731 return (VAL_14_BITS_P (ival)
e202682d 732 || pa_ldil_cint_p (ival)
733 || pa_zdepi_cint_p (ival));
d9d7c968 734}
87ad11b0 735\f
59ad2f1e 736/* True iff ldil can be used to load this CONST_INT. The least
737 significant 11 bits of the value must be zero and the value must
738 not change sign when extended from 32 to 64 bits. */
739int
1e5769bd 740pa_ldil_cint_p (unsigned HOST_WIDE_INT ival)
59ad2f1e 741{
1e5769bd 742 unsigned HOST_WIDE_INT x;
59ad2f1e 743
1e5769bd 744 x = ival & (((unsigned HOST_WIDE_INT) -1 << 31) | 0x7ff);
745 return x == 0 || x == ((unsigned HOST_WIDE_INT) -1 << 31);
59ad2f1e 746}
747
ea52c577 748/* True iff zdepi can be used to generate this CONST_INT.
5b865faf 749 zdepi first sign extends a 5-bit signed number to a given field
ea52c577 750 length, then places this field anywhere in a zero. */
e057641f 751int
e202682d 752pa_zdepi_cint_p (unsigned HOST_WIDE_INT x)
fad0b60f 753{
3745c59b 754 unsigned HOST_WIDE_INT lsb_mask, t;
fad0b60f 755
756 /* This might not be obvious, but it's at least fast.
01cc3b75 757 This function is critical; we don't have the time loops would take. */
42faba01 758 lsb_mask = x & -x;
759 t = ((x >> 4) + lsb_mask) & ~(lsb_mask - 1);
760 /* Return true iff t is a power of two. */
fad0b60f 761 return ((t & (t - 1)) == 0);
762}
763
6d36483b 764/* True iff depi or extru can be used to compute (reg & mask).
765 Accept bit pattern like these:
766 0....01....1
767 1....10....0
768 1..10..01..1 */
e057641f 769int
e202682d 770pa_and_mask_p (unsigned HOST_WIDE_INT mask)
e057641f 771{
772 mask = ~mask;
773 mask += mask & -mask;
774 return (mask & (mask - 1)) == 0;
775}
776
e057641f 777/* True iff depi can be used to compute (reg | MASK). */
778int
e202682d 779pa_ior_mask_p (unsigned HOST_WIDE_INT mask)
e057641f 780{
781 mask += mask & -mask;
782 return (mask & (mask - 1)) == 0;
783}
87ad11b0 784\f
785/* Legitimize PIC addresses. If the address is already
786 position-independent, we return ORIG. Newly generated
787 position-independent addresses go to REG. If we need more
788 than one register, we lose. */
789
e202682d 790static rtx
3754d046 791legitimize_pic_address (rtx orig, machine_mode mode, rtx reg)
87ad11b0 792{
793 rtx pic_ref = orig;
794
f7229f19 795 gcc_assert (!PA_SYMBOL_REF_TLS_P (orig));
716b2c5a 796
b090827b 797 /* Labels need special handling. */
611a88e1 798 if (pic_label_operand (orig, mode))
b4a7bf10 799 {
89dcddd6 800 rtx_insn *insn;
3e478718 801
2536cc16 802 /* We do not want to go through the movXX expanders here since that
803 would create recursion.
804
805 Nor do we really want to call a generator for a named pattern
806 since that requires multiple patterns if we want to support
807 multiple word sizes.
808
809 So instead we just emit the raw set, which avoids the movXX
810 expanders completely. */
dbd3d89d 811 mark_reg_pointer (reg, BITS_PER_UNIT);
d1f9b275 812 insn = emit_insn (gen_rtx_SET (reg, orig));
3e478718 813
814 /* Put a REG_EQUAL note on this insn, so that it can be optimized. */
b9c74b4d 815 add_reg_note (insn, REG_EQUAL, orig);
3e478718 816
817 /* During and after reload, we need to generate a REG_LABEL_OPERAND note
818 and update LABEL_NUSES because this is not done automatically. */
819 if (reload_in_progress || reload_completed)
820 {
821 /* Extract LABEL_REF. */
822 if (GET_CODE (orig) == CONST)
823 orig = XEXP (XEXP (orig, 0), 0);
824 /* Extract CODE_LABEL. */
825 orig = XEXP (orig, 0);
a1ddb869 826 add_reg_note (insn, REG_LABEL_OPERAND, orig);
4aa618ec 827 /* Make sure we have label and not a note. */
828 if (LABEL_P (orig))
829 LABEL_NUSES (orig)++;
3e478718 830 }
18d50ae6 831 crtl->uses_pic_offset_table = 1;
b4a7bf10 832 return reg;
833 }
87ad11b0 834 if (GET_CODE (orig) == SYMBOL_REF)
835 {
89dcddd6 836 rtx_insn *insn;
837 rtx tmp_reg;
f9c1ba9d 838
ecf2283d 839 gcc_assert (reg);
87ad11b0 840
f9c1ba9d 841 /* Before reload, allocate a temporary register for the intermediate
842 result. This allows the sequence to be deleted when the final
843 result is unused and the insns are trivially dead. */
844 tmp_reg = ((reload_in_progress || reload_completed)
845 ? reg : gen_reg_rtx (Pmode));
846
39ec41d4 847 if (function_label_operand (orig, VOIDmode))
3635d963 848 {
cefef42c 849 /* Force function label into memory in word mode. */
850 orig = XEXP (force_const_mem (word_mode, orig), 0);
3635d963 851 /* Load plabel address from DLT. */
852 emit_move_insn (tmp_reg,
853 gen_rtx_PLUS (word_mode, pic_offset_table_rtx,
854 gen_rtx_HIGH (word_mode, orig)));
855 pic_ref
856 = gen_const_mem (Pmode,
857 gen_rtx_LO_SUM (Pmode, tmp_reg,
858 gen_rtx_UNSPEC (Pmode,
e265a6da 859 gen_rtvec (1, orig),
860 UNSPEC_DLTIND14R)));
3635d963 861 emit_move_insn (reg, pic_ref);
862 /* Now load address of function descriptor. */
863 pic_ref = gen_rtx_MEM (Pmode, reg);
864 }
865 else
866 {
867 /* Load symbol reference from DLT. */
868 emit_move_insn (tmp_reg,
869 gen_rtx_PLUS (word_mode, pic_offset_table_rtx,
870 gen_rtx_HIGH (word_mode, orig)));
871 pic_ref
872 = gen_const_mem (Pmode,
873 gen_rtx_LO_SUM (Pmode, tmp_reg,
874 gen_rtx_UNSPEC (Pmode,
875 gen_rtvec (1, orig),
876 UNSPEC_DLTIND14R)));
877 }
7014838c 878
18d50ae6 879 crtl->uses_pic_offset_table = 1;
dbd3d89d 880 mark_reg_pointer (reg, BITS_PER_UNIT);
f9c1ba9d 881 insn = emit_move_insn (reg, pic_ref);
882
883 /* Put a REG_EQUAL note on this insn, so that it can be optimized. */
24153880 884 set_unique_reg_note (insn, REG_EQUAL, orig);
f9c1ba9d 885
87ad11b0 886 return reg;
887 }
888 else if (GET_CODE (orig) == CONST)
889 {
57ed30e5 890 rtx base;
87ad11b0 891
892 if (GET_CODE (XEXP (orig, 0)) == PLUS
893 && XEXP (XEXP (orig, 0), 0) == pic_offset_table_rtx)
894 return orig;
895
ecf2283d 896 gcc_assert (reg);
897 gcc_assert (GET_CODE (XEXP (orig, 0)) == PLUS);
898
899 base = legitimize_pic_address (XEXP (XEXP (orig, 0), 0), Pmode, reg);
900 orig = legitimize_pic_address (XEXP (XEXP (orig, 0), 1), Pmode,
901 base == reg ? 0 : reg);
dbd3d89d 902
87ad11b0 903 if (GET_CODE (orig) == CONST_INT)
904 {
42faba01 905 if (INT_14_BITS (orig))
29c05e22 906 return plus_constant (Pmode, base, INTVAL (orig));
87ad11b0 907 orig = force_reg (Pmode, orig);
908 }
ad851752 909 pic_ref = gen_rtx_PLUS (Pmode, base, orig);
87ad11b0 910 /* Likewise, should we set special REG_NOTEs here? */
911 }
dbd3d89d 912
87ad11b0 913 return pic_ref;
914}
915
716b2c5a 916static GTY(()) rtx gen_tls_tga;
917
918static rtx
919gen_tls_get_addr (void)
920{
921 if (!gen_tls_tga)
922 gen_tls_tga = init_one_libfunc ("__tls_get_addr");
923 return gen_tls_tga;
924}
925
926static rtx
927hppa_tls_call (rtx arg)
928{
929 rtx ret;
930
931 ret = gen_reg_rtx (Pmode);
932 emit_library_call_value (gen_tls_get_addr (), ret,
9e9e5c15 933 LCT_CONST, Pmode, arg, Pmode);
716b2c5a 934
935 return ret;
936}
937
938static rtx
939legitimize_tls_address (rtx addr)
940{
89dcddd6 941 rtx ret, tmp, t1, t2, tp;
942 rtx_insn *insn;
716b2c5a 943
b17eb183 944 /* Currently, we can't handle anything but a SYMBOL_REF. */
945 if (GET_CODE (addr) != SYMBOL_REF)
946 return addr;
947
948 switch (SYMBOL_REF_TLS_MODEL (addr))
716b2c5a 949 {
950 case TLS_MODEL_GLOBAL_DYNAMIC:
951 tmp = gen_reg_rtx (Pmode);
3f8d8851 952 if (flag_pic)
953 emit_insn (gen_tgd_load_pic (tmp, addr));
954 else
955 emit_insn (gen_tgd_load (tmp, addr));
716b2c5a 956 ret = hppa_tls_call (tmp);
957 break;
958
959 case TLS_MODEL_LOCAL_DYNAMIC:
960 ret = gen_reg_rtx (Pmode);
961 tmp = gen_reg_rtx (Pmode);
962 start_sequence ();
3f8d8851 963 if (flag_pic)
964 emit_insn (gen_tld_load_pic (tmp, addr));
965 else
966 emit_insn (gen_tld_load (tmp, addr));
716b2c5a 967 t1 = hppa_tls_call (tmp);
968 insn = get_insns ();
969 end_sequence ();
970 t2 = gen_reg_rtx (Pmode);
971 emit_libcall_block (insn, t2, t1,
972 gen_rtx_UNSPEC (Pmode, gen_rtvec (1, const0_rtx),
973 UNSPEC_TLSLDBASE));
974 emit_insn (gen_tld_offset_load (ret, addr, t2));
975 break;
976
977 case TLS_MODEL_INITIAL_EXEC:
978 tp = gen_reg_rtx (Pmode);
979 tmp = gen_reg_rtx (Pmode);
980 ret = gen_reg_rtx (Pmode);
981 emit_insn (gen_tp_load (tp));
3f8d8851 982 if (flag_pic)
983 emit_insn (gen_tie_load_pic (tmp, addr));
984 else
985 emit_insn (gen_tie_load (tmp, addr));
716b2c5a 986 emit_move_insn (ret, gen_rtx_PLUS (Pmode, tp, tmp));
987 break;
988
989 case TLS_MODEL_LOCAL_EXEC:
990 tp = gen_reg_rtx (Pmode);
991 ret = gen_reg_rtx (Pmode);
992 emit_insn (gen_tp_load (tp));
993 emit_insn (gen_tle_load (ret, addr, tp));
994 break;
995
996 default:
f7229f19 997 gcc_unreachable ();
716b2c5a 998 }
999
1000 return ret;
1001}
1002
dedf65c3 1003/* Helper for hppa_legitimize_address. Given X, return true if it
1004 is a left shift by 1, 2 or 3 positions or a multiply by 2, 4 or 8.
1005
1006 This respectively represent canonical shift-add rtxs or scaled
1007 memory addresses. */
1008static bool
1009mem_shadd_or_shadd_rtx_p (rtx x)
1010{
1011 return ((GET_CODE (x) == ASHIFT
1012 || GET_CODE (x) == MULT)
1013 && GET_CODE (XEXP (x, 1)) == CONST_INT
1014 && ((GET_CODE (x) == ASHIFT
1015 && pa_shadd_constant_p (INTVAL (XEXP (x, 1))))
1016 || (GET_CODE (x) == MULT
1017 && pa_mem_shadd_constant_p (INTVAL (XEXP (x, 1))))));
1018}
1019
347b5848 1020/* Try machine-dependent ways of modifying an illegitimate address
1021 to be legitimate. If we find one, return the new, valid address.
1022 This macro is used in only one place: `memory_address' in explow.c.
1023
1024 OLDX is the address as it was before break_out_memory_refs was called.
1025 In some cases it is useful to look at this to decide what needs to be done.
1026
347b5848 1027 It is always safe for this macro to do nothing. It exists to recognize
6d36483b 1028 opportunities to optimize the output.
347b5848 1029
1030 For the PA, transform:
1031
1032 memory(X + <large int>)
1033
1034 into:
1035
1036 if (<large int> & mask) >= 16
1037 Y = (<large int> & ~mask) + mask + 1 Round up.
1038 else
1039 Y = (<large int> & ~mask) Round down.
1040 Z = X + Y
1041 memory (Z + (<large int> - Y));
1042
6d36483b 1043 This is for CSE to find several similar references, and only use one Z.
347b5848 1044
33f88b1c 1045 X can either be a SYMBOL_REF or REG, but because combine cannot
347b5848 1046 perform a 4->2 combination we do nothing for SYMBOL_REF + D where
1047 D will not fit in 14 bits.
1048
1049 MODE_FLOAT references allow displacements which fit in 5 bits, so use
6d36483b 1050 0x1f as the mask.
347b5848 1051
1052 MODE_INT references allow displacements which fit in 14 bits, so use
6d36483b 1053 0x3fff as the mask.
347b5848 1054
1055 This relies on the fact that most mode MODE_FLOAT references will use FP
1056 registers and most mode MODE_INT references will use integer registers.
1057 (In the rare case of an FP register used in an integer MODE, we depend
1058 on secondary reloads to clean things up.)
1059
1060
1061 It is also beneficial to handle (plus (mult (X) (Y)) (Z)) in a special
1062 manner if Y is 2, 4, or 8. (allows more shadd insns and shifted indexed
01cc3b75 1063 addressing modes to be used).
347b5848 1064
dedf65c3 1065 Note that the addresses passed into hppa_legitimize_address always
1066 come from a MEM, so we only have to match the MULT form on incoming
1067 addresses. But to be future proof we also match the ASHIFT form.
1068
1069 However, this routine always places those shift-add sequences into
1070 registers, so we have to generate the ASHIFT form as our output.
1071
347b5848 1072 Put X and Z into registers. Then put the entire expression into
1073 a register. */
1074
1075rtx
5c1d8983 1076hppa_legitimize_address (rtx x, rtx oldx ATTRIBUTE_UNUSED,
3754d046 1077 machine_mode mode)
347b5848 1078{
347b5848 1079 rtx orig = x;
1080
dbd3d89d 1081 /* We need to canonicalize the order of operands in unscaled indexed
1082 addresses since the code that checks if an address is valid doesn't
1083 always try both orders. */
1084 if (!TARGET_NO_SPACE_REGS
1085 && GET_CODE (x) == PLUS
1086 && GET_MODE (x) == Pmode
1087 && REG_P (XEXP (x, 0))
1088 && REG_P (XEXP (x, 1))
1089 && REG_POINTER (XEXP (x, 0))
1090 && !REG_POINTER (XEXP (x, 1)))
1091 return gen_rtx_PLUS (Pmode, XEXP (x, 1), XEXP (x, 0));
1092
53ea4c57 1093 if (tls_referenced_p (x))
716b2c5a 1094 return legitimize_tls_address (x);
1095 else if (flag_pic)
b4a7bf10 1096 return legitimize_pic_address (x, mode, gen_reg_rtx (Pmode));
1097
6dc3b0d9 1098 /* Strip off CONST. */
347b5848 1099 if (GET_CODE (x) == CONST)
1100 x = XEXP (x, 0);
1101
42819d4e 1102 /* Special case. Get the SYMBOL_REF into a register and use indexing.
1103 That should always be safe. */
1104 if (GET_CODE (x) == PLUS
1105 && GET_CODE (XEXP (x, 0)) == REG
1106 && GET_CODE (XEXP (x, 1)) == SYMBOL_REF)
1107 {
440c23df 1108 rtx reg = force_reg (Pmode, XEXP (x, 1));
1109 return force_reg (Pmode, gen_rtx_PLUS (Pmode, reg, XEXP (x, 0)));
42819d4e 1110 }
1111
166bf021 1112 /* Note we must reject symbols which represent function addresses
1113 since the assembler/linker can't handle arithmetic on plabels. */
347b5848 1114 if (GET_CODE (x) == PLUS
1115 && GET_CODE (XEXP (x, 1)) == CONST_INT
166bf021 1116 && ((GET_CODE (XEXP (x, 0)) == SYMBOL_REF
1117 && !FUNCTION_NAME_P (XSTR (XEXP (x, 0), 0)))
347b5848 1118 || GET_CODE (XEXP (x, 0)) == REG))
1119 {
1120 rtx int_part, ptr_reg;
1121 int newoffset;
1122 int offset = INTVAL (XEXP (x, 1));
1b6f11e2 1123 int mask;
1124
1125 mask = (GET_MODE_CLASS (mode) == MODE_FLOAT
e8248b41 1126 && !INT14_OK_STRICT ? 0x1f : 0x3fff);
347b5848 1127
6d36483b 1128 /* Choose which way to round the offset. Round up if we
347b5848 1129 are >= halfway to the next boundary. */
1130 if ((offset & mask) >= ((mask + 1) / 2))
1131 newoffset = (offset & ~ mask) + mask + 1;
1132 else
1133 newoffset = (offset & ~ mask);
1134
1135 /* If the newoffset will not fit in 14 bits (ldo), then
1136 handling this would take 4 or 5 instructions (2 to load
1137 the SYMBOL_REF + 1 or 2 to load the newoffset + 1 to
1138 add the new offset and the SYMBOL_REF.) Combine can
1139 not handle 4->2 or 5->2 combinations, so do not create
1140 them. */
1141 if (! VAL_14_BITS_P (newoffset)
1142 && GET_CODE (XEXP (x, 0)) == SYMBOL_REF)
1143 {
29c05e22 1144 rtx const_part = plus_constant (Pmode, XEXP (x, 0), newoffset);
347b5848 1145 rtx tmp_reg
339613b4 1146 = force_reg (Pmode,
ad851752 1147 gen_rtx_HIGH (Pmode, const_part));
347b5848 1148 ptr_reg
339613b4 1149 = force_reg (Pmode,
7014838c 1150 gen_rtx_LO_SUM (Pmode,
1151 tmp_reg, const_part));
347b5848 1152 }
1153 else
1154 {
1155 if (! VAL_14_BITS_P (newoffset))
339613b4 1156 int_part = force_reg (Pmode, GEN_INT (newoffset));
347b5848 1157 else
1158 int_part = GEN_INT (newoffset);
1159
339613b4 1160 ptr_reg = force_reg (Pmode,
ad851752 1161 gen_rtx_PLUS (Pmode,
1162 force_reg (Pmode, XEXP (x, 0)),
1163 int_part));
347b5848 1164 }
29c05e22 1165 return plus_constant (Pmode, ptr_reg, offset - newoffset);
347b5848 1166 }
45f1285a 1167
dedf65c3 1168 /* Handle (plus (mult (a) (mem_shadd_constant)) (b)). */
45f1285a 1169
dedf65c3 1170 if (GET_CODE (x) == PLUS
1171 && mem_shadd_or_shadd_rtx_p (XEXP (x, 0))
6720e96c 1172 && (OBJECT_P (XEXP (x, 1))
45f1285a 1173 || GET_CODE (XEXP (x, 1)) == SUBREG)
1174 && GET_CODE (XEXP (x, 1)) != CONST)
347b5848 1175 {
dedf65c3 1176 /* If we were given a MULT, we must fix the constant
1177 as we're going to create the ASHIFT form. */
1178 int shift_val = INTVAL (XEXP (XEXP (x, 0), 1));
1179 if (GET_CODE (XEXP (x, 0)) == MULT)
1180 shift_val = exact_log2 (shift_val);
5115683e 1181
dedf65c3 1182 rtx reg1, reg2;
5115683e 1183 reg1 = XEXP (x, 1);
1184 if (GET_CODE (reg1) != REG)
1185 reg1 = force_reg (Pmode, force_operand (reg1, 0));
1186
1187 reg2 = XEXP (XEXP (x, 0), 0);
1188 if (GET_CODE (reg2) != REG)
1189 reg2 = force_reg (Pmode, force_operand (reg2, 0));
1190
dedf65c3 1191 return force_reg (Pmode,
1192 gen_rtx_PLUS (Pmode,
1193 gen_rtx_ASHIFT (Pmode, reg2,
1194 GEN_INT (shift_val)),
1195 reg1));
347b5848 1196 }
45f1285a 1197
dedf65c3 1198 /* Similarly for (plus (plus (mult (a) (mem_shadd_constant)) (b)) (c)).
00a87639 1199
1200 Only do so for floating point modes since this is more speculative
1201 and we lose if it's an integer store. */
5115683e 1202 if (GET_CODE (x) == PLUS
00a87639 1203 && GET_CODE (XEXP (x, 0)) == PLUS
dedf65c3 1204 && mem_shadd_or_shadd_rtx_p (XEXP (XEXP (x, 0), 0))
5115683e 1205 && (mode == SFmode || mode == DFmode))
00a87639 1206 {
dedf65c3 1207 int shift_val = INTVAL (XEXP (XEXP (XEXP (x, 0), 0), 1));
1208
1209 /* If we were given a MULT, we must fix the constant
1210 as we're going to create the ASHIFT form. */
1211 if (GET_CODE (XEXP (XEXP (x, 0), 0)) == MULT)
1212 shift_val = exact_log2 (shift_val);
5115683e 1213
dedf65c3 1214 /* Try and figure out what to use as a base register. */
1ce99229 1215 rtx reg1, reg2, base, idx;
5115683e 1216
1217 reg1 = XEXP (XEXP (x, 0), 1);
1218 reg2 = XEXP (x, 1);
1219 base = NULL_RTX;
1220 idx = NULL_RTX;
1221
1222 /* Make sure they're both regs. If one was a SYMBOL_REF [+ const],
e202682d 1223 then pa_emit_move_sequence will turn on REG_POINTER so we'll know
e61a0a7f 1224 it's a base register below. */
5115683e 1225 if (GET_CODE (reg1) != REG)
1226 reg1 = force_reg (Pmode, force_operand (reg1, 0));
1227
1228 if (GET_CODE (reg2) != REG)
1229 reg2 = force_reg (Pmode, force_operand (reg2, 0));
1230
1231 /* Figure out what the base and index are. */
9840d99d 1232
5115683e 1233 if (GET_CODE (reg1) == REG
e61a0a7f 1234 && REG_POINTER (reg1))
5115683e 1235 {
1236 base = reg1;
ad851752 1237 idx = gen_rtx_PLUS (Pmode,
dedf65c3 1238 gen_rtx_ASHIFT (Pmode,
1239 XEXP (XEXP (XEXP (x, 0), 0), 0),
1240 GEN_INT (shift_val)),
ad851752 1241 XEXP (x, 1));
5115683e 1242 }
1243 else if (GET_CODE (reg2) == REG
e61a0a7f 1244 && REG_POINTER (reg2))
5115683e 1245 {
1246 base = reg2;
5115683e 1247 idx = XEXP (x, 0);
1248 }
1249
1250 if (base == 0)
21f3ee9c 1251 return orig;
5115683e 1252
1253 /* If the index adds a large constant, try to scale the
1254 constant so that it can be loaded with only one insn. */
1255 if (GET_CODE (XEXP (idx, 1)) == CONST_INT
1256 && VAL_14_BITS_P (INTVAL (XEXP (idx, 1))
1257 / INTVAL (XEXP (XEXP (idx, 0), 1)))
1258 && INTVAL (XEXP (idx, 1)) % INTVAL (XEXP (XEXP (idx, 0), 1)) == 0)
1259 {
1260 /* Divide the CONST_INT by the scale factor, then add it to A. */
1261 int val = INTVAL (XEXP (idx, 1));
dedf65c3 1262 val /= (1 << shift_val);
5115683e 1263
5115683e 1264 reg1 = XEXP (XEXP (idx, 0), 0);
1265 if (GET_CODE (reg1) != REG)
1266 reg1 = force_reg (Pmode, force_operand (reg1, 0));
1267
ad851752 1268 reg1 = force_reg (Pmode, gen_rtx_PLUS (Pmode, reg1, GEN_INT (val)));
5115683e 1269
1270 /* We can now generate a simple scaled indexed address. */
7014838c 1271 return
1272 force_reg
1273 (Pmode, gen_rtx_PLUS (Pmode,
dedf65c3 1274 gen_rtx_ASHIFT (Pmode, reg1,
1275 GEN_INT (shift_val)),
7014838c 1276 base));
5115683e 1277 }
1278
1279 /* If B + C is still a valid base register, then add them. */
1280 if (GET_CODE (XEXP (idx, 1)) == CONST_INT
1281 && INTVAL (XEXP (idx, 1)) <= 4096
1282 && INTVAL (XEXP (idx, 1)) >= -4096)
1283 {
5115683e 1284 rtx reg1, reg2;
1285
ad851752 1286 reg1 = force_reg (Pmode, gen_rtx_PLUS (Pmode, base, XEXP (idx, 1)));
5115683e 1287
1288 reg2 = XEXP (XEXP (idx, 0), 0);
1289 if (GET_CODE (reg2) != CONST_INT)
1290 reg2 = force_reg (Pmode, force_operand (reg2, 0));
1291
dedf65c3 1292 return force_reg (Pmode,
1293 gen_rtx_PLUS (Pmode,
1294 gen_rtx_ASHIFT (Pmode, reg2,
1295 GEN_INT (shift_val)),
1296 reg1));
5115683e 1297 }
1298
1299 /* Get the index into a register, then add the base + index and
1300 return a register holding the result. */
1301
1302 /* First get A into a register. */
1303 reg1 = XEXP (XEXP (idx, 0), 0);
1304 if (GET_CODE (reg1) != REG)
1305 reg1 = force_reg (Pmode, force_operand (reg1, 0));
1306
1307 /* And get B into a register. */
1308 reg2 = XEXP (idx, 1);
1309 if (GET_CODE (reg2) != REG)
1310 reg2 = force_reg (Pmode, force_operand (reg2, 0));
1311
ad851752 1312 reg1 = force_reg (Pmode,
1313 gen_rtx_PLUS (Pmode,
dedf65c3 1314 gen_rtx_ASHIFT (Pmode, reg1,
1315 GEN_INT (shift_val)),
ad851752 1316 reg2));
5115683e 1317
1318 /* Add the result to our base register and return. */
ad851752 1319 return force_reg (Pmode, gen_rtx_PLUS (Pmode, base, reg1));
9840d99d 1320
00a87639 1321 }
1322
6d36483b 1323 /* Uh-oh. We might have an address for x[n-100000]. This needs
fb5390c1 1324 special handling to avoid creating an indexed memory address
1325 with x-100000 as the base.
9840d99d 1326
fb5390c1 1327 If the constant part is small enough, then it's still safe because
1328 there is a guard page at the beginning and end of the data segment.
1329
1330 Scaled references are common enough that we want to try and rearrange the
1331 terms so that we can use indexing for these addresses too. Only
00a87639 1332 do the optimization for floatint point modes. */
45f1285a 1333
fb5390c1 1334 if (GET_CODE (x) == PLUS
e202682d 1335 && pa_symbolic_expression_p (XEXP (x, 1)))
45f1285a 1336 {
1337 /* Ugly. We modify things here so that the address offset specified
1338 by the index expression is computed first, then added to x to form
fb5390c1 1339 the entire address. */
45f1285a 1340
00a87639 1341 rtx regx1, regx2, regy1, regy2, y;
45f1285a 1342
1343 /* Strip off any CONST. */
1344 y = XEXP (x, 1);
1345 if (GET_CODE (y) == CONST)
1346 y = XEXP (y, 0);
1347
7ee96d6e 1348 if (GET_CODE (y) == PLUS || GET_CODE (y) == MINUS)
1349 {
00a87639 1350 /* See if this looks like
dedf65c3 1351 (plus (mult (reg) (mem_shadd_const))
00a87639 1352 (const (plus (symbol_ref) (const_int))))
1353
5115683e 1354 Where const_int is small. In that case the const
9840d99d 1355 expression is a valid pointer for indexing.
5115683e 1356
1357 If const_int is big, but can be divided evenly by shadd_const
1358 and added to (reg). This allows more scaled indexed addresses. */
1359 if (GET_CODE (XEXP (y, 0)) == SYMBOL_REF
dedf65c3 1360 && mem_shadd_or_shadd_rtx_p (XEXP (x, 0))
00a87639 1361 && GET_CODE (XEXP (y, 1)) == CONST_INT
5115683e 1362 && INTVAL (XEXP (y, 1)) >= -4096
dedf65c3 1363 && INTVAL (XEXP (y, 1)) <= 4095)
5115683e 1364 {
dedf65c3 1365 int shift_val = INTVAL (XEXP (XEXP (x, 0), 1));
1366
1367 /* If we were given a MULT, we must fix the constant
1368 as we're going to create the ASHIFT form. */
1369 if (GET_CODE (XEXP (x, 0)) == MULT)
1370 shift_val = exact_log2 (shift_val);
1371
5115683e 1372 rtx reg1, reg2;
1373
1374 reg1 = XEXP (x, 1);
1375 if (GET_CODE (reg1) != REG)
1376 reg1 = force_reg (Pmode, force_operand (reg1, 0));
1377
1378 reg2 = XEXP (XEXP (x, 0), 0);
1379 if (GET_CODE (reg2) != REG)
1380 reg2 = force_reg (Pmode, force_operand (reg2, 0));
1381
dedf65c3 1382 return
1383 force_reg (Pmode,
1384 gen_rtx_PLUS (Pmode,
1385 gen_rtx_ASHIFT (Pmode,
1386 reg2,
1387 GEN_INT (shift_val)),
1388 reg1));
5115683e 1389 }
1390 else if ((mode == DFmode || mode == SFmode)
1391 && GET_CODE (XEXP (y, 0)) == SYMBOL_REF
dedf65c3 1392 && mem_shadd_or_shadd_rtx_p (XEXP (x, 0))
5115683e 1393 && GET_CODE (XEXP (y, 1)) == CONST_INT
dedf65c3 1394 && INTVAL (XEXP (y, 1)) % (1 << INTVAL (XEXP (XEXP (x, 0), 1))) == 0)
00a87639 1395 {
dedf65c3 1396 int shift_val = INTVAL (XEXP (XEXP (x, 0), 1));
1397
1398 /* If we were given a MULT, we must fix the constant
1399 as we're going to create the ASHIFT form. */
1400 if (GET_CODE (XEXP (x, 0)) == MULT)
1401 shift_val = exact_log2 (shift_val);
1402
00a87639 1403 regx1
1404 = force_reg (Pmode, GEN_INT (INTVAL (XEXP (y, 1))
1405 / INTVAL (XEXP (XEXP (x, 0), 1))));
1406 regx2 = XEXP (XEXP (x, 0), 0);
1407 if (GET_CODE (regx2) != REG)
1408 regx2 = force_reg (Pmode, force_operand (regx2, 0));
ad851752 1409 regx2 = force_reg (Pmode, gen_rtx_fmt_ee (GET_CODE (y), Pmode,
1410 regx2, regx1));
7014838c 1411 return
1412 force_reg (Pmode,
1413 gen_rtx_PLUS (Pmode,
dedf65c3 1414 gen_rtx_ASHIFT (Pmode, regx2,
1415 GEN_INT (shift_val)),
7014838c 1416 force_reg (Pmode, XEXP (y, 0))));
00a87639 1417 }
fb5390c1 1418 else if (GET_CODE (XEXP (y, 1)) == CONST_INT
1419 && INTVAL (XEXP (y, 1)) >= -4096
1420 && INTVAL (XEXP (y, 1)) <= 4095)
1421 {
1422 /* This is safe because of the guard page at the
1423 beginning and end of the data space. Just
1424 return the original address. */
1425 return orig;
1426 }
00a87639 1427 else
1428 {
1429 /* Doesn't look like one we can optimize. */
1430 regx1 = force_reg (Pmode, force_operand (XEXP (x, 0), 0));
1431 regy1 = force_reg (Pmode, force_operand (XEXP (y, 0), 0));
1432 regy2 = force_reg (Pmode, force_operand (XEXP (y, 1), 0));
1433 regx1 = force_reg (Pmode,
ad851752 1434 gen_rtx_fmt_ee (GET_CODE (y), Pmode,
1435 regx1, regy2));
1436 return force_reg (Pmode, gen_rtx_PLUS (Pmode, regx1, regy1));
00a87639 1437 }
7ee96d6e 1438 }
45f1285a 1439 }
1440
347b5848 1441 return orig;
1442}
1443
93d3ee56 1444/* Implement the TARGET_REGISTER_MOVE_COST hook.
1445
1446 Compute extra cost of moving data between one register class
1447 and another.
1448
1449 Make moves from SAR so expensive they should never happen. We used to
1450 have 0xffff here, but that generates overflow in rare cases.
1451
1452 Copies involving a FP register and a non-FP register are relatively
1453 expensive because they must go through memory.
1454
1455 Other copies are reasonably cheap. */
1456
1457static int
3754d046 1458hppa_register_move_cost (machine_mode mode ATTRIBUTE_UNUSED,
93d3ee56 1459 reg_class_t from, reg_class_t to)
1460{
1461 if (from == SHIFT_REGS)
1462 return 0x100;
5ddb2975 1463 else if (to == SHIFT_REGS && FP_REG_CLASS_P (from))
1464 return 18;
93d3ee56 1465 else if ((FP_REG_CLASS_P (from) && ! FP_REG_CLASS_P (to))
1466 || (FP_REG_CLASS_P (to) && ! FP_REG_CLASS_P (from)))
1467 return 16;
1468 else
1469 return 2;
1470}
1471
87ad11b0 1472/* For the HPPA, REG and REG+CONST is cost 0
1473 and addresses involving symbolic constants are cost 2.
1474
1475 PIC addresses are very expensive.
1476
1477 It is no coincidence that this has the same structure
e8248b41 1478 as pa_legitimate_address_p. */
ec0457a8 1479
1480static int
3754d046 1481hppa_address_cost (rtx X, machine_mode mode ATTRIBUTE_UNUSED,
d9c5e5f4 1482 addr_space_t as ATTRIBUTE_UNUSED,
f529eb25 1483 bool speed ATTRIBUTE_UNUSED)
87ad11b0 1484{
ec0457a8 1485 switch (GET_CODE (X))
1486 {
1487 case REG:
1488 case PLUS:
1489 case LO_SUM:
87ad11b0 1490 return 1;
ec0457a8 1491 case HIGH:
1492 return 2;
1493 default:
1494 return 4;
1495 }
87ad11b0 1496}
1497
fab7adbf 1498/* Compute a (partial) cost for rtx X. Return true if the complete
1499 cost has been computed, and false if subexpressions should be
1500 scanned. In either case, *TOTAL contains the cost result. */
1501
1502static bool
5ae4887d 1503hppa_rtx_costs (rtx x, machine_mode mode, int outer_code,
1504 int opno ATTRIBUTE_UNUSED,
20d892d1 1505 int *total, bool speed ATTRIBUTE_UNUSED)
fab7adbf 1506{
42622d54 1507 int factor;
5ae4887d 1508 int code = GET_CODE (x);
42622d54 1509
fab7adbf 1510 switch (code)
1511 {
1512 case CONST_INT:
1513 if (INTVAL (x) == 0)
1514 *total = 0;
1515 else if (INT_14_BITS (x))
1516 *total = 1;
1517 else
1518 *total = 2;
1519 return true;
1520
1521 case HIGH:
1522 *total = 2;
1523 return true;
1524
1525 case CONST:
1526 case LABEL_REF:
1527 case SYMBOL_REF:
1528 *total = 4;
1529 return true;
1530
1531 case CONST_DOUBLE:
1532 if ((x == CONST0_RTX (DFmode) || x == CONST0_RTX (SFmode))
1533 && outer_code != SET)
1534 *total = 0;
1535 else
1536 *total = 8;
1537 return true;
1538
1539 case MULT:
5ae4887d 1540 if (GET_MODE_CLASS (mode) == MODE_FLOAT)
42622d54 1541 {
1542 *total = COSTS_N_INSNS (3);
1543 return true;
1544 }
1545
1546 /* A mode size N times larger than SImode needs O(N*N) more insns. */
5ae4887d 1547 factor = GET_MODE_SIZE (mode) / 4;
42622d54 1548 if (factor == 0)
1549 factor = 1;
1550
1551 if (TARGET_PA_11 && !TARGET_DISABLE_FPREGS && !TARGET_SOFT_FLOAT)
1552 *total = factor * factor * COSTS_N_INSNS (8);
fab7adbf 1553 else
42622d54 1554 *total = factor * factor * COSTS_N_INSNS (20);
fab7adbf 1555 return true;
1556
1557 case DIV:
5ae4887d 1558 if (GET_MODE_CLASS (mode) == MODE_FLOAT)
fab7adbf 1559 {
1560 *total = COSTS_N_INSNS (14);
1561 return true;
1562 }
8e262b5e 1563 /* FALLTHRU */
fab7adbf 1564
1565 case UDIV:
1566 case MOD:
1567 case UMOD:
42622d54 1568 /* A mode size N times larger than SImode needs O(N*N) more insns. */
5ae4887d 1569 factor = GET_MODE_SIZE (mode) / 4;
42622d54 1570 if (factor == 0)
1571 factor = 1;
1572
1573 *total = factor * factor * COSTS_N_INSNS (60);
fab7adbf 1574 return true;
1575
1576 case PLUS: /* this includes shNadd insns */
1577 case MINUS:
5ae4887d 1578 if (GET_MODE_CLASS (mode) == MODE_FLOAT)
42622d54 1579 {
1580 *total = COSTS_N_INSNS (3);
1581 return true;
1582 }
1583
1584 /* A size N times larger than UNITS_PER_WORD needs N times as
1585 many insns, taking N times as long. */
5ae4887d 1586 factor = GET_MODE_SIZE (mode) / UNITS_PER_WORD;
42622d54 1587 if (factor == 0)
1588 factor = 1;
1589 *total = factor * COSTS_N_INSNS (1);
fab7adbf 1590 return true;
1591
1592 case ASHIFT:
1593 case ASHIFTRT:
1594 case LSHIFTRT:
1595 *total = COSTS_N_INSNS (1);
1596 return true;
1597
1598 default:
1599 return false;
1600 }
1601}
1602
9840d99d 1603/* Ensure mode of ORIG, a REG rtx, is MODE. Returns either ORIG or a
1604 new rtx with the correct mode. */
1605static inline rtx
3754d046 1606force_mode (machine_mode mode, rtx orig)
9840d99d 1607{
1608 if (mode == GET_MODE (orig))
1609 return orig;
1610
ecf2283d 1611 gcc_assert (REGNO (orig) < FIRST_PSEUDO_REGISTER);
9840d99d 1612
1613 return gen_rtx_REG (mode, REGNO (orig));
1614}
1615
7d7d7bd2 1616/* Implement TARGET_CANNOT_FORCE_CONST_MEM. */
1617
1618static bool
3754d046 1619pa_cannot_force_const_mem (machine_mode mode ATTRIBUTE_UNUSED, rtx x)
7d7d7bd2 1620{
53ea4c57 1621 return tls_referenced_p (x);
7d7d7bd2 1622}
1623
87ad11b0 1624/* Emit insns to move operands[1] into operands[0].
1625
1626 Return 1 if we have written out everything that needs to be done to
1627 do the move. Otherwise, return 0 and the caller will emit the move
9840d99d 1628 normally.
f756078b 1629
1630 Note SCRATCH_REG may not be in the proper mode depending on how it
2cecd772 1631 will be used. This routine is responsible for creating a new copy
f756078b 1632 of SCRATCH_REG in the proper mode. */
87ad11b0 1633
1634int
3754d046 1635pa_emit_move_sequence (rtx *operands, machine_mode mode, rtx scratch_reg)
87ad11b0 1636{
1637 register rtx operand0 = operands[0];
1638 register rtx operand1 = operands[1];
4a155b0f 1639 register rtx tem;
87ad11b0 1640
dbd3d89d 1641 /* We can only handle indexed addresses in the destination operand
1642 of floating point stores. Thus, we need to break out indexed
1643 addresses from the destination operand. */
1644 if (GET_CODE (operand0) == MEM && IS_INDEX_ADDR_P (XEXP (operand0, 0)))
1645 {
e1ba4a27 1646 gcc_assert (can_create_pseudo_p ());
dbd3d89d 1647
1648 tem = copy_to_mode_reg (Pmode, XEXP (operand0, 0));
1649 operand0 = replace_equiv_address (operand0, tem);
1650 }
1651
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
5aedf60c 1657 a result, we loose various opportunities to create insns with
dbd3d89d 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)));
1668
2d4dc8d2 1669 if (scratch_reg
1670 && reload_in_progress && GET_CODE (operand0) == REG
d1e2bb73 1671 && REGNO (operand0) >= FIRST_PSEUDO_REGISTER)
1c654ff1 1672 operand0 = reg_equiv_mem (REGNO (operand0));
2d4dc8d2 1673 else if (scratch_reg
1674 && reload_in_progress && GET_CODE (operand0) == SUBREG
d1e2bb73 1675 && GET_CODE (SUBREG_REG (operand0)) == REG
1676 && REGNO (SUBREG_REG (operand0)) >= FIRST_PSEUDO_REGISTER)
a3afad75 1677 {
701e46d0 1678 /* We must not alter SUBREG_BYTE (operand0) since that would confuse
d3c3f88d 1679 the code which tracks sets/uses for delete_output_reload. */
1680 rtx temp = gen_rtx_SUBREG (GET_MODE (operand0),
1c654ff1 1681 reg_equiv_mem (REGNO (SUBREG_REG (operand0))),
701e46d0 1682 SUBREG_BYTE (operand0));
c6a6cdaa 1683 operand0 = alter_subreg (&temp, true);
a3afad75 1684 }
d1e2bb73 1685
2d4dc8d2 1686 if (scratch_reg
1687 && reload_in_progress && GET_CODE (operand1) == REG
d1e2bb73 1688 && REGNO (operand1) >= FIRST_PSEUDO_REGISTER)
1c654ff1 1689 operand1 = reg_equiv_mem (REGNO (operand1));
2d4dc8d2 1690 else if (scratch_reg
1691 && reload_in_progress && GET_CODE (operand1) == SUBREG
d1e2bb73 1692 && GET_CODE (SUBREG_REG (operand1)) == REG
1693 && REGNO (SUBREG_REG (operand1)) >= FIRST_PSEUDO_REGISTER)
a3afad75 1694 {
701e46d0 1695 /* We must not alter SUBREG_BYTE (operand0) since that would confuse
d3c3f88d 1696 the code which tracks sets/uses for delete_output_reload. */
1697 rtx temp = gen_rtx_SUBREG (GET_MODE (operand1),
1c654ff1 1698 reg_equiv_mem (REGNO (SUBREG_REG (operand1))),
701e46d0 1699 SUBREG_BYTE (operand1));
c6a6cdaa 1700 operand1 = alter_subreg (&temp, true);
a3afad75 1701 }
d1e2bb73 1702
2d4dc8d2 1703 if (scratch_reg && reload_in_progress && GET_CODE (operand0) == MEM
4a155b0f 1704 && ((tem = find_replacement (&XEXP (operand0, 0)))
1705 != XEXP (operand0, 0)))
ed498904 1706 operand0 = replace_equiv_address (operand0, tem);
dbd3d89d 1707
2d4dc8d2 1708 if (scratch_reg && reload_in_progress && GET_CODE (operand1) == MEM
4a155b0f 1709 && ((tem = find_replacement (&XEXP (operand1, 0)))
1710 != XEXP (operand1, 0)))
ed498904 1711 operand1 = replace_equiv_address (operand1, tem);
4a155b0f 1712
e8fdbafa 1713 /* Handle secondary reloads for loads/stores of FP registers from
047e3121 1714 REG+D addresses where D does not fit in 5 or 14 bits, including
1c36decb 1715 (subreg (mem (addr))) cases, and reloads for other unsupported
1716 memory operands. */
6bcdc1fb 1717 if (scratch_reg
278e7895 1718 && FP_REG_P (operand0)
e8248b41 1719 && (MEM_P (operand1)
1720 || (GET_CODE (operand1) == SUBREG
278e7895 1721 && MEM_P (XEXP (operand1, 0)))))
d6f01525 1722 {
5ab11d5e 1723 rtx op1 = operand1;
6b1c36c2 1724
5ab11d5e 1725 if (GET_CODE (op1) == SUBREG)
1726 op1 = XEXP (op1, 0);
7ee39d73 1727
1c36decb 1728 if (reg_plus_base_memory_operand (op1, GET_MODE (op1)))
7ee39d73 1729 {
1c36decb 1730 if (!(TARGET_PA_20
1731 && !TARGET_ELF32
1732 && INT_14_BITS (XEXP (XEXP (op1, 0), 1)))
1733 && !INT_5_BITS (XEXP (XEXP (op1, 0), 1)))
5ab11d5e 1734 {
1c36decb 1735 /* SCRATCH_REG will hold an address and maybe the actual data.
1736 We want it in WORD_MODE regardless of what mode it was
1737 originally given to us. */
1738 scratch_reg = force_mode (word_mode, scratch_reg);
1739
1740 /* D might not fit in 14 bits either; for such cases load D
1741 into scratch reg. */
1742 if (!INT_14_BITS (XEXP (XEXP (op1, 0), 1)))
1743 {
1744 emit_move_insn (scratch_reg, XEXP (XEXP (op1, 0), 1));
1745 emit_move_insn (scratch_reg,
1746 gen_rtx_fmt_ee (GET_CODE (XEXP (op1, 0)),
1747 Pmode,
1748 XEXP (XEXP (op1, 0), 0),
1749 scratch_reg));
1750 }
1751 else
1752 emit_move_insn (scratch_reg, XEXP (op1, 0));
ecf1acf5 1753 op1 = replace_equiv_address (op1, scratch_reg);
5ab11d5e 1754 }
1c36decb 1755 }
1756 else if ((!INT14_OK_STRICT && symbolic_memory_operand (op1, VOIDmode))
1757 || IS_LO_SUM_DLT_ADDR_P (XEXP (op1, 0))
1758 || IS_INDEX_ADDR_P (XEXP (op1, 0)))
1759 {
1760 /* Load memory address into SCRATCH_REG. */
1761 scratch_reg = force_mode (word_mode, scratch_reg);
1762 emit_move_insn (scratch_reg, XEXP (op1, 0));
ecf1acf5 1763 op1 = replace_equiv_address (op1, scratch_reg);
7ee39d73 1764 }
ecf1acf5 1765 emit_insn (gen_rtx_SET (operand0, op1));
1766 return 1;
d6f01525 1767 }
6bcdc1fb 1768 else if (scratch_reg
278e7895 1769 && FP_REG_P (operand1)
e8248b41 1770 && (MEM_P (operand0)
1771 || (GET_CODE (operand0) == SUBREG
278e7895 1772 && MEM_P (XEXP (operand0, 0)))))
d6f01525 1773 {
5ab11d5e 1774 rtx op0 = operand0;
6b1c36c2 1775
5ab11d5e 1776 if (GET_CODE (op0) == SUBREG)
1777 op0 = XEXP (op0, 0);
f756078b 1778
1c36decb 1779 if (reg_plus_base_memory_operand (op0, GET_MODE (op0)))
7ee39d73 1780 {
1c36decb 1781 if (!(TARGET_PA_20
1782 && !TARGET_ELF32
1783 && INT_14_BITS (XEXP (XEXP (op0, 0), 1)))
1784 && !INT_5_BITS (XEXP (XEXP (op0, 0), 1)))
5ab11d5e 1785 {
1c36decb 1786 /* SCRATCH_REG will hold an address and maybe the actual data.
1787 We want it in WORD_MODE regardless of what mode it was
1788 originally given to us. */
1789 scratch_reg = force_mode (word_mode, scratch_reg);
1790
1791 /* D might not fit in 14 bits either; for such cases load D
1792 into scratch reg. */
1793 if (!INT_14_BITS (XEXP (XEXP (op0, 0), 1)))
1794 {
1795 emit_move_insn (scratch_reg, XEXP (XEXP (op0, 0), 1));
1796 emit_move_insn (scratch_reg,
1797 gen_rtx_fmt_ee (GET_CODE (XEXP (op0, 0)),
1798 Pmode,
1799 XEXP (XEXP (op0, 0), 0),
1800 scratch_reg));
1801 }
1802 else
1803 emit_move_insn (scratch_reg, XEXP (op0, 0));
ecf1acf5 1804 op0 = replace_equiv_address (op0, scratch_reg);
5ab11d5e 1805 }
1c36decb 1806 }
1807 else if ((!INT14_OK_STRICT && symbolic_memory_operand (op0, VOIDmode))
1808 || IS_LO_SUM_DLT_ADDR_P (XEXP (op0, 0))
1809 || IS_INDEX_ADDR_P (XEXP (op0, 0)))
1810 {
1811 /* Load memory address into SCRATCH_REG. */
1812 scratch_reg = force_mode (word_mode, scratch_reg);
1813 emit_move_insn (scratch_reg, XEXP (op0, 0));
ecf1acf5 1814 op0 = replace_equiv_address (op0, scratch_reg);
7ee39d73 1815 }
ecf1acf5 1816 emit_insn (gen_rtx_SET (op0, operand1));
1817 return 1;
d6f01525 1818 }
753bd06a 1819 /* Handle secondary reloads for loads of FP registers from constant
e8248b41 1820 expressions by forcing the constant into memory. For the most part,
1821 this is only necessary for SImode and DImode.
753bd06a 1822
e8248b41 1823 Use scratch_reg to hold the address of the memory location. */
6bcdc1fb 1824 else if (scratch_reg
753bd06a 1825 && CONSTANT_P (operand1)
5ab11d5e 1826 && FP_REG_P (operand0))
753bd06a 1827 {
ed498904 1828 rtx const_mem, xoperands[2];
753bd06a 1829
e8248b41 1830 if (operand1 == CONST0_RTX (mode))
1831 {
d1f9b275 1832 emit_insn (gen_rtx_SET (operand0, operand1));
e8248b41 1833 return 1;
1834 }
1835
f756078b 1836 /* SCRATCH_REG will hold an address and maybe the actual data. We want
1837 it in WORD_MODE regardless of what mode it was originally given
1838 to us. */
9840d99d 1839 scratch_reg = force_mode (word_mode, scratch_reg);
f756078b 1840
753bd06a 1841 /* Force the constant into memory and put the address of the
1842 memory location into scratch_reg. */
ed498904 1843 const_mem = force_const_mem (mode, operand1);
753bd06a 1844 xoperands[0] = scratch_reg;
ed498904 1845 xoperands[1] = XEXP (const_mem, 0);
e202682d 1846 pa_emit_move_sequence (xoperands, Pmode, 0);
753bd06a 1847
1848 /* Now load the destination register. */
d1f9b275 1849 emit_insn (gen_rtx_SET (operand0,
ed498904 1850 replace_equiv_address (const_mem, scratch_reg)));
753bd06a 1851 return 1;
1852 }
e8fdbafa 1853 /* Handle secondary reloads for SAR. These occur when trying to load
5ddb2975 1854 the SAR from memory or a constant. */
6bcdc1fb 1855 else if (scratch_reg
1856 && GET_CODE (operand0) == REG
2a170404 1857 && REGNO (operand0) < FIRST_PSEUDO_REGISTER
e8fdbafa 1858 && REGNO_REG_CLASS (REGNO (operand0)) == SHIFT_REGS
5ddb2975 1859 && (GET_CODE (operand1) == MEM || GET_CODE (operand1) == CONST_INT))
e8fdbafa 1860 {
7eac600c 1861 /* D might not fit in 14 bits either; for such cases load D into
1862 scratch reg. */
1863 if (GET_CODE (operand1) == MEM
853940d9 1864 && !memory_address_p (GET_MODE (operand0), XEXP (operand1, 0)))
7eac600c 1865 {
fc4d127d 1866 /* We are reloading the address into the scratch register, so we
1867 want to make sure the scratch register is a full register. */
9840d99d 1868 scratch_reg = force_mode (word_mode, scratch_reg);
fc4d127d 1869
9840d99d 1870 emit_move_insn (scratch_reg, XEXP (XEXP (operand1, 0), 1));
ad851752 1871 emit_move_insn (scratch_reg, gen_rtx_fmt_ee (GET_CODE (XEXP (operand1,
1872 0)),
440c23df 1873 Pmode,
ad851752 1874 XEXP (XEXP (operand1, 0),
1875 0),
1876 scratch_reg));
fc4d127d 1877
1878 /* Now we are going to load the scratch register from memory,
1879 we want to load it in the same width as the original MEM,
1880 which must be the same as the width of the ultimate destination,
1881 OPERAND0. */
9840d99d 1882 scratch_reg = force_mode (GET_MODE (operand0), scratch_reg);
1883
ed498904 1884 emit_move_insn (scratch_reg,
1885 replace_equiv_address (operand1, scratch_reg));
7eac600c 1886 }
1887 else
fc4d127d 1888 {
1889 /* We want to load the scratch register using the same mode as
1890 the ultimate destination. */
9840d99d 1891 scratch_reg = force_mode (GET_MODE (operand0), scratch_reg);
1892
fc4d127d 1893 emit_move_insn (scratch_reg, operand1);
1894 }
1895
1896 /* And emit the insn to set the ultimate destination. We know that
1897 the scratch register has the same mode as the destination at this
1898 point. */
e8fdbafa 1899 emit_move_insn (operand0, scratch_reg);
1900 return 1;
1901 }
5ab11d5e 1902
dbd3d89d 1903 /* Handle the most common case: storing into a register. */
5ab11d5e 1904 if (register_operand (operand0, mode))
87ad11b0 1905 {
f784d2ac 1906 /* Legitimize TLS symbol references. This happens for references
1907 that aren't a legitimate constant. */
1908 if (PA_SYMBOL_REF_TLS_P (operand1))
1909 operand1 = legitimize_tls_address (operand1);
1910
87ad11b0 1911 if (register_operand (operand1, mode)
93f6e1c7 1912 || (GET_CODE (operand1) == CONST_INT
1e5769bd 1913 && pa_cint_ok_for_move (UINTVAL (operand1)))
891b55b4 1914 || (operand1 == CONST0_RTX (mode))
87ad11b0 1915 || (GET_CODE (operand1) == HIGH
df0651dc 1916 && !symbolic_operand (XEXP (operand1, 0), VOIDmode))
87ad11b0 1917 /* Only `general_operands' can come here, so MEM is ok. */
1918 || GET_CODE (operand1) == MEM)
1919 {
dbd3d89d 1920 /* Various sets are created during RTL generation which don't
1921 have the REG_POINTER flag correctly set. After the CSE pass,
1922 instruction recognition can fail if we don't consistently
1923 set this flag when performing register copies. This should
1924 also improve the opportunities for creating insns that use
1925 unscaled indexing. */
1926 if (REG_P (operand0) && REG_P (operand1))
1927 {
1928 if (REG_POINTER (operand1)
1929 && !REG_POINTER (operand0)
1930 && !HARD_REGISTER_P (operand0))
1931 copy_reg_pointer (operand0, operand1);
dbd3d89d 1932 }
1933
1934 /* When MEMs are broken out, the REG_POINTER flag doesn't
1935 get set. In some cases, we can set the REG_POINTER flag
1936 from the declaration for the MEM. */
1937 if (REG_P (operand0)
1938 && GET_CODE (operand1) == MEM
1939 && !REG_POINTER (operand0))
1940 {
1941 tree decl = MEM_EXPR (operand1);
1942
1943 /* Set the register pointer flag and register alignment
1944 if the declaration for this memory reference is a
4d41e927 1945 pointer type. */
1946 if (decl)
dbd3d89d 1947 {
1948 tree type;
1949
1950 /* If this is a COMPONENT_REF, use the FIELD_DECL from
1951 tree operand 1. */
1952 if (TREE_CODE (decl) == COMPONENT_REF)
1953 decl = TREE_OPERAND (decl, 1);
1954
1955 type = TREE_TYPE (decl);
eec9c06d 1956 type = strip_array_types (type);
dbd3d89d 1957
1958 if (POINTER_TYPE_P (type))
b3b6e4b5 1959 mark_reg_pointer (operand0, BITS_PER_UNIT);
dbd3d89d 1960 }
1961 }
1962
d1f9b275 1963 emit_insn (gen_rtx_SET (operand0, operand1));
87ad11b0 1964 return 1;
1965 }
1966 }
1967 else if (GET_CODE (operand0) == MEM)
1968 {
85eb4c6e 1969 if (mode == DFmode && operand1 == CONST0_RTX (mode)
1970 && !(reload_in_progress || reload_completed))
1971 {
1972 rtx temp = gen_reg_rtx (DFmode);
1973
d1f9b275 1974 emit_insn (gen_rtx_SET (temp, operand1));
1975 emit_insn (gen_rtx_SET (operand0, temp));
85eb4c6e 1976 return 1;
1977 }
891b55b4 1978 if (register_operand (operand1, mode) || operand1 == CONST0_RTX (mode))
87ad11b0 1979 {
1980 /* Run this case quickly. */
d1f9b275 1981 emit_insn (gen_rtx_SET (operand0, operand1));
87ad11b0 1982 return 1;
1983 }
2ff4bf8d 1984 if (! (reload_in_progress || reload_completed))
87ad11b0 1985 {
1986 operands[0] = validize_mem (operand0);
1987 operands[1] = operand1 = force_reg (mode, operand1);
1988 }
1989 }
1990
37a75d53 1991 /* Simplify the source if we need to.
1992 Note we do have to handle function labels here, even though we do
1993 not consider them legitimate constants. Loop optimizations can
bea60f66 1994 call the emit_move_xxx with one as a source. */
57ed30e5 1995 if ((GET_CODE (operand1) != HIGH && immediate_operand (operand1, mode))
2ee034bc 1996 || (GET_CODE (operand1) == HIGH
b17eb183 1997 && symbolic_operand (XEXP (operand1, 0), mode))
1998 || function_label_operand (operand1, VOIDmode)
53ea4c57 1999 || tls_referenced_p (operand1))
87ad11b0 2000 {
2ee034bc 2001 int ishighonly = 0;
2002
2003 if (GET_CODE (operand1) == HIGH)
2004 {
2005 ishighonly = 1;
2006 operand1 = XEXP (operand1, 0);
2007 }
87ad11b0 2008 if (symbolic_operand (operand1, mode))
2009 {
005a7dd0 2010 /* Argh. The assembler and linker can't handle arithmetic
81653f9b 2011 involving plabels.
005a7dd0 2012
81653f9b 2013 So we force the plabel into memory, load operand0 from
2014 the memory location, then add in the constant part. */
37a75d53 2015 if ((GET_CODE (operand1) == CONST
2016 && GET_CODE (XEXP (operand1, 0)) == PLUS
39ec41d4 2017 && function_label_operand (XEXP (XEXP (operand1, 0), 0),
2018 VOIDmode))
2019 || function_label_operand (operand1, VOIDmode))
005a7dd0 2020 {
b3d569a0 2021 rtx temp, const_part;
81653f9b 2022
2023 /* Figure out what (if any) scratch register to use. */
2024 if (reload_in_progress || reload_completed)
f756078b 2025 {
2026 scratch_reg = scratch_reg ? scratch_reg : operand0;
2027 /* SCRATCH_REG will hold an address and maybe the actual
2028 data. We want it in WORD_MODE regardless of what mode it
2029 was originally given to us. */
9840d99d 2030 scratch_reg = force_mode (word_mode, scratch_reg);
f756078b 2031 }
81653f9b 2032 else if (flag_pic)
2033 scratch_reg = gen_reg_rtx (Pmode);
2034
37a75d53 2035 if (GET_CODE (operand1) == CONST)
2036 {
2037 /* Save away the constant part of the expression. */
2038 const_part = XEXP (XEXP (operand1, 0), 1);
ecf2283d 2039 gcc_assert (GET_CODE (const_part) == CONST_INT);
37a75d53 2040
2041 /* Force the function label into memory. */
2042 temp = force_const_mem (mode, XEXP (XEXP (operand1, 0), 0));
2043 }
2044 else
2045 {
2046 /* No constant part. */
2047 const_part = NULL_RTX;
005a7dd0 2048
37a75d53 2049 /* Force the function label into memory. */
2050 temp = force_const_mem (mode, operand1);
2051 }
9840d99d 2052
81653f9b 2053
2054 /* Get the address of the memory location. PIC-ify it if
2055 necessary. */
2056 temp = XEXP (temp, 0);
2057 if (flag_pic)
2058 temp = legitimize_pic_address (temp, mode, scratch_reg);
2059
2060 /* Put the address of the memory location into our destination
2061 register. */
2062 operands[1] = temp;
e202682d 2063 pa_emit_move_sequence (operands, mode, scratch_reg);
81653f9b 2064
2065 /* Now load from the memory location into our destination
2066 register. */
ad851752 2067 operands[1] = gen_rtx_MEM (Pmode, operands[0]);
e202682d 2068 pa_emit_move_sequence (operands, mode, scratch_reg);
81653f9b 2069
2070 /* And add back in the constant part. */
37a75d53 2071 if (const_part != NULL_RTX)
2072 expand_inc (operand0, const_part);
81653f9b 2073
2074 return 1;
005a7dd0 2075 }
2076
87ad11b0 2077 if (flag_pic)
2078 {
786391d9 2079 rtx_insn *insn;
2ff4bf8d 2080 rtx temp;
2081
2082 if (reload_in_progress || reload_completed)
f756078b 2083 {
2084 temp = scratch_reg ? scratch_reg : operand0;
2085 /* TEMP will hold an address and maybe the actual
2086 data. We want it in WORD_MODE regardless of what mode it
2087 was originally given to us. */
9840d99d 2088 temp = force_mode (word_mode, temp);
f756078b 2089 }
2ff4bf8d 2090 else
2091 temp = gen_reg_rtx (Pmode);
6d36483b 2092
786391d9 2093 /* Force (const (plus (symbol) (const_int))) to memory
2094 if the const_int will not fit in 14 bits. Although
2095 this requires a relocation, the instruction sequence
2096 needed to load the value is shorter. */
81653f9b 2097 if (GET_CODE (operand1) == CONST
96b86ab6 2098 && GET_CODE (XEXP (operand1, 0)) == PLUS
2099 && GET_CODE (XEXP (XEXP (operand1, 0), 1)) == CONST_INT
786391d9 2100 && !INT_14_BITS (XEXP (XEXP (operand1, 0), 1)))
96b86ab6 2101 {
786391d9 2102 rtx x, m = force_const_mem (mode, operand1);
2103
2104 x = legitimize_pic_address (XEXP (m, 0), mode, temp);
2105 x = replace_equiv_address (m, x);
2106 insn = emit_move_insn (operand0, x);
96b86ab6 2107 }
005a7dd0 2108 else
2109 {
2110 operands[1] = legitimize_pic_address (operand1, mode, temp);
dbd3d89d 2111 if (REG_P (operand0) && REG_P (operands[1]))
2112 copy_reg_pointer (operand0, operands[1]);
786391d9 2113 insn = emit_move_insn (operand0, operands[1]);
005a7dd0 2114 }
786391d9 2115
2116 /* Put a REG_EQUAL note on this insn. */
2117 set_unique_reg_note (insn, REG_EQUAL, operand1);
87ad11b0 2118 }
b4a7bf10 2119 /* On the HPPA, references to data space are supposed to use dp,
2120 register 27, but showing it in the RTL inhibits various cse
2121 and loop optimizations. */
6d36483b 2122 else
87ad11b0 2123 {
005a7dd0 2124 rtx temp, set;
2ee034bc 2125
6d36483b 2126 if (reload_in_progress || reload_completed)
f756078b 2127 {
2128 temp = scratch_reg ? scratch_reg : operand0;
2129 /* TEMP will hold an address and maybe the actual
2130 data. We want it in WORD_MODE regardless of what mode it
2131 was originally given to us. */
9840d99d 2132 temp = force_mode (word_mode, temp);
f756078b 2133 }
2ee034bc 2134 else
2135 temp = gen_reg_rtx (mode);
2136
42819d4e 2137 /* Loading a SYMBOL_REF into a register makes that register
9840d99d 2138 safe to be used as the base in an indexed address.
42819d4e 2139
2140 Don't mark hard registers though. That loses. */
47a61b79 2141 if (GET_CODE (operand0) == REG
2142 && REGNO (operand0) >= FIRST_PSEUDO_REGISTER)
dbd3d89d 2143 mark_reg_pointer (operand0, BITS_PER_UNIT);
42819d4e 2144 if (REGNO (temp) >= FIRST_PSEUDO_REGISTER)
dbd3d89d 2145 mark_reg_pointer (temp, BITS_PER_UNIT);
2146
2ee034bc 2147 if (ishighonly)
d1f9b275 2148 set = gen_rtx_SET (operand0, temp);
2ee034bc 2149 else
d1f9b275 2150 set = gen_rtx_SET (operand0,
ad851752 2151 gen_rtx_LO_SUM (mode, temp, operand1));
6d36483b 2152
d1f9b275 2153 emit_insn (gen_rtx_SET (temp, gen_rtx_HIGH (mode, operand1)));
d2498717 2154 emit_insn (set);
166bf021 2155
87ad11b0 2156 }
2ee034bc 2157 return 1;
87ad11b0 2158 }
53ea4c57 2159 else if (tls_referenced_p (operand1))
716b2c5a 2160 {
2161 rtx tmp = operand1;
2162 rtx addend = NULL;
2163
2164 if (GET_CODE (tmp) == CONST && GET_CODE (XEXP (tmp, 0)) == PLUS)
2165 {
2166 addend = XEXP (XEXP (tmp, 0), 1);
2167 tmp = XEXP (XEXP (tmp, 0), 0);
2168 }
2169
2170 gcc_assert (GET_CODE (tmp) == SYMBOL_REF);
2171 tmp = legitimize_tls_address (tmp);
2172 if (addend)
2173 {
2174 tmp = gen_rtx_PLUS (mode, tmp, addend);
2175 tmp = force_operand (tmp, operands[0]);
2176 }
2177 operands[1] = tmp;
2178 }
42faba01 2179 else if (GET_CODE (operand1) != CONST_INT
1e5769bd 2180 || !pa_cint_ok_for_move (UINTVAL (operand1)))
87ad11b0 2181 {
89dcddd6 2182 rtx temp;
2183 rtx_insn *insn;
6bcdc1fb 2184 rtx op1 = operand1;
6edde44b 2185 HOST_WIDE_INT value = 0;
6bcdc1fb 2186 HOST_WIDE_INT insv = 0;
2187 int insert = 0;
2188
6edde44b 2189 if (GET_CODE (operand1) == CONST_INT)
2190 value = INTVAL (operand1);
2191
6bcdc1fb 2192 if (TARGET_64BIT
2193 && GET_CODE (operand1) == CONST_INT
b7d86581 2194 && HOST_BITS_PER_WIDE_INT > 32
5e3c5739 2195 && GET_MODE_BITSIZE (GET_MODE (operand0)) > 32)
2196 {
b7d86581 2197 HOST_WIDE_INT nval;
5e3c5739 2198
93f6e1c7 2199 /* Extract the low order 32 bits of the value and sign extend.
2200 If the new value is the same as the original value, we can
2201 can use the original value as-is. If the new value is
2202 different, we use it and insert the most-significant 32-bits
2203 of the original value into the final result. */
6bcdc1fb 2204 nval = ((value & (((HOST_WIDE_INT) 2 << 31) - 1))
b7d86581 2205 ^ ((HOST_WIDE_INT) 1 << 31)) - ((HOST_WIDE_INT) 1 << 31);
6bcdc1fb 2206 if (value != nval)
5e3c5739 2207 {
93f6e1c7 2208#if HOST_BITS_PER_WIDE_INT > 32
6bcdc1fb 2209 insv = value >= 0 ? value >> 32 : ~(~value >> 32);
93f6e1c7 2210#endif
6bcdc1fb 2211 insert = 1;
2212 value = nval;
5e3c5739 2213 operand1 = GEN_INT (nval);
2214 }
2215 }
2ff4bf8d 2216
2217 if (reload_in_progress || reload_completed)
6bcdc1fb 2218 temp = scratch_reg ? scratch_reg : operand0;
2ff4bf8d 2219 else
2220 temp = gen_reg_rtx (mode);
2221
7c4d3047 2222 /* We don't directly split DImode constants on 32-bit targets
2223 because PLUS uses an 11-bit immediate and the insn sequence
2224 generated is not as efficient as the one using HIGH/LO_SUM. */
2225 if (GET_CODE (operand1) == CONST_INT
58cac6ba 2226 && GET_MODE_BITSIZE (mode) <= BITS_PER_WORD
6bcdc1fb 2227 && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
2228 && !insert)
93f6e1c7 2229 {
7c4d3047 2230 /* Directly break constant into high and low parts. This
93f6e1c7 2231 provides better optimization opportunities because various
2232 passes recognize constants split with PLUS but not LO_SUM.
2233 We use a 14-bit signed low part except when the addition
2234 of 0x4000 to the high part might change the sign of the
2235 high part. */
93f6e1c7 2236 HOST_WIDE_INT low = value & 0x3fff;
2237 HOST_WIDE_INT high = value & ~ 0x3fff;
2238
2239 if (low >= 0x2000)
2240 {
2241 if (high == 0x7fffc000 || (mode == HImode && high == 0x4000))
2242 high += 0x2000;
2243 else
2244 high += 0x4000;
2245 }
2246
2247 low = value - high;
5e3c5739 2248
d1f9b275 2249 emit_insn (gen_rtx_SET (temp, GEN_INT (high)));
93f6e1c7 2250 operands[1] = gen_rtx_PLUS (mode, temp, GEN_INT (low));
2251 }
2252 else
5e3c5739 2253 {
d1f9b275 2254 emit_insn (gen_rtx_SET (temp, gen_rtx_HIGH (mode, operand1)));
93f6e1c7 2255 operands[1] = gen_rtx_LO_SUM (mode, temp, operand1);
5e3c5739 2256 }
9840d99d 2257
6bcdc1fb 2258 insn = emit_move_insn (operands[0], operands[1]);
2259
2260 /* Now insert the most significant 32 bits of the value
2261 into the register. When we don't have a second register
2262 available, it could take up to nine instructions to load
2263 a 64-bit integer constant. Prior to reload, we force
2264 constants that would take more than three instructions
2265 to load to the constant pool. During and after reload,
2266 we have to handle all possible values. */
2267 if (insert)
2268 {
2269 /* Use a HIGH/LO_SUM/INSV sequence if we have a second
2270 register and the value to be inserted is outside the
2271 range that can be loaded with three depdi instructions. */
2272 if (temp != operand0 && (insv >= 16384 || insv < -16384))
2273 {
2274 operand1 = GEN_INT (insv);
2275
d1f9b275 2276 emit_insn (gen_rtx_SET (temp,
6bcdc1fb 2277 gen_rtx_HIGH (mode, operand1)));
2278 emit_move_insn (temp, gen_rtx_LO_SUM (mode, temp, operand1));
81d5e322 2279 if (mode == DImode)
59ed0a0f 2280 insn = emit_insn (gen_insvdi (operand0, GEN_INT (32),
2281 const0_rtx, temp));
81d5e322 2282 else
59ed0a0f 2283 insn = emit_insn (gen_insvsi (operand0, GEN_INT (32),
2284 const0_rtx, temp));
6bcdc1fb 2285 }
2286 else
2287 {
2288 int len = 5, pos = 27;
2289
2290 /* Insert the bits using the depdi instruction. */
2291 while (pos >= 0)
2292 {
2293 HOST_WIDE_INT v5 = ((insv & 31) ^ 16) - 16;
2294 HOST_WIDE_INT sign = v5 < 0;
2295
2296 /* Left extend the insertion. */
2297 insv = (insv >= 0 ? insv >> len : ~(~insv >> len));
2298 while (pos > 0 && (insv & 1) == sign)
2299 {
2300 insv = (insv >= 0 ? insv >> 1 : ~(~insv >> 1));
2301 len += 1;
2302 pos -= 1;
2303 }
2304
81d5e322 2305 if (mode == DImode)
59ed0a0f 2306 insn = emit_insn (gen_insvdi (operand0,
2307 GEN_INT (len),
2308 GEN_INT (pos),
2309 GEN_INT (v5)));
81d5e322 2310 else
59ed0a0f 2311 insn = emit_insn (gen_insvsi (operand0,
2312 GEN_INT (len),
2313 GEN_INT (pos),
2314 GEN_INT (v5)));
6bcdc1fb 2315
2316 len = pos > 0 && pos < 5 ? pos : 5;
2317 pos -= len;
2318 }
2319 }
2320 }
93f6e1c7 2321
24153880 2322 set_unique_reg_note (insn, REG_EQUAL, op1);
93f6e1c7 2323
5e3c5739 2324 return 1;
87ad11b0 2325 }
2326 }
2327 /* Now have insn-emit do whatever it normally does. */
2328 return 0;
2329}
2330
1946138e 2331/* Examine EXP and return nonzero if it contains an ADDR_EXPR (meaning
bd49d362 2332 it will need a link/runtime reloc). */
1946138e 2333
2334int
e202682d 2335pa_reloc_needed (tree exp)
1946138e 2336{
2337 int reloc = 0;
2338
2339 switch (TREE_CODE (exp))
2340 {
2341 case ADDR_EXPR:
2342 return 1;
2343
0de36bdb 2344 case POINTER_PLUS_EXPR:
1946138e 2345 case PLUS_EXPR:
2346 case MINUS_EXPR:
e202682d 2347 reloc = pa_reloc_needed (TREE_OPERAND (exp, 0));
2348 reloc |= pa_reloc_needed (TREE_OPERAND (exp, 1));
1946138e 2349 break;
2350
72dd6141 2351 CASE_CONVERT:
1946138e 2352 case NON_LVALUE_EXPR:
e202682d 2353 reloc = pa_reloc_needed (TREE_OPERAND (exp, 0));
1946138e 2354 break;
2355
2356 case CONSTRUCTOR:
2357 {
729d4a82 2358 tree value;
2359 unsigned HOST_WIDE_INT ix;
2360
2361 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (exp), ix, value)
2362 if (value)
e202682d 2363 reloc |= pa_reloc_needed (value);
1946138e 2364 }
2365 break;
2366
2367 case ERROR_MARK:
2368 break;
7d27e4c9 2369
2370 default:
2371 break;
1946138e 2372 }
2373 return reloc;
2374}
2375
87ad11b0 2376\f
2377/* Return the best assembler insn template
5aedf60c 2378 for moving operands[1] into operands[0] as a fullword. */
611a88e1 2379const char *
e202682d 2380pa_singlemove_string (rtx *operands)
87ad11b0 2381{
3745c59b 2382 HOST_WIDE_INT intval;
2383
87ad11b0 2384 if (GET_CODE (operands[0]) == MEM)
2385 return "stw %r1,%0";
3745c59b 2386 if (GET_CODE (operands[1]) == MEM)
87ad11b0 2387 return "ldw %1,%0";
3745c59b 2388 if (GET_CODE (operands[1]) == CONST_DOUBLE)
9d5108ea 2389 {
3745c59b 2390 long i;
9d5108ea 2391
ecf2283d 2392 gcc_assert (GET_MODE (operands[1]) == SFmode);
9d5108ea 2393
3745c59b 2394 /* Translate the CONST_DOUBLE to a CONST_INT with the same target
2395 bit pattern. */
945f7b03 2396 REAL_VALUE_TO_TARGET_SINGLE (*CONST_DOUBLE_REAL_VALUE (operands[1]), i);
9d5108ea 2397
3745c59b 2398 operands[1] = GEN_INT (i);
2399 /* Fall through to CONST_INT case. */
2400 }
2401 if (GET_CODE (operands[1]) == CONST_INT)
9d5108ea 2402 {
3745c59b 2403 intval = INTVAL (operands[1]);
2404
2405 if (VAL_14_BITS_P (intval))
2406 return "ldi %1,%0";
2407 else if ((intval & 0x7ff) == 0)
2408 return "ldil L'%1,%0";
e202682d 2409 else if (pa_zdepi_cint_p (intval))
e4065f95 2410 return "{zdepi %Z1,%0|depwi,z %Z1,%0}";
9d5108ea 2411 else
2412 return "ldil L'%1,%0\n\tldo R'%1(%0),%0";
2413 }
87ad11b0 2414 return "copy %1,%0";
2415}
2416\f
2417
201f01e9 2418/* Compute position (in OP[1]) and width (in OP[2])
2419 useful for copying IMM to a register using the zdepi
2420 instructions. Store the immediate value to insert in OP[0]. */
611a88e1 2421static void
5c1d8983 2422compute_zdepwi_operands (unsigned HOST_WIDE_INT imm, unsigned *op)
7e10ba53 2423{
e057641f 2424 int lsb, len;
7e10ba53 2425
e057641f 2426 /* Find the least significant set bit in IMM. */
2427 for (lsb = 0; lsb < 32; lsb++)
7e10ba53 2428 {
e057641f 2429 if ((imm & 1) != 0)
7e10ba53 2430 break;
e057641f 2431 imm >>= 1;
7e10ba53 2432 }
2433
e057641f 2434 /* Choose variants based on *sign* of the 5-bit field. */
2435 if ((imm & 0x10) == 0)
2436 len = (lsb <= 28) ? 4 : 32 - lsb;
7e10ba53 2437 else
2438 {
e057641f 2439 /* Find the width of the bitstring in IMM. */
eab96f1c 2440 for (len = 5; len < 32 - lsb; len++)
7e10ba53 2441 {
eab96f1c 2442 if ((imm & ((unsigned HOST_WIDE_INT) 1 << len)) == 0)
7e10ba53 2443 break;
7e10ba53 2444 }
2445
e057641f 2446 /* Sign extend IMM as a 5-bit value. */
2447 imm = (imm & 0xf) - 0x10;
7e10ba53 2448 }
2449
42faba01 2450 op[0] = imm;
2451 op[1] = 31 - lsb;
2452 op[2] = len;
7e10ba53 2453}
2454
5e3c5739 2455/* Compute position (in OP[1]) and width (in OP[2])
2456 useful for copying IMM to a register using the depdi,z
2457 instructions. Store the immediate value to insert in OP[0]. */
e202682d 2458
2459static void
5c1d8983 2460compute_zdepdi_operands (unsigned HOST_WIDE_INT imm, unsigned *op)
5e3c5739 2461{
eab96f1c 2462 int lsb, len, maxlen;
2463
2464 maxlen = MIN (HOST_BITS_PER_WIDE_INT, 64);
5e3c5739 2465
2466 /* Find the least significant set bit in IMM. */
eab96f1c 2467 for (lsb = 0; lsb < maxlen; lsb++)
5e3c5739 2468 {
2469 if ((imm & 1) != 0)
2470 break;
2471 imm >>= 1;
2472 }
2473
2474 /* Choose variants based on *sign* of the 5-bit field. */
2475 if ((imm & 0x10) == 0)
eab96f1c 2476 len = (lsb <= maxlen - 4) ? 4 : maxlen - lsb;
5e3c5739 2477 else
2478 {
2479 /* Find the width of the bitstring in IMM. */
eab96f1c 2480 for (len = 5; len < maxlen - lsb; len++)
5e3c5739 2481 {
ea52c577 2482 if ((imm & ((unsigned HOST_WIDE_INT) 1 << len)) == 0)
5e3c5739 2483 break;
2484 }
2485
eab96f1c 2486 /* Extend length if host is narrow and IMM is negative. */
2487 if (HOST_BITS_PER_WIDE_INT == 32 && len == maxlen - lsb)
2488 len += 32;
2489
5e3c5739 2490 /* Sign extend IMM as a 5-bit value. */
2491 imm = (imm & 0xf) - 0x10;
2492 }
2493
2494 op[0] = imm;
2495 op[1] = 63 - lsb;
2496 op[2] = len;
2497}
2498
87ad11b0 2499/* Output assembler code to perform a doubleword move insn
2500 with operands OPERANDS. */
2501
611a88e1 2502const char *
e202682d 2503pa_output_move_double (rtx *operands)
87ad11b0 2504{
2505 enum { REGOP, OFFSOP, MEMOP, CNSTOP, RNDOP } optype0, optype1;
2506 rtx latehalf[2];
2507 rtx addreg0 = 0, addreg1 = 0;
7738a18b 2508 int highonly = 0;
87ad11b0 2509
2510 /* First classify both operands. */
2511
2512 if (REG_P (operands[0]))
2513 optype0 = REGOP;
2514 else if (offsettable_memref_p (operands[0]))
2515 optype0 = OFFSOP;
2516 else if (GET_CODE (operands[0]) == MEM)
2517 optype0 = MEMOP;
2518 else
2519 optype0 = RNDOP;
2520
2521 if (REG_P (operands[1]))
2522 optype1 = REGOP;
2523 else if (CONSTANT_P (operands[1]))
2524 optype1 = CNSTOP;
2525 else if (offsettable_memref_p (operands[1]))
2526 optype1 = OFFSOP;
2527 else if (GET_CODE (operands[1]) == MEM)
2528 optype1 = MEMOP;
2529 else
2530 optype1 = RNDOP;
2531
2532 /* Check for the cases that the operand constraints are not
ecf2283d 2533 supposed to allow to happen. */
2534 gcc_assert (optype0 == REGOP || optype1 == REGOP);
87ad11b0 2535
e106b699 2536 /* Handle copies between general and floating registers. */
2537
2538 if (optype0 == REGOP && optype1 == REGOP
2539 && FP_REG_P (operands[0]) ^ FP_REG_P (operands[1]))
2540 {
2541 if (FP_REG_P (operands[0]))
2542 {
2543 output_asm_insn ("{stws|stw} %1,-16(%%sp)", operands);
2544 output_asm_insn ("{stws|stw} %R1,-12(%%sp)", operands);
2545 return "{fldds|fldd} -16(%%sp),%0";
2546 }
2547 else
2548 {
2549 output_asm_insn ("{fstds|fstd} %1,-16(%%sp)", operands);
2550 output_asm_insn ("{ldws|ldw} -16(%%sp),%0", operands);
2551 return "{ldws|ldw} -12(%%sp),%R0";
2552 }
2553 }
2554
87ad11b0 2555 /* Handle auto decrementing and incrementing loads and stores
2556 specifically, since the structure of the function doesn't work
2557 for them without major modification. Do it better when we learn
2558 this port about the general inc/dec addressing of PA.
2559 (This was written by tege. Chide him if it doesn't work.) */
2560
2561 if (optype0 == MEMOP)
2562 {
1df0058a 2563 /* We have to output the address syntax ourselves, since print_operand
2564 doesn't deal with the addresses we want to use. Fix this later. */
2565
87ad11b0 2566 rtx addr = XEXP (operands[0], 0);
1df0058a 2567 if (GET_CODE (addr) == POST_INC || GET_CODE (addr) == POST_DEC)
87ad11b0 2568 {
ad851752 2569 rtx high_reg = gen_rtx_SUBREG (SImode, operands[1], 0);
1df0058a 2570
2571 operands[0] = XEXP (addr, 0);
ecf2283d 2572 gcc_assert (GET_CODE (operands[1]) == REG
2573 && GET_CODE (operands[0]) == REG);
1df0058a 2574
ecf2283d 2575 gcc_assert (!reg_overlap_mentioned_p (high_reg, addr));
2576
2577 /* No overlap between high target register and address
2578 register. (We do this in a non-obvious way to
2579 save a register file writeback) */
2580 if (GET_CODE (addr) == POST_INC)
2581 return "{stws|stw},ma %1,8(%0)\n\tstw %R1,-4(%0)";
2582 return "{stws|stw},ma %1,-8(%0)\n\tstw %R1,12(%0)";
a3217f65 2583 }
1df0058a 2584 else if (GET_CODE (addr) == PRE_INC || GET_CODE (addr) == PRE_DEC)
a3217f65 2585 {
ad851752 2586 rtx high_reg = gen_rtx_SUBREG (SImode, operands[1], 0);
1df0058a 2587
2588 operands[0] = XEXP (addr, 0);
ecf2283d 2589 gcc_assert (GET_CODE (operands[1]) == REG
2590 && GET_CODE (operands[0]) == REG);
2591
2592 gcc_assert (!reg_overlap_mentioned_p (high_reg, addr));
2593 /* No overlap between high target register and address
2594 register. (We do this in a non-obvious way to save a
2595 register file writeback) */
2596 if (GET_CODE (addr) == PRE_INC)
2597 return "{stws|stw},mb %1,8(%0)\n\tstw %R1,4(%0)";
2598 return "{stws|stw},mb %1,-8(%0)\n\tstw %R1,4(%0)";
87ad11b0 2599 }
2600 }
2601 if (optype1 == MEMOP)
2602 {
2603 /* We have to output the address syntax ourselves, since print_operand
2604 doesn't deal with the addresses we want to use. Fix this later. */
2605
2606 rtx addr = XEXP (operands[1], 0);
2607 if (GET_CODE (addr) == POST_INC || GET_CODE (addr) == POST_DEC)
2608 {
ad851752 2609 rtx high_reg = gen_rtx_SUBREG (SImode, operands[0], 0);
87ad11b0 2610
2611 operands[1] = XEXP (addr, 0);
ecf2283d 2612 gcc_assert (GET_CODE (operands[0]) == REG
2613 && GET_CODE (operands[1]) == REG);
87ad11b0 2614
2615 if (!reg_overlap_mentioned_p (high_reg, addr))
2616 {
2617 /* No overlap between high target register and address
3857fa62 2618 register. (We do this in a non-obvious way to
87ad11b0 2619 save a register file writeback) */
2620 if (GET_CODE (addr) == POST_INC)
e4065f95 2621 return "{ldws|ldw},ma 8(%1),%0\n\tldw -4(%1),%R0";
01fd4b49 2622 return "{ldws|ldw},ma -8(%1),%0\n\tldw 12(%1),%R0";
87ad11b0 2623 }
2624 else
2625 {
2626 /* This is an undefined situation. We should load into the
2627 address register *and* update that register. Probably
2628 we don't need to handle this at all. */
2629 if (GET_CODE (addr) == POST_INC)
e4065f95 2630 return "ldw 4(%1),%R0\n\t{ldws|ldw},ma 8(%1),%0";
2631 return "ldw 4(%1),%R0\n\t{ldws|ldw},ma -8(%1),%0";
87ad11b0 2632 }
2633 }
2634 else if (GET_CODE (addr) == PRE_INC || GET_CODE (addr) == PRE_DEC)
2635 {
ad851752 2636 rtx high_reg = gen_rtx_SUBREG (SImode, operands[0], 0);
87ad11b0 2637
2638 operands[1] = XEXP (addr, 0);
ecf2283d 2639 gcc_assert (GET_CODE (operands[0]) == REG
2640 && GET_CODE (operands[1]) == REG);
87ad11b0 2641
2642 if (!reg_overlap_mentioned_p (high_reg, addr))
2643 {
2644 /* No overlap between high target register and address
3857fa62 2645 register. (We do this in a non-obvious way to
87ad11b0 2646 save a register file writeback) */
2647 if (GET_CODE (addr) == PRE_INC)
e4065f95 2648 return "{ldws|ldw},mb 8(%1),%0\n\tldw 4(%1),%R0";
2649 return "{ldws|ldw},mb -8(%1),%0\n\tldw 4(%1),%R0";
87ad11b0 2650 }
2651 else
2652 {
2653 /* This is an undefined situation. We should load into the
2654 address register *and* update that register. Probably
2655 we don't need to handle this at all. */
2656 if (GET_CODE (addr) == PRE_INC)
e4065f95 2657 return "ldw 12(%1),%R0\n\t{ldws|ldw},mb 8(%1),%0";
2658 return "ldw -4(%1),%R0\n\t{ldws|ldw},mb -8(%1),%0";
87ad11b0 2659 }
2660 }
12b02046 2661 else if (GET_CODE (addr) == PLUS
2662 && GET_CODE (XEXP (addr, 0)) == MULT)
2663 {
b2f8bd14 2664 rtx xoperands[4];
12b02046 2665
1e237088 2666 /* Load address into left half of destination register. */
2667 xoperands[0] = gen_rtx_SUBREG (SImode, operands[0], 0);
2668 xoperands[1] = XEXP (addr, 1);
2669 xoperands[2] = XEXP (XEXP (addr, 0), 0);
2670 xoperands[3] = XEXP (XEXP (addr, 0), 1);
2671 output_asm_insn ("{sh%O3addl %2,%1,%0|shladd,l %2,%O3,%1,%0}",
2672 xoperands);
2673 return "ldw 4(%0),%R0\n\tldw 0(%0),%0";
2674 }
2675 else if (GET_CODE (addr) == PLUS
2676 && REG_P (XEXP (addr, 0))
2677 && REG_P (XEXP (addr, 1)))
2678 {
2679 rtx xoperands[3];
2680
2681 /* Load address into left half of destination register. */
2682 xoperands[0] = gen_rtx_SUBREG (SImode, operands[0], 0);
2683 xoperands[1] = XEXP (addr, 0);
2684 xoperands[2] = XEXP (addr, 1);
2685 output_asm_insn ("{addl|add,l} %1,%2,%0",
2686 xoperands);
2687 return "ldw 4(%0),%R0\n\tldw 0(%0),%0";
12b02046 2688 }
87ad11b0 2689 }
2690
2691 /* If an operand is an unoffsettable memory ref, find a register
2692 we can increment temporarily to make it refer to the second word. */
2693
2694 if (optype0 == MEMOP)
2695 addreg0 = find_addr_reg (XEXP (operands[0], 0));
2696
2697 if (optype1 == MEMOP)
2698 addreg1 = find_addr_reg (XEXP (operands[1], 0));
2699
2700 /* Ok, we can do one word at a time.
2701 Normally we do the low-numbered word first.
2702
2703 In either case, set up in LATEHALF the operands to use
2704 for the high-numbered word and in some cases alter the
2705 operands in OPERANDS to be suitable for the low-numbered word. */
2706
2707 if (optype0 == REGOP)
ad851752 2708 latehalf[0] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
87ad11b0 2709 else if (optype0 == OFFSOP)
23a61b5a 2710 latehalf[0] = adjust_address_nv (operands[0], SImode, 4);
87ad11b0 2711 else
2712 latehalf[0] = operands[0];
2713
2714 if (optype1 == REGOP)
ad851752 2715 latehalf[1] = gen_rtx_REG (SImode, REGNO (operands[1]) + 1);
87ad11b0 2716 else if (optype1 == OFFSOP)
23a61b5a 2717 latehalf[1] = adjust_address_nv (operands[1], SImode, 4);
87ad11b0 2718 else if (optype1 == CNSTOP)
7738a18b 2719 {
2720 if (GET_CODE (operands[1]) == HIGH)
2721 {
2722 operands[1] = XEXP (operands[1], 0);
2723 highonly = 1;
2724 }
2725 split_double (operands[1], &operands[1], &latehalf[1]);
2726 }
87ad11b0 2727 else
2728 latehalf[1] = operands[1];
2729
2730 /* If the first move would clobber the source of the second one,
2731 do them in the other order.
2732
cf489d53 2733 This can happen in two cases:
87ad11b0 2734
cf489d53 2735 mem -> register where the first half of the destination register
2736 is the same register used in the memory's address. Reload
2737 can create such insns.
87ad11b0 2738
cf489d53 2739 mem in this case will be either register indirect or register
9840d99d 2740 indirect plus a valid offset.
cf489d53 2741
2742 register -> register move where REGNO(dst) == REGNO(src + 1)
9840d99d 2743 someone (Tim/Tege?) claimed this can happen for parameter loads.
cf489d53 2744
2745 Handle mem -> register case first. */
2746 if (optype0 == REGOP
2747 && (optype1 == MEMOP || optype1 == OFFSOP)
2ec77a7c 2748 && refers_to_regno_p (REGNO (operands[0]), operands[1]))
87ad11b0 2749 {
87ad11b0 2750 /* Do the late half first. */
2751 if (addreg1)
6a5d085a 2752 output_asm_insn ("ldo 4(%0),%0", &addreg1);
e202682d 2753 output_asm_insn (pa_singlemove_string (latehalf), latehalf);
cf489d53 2754
2755 /* Then clobber. */
87ad11b0 2756 if (addreg1)
6a5d085a 2757 output_asm_insn ("ldo -4(%0),%0", &addreg1);
e202682d 2758 return pa_singlemove_string (operands);
87ad11b0 2759 }
2760
cf489d53 2761 /* Now handle register -> register case. */
c4fa5937 2762 if (optype0 == REGOP && optype1 == REGOP
2763 && REGNO (operands[0]) == REGNO (operands[1]) + 1)
2764 {
e202682d 2765 output_asm_insn (pa_singlemove_string (latehalf), latehalf);
2766 return pa_singlemove_string (operands);
c4fa5937 2767 }
2768
87ad11b0 2769 /* Normal case: do the two words, low-numbered first. */
2770
e202682d 2771 output_asm_insn (pa_singlemove_string (operands), operands);
87ad11b0 2772
2773 /* Make any unoffsettable addresses point at high-numbered word. */
2774 if (addreg0)
6a5d085a 2775 output_asm_insn ("ldo 4(%0),%0", &addreg0);
87ad11b0 2776 if (addreg1)
6a5d085a 2777 output_asm_insn ("ldo 4(%0),%0", &addreg1);
87ad11b0 2778
7738a18b 2779 /* Do high-numbered word. */
2780 if (highonly)
2781 output_asm_insn ("ldil L'%1,%0", latehalf);
2782 else
2783 output_asm_insn (pa_singlemove_string (latehalf), latehalf);
87ad11b0 2784
2785 /* Undo the adds we just did. */
2786 if (addreg0)
6a5d085a 2787 output_asm_insn ("ldo -4(%0),%0", &addreg0);
87ad11b0 2788 if (addreg1)
6a5d085a 2789 output_asm_insn ("ldo -4(%0),%0", &addreg1);
87ad11b0 2790
2791 return "";
2792}
2793\f
611a88e1 2794const char *
e202682d 2795pa_output_fp_move_double (rtx *operands)
87ad11b0 2796{
2797 if (FP_REG_P (operands[0]))
2798 {
6d36483b 2799 if (FP_REG_P (operands[1])
891b55b4 2800 || operands[1] == CONST0_RTX (GET_MODE (operands[0])))
c6ae275c 2801 output_asm_insn ("fcpy,dbl %f1,%0", operands);
6d36483b 2802 else
27ef382d 2803 output_asm_insn ("fldd%F1 %1,%0", operands);
87ad11b0 2804 }
2805 else if (FP_REG_P (operands[1]))
2806 {
27ef382d 2807 output_asm_insn ("fstd%F0 %1,%0", operands);
87ad11b0 2808 }
ecf2283d 2809 else
891b55b4 2810 {
ecf2283d 2811 rtx xoperands[2];
2812
2813 gcc_assert (operands[1] == CONST0_RTX (GET_MODE (operands[0])));
2814
6d36483b 2815 /* This is a pain. You have to be prepared to deal with an
01cc3b75 2816 arbitrary address here including pre/post increment/decrement.
891b55b4 2817
2818 so avoid this in the MD. */
ecf2283d 2819 gcc_assert (GET_CODE (operands[0]) == REG);
2820
2821 xoperands[1] = gen_rtx_REG (SImode, REGNO (operands[0]) + 1);
2822 xoperands[0] = operands[0];
2823 output_asm_insn ("copy %%r0,%0\n\tcopy %%r0,%1", xoperands);
891b55b4 2824 }
87ad11b0 2825 return "";
2826}
2827\f
2828/* Return a REG that occurs in ADDR with coefficient 1.
2829 ADDR can be effectively incremented by incrementing REG. */
2830
2831static rtx
5c1d8983 2832find_addr_reg (rtx addr)
87ad11b0 2833{
2834 while (GET_CODE (addr) == PLUS)
2835 {
2836 if (GET_CODE (XEXP (addr, 0)) == REG)
2837 addr = XEXP (addr, 0);
2838 else if (GET_CODE (XEXP (addr, 1)) == REG)
2839 addr = XEXP (addr, 1);
2840 else if (CONSTANT_P (XEXP (addr, 0)))
2841 addr = XEXP (addr, 1);
2842 else if (CONSTANT_P (XEXP (addr, 1)))
2843 addr = XEXP (addr, 0);
2844 else
ecf2283d 2845 gcc_unreachable ();
87ad11b0 2846 }
ecf2283d 2847 gcc_assert (GET_CODE (addr) == REG);
2848 return addr;
87ad11b0 2849}
2850
87ad11b0 2851/* Emit code to perform a block move.
2852
87ad11b0 2853 OPERANDS[0] is the destination pointer as a REG, clobbered.
2854 OPERANDS[1] is the source pointer as a REG, clobbered.
42819d4e 2855 OPERANDS[2] is a register for temporary storage.
87ad11b0 2856 OPERANDS[3] is a register for temporary storage.
a7e1bb24 2857 OPERANDS[4] is the size as a CONST_INT
9840d99d 2858 OPERANDS[5] is the alignment safe to use, as a CONST_INT.
5aedf60c 2859 OPERANDS[6] is another temporary register. */
87ad11b0 2860
611a88e1 2861const char *
e202682d 2862pa_output_block_move (rtx *operands, int size_is_constant ATTRIBUTE_UNUSED)
87ad11b0 2863{
2864 int align = INTVAL (operands[5]);
42819d4e 2865 unsigned long n_bytes = INTVAL (operands[4]);
87ad11b0 2866
a7e1bb24 2867 /* We can't move more than a word at a time because the PA
87ad11b0 2868 has no longer integer move insns. (Could use fp mem ops?) */
a7e1bb24 2869 if (align > (TARGET_64BIT ? 8 : 4))
2870 align = (TARGET_64BIT ? 8 : 4);
87ad11b0 2871
42819d4e 2872 /* Note that we know each loop below will execute at least twice
2873 (else we would have open-coded the copy). */
2874 switch (align)
87ad11b0 2875 {
a7e1bb24 2876 case 8:
2877 /* Pre-adjust the loop counter. */
2878 operands[4] = GEN_INT (n_bytes - 16);
2879 output_asm_insn ("ldi %4,%2", operands);
2880
2881 /* Copying loop. */
2882 output_asm_insn ("ldd,ma 8(%1),%3", operands);
2883 output_asm_insn ("ldd,ma 8(%1),%6", operands);
2884 output_asm_insn ("std,ma %3,8(%0)", operands);
2885 output_asm_insn ("addib,>= -16,%2,.-12", operands);
2886 output_asm_insn ("std,ma %6,8(%0)", operands);
2887
2888 /* Handle the residual. There could be up to 7 bytes of
2889 residual to copy! */
2890 if (n_bytes % 16 != 0)
2891 {
2892 operands[4] = GEN_INT (n_bytes % 8);
2893 if (n_bytes % 16 >= 8)
2894 output_asm_insn ("ldd,ma 8(%1),%3", operands);
2895 if (n_bytes % 8 != 0)
2896 output_asm_insn ("ldd 0(%1),%6", operands);
2897 if (n_bytes % 16 >= 8)
2898 output_asm_insn ("std,ma %3,8(%0)", operands);
2899 if (n_bytes % 8 != 0)
2900 output_asm_insn ("stdby,e %6,%4(%0)", operands);
2901 }
2902 return "";
2903
42819d4e 2904 case 4:
2905 /* Pre-adjust the loop counter. */
2906 operands[4] = GEN_INT (n_bytes - 8);
2907 output_asm_insn ("ldi %4,%2", operands);
2908
2909 /* Copying loop. */
e4065f95 2910 output_asm_insn ("{ldws|ldw},ma 4(%1),%3", operands);
2911 output_asm_insn ("{ldws|ldw},ma 4(%1),%6", operands);
2912 output_asm_insn ("{stws|stw},ma %3,4(%0)", operands);
42819d4e 2913 output_asm_insn ("addib,>= -8,%2,.-12", operands);
e4065f95 2914 output_asm_insn ("{stws|stw},ma %6,4(%0)", operands);
42819d4e 2915
2916 /* Handle the residual. There could be up to 7 bytes of
2917 residual to copy! */
2918 if (n_bytes % 8 != 0)
2919 {
2920 operands[4] = GEN_INT (n_bytes % 4);
2921 if (n_bytes % 8 >= 4)
e4065f95 2922 output_asm_insn ("{ldws|ldw},ma 4(%1),%3", operands);
42819d4e 2923 if (n_bytes % 4 != 0)
34940871 2924 output_asm_insn ("ldw 0(%1),%6", operands);
42819d4e 2925 if (n_bytes % 8 >= 4)
e4065f95 2926 output_asm_insn ("{stws|stw},ma %3,4(%0)", operands);
42819d4e 2927 if (n_bytes % 4 != 0)
e4065f95 2928 output_asm_insn ("{stbys|stby},e %6,%4(%0)", operands);
42819d4e 2929 }
2930 return "";
87ad11b0 2931
42819d4e 2932 case 2:
2933 /* Pre-adjust the loop counter. */
2934 operands[4] = GEN_INT (n_bytes - 4);
2935 output_asm_insn ("ldi %4,%2", operands);
87ad11b0 2936
42819d4e 2937 /* Copying loop. */
e4065f95 2938 output_asm_insn ("{ldhs|ldh},ma 2(%1),%3", operands);
2939 output_asm_insn ("{ldhs|ldh},ma 2(%1),%6", operands);
2940 output_asm_insn ("{sths|sth},ma %3,2(%0)", operands);
42819d4e 2941 output_asm_insn ("addib,>= -4,%2,.-12", operands);
e4065f95 2942 output_asm_insn ("{sths|sth},ma %6,2(%0)", operands);
87ad11b0 2943
42819d4e 2944 /* Handle the residual. */
2945 if (n_bytes % 4 != 0)
2946 {
2947 if (n_bytes % 4 >= 2)
e4065f95 2948 output_asm_insn ("{ldhs|ldh},ma 2(%1),%3", operands);
42819d4e 2949 if (n_bytes % 2 != 0)
34940871 2950 output_asm_insn ("ldb 0(%1),%6", operands);
42819d4e 2951 if (n_bytes % 4 >= 2)
e4065f95 2952 output_asm_insn ("{sths|sth},ma %3,2(%0)", operands);
42819d4e 2953 if (n_bytes % 2 != 0)
34940871 2954 output_asm_insn ("stb %6,0(%0)", operands);
42819d4e 2955 }
2956 return "";
87ad11b0 2957
42819d4e 2958 case 1:
2959 /* Pre-adjust the loop counter. */
2960 operands[4] = GEN_INT (n_bytes - 2);
2961 output_asm_insn ("ldi %4,%2", operands);
87ad11b0 2962
42819d4e 2963 /* Copying loop. */
e4065f95 2964 output_asm_insn ("{ldbs|ldb},ma 1(%1),%3", operands);
2965 output_asm_insn ("{ldbs|ldb},ma 1(%1),%6", operands);
2966 output_asm_insn ("{stbs|stb},ma %3,1(%0)", operands);
42819d4e 2967 output_asm_insn ("addib,>= -2,%2,.-12", operands);
e4065f95 2968 output_asm_insn ("{stbs|stb},ma %6,1(%0)", operands);
87ad11b0 2969
42819d4e 2970 /* Handle the residual. */
2971 if (n_bytes % 2 != 0)
2972 {
34940871 2973 output_asm_insn ("ldb 0(%1),%3", operands);
2974 output_asm_insn ("stb %3,0(%0)", operands);
42819d4e 2975 }
2976 return "";
87ad11b0 2977
42819d4e 2978 default:
ecf2283d 2979 gcc_unreachable ();
87ad11b0 2980 }
87ad11b0 2981}
58e17b0b 2982
2983/* Count the number of insns necessary to handle this block move.
2984
2985 Basic structure is the same as emit_block_move, except that we
2986 count insns rather than emit them. */
2987
611a88e1 2988static int
89dcddd6 2989compute_movmem_length (rtx_insn *insn)
58e17b0b 2990{
2991 rtx pat = PATTERN (insn);
fc1fb057 2992 unsigned int align = INTVAL (XEXP (XVECEXP (pat, 0, 7), 0));
2993 unsigned long n_bytes = INTVAL (XEXP (XVECEXP (pat, 0, 6), 0));
42819d4e 2994 unsigned int n_insns = 0;
58e17b0b 2995
2996 /* We can't move more than four bytes at a time because the PA
2997 has no longer integer move insns. (Could use fp mem ops?) */
a7e1bb24 2998 if (align > (TARGET_64BIT ? 8 : 4))
2999 align = (TARGET_64BIT ? 8 : 4);
58e17b0b 3000
79bfe6ae 3001 /* The basic copying loop. */
42819d4e 3002 n_insns = 6;
58e17b0b 3003
42819d4e 3004 /* Residuals. */
3005 if (n_bytes % (2 * align) != 0)
58e17b0b 3006 {
79bfe6ae 3007 if ((n_bytes % (2 * align)) >= align)
3008 n_insns += 2;
3009
3010 if ((n_bytes % align) != 0)
3011 n_insns += 2;
58e17b0b 3012 }
42819d4e 3013
3014 /* Lengths are expressed in bytes now; each insn is 4 bytes. */
3015 return n_insns * 4;
58e17b0b 3016}
a7e1bb24 3017
3018/* Emit code to perform a block clear.
3019
3020 OPERANDS[0] is the destination pointer as a REG, clobbered.
3021 OPERANDS[1] is a register for temporary storage.
3022 OPERANDS[2] is the size as a CONST_INT
3023 OPERANDS[3] is the alignment safe to use, as a CONST_INT. */
3024
3025const char *
e202682d 3026pa_output_block_clear (rtx *operands, int size_is_constant ATTRIBUTE_UNUSED)
a7e1bb24 3027{
3028 int align = INTVAL (operands[3]);
3029 unsigned long n_bytes = INTVAL (operands[2]);
3030
3031 /* We can't clear more than a word at a time because the PA
3032 has no longer integer move insns. */
3033 if (align > (TARGET_64BIT ? 8 : 4))
3034 align = (TARGET_64BIT ? 8 : 4);
3035
3036 /* Note that we know each loop below will execute at least twice
3037 (else we would have open-coded the copy). */
3038 switch (align)
3039 {
3040 case 8:
3041 /* Pre-adjust the loop counter. */
3042 operands[2] = GEN_INT (n_bytes - 16);
3043 output_asm_insn ("ldi %2,%1", operands);
3044
3045 /* Loop. */
3046 output_asm_insn ("std,ma %%r0,8(%0)", operands);
3047 output_asm_insn ("addib,>= -16,%1,.-4", operands);
3048 output_asm_insn ("std,ma %%r0,8(%0)", operands);
3049
3050 /* Handle the residual. There could be up to 7 bytes of
3051 residual to copy! */
3052 if (n_bytes % 16 != 0)
3053 {
3054 operands[2] = GEN_INT (n_bytes % 8);
3055 if (n_bytes % 16 >= 8)
3056 output_asm_insn ("std,ma %%r0,8(%0)", operands);
3057 if (n_bytes % 8 != 0)
3058 output_asm_insn ("stdby,e %%r0,%2(%0)", operands);
3059 }
3060 return "";
3061
3062 case 4:
3063 /* Pre-adjust the loop counter. */
3064 operands[2] = GEN_INT (n_bytes - 8);
3065 output_asm_insn ("ldi %2,%1", operands);
3066
3067 /* Loop. */
3068 output_asm_insn ("{stws|stw},ma %%r0,4(%0)", operands);
3069 output_asm_insn ("addib,>= -8,%1,.-4", operands);
3070 output_asm_insn ("{stws|stw},ma %%r0,4(%0)", operands);
3071
3072 /* Handle the residual. There could be up to 7 bytes of
3073 residual to copy! */
3074 if (n_bytes % 8 != 0)
3075 {
3076 operands[2] = GEN_INT (n_bytes % 4);
3077 if (n_bytes % 8 >= 4)
3078 output_asm_insn ("{stws|stw},ma %%r0,4(%0)", operands);
3079 if (n_bytes % 4 != 0)
3080 output_asm_insn ("{stbys|stby},e %%r0,%2(%0)", operands);
3081 }
3082 return "";
3083
3084 case 2:
3085 /* Pre-adjust the loop counter. */
3086 operands[2] = GEN_INT (n_bytes - 4);
3087 output_asm_insn ("ldi %2,%1", operands);
3088
3089 /* Loop. */
3090 output_asm_insn ("{sths|sth},ma %%r0,2(%0)", operands);
3091 output_asm_insn ("addib,>= -4,%1,.-4", operands);
3092 output_asm_insn ("{sths|sth},ma %%r0,2(%0)", operands);
3093
3094 /* Handle the residual. */
3095 if (n_bytes % 4 != 0)
3096 {
3097 if (n_bytes % 4 >= 2)
3098 output_asm_insn ("{sths|sth},ma %%r0,2(%0)", operands);
3099 if (n_bytes % 2 != 0)
3100 output_asm_insn ("stb %%r0,0(%0)", operands);
3101 }
3102 return "";
3103
3104 case 1:
3105 /* Pre-adjust the loop counter. */
3106 operands[2] = GEN_INT (n_bytes - 2);
3107 output_asm_insn ("ldi %2,%1", operands);
3108
3109 /* Loop. */
3110 output_asm_insn ("{stbs|stb},ma %%r0,1(%0)", operands);
3111 output_asm_insn ("addib,>= -2,%1,.-4", operands);
3112 output_asm_insn ("{stbs|stb},ma %%r0,1(%0)", operands);
3113
3114 /* Handle the residual. */
3115 if (n_bytes % 2 != 0)
3116 output_asm_insn ("stb %%r0,0(%0)", operands);
3117
3118 return "";
3119
3120 default:
ecf2283d 3121 gcc_unreachable ();
a7e1bb24 3122 }
3123}
3124
3125/* Count the number of insns necessary to handle this block move.
3126
3127 Basic structure is the same as emit_block_move, except that we
3128 count insns rather than emit them. */
3129
3130static int
89dcddd6 3131compute_clrmem_length (rtx_insn *insn)
a7e1bb24 3132{
3133 rtx pat = PATTERN (insn);
3134 unsigned int align = INTVAL (XEXP (XVECEXP (pat, 0, 4), 0));
3135 unsigned long n_bytes = INTVAL (XEXP (XVECEXP (pat, 0, 3), 0));
3136 unsigned int n_insns = 0;
3137
3138 /* We can't clear more than a word at a time because the PA
3139 has no longer integer move insns. */
3140 if (align > (TARGET_64BIT ? 8 : 4))
3141 align = (TARGET_64BIT ? 8 : 4);
3142
3143 /* The basic loop. */
3144 n_insns = 4;
3145
3146 /* Residuals. */
3147 if (n_bytes % (2 * align) != 0)
3148 {
3149 if ((n_bytes % (2 * align)) >= align)
3150 n_insns++;
3151
3152 if ((n_bytes % align) != 0)
3153 n_insns++;
3154 }
3155
3156 /* Lengths are expressed in bytes now; each insn is 4 bytes. */
3157 return n_insns * 4;
3158}
87ad11b0 3159\f
3160
611a88e1 3161const char *
e202682d 3162pa_output_and (rtx *operands)
e057641f 3163{
d6f01525 3164 if (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) != 0)
e057641f 3165 {
3745c59b 3166 unsigned HOST_WIDE_INT mask = INTVAL (operands[2]);
e057641f 3167 int ls0, ls1, ms0, p, len;
3168
3169 for (ls0 = 0; ls0 < 32; ls0++)
3170 if ((mask & (1 << ls0)) == 0)
3171 break;
3172
3173 for (ls1 = ls0; ls1 < 32; ls1++)
3174 if ((mask & (1 << ls1)) != 0)
3175 break;
3176
3177 for (ms0 = ls1; ms0 < 32; ms0++)
3178 if ((mask & (1 << ms0)) == 0)
3179 break;
3180
ecf2283d 3181 gcc_assert (ms0 == 32);
e057641f 3182
3183 if (ls1 == 32)
3184 {
3185 len = ls0;
3186
ecf2283d 3187 gcc_assert (len);
e057641f 3188
ef618fe4 3189 operands[2] = GEN_INT (len);
e4065f95 3190 return "{extru|extrw,u} %1,31,%2,%0";
e057641f 3191 }
3192 else
3193 {
3194 /* We could use this `depi' for the case above as well, but `depi'
3195 requires one more register file access than an `extru'. */
3196
3197 p = 31 - ls0;
3198 len = ls1 - ls0;
3199
ef618fe4 3200 operands[2] = GEN_INT (p);
3201 operands[3] = GEN_INT (len);
e4065f95 3202 return "{depi|depwi} 0,%2,%3,%0";
e057641f 3203 }
3204 }
3205 else
3206 return "and %1,%2,%0";
3207}
3208
5e3c5739 3209/* Return a string to perform a bitwise-and of operands[1] with operands[2]
3210 storing the result in operands[0]. */
9aadea62 3211const char *
e202682d 3212pa_output_64bit_and (rtx *operands)
5e3c5739 3213{
3214 if (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) != 0)
3215 {
3216 unsigned HOST_WIDE_INT mask = INTVAL (operands[2]);
b7d86581 3217 int ls0, ls1, ms0, p, len;
5e3c5739 3218
3219 for (ls0 = 0; ls0 < HOST_BITS_PER_WIDE_INT; ls0++)
b7d86581 3220 if ((mask & ((unsigned HOST_WIDE_INT) 1 << ls0)) == 0)
5e3c5739 3221 break;
3222
3223 for (ls1 = ls0; ls1 < HOST_BITS_PER_WIDE_INT; ls1++)
b7d86581 3224 if ((mask & ((unsigned HOST_WIDE_INT) 1 << ls1)) != 0)
5e3c5739 3225 break;
3226
3227 for (ms0 = ls1; ms0 < HOST_BITS_PER_WIDE_INT; ms0++)
b7d86581 3228 if ((mask & ((unsigned HOST_WIDE_INT) 1 << ms0)) == 0)
5e3c5739 3229 break;
3230
ecf2283d 3231 gcc_assert (ms0 == HOST_BITS_PER_WIDE_INT);
5e3c5739 3232
3233 if (ls1 == HOST_BITS_PER_WIDE_INT)
3234 {
3235 len = ls0;
3236
ecf2283d 3237 gcc_assert (len);
5e3c5739 3238
3239 operands[2] = GEN_INT (len);
3240 return "extrd,u %1,63,%2,%0";
3241 }
3242 else
3243 {
3244 /* We could use this `depi' for the case above as well, but `depi'
3245 requires one more register file access than an `extru'. */
3246
3247 p = 63 - ls0;
3248 len = ls1 - ls0;
3249
3250 operands[2] = GEN_INT (p);
3251 operands[3] = GEN_INT (len);
3252 return "depdi 0,%2,%3,%0";
3253 }
3254 }
3255 else
3256 return "and %1,%2,%0";
3257}
3258
611a88e1 3259const char *
e202682d 3260pa_output_ior (rtx *operands)
e057641f 3261{
3745c59b 3262 unsigned HOST_WIDE_INT mask = INTVAL (operands[2]);
57ed30e5 3263 int bs0, bs1, p, len;
6d36483b 3264
c9da5f4d 3265 if (INTVAL (operands[2]) == 0)
3266 return "copy %1,%0";
e057641f 3267
c9da5f4d 3268 for (bs0 = 0; bs0 < 32; bs0++)
3269 if ((mask & (1 << bs0)) != 0)
3270 break;
e057641f 3271
c9da5f4d 3272 for (bs1 = bs0; bs1 < 32; bs1++)
3273 if ((mask & (1 << bs1)) == 0)
3274 break;
e057641f 3275
ecf2283d 3276 gcc_assert (bs1 == 32 || ((unsigned HOST_WIDE_INT) 1 << bs1) > mask);
e057641f 3277
c9da5f4d 3278 p = 31 - bs0;
3279 len = bs1 - bs0;
e057641f 3280
ef618fe4 3281 operands[2] = GEN_INT (p);
3282 operands[3] = GEN_INT (len);
e4065f95 3283 return "{depi|depwi} -1,%2,%3,%0";
e057641f 3284}
5e3c5739 3285
3286/* Return a string to perform a bitwise-and of operands[1] with operands[2]
3287 storing the result in operands[0]. */
9aadea62 3288const char *
e202682d 3289pa_output_64bit_ior (rtx *operands)
5e3c5739 3290{
3291 unsigned HOST_WIDE_INT mask = INTVAL (operands[2]);
b7d86581 3292 int bs0, bs1, p, len;
5e3c5739 3293
3294 if (INTVAL (operands[2]) == 0)
3295 return "copy %1,%0";
3296
3297 for (bs0 = 0; bs0 < HOST_BITS_PER_WIDE_INT; bs0++)
b7d86581 3298 if ((mask & ((unsigned HOST_WIDE_INT) 1 << bs0)) != 0)
5e3c5739 3299 break;
3300
3301 for (bs1 = bs0; bs1 < HOST_BITS_PER_WIDE_INT; bs1++)
b7d86581 3302 if ((mask & ((unsigned HOST_WIDE_INT) 1 << bs1)) == 0)
5e3c5739 3303 break;
3304
ecf2283d 3305 gcc_assert (bs1 == HOST_BITS_PER_WIDE_INT
3306 || ((unsigned HOST_WIDE_INT) 1 << bs1) > mask);
5e3c5739 3307
3308 p = 63 - bs0;
3309 len = bs1 - bs0;
3310
3311 operands[2] = GEN_INT (p);
3312 operands[3] = GEN_INT (len);
3313 return "depdi -1,%2,%3,%0";
3314}
e057641f 3315\f
58356836 3316/* Target hook for assembling integer objects. This code handles
e678758c 3317 aligned SI and DI integers specially since function references
3318 must be preceded by P%. */
58356836 3319
3320static bool
5c1d8983 3321pa_assemble_integer (rtx x, unsigned int size, int aligned_p)
58356836 3322{
1ec12a16 3323 bool result;
3324 tree decl = NULL;
3325
3326 /* When we have a SYMBOL_REF with a SYMBOL_REF_DECL, we need to call
3327 call assemble_external and set the SYMBOL_REF_DECL to NULL before
3328 calling output_addr_const. Otherwise, it may call assemble_external
3329 in the midst of outputing the assembler code for the SYMBOL_REF.
3330 We restore the SYMBOL_REF_DECL after the output is done. */
3331 if (GET_CODE (x) == SYMBOL_REF)
3332 {
3333 decl = SYMBOL_REF_DECL (x);
3334 if (decl)
3335 {
3336 assemble_external (decl);
3337 SET_SYMBOL_REF_DECL (x, NULL);
3338 }
3339 }
3340
e678758c 3341 if (size == UNITS_PER_WORD
3342 && aligned_p
58356836 3343 && function_label_operand (x, VOIDmode))
3344 {
1c0165c8 3345 fputs (size == 8? "\t.dword\t" : "\t.word\t", asm_out_file);
3346
3347 /* We don't want an OPD when generating fast indirect calls. */
3348 if (!TARGET_FAST_INDIRECT_CALLS)
3349 fputs ("P%", asm_out_file);
3350
58356836 3351 output_addr_const (asm_out_file, x);
3352 fputc ('\n', asm_out_file);
1ec12a16 3353 result = true;
58356836 3354 }
1ec12a16 3355 else
3356 result = default_assemble_integer (x, size, aligned_p);
3357
3358 if (decl)
3359 SET_SYMBOL_REF_DECL (x, decl);
3360
3361 return result;
58356836 3362}
3363\f
87ad11b0 3364/* Output an ascii string. */
57ed30e5 3365void
e202682d 3366pa_output_ascii (FILE *file, const char *p, int size)
87ad11b0 3367{
3368 int i;
3369 int chars_output;
5aedf60c 3370 unsigned char partial_output[16]; /* Max space 4 chars can occupy. */
87ad11b0 3371
3372 /* The HP assembler can only take strings of 256 characters at one
3373 time. This is a limitation on input line length, *not* the
3374 length of the string. Sigh. Even worse, it seems that the
3375 restriction is in number of input characters (see \xnn &
3376 \whatever). So we have to do this very carefully. */
3377
9c0ac0fd 3378 fputs ("\t.STRING \"", file);
87ad11b0 3379
3380 chars_output = 0;
3381 for (i = 0; i < size; i += 4)
3382 {
3383 int co = 0;
3384 int io = 0;
3385 for (io = 0, co = 0; io < MIN (4, size - i); io++)
3386 {
bf8aac3e 3387 register unsigned int c = (unsigned char) p[i + io];
87ad11b0 3388
3389 if (c == '\"' || c == '\\')
3390 partial_output[co++] = '\\';
3391 if (c >= ' ' && c < 0177)
3392 partial_output[co++] = c;
3393 else
3394 {
3395 unsigned int hexd;
3396 partial_output[co++] = '\\';
3397 partial_output[co++] = 'x';
3398 hexd = c / 16 - 0 + '0';
3399 if (hexd > '9')
3400 hexd -= '9' - 'a' + 1;
3401 partial_output[co++] = hexd;
3402 hexd = c % 16 - 0 + '0';
3403 if (hexd > '9')
3404 hexd -= '9' - 'a' + 1;
3405 partial_output[co++] = hexd;
3406 }
3407 }
3408 if (chars_output + co > 243)
3409 {
9c0ac0fd 3410 fputs ("\"\n\t.STRING \"", file);
87ad11b0 3411 chars_output = 0;
3412 }
a584fe8a 3413 fwrite (partial_output, 1, (size_t) co, file);
87ad11b0 3414 chars_output += co;
3415 co = 0;
3416 }
9c0ac0fd 3417 fputs ("\"\n", file);
87ad11b0 3418}
c533da59 3419
3420/* Try to rewrite floating point comparisons & branches to avoid
3421 useless add,tr insns.
3422
3423 CHECK_NOTES is nonzero if we should examine REG_DEAD notes
3424 to see if FPCC is dead. CHECK_NOTES is nonzero for the
3425 first attempt to remove useless add,tr insns. It is zero
3426 for the second pass as reorg sometimes leaves bogus REG_DEAD
3427 notes lying around.
3428
3429 When CHECK_NOTES is zero we can only eliminate add,tr insns
3430 when there's a 1:1 correspondence between fcmp and ftest/fbranch
3431 instructions. */
611a88e1 3432static void
5c1d8983 3433remove_useless_addtr_insns (int check_notes)
c533da59 3434{
50895eab 3435 rtx_insn *insn;
c533da59 3436 static int pass = 0;
3437
3438 /* This is fairly cheap, so always run it when optimizing. */
3439 if (optimize > 0)
3440 {
3441 int fcmp_count = 0;
3442 int fbranch_count = 0;
3443
3444 /* Walk all the insns in this function looking for fcmp & fbranch
3445 instructions. Keep track of how many of each we find. */
2efea8c0 3446 for (insn = get_insns (); insn; insn = next_insn (insn))
c533da59 3447 {
3448 rtx tmp;
3449
3450 /* Ignore anything that isn't an INSN or a JUMP_INSN. */
aa90bb35 3451 if (! NONJUMP_INSN_P (insn) && ! JUMP_P (insn))
c533da59 3452 continue;
3453
3454 tmp = PATTERN (insn);
3455
3456 /* It must be a set. */
3457 if (GET_CODE (tmp) != SET)
3458 continue;
3459
3460 /* If the destination is CCFP, then we've found an fcmp insn. */
3461 tmp = SET_DEST (tmp);
3462 if (GET_CODE (tmp) == REG && REGNO (tmp) == 0)
3463 {
3464 fcmp_count++;
3465 continue;
3466 }
9840d99d 3467
c533da59 3468 tmp = PATTERN (insn);
3469 /* If this is an fbranch instruction, bump the fbranch counter. */
3470 if (GET_CODE (tmp) == SET
3471 && SET_DEST (tmp) == pc_rtx
3472 && GET_CODE (SET_SRC (tmp)) == IF_THEN_ELSE
3473 && GET_CODE (XEXP (SET_SRC (tmp), 0)) == NE
3474 && GET_CODE (XEXP (XEXP (SET_SRC (tmp), 0), 0)) == REG
3475 && REGNO (XEXP (XEXP (SET_SRC (tmp), 0), 0)) == 0)
3476 {
3477 fbranch_count++;
3478 continue;
3479 }
3480 }
3481
3482
3483 /* Find all floating point compare + branch insns. If possible,
3484 reverse the comparison & the branch to avoid add,tr insns. */
2efea8c0 3485 for (insn = get_insns (); insn; insn = next_insn (insn))
c533da59 3486 {
50895eab 3487 rtx tmp;
3488 rtx_insn *next;
c533da59 3489
3490 /* Ignore anything that isn't an INSN. */
aa90bb35 3491 if (! NONJUMP_INSN_P (insn))
c533da59 3492 continue;
3493
3494 tmp = PATTERN (insn);
3495
3496 /* It must be a set. */
3497 if (GET_CODE (tmp) != SET)
3498 continue;
3499
3500 /* The destination must be CCFP, which is register zero. */
3501 tmp = SET_DEST (tmp);
3502 if (GET_CODE (tmp) != REG || REGNO (tmp) != 0)
3503 continue;
3504
3505 /* INSN should be a set of CCFP.
3506
3507 See if the result of this insn is used in a reversed FP
3508 conditional branch. If so, reverse our condition and
3509 the branch. Doing so avoids useless add,tr insns. */
3510 next = next_insn (insn);
3511 while (next)
3512 {
3513 /* Jumps, calls and labels stop our search. */
aa90bb35 3514 if (JUMP_P (next) || CALL_P (next) || LABEL_P (next))
c533da59 3515 break;
3516
3517 /* As does another fcmp insn. */
aa90bb35 3518 if (NONJUMP_INSN_P (next)
c533da59 3519 && GET_CODE (PATTERN (next)) == SET
3520 && GET_CODE (SET_DEST (PATTERN (next))) == REG
3521 && REGNO (SET_DEST (PATTERN (next))) == 0)
3522 break;
3523
3524 next = next_insn (next);
3525 }
3526
3527 /* Is NEXT_INSN a branch? */
aa90bb35 3528 if (next && JUMP_P (next))
c533da59 3529 {
3530 rtx pattern = PATTERN (next);
3531
a361b456 3532 /* If it a reversed fp conditional branch (e.g. uses add,tr)
c533da59 3533 and CCFP dies, then reverse our conditional and the branch
3534 to avoid the add,tr. */
3535 if (GET_CODE (pattern) == SET
3536 && SET_DEST (pattern) == pc_rtx
3537 && GET_CODE (SET_SRC (pattern)) == IF_THEN_ELSE
3538 && GET_CODE (XEXP (SET_SRC (pattern), 0)) == NE
3539 && GET_CODE (XEXP (XEXP (SET_SRC (pattern), 0), 0)) == REG
3540 && REGNO (XEXP (XEXP (SET_SRC (pattern), 0), 0)) == 0
3541 && GET_CODE (XEXP (SET_SRC (pattern), 1)) == PC
3542 && (fcmp_count == fbranch_count
3543 || (check_notes
3544 && find_regno_note (next, REG_DEAD, 0))))
3545 {
3546 /* Reverse the branch. */
3547 tmp = XEXP (SET_SRC (pattern), 1);
3548 XEXP (SET_SRC (pattern), 1) = XEXP (SET_SRC (pattern), 2);
3549 XEXP (SET_SRC (pattern), 2) = tmp;
3550 INSN_CODE (next) = -1;
3551
3552 /* Reverse our condition. */
3553 tmp = PATTERN (insn);
3554 PUT_CODE (XEXP (tmp, 1),
ea52c577 3555 (reverse_condition_maybe_unordered
3556 (GET_CODE (XEXP (tmp, 1)))));
c533da59 3557 }
3558 }
3559 }
3560 }
3561
3562 pass = !pass;
3563
3564}
87ad11b0 3565\f
ea52c577 3566/* You may have trouble believing this, but this is the 32 bit HP-PA
3567 stack layout. Wow.
87ad11b0 3568
3569 Offset Contents
3570
3571 Variable arguments (optional; any number may be allocated)
3572
3573 SP-(4*(N+9)) arg word N
3574 : :
3575 SP-56 arg word 5
3576 SP-52 arg word 4
3577
3578 Fixed arguments (must be allocated; may remain unused)
3579
3580 SP-48 arg word 3
3581 SP-44 arg word 2
3582 SP-40 arg word 1
3583 SP-36 arg word 0
3584
3585 Frame Marker
3586
3587 SP-32 External Data Pointer (DP)
3588 SP-28 External sr4
3589 SP-24 External/stub RP (RP')
3590 SP-20 Current RP
3591 SP-16 Static Link
3592 SP-12 Clean up
3593 SP-8 Calling Stub RP (RP'')
3594 SP-4 Previous SP
3595
3596 Top of Frame
3597
3598 SP-0 Stack Pointer (points to next available address)
3599
3600*/
3601
3602/* This function saves registers as follows. Registers marked with ' are
3603 this function's registers (as opposed to the previous function's).
3604 If a frame_pointer isn't needed, r4 is saved as a general register;
3605 the space for the frame pointer is still allocated, though, to keep
3606 things simple.
3607
3608
3609 Top of Frame
3610
3611 SP (FP') Previous FP
3612 SP + 4 Alignment filler (sigh)
3613 SP + 8 Space for locals reserved here.
3614 .
3615 .
3616 .
3617 SP + n All call saved register used.
3618 .
3619 .
3620 .
3621 SP + o All call saved fp registers used.
3622 .
3623 .
3624 .
3625 SP + p (SP') points to next available address.
6d36483b 3626
87ad11b0 3627*/
3628
17d9b0c3 3629/* Global variables set by output_function_prologue(). */
cc858176 3630/* Size of frame. Need to know this to emit return insns from
3631 leaf procedures. */
6bcdc1fb 3632static HOST_WIDE_INT actual_fsize, local_fsize;
3633static int save_fregs;
cc858176 3634
daee63dd 3635/* Emit RTL to store REG at the memory location specified by BASE+DISP.
359a0be8 3636 Handle case where DISP > 8k by using the add_high_const patterns.
daee63dd 3637
3638 Note in DISP > 8k case, we will leave the high part of the address
3639 in %r1. There is code in expand_hppa_{prologue,epilogue} that knows this.*/
7014838c 3640
6a2c16d6 3641static void
6bcdc1fb 3642store_reg (int reg, HOST_WIDE_INT disp, int base)
87ad11b0 3643{
89dcddd6 3644 rtx dest, src, basereg;
3645 rtx_insn *insn;
cc858176 3646
3647 src = gen_rtx_REG (word_mode, reg);
3648 basereg = gen_rtx_REG (Pmode, base);
87ad11b0 3649 if (VAL_14_BITS_P (disp))
daee63dd 3650 {
29c05e22 3651 dest = gen_rtx_MEM (word_mode, plus_constant (Pmode, basereg, disp));
6a2c16d6 3652 insn = emit_move_insn (dest, src);
daee63dd 3653 }
6bcdc1fb 3654 else if (TARGET_64BIT && !VAL_32_BITS_P (disp))
3655 {
3656 rtx delta = GEN_INT (disp);
3657 rtx tmpreg = gen_rtx_REG (Pmode, 1);
3658
3659 emit_move_insn (tmpreg, delta);
5ecfd087 3660 insn = emit_move_insn (tmpreg, gen_rtx_PLUS (Pmode, tmpreg, basereg));
6bcdc1fb 3661 if (DO_FRAME_NOTES)
3662 {
b9c74b4d 3663 add_reg_note (insn, REG_FRAME_RELATED_EXPR,
d1f9b275 3664 gen_rtx_SET (tmpreg,
b9c74b4d 3665 gen_rtx_PLUS (Pmode, basereg, delta)));
5ecfd087 3666 RTX_FRAME_RELATED_P (insn) = 1;
6bcdc1fb 3667 }
5ecfd087 3668 dest = gen_rtx_MEM (word_mode, tmpreg);
3669 insn = emit_move_insn (dest, src);
6bcdc1fb 3670 }
daee63dd 3671 else
3672 {
cc858176 3673 rtx delta = GEN_INT (disp);
3674 rtx high = gen_rtx_PLUS (Pmode, basereg, gen_rtx_HIGH (Pmode, delta));
3675 rtx tmpreg = gen_rtx_REG (Pmode, 1);
6bcdc1fb 3676
cc858176 3677 emit_move_insn (tmpreg, high);
3678 dest = gen_rtx_MEM (word_mode, gen_rtx_LO_SUM (Pmode, tmpreg, delta));
6a2c16d6 3679 insn = emit_move_insn (dest, src);
3680 if (DO_FRAME_NOTES)
b9c74b4d 3681 add_reg_note (insn, REG_FRAME_RELATED_EXPR,
d1f9b275 3682 gen_rtx_SET (gen_rtx_MEM (word_mode,
b9c74b4d 3683 gen_rtx_PLUS (word_mode,
3684 basereg,
3685 delta)),
3686 src));
daee63dd 3687 }
6a2c16d6 3688
3689 if (DO_FRAME_NOTES)
3690 RTX_FRAME_RELATED_P (insn) = 1;
daee63dd 3691}
3692
a584fe8a 3693/* Emit RTL to store REG at the memory location specified by BASE and then
3694 add MOD to BASE. MOD must be <= 8k. */
daee63dd 3695
a584fe8a 3696static void
6bcdc1fb 3697store_reg_modify (int base, int reg, HOST_WIDE_INT mod)
a584fe8a 3698{
89dcddd6 3699 rtx basereg, srcreg, delta;
3700 rtx_insn *insn;
a584fe8a 3701
ecf2283d 3702 gcc_assert (VAL_14_BITS_P (mod));
a584fe8a 3703
3704 basereg = gen_rtx_REG (Pmode, base);
3705 srcreg = gen_rtx_REG (word_mode, reg);
3706 delta = GEN_INT (mod);
3707
3708 insn = emit_insn (gen_post_store (basereg, srcreg, delta));
3709 if (DO_FRAME_NOTES)
3710 {
3711 RTX_FRAME_RELATED_P (insn) = 1;
3712
3713 /* RTX_FRAME_RELATED_P must be set on each frame related set
dc873350 3714 in a parallel with more than one element. */
3715 RTX_FRAME_RELATED_P (XVECEXP (PATTERN (insn), 0, 0)) = 1;
3716 RTX_FRAME_RELATED_P (XVECEXP (PATTERN (insn), 0, 1)) = 1;
a584fe8a 3717 }
3718}
3719
3720/* Emit RTL to set REG to the value specified by BASE+DISP. Handle case
3721 where DISP > 8k by using the add_high_const patterns. NOTE indicates
3722 whether to add a frame note or not.
3723
3724 In the DISP > 8k case, we leave the high part of the address in %r1.
3725 There is code in expand_hppa_{prologue,epilogue} that knows about this. */
7014838c 3726
6a2c16d6 3727static void
6bcdc1fb 3728set_reg_plus_d (int reg, int base, HOST_WIDE_INT disp, int note)
87ad11b0 3729{
89dcddd6 3730 rtx_insn *insn;
cc858176 3731
87ad11b0 3732 if (VAL_14_BITS_P (disp))
cc858176 3733 {
6a2c16d6 3734 insn = emit_move_insn (gen_rtx_REG (Pmode, reg),
29c05e22 3735 plus_constant (Pmode,
3736 gen_rtx_REG (Pmode, base), disp));
cc858176 3737 }
6bcdc1fb 3738 else if (TARGET_64BIT && !VAL_32_BITS_P (disp))
3739 {
3740 rtx basereg = gen_rtx_REG (Pmode, base);
3741 rtx delta = GEN_INT (disp);
3742 rtx tmpreg = gen_rtx_REG (Pmode, 1);
3743
3744 emit_move_insn (tmpreg, delta);
3745 insn = emit_move_insn (gen_rtx_REG (Pmode, reg),
3746 gen_rtx_PLUS (Pmode, tmpreg, basereg));
5ecfd087 3747 if (DO_FRAME_NOTES)
b9c74b4d 3748 add_reg_note (insn, REG_FRAME_RELATED_EXPR,
d1f9b275 3749 gen_rtx_SET (tmpreg,
b9c74b4d 3750 gen_rtx_PLUS (Pmode, basereg, delta)));
6bcdc1fb 3751 }
87ad11b0 3752 else
daee63dd 3753 {
6a2c16d6 3754 rtx basereg = gen_rtx_REG (Pmode, base);
cc858176 3755 rtx delta = GEN_INT (disp);
6bcdc1fb 3756 rtx tmpreg = gen_rtx_REG (Pmode, 1);
6a2c16d6 3757
6bcdc1fb 3758 emit_move_insn (tmpreg,
6a2c16d6 3759 gen_rtx_PLUS (Pmode, basereg,
cc858176 3760 gen_rtx_HIGH (Pmode, delta)));
6a2c16d6 3761 insn = emit_move_insn (gen_rtx_REG (Pmode, reg),
6bcdc1fb 3762 gen_rtx_LO_SUM (Pmode, tmpreg, delta));
daee63dd 3763 }
6a2c16d6 3764
a584fe8a 3765 if (DO_FRAME_NOTES && note)
6a2c16d6 3766 RTX_FRAME_RELATED_P (insn) = 1;
87ad11b0 3767}
3768
6bcdc1fb 3769HOST_WIDE_INT
85aa2f28 3770pa_compute_frame_size (poly_int64 size, int *fregs_live)
87ad11b0 3771{
256f9b65 3772 int freg_saved = 0;
3773 int i, j;
3774
e202682d 3775 /* The code in pa_expand_prologue and pa_expand_epilogue must
256f9b65 3776 be consistent with the rounding and size calculation done here.
3777 Change them at the same time. */
3778
3779 /* We do our own stack alignment. First, round the size of the
3780 stack locals up to a word boundary. */
3781 size = (size + UNITS_PER_WORD - 1) & ~(UNITS_PER_WORD - 1);
3782
3783 /* Space for previous frame pointer + filler. If any frame is
8374586c 3784 allocated, we need to add in the TARGET_STARTING_FRAME_OFFSET. We
256f9b65 3785 waste some space here for the sake of HP compatibility. The
3786 first slot is only used when the frame pointer is needed. */
3787 if (size || frame_pointer_needed)
8374586c 3788 size += pa_starting_frame_offset ();
256f9b65 3789
a584fe8a 3790 /* If the current function calls __builtin_eh_return, then we need
3791 to allocate stack space for registers that will hold data for
3792 the exception handler. */
18d50ae6 3793 if (DO_FRAME_NOTES && crtl->calls_eh_return)
a584fe8a 3794 {
3795 unsigned int i;
3796
3797 for (i = 0; EH_RETURN_DATA_REGNO (i) != INVALID_REGNUM; ++i)
3798 continue;
256f9b65 3799 size += i * UNITS_PER_WORD;
a584fe8a 3800 }
3801
3a51bad9 3802 /* Account for space used by the callee general register saves. */
256f9b65 3803 for (i = 18, j = frame_pointer_needed ? 4 : 3; i >= j; i--)
3072d30e 3804 if (df_regs_ever_live_p (i))
256f9b65 3805 size += UNITS_PER_WORD;
df0651dc 3806
3a51bad9 3807 /* Account for space used by the callee floating point register saves. */
bac38c40 3808 for (i = FP_SAVED_REG_LAST; i >= FP_SAVED_REG_FIRST; i -= FP_REG_STEP)
3072d30e 3809 if (df_regs_ever_live_p (i)
3810 || (!TARGET_64BIT && df_regs_ever_live_p (i + 1)))
df0651dc 3811 {
256f9b65 3812 freg_saved = 1;
002fc5f7 3813
3a51bad9 3814 /* We always save both halves of the FP register, so always
3815 increment the frame size by 8 bytes. */
256f9b65 3816 size += 8;
df0651dc 3817 }
3818
256f9b65 3819 /* If any of the floating registers are saved, account for the
3820 alignment needed for the floating point register save block. */
3821 if (freg_saved)
3822 {
3823 size = (size + 7) & ~7;
3824 if (fregs_live)
3825 *fregs_live = 1;
3826 }
3827
3a51bad9 3828 /* The various ABIs include space for the outgoing parameters in the
256f9b65 3829 size of the current function's stack frame. We don't need to align
3830 for the outgoing arguments as their alignment is set by the final
3831 rounding for the frame as a whole. */
abe32cce 3832 size += crtl->outgoing_args_size;
3a51bad9 3833
3834 /* Allocate space for the fixed frame marker. This space must be
e9ec370e 3835 allocated for any function that makes calls or allocates
3a51bad9 3836 stack space. */
d5bf7b64 3837 if (!crtl->is_leaf || size)
e9ec370e 3838 size += TARGET_64BIT ? 48 : 32;
5e3c5739 3839
256f9b65 3840 /* Finally, round to the preferred stack boundary. */
2247cc5f 3841 return ((size + PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1)
3842 & ~(PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1));
87ad11b0 3843}
6d36483b 3844
17d9b0c3 3845/* On HP-PA, move-double insns between fpu and cpu need an 8-byte block
3846 of memory. If any fpu reg is used in the function, we allocate
3847 such a block here, at the bottom of the frame, just in case it's needed.
3848
3849 If this function is a leaf procedure, then we may choose not
3850 to do a "save" insn. The decision about whether or not
3851 to do this is made in regclass.c. */
3852
6988553d 3853static void
718e6d56 3854pa_output_function_prologue (FILE *file)
87ad11b0 3855{
d151162a 3856 /* The function's label and associated .PROC must never be
3857 separated and must be output *after* any profiling declarations
3858 to avoid changing spaces/subspaces within a procedure. */
3859 ASM_OUTPUT_LABEL (file, XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0));
3860 fputs ("\t.PROC\n", file);
3861
e202682d 3862 /* pa_expand_prologue does the dirty work now. We just need
daee63dd 3863 to output the assembler directives which denote the start
3864 of a function. */
6bcdc1fb 3865 fprintf (file, "\t.CALLINFO FRAME=" HOST_WIDE_INT_PRINT_DEC, actual_fsize);
d5bf7b64 3866 if (crtl->is_leaf)
9c0ac0fd 3867 fputs (",NO_CALLS", file);
df6b92e4 3868 else
3869 fputs (",CALLS", file);
3870 if (rp_saved)
3871 fputs (",SAVE_RP", file);
f3ba7709 3872
e9ec370e 3873 /* The SAVE_SP flag is used to indicate that register %r3 is stored
3874 at the beginning of the frame and that it is used as the frame
3875 pointer for the frame. We do this because our current frame
3ce7ff97 3876 layout doesn't conform to that specified in the HP runtime
e9ec370e 3877 documentation and we need a way to indicate to programs such as
3878 GDB where %r3 is saved. The SAVE_SP flag was chosen because it
3879 isn't used by HP compilers but is supported by the assembler.
3880 However, SAVE_SP is supposed to indicate that the previous stack
3881 pointer has been saved in the frame marker. */
f3ba7709 3882 if (frame_pointer_needed)
9c0ac0fd 3883 fputs (",SAVE_SP", file);
f3ba7709 3884
a9960cdc 3885 /* Pass on information about the number of callee register saves
9b0c95be 3886 performed in the prologue.
3887
3888 The compiler is supposed to pass the highest register number
6d36483b 3889 saved, the assembler then has to adjust that number before
9b0c95be 3890 entering it into the unwind descriptor (to account for any
6d36483b 3891 caller saved registers with lower register numbers than the
9b0c95be 3892 first callee saved register). */
3893 if (gr_saved)
3894 fprintf (file, ",ENTRY_GR=%d", gr_saved + 2);
3895
3896 if (fr_saved)
3897 fprintf (file, ",ENTRY_FR=%d", fr_saved + 11);
a9960cdc 3898
9c0ac0fd 3899 fputs ("\n\t.ENTRY\n", file);
daee63dd 3900
2efea8c0 3901 remove_useless_addtr_insns (0);
daee63dd 3902}
3903
57ed30e5 3904void
e202682d 3905pa_expand_prologue (void)
daee63dd 3906{
afd7b680 3907 int merge_sp_adjust_with_store = 0;
6bcdc1fb 3908 HOST_WIDE_INT size = get_frame_size ();
3909 HOST_WIDE_INT offset;
3910 int i;
89dcddd6 3911 rtx tmpreg;
3912 rtx_insn *insn;
daee63dd 3913
a9960cdc 3914 gr_saved = 0;
3915 fr_saved = 0;
3ddcbb9d 3916 save_fregs = 0;
3a51bad9 3917
256f9b65 3918 /* Compute total size for frame pointer, filler, locals and rounding to
e202682d 3919 the next word boundary. Similar code appears in pa_compute_frame_size
256f9b65 3920 and must be changed in tandem with this code. */
3921 local_fsize = (size + UNITS_PER_WORD - 1) & ~(UNITS_PER_WORD - 1);
3922 if (local_fsize || frame_pointer_needed)
8374586c 3923 local_fsize += pa_starting_frame_offset ();
3a51bad9 3924
e202682d 3925 actual_fsize = pa_compute_frame_size (size, &save_fregs);
8c0dd614 3926 if (flag_stack_usage_info)
990495a7 3927 current_function_static_stack_size = actual_fsize;
87ad11b0 3928
daee63dd 3929 /* Compute a few things we will use often. */
440c23df 3930 tmpreg = gen_rtx_REG (word_mode, 1);
87ad11b0 3931
6d36483b 3932 /* Save RP first. The calling conventions manual states RP will
cc858176 3933 always be stored into the caller's frame at sp - 20 or sp - 16
5e3c5739 3934 depending on which ABI is in use. */
18d50ae6 3935 if (df_regs_ever_live_p (2) || crtl->calls_eh_return)
df6b92e4 3936 {
3937 store_reg (2, TARGET_64BIT ? -16 : -20, STACK_POINTER_REGNUM);
3938 rp_saved = true;
3939 }
3940 else
3941 rp_saved = false;
6d36483b 3942
daee63dd 3943 /* Allocate the local frame and set up the frame pointer if needed. */
58361f39 3944 if (actual_fsize != 0)
3945 {
3946 if (frame_pointer_needed)
3947 {
3948 /* Copy the old frame pointer temporarily into %r1. Set up the
3949 new stack pointer, then store away the saved old frame pointer
a584fe8a 3950 into the stack at sp and at the same time update the stack
3951 pointer by actual_fsize bytes. Two versions, first
58361f39 3952 handles small (<8k) frames. The second handles large (>=8k)
3953 frames. */
68bc9ae6 3954 insn = emit_move_insn (tmpreg, hard_frame_pointer_rtx);
a584fe8a 3955 if (DO_FRAME_NOTES)
dc873350 3956 RTX_FRAME_RELATED_P (insn) = 1;
a584fe8a 3957
68bc9ae6 3958 insn = emit_move_insn (hard_frame_pointer_rtx, stack_pointer_rtx);
a584fe8a 3959 if (DO_FRAME_NOTES)
3960 RTX_FRAME_RELATED_P (insn) = 1;
3961
3962 if (VAL_14_BITS_P (actual_fsize))
3963 store_reg_modify (STACK_POINTER_REGNUM, 1, actual_fsize);
58361f39 3964 else
3965 {
3966 /* It is incorrect to store the saved frame pointer at *sp,
3967 then increment sp (writes beyond the current stack boundary).
3968
3969 So instead use stwm to store at *sp and post-increment the
3970 stack pointer as an atomic operation. Then increment sp to
3971 finish allocating the new frame. */
6bcdc1fb 3972 HOST_WIDE_INT adjust1 = 8192 - 64;
3973 HOST_WIDE_INT adjust2 = actual_fsize - adjust1;
cc858176 3974
a584fe8a 3975 store_reg_modify (STACK_POINTER_REGNUM, 1, adjust1);
6a2c16d6 3976 set_reg_plus_d (STACK_POINTER_REGNUM, STACK_POINTER_REGNUM,
a584fe8a 3977 adjust2, 1);
58361f39 3978 }
a584fe8a 3979
e9ec370e 3980 /* We set SAVE_SP in frames that need a frame pointer. Thus,
3981 we need to store the previous stack pointer (frame pointer)
3982 into the frame marker on targets that use the HP unwind
3983 library. This allows the HP unwind library to be used to
3984 unwind GCC frames. However, we are not fully compatible
3985 with the HP library because our frame layout differs from
3986 that specified in the HP runtime specification.
3987
3988 We don't want a frame note on this instruction as the frame
3989 marker moves during dynamic stack allocation.
3990
3991 This instruction also serves as a blockage to prevent
3992 register spills from being scheduled before the stack
3993 pointer is raised. This is necessary as we store
3994 registers using the frame pointer as a base register,
3995 and the frame pointer is set before sp is raised. */
3996 if (TARGET_HPUX_UNWIND_LIBRARY)
3997 {
3998 rtx addr = gen_rtx_PLUS (word_mode, stack_pointer_rtx,
3999 GEN_INT (TARGET_64BIT ? -8 : -4));
4000
4001 emit_move_insn (gen_rtx_MEM (word_mode, addr),
68bc9ae6 4002 hard_frame_pointer_rtx);
e9ec370e 4003 }
4004 else
4005 emit_insn (gen_blockage ());
58361f39 4006 }
4007 /* no frame pointer needed. */
4008 else
4009 {
4010 /* In some cases we can perform the first callee register save
4011 and allocating the stack frame at the same time. If so, just
4012 make a note of it and defer allocating the frame until saving
4013 the callee registers. */
df6edefa 4014 if (VAL_14_BITS_P (actual_fsize) && local_fsize == 0)
58361f39 4015 merge_sp_adjust_with_store = 1;
f4d3c071 4016 /* Cannot optimize. Adjust the stack frame by actual_fsize
58361f39 4017 bytes. */
4018 else
6a2c16d6 4019 set_reg_plus_d (STACK_POINTER_REGNUM, STACK_POINTER_REGNUM,
a584fe8a 4020 actual_fsize, 1);
58361f39 4021 }
372ef038 4022 }
4023
6d36483b 4024 /* Normal register save.
daee63dd 4025
4026 Do not save the frame pointer in the frame_pointer_needed case. It
4027 was done earlier. */
87ad11b0 4028 if (frame_pointer_needed)
4029 {
a584fe8a 4030 offset = local_fsize;
4031
4032 /* Saving the EH return data registers in the frame is the simplest
4033 way to get the frame unwind information emitted. We put them
4034 just before the general registers. */
18d50ae6 4035 if (DO_FRAME_NOTES && crtl->calls_eh_return)
a584fe8a 4036 {
4037 unsigned int i, regno;
4038
4039 for (i = 0; ; ++i)
4040 {
4041 regno = EH_RETURN_DATA_REGNO (i);
4042 if (regno == INVALID_REGNUM)
4043 break;
4044
68bc9ae6 4045 store_reg (regno, offset, HARD_FRAME_POINTER_REGNUM);
a584fe8a 4046 offset += UNITS_PER_WORD;
4047 }
4048 }
4049
4050 for (i = 18; i >= 4; i--)
3072d30e 4051 if (df_regs_ever_live_p (i) && ! call_used_regs[i])
87ad11b0 4052 {
68bc9ae6 4053 store_reg (i, offset, HARD_FRAME_POINTER_REGNUM);
6ec4380b 4054 offset += UNITS_PER_WORD;
a9960cdc 4055 gr_saved++;
87ad11b0 4056 }
7f7c4869 4057 /* Account for %r3 which is saved in a special place. */
9b0c95be 4058 gr_saved++;
87ad11b0 4059 }
daee63dd 4060 /* No frame pointer needed. */
87ad11b0 4061 else
4062 {
a584fe8a 4063 offset = local_fsize - actual_fsize;
4064
4065 /* Saving the EH return data registers in the frame is the simplest
4066 way to get the frame unwind information emitted. */
18d50ae6 4067 if (DO_FRAME_NOTES && crtl->calls_eh_return)
a584fe8a 4068 {
4069 unsigned int i, regno;
4070
4071 for (i = 0; ; ++i)
4072 {
4073 regno = EH_RETURN_DATA_REGNO (i);
4074 if (regno == INVALID_REGNUM)
4075 break;
4076
4077 /* If merge_sp_adjust_with_store is nonzero, then we can
4078 optimize the first save. */
4079 if (merge_sp_adjust_with_store)
4080 {
4081 store_reg_modify (STACK_POINTER_REGNUM, regno, -offset);
4082 merge_sp_adjust_with_store = 0;
4083 }
4084 else
4085 store_reg (regno, offset, STACK_POINTER_REGNUM);
4086 offset += UNITS_PER_WORD;
4087 }
4088 }
4089
4090 for (i = 18; i >= 3; i--)
3072d30e 4091 if (df_regs_ever_live_p (i) && ! call_used_regs[i])
87ad11b0 4092 {
6d36483b 4093 /* If merge_sp_adjust_with_store is nonzero, then we can
afd7b680 4094 optimize the first GR save. */
201f01e9 4095 if (merge_sp_adjust_with_store)
afd7b680 4096 {
a584fe8a 4097 store_reg_modify (STACK_POINTER_REGNUM, i, -offset);
afd7b680 4098 merge_sp_adjust_with_store = 0;
afd7b680 4099 }
4100 else
6a2c16d6 4101 store_reg (i, offset, STACK_POINTER_REGNUM);
6ec4380b 4102 offset += UNITS_PER_WORD;
a9960cdc 4103 gr_saved++;
87ad11b0 4104 }
daee63dd 4105
afd7b680 4106 /* If we wanted to merge the SP adjustment with a GR save, but we never
daee63dd 4107 did any GR saves, then just emit the adjustment here. */
201f01e9 4108 if (merge_sp_adjust_with_store)
6a2c16d6 4109 set_reg_plus_d (STACK_POINTER_REGNUM, STACK_POINTER_REGNUM,
a584fe8a 4110 actual_fsize, 1);
87ad11b0 4111 }
6d36483b 4112
df6edefa 4113 /* The hppa calling conventions say that %r19, the pic offset
4114 register, is saved at sp - 32 (in this function's frame)
4115 when generating PIC code. FIXME: What is the correct thing
4116 to do for functions which make no calls and allocate no
4117 frame? Do we need to allocate a frame, or can we just omit
8f177faf 4118 the save? For now we'll just omit the save.
4119
4120 We don't want a note on this insn as the frame marker can
4121 move if there is a dynamic stack allocation. */
df6edefa 4122 if (flag_pic && actual_fsize != 0 && !TARGET_64BIT)
8f177faf 4123 {
4124 rtx addr = gen_rtx_PLUS (word_mode, stack_pointer_rtx, GEN_INT (-32));
4125
4126 emit_move_insn (gen_rtx_MEM (word_mode, addr), pic_offset_table_rtx);
4127
4128 }
df6edefa 4129
87ad11b0 4130 /* Align pointer properly (doubleword boundary). */
4131 offset = (offset + 7) & ~7;
4132
4133 /* Floating point register store. */
4134 if (save_fregs)
87ad11b0 4135 {
a584fe8a 4136 rtx base;
4137
daee63dd 4138 /* First get the frame or stack pointer to the start of the FP register
4139 save area. */
a1ab4fa3 4140 if (frame_pointer_needed)
a584fe8a 4141 {
68bc9ae6 4142 set_reg_plus_d (1, HARD_FRAME_POINTER_REGNUM, offset, 0);
4143 base = hard_frame_pointer_rtx;
a584fe8a 4144 }
a1ab4fa3 4145 else
a584fe8a 4146 {
4147 set_reg_plus_d (1, STACK_POINTER_REGNUM, offset, 0);
4148 base = stack_pointer_rtx;
4149 }
daee63dd 4150
4151 /* Now actually save the FP registers. */
bac38c40 4152 for (i = FP_SAVED_REG_LAST; i >= FP_SAVED_REG_FIRST; i -= FP_REG_STEP)
7f7c4869 4153 {
3072d30e 4154 if (df_regs_ever_live_p (i)
4155 || (! TARGET_64BIT && df_regs_ever_live_p (i + 1)))
7f7c4869 4156 {
89dcddd6 4157 rtx addr, reg;
4158 rtx_insn *insn;
e89dda49 4159 addr = gen_rtx_MEM (DFmode,
4160 gen_rtx_POST_INC (word_mode, tmpreg));
cc858176 4161 reg = gen_rtx_REG (DFmode, i);
6a2c16d6 4162 insn = emit_move_insn (addr, reg);
4163 if (DO_FRAME_NOTES)
4164 {
4165 RTX_FRAME_RELATED_P (insn) = 1;
a584fe8a 4166 if (TARGET_64BIT)
4167 {
4168 rtx mem = gen_rtx_MEM (DFmode,
29c05e22 4169 plus_constant (Pmode, base,
4170 offset));
b9c74b4d 4171 add_reg_note (insn, REG_FRAME_RELATED_EXPR,
d1f9b275 4172 gen_rtx_SET (mem, reg));
a584fe8a 4173 }
4174 else
4175 {
4176 rtx meml = gen_rtx_MEM (SFmode,
29c05e22 4177 plus_constant (Pmode, base,
4178 offset));
a584fe8a 4179 rtx memr = gen_rtx_MEM (SFmode,
29c05e22 4180 plus_constant (Pmode, base,
4181 offset + 4));
a584fe8a 4182 rtx regl = gen_rtx_REG (SFmode, i);
4183 rtx regr = gen_rtx_REG (SFmode, i + 1);
d1f9b275 4184 rtx setl = gen_rtx_SET (meml, regl);
4185 rtx setr = gen_rtx_SET (memr, regr);
a584fe8a 4186 rtvec vec;
4187
4188 RTX_FRAME_RELATED_P (setl) = 1;
4189 RTX_FRAME_RELATED_P (setr) = 1;
4190 vec = gen_rtvec (2, setl, setr);
b9c74b4d 4191 add_reg_note (insn, REG_FRAME_RELATED_EXPR,
4192 gen_rtx_SEQUENCE (VOIDmode, vec));
a584fe8a 4193 }
6a2c16d6 4194 }
4195 offset += GET_MODE_SIZE (DFmode);
7f7c4869 4196 fr_saved++;
4197 }
4198 }
87ad11b0 4199 }
4200}
4201
cc858176 4202/* Emit RTL to load REG from the memory location specified by BASE+DISP.
4203 Handle case where DISP > 8k by using the add_high_const patterns. */
4204
6a2c16d6 4205static void
6bcdc1fb 4206load_reg (int reg, HOST_WIDE_INT disp, int base)
cc858176 4207{
6bcdc1fb 4208 rtx dest = gen_rtx_REG (word_mode, reg);
4209 rtx basereg = gen_rtx_REG (Pmode, base);
4210 rtx src;
cc858176 4211
cc858176 4212 if (VAL_14_BITS_P (disp))
29c05e22 4213 src = gen_rtx_MEM (word_mode, plus_constant (Pmode, basereg, disp));
6bcdc1fb 4214 else if (TARGET_64BIT && !VAL_32_BITS_P (disp))
cc858176 4215 {
6bcdc1fb 4216 rtx delta = GEN_INT (disp);
4217 rtx tmpreg = gen_rtx_REG (Pmode, 1);
4218
4219 emit_move_insn (tmpreg, delta);
4220 if (TARGET_DISABLE_INDEXING)
4221 {
4222 emit_move_insn (tmpreg, gen_rtx_PLUS (Pmode, tmpreg, basereg));
4223 src = gen_rtx_MEM (word_mode, tmpreg);
4224 }
4225 else
4226 src = gen_rtx_MEM (word_mode, gen_rtx_PLUS (Pmode, tmpreg, basereg));
cc858176 4227 }
4228 else
4229 {
4230 rtx delta = GEN_INT (disp);
4231 rtx high = gen_rtx_PLUS (Pmode, basereg, gen_rtx_HIGH (Pmode, delta));
4232 rtx tmpreg = gen_rtx_REG (Pmode, 1);
6bcdc1fb 4233
cc858176 4234 emit_move_insn (tmpreg, high);
4235 src = gen_rtx_MEM (word_mode, gen_rtx_LO_SUM (Pmode, tmpreg, delta));
cc858176 4236 }
6bcdc1fb 4237
4238 emit_move_insn (dest, src);
cc858176 4239}
daee63dd 4240
2247cc5f 4241/* Update the total code bytes output to the text section. */
4242
4243static void
21a47bc9 4244update_total_code_bytes (unsigned int nbytes)
2247cc5f 4245{
4246 if ((TARGET_PORTABLE_RUNTIME || !TARGET_GAS || !TARGET_SOM)
8a05c3c2 4247 && !IN_NAMED_SECTION_P (cfun->decl))
2247cc5f 4248 {
21a47bc9 4249 unsigned int old_total = total_code_bytes;
2247cc5f 4250
21a47bc9 4251 total_code_bytes += nbytes;
2247cc5f 4252
21a47bc9 4253 /* Be prepared to handle overflows. */
4254 if (old_total > total_code_bytes)
4255 total_code_bytes = UINT_MAX;
2247cc5f 4256 }
4257}
4258
17d9b0c3 4259/* This function generates the assembly code for function exit.
4260 Args are as for output_function_prologue ().
4261
4262 The function epilogue should not depend on the current stack
4263 pointer! It should use the frame pointer only. This is mandatory
4264 because of alloca; we also take advantage of it to omit stack
6dc3b0d9 4265 adjustments before returning. */
17d9b0c3 4266
4267static void
718e6d56 4268pa_output_function_epilogue (FILE *file)
87ad11b0 4269{
d3ffa7b4 4270 rtx_insn *insn = get_last_insn ();
4805aa90 4271 bool extra_nop;
2247cc5f 4272
e202682d 4273 /* pa_expand_epilogue does the dirty work now. We just need
daee63dd 4274 to output the assembler directives which denote the end
3695c664 4275 of a function.
4276
4277 To make debuggers happy, emit a nop if the epilogue was completely
4278 eliminated due to a volatile call as the last insn in the
6d36483b 4279 current function. That way the return address (in %r2) will
3695c664 4280 always point to a valid instruction in the current function. */
4281
4282 /* Get the last real insn. */
aa90bb35 4283 if (NOTE_P (insn))
3695c664 4284 insn = prev_real_insn (insn);
4285
4286 /* If it is a sequence, then look inside. */
aa90bb35 4287 if (insn && NONJUMP_INSN_P (insn) && GET_CODE (PATTERN (insn)) == SEQUENCE)
d3ffa7b4 4288 insn = as_a <rtx_sequence *> (PATTERN (insn))-> insn (0);
3695c664 4289
6d36483b 4290 /* If insn is a CALL_INSN, then it must be a call to a volatile
3695c664 4291 function (otherwise there would be epilogue insns). */
aa90bb35 4292 if (insn && CALL_P (insn))
90c41894 4293 {
4294 fputs ("\tnop\n", file);
4805aa90 4295 extra_nop = true;
90c41894 4296 }
4805aa90 4297 else
4298 extra_nop = false;
6d36483b 4299
9c0ac0fd 4300 fputs ("\t.EXIT\n\t.PROCEND\n", file);
90c41894 4301
916c9cef 4302 if (TARGET_SOM && TARGET_GAS)
4303 {
be85a9c4 4304 /* We are done with this subspace except possibly for some additional
916c9cef 4305 debug information. Forget that we are in this subspace to ensure
4306 that the next function is output in its own subspace. */
2f14b1f9 4307 in_section = NULL;
78962d38 4308 cfun->machine->in_nsubspa = 2;
916c9cef 4309 }
4310
4805aa90 4311 /* Thunks do their own insn accounting. */
be85a9c4 4312 if (cfun->is_thunk)
4313 return;
4314
2247cc5f 4315 if (INSN_ADDRESSES_SET_P ())
90c41894 4316 {
4805aa90 4317 last_address = extra_nop ? 4 : 0;
2247cc5f 4318 insn = get_last_nonnote_insn ();
93801ad9 4319 if (insn)
4320 {
4321 last_address += INSN_ADDRESSES (INSN_UID (insn));
4322 if (INSN_P (insn))
4323 last_address += insn_default_length (insn);
4324 }
2247cc5f 4325 last_address = ((last_address + FUNCTION_BOUNDARY / BITS_PER_UNIT - 1)
4326 & ~(FUNCTION_BOUNDARY / BITS_PER_UNIT - 1));
90c41894 4327 }
21a47bc9 4328 else
4329 last_address = UINT_MAX;
2247cc5f 4330
4331 /* Finally, update the total number of code bytes output so far. */
4332 update_total_code_bytes (last_address);
daee63dd 4333}
afd7b680 4334
daee63dd 4335void
e202682d 4336pa_expand_epilogue (void)
daee63dd 4337{
6d36483b 4338 rtx tmpreg;
6bcdc1fb 4339 HOST_WIDE_INT offset;
4340 HOST_WIDE_INT ret_off = 0;
4341 int i;
58361f39 4342 int merge_sp_adjust_with_load = 0;
daee63dd 4343
4344 /* We will use this often. */
440c23df 4345 tmpreg = gen_rtx_REG (word_mode, 1);
daee63dd 4346
4347 /* Try to restore RP early to avoid load/use interlocks when
4348 RP gets used in the return (bv) instruction. This appears to still
6dc3b0d9 4349 be necessary even when we schedule the prologue and epilogue. */
df6b92e4 4350 if (rp_saved)
58361f39 4351 {
4352 ret_off = TARGET_64BIT ? -16 : -20;
4353 if (frame_pointer_needed)
4354 {
68bc9ae6 4355 load_reg (2, ret_off, HARD_FRAME_POINTER_REGNUM);
58361f39 4356 ret_off = 0;
4357 }
4358 else
4359 {
4360 /* No frame pointer, and stack is smaller than 8k. */
4361 if (VAL_14_BITS_P (ret_off - actual_fsize))
4362 {
6a2c16d6 4363 load_reg (2, ret_off - actual_fsize, STACK_POINTER_REGNUM);
58361f39 4364 ret_off = 0;
4365 }
4366 }
4367 }
daee63dd 4368
4369 /* General register restores. */
87ad11b0 4370 if (frame_pointer_needed)
4371 {
a584fe8a 4372 offset = local_fsize;
4373
4374 /* If the current function calls __builtin_eh_return, then we need
4375 to restore the saved EH data registers. */
18d50ae6 4376 if (DO_FRAME_NOTES && crtl->calls_eh_return)
a584fe8a 4377 {
4378 unsigned int i, regno;
4379
4380 for (i = 0; ; ++i)
4381 {
4382 regno = EH_RETURN_DATA_REGNO (i);
4383 if (regno == INVALID_REGNUM)
4384 break;
4385
68bc9ae6 4386 load_reg (regno, offset, HARD_FRAME_POINTER_REGNUM);
a584fe8a 4387 offset += UNITS_PER_WORD;
4388 }
4389 }
4390
4391 for (i = 18; i >= 4; i--)
3072d30e 4392 if (df_regs_ever_live_p (i) && ! call_used_regs[i])
87ad11b0 4393 {
68bc9ae6 4394 load_reg (i, offset, HARD_FRAME_POINTER_REGNUM);
6ec4380b 4395 offset += UNITS_PER_WORD;
87ad11b0 4396 }
87ad11b0 4397 }
4398 else
4399 {
a584fe8a 4400 offset = local_fsize - actual_fsize;
4401
4402 /* If the current function calls __builtin_eh_return, then we need
4403 to restore the saved EH data registers. */
18d50ae6 4404 if (DO_FRAME_NOTES && crtl->calls_eh_return)
a584fe8a 4405 {
4406 unsigned int i, regno;
4407
4408 for (i = 0; ; ++i)
4409 {
4410 regno = EH_RETURN_DATA_REGNO (i);
4411 if (regno == INVALID_REGNUM)
4412 break;
4413
4414 /* Only for the first load.
4415 merge_sp_adjust_with_load holds the register load
4416 with which we will merge the sp adjustment. */
4417 if (merge_sp_adjust_with_load == 0
4418 && local_fsize == 0
4419 && VAL_14_BITS_P (-actual_fsize))
4420 merge_sp_adjust_with_load = regno;
4421 else
4422 load_reg (regno, offset, STACK_POINTER_REGNUM);
4423 offset += UNITS_PER_WORD;
4424 }
4425 }
4426
4427 for (i = 18; i >= 3; i--)
7f7c4869 4428 {
3072d30e 4429 if (df_regs_ever_live_p (i) && ! call_used_regs[i])
7f7c4869 4430 {
7f7c4869 4431 /* Only for the first load.
4432 merge_sp_adjust_with_load holds the register load
4433 with which we will merge the sp adjustment. */
58361f39 4434 if (merge_sp_adjust_with_load == 0
7f7c4869 4435 && local_fsize == 0
58361f39 4436 && VAL_14_BITS_P (-actual_fsize))
7f7c4869 4437 merge_sp_adjust_with_load = i;
4438 else
6a2c16d6 4439 load_reg (i, offset, STACK_POINTER_REGNUM);
6ec4380b 4440 offset += UNITS_PER_WORD;
7f7c4869 4441 }
4442 }
87ad11b0 4443 }
daee63dd 4444
87ad11b0 4445 /* Align pointer properly (doubleword boundary). */
4446 offset = (offset + 7) & ~7;
4447
daee63dd 4448 /* FP register restores. */
87ad11b0 4449 if (save_fregs)
87ad11b0 4450 {
daee63dd 4451 /* Adjust the register to index off of. */
a1ab4fa3 4452 if (frame_pointer_needed)
68bc9ae6 4453 set_reg_plus_d (1, HARD_FRAME_POINTER_REGNUM, offset, 0);
a1ab4fa3 4454 else
a584fe8a 4455 set_reg_plus_d (1, STACK_POINTER_REGNUM, offset, 0);
daee63dd 4456
4457 /* Actually do the restores now. */
bac38c40 4458 for (i = FP_SAVED_REG_LAST; i >= FP_SAVED_REG_FIRST; i -= FP_REG_STEP)
3072d30e 4459 if (df_regs_ever_live_p (i)
4460 || (! TARGET_64BIT && df_regs_ever_live_p (i + 1)))
cc858176 4461 {
e89dda49 4462 rtx src = gen_rtx_MEM (DFmode,
4463 gen_rtx_POST_INC (word_mode, tmpreg));
cc858176 4464 rtx dest = gen_rtx_REG (DFmode, i);
6a2c16d6 4465 emit_move_insn (dest, src);
cc858176 4466 }
87ad11b0 4467 }
daee63dd 4468
14660146 4469 /* Emit a blockage insn here to keep these insns from being moved to
4470 an earlier spot in the epilogue, or into the main instruction stream.
4471
4472 This is necessary as we must not cut the stack back before all the
4473 restores are finished. */
4474 emit_insn (gen_blockage ());
daee63dd 4475
9840d99d 4476 /* Reset stack pointer (and possibly frame pointer). The stack
42819d4e 4477 pointer is initially set to fp + 64 to avoid a race condition. */
58361f39 4478 if (frame_pointer_needed)
87ad11b0 4479 {
cc858176 4480 rtx delta = GEN_INT (-64);
a584fe8a 4481
68bc9ae6 4482 set_reg_plus_d (STACK_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM, 64, 0);
4483 emit_insn (gen_pre_load (hard_frame_pointer_rtx,
4484 stack_pointer_rtx, delta));
87ad11b0 4485 }
daee63dd 4486 /* If we were deferring a callee register restore, do it now. */
58361f39 4487 else if (merge_sp_adjust_with_load)
4488 {
4489 rtx delta = GEN_INT (-actual_fsize);
cc858176 4490 rtx dest = gen_rtx_REG (word_mode, merge_sp_adjust_with_load);
a584fe8a 4491
4492 emit_insn (gen_pre_load (dest, stack_pointer_rtx, delta));
58361f39 4493 }
daee63dd 4494 else if (actual_fsize != 0)
a584fe8a 4495 set_reg_plus_d (STACK_POINTER_REGNUM, STACK_POINTER_REGNUM,
4496 - actual_fsize, 0);
58361f39 4497
4498 /* If we haven't restored %r2 yet (no frame pointer, and a stack
4499 frame greater than 8k), do so now. */
4500 if (ret_off != 0)
6a2c16d6 4501 load_reg (2, ret_off, STACK_POINTER_REGNUM);
a584fe8a 4502
18d50ae6 4503 if (DO_FRAME_NOTES && crtl->calls_eh_return)
a584fe8a 4504 {
4505 rtx sa = EH_RETURN_STACKADJ_RTX;
4506
4507 emit_insn (gen_blockage ());
4508 emit_insn (TARGET_64BIT
4509 ? gen_subdi3 (stack_pointer_rtx, stack_pointer_rtx, sa)
4510 : gen_subsi3 (stack_pointer_rtx, stack_pointer_rtx, sa));
4511 }
fed903e9 4512}
4513
4514bool
4515pa_can_use_return_insn (void)
4516{
4517 if (!reload_completed)
4518 return false;
4519
4520 if (frame_pointer_needed)
4521 return false;
4522
4523 if (df_regs_ever_live_p (2))
4524 return false;
4525
4526 if (crtl->profile)
4527 return false;
4528
e202682d 4529 return pa_compute_frame_size (get_frame_size (), 0) == 0;
87ad11b0 4530}
4531
d7e2f694 4532rtx
5c1d8983 4533hppa_pic_save_rtx (void)
cf3de5bb 4534{
d7e2f694 4535 return get_hard_reg_initial_val (word_mode, PIC_OFFSET_TABLE_REGNUM);
df6edefa 4536}
4537
bb1bc2ca 4538#ifndef NO_DEFERRED_PROFILE_COUNTERS
4539#define NO_DEFERRED_PROFILE_COUNTERS 0
4540#endif
4541
bb1bc2ca 4542
4543/* Vector of funcdef numbers. */
f1f41a6c 4544static vec<int> funcdef_nos;
bb1bc2ca 4545
4546/* Output deferred profile counters. */
4547static void
4548output_deferred_profile_counters (void)
4549{
4550 unsigned int i;
4551 int align, n;
4552
f1f41a6c 4553 if (funcdef_nos.is_empty ())
bb1bc2ca 4554 return;
4555
2f14b1f9 4556 switch_to_section (data_section);
bb1bc2ca 4557 align = MIN (BIGGEST_ALIGNMENT, LONG_TYPE_SIZE);
4558 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
4559
f1f41a6c 4560 for (i = 0; funcdef_nos.iterate (i, &n); i++)
bb1bc2ca 4561 {
4562 targetm.asm_out.internal_label (asm_out_file, "LP", n);
4563 assemble_integer (const0_rtx, LONG_TYPE_SIZE / BITS_PER_UNIT, align, 1);
4564 }
4565
f1f41a6c 4566 funcdef_nos.release ();
bb1bc2ca 4567}
4568
df6edefa 4569void
5c1d8983 4570hppa_profile_hook (int label_no)
df6edefa 4571{
4da37e2f 4572 /* We use SImode for the address of the function in both 32 and
4573 64-bit code to avoid having to provide DImode versions of the
4574 lcla2 and load_offset_label_address insn patterns. */
4575 rtx reg = gen_reg_rtx (SImode);
79f6a8ed 4576 rtx_code_label *label_rtx = gen_label_rtx ();
6b414533 4577 int reg_parm_stack_space = REG_PARM_STACK_SPACE (NULL_TREE);
5efc28b6 4578 rtx arg_bytes, begin_label_rtx, mcount, sym;
89dcddd6 4579 rtx_insn *call_insn;
a9ac13e4 4580 char begin_label_name[16];
6b414533 4581 bool use_mcount_pcrel_call;
4582
5efc28b6 4583 /* Set up call destination. */
4584 sym = gen_rtx_SYMBOL_REF (Pmode, "_mcount");
4585 pa_encode_label (sym);
4586 mcount = gen_rtx_MEM (Pmode, sym);
4587
6b414533 4588 /* If we can reach _mcount with a pc-relative call, we can optimize
4589 loading the address of the current function. This requires linker
4590 long branch stub support. */
4591 if (!TARGET_PORTABLE_RUNTIME
4592 && !TARGET_LONG_CALLS
4593 && (TARGET_SOM || flag_function_sections))
4594 use_mcount_pcrel_call = TRUE;
4595 else
4596 use_mcount_pcrel_call = FALSE;
df6edefa 4597
a9ac13e4 4598 ASM_GENERATE_INTERNAL_LABEL (begin_label_name, FUNC_BEGIN_PROLOG_LABEL,
b8a21949 4599 label_no);
4da37e2f 4600 begin_label_rtx = gen_rtx_SYMBOL_REF (SImode, ggc_strdup (begin_label_name));
df6edefa 4601
df6edefa 4602 emit_move_insn (gen_rtx_REG (word_mode, 26), gen_rtx_REG (word_mode, 2));
4603
6b414533 4604 if (!use_mcount_pcrel_call)
4605 {
4606 /* The address of the function is loaded into %r25 with an instruction-
4607 relative sequence that avoids the use of relocations. The sequence
4608 is split so that the load_offset_label_address instruction can
4609 occupy the delay slot of the call to _mcount. */
4610 if (TARGET_PA_20)
4611 emit_insn (gen_lcla2 (reg, label_rtx));
4612 else
4613 emit_insn (gen_lcla1 (reg, label_rtx));
df6edefa 4614
6b414533 4615 emit_insn (gen_load_offset_label_address (gen_rtx_REG (SImode, 25),
4616 reg,
4617 begin_label_rtx,
4618 label_rtx));
4619 }
4da37e2f 4620
6b414533 4621 if (!NO_DEFERRED_PROFILE_COUNTERS)
4622 {
4623 rtx count_label_rtx, addr, r24;
4624 char count_label_name[16];
4625
4626 funcdef_nos.safe_push (label_no);
4627 ASM_GENERATE_INTERNAL_LABEL (count_label_name, "LP", label_no);
4628 count_label_rtx = gen_rtx_SYMBOL_REF (Pmode,
4629 ggc_strdup (count_label_name));
4630
4631 addr = force_reg (Pmode, count_label_rtx);
4632 r24 = gen_rtx_REG (Pmode, 24);
4633 emit_move_insn (r24, addr);
4634
4635 arg_bytes = GEN_INT (TARGET_64BIT ? 24 : 12);
4636 if (use_mcount_pcrel_call)
4637 call_insn = emit_call_insn (gen_call_mcount (mcount, arg_bytes,
4638 begin_label_rtx));
4639 else
4640 call_insn = emit_call_insn (gen_call (mcount, arg_bytes));
4da37e2f 4641
6b414533 4642 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), r24);
4643 }
4644 else
4645 {
4646 arg_bytes = GEN_INT (TARGET_64BIT ? 16 : 8);
4647 if (use_mcount_pcrel_call)
4648 call_insn = emit_call_insn (gen_call_mcount (mcount, arg_bytes,
4649 begin_label_rtx));
4650 else
4651 call_insn = emit_call_insn (gen_call (mcount, arg_bytes));
4652 }
df6edefa 4653
4da37e2f 4654 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), gen_rtx_REG (SImode, 25));
4655 use_reg (&CALL_INSN_FUNCTION_USAGE (call_insn), gen_rtx_REG (SImode, 26));
4656
df6edefa 4657 /* Indicate the _mcount call cannot throw, nor will it execute a
4658 non-local goto. */
450040e5 4659 make_reg_eh_region_note_nothrow_nononlocal (call_insn);
6b414533 4660
4661 /* Allocate space for fixed arguments. */
4662 if (reg_parm_stack_space > crtl->outgoing_args_size)
4663 crtl->outgoing_args_size = reg_parm_stack_space;
cf3de5bb 4664}
4665
e07ff380 4666/* Fetch the return address for the frame COUNT steps up from
4667 the current frame, after the prologue. FRAMEADDR is the
4668 frame pointer of the COUNT frame.
4669
f49b2e77 4670 We want to ignore any export stub remnants here. To handle this,
4671 we examine the code at the return address, and if it is an export
4672 stub, we return a memory rtx for the stub return address stored
4673 at frame-24.
a6c6fd6c 4674
4675 The value returned is used in two different ways:
4676
4677 1. To find a function's caller.
4678
4679 2. To change the return address for a function.
4680
4681 This function handles most instances of case 1; however, it will
4682 fail if there are two levels of stubs to execute on the return
4683 path. The only way I believe that can happen is if the return value
4684 needs a parameter relocation, which never happens for C code.
4685
4686 This function handles most instances of case 2; however, it will
4687 fail if we did not originally have stub code on the return path
f49b2e77 4688 but will need stub code on the new return path. This can happen if
a6c6fd6c 4689 the caller & callee are both in the main program, but the new
f49b2e77 4690 return location is in a shared library. */
e07ff380 4691
4692rtx
e202682d 4693pa_return_addr_rtx (int count, rtx frameaddr)
e07ff380 4694{
4695 rtx label;
f49b2e77 4696 rtx rp;
e07ff380 4697 rtx saved_rp;
4698 rtx ins;
4699
16309fef 4700 /* The instruction stream at the return address of a PA1.X export stub is:
74f4459c 4701
4702 0x4bc23fd1 | stub+8: ldw -18(sr0,sp),rp
4703 0x004010a1 | stub+12: ldsid (sr0,rp),r1
4704 0x00011820 | stub+16: mtsp r1,sr0
4705 0xe0400002 | stub+20: be,n 0(sr0,rp)
4706
4707 0xe0400002 must be specified as -532676606 so that it won't be
16309fef 4708 rejected as an invalid immediate operand on 64-bit hosts.
74f4459c 4709
16309fef 4710 The instruction stream at the return address of a PA2.0 export stub is:
4711
4712 0x4bc23fd1 | stub+8: ldw -18(sr0,sp),rp
4713 0xe840d002 | stub+12: bve,n (rp)
4714 */
4715
4716 HOST_WIDE_INT insns[4];
4717 int i, len;
74f4459c 4718
f49b2e77 4719 if (count != 0)
4720 return NULL_RTX;
b29897dd 4721
f49b2e77 4722 rp = get_hard_reg_initial_val (Pmode, 2);
e07ff380 4723
f49b2e77 4724 if (TARGET_64BIT || TARGET_NO_SPACE_REGS)
4725 return rp;
e07ff380 4726
74f4459c 4727 /* If there is no export stub then just use the value saved from
4728 the return pointer register. */
4729
b29897dd 4730 saved_rp = gen_reg_rtx (Pmode);
f49b2e77 4731 emit_move_insn (saved_rp, rp);
e07ff380 4732
4733 /* Get pointer to the instruction stream. We have to mask out the
4734 privilege level from the two low order bits of the return address
4735 pointer here so that ins will point to the start of the first
4736 instruction that would have been executed if we returned. */
f49b2e77 4737 ins = copy_to_reg (gen_rtx_AND (Pmode, rp, MASK_RETURN_ADDR));
e07ff380 4738 label = gen_label_rtx ();
4739
16309fef 4740 if (TARGET_PA_20)
4741 {
4742 insns[0] = 0x4bc23fd1;
4743 insns[1] = -398405630;
4744 len = 2;
4745 }
4746 else
4747 {
4748 insns[0] = 0x4bc23fd1;
4749 insns[1] = 0x004010a1;
4750 insns[2] = 0x00011820;
4751 insns[3] = -532676606;
4752 len = 4;
4753 }
4754
e07ff380 4755 /* Check the instruction stream at the normal return address for the
74f4459c 4756 export stub. If it is an export stub, than our return address is
4757 really in -24[frameaddr]. */
e07ff380 4758
16309fef 4759 for (i = 0; i < len; i++)
74f4459c 4760 {
29c05e22 4761 rtx op0 = gen_rtx_MEM (SImode, plus_constant (Pmode, ins, i * 4));
74f4459c 4762 rtx op1 = GEN_INT (insns[i]);
4763 emit_cmp_and_jump_insns (op0, op1, NE, NULL, SImode, 0, label);
4764 }
e07ff380 4765
f49b2e77 4766 /* Here we know that our return address points to an export
e07ff380 4767 stub. We don't want to return the address of the export stub,
f49b2e77 4768 but rather the return address of the export stub. That return
4769 address is stored at -24[frameaddr]. */
e07ff380 4770
f49b2e77 4771 emit_move_insn (saved_rp,
4772 gen_rtx_MEM (Pmode,
4773 memory_address (Pmode,
29c05e22 4774 plus_constant (Pmode, frameaddr,
f49b2e77 4775 -24))));
e07ff380 4776
4777 emit_label (label);
74f4459c 4778
f49b2e77 4779 return saved_rp;
e07ff380 4780}
4781
87ad11b0 4782void
e202682d 4783pa_emit_bcond_fp (rtx operands[])
87ad11b0 4784{
74f4459c 4785 enum rtx_code code = GET_CODE (operands[0]);
4786 rtx operand0 = operands[1];
4787 rtx operand1 = operands[2];
4788 rtx label = operands[3];
4789
d1f9b275 4790 emit_insn (gen_rtx_SET (gen_rtx_REG (CCFPmode, 0),
74f4459c 4791 gen_rtx_fmt_ee (code, CCFPmode, operand0, operand1)));
4792
d1f9b275 4793 emit_jump_insn (gen_rtx_SET (pc_rtx,
ad851752 4794 gen_rtx_IF_THEN_ELSE (VOIDmode,
74f4459c 4795 gen_rtx_fmt_ee (NE,
ad851752 4796 VOIDmode,
4797 gen_rtx_REG (CCFPmode, 0),
4798 const0_rtx),
74f4459c 4799 gen_rtx_LABEL_REF (VOIDmode, label),
ad851752 4800 pc_rtx)));
87ad11b0 4801
4802}
4803
8b49b3c7 4804/* Adjust the cost of a scheduling dependency. Return the new cost of
4805 a dependency LINK or INSN on DEP_INSN. COST is the current cost. */
4806
747af5e7 4807static int
99f52c2b 4808pa_adjust_cost (rtx_insn *insn, int dep_type, rtx_insn *dep_insn, int cost,
4809 unsigned int)
8b49b3c7 4810{
43048d2c 4811 enum attr_type attr_type;
4812
cde3e16c 4813 /* Don't adjust costs for a pa8000 chip, also do not adjust any
4814 true dependencies as they are described with bypasses now. */
99f52c2b 4815 if (pa_cpu >= PROCESSOR_8000 || dep_type == 0)
342aabd9 4816 return cost;
4817
d402da4b 4818 if (! recog_memoized (insn))
4819 return 0;
8b49b3c7 4820
43048d2c 4821 attr_type = get_attr_type (insn);
4822
99f52c2b 4823 switch (dep_type)
8b49b3c7 4824 {
ecf2283d 4825 case REG_DEP_ANTI:
8b49b3c7 4826 /* Anti dependency; DEP_INSN reads a register that INSN writes some
4827 cycles later. */
4828
43048d2c 4829 if (attr_type == TYPE_FPLOAD)
8b49b3c7 4830 {
d402da4b 4831 rtx pat = PATTERN (insn);
4832 rtx dep_pat = PATTERN (dep_insn);
4833 if (GET_CODE (pat) == PARALLEL)
4834 {
4835 /* This happens for the fldXs,mb patterns. */
4836 pat = XVECEXP (pat, 0, 0);
4837 }
4838 if (GET_CODE (pat) != SET || GET_CODE (dep_pat) != SET)
8b49b3c7 4839 /* If this happens, we have to extend this to schedule
d402da4b 4840 optimally. Return 0 for now. */
4841 return 0;
8b49b3c7 4842
d402da4b 4843 if (reg_mentioned_p (SET_DEST (pat), SET_SRC (dep_pat)))
8b49b3c7 4844 {
d402da4b 4845 if (! recog_memoized (dep_insn))
4846 return 0;
8b49b3c7 4847 switch (get_attr_type (dep_insn))
4848 {
4849 case TYPE_FPALU:
134b4858 4850 case TYPE_FPMULSGL:
4851 case TYPE_FPMULDBL:
8b49b3c7 4852 case TYPE_FPDIVSGL:
4853 case TYPE_FPDIVDBL:
4854 case TYPE_FPSQRTSGL:
4855 case TYPE_FPSQRTDBL:
d402da4b 4856 /* A fpload can't be issued until one cycle before a
01cc3b75 4857 preceding arithmetic operation has finished if
d402da4b 4858 the target of the fpload is any of the sources
4859 (or destination) of the arithmetic operation. */
cde3e16c 4860 return insn_default_latency (dep_insn) - 1;
134b4858 4861
4862 default:
4863 return 0;
4864 }
4865 }
4866 }
43048d2c 4867 else if (attr_type == TYPE_FPALU)
134b4858 4868 {
4869 rtx pat = PATTERN (insn);
4870 rtx dep_pat = PATTERN (dep_insn);
4871 if (GET_CODE (pat) == PARALLEL)
4872 {
4873 /* This happens for the fldXs,mb patterns. */
4874 pat = XVECEXP (pat, 0, 0);
4875 }
4876 if (GET_CODE (pat) != SET || GET_CODE (dep_pat) != SET)
4877 /* If this happens, we have to extend this to schedule
4878 optimally. Return 0 for now. */
4879 return 0;
4880
4881 if (reg_mentioned_p (SET_DEST (pat), SET_SRC (dep_pat)))
4882 {
4883 if (! recog_memoized (dep_insn))
4884 return 0;
4885 switch (get_attr_type (dep_insn))
4886 {
4887 case TYPE_FPDIVSGL:
4888 case TYPE_FPDIVDBL:
4889 case TYPE_FPSQRTSGL:
4890 case TYPE_FPSQRTDBL:
4891 /* An ALU flop can't be issued until two cycles before a
01cc3b75 4892 preceding divide or sqrt operation has finished if
134b4858 4893 the target of the ALU flop is any of the sources
4894 (or destination) of the divide or sqrt operation. */
cde3e16c 4895 return insn_default_latency (dep_insn) - 2;
8b49b3c7 4896
4897 default:
4898 return 0;
4899 }
4900 }
4901 }
4902
4903 /* For other anti dependencies, the cost is 0. */
4904 return 0;
ecf2283d 4905
4906 case REG_DEP_OUTPUT:
134b4858 4907 /* Output dependency; DEP_INSN writes a register that INSN writes some
4908 cycles later. */
43048d2c 4909 if (attr_type == TYPE_FPLOAD)
134b4858 4910 {
4911 rtx pat = PATTERN (insn);
4912 rtx dep_pat = PATTERN (dep_insn);
4913 if (GET_CODE (pat) == PARALLEL)
4914 {
4915 /* This happens for the fldXs,mb patterns. */
4916 pat = XVECEXP (pat, 0, 0);
4917 }
4918 if (GET_CODE (pat) != SET || GET_CODE (dep_pat) != SET)
4919 /* If this happens, we have to extend this to schedule
4920 optimally. Return 0 for now. */
4921 return 0;
4922
4923 if (reg_mentioned_p (SET_DEST (pat), SET_DEST (dep_pat)))
4924 {
4925 if (! recog_memoized (dep_insn))
4926 return 0;
4927 switch (get_attr_type (dep_insn))
4928 {
4929 case TYPE_FPALU:
4930 case TYPE_FPMULSGL:
4931 case TYPE_FPMULDBL:
4932 case TYPE_FPDIVSGL:
4933 case TYPE_FPDIVDBL:
4934 case TYPE_FPSQRTSGL:
4935 case TYPE_FPSQRTDBL:
4936 /* A fpload can't be issued until one cycle before a
01cc3b75 4937 preceding arithmetic operation has finished if
134b4858 4938 the target of the fpload is the destination of the
bea4bad2 4939 arithmetic operation.
4940
4941 Exception: For PA7100LC, PA7200 and PA7300, the cost
4942 is 3 cycles, unless they bundle together. We also
4943 pay the penalty if the second insn is a fpload. */
cde3e16c 4944 return insn_default_latency (dep_insn) - 1;
8b49b3c7 4945
134b4858 4946 default:
4947 return 0;
4948 }
4949 }
4950 }
43048d2c 4951 else if (attr_type == TYPE_FPALU)
134b4858 4952 {
4953 rtx pat = PATTERN (insn);
4954 rtx dep_pat = PATTERN (dep_insn);
4955 if (GET_CODE (pat) == PARALLEL)
4956 {
4957 /* This happens for the fldXs,mb patterns. */
4958 pat = XVECEXP (pat, 0, 0);
4959 }
4960 if (GET_CODE (pat) != SET || GET_CODE (dep_pat) != SET)
4961 /* If this happens, we have to extend this to schedule
4962 optimally. Return 0 for now. */
4963 return 0;
4964
4965 if (reg_mentioned_p (SET_DEST (pat), SET_DEST (dep_pat)))
4966 {
4967 if (! recog_memoized (dep_insn))
4968 return 0;
4969 switch (get_attr_type (dep_insn))
4970 {
4971 case TYPE_FPDIVSGL:
4972 case TYPE_FPDIVDBL:
4973 case TYPE_FPSQRTSGL:
4974 case TYPE_FPSQRTDBL:
4975 /* An ALU flop can't be issued until two cycles before a
01cc3b75 4976 preceding divide or sqrt operation has finished if
134b4858 4977 the target of the ALU flop is also the target of
3398e91d 4978 the divide or sqrt operation. */
cde3e16c 4979 return insn_default_latency (dep_insn) - 2;
134b4858 4980
4981 default:
4982 return 0;
4983 }
4984 }
4985 }
4986
4987 /* For other output dependencies, the cost is 0. */
4988 return 0;
ecf2283d 4989
4990 default:
4991 gcc_unreachable ();
134b4858 4992 }
8b49b3c7 4993}
87ad11b0 4994
747af5e7 4995/* The 700 can only issue a single insn at a time.
4996 The 7XXX processors can issue two insns at a time.
4997 The 8000 can issue 4 insns at a time. */
4998static int
5c1d8983 4999pa_issue_rate (void)
747af5e7 5000{
5001 switch (pa_cpu)
5002 {
5003 case PROCESSOR_700: return 1;
5004 case PROCESSOR_7100: return 2;
5005 case PROCESSOR_7100LC: return 2;
5006 case PROCESSOR_7200: return 2;
bea4bad2 5007 case PROCESSOR_7300: return 2;
747af5e7 5008 case PROCESSOR_8000: return 4;
5009
5010 default:
ecf2283d 5011 gcc_unreachable ();
747af5e7 5012 }
5013}
5014
5015
5016
8c9327d2 5017/* Return any length plus adjustment needed by INSN which already has
5018 its length computed as LENGTH. Return LENGTH if no adjustment is
5019 necessary.
58e17b0b 5020
5021 Also compute the length of an inline block move here as it is too
5fbd5940 5022 complicated to express as a length attribute in pa.md. */
58e17b0b 5023int
8443f305 5024pa_adjust_insn_length (rtx_insn *insn, int length)
58e17b0b 5025{
5026 rtx pat = PATTERN (insn);
5027
8c9327d2 5028 /* If length is negative or undefined, provide initial length. */
5029 if ((unsigned int) length >= INT_MAX)
5030 {
5031 if (GET_CODE (pat) == SEQUENCE)
8443f305 5032 insn = as_a <rtx_insn *> (XVECEXP (pat, 0, 0));
8c9327d2 5033
5034 switch (get_attr_type (insn))
5035 {
5036 case TYPE_MILLI:
5037 length = pa_attr_length_millicode_call (insn);
5038 break;
5039 case TYPE_CALL:
5040 length = pa_attr_length_call (insn, 0);
5041 break;
5042 case TYPE_SIBCALL:
5043 length = pa_attr_length_call (insn, 1);
5044 break;
5045 case TYPE_DYNCALL:
5046 length = pa_attr_length_indirect_call (insn);
5047 break;
5048 case TYPE_SH_FUNC_ADRS:
5049 length = pa_attr_length_millicode_call (insn) + 20;
5050 break;
5051 default:
5052 gcc_unreachable ();
5053 }
5054 }
5055
58e17b0b 5056 /* Block move pattern. */
b8f55b74 5057 if (NONJUMP_INSN_P (insn)
5058 && GET_CODE (pat) == PARALLEL
5059 && GET_CODE (XVECEXP (pat, 0, 0)) == SET
5060 && GET_CODE (XEXP (XVECEXP (pat, 0, 0), 0)) == MEM
5061 && GET_CODE (XEXP (XVECEXP (pat, 0, 0), 1)) == MEM
5062 && GET_MODE (XEXP (XVECEXP (pat, 0, 0), 0)) == BLKmode
5063 && GET_MODE (XEXP (XVECEXP (pat, 0, 0), 1)) == BLKmode)
8c9327d2 5064 length += compute_movmem_length (insn) - 4;
a7e1bb24 5065 /* Block clear pattern. */
aa90bb35 5066 else if (NONJUMP_INSN_P (insn)
a7e1bb24 5067 && GET_CODE (pat) == PARALLEL
5068 && GET_CODE (XVECEXP (pat, 0, 0)) == SET
5069 && GET_CODE (XEXP (XVECEXP (pat, 0, 0), 0)) == MEM
5070 && XEXP (XVECEXP (pat, 0, 0), 1) == const0_rtx
5071 && GET_MODE (XEXP (XVECEXP (pat, 0, 0), 0)) == BLKmode)
8c9327d2 5072 length += compute_clrmem_length (insn) - 4;
58e17b0b 5073 /* Conditional branch with an unfilled delay slot. */
aa90bb35 5074 else if (JUMP_P (insn) && ! simplejump_p (insn))
5fbd5940 5075 {
5076 /* Adjust a short backwards conditional with an unfilled delay slot. */
5077 if (GET_CODE (pat) == SET
5a1231ef 5078 && length == 4
372b3fe2 5079 && JUMP_LABEL (insn) != NULL_RTX
5fbd5940 5080 && ! forward_branch_p (insn))
8c9327d2 5081 length += 4;
546a40bd 5082 else if (GET_CODE (pat) == PARALLEL
5083 && get_attr_type (insn) == TYPE_PARALLEL_BRANCH
5084 && length == 4)
8c9327d2 5085 length += 4;
5fbd5940 5086 /* Adjust dbra insn with short backwards conditional branch with
6d36483b 5087 unfilled delay slot -- only for case where counter is in a
6dc3b0d9 5088 general register register. */
5fbd5940 5089 else if (GET_CODE (pat) == PARALLEL
5090 && GET_CODE (XVECEXP (pat, 0, 1)) == SET
5091 && GET_CODE (XEXP (XVECEXP (pat, 0, 1), 0)) == REG
6d36483b 5092 && ! FP_REG_P (XEXP (XVECEXP (pat, 0, 1), 0))
5a1231ef 5093 && length == 4
5fbd5940 5094 && ! forward_branch_p (insn))
8c9327d2 5095 length += 4;
5fbd5940 5096 }
8c9327d2 5097 return length;
58e17b0b 5098}
5099
93d3ee56 5100/* Implement the TARGET_PRINT_OPERAND_PUNCT_VALID_P hook. */
5101
5102static bool
5103pa_print_operand_punct_valid_p (unsigned char code)
5104{
5105 if (code == '@'
5106 || code == '#'
5107 || code == '*'
5108 || code == '^')
5109 return true;
5110
5111 return false;
5112}
5113
87ad11b0 5114/* Print operand X (an rtx) in assembler syntax to file FILE.
5115 CODE is a letter or dot (`z' in `%z0') or 0 if no letter was specified.
5116 For `%' followed by punctuation, CODE is the punctuation and X is null. */
5117
5118void
e202682d 5119pa_print_operand (FILE *file, rtx x, int code)
87ad11b0 5120{
5121 switch (code)
5122 {
5123 case '#':
5124 /* Output a 'nop' if there's nothing for the delay slot. */
5125 if (dbr_sequence_length () == 0)
5126 fputs ("\n\tnop", file);
5127 return;
5128 case '*':
87fcb603 5129 /* Output a nullification completer if there's nothing for the */
6d36483b 5130 /* delay slot or nullification is requested. */
87ad11b0 5131 if (dbr_sequence_length () == 0 ||
5132 (final_sequence &&
5133 INSN_ANNULLED_BRANCH_P (XVECEXP (final_sequence, 0, 0))))
5134 fputs (",n", file);
5135 return;
5136 case 'R':
5137 /* Print out the second register name of a register pair.
5138 I.e., R (6) => 7. */
ea52c577 5139 fputs (reg_names[REGNO (x) + 1], file);
87ad11b0 5140 return;
5141 case 'r':
6dc3b0d9 5142 /* A register or zero. */
891b55b4 5143 if (x == const0_rtx
5144 || (x == CONST0_RTX (DFmode))
5145 || (x == CONST0_RTX (SFmode)))
87ad11b0 5146 {
c6ae275c 5147 fputs ("%r0", file);
5148 return;
5149 }
5150 else
5151 break;
5152 case 'f':
6dc3b0d9 5153 /* A register or zero (floating point). */
c6ae275c 5154 if (x == const0_rtx
5155 || (x == CONST0_RTX (DFmode))
5156 || (x == CONST0_RTX (SFmode)))
5157 {
5158 fputs ("%fr0", file);
87ad11b0 5159 return;
5160 }
5161 else
5162 break;
2d14b1f0 5163 case 'A':
5164 {
5165 rtx xoperands[2];
5166
5167 xoperands[0] = XEXP (XEXP (x, 0), 0);
5168 xoperands[1] = XVECEXP (XEXP (XEXP (x, 0), 1), 0, 0);
e202682d 5169 pa_output_global_address (file, xoperands[1], 0);
2d14b1f0 5170 fprintf (file, "(%s)", reg_names [REGNO (xoperands[0])]);
5171 return;
5172 }
5173
c8975385 5174 case 'C': /* Plain (C)ondition */
87ad11b0 5175 case 'X':
5176 switch (GET_CODE (x))
6d36483b 5177 {
87ad11b0 5178 case EQ:
9c0ac0fd 5179 fputs ("=", file); break;
87ad11b0 5180 case NE:
9c0ac0fd 5181 fputs ("<>", file); break;
87ad11b0 5182 case GT:
9c0ac0fd 5183 fputs (">", file); break;
87ad11b0 5184 case GE:
9c0ac0fd 5185 fputs (">=", file); break;
87ad11b0 5186 case GEU:
9c0ac0fd 5187 fputs (">>=", file); break;
87ad11b0 5188 case GTU:
9c0ac0fd 5189 fputs (">>", file); break;
87ad11b0 5190 case LT:
9c0ac0fd 5191 fputs ("<", file); break;
87ad11b0 5192 case LE:
9c0ac0fd 5193 fputs ("<=", file); break;
87ad11b0 5194 case LEU:
9c0ac0fd 5195 fputs ("<<=", file); break;
87ad11b0 5196 case LTU:
9c0ac0fd 5197 fputs ("<<", file); break;
87ad11b0 5198 default:
ecf2283d 5199 gcc_unreachable ();
87ad11b0 5200 }
5201 return;
c8975385 5202 case 'N': /* Condition, (N)egated */
87ad11b0 5203 switch (GET_CODE (x))
5204 {
5205 case EQ:
9c0ac0fd 5206 fputs ("<>", file); break;
87ad11b0 5207 case NE:
9c0ac0fd 5208 fputs ("=", file); break;
87ad11b0 5209 case GT:
9c0ac0fd 5210 fputs ("<=", file); break;
87ad11b0 5211 case GE:
9c0ac0fd 5212 fputs ("<", file); break;
87ad11b0 5213 case GEU:
9c0ac0fd 5214 fputs ("<<", file); break;
87ad11b0 5215 case GTU:
9c0ac0fd 5216 fputs ("<<=", file); break;
87ad11b0 5217 case LT:
9c0ac0fd 5218 fputs (">=", file); break;
87ad11b0 5219 case LE:
9c0ac0fd 5220 fputs (">", file); break;
87ad11b0 5221 case LEU:
9c0ac0fd 5222 fputs (">>", file); break;
87ad11b0 5223 case LTU:
9c0ac0fd 5224 fputs (">>=", file); break;
87ad11b0 5225 default:
ecf2283d 5226 gcc_unreachable ();
87ad11b0 5227 }
5228 return;
ea52c577 5229 /* For floating point comparisons. Note that the output
321c1598 5230 predicates are the complement of the desired mode. The
5231 conditions for GT, GE, LT, LE and LTGT cause an invalid
5232 operation exception if the result is unordered and this
5233 exception is enabled in the floating-point status register. */
61230bc9 5234 case 'Y':
5235 switch (GET_CODE (x))
5236 {
5237 case EQ:
9c0ac0fd 5238 fputs ("!=", file); break;
61230bc9 5239 case NE:
9c0ac0fd 5240 fputs ("=", file); break;
61230bc9 5241 case GT:
32509e56 5242 fputs ("!>", file); break;
61230bc9 5243 case GE:
32509e56 5244 fputs ("!>=", file); break;
61230bc9 5245 case LT:
32509e56 5246 fputs ("!<", file); break;
61230bc9 5247 case LE:
32509e56 5248 fputs ("!<=", file); break;
5249 case LTGT:
5250 fputs ("!<>", file); break;
5251 case UNLE:
321c1598 5252 fputs ("!?<=", file); break;
32509e56 5253 case UNLT:
321c1598 5254 fputs ("!?<", file); break;
32509e56 5255 case UNGE:
321c1598 5256 fputs ("!?>=", file); break;
32509e56 5257 case UNGT:
321c1598 5258 fputs ("!?>", file); break;
32509e56 5259 case UNEQ:
321c1598 5260 fputs ("!?=", file); break;
32509e56 5261 case UNORDERED:
321c1598 5262 fputs ("!?", file); break;
32509e56 5263 case ORDERED:
321c1598 5264 fputs ("?", file); break;
61230bc9 5265 default:
ecf2283d 5266 gcc_unreachable ();
61230bc9 5267 }
5268 return;
c8975385 5269 case 'S': /* Condition, operands are (S)wapped. */
5270 switch (GET_CODE (x))
5271 {
5272 case EQ:
9c0ac0fd 5273 fputs ("=", file); break;
c8975385 5274 case NE:
9c0ac0fd 5275 fputs ("<>", file); break;
c8975385 5276 case GT:
9c0ac0fd 5277 fputs ("<", file); break;
c8975385 5278 case GE:
9c0ac0fd 5279 fputs ("<=", file); break;
c8975385 5280 case GEU:
9c0ac0fd 5281 fputs ("<<=", file); break;
c8975385 5282 case GTU:
9c0ac0fd 5283 fputs ("<<", file); break;
c8975385 5284 case LT:
9c0ac0fd 5285 fputs (">", file); break;
c8975385 5286 case LE:
9c0ac0fd 5287 fputs (">=", file); break;
c8975385 5288 case LEU:
9c0ac0fd 5289 fputs (">>=", file); break;
c8975385 5290 case LTU:
9c0ac0fd 5291 fputs (">>", file); break;
c8975385 5292 default:
ecf2283d 5293 gcc_unreachable ();
6d36483b 5294 }
c8975385 5295 return;
5296 case 'B': /* Condition, (B)oth swapped and negate. */
5297 switch (GET_CODE (x))
5298 {
5299 case EQ:
9c0ac0fd 5300 fputs ("<>", file); break;
c8975385 5301 case NE:
9c0ac0fd 5302 fputs ("=", file); break;
c8975385 5303 case GT:
9c0ac0fd 5304 fputs (">=", file); break;
c8975385 5305 case GE:
9c0ac0fd 5306 fputs (">", file); break;
c8975385 5307 case GEU:
9c0ac0fd 5308 fputs (">>", file); break;
c8975385 5309 case GTU:
9c0ac0fd 5310 fputs (">>=", file); break;
c8975385 5311 case LT:
9c0ac0fd 5312 fputs ("<=", file); break;
c8975385 5313 case LE:
9c0ac0fd 5314 fputs ("<", file); break;
c8975385 5315 case LEU:
9c0ac0fd 5316 fputs ("<<", file); break;
c8975385 5317 case LTU:
9c0ac0fd 5318 fputs ("<<=", file); break;
c8975385 5319 default:
ecf2283d 5320 gcc_unreachable ();
6d36483b 5321 }
c8975385 5322 return;
5323 case 'k':
ecf2283d 5324 gcc_assert (GET_CODE (x) == CONST_INT);
5325 fprintf (file, HOST_WIDE_INT_PRINT_DEC, ~INTVAL (x));
5326 return;
5e3c5739 5327 case 'Q':
ecf2283d 5328 gcc_assert (GET_CODE (x) == CONST_INT);
5329 fprintf (file, HOST_WIDE_INT_PRINT_DEC, 64 - (INTVAL (x) & 63));
5330 return;
e5965947 5331 case 'L':
ecf2283d 5332 gcc_assert (GET_CODE (x) == CONST_INT);
5333 fprintf (file, HOST_WIDE_INT_PRINT_DEC, 32 - (INTVAL (x) & 31));
5334 return;
edb1ad78 5335 case 'o':
5336 gcc_assert (GET_CODE (x) == CONST_INT
5337 && (INTVAL (x) == 1 || INTVAL (x) == 2 || INTVAL (x) == 3));
bcfa200d 5338 fprintf (file, HOST_WIDE_INT_PRINT_DEC, INTVAL (x));
edb1ad78 5339 return;
3a16146d 5340 case 'O':
ecf2283d 5341 gcc_assert (GET_CODE (x) == CONST_INT && exact_log2 (INTVAL (x)) >= 0);
5342 fprintf (file, "%d", exact_log2 (INTVAL (x)));
5343 return;
5e3c5739 5344 case 'p':
ecf2283d 5345 gcc_assert (GET_CODE (x) == CONST_INT);
5346 fprintf (file, HOST_WIDE_INT_PRINT_DEC, 63 - (INTVAL (x) & 63));
5347 return;
e5965947 5348 case 'P':
ecf2283d 5349 gcc_assert (GET_CODE (x) == CONST_INT);
5350 fprintf (file, HOST_WIDE_INT_PRINT_DEC, 31 - (INTVAL (x) & 31));
5351 return;
c8975385 5352 case 'I':
5353 if (GET_CODE (x) == CONST_INT)
5354 fputs ("i", file);
5355 return;
87ad11b0 5356 case 'M':
27ef382d 5357 case 'F':
87ad11b0 5358 switch (GET_CODE (XEXP (x, 0)))
5359 {
5360 case PRE_DEC:
5361 case PRE_INC:
e4065f95 5362 if (ASSEMBLER_DIALECT == 0)
5363 fputs ("s,mb", file);
5364 else
5365 fputs (",mb", file);
87ad11b0 5366 break;
5367 case POST_DEC:
5368 case POST_INC:
e4065f95 5369 if (ASSEMBLER_DIALECT == 0)
5370 fputs ("s,ma", file);
5371 else
5372 fputs (",ma", file);
87ad11b0 5373 break;
27ef382d 5374 case PLUS:
dbd3d89d 5375 if (GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
5376 && GET_CODE (XEXP (XEXP (x, 0), 1)) == REG)
5377 {
5378 if (ASSEMBLER_DIALECT == 0)
5379 fputs ("x", file);
5380 }
5381 else if (GET_CODE (XEXP (XEXP (x, 0), 0)) == MULT
5382 || GET_CODE (XEXP (XEXP (x, 0), 1)) == MULT)
e4065f95 5383 {
5384 if (ASSEMBLER_DIALECT == 0)
5385 fputs ("x,s", file);
5386 else
5387 fputs (",s", file);
5388 }
5389 else if (code == 'F' && ASSEMBLER_DIALECT == 0)
27ef382d 5390 fputs ("s", file);
87ad11b0 5391 break;
5392 default:
e4065f95 5393 if (code == 'F' && ASSEMBLER_DIALECT == 0)
27ef382d 5394 fputs ("s", file);
87ad11b0 5395 break;
5396 }
5397 return;
5398 case 'G':
e202682d 5399 pa_output_global_address (file, x, 0);
f9333726 5400 return;
5401 case 'H':
e202682d 5402 pa_output_global_address (file, x, 1);
87ad11b0 5403 return;
5404 case 0: /* Don't do anything special */
5405 break;
42faba01 5406 case 'Z':
5407 {
5408 unsigned op[3];
fb22aedc 5409 compute_zdepwi_operands (INTVAL (x), op);
42faba01 5410 fprintf (file, "%d,%d,%d", op[0], op[1], op[2]);
5411 return;
5412 }
5e3c5739 5413 case 'z':
5414 {
5415 unsigned op[3];
5416 compute_zdepdi_operands (INTVAL (x), op);
5417 fprintf (file, "%d,%d,%d", op[0], op[1], op[2]);
5418 return;
5419 }
c9cc98e1 5420 case 'c':
5421 /* We can get here from a .vtable_inherit due to our
5422 CONSTANT_ADDRESS_P rejecting perfectly good constant
5423 addresses. */
5424 break;
87ad11b0 5425 default:
ecf2283d 5426 gcc_unreachable ();
87ad11b0 5427 }
5428 if (GET_CODE (x) == REG)
df0651dc 5429 {
35661368 5430 fputs (reg_names [REGNO (x)], file);
5e3c5739 5431 if (TARGET_64BIT && FP_REG_P (x) && GET_MODE_SIZE (GET_MODE (x)) <= 4)
5432 {
5433 fputs ("R", file);
5434 return;
5435 }
5436 if (FP_REG_P (x)
5437 && GET_MODE_SIZE (GET_MODE (x)) <= 4
5438 && (REGNO (x) & 1) == 0)
35661368 5439 fputs ("L", file);
df0651dc 5440 }
87ad11b0 5441 else if (GET_CODE (x) == MEM)
5442 {
5443 int size = GET_MODE_SIZE (GET_MODE (x));
f7dff90d 5444 rtx base = NULL_RTX;
87ad11b0 5445 switch (GET_CODE (XEXP (x, 0)))
5446 {
5447 case PRE_DEC:
5448 case POST_DEC:
5e3c5739 5449 base = XEXP (XEXP (x, 0), 0);
34940871 5450 fprintf (file, "-%d(%s)", size, reg_names [REGNO (base)]);
87ad11b0 5451 break;
5452 case PRE_INC:
5453 case POST_INC:
5e3c5739 5454 base = XEXP (XEXP (x, 0), 0);
34940871 5455 fprintf (file, "%d(%s)", size, reg_names [REGNO (base)]);
87ad11b0 5456 break;
dbd3d89d 5457 case PLUS:
5458 if (GET_CODE (XEXP (XEXP (x, 0), 0)) == MULT)
34940871 5459 fprintf (file, "%s(%s)",
27ef382d 5460 reg_names [REGNO (XEXP (XEXP (XEXP (x, 0), 0), 0))],
5461 reg_names [REGNO (XEXP (XEXP (x, 0), 1))]);
dbd3d89d 5462 else if (GET_CODE (XEXP (XEXP (x, 0), 1)) == MULT)
34940871 5463 fprintf (file, "%s(%s)",
27ef382d 5464 reg_names [REGNO (XEXP (XEXP (XEXP (x, 0), 1), 0))],
5465 reg_names [REGNO (XEXP (XEXP (x, 0), 0))]);
dbd3d89d 5466 else if (GET_CODE (XEXP (XEXP (x, 0), 0)) == REG
5467 && GET_CODE (XEXP (XEXP (x, 0), 1)) == REG)
5468 {
5469 /* Because the REG_POINTER flag can get lost during reload,
e8248b41 5470 pa_legitimate_address_p canonicalizes the order of the
dbd3d89d 5471 index and base registers in the combined move patterns. */
5472 rtx base = XEXP (XEXP (x, 0), 1);
5473 rtx index = XEXP (XEXP (x, 0), 0);
5474
5475 fprintf (file, "%s(%s)",
5476 reg_names [REGNO (index)], reg_names [REGNO (base)]);
5477 }
27ef382d 5478 else
3c047fe9 5479 output_address (GET_MODE (x), XEXP (x, 0));
87ad11b0 5480 break;
dbd3d89d 5481 default:
3c047fe9 5482 output_address (GET_MODE (x), XEXP (x, 0));
dbd3d89d 5483 break;
87ad11b0 5484 }
5485 }
87ad11b0 5486 else
5487 output_addr_const (file, x);
5488}
5489
6dc3b0d9 5490/* output a SYMBOL_REF or a CONST expression involving a SYMBOL_REF. */
87ad11b0 5491
5492void
e202682d 5493pa_output_global_address (FILE *file, rtx x, int round_constant)
87ad11b0 5494{
2ee034bc 5495
5496 /* Imagine (high (const (plus ...))). */
5497 if (GET_CODE (x) == HIGH)
5498 x = XEXP (x, 0);
5499
611a88e1 5500 if (GET_CODE (x) == SYMBOL_REF && read_only_operand (x, VOIDmode))
5f43b4f6 5501 output_addr_const (file, x);
b4a7bf10 5502 else if (GET_CODE (x) == SYMBOL_REF && !flag_pic)
87ad11b0 5503 {
5f43b4f6 5504 output_addr_const (file, x);
9c0ac0fd 5505 fputs ("-$global$", file);
87ad11b0 5506 }
5507 else if (GET_CODE (x) == CONST)
5508 {
611a88e1 5509 const char *sep = "";
87ad11b0 5510 int offset = 0; /* assembler wants -$global$ at end */
33ae0dba 5511 rtx base = NULL_RTX;
6d36483b 5512
ecf2283d 5513 switch (GET_CODE (XEXP (XEXP (x, 0), 0)))
87ad11b0 5514 {
8ee2e5f4 5515 case LABEL_REF:
ecf2283d 5516 case SYMBOL_REF:
87ad11b0 5517 base = XEXP (XEXP (x, 0), 0);
5518 output_addr_const (file, base);
ecf2283d 5519 break;
5520 case CONST_INT:
5521 offset = INTVAL (XEXP (XEXP (x, 0), 0));
5522 break;
5523 default:
5524 gcc_unreachable ();
87ad11b0 5525 }
87ad11b0 5526
ecf2283d 5527 switch (GET_CODE (XEXP (XEXP (x, 0), 1)))
87ad11b0 5528 {
8ee2e5f4 5529 case LABEL_REF:
ecf2283d 5530 case SYMBOL_REF:
87ad11b0 5531 base = XEXP (XEXP (x, 0), 1);
5532 output_addr_const (file, base);
ecf2283d 5533 break;
5534 case CONST_INT:
5535 offset = INTVAL (XEXP (XEXP (x, 0), 1));
5536 break;
5537 default:
5538 gcc_unreachable ();
87ad11b0 5539 }
87ad11b0 5540
f9333726 5541 /* How bogus. The compiler is apparently responsible for
5542 rounding the constant if it uses an LR field selector.
5543
5544 The linker and/or assembler seem a better place since
5545 they have to do this kind of thing already.
5546
5547 If we fail to do this, HP's optimizing linker may eliminate
5548 an addil, but not update the ldw/stw/ldo instruction that
5549 uses the result of the addil. */
5550 if (round_constant)
5551 offset = ((offset + 0x1000) & ~0x1fff);
5552
ecf2283d 5553 switch (GET_CODE (XEXP (x, 0)))
87ad11b0 5554 {
ecf2283d 5555 case PLUS:
87ad11b0 5556 if (offset < 0)
5557 {
5558 offset = -offset;
5559 sep = "-";
5560 }
5561 else
5562 sep = "+";
ecf2283d 5563 break;
5564
5565 case MINUS:
5566 gcc_assert (GET_CODE (XEXP (XEXP (x, 0), 0)) == SYMBOL_REF);
5567 sep = "-";
5568 break;
87ad11b0 5569
ecf2283d 5570 default:
5571 gcc_unreachable ();
5572 }
5573
611a88e1 5574 if (!read_only_operand (base, VOIDmode) && !flag_pic)
9c0ac0fd 5575 fputs ("-$global$", file);
f9333726 5576 if (offset)
ea52c577 5577 fprintf (file, "%s%d", sep, offset);
87ad11b0 5578 }
5579 else
5580 output_addr_const (file, x);
5581}
5582
92c473b8 5583/* Output boilerplate text to appear at the beginning of the file.
5584 There are several possible versions. */
5585#define aputs(x) fputs(x, asm_out_file)
5586static inline void
5c1d8983 5587pa_file_start_level (void)
92c473b8 5588{
5589 if (TARGET_64BIT)
5590 aputs ("\t.LEVEL 2.0w\n");
5591 else if (TARGET_PA_20)
5592 aputs ("\t.LEVEL 2.0\n");
5593 else if (TARGET_PA_11)
5594 aputs ("\t.LEVEL 1.1\n");
5595 else
5596 aputs ("\t.LEVEL 1.0\n");
5597}
5598
5599static inline void
5c1d8983 5600pa_file_start_space (int sortspace)
92c473b8 5601{
5602 aputs ("\t.SPACE $PRIVATE$");
5603 if (sortspace)
5604 aputs (",SORT=16");
8151bf30 5605 aputs ("\n\t.SUBSPA $DATA$,QUAD=1,ALIGN=8,ACCESS=31");
5606 if (flag_tm)
5607 aputs ("\n\t.SUBSPA $TM_CLONE_TABLE$,QUAD=1,ALIGN=8,ACCESS=31");
5608 aputs ("\n\t.SUBSPA $BSS$,QUAD=1,ALIGN=8,ACCESS=31,ZERO,SORT=82"
5609 "\n\t.SPACE $TEXT$");
92c473b8 5610 if (sortspace)
5611 aputs (",SORT=8");
5612 aputs ("\n\t.SUBSPA $LIT$,QUAD=0,ALIGN=8,ACCESS=44"
8151bf30 5613 "\n\t.SUBSPA $CODE$,QUAD=0,ALIGN=8,ACCESS=44,CODE_ONLY\n");
92c473b8 5614}
5615
5616static inline void
5c1d8983 5617pa_file_start_file (int want_version)
92c473b8 5618{
5619 if (write_symbols != NO_DEBUG)
5620 {
5621 output_file_directive (asm_out_file, main_input_filename);
5622 if (want_version)
5623 aputs ("\t.version\t\"01.01\"\n");
5624 }
5625}
5626
5627static inline void
5c1d8983 5628pa_file_start_mcount (const char *aswhat)
92c473b8 5629{
5630 if (profile_flag)
5631 fprintf (asm_out_file, "\t.IMPORT _mcount,%s\n", aswhat);
5632}
5633
5634static void
5c1d8983 5635pa_elf_file_start (void)
92c473b8 5636{
5637 pa_file_start_level ();
5638 pa_file_start_mcount ("ENTRY");
5639 pa_file_start_file (0);
5640}
5641
5642static void
5c1d8983 5643pa_som_file_start (void)
92c473b8 5644{
5645 pa_file_start_level ();
5646 pa_file_start_space (0);
5647 aputs ("\t.IMPORT $global$,DATA\n"
5648 "\t.IMPORT $$dyncall,MILLICODE\n");
5649 pa_file_start_mcount ("CODE");
5650 pa_file_start_file (0);
5651}
5652
5653static void
5c1d8983 5654pa_linux_file_start (void)
92c473b8 5655{
5656 pa_file_start_file (1);
5657 pa_file_start_level ();
5658 pa_file_start_mcount ("CODE");
5659}
5660
5661static void
5c1d8983 5662pa_hpux64_gas_file_start (void)
92c473b8 5663{
5664 pa_file_start_level ();
5665#ifdef ASM_OUTPUT_TYPE_DIRECTIVE
5666 if (profile_flag)
5667 ASM_OUTPUT_TYPE_DIRECTIVE (asm_out_file, "_mcount", "function");
5668#endif
5669 pa_file_start_file (1);
5670}
5671
5672static void
5c1d8983 5673pa_hpux64_hpas_file_start (void)
92c473b8 5674{
5675 pa_file_start_level ();
5676 pa_file_start_space (1);
5677 pa_file_start_mcount ("CODE");
5678 pa_file_start_file (0);
5679}
5680#undef aputs
5681
4e75439e 5682/* Search the deferred plabel list for SYMBOL and return its internal
5683 label. If an entry for SYMBOL is not found, a new entry is created. */
5684
5685rtx
e202682d 5686pa_get_deferred_plabel (rtx symbol)
ece88821 5687{
5f43b4f6 5688 const char *fname = XSTR (symbol, 0);
ece88821 5689 size_t i;
5690
5691 /* See if we have already put this function on the list of deferred
5692 plabels. This list is generally small, so a liner search is not
5693 too ugly. If it proves too slow replace it with something faster. */
5694 for (i = 0; i < n_deferred_plabels; i++)
5f43b4f6 5695 if (strcmp (fname, XSTR (deferred_plabels[i].symbol, 0)) == 0)
ece88821 5696 break;
5697
5698 /* If the deferred plabel list is empty, or this entry was not found
5699 on the list, create a new entry on the list. */
5700 if (deferred_plabels == NULL || i == n_deferred_plabels)
5701 {
5f43b4f6 5702 tree id;
5703
ece88821 5704 if (deferred_plabels == 0)
25a27413 5705 deferred_plabels = ggc_alloc<deferred_plabel> ();
ece88821 5706 else
ba72912a 5707 deferred_plabels = GGC_RESIZEVEC (struct deferred_plabel,
5708 deferred_plabels,
5709 n_deferred_plabels + 1);
ece88821 5710
5711 i = n_deferred_plabels++;
5712 deferred_plabels[i].internal_label = gen_label_rtx ();
5f43b4f6 5713 deferred_plabels[i].symbol = symbol;
ece88821 5714
5f43b4f6 5715 /* Gross. We have just implicitly taken the address of this
5716 function. Mark it in the same manner as assemble_name. */
5717 id = maybe_get_identifier (targetm.strip_name_encoding (fname));
5718 if (id)
5719 mark_referenced (id);
ece88821 5720 }
5721
4e75439e 5722 return deferred_plabels[i].internal_label;
ece88821 5723}
5724
f6940372 5725static void
5c1d8983 5726output_deferred_plabels (void)
5cc6b2bc 5727{
e11bd7e5 5728 size_t i;
78962d38 5729
5730 /* If we have some deferred plabels, then we need to switch into the
5731 data or readonly data section, and align it to a 4 byte boundary
191ec5a2 5732 before outputting the deferred plabels. */
5cc6b2bc 5733 if (n_deferred_plabels)
5734 {
78962d38 5735 switch_to_section (flag_pic ? data_section : readonly_data_section);
f6940372 5736 ASM_OUTPUT_ALIGN (asm_out_file, TARGET_64BIT ? 3 : 2);
5cc6b2bc 5737 }
5738
5739 /* Now output the deferred plabels. */
5740 for (i = 0; i < n_deferred_plabels; i++)
5741 {
c5559ed4 5742 targetm.asm_out.internal_label (asm_out_file, "L",
f6940372 5743 CODE_LABEL_NUMBER (deferred_plabels[i].internal_label));
5f43b4f6 5744 assemble_integer (deferred_plabels[i].symbol,
b70ea764 5745 TARGET_64BIT ? 8 : 4, TARGET_64BIT ? 64 : 32, 1);
5cc6b2bc 5746 }
5747}
5748
3912b4d0 5749/* Initialize optabs to point to emulation routines. */
5750
f2f543a3 5751static void
3912b4d0 5752pa_init_libfuncs (void)
f2f543a3 5753{
3912b4d0 5754 if (HPUX_LONG_DOUBLE_LIBRARY)
5755 {
5756 set_optab_libfunc (add_optab, TFmode, "_U_Qfadd");
5757 set_optab_libfunc (sub_optab, TFmode, "_U_Qfsub");
5758 set_optab_libfunc (smul_optab, TFmode, "_U_Qfmpy");
5759 set_optab_libfunc (sdiv_optab, TFmode, "_U_Qfdiv");
5760 set_optab_libfunc (smin_optab, TFmode, "_U_Qmin");
5761 set_optab_libfunc (smax_optab, TFmode, "_U_Qfmax");
5762 set_optab_libfunc (sqrt_optab, TFmode, "_U_Qfsqrt");
5763 set_optab_libfunc (abs_optab, TFmode, "_U_Qfabs");
5764 set_optab_libfunc (neg_optab, TFmode, "_U_Qfneg");
5765
5766 set_optab_libfunc (eq_optab, TFmode, "_U_Qfeq");
5767 set_optab_libfunc (ne_optab, TFmode, "_U_Qfne");
5768 set_optab_libfunc (gt_optab, TFmode, "_U_Qfgt");
5769 set_optab_libfunc (ge_optab, TFmode, "_U_Qfge");
5770 set_optab_libfunc (lt_optab, TFmode, "_U_Qflt");
5771 set_optab_libfunc (le_optab, TFmode, "_U_Qfle");
5772 set_optab_libfunc (unord_optab, TFmode, "_U_Qfunord");
5773
5774 set_conv_libfunc (sext_optab, TFmode, SFmode, "_U_Qfcnvff_sgl_to_quad");
5775 set_conv_libfunc (sext_optab, TFmode, DFmode, "_U_Qfcnvff_dbl_to_quad");
5776 set_conv_libfunc (trunc_optab, SFmode, TFmode, "_U_Qfcnvff_quad_to_sgl");
5777 set_conv_libfunc (trunc_optab, DFmode, TFmode, "_U_Qfcnvff_quad_to_dbl");
5778
5779 set_conv_libfunc (sfix_optab, SImode, TFmode,
5780 TARGET_64BIT ? "__U_Qfcnvfxt_quad_to_sgl"
5781 : "_U_Qfcnvfxt_quad_to_sgl");
5782 set_conv_libfunc (sfix_optab, DImode, TFmode,
5783 "_U_Qfcnvfxt_quad_to_dbl");
5784 set_conv_libfunc (ufix_optab, SImode, TFmode,
5785 "_U_Qfcnvfxt_quad_to_usgl");
5786 set_conv_libfunc (ufix_optab, DImode, TFmode,
5787 "_U_Qfcnvfxt_quad_to_udbl");
5788
5789 set_conv_libfunc (sfloat_optab, TFmode, SImode,
5790 "_U_Qfcnvxf_sgl_to_quad");
5791 set_conv_libfunc (sfloat_optab, TFmode, DImode,
5792 "_U_Qfcnvxf_dbl_to_quad");
5793 set_conv_libfunc (ufloat_optab, TFmode, SImode,
5794 "_U_Qfcnvxf_usgl_to_quad");
5795 set_conv_libfunc (ufloat_optab, TFmode, DImode,
5796 "_U_Qfcnvxf_udbl_to_quad");
5797 }
d094e1b2 5798
5799 if (TARGET_SYNC_LIBCALL)
8ef0dc80 5800 init_sync_libfuncs (8);
f2f543a3 5801}
f2f543a3 5802
87ad11b0 5803/* HP's millicode routines mean something special to the assembler.
5804 Keep track of which ones we have used. */
5805
c2271c34 5806enum millicodes { remI, remU, divI, divU, mulI, end1000 };
5c1d8983 5807static void import_milli (enum millicodes);
ea52c577 5808static char imported[(int) end1000];
c2271c34 5809static const char * const milli_names[] = {"remI", "remU", "divI", "divU", "mulI"};
e99c3a1d 5810static const char import_string[] = ".IMPORT $$....,MILLICODE";
87ad11b0 5811#define MILLI_START 10
5812
57ed30e5 5813static void
5c1d8983 5814import_milli (enum millicodes code)
87ad11b0 5815{
5816 char str[sizeof (import_string)];
6d36483b 5817
ea52c577 5818 if (!imported[(int) code])
87ad11b0 5819 {
ea52c577 5820 imported[(int) code] = 1;
87ad11b0 5821 strcpy (str, import_string);
ea52c577 5822 strncpy (str + MILLI_START, milli_names[(int) code], 4);
87ad11b0 5823 output_asm_insn (str, 0);
5824 }
5825}
5826
6d36483b 5827/* The register constraints have put the operands and return value in
6dc3b0d9 5828 the proper registers. */
87ad11b0 5829
611a88e1 5830const char *
91a55c11 5831pa_output_mul_insn (int unsignedp ATTRIBUTE_UNUSED, rtx_insn *insn)
87ad11b0 5832{
d178f670 5833 import_milli (mulI);
e202682d 5834 return pa_output_millicode_call (insn, gen_rtx_SYMBOL_REF (Pmode, "$$mulI"));
87ad11b0 5835}
5836
6dc3b0d9 5837/* Emit the rtl for doing a division by a constant. */
87ad11b0 5838
d178f670 5839/* Do magic division millicodes exist for this value? */
e202682d 5840const int pa_magic_milli[]= {0, 0, 0, 1, 0, 1, 1, 1, 0, 1, 1, 0, 1, 0, 1, 1};
87ad11b0 5841
6d36483b 5842/* We'll use an array to keep track of the magic millicodes and
87ad11b0 5843 whether or not we've used them already. [n][0] is signed, [n][1] is
6dc3b0d9 5844 unsigned. */
87ad11b0 5845
87ad11b0 5846static int div_milli[16][2];
5847
87ad11b0 5848int
e202682d 5849pa_emit_hpdiv_const (rtx *operands, int unsignedp)
87ad11b0 5850{
5851 if (GET_CODE (operands[2]) == CONST_INT
5852 && INTVAL (operands[2]) > 0
5853 && INTVAL (operands[2]) < 16
e202682d 5854 && pa_magic_milli[INTVAL (operands[2])])
87ad11b0 5855 {
2013ddf6 5856 rtx ret = gen_rtx_REG (SImode, TARGET_64BIT ? 2 : 31);
5857
ad851752 5858 emit_move_insn (gen_rtx_REG (SImode, 26), operands[1]);
87ad11b0 5859 emit
75b1a41a 5860 (gen_rtx_PARALLEL
5861 (VOIDmode,
d1f9b275 5862 gen_rtvec (6, gen_rtx_SET (gen_rtx_REG (SImode, 29),
ad851752 5863 gen_rtx_fmt_ee (unsignedp ? UDIV : DIV,
5864 SImode,
5865 gen_rtx_REG (SImode, 26),
5866 operands[2])),
c2078db8 5867 gen_rtx_CLOBBER (VOIDmode, operands[4]),
ad851752 5868 gen_rtx_CLOBBER (VOIDmode, operands[3]),
5869 gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, 26)),
5870 gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, 25)),
2013ddf6 5871 gen_rtx_CLOBBER (VOIDmode, ret))));
ad851752 5872 emit_move_insn (operands[0], gen_rtx_REG (SImode, 29));
87ad11b0 5873 return 1;
5874 }
5875 return 0;
5876}
5877
611a88e1 5878const char *
91a55c11 5879pa_output_div_insn (rtx *operands, int unsignedp, rtx_insn *insn)
87ad11b0 5880{
5881 int divisor;
6d36483b 5882
5883 /* If the divisor is a constant, try to use one of the special
87ad11b0 5884 opcodes .*/
5885 if (GET_CODE (operands[0]) == CONST_INT)
5886 {
d6686e21 5887 static char buf[100];
87ad11b0 5888 divisor = INTVAL (operands[0]);
5889 if (!div_milli[divisor][unsignedp])
5890 {
d6686e21 5891 div_milli[divisor][unsignedp] = 1;
87ad11b0 5892 if (unsignedp)
5893 output_asm_insn (".IMPORT $$divU_%0,MILLICODE", operands);
5894 else
5895 output_asm_insn (".IMPORT $$divI_%0,MILLICODE", operands);
87ad11b0 5896 }
5897 if (unsignedp)
d6686e21 5898 {
4840a03a 5899 sprintf (buf, "$$divU_" HOST_WIDE_INT_PRINT_DEC,
5900 INTVAL (operands[0]));
e202682d 5901 return pa_output_millicode_call (insn,
5902 gen_rtx_SYMBOL_REF (SImode, buf));
d6686e21 5903 }
5904 else
5905 {
4840a03a 5906 sprintf (buf, "$$divI_" HOST_WIDE_INT_PRINT_DEC,
5907 INTVAL (operands[0]));
e202682d 5908 return pa_output_millicode_call (insn,
5909 gen_rtx_SYMBOL_REF (SImode, buf));
d6686e21 5910 }
87ad11b0 5911 }
6dc3b0d9 5912 /* Divisor isn't a special constant. */
87ad11b0 5913 else
5914 {
5915 if (unsignedp)
5916 {
5917 import_milli (divU);
e202682d 5918 return pa_output_millicode_call (insn,
ad851752 5919 gen_rtx_SYMBOL_REF (SImode, "$$divU"));
87ad11b0 5920 }
5921 else
5922 {
5923 import_milli (divI);
e202682d 5924 return pa_output_millicode_call (insn,
ad851752 5925 gen_rtx_SYMBOL_REF (SImode, "$$divI"));
87ad11b0 5926 }
5927 }
5928}
5929
6dc3b0d9 5930/* Output a $$rem millicode to do mod. */
87ad11b0 5931
611a88e1 5932const char *
91a55c11 5933pa_output_mod_insn (int unsignedp, rtx_insn *insn)
87ad11b0 5934{
5935 if (unsignedp)
5936 {
5937 import_milli (remU);
e202682d 5938 return pa_output_millicode_call (insn,
5939 gen_rtx_SYMBOL_REF (SImode, "$$remU"));
87ad11b0 5940 }
5941 else
5942 {
5943 import_milli (remI);
e202682d 5944 return pa_output_millicode_call (insn,
5945 gen_rtx_SYMBOL_REF (SImode, "$$remI"));
87ad11b0 5946 }
5947}
5948
5949void
89dcddd6 5950pa_output_arg_descriptor (rtx_insn *call_insn)
87ad11b0 5951{
611a88e1 5952 const char *arg_regs[4];
3754d046 5953 machine_mode arg_mode;
df0651dc 5954 rtx link;
87ad11b0 5955 int i, output_flag = 0;
5956 int regno;
6d36483b 5957
5e3c5739 5958 /* We neither need nor want argument location descriptors for the
5d0619cc 5959 64bit runtime environment or the ELF32 environment. */
5960 if (TARGET_64BIT || TARGET_ELF32)
5e3c5739 5961 return;
5962
87ad11b0 5963 for (i = 0; i < 4; i++)
5964 arg_regs[i] = 0;
5965
738176ab 5966 /* Specify explicitly that no argument relocations should take place
5967 if using the portable runtime calling conventions. */
5968 if (TARGET_PORTABLE_RUNTIME)
5969 {
9c0ac0fd 5970 fputs ("\t.CALL ARGW0=NO,ARGW1=NO,ARGW2=NO,ARGW3=NO,RETVAL=NO\n",
5971 asm_out_file);
738176ab 5972 return;
5973 }
5974
aa90bb35 5975 gcc_assert (CALL_P (call_insn));
ecf2283d 5976 for (link = CALL_INSN_FUNCTION_USAGE (call_insn);
5977 link; link = XEXP (link, 1))
87ad11b0 5978 {
df0651dc 5979 rtx use = XEXP (link, 0);
c12afafd 5980
df0651dc 5981 if (! (GET_CODE (use) == USE
5982 && GET_CODE (XEXP (use, 0)) == REG
5983 && FUNCTION_ARG_REGNO_P (REGNO (XEXP (use, 0)))))
c12afafd 5984 continue;
5985
df0651dc 5986 arg_mode = GET_MODE (XEXP (use, 0));
5987 regno = REGNO (XEXP (use, 0));
87ad11b0 5988 if (regno >= 23 && regno <= 26)
372ef038 5989 {
5990 arg_regs[26 - regno] = "GR";
5991 if (arg_mode == DImode)
5992 arg_regs[25 - regno] = "GR";
5993 }
df0651dc 5994 else if (regno >= 32 && regno <= 39)
87ad11b0 5995 {
5996 if (arg_mode == SFmode)
df0651dc 5997 arg_regs[(regno - 32) / 2] = "FR";
e6ba640e 5998 else
87ad11b0 5999 {
eeec72c0 6000#ifndef HP_FP_ARG_DESCRIPTOR_REVERSED
df0651dc 6001 arg_regs[(regno - 34) / 2] = "FR";
6002 arg_regs[(regno - 34) / 2 + 1] = "FU";
87ad11b0 6003#else
df0651dc 6004 arg_regs[(regno - 34) / 2] = "FU";
6005 arg_regs[(regno - 34) / 2 + 1] = "FR";
87ad11b0 6006#endif
6007 }
87ad11b0 6008 }
6009 }
6010 fputs ("\t.CALL ", asm_out_file);
6011 for (i = 0; i < 4; i++)
6012 {
6013 if (arg_regs[i])
6014 {
6015 if (output_flag++)
6016 fputc (',', asm_out_file);
6017 fprintf (asm_out_file, "ARGW%d=%s", i, arg_regs[i]);
6018 }
6019 }
6020 fputc ('\n', asm_out_file);
6021}
6022\f
e8248b41 6023/* Inform reload about cases where moving X with a mode MODE to or from
6024 a register in RCLASS requires an extra scratch or immediate register.
6025 Return the class needed for the immediate register. */
5ddb2975 6026
964229b7 6027static reg_class_t
6028pa_secondary_reload (bool in_p, rtx x, reg_class_t rclass_i,
3754d046 6029 machine_mode mode, secondary_reload_info *sri)
5655a0e5 6030{
c9b20949 6031 int regno;
964229b7 6032 enum reg_class rclass = (enum reg_class) rclass_i;
9c0ac0fd 6033
5655a0e5 6034 /* Handle the easy stuff first. */
8deb3959 6035 if (rclass == R1_REGS)
5655a0e5 6036 return NO_REGS;
9c0ac0fd 6037
5655a0e5 6038 if (REG_P (x))
6039 {
6040 regno = REGNO (x);
8deb3959 6041 if (rclass == BASE_REG_CLASS && regno < FIRST_PSEUDO_REGISTER)
5655a0e5 6042 return NO_REGS;
6043 }
cca0fae1 6044 else
6045 regno = -1;
87ad11b0 6046
5655a0e5 6047 /* If we have something like (mem (mem (...)), we can safely assume the
6048 inner MEM will end up in a general register after reloading, so there's
6049 no need for a secondary reload. */
6050 if (GET_CODE (x) == MEM && GET_CODE (XEXP (x, 0)) == MEM)
6051 return NO_REGS;
87ad11b0 6052
b4a7bf10 6053 /* Trying to load a constant into a FP register during PIC code
e8248b41 6054 generation requires %r1 as a scratch register. For float modes,
6055 the only legitimate constant is CONST0_RTX. However, there are
6056 a few patterns that accept constant double operands. */
fc44315f 6057 if (flag_pic
8deb3959 6058 && FP_REG_CLASS_P (rclass)
5655a0e5 6059 && (GET_CODE (x) == CONST_INT || GET_CODE (x) == CONST_DOUBLE))
9c0ac0fd 6060 {
e8248b41 6061 switch (mode)
6062 {
916ace94 6063 case E_SImode:
e8248b41 6064 sri->icode = CODE_FOR_reload_insi_r1;
6065 break;
6066
916ace94 6067 case E_DImode:
e8248b41 6068 sri->icode = CODE_FOR_reload_indi_r1;
6069 break;
6070
916ace94 6071 case E_SFmode:
e8248b41 6072 sri->icode = CODE_FOR_reload_insf_r1;
6073 break;
6074
916ace94 6075 case E_DFmode:
e8248b41 6076 sri->icode = CODE_FOR_reload_indf_r1;
6077 break;
6078
6079 default:
6080 gcc_unreachable ();
6081 }
5655a0e5 6082 return NO_REGS;
9c0ac0fd 6083 }
9c0ac0fd 6084
e8248b41 6085 /* Secondary reloads of symbolic expressions require %r1 as a scratch
6086 register when we're generating PIC code or when the operand isn't
c9b20949 6087 readonly. */
e202682d 6088 if (pa_symbolic_expression_p (x))
c9b20949 6089 {
6090 if (GET_CODE (x) == HIGH)
6091 x = XEXP (x, 0);
6092
6093 if (flag_pic || !read_only_operand (x, VOIDmode))
6094 {
e8248b41 6095 switch (mode)
6096 {
916ace94 6097 case E_SImode:
e8248b41 6098 sri->icode = CODE_FOR_reload_insi_r1;
6099 break;
6100
916ace94 6101 case E_DImode:
e8248b41 6102 sri->icode = CODE_FOR_reload_indi_r1;
6103 break;
6104
6105 default:
6106 gcc_unreachable ();
6107 }
c9b20949 6108 return NO_REGS;
6109 }
6110 }
6111
5655a0e5 6112 /* Profiling showed the PA port spends about 1.3% of its compilation
6113 time in true_regnum from calls inside pa_secondary_reload_class. */
6114 if (regno >= FIRST_PSEUDO_REGISTER || GET_CODE (x) == SUBREG)
6115 regno = true_regnum (x);
76a0ced5 6116
e8248b41 6117 /* Handle reloads for floating point loads and stores. */
7050ff73 6118 if ((regno >= FIRST_PSEUDO_REGISTER || regno == -1)
8deb3959 6119 && FP_REG_CLASS_P (rclass))
7050ff73 6120 {
e8248b41 6121 if (MEM_P (x))
7050ff73 6122 {
6123 x = XEXP (x, 0);
6124
18d8d57c 6125 /* We don't need a secondary reload for indexed memory addresses.
6126
6127 When INT14_OK_STRICT is true, it might appear that we could
6128 directly allow register indirect memory addresses. However,
6129 this doesn't work because we don't support SUBREGs in
6130 floating-point register copies and reload doesn't tell us
6131 when it's going to use a SUBREG. */
6132 if (IS_INDEX_ADDR_P (x))
7050ff73 6133 return NO_REGS;
7050ff73 6134 }
6135
6136 /* Request a secondary reload with a general scratch register
9d75589a 6137 for everything else. ??? Could symbolic operands be handled
7050ff73 6138 directly when generating non-pic PA 2.0 code? */
6b531606 6139 sri->icode = (in_p
6140 ? direct_optab_handler (reload_in_optab, mode)
6141 : direct_optab_handler (reload_out_optab, mode));
7050ff73 6142 return NO_REGS;
6143 }
6144
5ddb2975 6145 /* A SAR<->FP register copy requires an intermediate general register
6146 and secondary memory. We need a secondary reload with a general
6147 scratch register for spills. */
6148 if (rclass == SHIFT_REGS)
5655a0e5 6149 {
5ddb2975 6150 /* Handle spill. */
6151 if (regno >= FIRST_PSEUDO_REGISTER || regno < 0)
6152 {
6153 sri->icode = (in_p
6154 ? direct_optab_handler (reload_in_optab, mode)
6155 : direct_optab_handler (reload_out_optab, mode));
6156 return NO_REGS;
6157 }
6158
6159 /* Handle FP copy. */
6160 if (FP_REG_CLASS_P (REGNO_REG_CLASS (regno)))
6161 return GENERAL_REGS;
5655a0e5 6162 }
d2c1d63d 6163
7c4b32f3 6164 if (regno >= 0 && regno < FIRST_PSEUDO_REGISTER
5ddb2975 6165 && REGNO_REG_CLASS (regno) == SHIFT_REGS
6166 && FP_REG_CLASS_P (rclass))
6167 return GENERAL_REGS;
2ee034bc 6168
d2c1d63d 6169 return NO_REGS;
87ad11b0 6170}
6171
c836e75b 6172/* Implement TARGET_SECONDARY_MEMORY_NEEDED. */
6173
6174static bool
6175pa_secondary_memory_needed (machine_mode mode ATTRIBUTE_UNUSED,
6176 reg_class_t class1 ATTRIBUTE_UNUSED,
6177 reg_class_t class2 ATTRIBUTE_UNUSED)
6178{
6179#ifdef PA_SECONDARY_MEMORY_NEEDED
6180 return PA_SECONDARY_MEMORY_NEEDED (mode, class1, class2);
6181#else
6182 return false;
6183#endif
6184}
6185
df6b92e4 6186/* Implement TARGET_EXTRA_LIVE_ON_ENTRY. The argument pointer
6187 is only marked as live on entry by df-scan when it is a fixed
6188 register. It isn't a fixed register in the 64-bit runtime,
6189 so we need to mark it here. */
6190
6191static void
6192pa_extra_live_on_entry (bitmap regs)
6193{
6194 if (TARGET_64BIT)
6195 bitmap_set_bit (regs, ARG_POINTER_REGNUM);
6196}
6197
6198/* Implement EH_RETURN_HANDLER_RTX. The MEM needs to be volatile
6199 to prevent it from being deleted. */
6200
6201rtx
6202pa_eh_return_handler_rtx (void)
6203{
6204 rtx tmp;
6205
68bc9ae6 6206 tmp = gen_rtx_PLUS (word_mode, hard_frame_pointer_rtx,
df6b92e4 6207 TARGET_64BIT ? GEN_INT (-16) : GEN_INT (-20));
6208 tmp = gen_rtx_MEM (word_mode, tmp);
6209 tmp->volatil = 1;
6210 return tmp;
6211}
6212
b981d932 6213/* In the 32-bit runtime, arguments larger than eight bytes are passed
6214 by invisible reference. As a GCC extension, we also pass anything
6215 with a zero or variable size by reference.
6216
6217 The 64-bit runtime does not describe passing any types by invisible
6218 reference. The internals of GCC can't currently handle passing
6219 empty structures, and zero or variable length arrays when they are
6220 not passed entirely on the stack or by reference. Thus, as a GCC
6221 extension, we pass these types by reference. The HP compiler doesn't
6222 support these types, so hopefully there shouldn't be any compatibility
6223 issues. This may have to be revisited when HP releases a C99 compiler
6224 or updates the ABI. */
6225
6226static bool
39cba157 6227pa_pass_by_reference (cumulative_args_t ca ATTRIBUTE_UNUSED,
3754d046 6228 machine_mode mode, const_tree type,
b981d932 6229 bool named ATTRIBUTE_UNUSED)
6230{
6231 HOST_WIDE_INT size;
6232
6233 if (type)
6234 size = int_size_in_bytes (type);
6235 else
6236 size = GET_MODE_SIZE (mode);
6237
6238 if (TARGET_64BIT)
6239 return size <= 0;
6240 else
6241 return size <= 0 || size > 8;
6242}
6243
d7ab0e3d 6244/* Implement TARGET_FUNCTION_ARG_PADDING. */
6245
6246static pad_direction
3754d046 6247pa_function_arg_padding (machine_mode mode, const_tree type)
87ad11b0 6248{
ac965869 6249 if (mode == BLKmode
ef669d1a 6250 || (TARGET_64BIT
6251 && type
6252 && (AGGREGATE_TYPE_P (type)
6253 || TREE_CODE (type) == COMPLEX_TYPE
6254 || TREE_CODE (type) == VECTOR_TYPE)))
ac965869 6255 {
d7ab0e3d 6256 /* Return PAD_NONE if justification is not required. */
ac965869 6257 if (type
6258 && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST
6259 && (int_size_in_bytes (type) * BITS_PER_UNIT) % PARM_BOUNDARY == 0)
d7ab0e3d 6260 return PAD_NONE;
ac965869 6261
6262 /* The directions set here are ignored when a BLKmode argument larger
6263 than a word is placed in a register. Different code is used for
6264 the stack and registers. This makes it difficult to have a
6265 consistent data representation for both the stack and registers.
6266 For both runtimes, the justification and padding for arguments on
6267 the stack and in registers should be identical. */
6268 if (TARGET_64BIT)
6269 /* The 64-bit runtime specifies left justification for aggregates. */
d7ab0e3d 6270 return PAD_UPWARD;
87ad11b0 6271 else
ac965869 6272 /* The 32-bit runtime architecture specifies right justification.
6273 When the argument is passed on the stack, the argument is padded
6274 with garbage on the left. The HP compiler pads with zeros. */
d7ab0e3d 6275 return PAD_DOWNWARD;
87ad11b0 6276 }
ac965869 6277
6278 if (GET_MODE_BITSIZE (mode) < PARM_BOUNDARY)
d7ab0e3d 6279 return PAD_DOWNWARD;
87ad11b0 6280 else
d7ab0e3d 6281 return PAD_NONE;
87ad11b0 6282}
6283
87ad11b0 6284\f
55f54832 6285/* Do what is necessary for `va_start'. We look at the current function
6286 to determine if stdargs or varargs is used and fill in an initial
6287 va_list. A pointer to this constructor is returned. */
87ad11b0 6288
b8debbe8 6289static rtx
5c1d8983 6290hppa_builtin_saveregs (void)
87ad11b0 6291{
01251cbc 6292 rtx offset, dest;
87ad11b0 6293 tree fntype = TREE_TYPE (current_function_decl);
257d99c3 6294 int argadj = ((!stdarg_p (fntype))
87ad11b0 6295 ? UNITS_PER_WORD : 0);
6296
6297 if (argadj)
29c05e22 6298 offset = plus_constant (Pmode, crtl->args.arg_offset_rtx, argadj);
87ad11b0 6299 else
abe32cce 6300 offset = crtl->args.arg_offset_rtx;
9c6d4825 6301
5e3c5739 6302 if (TARGET_64BIT)
6303 {
6304 int i, off;
9840d99d 6305
5e3c5739 6306 /* Adjust for varargs/stdarg differences. */
6307 if (argadj)
29c05e22 6308 offset = plus_constant (Pmode, crtl->args.arg_offset_rtx, -argadj);
5e3c5739 6309 else
abe32cce 6310 offset = crtl->args.arg_offset_rtx;
5e3c5739 6311
6312 /* We need to save %r26 .. %r19 inclusive starting at offset -64
6313 from the incoming arg pointer and growing to larger addresses. */
6314 for (i = 26, off = -64; i >= 19; i--, off += 8)
6315 emit_move_insn (gen_rtx_MEM (word_mode,
29c05e22 6316 plus_constant (Pmode,
6317 arg_pointer_rtx, off)),
5e3c5739 6318 gen_rtx_REG (word_mode, i));
6319
6320 /* The incoming args pointer points just beyond the flushback area;
8ef587dc 6321 normally this is not a serious concern. However, when we are doing
5e3c5739 6322 varargs/stdargs we want to make the arg pointer point to the start
6323 of the incoming argument area. */
6324 emit_move_insn (virtual_incoming_args_rtx,
29c05e22 6325 plus_constant (Pmode, arg_pointer_rtx, -64));
5e3c5739 6326
6327 /* Now return a pointer to the first anonymous argument. */
6328 return copy_to_reg (expand_binop (Pmode, add_optab,
6329 virtual_incoming_args_rtx,
6330 offset, 0, 0, OPTAB_LIB_WIDEN));
6331 }
6332
6dc3b0d9 6333 /* Store general registers on the stack. */
ad851752 6334 dest = gen_rtx_MEM (BLKmode,
29c05e22 6335 plus_constant (Pmode, crtl->args.internal_arg_pointer,
ad851752 6336 -16));
ab6ab77e 6337 set_mem_alias_set (dest, get_varargs_alias_set ());
2a631e19 6338 set_mem_align (dest, BITS_PER_WORD);
530178a9 6339 move_block_from_reg (23, dest, 4);
01251cbc 6340
76a0ced5 6341 /* move_block_from_reg will emit code to store the argument registers
6342 individually as scalar stores.
6343
6344 However, other insns may later load from the same addresses for
ad87de1e 6345 a structure load (passing a struct to a varargs routine).
76a0ced5 6346
6347 The alias code assumes that such aliasing can never happen, so we
6348 have to keep memory referencing insns from moving up beyond the
6349 last argument register store. So we emit a blockage insn here. */
6350 emit_insn (gen_blockage ());
6351
9c6d4825 6352 return copy_to_reg (expand_binop (Pmode, add_optab,
abe32cce 6353 crtl->args.internal_arg_pointer,
9c6d4825 6354 offset, 0, 0, OPTAB_LIB_WIDEN));
87ad11b0 6355}
d6f01525 6356
8a58ed0a 6357static void
5c1d8983 6358hppa_va_start (tree valist, rtx nextarg)
72899a61 6359{
6360 nextarg = expand_builtin_saveregs ();
7df226a2 6361 std_expand_builtin_va_start (valist, nextarg);
72899a61 6362}
6363
4c33eb68 6364static tree
75a70cf9 6365hppa_gimplify_va_arg_expr (tree valist, tree type, gimple_seq *pre_p,
6366 gimple_seq *post_p)
72899a61 6367{
5e3c5739 6368 if (TARGET_64BIT)
6369 {
4c33eb68 6370 /* Args grow upward. We can use the generic routines. */
bef380a4 6371 return std_gimplify_va_arg_expr (valist, type, pre_p, post_p);
72899a61 6372 }
ac965869 6373 else /* !TARGET_64BIT */
72899a61 6374 {
4c33eb68 6375 tree ptr = build_pointer_type (type);
6376 tree valist_type;
6377 tree t, u;
6378 unsigned int size, ofs;
bef380a4 6379 bool indirect;
72899a61 6380
bef380a4 6381 indirect = pass_by_reference (NULL, TYPE_MODE (type), type, 0);
4c33eb68 6382 if (indirect)
ac965869 6383 {
4c33eb68 6384 type = ptr;
6385 ptr = build_pointer_type (type);
72899a61 6386 }
4c33eb68 6387 size = int_size_in_bytes (type);
6388 valist_type = TREE_TYPE (valist);
ac965869 6389
4c33eb68 6390 /* Args grow down. Not handled by generic routines. */
ac965869 6391
0de36bdb 6392 u = fold_convert (sizetype, size_in_bytes (type));
6393 u = fold_build1 (NEGATE_EXPR, sizetype, u);
2cc66f2a 6394 t = fold_build_pointer_plus (valist, u);
ac965869 6395
175fd0a9 6396 /* Align to 4 or 8 byte boundary depending on argument size. */
6397
6398 u = build_int_cst (TREE_TYPE (t), (HOST_WIDE_INT)(size > 4 ? -8 : -4));
6399 t = build2 (BIT_AND_EXPR, TREE_TYPE (t), t, u);
0de36bdb 6400 t = fold_convert (valist_type, t);
4c33eb68 6401
33b1284b 6402 t = build2 (MODIFY_EXPR, valist_type, valist, t);
72899a61 6403
4c33eb68 6404 ofs = (8 - size) % 4;
6405 if (ofs != 0)
2cc66f2a 6406 t = fold_build_pointer_plus_hwi (t, ofs);
72899a61 6407
4c33eb68 6408 t = fold_convert (ptr, t);
063f5fdd 6409 t = build_va_arg_indirect_ref (t);
72899a61 6410
4c33eb68 6411 if (indirect)
063f5fdd 6412 t = build_va_arg_indirect_ref (t);
72899a61 6413
4c33eb68 6414 return t;
6415 }
6416}
72899a61 6417
2b1e7cc3 6418/* True if MODE is valid for the target. By "valid", we mean able to
6419 be manipulated in non-trivial ways. In particular, this means all
6420 the arithmetic is supported.
6421
6422 Currently, TImode is not valid as the HP 64-bit runtime documentation
6423 doesn't document the alignment and calling conventions for this type.
6424 Thus, we return false when PRECISION is 2 * BITS_PER_WORD and
6425 2 * BITS_PER_WORD isn't equal LONG_LONG_TYPE_SIZE. */
6426
6427static bool
8aec1ebb 6428pa_scalar_mode_supported_p (scalar_mode mode)
2b1e7cc3 6429{
6430 int precision = GET_MODE_PRECISION (mode);
6431
6432 switch (GET_MODE_CLASS (mode))
6433 {
6434 case MODE_PARTIAL_INT:
6435 case MODE_INT:
6436 if (precision == CHAR_TYPE_SIZE)
6437 return true;
6438 if (precision == SHORT_TYPE_SIZE)
6439 return true;
6440 if (precision == INT_TYPE_SIZE)
6441 return true;
6442 if (precision == LONG_TYPE_SIZE)
6443 return true;
6444 if (precision == LONG_LONG_TYPE_SIZE)
6445 return true;
6446 return false;
6447
6448 case MODE_FLOAT:
6449 if (precision == FLOAT_TYPE_SIZE)
6450 return true;
6451 if (precision == DOUBLE_TYPE_SIZE)
6452 return true;
6453 if (precision == LONG_DOUBLE_TYPE_SIZE)
6454 return true;
6455 return false;
6456
2af936a9 6457 case MODE_DECIMAL_FLOAT:
6458 return false;
6459
2b1e7cc3 6460 default:
6461 gcc_unreachable ();
6462 }
6463}
6464
317754f4 6465/* Return TRUE if INSN, a jump insn, has an unfilled delay slot and
ebeae299 6466 it branches into the delay slot. Otherwise, return FALSE. */
317754f4 6467
6468static bool
d3ffa7b4 6469branch_to_delay_slot_p (rtx_insn *insn)
317754f4 6470{
89dcddd6 6471 rtx_insn *jump_insn;
ebeae299 6472
317754f4 6473 if (dbr_sequence_length ())
6474 return FALSE;
6475
41503955 6476 jump_insn = next_active_insn (JUMP_LABEL_AS_INSN (insn));
ebeae299 6477 while (insn)
6478 {
6479 insn = next_active_insn (insn);
6480 if (jump_insn == insn)
6481 return TRUE;
6482
6483 /* We can't rely on the length of asms. So, we return FALSE when
6484 the branch is followed by an asm. */
6485 if (!insn
6486 || GET_CODE (PATTERN (insn)) == ASM_INPUT
43ac2f2f 6487 || asm_noperands (PATTERN (insn)) >= 0
ebeae299 6488 || get_attr_length (insn) > 0)
6489 break;
6490 }
6491
6492 return FALSE;
317754f4 6493}
6494
ebeae299 6495/* Return TRUE if INSN, a forward jump insn, needs a nop in its delay slot.
317754f4 6496
6497 This occurs when INSN has an unfilled delay slot and is followed
ebeae299 6498 by an asm. Disaster can occur if the asm is empty and the jump
6499 branches into the delay slot. So, we add a nop in the delay slot
6500 when this occurs. */
317754f4 6501
6502static bool
d3ffa7b4 6503branch_needs_nop_p (rtx_insn *insn)
317754f4 6504{
89dcddd6 6505 rtx_insn *jump_insn;
317754f4 6506
6507 if (dbr_sequence_length ())
6508 return FALSE;
6509
41503955 6510 jump_insn = next_active_insn (JUMP_LABEL_AS_INSN (insn));
ebeae299 6511 while (insn)
6512 {
6513 insn = next_active_insn (insn);
6514 if (!insn || jump_insn == insn)
6515 return TRUE;
6516
6517 if (!(GET_CODE (PATTERN (insn)) == ASM_INPUT
43ac2f2f 6518 || asm_noperands (PATTERN (insn)) >= 0)
ebeae299 6519 && get_attr_length (insn) > 0)
6520 break;
6521 }
6522
6523 return FALSE;
6524}
6525
6526/* Return TRUE if INSN, a forward jump insn, can use nullification
6527 to skip the following instruction. This avoids an extra cycle due
6528 to a mis-predicted branch when we fall through. */
6529
6530static bool
d3ffa7b4 6531use_skip_p (rtx_insn *insn)
ebeae299 6532{
41503955 6533 rtx_insn *jump_insn = next_active_insn (JUMP_LABEL_AS_INSN (insn));
ebeae299 6534
6535 while (insn)
6536 {
6537 insn = next_active_insn (insn);
6538
6539 /* We can't rely on the length of asms, so we can't skip asms. */
6540 if (!insn
6541 || GET_CODE (PATTERN (insn)) == ASM_INPUT
43ac2f2f 6542 || asm_noperands (PATTERN (insn)) >= 0)
ebeae299 6543 break;
6544 if (get_attr_length (insn) == 4
6545 && jump_insn == next_active_insn (insn))
6546 return TRUE;
6547 if (get_attr_length (insn) > 0)
6548 break;
6549 }
6550
6551 return FALSE;
317754f4 6552}
6553
6d36483b 6554/* This routine handles all the normal conditional branch sequences we
6555 might need to generate. It handles compare immediate vs compare
6556 register, nullification of delay slots, varying length branches,
0d986529 6557 negated branches, and all combinations of the above. It returns the
6d36483b 6558 output appropriate to emit the branch corresponding to all given
0d986529 6559 parameters. */
6560
611a88e1 6561const char *
91a55c11 6562pa_output_cbranch (rtx *operands, int negated, rtx_insn *insn)
29a4502c 6563{
0d986529 6564 static char buf[100];
ebeae299 6565 bool useskip;
f26036bb 6566 int nullify = INSN_ANNULLED_BRANCH_P (insn);
6567 int length = get_attr_length (insn);
6568 int xdelay;
0d986529 6569
a361b456 6570 /* A conditional branch to the following instruction (e.g. the delay slot)
ece0fa59 6571 is asking for a disaster. This can happen when not optimizing and
6572 when jump optimization fails.
29a4502c 6573
38efba6c 6574 While it is usually safe to emit nothing, this can fail if the
6575 preceding instruction is a nullified branch with an empty delay
6576 slot and the same branch target as this branch. We could check
6577 for this but jump optimization should eliminate nop jumps. It
6578 is always safe to emit a nop. */
317754f4 6579 if (branch_to_delay_slot_p (insn))
ece0fa59 6580 return "nop";
6d36483b 6581
22699a7e 6582 /* The doubleword form of the cmpib instruction doesn't have the LEU
6583 and GTU conditions while the cmpb instruction does. Since we accept
6584 zero for cmpb, we must ensure that we use cmpb for the comparison. */
6585 if (GET_MODE (operands[1]) == DImode && operands[2] == const0_rtx)
6586 operands[2] = gen_rtx_REG (DImode, 0);
d65b8df8 6587 if (GET_MODE (operands[2]) == DImode && operands[1] == const0_rtx)
6588 operands[1] = gen_rtx_REG (DImode, 0);
22699a7e 6589
5fbd5940 6590 /* If this is a long branch with its delay slot unfilled, set `nullify'
6591 as it can nullify the delay slot and save a nop. */
5a1231ef 6592 if (length == 8 && dbr_sequence_length () == 0)
5fbd5940 6593 nullify = 1;
6594
6595 /* If this is a short forward conditional branch which did not get
6596 its delay slot filled, the delay slot can still be nullified. */
5a1231ef 6597 if (! nullify && length == 4 && dbr_sequence_length () == 0)
5fbd5940 6598 nullify = forward_branch_p (insn);
6599
6d36483b 6600 /* A forward branch over a single nullified insn can be done with a
0d986529 6601 comclr instruction. This avoids a single cycle penalty due to
6602 mis-predicted branch if we fall through (branch not taken). */
ebeae299 6603 useskip = (length == 4 && nullify) ? use_skip_p (insn) : FALSE;
0d986529 6604
6605 switch (length)
6606 {
5fbd5940 6607 /* All short conditional branches except backwards with an unfilled
6608 delay slot. */
5a1231ef 6609 case 4:
0d986529 6610 if (useskip)
e4065f95 6611 strcpy (buf, "{com%I2clr,|cmp%I2clr,}");
0d986529 6612 else
e4065f95 6613 strcpy (buf, "{com%I2b,|cmp%I2b,}");
5e3c5739 6614 if (GET_MODE (operands[1]) == DImode)
6615 strcat (buf, "*");
0d986529 6616 if (negated)
6617 strcat (buf, "%B3");
6618 else
6619 strcat (buf, "%S3");
6620 if (useskip)
5a811d43 6621 strcat (buf, " %2,%r1,%%r0");
0d986529 6622 else if (nullify)
317754f4 6623 {
6624 if (branch_needs_nop_p (insn))
6625 strcat (buf, ",n %2,%r1,%0%#");
6626 else
6627 strcat (buf, ",n %2,%r1,%0");
6628 }
6d36483b 6629 else
9e49be0e 6630 strcat (buf, " %2,%r1,%0");
0d986529 6631 break;
6632
87fcb603 6633 /* All long conditionals. Note a short backward branch with an
5fbd5940 6634 unfilled delay slot is treated just like a long backward branch
6635 with an unfilled delay slot. */
5a1231ef 6636 case 8:
5fbd5940 6637 /* Handle weird backwards branch with a filled delay slot
f26036bb 6638 which is nullified. */
5fbd5940 6639 if (dbr_sequence_length () != 0
6640 && ! forward_branch_p (insn)
6641 && nullify)
6642 {
e4065f95 6643 strcpy (buf, "{com%I2b,|cmp%I2b,}");
5e3c5739 6644 if (GET_MODE (operands[1]) == DImode)
6645 strcat (buf, "*");
5fbd5940 6646 if (negated)
6647 strcat (buf, "%S3");
6648 else
6649 strcat (buf, "%B3");
5a811d43 6650 strcat (buf, ",n %2,%r1,.+12\n\tb %0");
5fbd5940 6651 }
43f0c1f2 6652 /* Handle short backwards branch with an unfilled delay slot.
6653 Using a comb;nop rather than comiclr;bl saves 1 cycle for both
6654 taken and untaken branches. */
6655 else if (dbr_sequence_length () == 0
6656 && ! forward_branch_p (insn)
47fc0706 6657 && INSN_ADDRESSES_SET_P ()
6658 && VAL_14_BITS_P (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (insn)))
6659 - INSN_ADDRESSES (INSN_UID (insn)) - 8))
43f0c1f2 6660 {
e4065f95 6661 strcpy (buf, "{com%I2b,|cmp%I2b,}");
5e3c5739 6662 if (GET_MODE (operands[1]) == DImode)
6663 strcat (buf, "*");
43f0c1f2 6664 if (negated)
9e49be0e 6665 strcat (buf, "%B3 %2,%r1,%0%#");
43f0c1f2 6666 else
9e49be0e 6667 strcat (buf, "%S3 %2,%r1,%0%#");
43f0c1f2 6668 }
0d986529 6669 else
5fbd5940 6670 {
e4065f95 6671 strcpy (buf, "{com%I2clr,|cmp%I2clr,}");
5e3c5739 6672 if (GET_MODE (operands[1]) == DImode)
6673 strcat (buf, "*");
5fbd5940 6674 if (negated)
6675 strcat (buf, "%S3");
6676 else
6677 strcat (buf, "%B3");
6678 if (nullify)
5a811d43 6679 strcat (buf, " %2,%r1,%%r0\n\tb,n %0");
5fbd5940 6680 else
5a811d43 6681 strcat (buf, " %2,%r1,%%r0\n\tb %0");
5fbd5940 6682 }
0d986529 6683 break;
6684
f26036bb 6685 default:
e9ec370e 6686 /* The reversed conditional branch must branch over one additional
f26036bb 6687 instruction if the delay slot is filled and needs to be extracted
e202682d 6688 by pa_output_lbranch. If the delay slot is empty or this is a
f26036bb 6689 nullified forward branch, the instruction after the reversed
6690 condition branch must be nullified. */
6691 if (dbr_sequence_length () == 0
6692 || (nullify && forward_branch_p (insn)))
6693 {
6694 nullify = 1;
6695 xdelay = 0;
6696 operands[4] = GEN_INT (length);
6697 }
6698 else
6699 {
6700 xdelay = 1;
6701 operands[4] = GEN_INT (length + 4);
6702 }
c8a0e52b 6703
6704 /* Create a reversed conditional branch which branches around
6705 the following insns. */
e9ec370e 6706 if (GET_MODE (operands[1]) != DImode)
6707 {
6708 if (nullify)
6709 {
6710 if (negated)
6711 strcpy (buf,
6712 "{com%I2b,%S3,n %2,%r1,.+%4|cmp%I2b,%S3,n %2,%r1,.+%4}");
6713 else
6714 strcpy (buf,
6715 "{com%I2b,%B3,n %2,%r1,.+%4|cmp%I2b,%B3,n %2,%r1,.+%4}");
6716 }
6717 else
6718 {
6719 if (negated)
6720 strcpy (buf,
6721 "{com%I2b,%S3 %2,%r1,.+%4|cmp%I2b,%S3 %2,%r1,.+%4}");
6722 else
6723 strcpy (buf,
6724 "{com%I2b,%B3 %2,%r1,.+%4|cmp%I2b,%B3 %2,%r1,.+%4}");
6725 }
6726 }
c8a0e52b 6727 else
5e3c5739 6728 {
e9ec370e 6729 if (nullify)
6730 {
6731 if (negated)
6732 strcpy (buf,
6733 "{com%I2b,*%S3,n %2,%r1,.+%4|cmp%I2b,*%S3,n %2,%r1,.+%4}");
6734 else
6735 strcpy (buf,
6736 "{com%I2b,*%B3,n %2,%r1,.+%4|cmp%I2b,*%B3,n %2,%r1,.+%4}");
6737 }
5e3c5739 6738 else
e9ec370e 6739 {
6740 if (negated)
6741 strcpy (buf,
6742 "{com%I2b,*%S3 %2,%r1,.+%4|cmp%I2b,*%S3 %2,%r1,.+%4}");
6743 else
6744 strcpy (buf,
6745 "{com%I2b,*%B3 %2,%r1,.+%4|cmp%I2b,*%B3 %2,%r1,.+%4}");
6746 }
5e3c5739 6747 }
c8a0e52b 6748
f26036bb 6749 output_asm_insn (buf, operands);
e202682d 6750 return pa_output_lbranch (operands[0], insn, xdelay);
e9ec370e 6751 }
6752 return buf;
6753}
c8a0e52b 6754
2e6d3863 6755/* Output a PIC pc-relative instruction sequence to load the address of
6756 OPERANDS[0] to register OPERANDS[2]. OPERANDS[0] is a symbol ref
6757 or a code label. OPERANDS[1] specifies the register to use to load
6758 the program counter. OPERANDS[3] may be used for label generation
6759 The sequence is always three instructions in length. The program
6760 counter recorded for PA 1.X is eight bytes more than that for PA 2.0.
6761 Register %r1 is clobbered. */
6762
6763static void
6764pa_output_pic_pcrel_sequence (rtx *operands)
6765{
6766 gcc_assert (SYMBOL_REF_P (operands[0]) || LABEL_P (operands[0]));
6767 if (TARGET_PA_20)
6768 {
6769 /* We can use mfia to determine the current program counter. */
6770 if (TARGET_SOM || !TARGET_GAS)
6771 {
6772 operands[3] = gen_label_rtx ();
6773 targetm.asm_out.internal_label (asm_out_file, "L",
6774 CODE_LABEL_NUMBER (operands[3]));
6775 output_asm_insn ("mfia %1", operands);
6776 output_asm_insn ("addil L'%0-%l3,%1", operands);
6777 output_asm_insn ("ldo R'%0-%l3(%%r1),%2", operands);
6778 }
6779 else
6780 {
6781 output_asm_insn ("mfia %1", operands);
6782 output_asm_insn ("addil L'%0-$PIC_pcrel$0+12,%1", operands);
6783 output_asm_insn ("ldo R'%0-$PIC_pcrel$0+16(%%r1),%2", operands);
6784 }
6785 }
6786 else
6787 {
6788 /* We need to use a branch to determine the current program counter. */
6789 output_asm_insn ("{bl|b,l} .+8,%1", operands);
6790 if (TARGET_SOM || !TARGET_GAS)
6791 {
6792 operands[3] = gen_label_rtx ();
6793 output_asm_insn ("addil L'%0-%l3,%1", operands);
6794 targetm.asm_out.internal_label (asm_out_file, "L",
6795 CODE_LABEL_NUMBER (operands[3]));
6796 output_asm_insn ("ldo R'%0-%l3(%%r1),%2", operands);
6797 }
6798 else
6799 {
6800 output_asm_insn ("addil L'%0-$PIC_pcrel$0+4,%1", operands);
6801 output_asm_insn ("ldo R'%0-$PIC_pcrel$0+8(%%r1),%2", operands);
6802 }
6803 }
6804}
6805
f26036bb 6806/* This routine handles output of long unconditional branches that
6807 exceed the maximum range of a simple branch instruction. Since
6808 we don't have a register available for the branch, we save register
6809 %r1 in the frame marker, load the branch destination DEST into %r1,
6810 execute the branch, and restore %r1 in the delay slot of the branch.
6811
6812 Since long branches may have an insn in the delay slot and the
6813 delay slot is used to restore %r1, we in general need to extract
6814 this insn and execute it before the branch. However, to facilitate
6815 use of this function by conditional branches, we also provide an
6816 option to not extract the delay insn so that it will be emitted
6817 after the long branch. So, if there is an insn in the delay slot,
6818 it is extracted if XDELAY is nonzero.
6819
6820 The lengths of the various long-branch sequences are 20, 16 and 24
6821 bytes for the portable runtime, non-PIC and PIC cases, respectively. */
c8a0e52b 6822
e9ec370e 6823const char *
91a55c11 6824pa_output_lbranch (rtx dest, rtx_insn *insn, int xdelay)
e9ec370e 6825{
2e6d3863 6826 rtx xoperands[4];
e9ec370e 6827
6828 xoperands[0] = dest;
c8a0e52b 6829
e9ec370e 6830 /* First, free up the delay slot. */
f26036bb 6831 if (xdelay && dbr_sequence_length () != 0)
e9ec370e 6832 {
6833 /* We can't handle a jump in the delay slot. */
aa90bb35 6834 gcc_assert (! JUMP_P (NEXT_INSN (insn)));
c8a0e52b 6835
e9ec370e 6836 final_scan_insn (NEXT_INSN (insn), asm_out_file,
4bf029b0 6837 optimize, 0, NULL);
c8a0e52b 6838
e9ec370e 6839 /* Now delete the delay insn. */
ad4583d9 6840 SET_INSN_DELETED (NEXT_INSN (insn));
e9ec370e 6841 }
c8a0e52b 6842
e9ec370e 6843 /* Output an insn to save %r1. The runtime documentation doesn't
6844 specify whether the "Clean Up" slot in the callers frame can
6845 be clobbered by the callee. It isn't copied by HP's builtin
6846 alloca, so this suggests that it can be clobbered if necessary.
6847 The "Static Link" location is copied by HP builtin alloca, so
6848 we avoid using it. Using the cleanup slot might be a problem
6849 if we have to interoperate with languages that pass cleanup
6850 information. However, it should be possible to handle these
6851 situations with GCC's asm feature.
6852
6853 The "Current RP" slot is reserved for the called procedure, so
6854 we try to use it when we don't have a frame of our own. It's
6855 rather unlikely that we won't have a frame when we need to emit
6856 a very long branch.
6857
6858 Really the way to go long term is a register scavenger; goto
6859 the target of the jump and find a register which we can use
6860 as a scratch to hold the value in %r1. Then, we wouldn't have
6861 to free up the delay slot or clobber a slot that may be needed
6862 for other purposes. */
6863 if (TARGET_64BIT)
6864 {
3072d30e 6865 if (actual_fsize == 0 && !df_regs_ever_live_p (2))
e9ec370e 6866 /* Use the return pointer slot in the frame marker. */
6867 output_asm_insn ("std %%r1,-16(%%r30)", xoperands);
6868 else
6869 /* Use the slot at -40 in the frame marker since HP builtin
6870 alloca doesn't copy it. */
6871 output_asm_insn ("std %%r1,-40(%%r30)", xoperands);
6872 }
6873 else
6874 {
3072d30e 6875 if (actual_fsize == 0 && !df_regs_ever_live_p (2))
e9ec370e 6876 /* Use the return pointer slot in the frame marker. */
6877 output_asm_insn ("stw %%r1,-20(%%r30)", xoperands);
6878 else
6879 /* Use the "Clean Up" slot in the frame marker. In GCC,
6880 the only other use of this location is for copying a
6881 floating point double argument from a floating-point
6882 register to two general registers. The copy is done
19ee40ed 6883 as an "atomic" operation when outputting a call, so it
e9ec370e 6884 won't interfere with our using the location here. */
6885 output_asm_insn ("stw %%r1,-12(%%r30)", xoperands);
6886 }
b70ea764 6887
2247cc5f 6888 if (TARGET_PORTABLE_RUNTIME)
6889 {
6890 output_asm_insn ("ldil L'%0,%%r1", xoperands);
6891 output_asm_insn ("ldo R'%0(%%r1),%%r1", xoperands);
6892 output_asm_insn ("bv %%r0(%%r1)", xoperands);
6893 }
6894 else if (flag_pic)
e9ec370e 6895 {
2e6d3863 6896 xoperands[1] = gen_rtx_REG (Pmode, 1);
6897 xoperands[2] = xoperands[1];
6898 pa_output_pic_pcrel_sequence (xoperands);
e9ec370e 6899 output_asm_insn ("bv %%r0(%%r1)", xoperands);
6900 }
6901 else
6902 /* Now output a very long branch to the original target. */
6903 output_asm_insn ("ldil L'%l0,%%r1\n\tbe R'%l0(%%sr4,%%r1)", xoperands);
c8a0e52b 6904
e9ec370e 6905 /* Now restore the value of %r1 in the delay slot. */
6906 if (TARGET_64BIT)
6907 {
3072d30e 6908 if (actual_fsize == 0 && !df_regs_ever_live_p (2))
e9ec370e 6909 return "ldd -16(%%r30),%%r1";
6910 else
6911 return "ldd -40(%%r30),%%r1";
6912 }
6913 else
6914 {
3072d30e 6915 if (actual_fsize == 0 && !df_regs_ever_live_p (2))
e9ec370e 6916 return "ldw -20(%%r30),%%r1";
6917 else
6918 return "ldw -12(%%r30),%%r1";
5fbd5940 6919 }
0d986529 6920}
6921
6d36483b 6922/* This routine handles all the branch-on-bit conditional branch sequences we
0d986529 6923 might need to generate. It handles nullification of delay slots,
6924 varying length branches, negated branches and all combinations of the
6925 above. it returns the appropriate output template to emit the branch. */
6926
611a88e1 6927const char *
91a55c11 6928pa_output_bb (rtx *operands ATTRIBUTE_UNUSED, int negated, rtx_insn *insn, int which)
29a4502c 6929{
0d986529 6930 static char buf[100];
ebeae299 6931 bool useskip;
f26036bb 6932 int nullify = INSN_ANNULLED_BRANCH_P (insn);
6933 int length = get_attr_length (insn);
6934 int xdelay;
0d986529 6935
a361b456 6936 /* A conditional branch to the following instruction (e.g. the delay slot) is
29a4502c 6937 asking for a disaster. I do not think this can happen as this pattern
6d36483b 6938 is only used when optimizing; jump optimization should eliminate the
29a4502c 6939 jump. But be prepared just in case. */
6d36483b 6940
317754f4 6941 if (branch_to_delay_slot_p (insn))
ece0fa59 6942 return "nop";
6d36483b 6943
5fbd5940 6944 /* If this is a long branch with its delay slot unfilled, set `nullify'
6945 as it can nullify the delay slot and save a nop. */
5a1231ef 6946 if (length == 8 && dbr_sequence_length () == 0)
5fbd5940 6947 nullify = 1;
6948
6949 /* If this is a short forward conditional branch which did not get
6950 its delay slot filled, the delay slot can still be nullified. */
5a1231ef 6951 if (! nullify && length == 4 && dbr_sequence_length () == 0)
5fbd5940 6952 nullify = forward_branch_p (insn);
6953
6d36483b 6954 /* A forward branch over a single nullified insn can be done with a
0d986529 6955 extrs instruction. This avoids a single cycle penalty due to
6956 mis-predicted branch if we fall through (branch not taken). */
ebeae299 6957 useskip = (length == 4 && nullify) ? use_skip_p (insn) : FALSE;
0d986529 6958
6959 switch (length)
6960 {
6961
5fbd5940 6962 /* All short conditional branches except backwards with an unfilled
6963 delay slot. */
5a1231ef 6964 case 4:
0d986529 6965 if (useskip)
e4065f95 6966 strcpy (buf, "{extrs,|extrw,s,}");
6d36483b 6967 else
0d986529 6968 strcpy (buf, "bb,");
5e3c5739 6969 if (useskip && GET_MODE (operands[0]) == DImode)
6970 strcpy (buf, "extrd,s,*");
6971 else if (GET_MODE (operands[0]) == DImode)
6972 strcpy (buf, "bb,*");
0d986529 6973 if ((which == 0 && negated)
6974 || (which == 1 && ! negated))
6975 strcat (buf, ">=");
6976 else
6977 strcat (buf, "<");
6978 if (useskip)
5a811d43 6979 strcat (buf, " %0,%1,1,%%r0");
0d986529 6980 else if (nullify && negated)
317754f4 6981 {
6982 if (branch_needs_nop_p (insn))
6983 strcat (buf, ",n %0,%1,%3%#");
6984 else
6985 strcat (buf, ",n %0,%1,%3");
6986 }
0d986529 6987 else if (nullify && ! negated)
317754f4 6988 {
6989 if (branch_needs_nop_p (insn))
6990 strcat (buf, ",n %0,%1,%2%#");
6991 else
6992 strcat (buf, ",n %0,%1,%2");
6993 }
0d986529 6994 else if (! nullify && negated)
317754f4 6995 strcat (buf, " %0,%1,%3");
0d986529 6996 else if (! nullify && ! negated)
5fbd5940 6997 strcat (buf, " %0,%1,%2");
0d986529 6998 break;
6999
87fcb603 7000 /* All long conditionals. Note a short backward branch with an
5fbd5940 7001 unfilled delay slot is treated just like a long backward branch
7002 with an unfilled delay slot. */
5a1231ef 7003 case 8:
5fbd5940 7004 /* Handle weird backwards branch with a filled delay slot
f26036bb 7005 which is nullified. */
5fbd5940 7006 if (dbr_sequence_length () != 0
7007 && ! forward_branch_p (insn)
7008 && nullify)
7009 {
7010 strcpy (buf, "bb,");
5e3c5739 7011 if (GET_MODE (operands[0]) == DImode)
7012 strcat (buf, "*");
5fbd5940 7013 if ((which == 0 && negated)
7014 || (which == 1 && ! negated))
7015 strcat (buf, "<");
7016 else
7017 strcat (buf, ">=");
7018 if (negated)
5a811d43 7019 strcat (buf, ",n %0,%1,.+12\n\tb %3");
5fbd5940 7020 else
5a811d43 7021 strcat (buf, ",n %0,%1,.+12\n\tb %2");
5fbd5940 7022 }
43f0c1f2 7023 /* Handle short backwards branch with an unfilled delay slot.
7024 Using a bb;nop rather than extrs;bl saves 1 cycle for both
7025 taken and untaken branches. */
7026 else if (dbr_sequence_length () == 0
7027 && ! forward_branch_p (insn)
47fc0706 7028 && INSN_ADDRESSES_SET_P ()
7029 && VAL_14_BITS_P (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (insn)))
7030 - INSN_ADDRESSES (INSN_UID (insn)) - 8))
43f0c1f2 7031 {
7032 strcpy (buf, "bb,");
5e3c5739 7033 if (GET_MODE (operands[0]) == DImode)
7034 strcat (buf, "*");
43f0c1f2 7035 if ((which == 0 && negated)
7036 || (which == 1 && ! negated))
7037 strcat (buf, ">=");
7038 else
7039 strcat (buf, "<");
7040 if (negated)
7041 strcat (buf, " %0,%1,%3%#");
7042 else
7043 strcat (buf, " %0,%1,%2%#");
7044 }
0d986529 7045 else
5fbd5940 7046 {
5e3c5739 7047 if (GET_MODE (operands[0]) == DImode)
7048 strcpy (buf, "extrd,s,*");
f26036bb 7049 else
7050 strcpy (buf, "{extrs,|extrw,s,}");
5fbd5940 7051 if ((which == 0 && negated)
7052 || (which == 1 && ! negated))
7053 strcat (buf, "<");
7054 else
7055 strcat (buf, ">=");
7056 if (nullify && negated)
c6ae275c 7057 strcat (buf, " %0,%1,1,%%r0\n\tb,n %3");
5fbd5940 7058 else if (nullify && ! negated)
c6ae275c 7059 strcat (buf, " %0,%1,1,%%r0\n\tb,n %2");
5fbd5940 7060 else if (negated)
5a811d43 7061 strcat (buf, " %0,%1,1,%%r0\n\tb %3");
6d36483b 7062 else
5a811d43 7063 strcat (buf, " %0,%1,1,%%r0\n\tb %2");
5fbd5940 7064 }
0d986529 7065 break;
7066
7067 default:
f26036bb 7068 /* The reversed conditional branch must branch over one additional
7069 instruction if the delay slot is filled and needs to be extracted
e202682d 7070 by pa_output_lbranch. If the delay slot is empty or this is a
f26036bb 7071 nullified forward branch, the instruction after the reversed
7072 condition branch must be nullified. */
7073 if (dbr_sequence_length () == 0
7074 || (nullify && forward_branch_p (insn)))
7075 {
7076 nullify = 1;
7077 xdelay = 0;
d9e3874e 7078 operands[4] = GEN_INT (length);
f26036bb 7079 }
7080 else
7081 {
7082 xdelay = 1;
d9e3874e 7083 operands[4] = GEN_INT (length + 4);
f26036bb 7084 }
7085
7086 if (GET_MODE (operands[0]) == DImode)
d9e3874e 7087 strcpy (buf, "bb,*");
f26036bb 7088 else
d9e3874e 7089 strcpy (buf, "bb,");
f26036bb 7090 if ((which == 0 && negated)
7091 || (which == 1 && !negated))
d9e3874e 7092 strcat (buf, "<");
f26036bb 7093 else
d9e3874e 7094 strcat (buf, ">=");
f26036bb 7095 if (nullify)
d9e3874e 7096 strcat (buf, ",n %0,%1,.+%4");
f26036bb 7097 else
d9e3874e 7098 strcat (buf, " %0,%1,.+%4");
f26036bb 7099 output_asm_insn (buf, operands);
e202682d 7100 return pa_output_lbranch (negated ? operands[3] : operands[2],
7101 insn, xdelay);
5fbd5940 7102 }
0d986529 7103 return buf;
7104}
7105
c7a4e712 7106/* This routine handles all the branch-on-variable-bit conditional branch
7107 sequences we might need to generate. It handles nullification of delay
7108 slots, varying length branches, negated branches and all combinations
7109 of the above. it returns the appropriate output template to emit the
7110 branch. */
7111
611a88e1 7112const char *
91a55c11 7113pa_output_bvb (rtx *operands ATTRIBUTE_UNUSED, int negated, rtx_insn *insn,
e202682d 7114 int which)
c7a4e712 7115{
7116 static char buf[100];
ebeae299 7117 bool useskip;
f26036bb 7118 int nullify = INSN_ANNULLED_BRANCH_P (insn);
7119 int length = get_attr_length (insn);
7120 int xdelay;
c7a4e712 7121
a361b456 7122 /* A conditional branch to the following instruction (e.g. the delay slot) is
c7a4e712 7123 asking for a disaster. I do not think this can happen as this pattern
7124 is only used when optimizing; jump optimization should eliminate the
7125 jump. But be prepared just in case. */
7126
317754f4 7127 if (branch_to_delay_slot_p (insn))
ece0fa59 7128 return "nop";
c7a4e712 7129
7130 /* If this is a long branch with its delay slot unfilled, set `nullify'
7131 as it can nullify the delay slot and save a nop. */
7132 if (length == 8 && dbr_sequence_length () == 0)
7133 nullify = 1;
7134
7135 /* If this is a short forward conditional branch which did not get
7136 its delay slot filled, the delay slot can still be nullified. */
7137 if (! nullify && length == 4 && dbr_sequence_length () == 0)
7138 nullify = forward_branch_p (insn);
7139
7140 /* A forward branch over a single nullified insn can be done with a
7141 extrs instruction. This avoids a single cycle penalty due to
7142 mis-predicted branch if we fall through (branch not taken). */
ebeae299 7143 useskip = (length == 4 && nullify) ? use_skip_p (insn) : FALSE;
c7a4e712 7144
7145 switch (length)
7146 {
7147
7148 /* All short conditional branches except backwards with an unfilled
7149 delay slot. */
7150 case 4:
7151 if (useskip)
e4065f95 7152 strcpy (buf, "{vextrs,|extrw,s,}");
c7a4e712 7153 else
e4065f95 7154 strcpy (buf, "{bvb,|bb,}");
5e3c5739 7155 if (useskip && GET_MODE (operands[0]) == DImode)
e75269fd 7156 strcpy (buf, "extrd,s,*");
5e3c5739 7157 else if (GET_MODE (operands[0]) == DImode)
7158 strcpy (buf, "bb,*");
c7a4e712 7159 if ((which == 0 && negated)
7160 || (which == 1 && ! negated))
7161 strcat (buf, ">=");
7162 else
7163 strcat (buf, "<");
7164 if (useskip)
e4065f95 7165 strcat (buf, "{ %0,1,%%r0| %0,%%sar,1,%%r0}");
c7a4e712 7166 else if (nullify && negated)
317754f4 7167 {
7168 if (branch_needs_nop_p (insn))
7169 strcat (buf, "{,n %0,%3%#|,n %0,%%sar,%3%#}");
7170 else
7171 strcat (buf, "{,n %0,%3|,n %0,%%sar,%3}");
7172 }
c7a4e712 7173 else if (nullify && ! negated)
317754f4 7174 {
7175 if (branch_needs_nop_p (insn))
7176 strcat (buf, "{,n %0,%2%#|,n %0,%%sar,%2%#}");
7177 else
7178 strcat (buf, "{,n %0,%2|,n %0,%%sar,%2}");
7179 }
c7a4e712 7180 else if (! nullify && negated)
317754f4 7181 strcat (buf, "{ %0,%3| %0,%%sar,%3}");
c7a4e712 7182 else if (! nullify && ! negated)
e4065f95 7183 strcat (buf, "{ %0,%2| %0,%%sar,%2}");
c7a4e712 7184 break;
7185
87fcb603 7186 /* All long conditionals. Note a short backward branch with an
c7a4e712 7187 unfilled delay slot is treated just like a long backward branch
7188 with an unfilled delay slot. */
7189 case 8:
7190 /* Handle weird backwards branch with a filled delay slot
f26036bb 7191 which is nullified. */
c7a4e712 7192 if (dbr_sequence_length () != 0
7193 && ! forward_branch_p (insn)
7194 && nullify)
7195 {
e4065f95 7196 strcpy (buf, "{bvb,|bb,}");
5e3c5739 7197 if (GET_MODE (operands[0]) == DImode)
7198 strcat (buf, "*");
c7a4e712 7199 if ((which == 0 && negated)
7200 || (which == 1 && ! negated))
7201 strcat (buf, "<");
7202 else
7203 strcat (buf, ">=");
7204 if (negated)
e4065f95 7205 strcat (buf, "{,n %0,.+12\n\tb %3|,n %0,%%sar,.+12\n\tb %3}");
c7a4e712 7206 else
e4065f95 7207 strcat (buf, "{,n %0,.+12\n\tb %2|,n %0,%%sar,.+12\n\tb %2}");
c7a4e712 7208 }
7209 /* Handle short backwards branch with an unfilled delay slot.
7210 Using a bb;nop rather than extrs;bl saves 1 cycle for both
7211 taken and untaken branches. */
7212 else if (dbr_sequence_length () == 0
7213 && ! forward_branch_p (insn)
47fc0706 7214 && INSN_ADDRESSES_SET_P ()
7215 && VAL_14_BITS_P (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (insn)))
7216 - INSN_ADDRESSES (INSN_UID (insn)) - 8))
c7a4e712 7217 {
e4065f95 7218 strcpy (buf, "{bvb,|bb,}");
5e3c5739 7219 if (GET_MODE (operands[0]) == DImode)
7220 strcat (buf, "*");
c7a4e712 7221 if ((which == 0 && negated)
7222 || (which == 1 && ! negated))
7223 strcat (buf, ">=");
7224 else
7225 strcat (buf, "<");
7226 if (negated)
e4065f95 7227 strcat (buf, "{ %0,%3%#| %0,%%sar,%3%#}");
c7a4e712 7228 else
e4065f95 7229 strcat (buf, "{ %0,%2%#| %0,%%sar,%2%#}");
c7a4e712 7230 }
7231 else
7232 {
e4065f95 7233 strcpy (buf, "{vextrs,|extrw,s,}");
5e3c5739 7234 if (GET_MODE (operands[0]) == DImode)
7235 strcpy (buf, "extrd,s,*");
c7a4e712 7236 if ((which == 0 && negated)
7237 || (which == 1 && ! negated))
7238 strcat (buf, "<");
7239 else
7240 strcat (buf, ">=");
7241 if (nullify && negated)
e4065f95 7242 strcat (buf, "{ %0,1,%%r0\n\tb,n %3| %0,%%sar,1,%%r0\n\tb,n %3}");
c7a4e712 7243 else if (nullify && ! negated)
e4065f95 7244 strcat (buf, "{ %0,1,%%r0\n\tb,n %2| %0,%%sar,1,%%r0\n\tb,n %2}");
c7a4e712 7245 else if (negated)
e4065f95 7246 strcat (buf, "{ %0,1,%%r0\n\tb %3| %0,%%sar,1,%%r0\n\tb %3}");
c7a4e712 7247 else
e4065f95 7248 strcat (buf, "{ %0,1,%%r0\n\tb %2| %0,%%sar,1,%%r0\n\tb %2}");
c7a4e712 7249 }
7250 break;
7251
7252 default:
f26036bb 7253 /* The reversed conditional branch must branch over one additional
7254 instruction if the delay slot is filled and needs to be extracted
e202682d 7255 by pa_output_lbranch. If the delay slot is empty or this is a
f26036bb 7256 nullified forward branch, the instruction after the reversed
7257 condition branch must be nullified. */
7258 if (dbr_sequence_length () == 0
7259 || (nullify && forward_branch_p (insn)))
7260 {
7261 nullify = 1;
7262 xdelay = 0;
d9e3874e 7263 operands[4] = GEN_INT (length);
f26036bb 7264 }
7265 else
7266 {
7267 xdelay = 1;
d9e3874e 7268 operands[4] = GEN_INT (length + 4);
f26036bb 7269 }
7270
7271 if (GET_MODE (operands[0]) == DImode)
d9e3874e 7272 strcpy (buf, "bb,*");
f26036bb 7273 else
d9e3874e 7274 strcpy (buf, "{bvb,|bb,}");
f26036bb 7275 if ((which == 0 && negated)
7276 || (which == 1 && !negated))
d9e3874e 7277 strcat (buf, "<");
f26036bb 7278 else
d9e3874e 7279 strcat (buf, ">=");
f26036bb 7280 if (nullify)
d9e3874e 7281 strcat (buf, ",n {%0,.+%4|%0,%%sar,.+%4}");
f26036bb 7282 else
d9e3874e 7283 strcat (buf, " {%0,.+%4|%0,%%sar,.+%4}");
f26036bb 7284 output_asm_insn (buf, operands);
e202682d 7285 return pa_output_lbranch (negated ? operands[3] : operands[2],
7286 insn, xdelay);
c7a4e712 7287 }
7288 return buf;
7289}
7290
29a4502c 7291/* Return the output template for emitting a dbra type insn.
7292
7293 Note it may perform some output operations on its own before
7294 returning the final output string. */
611a88e1 7295const char *
91a55c11 7296pa_output_dbra (rtx *operands, rtx_insn *insn, int which_alternative)
29a4502c 7297{
f26036bb 7298 int length = get_attr_length (insn);
29a4502c 7299
a361b456 7300 /* A conditional branch to the following instruction (e.g. the delay slot) is
29a4502c 7301 asking for a disaster. Be prepared! */
7302
317754f4 7303 if (branch_to_delay_slot_p (insn))
29a4502c 7304 {
7305 if (which_alternative == 0)
7306 return "ldo %1(%0),%0";
7307 else if (which_alternative == 1)
7308 {
ea52c577 7309 output_asm_insn ("{fstws|fstw} %0,-16(%%r30)", operands);
7310 output_asm_insn ("ldw -16(%%r30),%4", operands);
34940871 7311 output_asm_insn ("ldo %1(%4),%4\n\tstw %4,-16(%%r30)", operands);
e4065f95 7312 return "{fldws|fldw} -16(%%r30),%0";
29a4502c 7313 }
7314 else
7315 {
7316 output_asm_insn ("ldw %0,%4", operands);
7317 return "ldo %1(%4),%4\n\tstw %4,%0";
7318 }
7319 }
7320
7321 if (which_alternative == 0)
7322 {
7323 int nullify = INSN_ANNULLED_BRANCH_P (insn);
f26036bb 7324 int xdelay;
29a4502c 7325
7326 /* If this is a long branch with its delay slot unfilled, set `nullify'
7327 as it can nullify the delay slot and save a nop. */
5a1231ef 7328 if (length == 8 && dbr_sequence_length () == 0)
29a4502c 7329 nullify = 1;
7330
7331 /* If this is a short forward conditional branch which did not get
7332 its delay slot filled, the delay slot can still be nullified. */
5a1231ef 7333 if (! nullify && length == 4 && dbr_sequence_length () == 0)
29a4502c 7334 nullify = forward_branch_p (insn);
7335
ecf2283d 7336 switch (length)
29a4502c 7337 {
ecf2283d 7338 case 4:
7339 if (nullify)
317754f4 7340 {
7341 if (branch_needs_nop_p (insn))
7342 return "addib,%C2,n %1,%0,%3%#";
7343 else
7344 return "addib,%C2,n %1,%0,%3";
7345 }
ecf2283d 7346 else
7347 return "addib,%C2 %1,%0,%3";
7348
7349 case 8:
6d36483b 7350 /* Handle weird backwards branch with a fulled delay slot
29a4502c 7351 which is nullified. */
7352 if (dbr_sequence_length () != 0
7353 && ! forward_branch_p (insn)
7354 && nullify)
5a811d43 7355 return "addib,%N2,n %1,%0,.+12\n\tb %3";
43f0c1f2 7356 /* Handle short backwards branch with an unfilled delay slot.
7357 Using a addb;nop rather than addi;bl saves 1 cycle for both
7358 taken and untaken branches. */
7359 else if (dbr_sequence_length () == 0
7360 && ! forward_branch_p (insn)
47fc0706 7361 && INSN_ADDRESSES_SET_P ()
7362 && VAL_14_BITS_P (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (insn)))
7363 - INSN_ADDRESSES (INSN_UID (insn)) - 8))
43f0c1f2 7364 return "addib,%C2 %1,%0,%3%#";
6d36483b 7365
7366 /* Handle normal cases. */
29a4502c 7367 if (nullify)
5a811d43 7368 return "addi,%N2 %1,%0,%0\n\tb,n %3";
29a4502c 7369 else
5a811d43 7370 return "addi,%N2 %1,%0,%0\n\tb %3";
ecf2283d 7371
7372 default:
f26036bb 7373 /* The reversed conditional branch must branch over one additional
7374 instruction if the delay slot is filled and needs to be extracted
e202682d 7375 by pa_output_lbranch. If the delay slot is empty or this is a
f26036bb 7376 nullified forward branch, the instruction after the reversed
7377 condition branch must be nullified. */
7378 if (dbr_sequence_length () == 0
7379 || (nullify && forward_branch_p (insn)))
7380 {
7381 nullify = 1;
7382 xdelay = 0;
7383 operands[4] = GEN_INT (length);
7384 }
7385 else
7386 {
7387 xdelay = 1;
7388 operands[4] = GEN_INT (length + 4);
7389 }
7390
7391 if (nullify)
7392 output_asm_insn ("addib,%N2,n %1,%0,.+%4", operands);
7393 else
7394 output_asm_insn ("addib,%N2 %1,%0,.+%4", operands);
7395
e202682d 7396 return pa_output_lbranch (operands[3], insn, xdelay);
29a4502c 7397 }
ecf2283d 7398
29a4502c 7399 }
7400 /* Deal with gross reload from FP register case. */
7401 else if (which_alternative == 1)
7402 {
7403 /* Move loop counter from FP register to MEM then into a GR,
7404 increment the GR, store the GR into MEM, and finally reload
6d36483b 7405 the FP register from MEM from within the branch's delay slot. */
ea52c577 7406 output_asm_insn ("{fstws|fstw} %0,-16(%%r30)\n\tldw -16(%%r30),%4",
7407 operands);
34940871 7408 output_asm_insn ("ldo %1(%4),%4\n\tstw %4,-16(%%r30)", operands);
f26036bb 7409 if (length == 24)
e4065f95 7410 return "{comb|cmpb},%S2 %%r0,%4,%3\n\t{fldws|fldw} -16(%%r30),%0";
f26036bb 7411 else if (length == 28)
e4065f95 7412 return "{comclr|cmpclr},%B2 %%r0,%4,%%r0\n\tb %3\n\t{fldws|fldw} -16(%%r30),%0";
f26036bb 7413 else
7414 {
d9e3874e 7415 operands[5] = GEN_INT (length - 16);
7416 output_asm_insn ("{comb|cmpb},%B2 %%r0,%4,.+%5", operands);
f26036bb 7417 output_asm_insn ("{fldws|fldw} -16(%%r30),%0", operands);
e202682d 7418 return pa_output_lbranch (operands[3], insn, 0);
f26036bb 7419 }
29a4502c 7420 }
7421 /* Deal with gross reload from memory case. */
7422 else
7423 {
7424 /* Reload loop counter from memory, the store back to memory
5aedf60c 7425 happens in the branch's delay slot. */
29a4502c 7426 output_asm_insn ("ldw %0,%4", operands);
f26036bb 7427 if (length == 12)
29a4502c 7428 return "addib,%C2 %1,%4,%3\n\tstw %4,%0";
f26036bb 7429 else if (length == 16)
5a811d43 7430 return "addi,%N2 %1,%4,%4\n\tb %3\n\tstw %4,%0";
f26036bb 7431 else
7432 {
d9e3874e 7433 operands[5] = GEN_INT (length - 4);
7434 output_asm_insn ("addib,%N2 %1,%4,.+%5\n\tstw %4,%0", operands);
e202682d 7435 return pa_output_lbranch (operands[3], insn, 0);
f26036bb 7436 }
29a4502c 7437 }
7438}
7439
f26036bb 7440/* Return the output template for emitting a movb type insn.
29a4502c 7441
7442 Note it may perform some output operations on its own before
7443 returning the final output string. */
611a88e1 7444const char *
91a55c11 7445pa_output_movb (rtx *operands, rtx_insn *insn, int which_alternative,
5c1d8983 7446 int reverse_comparison)
29a4502c 7447{
f26036bb 7448 int length = get_attr_length (insn);
29a4502c 7449
a361b456 7450 /* A conditional branch to the following instruction (e.g. the delay slot) is
29a4502c 7451 asking for a disaster. Be prepared! */
7452
317754f4 7453 if (branch_to_delay_slot_p (insn))
29a4502c 7454 {
7455 if (which_alternative == 0)
7456 return "copy %1,%0";
7457 else if (which_alternative == 1)
7458 {
ea52c577 7459 output_asm_insn ("stw %1,-16(%%r30)", operands);
e4065f95 7460 return "{fldws|fldw} -16(%%r30),%0";
29a4502c 7461 }
546a40bd 7462 else if (which_alternative == 2)
29a4502c 7463 return "stw %1,%0";
546a40bd 7464 else
7465 return "mtsar %r1";
29a4502c 7466 }
7467
7468 /* Support the second variant. */
7469 if (reverse_comparison)
7470 PUT_CODE (operands[2], reverse_condition (GET_CODE (operands[2])));
7471
7472 if (which_alternative == 0)
7473 {
7474 int nullify = INSN_ANNULLED_BRANCH_P (insn);
f26036bb 7475 int xdelay;
29a4502c 7476
7477 /* If this is a long branch with its delay slot unfilled, set `nullify'
7478 as it can nullify the delay slot and save a nop. */
5a1231ef 7479 if (length == 8 && dbr_sequence_length () == 0)
29a4502c 7480 nullify = 1;
7481
7482 /* If this is a short forward conditional branch which did not get
7483 its delay slot filled, the delay slot can still be nullified. */
5a1231ef 7484 if (! nullify && length == 4 && dbr_sequence_length () == 0)
29a4502c 7485 nullify = forward_branch_p (insn);
7486
ecf2283d 7487 switch (length)
29a4502c 7488 {
ecf2283d 7489 case 4:
7490 if (nullify)
317754f4 7491 {
7492 if (branch_needs_nop_p (insn))
7493 return "movb,%C2,n %1,%0,%3%#";
7494 else
7495 return "movb,%C2,n %1,%0,%3";
7496 }
ecf2283d 7497 else
7498 return "movb,%C2 %1,%0,%3";
7499
7500 case 8:
6d36483b 7501 /* Handle weird backwards branch with a filled delay slot
29a4502c 7502 which is nullified. */
7503 if (dbr_sequence_length () != 0
7504 && ! forward_branch_p (insn)
7505 && nullify)
5a811d43 7506 return "movb,%N2,n %1,%0,.+12\n\tb %3";
6d36483b 7507
43f0c1f2 7508 /* Handle short backwards branch with an unfilled delay slot.
7509 Using a movb;nop rather than or;bl saves 1 cycle for both
7510 taken and untaken branches. */
7511 else if (dbr_sequence_length () == 0
7512 && ! forward_branch_p (insn)
47fc0706 7513 && INSN_ADDRESSES_SET_P ()
7514 && VAL_14_BITS_P (INSN_ADDRESSES (INSN_UID (JUMP_LABEL (insn)))
7515 - INSN_ADDRESSES (INSN_UID (insn)) - 8))
43f0c1f2 7516 return "movb,%C2 %1,%0,%3%#";
6d36483b 7517 /* Handle normal cases. */
29a4502c 7518 if (nullify)
5a811d43 7519 return "or,%N2 %1,%%r0,%0\n\tb,n %3";
29a4502c 7520 else
5a811d43 7521 return "or,%N2 %1,%%r0,%0\n\tb %3";
ecf2283d 7522
7523 default:
f26036bb 7524 /* The reversed conditional branch must branch over one additional
7525 instruction if the delay slot is filled and needs to be extracted
e202682d 7526 by pa_output_lbranch. If the delay slot is empty or this is a
f26036bb 7527 nullified forward branch, the instruction after the reversed
7528 condition branch must be nullified. */
7529 if (dbr_sequence_length () == 0
7530 || (nullify && forward_branch_p (insn)))
7531 {
7532 nullify = 1;
7533 xdelay = 0;
7534 operands[4] = GEN_INT (length);
7535 }
7536 else
7537 {
7538 xdelay = 1;
7539 operands[4] = GEN_INT (length + 4);
7540 }
7541
7542 if (nullify)
7543 output_asm_insn ("movb,%N2,n %1,%0,.+%4", operands);
7544 else
7545 output_asm_insn ("movb,%N2 %1,%0,.+%4", operands);
7546
e202682d 7547 return pa_output_lbranch (operands[3], insn, xdelay);
29a4502c 7548 }
29a4502c 7549 }
f26036bb 7550 /* Deal with gross reload for FP destination register case. */
29a4502c 7551 else if (which_alternative == 1)
7552 {
f26036bb 7553 /* Move source register to MEM, perform the branch test, then
7554 finally load the FP register from MEM from within the branch's
7555 delay slot. */
ea52c577 7556 output_asm_insn ("stw %1,-16(%%r30)", operands);
f26036bb 7557 if (length == 12)
e4065f95 7558 return "{comb|cmpb},%S2 %%r0,%1,%3\n\t{fldws|fldw} -16(%%r30),%0";
f26036bb 7559 else if (length == 16)
e4065f95 7560 return "{comclr|cmpclr},%B2 %%r0,%1,%%r0\n\tb %3\n\t{fldws|fldw} -16(%%r30),%0";
f26036bb 7561 else
7562 {
d9e3874e 7563 operands[4] = GEN_INT (length - 4);
7564 output_asm_insn ("{comb|cmpb},%B2 %%r0,%1,.+%4", operands);
f26036bb 7565 output_asm_insn ("{fldws|fldw} -16(%%r30),%0", operands);
e202682d 7566 return pa_output_lbranch (operands[3], insn, 0);
f26036bb 7567 }
29a4502c 7568 }
7569 /* Deal with gross reload from memory case. */
546a40bd 7570 else if (which_alternative == 2)
29a4502c 7571 {
7572 /* Reload loop counter from memory, the store back to memory
5aedf60c 7573 happens in the branch's delay slot. */
f26036bb 7574 if (length == 8)
e4065f95 7575 return "{comb|cmpb},%S2 %%r0,%1,%3\n\tstw %1,%0";
f26036bb 7576 else if (length == 12)
e4065f95 7577 return "{comclr|cmpclr},%B2 %%r0,%1,%%r0\n\tb %3\n\tstw %1,%0";
f26036bb 7578 else
7579 {
d9e3874e 7580 operands[4] = GEN_INT (length);
7581 output_asm_insn ("{comb|cmpb},%B2 %%r0,%1,.+%4\n\tstw %1,%0",
7582 operands);
e202682d 7583 return pa_output_lbranch (operands[3], insn, 0);
f26036bb 7584 }
29a4502c 7585 }
546a40bd 7586 /* Handle SAR as a destination. */
7587 else
7588 {
f26036bb 7589 if (length == 8)
e4065f95 7590 return "{comb|cmpb},%S2 %%r0,%1,%3\n\tmtsar %r1";
f26036bb 7591 else if (length == 12)
be7770ad 7592 return "{comclr|cmpclr},%B2 %%r0,%1,%%r0\n\tb %3\n\tmtsar %r1";
f26036bb 7593 else
7594 {
d9e3874e 7595 operands[4] = GEN_INT (length);
7596 output_asm_insn ("{comb|cmpb},%B2 %%r0,%1,.+%4\n\tmtsar %r1",
7597 operands);
e202682d 7598 return pa_output_lbranch (operands[3], insn, 0);
f26036bb 7599 }
546a40bd 7600 }
29a4502c 7601}
7602
ece88821 7603/* Copy any FP arguments in INSN into integer registers. */
7604static void
89dcddd6 7605copy_fp_args (rtx_insn *insn)
ece88821 7606{
7607 rtx link;
7608 rtx xoperands[2];
29a4502c 7609
ece88821 7610 for (link = CALL_INSN_FUNCTION_USAGE (insn); link; link = XEXP (link, 1))
7611 {
7612 int arg_mode, regno;
7613 rtx use = XEXP (link, 0);
3683f840 7614
ece88821 7615 if (! (GET_CODE (use) == USE
7616 && GET_CODE (XEXP (use, 0)) == REG
7617 && FUNCTION_ARG_REGNO_P (REGNO (XEXP (use, 0)))))
7618 continue;
d6686e21 7619
ece88821 7620 arg_mode = GET_MODE (XEXP (use, 0));
7621 regno = REGNO (XEXP (use, 0));
5e3c5739 7622
ece88821 7623 /* Is it a floating point register? */
7624 if (regno >= 32 && regno <= 39)
7625 {
7626 /* Copy the FP register into an integer register via memory. */
7627 if (arg_mode == SFmode)
7628 {
7629 xoperands[0] = XEXP (use, 0);
7630 xoperands[1] = gen_rtx_REG (SImode, 26 - (regno - 32) / 2);
7631 output_asm_insn ("{fstws|fstw} %0,-16(%%sr0,%%r30)", xoperands);
7632 output_asm_insn ("ldw -16(%%sr0,%%r30),%1", xoperands);
7633 }
7634 else
7635 {
7636 xoperands[0] = XEXP (use, 0);
7637 xoperands[1] = gen_rtx_REG (DImode, 25 - (regno - 34) / 2);
7638 output_asm_insn ("{fstds|fstd} %0,-16(%%sr0,%%r30)", xoperands);
7639 output_asm_insn ("ldw -12(%%sr0,%%r30),%R1", xoperands);
7640 output_asm_insn ("ldw -16(%%sr0,%%r30),%1", xoperands);
7641 }
7642 }
06ddb6f8 7643 }
ece88821 7644}
7645
7646/* Compute length of the FP argument copy sequence for INSN. */
7647static int
89dcddd6 7648length_fp_args (rtx_insn *insn)
ece88821 7649{
7650 int length = 0;
7651 rtx link;
06ddb6f8 7652
ece88821 7653 for (link = CALL_INSN_FUNCTION_USAGE (insn); link; link = XEXP (link, 1))
c7a4e712 7654 {
ece88821 7655 int arg_mode, regno;
7656 rtx use = XEXP (link, 0);
7657
7658 if (! (GET_CODE (use) == USE
7659 && GET_CODE (XEXP (use, 0)) == REG
7660 && FUNCTION_ARG_REGNO_P (REGNO (XEXP (use, 0)))))
7661 continue;
c7a4e712 7662
ece88821 7663 arg_mode = GET_MODE (XEXP (use, 0));
7664 regno = REGNO (XEXP (use, 0));
7665
7666 /* Is it a floating point register? */
7667 if (regno >= 32 && regno <= 39)
c7a4e712 7668 {
ece88821 7669 if (arg_mode == SFmode)
7670 length += 8;
7671 else
7672 length += 12;
c7a4e712 7673 }
ece88821 7674 }
c7a4e712 7675
ece88821 7676 return length;
7677}
b70ea764 7678
cd0dfcc5 7679/* Return the attribute length for the millicode call instruction INSN.
e202682d 7680 The length must match the code generated by pa_output_millicode_call.
cd0dfcc5 7681 We include the delay slot in the returned length as it is better to
ece88821 7682 over estimate the length than to under estimate it. */
b29897dd 7683
ece88821 7684int
8443f305 7685pa_attr_length_millicode_call (rtx_insn *insn)
ece88821 7686{
cd0dfcc5 7687 unsigned long distance = -1;
8a05c3c2 7688 unsigned long total = IN_NAMED_SECTION_P (cfun->decl) ? 0 : total_code_bytes;
ece88821 7689
cd0dfcc5 7690 if (INSN_ADDRESSES_SET_P ())
7691 {
2247cc5f 7692 distance = (total + insn_current_reference_address (insn));
7693 if (distance < total)
cd0dfcc5 7694 distance = -1;
7695 }
ece88821 7696
7697 if (TARGET_64BIT)
7698 {
7699 if (!TARGET_LONG_CALLS && distance < 7600000)
cd0dfcc5 7700 return 8;
ece88821 7701
cd0dfcc5 7702 return 20;
ece88821 7703 }
7704 else if (TARGET_PORTABLE_RUNTIME)
cd0dfcc5 7705 return 24;
ece88821 7706 else
7707 {
4f12c67a 7708 if (!TARGET_LONG_CALLS && distance < MAX_PCREL17F_OFFSET)
cd0dfcc5 7709 return 8;
ece88821 7710
8ff5fb9b 7711 if (!flag_pic)
cd0dfcc5 7712 return 12;
ece88821 7713
cd0dfcc5 7714 return 24;
ece88821 7715 }
7716}
7717
16b068df 7718/* INSN is a function call.
b29897dd 7719
ece88821 7720 CALL_DEST is the routine we are calling. */
b29897dd 7721
ece88821 7722const char *
91a55c11 7723pa_output_millicode_call (rtx_insn *insn, rtx call_dest)
ece88821 7724{
7725 int attr_length = get_attr_length (insn);
7726 int seq_length = dbr_sequence_length ();
2e6d3863 7727 rtx xoperands[4];
b29897dd 7728
ece88821 7729 xoperands[0] = call_dest;
ece88821 7730
7731 /* Handle the common case where we are sure that the branch will
7732 reach the beginning of the $CODE$ subspace. The within reach
8c9327d2 7733 form of the $$sh_func_adrs call has a length of 28. Because it
7734 has an attribute type of sh_func_adrs, it never has a nonzero
7735 sequence length (i.e., the delay slot is never filled). */
ece88821 7736 if (!TARGET_LONG_CALLS
8c9327d2 7737 && (attr_length == 8
7738 || (attr_length == 28
7739 && get_attr_type (insn) == TYPE_SH_FUNC_ADRS)))
ece88821 7740 {
2e6d3863 7741 xoperands[1] = gen_rtx_REG (Pmode, TARGET_64BIT ? 2 : 31);
7742 output_asm_insn ("{bl|b,l} %0,%1", xoperands);
ece88821 7743 }
7744 else
7745 {
7746 if (TARGET_64BIT)
7747 {
7748 /* It might seem that one insn could be saved by accessing
7749 the millicode function using the linkage table. However,
7750 this doesn't work in shared libraries and other dynamically
7751 loaded objects. Using a pc-relative sequence also avoids
7752 problems related to the implicit use of the gp register. */
2e6d3863 7753 xoperands[1] = gen_rtx_REG (Pmode, 1);
7754 xoperands[2] = xoperands[1];
7755 pa_output_pic_pcrel_sequence (xoperands);
ece88821 7756 output_asm_insn ("bve,l (%%r1),%%r2", xoperands);
c7a4e712 7757 }
c7a4e712 7758 else if (TARGET_PORTABLE_RUNTIME)
7759 {
ece88821 7760 /* Pure portable runtime doesn't allow be/ble; we also don't
7761 have PIC support in the assembler/linker, so this sequence
7762 is needed. */
c7a4e712 7763
ece88821 7764 /* Get the address of our target into %r1. */
7765 output_asm_insn ("ldil L'%0,%%r1", xoperands);
7766 output_asm_insn ("ldo R'%0(%%r1),%%r1", xoperands);
c7a4e712 7767
ece88821 7768 /* Get our return address into %r31. */
7769 output_asm_insn ("{bl|b,l} .+8,%%r31", xoperands);
7770 output_asm_insn ("addi 8,%%r31,%%r31", xoperands);
c7a4e712 7771
ece88821 7772 /* Jump to our target address in %r1. */
7773 output_asm_insn ("bv %%r0(%%r1)", xoperands);
c7a4e712 7774 }
ece88821 7775 else if (!flag_pic)
c7a4e712 7776 {
ece88821 7777 output_asm_insn ("ldil L'%0,%%r1", xoperands);
356267e0 7778 if (TARGET_PA_20)
ece88821 7779 output_asm_insn ("be,l R'%0(%%sr4,%%r1),%%sr0,%%r31", xoperands);
356267e0 7780 else
ece88821 7781 output_asm_insn ("ble R'%0(%%sr4,%%r1)", xoperands);
c7a4e712 7782 }
ece88821 7783 else
c7a4e712 7784 {
2e6d3863 7785 xoperands[1] = gen_rtx_REG (Pmode, 31);
7786 xoperands[2] = gen_rtx_REG (Pmode, 1);
7787 pa_output_pic_pcrel_sequence (xoperands);
9bd9af5d 7788
2e6d3863 7789 /* Adjust return address. */
7790 output_asm_insn ("ldo {16|24}(%%r31),%%r31", xoperands);
c7a4e712 7791
ece88821 7792 /* Jump to our target address in %r1. */
7793 output_asm_insn ("bv %%r0(%%r1)", xoperands);
c7a4e712 7794 }
c7a4e712 7795 }
7796
ece88821 7797 if (seq_length == 0)
7798 output_asm_insn ("nop", xoperands);
c7a4e712 7799
c7a4e712 7800 return "";
7801}
7802
cd0dfcc5 7803/* Return the attribute length of the call instruction INSN. The SIBCALL
7804 flag indicates whether INSN is a regular call or a sibling call. The
faf3f8c1 7805 length returned must be longer than the code actually generated by
e202682d 7806 pa_output_call. Since branch shortening is done before delay branch
faf3f8c1 7807 sequencing, there is no way to determine whether or not the delay
7808 slot will be filled during branch shortening. Even when the delay
7809 slot is filled, we may have to add a nop if the delay slot contains
7810 a branch that can't reach its target. Thus, we always have to include
7811 the delay slot in the length estimate. This used to be done in
7812 pa_adjust_insn_length but we do it here now as some sequences always
7813 fill the delay slot and we can save four bytes in the estimate for
7814 these sequences. */
ece88821 7815
7816int
8443f305 7817pa_attr_length_call (rtx_insn *insn, int sibcall)
ece88821 7818{
faf3f8c1 7819 int local_call;
f7bb6501 7820 rtx call, call_dest;
faf3f8c1 7821 tree call_decl;
7822 int length = 0;
7823 rtx pat = PATTERN (insn);
cd0dfcc5 7824 unsigned long distance = -1;
ece88821 7825
aa90bb35 7826 gcc_assert (CALL_P (insn));
f7bb6501 7827
cd0dfcc5 7828 if (INSN_ADDRESSES_SET_P ())
7829 {
faf3f8c1 7830 unsigned long total;
7831
7832 total = IN_NAMED_SECTION_P (cfun->decl) ? 0 : total_code_bytes;
2247cc5f 7833 distance = (total + insn_current_reference_address (insn));
7834 if (distance < total)
cd0dfcc5 7835 distance = -1;
7836 }
ece88821 7837
f7bb6501 7838 gcc_assert (GET_CODE (pat) == PARALLEL);
ece88821 7839
f7bb6501 7840 /* Get the call rtx. */
7841 call = XVECEXP (pat, 0, 0);
7842 if (GET_CODE (call) == SET)
7843 call = SET_SRC (call);
7844
7845 gcc_assert (GET_CODE (call) == CALL);
7846
7847 /* Determine if this is a local call. */
7848 call_dest = XEXP (XEXP (call, 0), 0);
faf3f8c1 7849 call_decl = SYMBOL_REF_DECL (call_dest);
c5559ed4 7850 local_call = call_decl && targetm.binds_local_p (call_decl);
ece88821 7851
faf3f8c1 7852 /* pc-relative branch. */
7853 if (!TARGET_LONG_CALLS
7854 && ((TARGET_PA_20 && !sibcall && distance < 7600000)
4f12c67a 7855 || distance < MAX_PCREL17F_OFFSET))
faf3f8c1 7856 length += 8;
ece88821 7857
faf3f8c1 7858 /* 64-bit plabel sequence. */
7859 else if (TARGET_64BIT && !local_call)
7860 length += sibcall ? 28 : 24;
ece88821 7861
faf3f8c1 7862 /* non-pic long absolute branch sequence. */
7863 else if ((TARGET_LONG_ABS_CALL || local_call) && !flag_pic)
7864 length += 12;
ece88821 7865
faf3f8c1 7866 /* long pc-relative branch sequence. */
feb01ed5 7867 else if (TARGET_LONG_PIC_SDIFF_CALL
2e6d3863 7868 || (TARGET_GAS && !TARGET_SOM && local_call))
faf3f8c1 7869 {
7870 length += 20;
ece88821 7871
226f6453 7872 if (!TARGET_PA_20 && !TARGET_NO_SPACE_REGS && (!local_call || flag_pic))
faf3f8c1 7873 length += 8;
7874 }
8a05c3c2 7875
faf3f8c1 7876 /* 32-bit plabel sequence. */
7877 else
7878 {
7879 length += 32;
ece88821 7880
faf3f8c1 7881 if (TARGET_SOM)
7882 length += length_fp_args (insn);
7883
7884 if (flag_pic)
7885 length += 4;
ee376abe 7886
faf3f8c1 7887 if (!TARGET_PA_20)
7888 {
ece88821 7889 if (!sibcall)
7890 length += 8;
7891
226f6453 7892 if (!TARGET_NO_SPACE_REGS && (!local_call || flag_pic))
faf3f8c1 7893 length += 8;
ece88821 7894 }
7895 }
faf3f8c1 7896
7897 return length;
ece88821 7898}
7899
16b068df 7900/* INSN is a function call.
c7a4e712 7901
7902 CALL_DEST is the routine we are calling. */
7903
611a88e1 7904const char *
8443f305 7905pa_output_call (rtx_insn *insn, rtx call_dest, int sibcall)
c7a4e712 7906{
b70ea764 7907 int seq_length = dbr_sequence_length ();
2247cc5f 7908 tree call_decl = SYMBOL_REF_DECL (call_dest);
c5559ed4 7909 int local_call = call_decl && targetm.binds_local_p (call_decl);
2e6d3863 7910 rtx xoperands[4];
ece88821 7911
7912 xoperands[0] = call_dest;
c7a4e712 7913
ece88821 7914 /* Handle the common case where we're sure that the branch will reach
2247cc5f 7915 the beginning of the "$CODE$" subspace. This is the beginning of
7916 the current function if we are in a named section. */
e202682d 7917 if (!TARGET_LONG_CALLS && pa_attr_length_call (insn, sibcall) == 8)
d6686e21 7918 {
5e3c5739 7919 xoperands[1] = gen_rtx_REG (word_mode, sibcall ? 0 : 2);
ece88821 7920 output_asm_insn ("{bl|b,l} %0,%1", xoperands);
06ddb6f8 7921 }
ece88821 7922 else
06ddb6f8 7923 {
2247cc5f 7924 if (TARGET_64BIT && !local_call)
3683f840 7925 {
ece88821 7926 /* ??? As far as I can tell, the HP linker doesn't support the
7927 long pc-relative sequence described in the 64-bit runtime
7928 architecture. So, we use a slightly longer indirect call. */
e202682d 7929 xoperands[0] = pa_get_deferred_plabel (call_dest);
ece88821 7930 xoperands[1] = gen_label_rtx ();
7931
7932 /* If this isn't a sibcall, we put the load of %r27 into the
7933 delay slot. We can't do this in a sibcall as we don't
16b068df 7934 have a second call-clobbered scratch register available.
7935 We don't need to do anything when generating fast indirect
7936 calls. */
7937 if (seq_length != 0 && !sibcall)
ece88821 7938 {
7939 final_scan_insn (NEXT_INSN (insn), asm_out_file,
4bf029b0 7940 optimize, 0, NULL);
ece88821 7941
7942 /* Now delete the delay insn. */
ad4583d9 7943 SET_INSN_DELETED (NEXT_INSN (insn));
16b068df 7944 seq_length = 0;
ece88821 7945 }
06ddb6f8 7946
ece88821 7947 output_asm_insn ("addil LT'%0,%%r27", xoperands);
7948 output_asm_insn ("ldd RT'%0(%%r1),%%r1", xoperands);
7949 output_asm_insn ("ldd 0(%%r1),%%r1", xoperands);
06ddb6f8 7950
ece88821 7951 if (sibcall)
06ddb6f8 7952 {
ece88821 7953 output_asm_insn ("ldd 24(%%r1),%%r27", xoperands);
7954 output_asm_insn ("ldd 16(%%r1),%%r1", xoperands);
7955 output_asm_insn ("bve (%%r1)", xoperands);
7956 }
7957 else
7958 {
7959 output_asm_insn ("ldd 16(%%r1),%%r2", xoperands);
7960 output_asm_insn ("bve,l (%%r2),%%r2", xoperands);
7961 output_asm_insn ("ldd 24(%%r1),%%r27", xoperands);
16b068df 7962 seq_length = 1;
06ddb6f8 7963 }
7964 }
ece88821 7965 else
e3f53689 7966 {
ece88821 7967 int indirect_call = 0;
7968
7969 /* Emit a long call. There are several different sequences
7970 of increasing length and complexity. In most cases,
7971 they don't allow an instruction in the delay slot. */
2247cc5f 7972 if (!((TARGET_LONG_ABS_CALL || local_call) && !flag_pic)
feb01ed5 7973 && !TARGET_LONG_PIC_SDIFF_CALL
2e6d3863 7974 && !(TARGET_GAS && !TARGET_SOM && local_call)
2247cc5f 7975 && !TARGET_64BIT)
ece88821 7976 indirect_call = 1;
7977
7978 if (seq_length != 0
ece88821 7979 && !sibcall
c4b36071 7980 && (!TARGET_PA_20
7981 || indirect_call
7982 || ((TARGET_LONG_ABS_CALL || local_call) && !flag_pic)))
5cc6b2bc 7983 {
ece88821 7984 /* A non-jump insn in the delay slot. By definition we can
7985 emit this insn before the call (and in fact before argument
7986 relocating. */
4bf029b0 7987 final_scan_insn (NEXT_INSN (insn), asm_out_file, optimize, 0,
fbf5169c 7988 NULL);
ece88821 7989
7990 /* Now delete the delay insn. */
ad4583d9 7991 SET_INSN_DELETED (NEXT_INSN (insn));
16b068df 7992 seq_length = 0;
5cc6b2bc 7993 }
e3f53689 7994
2247cc5f 7995 if ((TARGET_LONG_ABS_CALL || local_call) && !flag_pic)
5cc6b2bc 7996 {
ece88821 7997 /* This is the best sequence for making long calls in
7998 non-pic code. Unfortunately, GNU ld doesn't provide
7999 the stub needed for external calls, and GAS's support
2247cc5f 8000 for this with the SOM linker is buggy. It is safe
8001 to use this for local calls. */
ece88821 8002 output_asm_insn ("ldil L'%0,%%r1", xoperands);
8003 if (sibcall)
8004 output_asm_insn ("be R'%0(%%sr4,%%r1)", xoperands);
8005 else
8006 {
8007 if (TARGET_PA_20)
8008 output_asm_insn ("be,l R'%0(%%sr4,%%r1),%%sr0,%%r31",
8009 xoperands);
8010 else
8011 output_asm_insn ("ble R'%0(%%sr4,%%r1)", xoperands);
c7a4e712 8012
ece88821 8013 output_asm_insn ("copy %%r31,%%r2", xoperands);
16b068df 8014 seq_length = 1;
ece88821 8015 }
8016 }
8017 else
8018 {
2e6d3863 8019 /* The HP assembler and linker can handle relocations for
8020 the difference of two symbols. The HP assembler
8021 recognizes the sequence as a pc-relative call and
8022 the linker provides stubs when needed. */
8023
8024 /* GAS currently can't generate the relocations that
8025 are needed for the SOM linker under HP-UX using this
8026 sequence. The GNU linker doesn't generate the stubs
8027 that are needed for external calls on TARGET_ELF32
8028 with this sequence. For now, we have to use a longer
8029 plabel sequence when using GAS for non local calls. */
8030 if (TARGET_LONG_PIC_SDIFF_CALL
8031 || (TARGET_GAS && !TARGET_SOM && local_call))
b70ea764 8032 {
2e6d3863 8033 xoperands[1] = gen_rtx_REG (Pmode, 1);
8034 xoperands[2] = xoperands[1];
8035 pa_output_pic_pcrel_sequence (xoperands);
b70ea764 8036 }
5e3c5739 8037 else
8038 {
ece88821 8039 /* Emit a long plabel-based call sequence. This is
8040 essentially an inline implementation of $$dyncall.
8041 We don't actually try to call $$dyncall as this is
8042 as difficult as calling the function itself. */
e202682d 8043 xoperands[0] = pa_get_deferred_plabel (call_dest);
ece88821 8044 xoperands[1] = gen_label_rtx ();
8045
8046 /* Since the call is indirect, FP arguments in registers
8047 need to be copied to the general registers. Then, the
8048 argument relocation stub will copy them back. */
8049 if (TARGET_SOM)
8050 copy_fp_args (insn);
8051
8052 if (flag_pic)
8053 {
8054 output_asm_insn ("addil LT'%0,%%r19", xoperands);
8055 output_asm_insn ("ldw RT'%0(%%r1),%%r1", xoperands);
8056 output_asm_insn ("ldw 0(%%r1),%%r1", xoperands);
8057 }
8058 else
8059 {
8060 output_asm_insn ("addil LR'%0-$global$,%%r27",
8061 xoperands);
8062 output_asm_insn ("ldw RR'%0-$global$(%%r1),%%r1",
8063 xoperands);
8064 }
06ddb6f8 8065
ece88821 8066 output_asm_insn ("bb,>=,n %%r1,30,.+16", xoperands);
8067 output_asm_insn ("depi 0,31,2,%%r1", xoperands);
8068 output_asm_insn ("ldw 4(%%sr0,%%r1),%%r19", xoperands);
8069 output_asm_insn ("ldw 0(%%sr0,%%r1),%%r1", xoperands);
c7a4e712 8070
ece88821 8071 if (!sibcall && !TARGET_PA_20)
8072 {
8073 output_asm_insn ("{bl|b,l} .+8,%%r2", xoperands);
226f6453 8074 if (TARGET_NO_SPACE_REGS || (local_call && !flag_pic))
ee376abe 8075 output_asm_insn ("addi 8,%%r2,%%r2", xoperands);
8076 else
8077 output_asm_insn ("addi 16,%%r2,%%r2", xoperands);
ece88821 8078 }
8079 }
c7a4e712 8080
ece88821 8081 if (TARGET_PA_20)
5e3c5739 8082 {
ece88821 8083 if (sibcall)
8084 output_asm_insn ("bve (%%r1)", xoperands);
8085 else
8086 {
8087 if (indirect_call)
8088 {
8089 output_asm_insn ("bve,l (%%r1),%%r2", xoperands);
8090 output_asm_insn ("stw %%r2,-24(%%sp)", xoperands);
16b068df 8091 seq_length = 1;
ece88821 8092 }
8093 else
8094 output_asm_insn ("bve,l (%%r1),%%r2", xoperands);
8095 }
5e3c5739 8096 }
8097 else
8098 {
226f6453 8099 if (!TARGET_NO_SPACE_REGS && (!local_call || flag_pic))
ee376abe 8100 output_asm_insn ("ldsid (%%r1),%%r31\n\tmtsp %%r31,%%sr0",
8101 xoperands);
06ddb6f8 8102
ece88821 8103 if (sibcall)
ee376abe 8104 {
226f6453 8105 if (TARGET_NO_SPACE_REGS || (local_call && !flag_pic))
ee376abe 8106 output_asm_insn ("be 0(%%sr4,%%r1)", xoperands);
8107 else
8108 output_asm_insn ("be 0(%%sr0,%%r1)", xoperands);
8109 }
ece88821 8110 else
8111 {
226f6453 8112 if (TARGET_NO_SPACE_REGS || (local_call && !flag_pic))
ee376abe 8113 output_asm_insn ("ble 0(%%sr4,%%r1)", xoperands);
8114 else
8115 output_asm_insn ("ble 0(%%sr0,%%r1)", xoperands);
06ddb6f8 8116
ece88821 8117 if (indirect_call)
8118 output_asm_insn ("stw %%r31,-24(%%sp)", xoperands);
8119 else
8120 output_asm_insn ("copy %%r31,%%r2", xoperands);
16b068df 8121 seq_length = 1;
ece88821 8122 }
8123 }
8124 }
06ddb6f8 8125 }
d6686e21 8126 }
6d36483b 8127
16b068df 8128 if (seq_length == 0)
ece88821 8129 output_asm_insn ("nop", xoperands);
d6686e21 8130
d6686e21 8131 return "";
8132}
8133
cd0dfcc5 8134/* Return the attribute length of the indirect call instruction INSN.
8135 The length must match the code generated by output_indirect call.
8136 The returned length includes the delay slot. Currently, the delay
8137 slot of an indirect call sequence is not exposed and it is used by
8138 the sequence itself. */
8139
8140int
8443f305 8141pa_attr_length_indirect_call (rtx_insn *insn)
cd0dfcc5 8142{
8143 unsigned long distance = -1;
8a05c3c2 8144 unsigned long total = IN_NAMED_SECTION_P (cfun->decl) ? 0 : total_code_bytes;
cd0dfcc5 8145
8146 if (INSN_ADDRESSES_SET_P ())
8147 {
2247cc5f 8148 distance = (total + insn_current_reference_address (insn));
8149 if (distance < total)
cd0dfcc5 8150 distance = -1;
8151 }
8152
8153 if (TARGET_64BIT)
8154 return 12;
8155
a1e99c57 8156 if (TARGET_FAST_INDIRECT_CALLS)
cd0dfcc5 8157 return 8;
8158
cd0dfcc5 8159 if (TARGET_PORTABLE_RUNTIME)
1688a966 8160 return 16;
cd0dfcc5 8161
a1e99c57 8162 /* Inline version of $$dyncall. */
8163 if ((TARGET_NO_SPACE_REGS || TARGET_PA_20) && !optimize_size)
8164 return 20;
8165
8166 if (!TARGET_LONG_CALLS
8167 && ((TARGET_PA_20 && !TARGET_SOM && distance < 7600000)
8168 || distance < MAX_PCREL17F_OFFSET))
8169 return 8;
8170
cd0dfcc5 8171 /* Out of reach, can use ble. */
a1e99c57 8172 if (!flag_pic)
8173 return 12;
8174
8175 /* Inline version of $$dyncall. */
8176 if (TARGET_NO_SPACE_REGS || TARGET_PA_20)
8177 return 20;
8178
8179 if (!optimize_size)
8180 return 36;
8181
8182 /* Long PIC pc-relative call. */
8183 return 20;
cd0dfcc5 8184}
8185
8186const char *
8443f305 8187pa_output_indirect_call (rtx_insn *insn, rtx call_dest)
cd0dfcc5 8188{
2e6d3863 8189 rtx xoperands[4];
a1e99c57 8190 int length;
cd0dfcc5 8191
8192 if (TARGET_64BIT)
8193 {
8194 xoperands[0] = call_dest;
a1e99c57 8195 output_asm_insn ("ldd 16(%0),%%r2\n\t"
8196 "bve,l (%%r2),%%r2\n\t"
8197 "ldd 24(%0),%%r27", xoperands);
cd0dfcc5 8198 return "";
8199 }
8200
8201 /* First the special case for kernels, level 0 systems, etc. */
8202 if (TARGET_FAST_INDIRECT_CALLS)
a1e99c57 8203 {
8204 pa_output_arg_descriptor (insn);
8205 if (TARGET_PA_20)
8206 return "bve,l,n (%%r22),%%r2\n\tnop";
8207 return "ble 0(%%sr4,%%r22)\n\tcopy %%r31,%%r2";
8208 }
8209
8210 if (TARGET_PORTABLE_RUNTIME)
8211 {
8212 output_asm_insn ("ldil L'$$dyncall,%%r31\n\t"
8213 "ldo R'$$dyncall(%%r31),%%r31", xoperands);
8214 pa_output_arg_descriptor (insn);
8215 return "blr %%r0,%%r2\n\tbv,n %%r0(%%r31)";
8216 }
8217
8218 /* Maybe emit a fast inline version of $$dyncall. */
8219 if ((TARGET_NO_SPACE_REGS || TARGET_PA_20) && !optimize_size)
8220 {
8221 output_asm_insn ("bb,>=,n %%r22,30,.+12\n\t"
8222 "ldw 2(%%r22),%%r19\n\t"
8223 "ldw -2(%%r22),%%r22", xoperands);
8224 pa_output_arg_descriptor (insn);
8225 if (TARGET_NO_SPACE_REGS)
8226 {
8227 if (TARGET_PA_20)
8228 return "bve,l,n (%%r22),%%r2\n\tnop";
8229 return "ble 0(%%sr4,%%r22)\n\tcopy %%r31,%%r2";
8230 }
8231 return "bve,l (%%r22),%%r2\n\tstw %%r2,-24(%%sp)";
8232 }
cd0dfcc5 8233
8234 /* Now the normal case -- we can reach $$dyncall directly or
8235 we're sure that we can get there via a long-branch stub.
8236
8237 No need to check target flags as the length uniquely identifies
8238 the remaining cases. */
a1e99c57 8239 length = pa_attr_length_indirect_call (insn);
8240 if (length == 8)
f707acb9 8241 {
a1e99c57 8242 pa_output_arg_descriptor (insn);
8243
5925d47a 8244 /* The HP linker sometimes substitutes a BLE for BL/B,L calls to
8245 $$dyncall. Since BLE uses %r31 as the link register, the 22-bit
8246 variant of the B,L instruction can't be used on the SOM target. */
8247 if (TARGET_PA_20 && !TARGET_SOM)
a1e99c57 8248 return "b,l,n $$dyncall,%%r2\n\tnop";
f707acb9 8249 else
a1e99c57 8250 return "bl $$dyncall,%%r31\n\tcopy %%r31,%%r2";
f707acb9 8251 }
cd0dfcc5 8252
8253 /* Long millicode call, but we are not generating PIC or portable runtime
8254 code. */
a1e99c57 8255 if (length == 12)
8256 {
8257 output_asm_insn ("ldil L'$$dyncall,%%r2", xoperands);
8258 pa_output_arg_descriptor (insn);
8259 return "ble R'$$dyncall(%%sr4,%%r2)\n\tcopy %%r31,%%r2";
8260 }
cd0dfcc5 8261
a1e99c57 8262 /* Maybe emit a fast inline version of $$dyncall. The long PIC
8263 pc-relative call sequence is five instructions. The inline PA 2.0
8264 version of $$dyncall is also five instructions. The PA 1.X versions
8265 are longer but still an overall win. */
8266 if (TARGET_NO_SPACE_REGS || TARGET_PA_20 || !optimize_size)
8267 {
8268 output_asm_insn ("bb,>=,n %%r22,30,.+12\n\t"
8269 "ldw 2(%%r22),%%r19\n\t"
8270 "ldw -2(%%r22),%%r22", xoperands);
8271 if (TARGET_NO_SPACE_REGS)
8272 {
8273 pa_output_arg_descriptor (insn);
8274 if (TARGET_PA_20)
8275 return "bve,l,n (%%r22),%%r2\n\tnop";
8276 return "ble 0(%%sr4,%%r22)\n\tcopy %%r31,%%r2";
8277 }
8278 if (TARGET_PA_20)
8279 {
8280 pa_output_arg_descriptor (insn);
8281 return "bve,l (%%r22),%%r2\n\tstw %%r2,-24(%%sp)";
8282 }
8283 output_asm_insn ("bl .+8,%%r2\n\t"
8284 "ldo 16(%%r2),%%r2\n\t"
8285 "ldsid (%%r22),%%r1\n\t"
8286 "mtsp %%r1,%%sr0", xoperands);
8287 pa_output_arg_descriptor (insn);
8288 return "be 0(%%sr0,%%r22)\n\tstw %%r2,-24(%%sp)";
8289 }
8290
cd0dfcc5 8291 /* We need a long PIC call to $$dyncall. */
2e6d3863 8292 xoperands[0] = gen_rtx_SYMBOL_REF (Pmode, "$$dyncall");
8293 xoperands[1] = gen_rtx_REG (Pmode, 2);
8294 xoperands[2] = gen_rtx_REG (Pmode, 1);
8295 pa_output_pic_pcrel_sequence (xoperands);
a1e99c57 8296 pa_output_arg_descriptor (insn);
8297 return "bv %%r0(%%r1)\n\tldo {12|20}(%%r2),%%r2";
cd0dfcc5 8298}
8299
d6f01525 8300/* In HPUX 8.0's shared library scheme, special relocations are needed
6d36483b 8301 for function labels if they might be passed to a function
d6f01525 8302 in a shared library (because shared libraries don't live in code
44acf429 8303 space), and special magic is needed to construct their address. */
d6f01525 8304
8305void
e202682d 8306pa_encode_label (rtx sym)
d6f01525 8307{
611a88e1 8308 const char *str = XSTR (sym, 0);
cccfb31e 8309 int len = strlen (str) + 1;
8310 char *newstr, *p;
d6f01525 8311
225ab426 8312 p = newstr = XALLOCAVEC (char, len + 1);
cccfb31e 8313 *p++ = '@';
8314 strcpy (p, str);
74d80a9a 8315
ea52c577 8316 XSTR (sym, 0) = ggc_alloc_string (newstr, len);
d6f01525 8317}
6d36483b 8318
7811991d 8319static void
5c1d8983 8320pa_encode_section_info (tree decl, rtx rtl, int first)
7811991d 8321{
54d7a10c 8322 int old_referenced = 0;
8323
8324 if (!first && MEM_P (rtl) && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF)
8325 old_referenced
8326 = SYMBOL_REF_FLAGS (XEXP (rtl, 0)) & SYMBOL_FLAG_REFERENCED;
8327
716b2c5a 8328 default_encode_section_info (decl, rtl, first);
8329
7811991d 8330 if (first && TEXT_SPACE_P (decl))
8331 {
7811991d 8332 SYMBOL_REF_FLAG (XEXP (rtl, 0)) = 1;
8333 if (TREE_CODE (decl) == FUNCTION_DECL)
e202682d 8334 pa_encode_label (XEXP (rtl, 0));
7811991d 8335 }
54d7a10c 8336 else if (old_referenced)
8337 SYMBOL_REF_FLAGS (XEXP (rtl, 0)) |= old_referenced;
7811991d 8338}
8339
7b4a38a6 8340/* This is sort of inverse to pa_encode_section_info. */
8341
8342static const char *
5c1d8983 8343pa_strip_name_encoding (const char *str)
7b4a38a6 8344{
c0264367 8345 str += (*str == '@');
8346 str += (*str == '*');
8347 return str;
7b4a38a6 8348}
8349
166bf021 8350/* Returns 1 if OP is a function label involved in a simple addition
8351 with a constant. Used to keep certain patterns from matching
8352 during instruction combination. */
8353int
e202682d 8354pa_is_function_label_plus_const (rtx op)
166bf021 8355{
8356 /* Strip off any CONST. */
8357 if (GET_CODE (op) == CONST)
8358 op = XEXP (op, 0);
8359
8360 return (GET_CODE (op) == PLUS
39ec41d4 8361 && function_label_operand (XEXP (op, 0), VOIDmode)
166bf021 8362 && GET_CODE (XEXP (op, 1)) == CONST_INT);
8363}
8364
f1752b7e 8365/* Output assembly code for a thunk to FUNCTION. */
8366
6988553d 8367static void
5c1d8983 8368pa_asm_output_mi_thunk (FILE *file, tree thunk_fndecl, HOST_WIDE_INT delta,
8369 HOST_WIDE_INT vcall_offset ATTRIBUTE_UNUSED,
8370 tree function)
f1752b7e 8371{
e678758c 8372 static unsigned int current_thunk_number;
2247cc5f 8373 int val_14 = VAL_14_BITS_P (delta);
21a47bc9 8374 unsigned int old_last_address = last_address, nbytes = 0;
2d8f62df 8375 char label[17];
e678758c 8376 rtx xoperands[4];
2247cc5f 8377
e678758c 8378 xoperands[0] = XEXP (DECL_RTL (function), 0);
8379 xoperands[1] = XEXP (DECL_RTL (thunk_fndecl), 0);
8380 xoperands[2] = GEN_INT (delta);
2247cc5f 8381
be85a9c4 8382 final_start_function (emit_barrier (), file, 1);
2247cc5f 8383
8384 /* Output the thunk. We know that the function is in the same
8385 translation unit (i.e., the same space) as the thunk, and that
8386 thunks are output after their method. Thus, we don't need an
8387 external branch to reach the function. With SOM and GAS,
8388 functions and thunks are effectively in different sections.
8389 Thus, we can always use a IA-relative branch and the linker
8390 will add a long branch stub if necessary.
8391
8392 However, we have to be careful when generating PIC code on the
8393 SOM port to ensure that the sequence does not transfer to an
8394 import stub for the target function as this could clobber the
8395 return value saved at SP-24. This would also apply to the
8396 32-bit linux port if the multi-space model is implemented. */
8397 if ((!TARGET_LONG_CALLS && TARGET_SOM && !TARGET_PORTABLE_RUNTIME
8398 && !(flag_pic && TREE_PUBLIC (function))
8399 && (TARGET_GAS || last_address < 262132))
8400 || (!TARGET_LONG_CALLS && !TARGET_SOM && !TARGET_PORTABLE_RUNTIME
218e3e4e 8401 && ((targetm_common.have_named_sections
2247cc5f 8402 && DECL_SECTION_NAME (thunk_fndecl) != NULL
8403 /* The GNU 64-bit linker has rather poor stub management.
8404 So, we use a long branch from thunks that aren't in
8405 the same section as the target function. */
8406 && ((!TARGET_64BIT
8407 && (DECL_SECTION_NAME (thunk_fndecl)
8408 != DECL_SECTION_NAME (function)))
8409 || ((DECL_SECTION_NAME (thunk_fndecl)
8410 == DECL_SECTION_NAME (function))
8411 && last_address < 262132)))
4805aa90 8412 /* In this case, we need to be able to reach the start of
8413 the stub table even though the function is likely closer
8414 and can be jumped to directly. */
218e3e4e 8415 || (targetm_common.have_named_sections
55e0e460 8416 && DECL_SECTION_NAME (thunk_fndecl) == NULL
8417 && DECL_SECTION_NAME (function) == NULL
4805aa90 8418 && total_code_bytes < MAX_PCREL17F_OFFSET)
8419 /* Likewise. */
218e3e4e 8420 || (!targetm_common.have_named_sections
4805aa90 8421 && total_code_bytes < MAX_PCREL17F_OFFSET))))
2247cc5f 8422 {
e678758c 8423 if (!val_14)
8424 output_asm_insn ("addil L'%2,%%r26", xoperands);
8425
6a90621a 8426 output_asm_insn ("b %0", xoperands);
e678758c 8427
2247cc5f 8428 if (val_14)
8429 {
e678758c 8430 output_asm_insn ("ldo %2(%%r26),%%r26", xoperands);
2247cc5f 8431 nbytes += 8;
8432 }
8433 else
8434 {
e678758c 8435 output_asm_insn ("ldo R'%2(%%r1),%%r26", xoperands);
2247cc5f 8436 nbytes += 12;
8437 }
8438 }
8439 else if (TARGET_64BIT)
8440 {
2e6d3863 8441 rtx xop[4];
8442
2247cc5f 8443 /* We only have one call-clobbered scratch register, so we can't
8444 make use of the delay slot if delta doesn't fit in 14 bits. */
8445 if (!val_14)
e678758c 8446 {
8447 output_asm_insn ("addil L'%2,%%r26", xoperands);
8448 output_asm_insn ("ldo R'%2(%%r1),%%r26", xoperands);
8449 }
2247cc5f 8450
2e6d3863 8451 /* Load function address into %r1. */
8452 xop[0] = xoperands[0];
8453 xop[1] = gen_rtx_REG (Pmode, 1);
8454 xop[2] = xop[1];
8455 pa_output_pic_pcrel_sequence (xop);
2247cc5f 8456
8457 if (val_14)
8458 {
e678758c 8459 output_asm_insn ("bv %%r0(%%r1)", xoperands);
8460 output_asm_insn ("ldo %2(%%r26),%%r26", xoperands);
2247cc5f 8461 nbytes += 20;
8462 }
8463 else
8464 {
e678758c 8465 output_asm_insn ("bv,n %%r0(%%r1)", xoperands);
2247cc5f 8466 nbytes += 24;
8467 }
8468 }
8469 else if (TARGET_PORTABLE_RUNTIME)
8470 {
e678758c 8471 output_asm_insn ("ldil L'%0,%%r1", xoperands);
8472 output_asm_insn ("ldo R'%0(%%r1),%%r22", xoperands);
8473
8474 if (!val_14)
2e6d3863 8475 output_asm_insn ("ldil L'%2,%%r26", xoperands);
e678758c 8476
8477 output_asm_insn ("bv %%r0(%%r22)", xoperands);
2247cc5f 8478
8479 if (val_14)
8480 {
e678758c 8481 output_asm_insn ("ldo %2(%%r26),%%r26", xoperands);
2247cc5f 8482 nbytes += 16;
8483 }
8484 else
8485 {
2e6d3863 8486 output_asm_insn ("ldo R'%2(%%r26),%%r26", xoperands);
2247cc5f 8487 nbytes += 20;
8488 }
8489 }
8490 else if (TARGET_SOM && flag_pic && TREE_PUBLIC (function))
8491 {
8492 /* The function is accessible from outside this module. The only
8493 way to avoid an import stub between the thunk and function is to
8494 call the function directly with an indirect sequence similar to
8495 that used by $$dyncall. This is possible because $$dyncall acts
8496 as the import stub in an indirect call. */
2247cc5f 8497 ASM_GENERATE_INTERNAL_LABEL (label, "LTHN", current_thunk_number);
e678758c 8498 xoperands[3] = gen_rtx_SYMBOL_REF (Pmode, label);
8499 output_asm_insn ("addil LT'%3,%%r19", xoperands);
8500 output_asm_insn ("ldw RT'%3(%%r1),%%r22", xoperands);
8501 output_asm_insn ("ldw 0(%%sr0,%%r22),%%r22", xoperands);
8502 output_asm_insn ("bb,>=,n %%r22,30,.+16", xoperands);
8503 output_asm_insn ("depi 0,31,2,%%r22", xoperands);
8504 output_asm_insn ("ldw 4(%%sr0,%%r22),%%r19", xoperands);
8505 output_asm_insn ("ldw 0(%%sr0,%%r22),%%r22", xoperands);
8506
2247cc5f 8507 if (!val_14)
8508 {
e678758c 8509 output_asm_insn ("addil L'%2,%%r26", xoperands);
2247cc5f 8510 nbytes += 4;
8511 }
e678758c 8512
2247cc5f 8513 if (TARGET_PA_20)
8514 {
e678758c 8515 output_asm_insn ("bve (%%r22)", xoperands);
8516 nbytes += 36;
8517 }
8518 else if (TARGET_NO_SPACE_REGS)
8519 {
8520 output_asm_insn ("be 0(%%sr4,%%r22)", xoperands);
2247cc5f 8521 nbytes += 36;
8522 }
8523 else
f1752b7e 8524 {
e678758c 8525 output_asm_insn ("ldsid (%%sr0,%%r22),%%r21", xoperands);
8526 output_asm_insn ("mtsp %%r21,%%sr0", xoperands);
8527 output_asm_insn ("be 0(%%sr0,%%r22)", xoperands);
8528 nbytes += 44;
2247cc5f 8529 }
8530
8531 if (val_14)
e678758c 8532 output_asm_insn ("ldo %2(%%r26),%%r26", xoperands);
2247cc5f 8533 else
e678758c 8534 output_asm_insn ("ldo R'%2(%%r1),%%r26", xoperands);
2247cc5f 8535 }
8536 else if (flag_pic)
8537 {
2e6d3863 8538 rtx xop[4];
2247cc5f 8539
2e6d3863 8540 /* Load function address into %r22. */
8541 xop[0] = xoperands[0];
8542 xop[1] = gen_rtx_REG (Pmode, 1);
8543 xop[2] = gen_rtx_REG (Pmode, 22);
8544 pa_output_pic_pcrel_sequence (xop);
2247cc5f 8545
e678758c 8546 if (!val_14)
8547 output_asm_insn ("addil L'%2,%%r26", xoperands);
8548
8549 output_asm_insn ("bv %%r0(%%r22)", xoperands);
8550
2247cc5f 8551 if (val_14)
8552 {
e678758c 8553 output_asm_insn ("ldo %2(%%r26),%%r26", xoperands);
2247cc5f 8554 nbytes += 20;
f1752b7e 8555 }
8556 else
2247cc5f 8557 {
e678758c 8558 output_asm_insn ("ldo R'%2(%%r1),%%r26", xoperands);
2247cc5f 8559 nbytes += 24;
8560 }
f1752b7e 8561 }
8562 else
8563 {
2247cc5f 8564 if (!val_14)
e678758c 8565 output_asm_insn ("addil L'%2,%%r26", xoperands);
2247cc5f 8566
e678758c 8567 output_asm_insn ("ldil L'%0,%%r22", xoperands);
8568 output_asm_insn ("be R'%0(%%sr4,%%r22)", xoperands);
2247cc5f 8569
8570 if (val_14)
f1752b7e 8571 {
e678758c 8572 output_asm_insn ("ldo %2(%%r26),%%r26", xoperands);
2247cc5f 8573 nbytes += 12;
f1752b7e 8574 }
8575 else
2247cc5f 8576 {
e678758c 8577 output_asm_insn ("ldo R'%2(%%r1),%%r26", xoperands);
2247cc5f 8578 nbytes += 16;
8579 }
f1752b7e 8580 }
2247cc5f 8581
be85a9c4 8582 final_end_function ();
78962d38 8583
2247cc5f 8584 if (TARGET_SOM && flag_pic && TREE_PUBLIC (function))
f1752b7e 8585 {
2f14b1f9 8586 switch_to_section (data_section);
e678758c 8587 output_asm_insn (".align 4", xoperands);
2247cc5f 8588 ASM_OUTPUT_LABEL (file, label);
e678758c 8589 output_asm_insn (".word P'%0", xoperands);
f1752b7e 8590 }
2247cc5f 8591
f1752b7e 8592 current_thunk_number++;
2247cc5f 8593 nbytes = ((nbytes + FUNCTION_BOUNDARY / BITS_PER_UNIT - 1)
8594 & ~(FUNCTION_BOUNDARY / BITS_PER_UNIT - 1));
8595 last_address += nbytes;
21a47bc9 8596 if (old_last_address > last_address)
8597 last_address = UINT_MAX;
2247cc5f 8598 update_total_code_bytes (nbytes);
f1752b7e 8599}
8600
805e22b2 8601/* Only direct calls to static functions are allowed to be sibling (tail)
8602 call optimized.
8603
8604 This restriction is necessary because some linker generated stubs will
8605 store return pointers into rp' in some cases which might clobber a
8606 live value already in rp'.
8607
8608 In a sibcall the current function and the target function share stack
8609 space. Thus if the path to the current function and the path to the
8610 target function save a value in rp', they save the value into the
8611 same stack slot, which has undesirable consequences.
8612
8613 Because of the deferred binding nature of shared libraries any function
8614 with external scope could be in a different load module and thus require
8615 rp' to be saved when calling that function. So sibcall optimizations
8616 can only be safe for static function.
8617
8618 Note that GCC never needs return value relocations, so we don't have to
8619 worry about static calls with return value relocations (which require
8620 saving rp').
8621
8622 It is safe to perform a sibcall optimization when the target function
8623 will never return. */
8624static bool
5c1d8983 8625pa_function_ok_for_sibcall (tree decl, tree exp ATTRIBUTE_UNUSED)
805e22b2 8626{
f62b73b6 8627 /* Sibcalls are not ok because the arg pointer register is not a fixed
2cecd772 8628 register. This prevents the sibcall optimization from occurring. In
f62b73b6 8629 addition, there are problems with stub placement using GNU ld. This
8630 is because a normal sibcall branch uses a 17-bit relocation while
8631 a regular call branch uses a 22-bit relocation. As a result, more
8632 care needs to be taken in the placement of long-branch stubs. */
8633 if (TARGET_64BIT)
8634 return false;
8635
cdbe4e63 8636 if (TARGET_PORTABLE_RUNTIME)
8637 return false;
8638
e11e9ae3 8639 /* Sibcalls are only ok within a translation unit. */
cdbe4e63 8640 return decl && targetm.binds_local_p (decl);
805e22b2 8641}
8642
280566a7 8643/* ??? Addition is not commutative on the PA due to the weird implicit
8644 space register selection rules for memory addresses. Therefore, we
8645 don't consider a + b == b + a, as this might be inside a MEM. */
8646static bool
a9f1838b 8647pa_commutative_p (const_rtx x, int outer_code)
280566a7 8648{
8649 return (COMMUTATIVE_P (x)
55e3fa6d 8650 && (TARGET_NO_SPACE_REGS
8651 || (outer_code != UNKNOWN && outer_code != MEM)
280566a7 8652 || GET_CODE (x) != PLUS));
8653}
8654
37580c80 8655/* Returns 1 if the 6 operands specified in OPERANDS are suitable for
8656 use in fmpyadd instructions. */
4ed6ee50 8657int
e202682d 8658pa_fmpyaddoperands (rtx *operands)
4ed6ee50 8659{
3754d046 8660 machine_mode mode = GET_MODE (operands[0]);
4ed6ee50 8661
ab449421 8662 /* Must be a floating point mode. */
8663 if (mode != SFmode && mode != DFmode)
8664 return 0;
8665
4ed6ee50 8666 /* All modes must be the same. */
201f01e9 8667 if (! (mode == GET_MODE (operands[1])
8668 && mode == GET_MODE (operands[2])
8669 && mode == GET_MODE (operands[3])
8670 && mode == GET_MODE (operands[4])
8671 && mode == GET_MODE (operands[5])))
4ed6ee50 8672 return 0;
8673
ab449421 8674 /* All operands must be registers. */
8675 if (! (GET_CODE (operands[1]) == REG
8676 && GET_CODE (operands[2]) == REG
8677 && GET_CODE (operands[3]) == REG
8678 && GET_CODE (operands[4]) == REG
8679 && GET_CODE (operands[5]) == REG))
4ed6ee50 8680 return 0;
8681
37580c80 8682 /* Only 2 real operands to the addition. One of the input operands must
8683 be the same as the output operand. */
4ed6ee50 8684 if (! rtx_equal_p (operands[3], operands[4])
8685 && ! rtx_equal_p (operands[3], operands[5]))
8686 return 0;
8687
33f88b1c 8688 /* Inout operand of add cannot conflict with any operands from multiply. */
4ed6ee50 8689 if (rtx_equal_p (operands[3], operands[0])
8690 || rtx_equal_p (operands[3], operands[1])
8691 || rtx_equal_p (operands[3], operands[2]))
8692 return 0;
8693
33f88b1c 8694 /* multiply cannot feed into addition operands. */
4ed6ee50 8695 if (rtx_equal_p (operands[4], operands[0])
8696 || rtx_equal_p (operands[5], operands[0]))
8697 return 0;
8698
ab449421 8699 /* SFmode limits the registers to the upper 32 of the 32bit FP regs. */
8700 if (mode == SFmode
bac38c40 8701 && (REGNO_REG_CLASS (REGNO (operands[0])) != FPUPPER_REGS
8702 || REGNO_REG_CLASS (REGNO (operands[1])) != FPUPPER_REGS
8703 || REGNO_REG_CLASS (REGNO (operands[2])) != FPUPPER_REGS
8704 || REGNO_REG_CLASS (REGNO (operands[3])) != FPUPPER_REGS
8705 || REGNO_REG_CLASS (REGNO (operands[4])) != FPUPPER_REGS
8706 || REGNO_REG_CLASS (REGNO (operands[5])) != FPUPPER_REGS))
ab449421 8707 return 0;
8708
4ed6ee50 8709 /* Passed. Operands are suitable for fmpyadd. */
8710 return 1;
8711}
8712
de419443 8713#if !defined(USE_COLLECT2)
8714static void
5c1d8983 8715pa_asm_out_constructor (rtx symbol, int priority)
de419443 8716{
8717 if (!function_label_operand (symbol, VOIDmode))
e202682d 8718 pa_encode_label (symbol);
de419443 8719
8720#ifdef CTORS_SECTION_ASM_OP
8721 default_ctor_section_asm_out_constructor (symbol, priority);
8722#else
8723# ifdef TARGET_ASM_NAMED_SECTION
8724 default_named_section_asm_out_constructor (symbol, priority);
8725# else
8726 default_stabs_asm_out_constructor (symbol, priority);
8727# endif
8728#endif
8729}
8730
8731static void
5c1d8983 8732pa_asm_out_destructor (rtx symbol, int priority)
de419443 8733{
8734 if (!function_label_operand (symbol, VOIDmode))
e202682d 8735 pa_encode_label (symbol);
de419443 8736
8737#ifdef DTORS_SECTION_ASM_OP
8738 default_dtor_section_asm_out_destructor (symbol, priority);
8739#else
8740# ifdef TARGET_ASM_NAMED_SECTION
8741 default_named_section_asm_out_destructor (symbol, priority);
8742# else
8743 default_stabs_asm_out_destructor (symbol, priority);
8744# endif
8745#endif
8746}
8747#endif
8748
ff59d376 8749/* This function places uninitialized global data in the bss section.
8750 The ASM_OUTPUT_ALIGNED_BSS macro needs to be defined to call this
8751 function on the SOM port to prevent uninitialized global data from
8752 being placed in the data section. */
8753
8754void
8755pa_asm_output_aligned_bss (FILE *stream,
8756 const char *name,
8757 unsigned HOST_WIDE_INT size,
8758 unsigned int align)
8759{
2f14b1f9 8760 switch_to_section (bss_section);
ff59d376 8761 fprintf (stream, "\t.align %u\n", align / BITS_PER_UNIT);
8762
8763#ifdef ASM_OUTPUT_TYPE_DIRECTIVE
8764 ASM_OUTPUT_TYPE_DIRECTIVE (stream, name, "object");
8765#endif
8766
8767#ifdef ASM_OUTPUT_SIZE_DIRECTIVE
8768 ASM_OUTPUT_SIZE_DIRECTIVE (stream, name, size);
8769#endif
8770
8771 fprintf (stream, "\t.align %u\n", align / BITS_PER_UNIT);
8772 ASM_OUTPUT_LABEL (stream, name);
f03df321 8773 fprintf (stream, "\t.block " HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
ff59d376 8774}
8775
8776/* Both the HP and GNU assemblers under HP-UX provide a .comm directive
8777 that doesn't allow the alignment of global common storage to be directly
8778 specified. The SOM linker aligns common storage based on the rounded
8779 value of the NUM_BYTES parameter in the .comm directive. It's not
8780 possible to use the .align directive as it doesn't affect the alignment
8781 of the label associated with a .comm directive. */
8782
8783void
8784pa_asm_output_aligned_common (FILE *stream,
8785 const char *name,
8786 unsigned HOST_WIDE_INT size,
8787 unsigned int align)
8788{
33cd7888 8789 unsigned int max_common_align;
8790
8791 max_common_align = TARGET_64BIT ? 128 : (size >= 4096 ? 256 : 64);
8792 if (align > max_common_align)
8793 {
c3ceba8e 8794 warning (0, "alignment (%u) for %s exceeds maximum alignment "
33cd7888 8795 "for global common data. Using %u",
8796 align / BITS_PER_UNIT, name, max_common_align / BITS_PER_UNIT);
8797 align = max_common_align;
8798 }
8799
2f14b1f9 8800 switch_to_section (bss_section);
ff59d376 8801
8802 assemble_name (stream, name);
f03df321 8803 fprintf (stream, "\t.comm " HOST_WIDE_INT_PRINT_UNSIGNED"\n",
ff59d376 8804 MAX (size, align / BITS_PER_UNIT));
8805}
8806
8807/* We can't use .comm for local common storage as the SOM linker effectively
8808 treats the symbol as universal and uses the same storage for local symbols
8809 with the same name in different object files. The .block directive
8810 reserves an uninitialized block of storage. However, it's not common
8811 storage. Fortunately, GCC never requests common storage with the same
8812 name in any given translation unit. */
8813
8814void
8815pa_asm_output_aligned_local (FILE *stream,
8816 const char *name,
8817 unsigned HOST_WIDE_INT size,
8818 unsigned int align)
8819{
2f14b1f9 8820 switch_to_section (bss_section);
ff59d376 8821 fprintf (stream, "\t.align %u\n", align / BITS_PER_UNIT);
8822
8823#ifdef LOCAL_ASM_OP
8824 fprintf (stream, "%s", LOCAL_ASM_OP);
8825 assemble_name (stream, name);
8826 fprintf (stream, "\n");
8827#endif
8828
8829 ASM_OUTPUT_LABEL (stream, name);
f03df321 8830 fprintf (stream, "\t.block " HOST_WIDE_INT_PRINT_UNSIGNED"\n", size);
ff59d376 8831}
8832
37580c80 8833/* Returns 1 if the 6 operands specified in OPERANDS are suitable for
8834 use in fmpysub instructions. */
4ed6ee50 8835int
e202682d 8836pa_fmpysuboperands (rtx *operands)
4ed6ee50 8837{
3754d046 8838 machine_mode mode = GET_MODE (operands[0]);
4ed6ee50 8839
ab449421 8840 /* Must be a floating point mode. */
8841 if (mode != SFmode && mode != DFmode)
8842 return 0;
8843
4ed6ee50 8844 /* All modes must be the same. */
201f01e9 8845 if (! (mode == GET_MODE (operands[1])
8846 && mode == GET_MODE (operands[2])
8847 && mode == GET_MODE (operands[3])
8848 && mode == GET_MODE (operands[4])
8849 && mode == GET_MODE (operands[5])))
4ed6ee50 8850 return 0;
8851
ab449421 8852 /* All operands must be registers. */
8853 if (! (GET_CODE (operands[1]) == REG
8854 && GET_CODE (operands[2]) == REG
8855 && GET_CODE (operands[3]) == REG
8856 && GET_CODE (operands[4]) == REG
8857 && GET_CODE (operands[5]) == REG))
4ed6ee50 8858 return 0;
8859
37580c80 8860 /* Only 2 real operands to the subtraction. Subtraction is not a commutative
8861 operation, so operands[4] must be the same as operand[3]. */
4ed6ee50 8862 if (! rtx_equal_p (operands[3], operands[4]))
8863 return 0;
8864
33f88b1c 8865 /* multiply cannot feed into subtraction. */
37580c80 8866 if (rtx_equal_p (operands[5], operands[0]))
4ed6ee50 8867 return 0;
8868
33f88b1c 8869 /* Inout operand of sub cannot conflict with any operands from multiply. */
4ed6ee50 8870 if (rtx_equal_p (operands[3], operands[0])
8871 || rtx_equal_p (operands[3], operands[1])
8872 || rtx_equal_p (operands[3], operands[2]))
8873 return 0;
8874
ab449421 8875 /* SFmode limits the registers to the upper 32 of the 32bit FP regs. */
8876 if (mode == SFmode
bac38c40 8877 && (REGNO_REG_CLASS (REGNO (operands[0])) != FPUPPER_REGS
8878 || REGNO_REG_CLASS (REGNO (operands[1])) != FPUPPER_REGS
8879 || REGNO_REG_CLASS (REGNO (operands[2])) != FPUPPER_REGS
8880 || REGNO_REG_CLASS (REGNO (operands[3])) != FPUPPER_REGS
8881 || REGNO_REG_CLASS (REGNO (operands[4])) != FPUPPER_REGS
8882 || REGNO_REG_CLASS (REGNO (operands[5])) != FPUPPER_REGS))
ab449421 8883 return 0;
8884
4ed6ee50 8885 /* Passed. Operands are suitable for fmpysub. */
8886 return 1;
8887}
8888
6720f95e 8889/* Return 1 if the given constant is 2, 4, or 8. These are the valid
edb1ad78 8890 constants for a MULT embedded inside a memory address. */
8891int
8892pa_mem_shadd_constant_p (int val)
8893{
8894 if (val == 2 || val == 4 || val == 8)
8895 return 1;
8896 else
8897 return 0;
8898}
8899
8900/* Return 1 if the given constant is 1, 2, or 3. These are the valid
6720f95e 8901 constants for shadd instructions. */
913de4b4 8902int
e202682d 8903pa_shadd_constant_p (int val)
6720f95e 8904{
edb1ad78 8905 if (val == 1 || val == 2 || val == 3)
6720f95e 8906 return 1;
8907 else
8908 return 0;
8909}
3a16146d 8910
372b3fe2 8911/* Return TRUE if INSN branches forward. */
8912
8913static bool
91a55c11 8914forward_branch_p (rtx_insn *insn)
5fbd5940 8915{
372b3fe2 8916 rtx lab = JUMP_LABEL (insn);
8917
8918 /* The INSN must have a jump label. */
8919 gcc_assert (lab != NULL_RTX);
8920
8921 if (INSN_ADDRESSES_SET_P ())
8922 return INSN_ADDRESSES (INSN_UID (lab)) > INSN_ADDRESSES (INSN_UID (insn));
5fbd5940 8923
8924 while (insn)
8925 {
372b3fe2 8926 if (insn == lab)
8927 return true;
5fbd5940 8928 else
8929 insn = NEXT_INSN (insn);
8930 }
8931
372b3fe2 8932 return false;
5fbd5940 8933}
8934
546a40bd 8935/* Output an unconditional move and branch insn. */
8936
611a88e1 8937const char *
91a55c11 8938pa_output_parallel_movb (rtx *operands, rtx_insn *insn)
546a40bd 8939{
f26036bb 8940 int length = get_attr_length (insn);
8941
546a40bd 8942 /* These are the cases in which we win. */
8943 if (length == 4)
8944 return "mov%I1b,tr %1,%0,%2";
8945
f26036bb 8946 /* None of the following cases win, but they don't lose either. */
8947 if (length == 8)
546a40bd 8948 {
f26036bb 8949 if (dbr_sequence_length () == 0)
8950 {
8951 /* Nothing in the delay slot, fake it by putting the combined
8952 insn (the copy or add) in the delay slot of a bl. */
8953 if (GET_CODE (operands[1]) == CONST_INT)
8954 return "b %2\n\tldi %1,%0";
8955 else
8956 return "b %2\n\tcopy %1,%0";
8957 }
546a40bd 8958 else
f26036bb 8959 {
8960 /* Something in the delay slot, but we've got a long branch. */
8961 if (GET_CODE (operands[1]) == CONST_INT)
8962 return "ldi %1,%0\n\tb %2";
8963 else
8964 return "copy %1,%0\n\tb %2";
8965 }
546a40bd 8966 }
f26036bb 8967
8968 if (GET_CODE (operands[1]) == CONST_INT)
8969 output_asm_insn ("ldi %1,%0", operands);
546a40bd 8970 else
f26036bb 8971 output_asm_insn ("copy %1,%0", operands);
e202682d 8972 return pa_output_lbranch (operands[2], insn, 1);
546a40bd 8973}
8974
8975/* Output an unconditional add and branch insn. */
8976
611a88e1 8977const char *
91a55c11 8978pa_output_parallel_addb (rtx *operands, rtx_insn *insn)
546a40bd 8979{
f26036bb 8980 int length = get_attr_length (insn);
8981
546a40bd 8982 /* To make life easy we want operand0 to be the shared input/output
8983 operand and operand1 to be the readonly operand. */
8984 if (operands[0] == operands[1])
8985 operands[1] = operands[2];
8986
8987 /* These are the cases in which we win. */
8988 if (length == 4)
8989 return "add%I1b,tr %1,%0,%3";
8990
f26036bb 8991 /* None of the following cases win, but they don't lose either. */
8992 if (length == 8)
546a40bd 8993 {
f26036bb 8994 if (dbr_sequence_length () == 0)
8995 /* Nothing in the delay slot, fake it by putting the combined
8996 insn (the copy or add) in the delay slot of a bl. */
8997 return "b %3\n\tadd%I1 %1,%0,%0";
8998 else
8999 /* Something in the delay slot, but we've got a long branch. */
9000 return "add%I1 %1,%0,%0\n\tb %3";
546a40bd 9001 }
f26036bb 9002
9003 output_asm_insn ("add%I1 %1,%0,%0", operands);
e202682d 9004 return pa_output_lbranch (operands[3], insn, 1);
546a40bd 9005}
9006
3b1e673e 9007/* We use this hook to perform a PA specific optimization which is difficult
f4d21d1e 9008 to do in earlier passes. */
3b1e673e 9009
2efea8c0 9010static void
5c1d8983 9011pa_reorg (void)
3b1e673e 9012{
2efea8c0 9013 remove_useless_addtr_insns (1);
3d457930 9014
342aabd9 9015 if (pa_cpu < PROCESSOR_8000)
2efea8c0 9016 pa_combine_instructions ();
d3287673 9017}
bd49d362 9018
9019/* The PA has a number of odd instructions which can perform multiple
9020 tasks at once. On first generation PA machines (PA1.0 and PA1.1)
9021 it may be profitable to combine two instructions into one instruction
9022 with two outputs. It's not profitable PA2.0 machines because the
9023 two outputs would take two slots in the reorder buffers.
9024
9025 This routine finds instructions which can be combined and combines
9026 them. We only support some of the potential combinations, and we
9027 only try common ways to find suitable instructions.
9028
9029 * addb can add two registers or a register and a small integer
9030 and jump to a nearby (+-8k) location. Normally the jump to the
9031 nearby location is conditional on the result of the add, but by
9032 using the "true" condition we can make the jump unconditional.
9033 Thus addb can perform two independent operations in one insn.
9034
9035 * movb is similar to addb in that it can perform a reg->reg
9036 or small immediate->reg copy and jump to a nearby (+-8k location).
9037
9038 * fmpyadd and fmpysub can perform a FP multiply and either an
9039 FP add or FP sub if the operands of the multiply and add/sub are
9040 independent (there are other minor restrictions). Note both
9041 the fmpy and fadd/fsub can in theory move to better spots according
9042 to data dependencies, but for now we require the fmpy stay at a
9043 fixed location.
9044
9045 * Many of the memory operations can perform pre & post updates
9046 of index registers. GCC's pre/post increment/decrement addressing
9047 is far too simple to take advantage of all the possibilities. This
9048 pass may not be suitable since those insns may not be independent.
9049
9050 * comclr can compare two ints or an int and a register, nullify
9051 the following instruction and zero some other register. This
9052 is more difficult to use as it's harder to find an insn which
9053 will generate a comclr than finding something like an unconditional
9054 branch. (conditional moves & long branches create comclr insns).
9055
9056 * Most arithmetic operations can conditionally skip the next
9057 instruction. They can be viewed as "perform this operation
9058 and conditionally jump to this nearby location" (where nearby
9059 is an insns away). These are difficult to use due to the
9060 branch length restrictions. */
9061
7d27e4c9 9062static void
5c1d8983 9063pa_combine_instructions (void)
bd49d362 9064{
91a55c11 9065 rtx_insn *anchor;
bd49d362 9066
9067 /* This can get expensive since the basic algorithm is on the
9068 order of O(n^2) (or worse). Only do it for -O2 or higher
ad87de1e 9069 levels of optimization. */
bd49d362 9070 if (optimize < 2)
9071 return;
9072
9073 /* Walk down the list of insns looking for "anchor" insns which
9074 may be combined with "floating" insns. As the name implies,
9075 "anchor" instructions don't move, while "floating" insns may
9076 move around. */
ed3e6e5d 9077 rtx par = gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, NULL_RTX, NULL_RTX));
9078 rtx_insn *new_rtx = make_insn_raw (par);
bd49d362 9079
9080 for (anchor = get_insns (); anchor; anchor = NEXT_INSN (anchor))
9081 {
9082 enum attr_pa_combine_type anchor_attr;
9083 enum attr_pa_combine_type floater_attr;
9084
9085 /* We only care about INSNs, JUMP_INSNs, and CALL_INSNs.
9086 Also ignore any special USE insns. */
aa90bb35 9087 if ((! NONJUMP_INSN_P (anchor) && ! JUMP_P (anchor) && ! CALL_P (anchor))
bd49d362 9088 || GET_CODE (PATTERN (anchor)) == USE
77985f1a 9089 || GET_CODE (PATTERN (anchor)) == CLOBBER)
bd49d362 9090 continue;
9091
9092 anchor_attr = get_attr_pa_combine_type (anchor);
9093 /* See if anchor is an insn suitable for combination. */
9094 if (anchor_attr == PA_COMBINE_TYPE_FMPY
9095 || anchor_attr == PA_COMBINE_TYPE_FADDSUB
9096 || (anchor_attr == PA_COMBINE_TYPE_UNCOND_BRANCH
9097 && ! forward_branch_p (anchor)))
9098 {
91a55c11 9099 rtx_insn *floater;
bd49d362 9100
9101 for (floater = PREV_INSN (anchor);
9102 floater;
9103 floater = PREV_INSN (floater))
9104 {
aa90bb35 9105 if (NOTE_P (floater)
9106 || (NONJUMP_INSN_P (floater)
bd49d362 9107 && (GET_CODE (PATTERN (floater)) == USE
9108 || GET_CODE (PATTERN (floater)) == CLOBBER)))
9109 continue;
9110
9111 /* Anything except a regular INSN will stop our search. */
91f71fa3 9112 if (! NONJUMP_INSN_P (floater))
bd49d362 9113 {
91a55c11 9114 floater = NULL;
bd49d362 9115 break;
9116 }
9117
9118 /* See if FLOATER is suitable for combination with the
9119 anchor. */
9120 floater_attr = get_attr_pa_combine_type (floater);
9121 if ((anchor_attr == PA_COMBINE_TYPE_FMPY
9122 && floater_attr == PA_COMBINE_TYPE_FADDSUB)
9123 || (anchor_attr == PA_COMBINE_TYPE_FADDSUB
9124 && floater_attr == PA_COMBINE_TYPE_FMPY))
9125 {
9126 /* If ANCHOR and FLOATER can be combined, then we're
9127 done with this pass. */
8deb3959 9128 if (pa_can_combine_p (new_rtx, anchor, floater, 0,
bd49d362 9129 SET_DEST (PATTERN (floater)),
9130 XEXP (SET_SRC (PATTERN (floater)), 0),
9131 XEXP (SET_SRC (PATTERN (floater)), 1)))
9132 break;
9133 }
9134
9135 else if (anchor_attr == PA_COMBINE_TYPE_UNCOND_BRANCH
9136 && floater_attr == PA_COMBINE_TYPE_ADDMOVE)
9137 {
9138 if (GET_CODE (SET_SRC (PATTERN (floater))) == PLUS)
9139 {
8deb3959 9140 if (pa_can_combine_p (new_rtx, anchor, floater, 0,
bd49d362 9141 SET_DEST (PATTERN (floater)),
9142 XEXP (SET_SRC (PATTERN (floater)), 0),
9143 XEXP (SET_SRC (PATTERN (floater)), 1)))
9144 break;
9145 }
9146 else
9147 {
8deb3959 9148 if (pa_can_combine_p (new_rtx, anchor, floater, 0,
bd49d362 9149 SET_DEST (PATTERN (floater)),
9150 SET_SRC (PATTERN (floater)),
9151 SET_SRC (PATTERN (floater))))
9152 break;
9153 }
9154 }
9155 }
9156
9157 /* If we didn't find anything on the backwards scan try forwards. */
9158 if (!floater
9159 && (anchor_attr == PA_COMBINE_TYPE_FMPY
9160 || anchor_attr == PA_COMBINE_TYPE_FADDSUB))
9161 {
9162 for (floater = anchor; floater; floater = NEXT_INSN (floater))
9163 {
aa90bb35 9164 if (NOTE_P (floater)
9165 || (NONJUMP_INSN_P (floater)
bd49d362 9166 && (GET_CODE (PATTERN (floater)) == USE
9167 || GET_CODE (PATTERN (floater)) == CLOBBER)))
9840d99d 9168
bd49d362 9169 continue;
9170
9171 /* Anything except a regular INSN will stop our search. */
91f71fa3 9172 if (! NONJUMP_INSN_P (floater))
bd49d362 9173 {
91a55c11 9174 floater = NULL;
bd49d362 9175 break;
9176 }
9177
9178 /* See if FLOATER is suitable for combination with the
9179 anchor. */
9180 floater_attr = get_attr_pa_combine_type (floater);
9181 if ((anchor_attr == PA_COMBINE_TYPE_FMPY
9182 && floater_attr == PA_COMBINE_TYPE_FADDSUB)
9183 || (anchor_attr == PA_COMBINE_TYPE_FADDSUB
9184 && floater_attr == PA_COMBINE_TYPE_FMPY))
9185 {
9186 /* If ANCHOR and FLOATER can be combined, then we're
9187 done with this pass. */
8deb3959 9188 if (pa_can_combine_p (new_rtx, anchor, floater, 1,
bd49d362 9189 SET_DEST (PATTERN (floater)),
ea52c577 9190 XEXP (SET_SRC (PATTERN (floater)),
9191 0),
9192 XEXP (SET_SRC (PATTERN (floater)),
9193 1)))
bd49d362 9194 break;
9195 }
9196 }
9197 }
9198
9199 /* FLOATER will be nonzero if we found a suitable floating
9200 insn for combination with ANCHOR. */
9201 if (floater
9202 && (anchor_attr == PA_COMBINE_TYPE_FADDSUB
9203 || anchor_attr == PA_COMBINE_TYPE_FMPY))
9204 {
9205 /* Emit the new instruction and delete the old anchor. */
18eff162 9206 rtvec vtemp = gen_rtvec (2, copy_rtx (PATTERN (anchor)),
9207 copy_rtx (PATTERN (floater)));
9208 rtx temp = gen_rtx_PARALLEL (VOIDmode, vtemp);
9209 emit_insn_before (temp, anchor);
7014838c 9210
ad4583d9 9211 SET_INSN_DELETED (anchor);
bd49d362 9212
9213 /* Emit a special USE insn for FLOATER, then delete
9214 the floating insn. */
18eff162 9215 temp = copy_rtx (PATTERN (floater));
9216 emit_insn_before (gen_rtx_USE (VOIDmode, temp), floater);
bd49d362 9217 delete_insn (floater);
9218
9219 continue;
9220 }
9221 else if (floater
9222 && anchor_attr == PA_COMBINE_TYPE_UNCOND_BRANCH)
9223 {
bd49d362 9224 /* Emit the new_jump instruction and delete the old anchor. */
18eff162 9225 rtvec vtemp = gen_rtvec (2, copy_rtx (PATTERN (anchor)),
9226 copy_rtx (PATTERN (floater)));
9227 rtx temp = gen_rtx_PARALLEL (VOIDmode, vtemp);
9228 temp = emit_jump_insn_before (temp, anchor);
7014838c 9229
bd49d362 9230 JUMP_LABEL (temp) = JUMP_LABEL (anchor);
ad4583d9 9231 SET_INSN_DELETED (anchor);
bd49d362 9232
9233 /* Emit a special USE insn for FLOATER, then delete
9234 the floating insn. */
18eff162 9235 temp = copy_rtx (PATTERN (floater));
9236 emit_insn_before (gen_rtx_USE (VOIDmode, temp), floater);
bd49d362 9237 delete_insn (floater);
9238 continue;
9239 }
9240 }
9241 }
9242}
9243
9aadea62 9244static int
ed3e6e5d 9245pa_can_combine_p (rtx_insn *new_rtx, rtx_insn *anchor, rtx_insn *floater,
91a55c11 9246 int reversed, rtx dest,
5c1d8983 9247 rtx src1, rtx src2)
bd49d362 9248{
9249 int insn_code_number;
91a55c11 9250 rtx_insn *start, *end;
bd49d362 9251
9252 /* Create a PARALLEL with the patterns of ANCHOR and
9253 FLOATER, try to recognize it, then test constraints
9254 for the resulting pattern.
9255
9256 If the pattern doesn't match or the constraints
9257 aren't met keep searching for a suitable floater
9258 insn. */
8deb3959 9259 XVECEXP (PATTERN (new_rtx), 0, 0) = PATTERN (anchor);
9260 XVECEXP (PATTERN (new_rtx), 0, 1) = PATTERN (floater);
9261 INSN_CODE (new_rtx) = -1;
9262 insn_code_number = recog_memoized (new_rtx);
e2f730a9 9263 basic_block bb = BLOCK_FOR_INSN (anchor);
bd49d362 9264 if (insn_code_number < 0
e2f730a9 9265 || (extract_insn (new_rtx),
cc590d0c 9266 !constrain_operands (1, get_preferred_alternatives (new_rtx, bb))))
bd49d362 9267 return 0;
9268
9269 if (reversed)
9270 {
9271 start = anchor;
9272 end = floater;
9273 }
9274 else
9275 {
9276 start = floater;
9277 end = anchor;
9278 }
9279
9280 /* There's up to three operands to consider. One
9281 output and two inputs.
9282
9283 The output must not be used between FLOATER & ANCHOR
9284 exclusive. The inputs must not be set between
9285 FLOATER and ANCHOR exclusive. */
9286
9287 if (reg_used_between_p (dest, start, end))
9288 return 0;
9289
9290 if (reg_set_between_p (src1, start, end))
9291 return 0;
9292
9293 if (reg_set_between_p (src2, start, end))
9294 return 0;
9295
9296 /* If we get here, then everything is good. */
9297 return 1;
9298}
14d18de3 9299
a6582a53 9300/* Return nonzero if references for INSN are delayed.
14d18de3 9301
9302 Millicode insns are actually function calls with some special
9303 constraints on arguments and register usage.
9304
9305 Millicode calls always expect their arguments in the integer argument
9306 registers, and always return their result in %r29 (ret1). They
2013ddf6 9307 are expected to clobber their arguments, %r1, %r29, and the return
9308 pointer which is %r31 on 32-bit and %r2 on 64-bit, and nothing else.
9309
9310 This function tells reorg that the references to arguments and
9311 millicode calls do not appear to happen until after the millicode call.
9312 This allows reorg to put insns which set the argument registers into the
9313 delay slot of the millicode call -- thus they act more like traditional
9314 CALL_INSNs.
9315
33f88b1c 9316 Note we cannot consider side effects of the insn to be delayed because
2013ddf6 9317 the branch and link insn will clobber the return pointer. If we happened
9318 to use the return pointer in the delay slot of the call, then we lose.
14d18de3 9319
9320 get_attr_type will try to recognize the given insn, so make sure to
9321 filter out things it will not accept -- SEQUENCE, USE and CLOBBER insns
9322 in particular. */
9323int
d3ffa7b4 9324pa_insn_refs_are_delayed (rtx_insn *insn)
14d18de3 9325{
aa90bb35 9326 return ((NONJUMP_INSN_P (insn)
14d18de3 9327 && GET_CODE (PATTERN (insn)) != SEQUENCE
9328 && GET_CODE (PATTERN (insn)) != USE
9329 && GET_CODE (PATTERN (insn)) != CLOBBER
9330 && get_attr_type (insn) == TYPE_MILLI));
9331}
5cb4669a 9332
3b2411a8 9333/* Promote the return value, but not the arguments. */
9334
3754d046 9335static machine_mode
3b2411a8 9336pa_promote_function_mode (const_tree type ATTRIBUTE_UNUSED,
3754d046 9337 machine_mode mode,
3b2411a8 9338 int *punsignedp ATTRIBUTE_UNUSED,
9339 const_tree fntype ATTRIBUTE_UNUSED,
9340 int for_return)
9341{
c879dbcf 9342 if (for_return == 0)
3b2411a8 9343 return mode;
a6b21a58 9344 return promote_mode (type, mode, punsignedp);
3b2411a8 9345}
9346
58a72cce 9347/* On the HP-PA the value is found in register(s) 28(-29), unless
9348 the mode is SF or DF. Then the value is returned in fr4 (32).
9349
3b2411a8 9350 This must perform the same promotions as PROMOTE_MODE, else promoting
9351 return values in TARGET_PROMOTE_FUNCTION_MODE will not work correctly.
58a72cce 9352
9353 Small structures must be returned in a PARALLEL on PA64 in order
9354 to match the HP Compiler ABI. */
9355
93d3ee56 9356static rtx
cb0b8817 9357pa_function_value (const_tree valtype,
9358 const_tree func ATTRIBUTE_UNUSED,
9359 bool outgoing ATTRIBUTE_UNUSED)
58a72cce 9360{
3754d046 9361 machine_mode valmode;
58a72cce 9362
4779159e 9363 if (AGGREGATE_TYPE_P (valtype)
9364 || TREE_CODE (valtype) == COMPLEX_TYPE
9365 || TREE_CODE (valtype) == VECTOR_TYPE)
58a72cce 9366 {
c4d24f01 9367 HOST_WIDE_INT valsize = int_size_in_bytes (valtype);
9368
9369 /* Handle aggregates that fit exactly in a word or double word. */
9370 if ((valsize & (UNITS_PER_WORD - 1)) == 0)
9371 return gen_rtx_REG (TYPE_MODE (valtype), 28);
9372
b105ef41 9373 if (TARGET_64BIT)
9374 {
9375 /* Aggregates with a size less than or equal to 128 bits are
9376 returned in GR 28(-29). They are left justified. The pad
9377 bits are undefined. Larger aggregates are returned in
9378 memory. */
9379 rtx loc[2];
9380 int i, offset = 0;
c4d24f01 9381 int ub = valsize <= UNITS_PER_WORD ? 1 : 2;
b105ef41 9382
9383 for (i = 0; i < ub; i++)
9384 {
9385 loc[i] = gen_rtx_EXPR_LIST (VOIDmode,
9386 gen_rtx_REG (DImode, 28 + i),
9387 GEN_INT (offset));
9388 offset += 8;
9389 }
58a72cce 9390
b105ef41 9391 return gen_rtx_PARALLEL (BLKmode, gen_rtvec_v (ub, loc));
9392 }
c4d24f01 9393 else if (valsize > UNITS_PER_WORD)
58a72cce 9394 {
b105ef41 9395 /* Aggregates 5 to 8 bytes in size are returned in general
9396 registers r28-r29 in the same manner as other non
9397 floating-point objects. The data is right-justified and
9398 zero-extended to 64 bits. This is opposite to the normal
9399 justification used on big endian targets and requires
9400 special treatment. */
9401 rtx loc = gen_rtx_EXPR_LIST (VOIDmode,
9402 gen_rtx_REG (DImode, 28), const0_rtx);
9403 return gen_rtx_PARALLEL (BLKmode, gen_rtvec (1, loc));
58a72cce 9404 }
58a72cce 9405 }
9406
9407 if ((INTEGRAL_TYPE_P (valtype)
eb46b0b6 9408 && GET_MODE_BITSIZE (TYPE_MODE (valtype)) < BITS_PER_WORD)
58a72cce 9409 || POINTER_TYPE_P (valtype))
9410 valmode = word_mode;
9411 else
9412 valmode = TYPE_MODE (valtype);
9413
9414 if (TREE_CODE (valtype) == REAL_TYPE
b105ef41 9415 && !AGGREGATE_TYPE_P (valtype)
58a72cce 9416 && TYPE_MODE (valtype) != TFmode
9417 && !TARGET_SOFT_FLOAT)
9418 return gen_rtx_REG (valmode, 32);
9419
9420 return gen_rtx_REG (valmode, 28);
9421}
9422
93d3ee56 9423/* Implement the TARGET_LIBCALL_VALUE hook. */
9424
9425static rtx
3754d046 9426pa_libcall_value (machine_mode mode,
93d3ee56 9427 const_rtx fun ATTRIBUTE_UNUSED)
9428{
9429 if (! TARGET_SOFT_FLOAT
9430 && (mode == SFmode || mode == DFmode))
9431 return gen_rtx_REG (mode, 32);
9432 else
9433 return gen_rtx_REG (mode, 28);
9434}
9435
9436/* Implement the TARGET_FUNCTION_VALUE_REGNO_P hook. */
9437
9438static bool
9439pa_function_value_regno_p (const unsigned int regno)
9440{
9441 if (regno == 28
9442 || (! TARGET_SOFT_FLOAT && regno == 32))
9443 return true;
9444
9445 return false;
9446}
9447
8b4bd662 9448/* Update the data in CUM to advance over an argument
9449 of mode MODE and data type TYPE.
9450 (TYPE is null for libcalls where that information may not be available.) */
9451
9452static void
3754d046 9453pa_function_arg_advance (cumulative_args_t cum_v, machine_mode mode,
8b4bd662 9454 const_tree type, bool named ATTRIBUTE_UNUSED)
9455{
39cba157 9456 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
b692070f 9457 int arg_size = pa_function_arg_size (mode, type);
8b4bd662 9458
9459 cum->nargs_prototype--;
9460 cum->words += (arg_size
9461 + ((cum->words & 01)
9462 && type != NULL_TREE
9463 && arg_size > 1));
9464}
9465
5e3c5739 9466/* Return the location of a parameter that is passed in a register or NULL
9467 if the parameter has any component that is passed in memory.
9468
9469 This is new code and will be pushed to into the net sources after
9840d99d 9470 further testing.
5e3c5739 9471
9472 ??? We might want to restructure this so that it looks more like other
9473 ports. */
8b4bd662 9474static rtx
3754d046 9475pa_function_arg (cumulative_args_t cum_v, machine_mode mode,
8b4bd662 9476 const_tree type, bool named ATTRIBUTE_UNUSED)
5e3c5739 9477{
39cba157 9478 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
5e3c5739 9479 int max_arg_words = (TARGET_64BIT ? 8 : 4);
2a075f91 9480 int alignment = 0;
ac965869 9481 int arg_size;
5e3c5739 9482 int fpr_reg_base;
9483 int gpr_reg_base;
9484 rtx retval;
9485
ac965869 9486 if (mode == VOIDmode)
9487 return NULL_RTX;
9488
b692070f 9489 arg_size = pa_function_arg_size (mode, type);
ac965869 9490
9491 /* If this arg would be passed partially or totally on the stack, then
f054eb3c 9492 this routine should return zero. pa_arg_partial_bytes will
ac965869 9493 handle arguments which are split between regs and stack slots if
9494 the ABI mandates split arguments. */
4779159e 9495 if (!TARGET_64BIT)
5e3c5739 9496 {
ac965869 9497 /* The 32-bit ABI does not split arguments. */
9498 if (cum->words + arg_size > max_arg_words)
5e3c5739 9499 return NULL_RTX;
9500 }
9501 else
9502 {
2a075f91 9503 if (arg_size > 1)
9504 alignment = cum->words & 1;
ac965869 9505 if (cum->words + alignment >= max_arg_words)
5e3c5739 9506 return NULL_RTX;
9507 }
9508
9509 /* The 32bit ABIs and the 64bit ABIs are rather different,
9510 particularly in their handling of FP registers. We might
9511 be able to cleverly share code between them, but I'm not
9aadea62 9512 going to bother in the hope that splitting them up results
2a075f91 9513 in code that is more easily understood. */
5e3c5739 9514
5e3c5739 9515 if (TARGET_64BIT)
9516 {
9517 /* Advance the base registers to their current locations.
9518
9519 Remember, gprs grow towards smaller register numbers while
2a075f91 9520 fprs grow to higher register numbers. Also remember that
9521 although FP regs are 32-bit addressable, we pretend that
9522 the registers are 64-bits wide. */
5e3c5739 9523 gpr_reg_base = 26 - cum->words;
9524 fpr_reg_base = 32 + cum->words;
9840d99d 9525
ac965869 9526 /* Arguments wider than one word and small aggregates need special
9527 treatment. */
9528 if (arg_size > 1
9529 || mode == BLKmode
4779159e 9530 || (type && (AGGREGATE_TYPE_P (type)
9531 || TREE_CODE (type) == COMPLEX_TYPE
9532 || TREE_CODE (type) == VECTOR_TYPE)))
5e3c5739 9533 {
2a075f91 9534 /* Double-extended precision (80-bit), quad-precision (128-bit)
9535 and aggregates including complex numbers are aligned on
9536 128-bit boundaries. The first eight 64-bit argument slots
9537 are associated one-to-one, with general registers r26
9538 through r19, and also with floating-point registers fr4
9539 through fr11. Arguments larger than one word are always
ac965869 9540 passed in general registers.
9541
9542 Using a PARALLEL with a word mode register results in left
9543 justified data on a big-endian target. */
2a075f91 9544
9545 rtx loc[8];
9546 int i, offset = 0, ub = arg_size;
9547
9548 /* Align the base register. */
9549 gpr_reg_base -= alignment;
9550
9551 ub = MIN (ub, max_arg_words - cum->words - alignment);
9552 for (i = 0; i < ub; i++)
5e3c5739 9553 {
2a075f91 9554 loc[i] = gen_rtx_EXPR_LIST (VOIDmode,
9555 gen_rtx_REG (DImode, gpr_reg_base),
9556 GEN_INT (offset));
9557 gpr_reg_base -= 1;
9558 offset += 8;
5e3c5739 9559 }
2a075f91 9560
e2810de9 9561 return gen_rtx_PARALLEL (mode, gen_rtvec_v (ub, loc));
5e3c5739 9562 }
ac965869 9563 }
5e3c5739 9564 else
9565 {
9566 /* If the argument is larger than a word, then we know precisely
9567 which registers we must use. */
2a075f91 9568 if (arg_size > 1)
5e3c5739 9569 {
9570 if (cum->words)
9571 {
9572 gpr_reg_base = 23;
9573 fpr_reg_base = 38;
9574 }
9575 else
9576 {
9577 gpr_reg_base = 25;
9578 fpr_reg_base = 34;
9579 }
ac965869 9580
9581 /* Structures 5 to 8 bytes in size are passed in the general
9582 registers in the same manner as other non floating-point
9583 objects. The data is right-justified and zero-extended
9f0b40a7 9584 to 64 bits. This is opposite to the normal justification
9585 used on big endian targets and requires special treatment.
4779159e 9586 We now define BLOCK_REG_PADDING to pad these objects.
9587 Aggregates, complex and vector types are passed in the same
9588 manner as structures. */
9589 if (mode == BLKmode
9590 || (type && (AGGREGATE_TYPE_P (type)
9591 || TREE_CODE (type) == COMPLEX_TYPE
9592 || TREE_CODE (type) == VECTOR_TYPE)))
ac965869 9593 {
58a72cce 9594 rtx loc = gen_rtx_EXPR_LIST (VOIDmode,
9595 gen_rtx_REG (DImode, gpr_reg_base),
9596 const0_rtx);
b105ef41 9597 return gen_rtx_PARALLEL (BLKmode, gen_rtvec (1, loc));
ac965869 9598 }
5e3c5739 9599 }
9600 else
9601 {
9602 /* We have a single word (32 bits). A simple computation
9603 will get us the register #s we need. */
9604 gpr_reg_base = 26 - cum->words;
9605 fpr_reg_base = 32 + 2 * cum->words;
9606 }
9607 }
9608
9503b0f7 9609 /* Determine if the argument needs to be passed in both general and
5e3c5739 9610 floating point registers. */
9503b0f7 9611 if (((TARGET_PORTABLE_RUNTIME || TARGET_64BIT || TARGET_ELF32)
9612 /* If we are doing soft-float with portable runtime, then there
9613 is no need to worry about FP regs. */
f336e0bc 9614 && !TARGET_SOFT_FLOAT
4779159e 9615 /* The parameter must be some kind of scalar float, else we just
9503b0f7 9616 pass it in integer registers. */
4779159e 9617 && GET_MODE_CLASS (mode) == MODE_FLOAT
9503b0f7 9618 /* The target function must not have a prototype. */
9619 && cum->nargs_prototype <= 0
9620 /* libcalls do not need to pass items in both FP and general
9621 registers. */
9622 && type != NULL_TREE
f336e0bc 9623 /* All this hair applies to "outgoing" args only. This includes
9624 sibcall arguments setup with FUNCTION_INCOMING_ARG. */
9625 && !cum->incoming)
9503b0f7 9626 /* Also pass outgoing floating arguments in both registers in indirect
9627 calls with the 32 bit ABI and the HP assembler since there is no
9628 way to the specify argument locations in static functions. */
f336e0bc 9629 || (!TARGET_64BIT
9630 && !TARGET_GAS
9631 && !cum->incoming
9503b0f7 9632 && cum->indirect
4779159e 9633 && GET_MODE_CLASS (mode) == MODE_FLOAT))
5e3c5739 9634 {
9635 retval
9636 = gen_rtx_PARALLEL
9637 (mode,
9638 gen_rtvec (2,
9639 gen_rtx_EXPR_LIST (VOIDmode,
9640 gen_rtx_REG (mode, fpr_reg_base),
9641 const0_rtx),
9642 gen_rtx_EXPR_LIST (VOIDmode,
9643 gen_rtx_REG (mode, gpr_reg_base),
9644 const0_rtx)));
9645 }
9646 else
9647 {
9648 /* See if we should pass this parameter in a general register. */
9649 if (TARGET_SOFT_FLOAT
9650 /* Indirect calls in the normal 32bit ABI require all arguments
9651 to be passed in general registers. */
9652 || (!TARGET_PORTABLE_RUNTIME
9653 && !TARGET_64BIT
a052da6f 9654 && !TARGET_ELF32
5e3c5739 9655 && cum->indirect)
4779159e 9656 /* If the parameter is not a scalar floating-point parameter,
9657 then it belongs in GPRs. */
9658 || GET_MODE_CLASS (mode) != MODE_FLOAT
b105ef41 9659 /* Structure with single SFmode field belongs in GPR. */
9660 || (type && AGGREGATE_TYPE_P (type)))
5e3c5739 9661 retval = gen_rtx_REG (mode, gpr_reg_base);
9662 else
9663 retval = gen_rtx_REG (mode, fpr_reg_base);
9664 }
9665 return retval;
9666}
9667
bd99ba64 9668/* Arguments larger than one word are double word aligned. */
9669
9670static unsigned int
3754d046 9671pa_function_arg_boundary (machine_mode mode, const_tree type)
bd99ba64 9672{
bd99ba64 9673 bool singleword = (type
57a9c540 9674 ? (integer_zerop (TYPE_SIZE (type))
9675 || !TREE_CONSTANT (TYPE_SIZE (type))
bd99ba64 9676 || int_size_in_bytes (type) <= UNITS_PER_WORD)
23e85af8 9677 : GET_MODE_SIZE (mode) <= UNITS_PER_WORD);
bd99ba64 9678
9679 return singleword ? PARM_BOUNDARY : MAX_PARM_BOUNDARY;
9680}
5e3c5739 9681
9682/* If this arg would be passed totally in registers or totally on the stack,
f054eb3c 9683 then this routine should return zero. */
9684
9685static int
3754d046 9686pa_arg_partial_bytes (cumulative_args_t cum_v, machine_mode mode,
f054eb3c 9687 tree type, bool named ATTRIBUTE_UNUSED)
5e3c5739 9688{
39cba157 9689 CUMULATIVE_ARGS *cum = get_cumulative_args (cum_v);
b7d86581 9690 unsigned int max_arg_words = 8;
9691 unsigned int offset = 0;
5e3c5739 9692
f054eb3c 9693 if (!TARGET_64BIT)
9694 return 0;
9695
b692070f 9696 if (pa_function_arg_size (mode, type) > 1 && (cum->words & 1))
5e3c5739 9697 offset = 1;
9698
b692070f 9699 if (cum->words + offset + pa_function_arg_size (mode, type) <= max_arg_words)
6dc3b0d9 9700 /* Arg fits fully into registers. */
5e3c5739 9701 return 0;
9840d99d 9702 else if (cum->words + offset >= max_arg_words)
6dc3b0d9 9703 /* Arg fully on the stack. */
5e3c5739 9704 return 0;
9705 else
6dc3b0d9 9706 /* Arg is split. */
f054eb3c 9707 return (max_arg_words - cum->words - offset) * UNITS_PER_WORD;
5e3c5739 9708}
9709
9710
2f14b1f9 9711/* A get_unnamed_section callback for switching to the text section.
916c9cef 9712
9713 This function is only used with SOM. Because we don't support
9714 named subspaces, we can only create a new subspace or switch back
99c11254 9715 to the default text subspace. */
99c11254 9716
2f14b1f9 9717static void
9718som_output_text_section_asm_op (const void *data ATTRIBUTE_UNUSED)
9719{
9720 gcc_assert (TARGET_SOM);
99c11254 9721 if (TARGET_GAS)
916c9cef 9722 {
9f4a0384 9723 if (cfun && cfun->machine && !cfun->machine->in_nsubspa)
916c9cef 9724 {
9725 /* We only want to emit a .nsubspa directive once at the
9726 start of the function. */
9727 cfun->machine->in_nsubspa = 1;
9728
9729 /* Create a new subspace for the text. This provides
9730 better stub placement and one-only functions. */
9731 if (cfun->decl
9732 && DECL_ONE_ONLY (cfun->decl)
9733 && !DECL_WEAK (cfun->decl))
78962d38 9734 {
9735 output_section_asm_op ("\t.SPACE $TEXT$\n"
9736 "\t.NSUBSPA $CODE$,QUAD=0,ALIGN=8,"
9737 "ACCESS=44,SORT=24,COMDAT");
9738 return;
9739 }
916c9cef 9740 }
9741 else
9742 {
9743 /* There isn't a current function or the body of the current
9744 function has been completed. So, we are changing to the
78962d38 9745 text section to output debugging information. Thus, we
9746 need to forget that we are in the text section so that
9747 varasm.c will call us when text_section is selected again. */
9f4a0384 9748 gcc_assert (!cfun || !cfun->machine
9749 || cfun->machine->in_nsubspa == 2);
2f14b1f9 9750 in_section = NULL;
916c9cef 9751 }
78962d38 9752 output_section_asm_op ("\t.SPACE $TEXT$\n\t.NSUBSPA $CODE$");
9753 return;
916c9cef 9754 }
2f14b1f9 9755 output_section_asm_op ("\t.SPACE $TEXT$\n\t.SUBSPA $CODE$");
9756}
9757
78962d38 9758/* A get_unnamed_section callback for switching to comdat data
9759 sections. This function is only used with SOM. */
9760
9761static void
9762som_output_comdat_data_section_asm_op (const void *data)
9763{
9764 in_section = NULL;
9765 output_section_asm_op (data);
9766}
9767
ff2c6d63 9768/* Implement TARGET_ASM_INIT_SECTIONS. */
916c9cef 9769
2f14b1f9 9770static void
9771pa_som_asm_init_sections (void)
9772{
9773 text_section
9774 = get_unnamed_section (0, som_output_text_section_asm_op, NULL);
9775
9776 /* SOM puts readonly data in the default $LIT$ subspace when PIC code
9777 is not being generated. */
9778 som_readonly_data_section
9779 = get_unnamed_section (0, output_section_asm_op,
9780 "\t.SPACE $TEXT$\n\t.SUBSPA $LIT$");
9781
9782 /* When secondary definitions are not supported, SOM makes readonly
9783 data one-only by creating a new $LIT$ subspace in $TEXT$ with
9784 the comdat flag. */
9785 som_one_only_readonly_data_section
78962d38 9786 = get_unnamed_section (0, som_output_comdat_data_section_asm_op,
2f14b1f9 9787 "\t.SPACE $TEXT$\n"
9788 "\t.NSUBSPA $LIT$,QUAD=0,ALIGN=8,"
9789 "ACCESS=0x2c,SORT=16,COMDAT");
9790
9791
9792 /* When secondary definitions are not supported, SOM makes data one-only
9793 by creating a new $DATA$ subspace in $PRIVATE$ with the comdat flag. */
9794 som_one_only_data_section
78962d38 9795 = get_unnamed_section (SECTION_WRITE,
9796 som_output_comdat_data_section_asm_op,
2f14b1f9 9797 "\t.SPACE $PRIVATE$\n"
9798 "\t.NSUBSPA $DATA$,QUAD=1,ALIGN=8,"
9799 "ACCESS=31,SORT=24,COMDAT");
9800
8151bf30 9801 if (flag_tm)
9802 som_tm_clone_table_section
9803 = get_unnamed_section (0, output_section_asm_op,
9804 "\t.SPACE $PRIVATE$\n\t.SUBSPA $TM_CLONE_TABLE$");
9805
2f14b1f9 9806 /* FIXME: HPUX ld generates incorrect GOT entries for "T" fixups
9807 which reference data within the $TEXT$ space (for example constant
9808 strings in the $LIT$ subspace).
9809
9810 The assemblers (GAS and HP as) both have problems with handling
9811 the difference of two symbols which is the other correct way to
9812 reference constant data during PIC code generation.
9813
9814 So, there's no way to reference constant data which is in the
9815 $TEXT$ space during PIC generation. Instead place all constant
9816 data into the $PRIVATE$ subspace (this reduces sharing, but it
9817 works correctly). */
9818 readonly_data_section = flag_pic ? data_section : som_readonly_data_section;
9819
9820 /* We must not have a reference to an external symbol defined in a
9821 shared library in a readonly section, else the SOM linker will
9822 complain.
9823
9824 So, we force exception information into the data section. */
9825 exception_section = data_section;
916c9cef 9826}
9827
8151bf30 9828/* Implement TARGET_ASM_TM_CLONE_TABLE_SECTION. */
9829
9830static section *
9831pa_som_tm_clone_table_section (void)
9832{
9833 return som_tm_clone_table_section;
9834}
9835
52470889 9836/* On hpux10, the linker will give an error if we have a reference
9837 in the read-only data section to a symbol defined in a shared
9838 library. Therefore, expressions that might require a reloc can
9839 not be placed in the read-only data section. */
9840
2f14b1f9 9841static section *
b572d1a5 9842pa_select_section (tree exp, int reloc,
9843 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED)
52470889 9844{
9845 if (TREE_CODE (exp) == VAR_DECL
9846 && TREE_READONLY (exp)
9847 && !TREE_THIS_VOLATILE (exp)
9848 && DECL_INITIAL (exp)
9849 && (DECL_INITIAL (exp) == error_mark_node
9850 || TREE_CONSTANT (DECL_INITIAL (exp)))
9851 && !reloc)
916c9cef 9852 {
9853 if (TARGET_SOM
9854 && DECL_ONE_ONLY (exp)
9855 && !DECL_WEAK (exp))
2f14b1f9 9856 return som_one_only_readonly_data_section;
916c9cef 9857 else
2f14b1f9 9858 return readonly_data_section;
916c9cef 9859 }
ce45a448 9860 else if (CONSTANT_CLASS_P (exp) && !reloc)
2f14b1f9 9861 return readonly_data_section;
916c9cef 9862 else if (TARGET_SOM
9863 && TREE_CODE (exp) == VAR_DECL
9864 && DECL_ONE_ONLY (exp)
2455c36b 9865 && !DECL_WEAK (exp))
2f14b1f9 9866 return som_one_only_data_section;
52470889 9867 else
2f14b1f9 9868 return data_section;
52470889 9869}
1f3233d1 9870
0e485231 9871/* Implement pa_reloc_rw_mask. */
9872
9873static int
9874pa_reloc_rw_mask (void)
9875{
9876 /* We force (const (plus (symbol) (const_int))) to memory when the
9877 const_int doesn't fit in a 14-bit integer. The SOM linker can't
9878 handle this construct in read-only memory and we want to avoid
9879 this for ELF. So, we always force an RTX needing relocation to
9880 the data section. */
9881 return 3;
9882}
9883
67c1e638 9884static void
5c1d8983 9885pa_globalize_label (FILE *stream, const char *name)
67c1e638 9886{
9887 /* We only handle DATA objects here, functions are globalized in
9888 ASM_DECLARE_FUNCTION_NAME. */
9889 if (! FUNCTION_NAME_P (name))
9890 {
9891 fputs ("\t.EXPORT ", stream);
9892 assemble_name (stream, name);
9893 fputs (",DATA\n", stream);
9894 }
9895}
b8debbe8 9896
6644435d 9897/* Worker function for TARGET_STRUCT_VALUE_RTX. */
9898
b8debbe8 9899static rtx
9900pa_struct_value_rtx (tree fntype ATTRIBUTE_UNUSED,
9901 int incoming ATTRIBUTE_UNUSED)
9902{
9903 return gen_rtx_REG (Pmode, PA_STRUCT_VALUE_REGNUM);
9904}
9905
6644435d 9906/* Worker function for TARGET_RETURN_IN_MEMORY. */
9907
b8debbe8 9908bool
fb80456a 9909pa_return_in_memory (const_tree type, const_tree fntype ATTRIBUTE_UNUSED)
b8debbe8 9910{
9911 /* SOM ABI says that objects larger than 64 bits are returned in memory.
9912 PA64 ABI says that objects larger than 128 bits are returned in memory.
9913 Note, int_size_in_bytes can return -1 if the size of the object is
9914 variable or larger than the maximum value that can be expressed as
9915 a HOST_WIDE_INT. It can also return zero for an empty type. The
9916 simplest way to handle variable and empty types is to pass them in
9917 memory. This avoids problems in defining the boundaries of argument
9918 slots, allocating registers, etc. */
9919 return (int_size_in_bytes (type) > (TARGET_64BIT ? 16 : 8)
9920 || int_size_in_bytes (type) <= 0);
9921}
9922
5f43b4f6 9923/* Structure to hold declaration and name of external symbols that are
9924 emitted by GCC. We generate a vector of these symbols and output them
9925 at the end of the file if and only if SYMBOL_REF_REFERENCED_P is true.
9926 This avoids putting out names that are never really used. */
9927
fb1e4f4a 9928typedef struct GTY(()) extern_symbol
5f43b4f6 9929{
9930 tree decl;
9931 const char *name;
046bfc77 9932} extern_symbol;
5f43b4f6 9933
9934/* Define gc'd vector type for extern_symbol. */
5f43b4f6 9935
9936/* Vector of extern_symbol pointers. */
f1f41a6c 9937static GTY(()) vec<extern_symbol, va_gc> *extern_symbols;
5f43b4f6 9938
9939#ifdef ASM_OUTPUT_EXTERNAL_REAL
9940/* Mark DECL (name NAME) as an external reference (assembler output
9941 file FILE). This saves the names to output at the end of the file
9942 if actually referenced. */
9943
9944void
9945pa_hpux_asm_output_external (FILE *file, tree decl, const char *name)
9946{
5f43b4f6 9947 gcc_assert (file == asm_out_file);
e82e4eb5 9948 extern_symbol p = {decl, name};
f1f41a6c 9949 vec_safe_push (extern_symbols, p);
5f43b4f6 9950}
cb442ed3 9951#endif
5f43b4f6 9952
9953/* Output text required at the end of an assembler file.
9954 This includes deferred plabels and .import directives for
9955 all external symbols that were actually referenced. */
9956
9957static void
cb442ed3 9958pa_file_end (void)
5f43b4f6 9959{
cb442ed3 9960#ifdef ASM_OUTPUT_EXTERNAL_REAL
5f43b4f6 9961 unsigned int i;
046bfc77 9962 extern_symbol *p;
5f43b4f6 9963
bb1bc2ca 9964 if (!NO_DEFERRED_PROFILE_COUNTERS)
9965 output_deferred_profile_counters ();
cb442ed3 9966#endif
bb1bc2ca 9967
5f43b4f6 9968 output_deferred_plabels ();
9969
cb442ed3 9970#ifdef ASM_OUTPUT_EXTERNAL_REAL
f1f41a6c 9971 for (i = 0; vec_safe_iterate (extern_symbols, i, &p); i++)
5f43b4f6 9972 {
9973 tree decl = p->decl;
9974
9975 if (!TREE_ASM_WRITTEN (decl)
9976 && SYMBOL_REF_REFERENCED_P (XEXP (DECL_RTL (decl), 0)))
9977 ASM_OUTPUT_EXTERNAL_REAL (asm_out_file, decl, p->name);
9978 }
9979
f1f41a6c 9980 vec_free (extern_symbols);
5f43b4f6 9981#endif
9982
cb442ed3 9983 if (NEED_INDICATE_EXEC_STACK)
9984 file_end_indicate_exec_stack ();
9985}
9986
b56a9dbc 9987/* Implement TARGET_CAN_CHANGE_MODE_CLASS. */
7050ff73 9988
b56a9dbc 9989static bool
9990pa_can_change_mode_class (machine_mode from, machine_mode to,
9991 reg_class_t rclass)
7050ff73 9992{
9993 if (from == to)
b56a9dbc 9994 return true;
7050ff73 9995
ce592229 9996 if (GET_MODE_SIZE (from) == GET_MODE_SIZE (to))
b56a9dbc 9997 return true;
ce592229 9998
9999 /* Reject changes to/from modes with zero size. */
10000 if (!GET_MODE_SIZE (from) || !GET_MODE_SIZE (to))
b56a9dbc 10001 return false;
ce592229 10002
7050ff73 10003 /* Reject changes to/from complex and vector modes. */
10004 if (COMPLEX_MODE_P (from) || VECTOR_MODE_P (from)
10005 || COMPLEX_MODE_P (to) || VECTOR_MODE_P (to))
b56a9dbc 10006 return false;
7050ff73 10007
ce592229 10008 /* There is no way to load QImode or HImode values directly from memory
10009 to a FP register. SImode loads to the FP registers are not zero
10010 extended. On the 64-bit target, this conflicts with the definition
10011 of LOAD_EXTEND_OP. Thus, we can't allow changing between modes with
10012 different sizes in the floating-point registers. */
8deb3959 10013 if (MAYBE_FP_REG_CLASS_P (rclass))
b56a9dbc 10014 return false;
7050ff73 10015
b395382f 10016 /* TARGET_HARD_REGNO_MODE_OK places modes with sizes larger than a word
7050ff73 10017 in specific sets of registers. Thus, we cannot allow changing
10018 to a larger mode when it's larger than a word. */
10019 if (GET_MODE_SIZE (to) > UNITS_PER_WORD
10020 && GET_MODE_SIZE (to) > GET_MODE_SIZE (from))
b56a9dbc 10021 return false;
7050ff73 10022
b56a9dbc 10023 return true;
7050ff73 10024}
10025
5f6dcf1a 10026/* Implement TARGET_MODES_TIEABLE_P.
7050ff73 10027
10028 We should return FALSE for QImode and HImode because these modes
10029 are not ok in the floating-point registers. However, this prevents
10030 tieing these modes to SImode and DImode in the general registers.
b395382f 10031 So, this isn't a good idea. We rely on TARGET_HARD_REGNO_MODE_OK and
b56a9dbc 10032 TARGET_CAN_CHANGE_MODE_CLASS to prevent these modes from being used
7050ff73 10033 in the floating-point registers. */
10034
5f6dcf1a 10035static bool
3754d046 10036pa_modes_tieable_p (machine_mode mode1, machine_mode mode2)
7050ff73 10037{
10038 /* Don't tie modes in different classes. */
10039 if (GET_MODE_CLASS (mode1) != GET_MODE_CLASS (mode2))
10040 return false;
10041
10042 return true;
10043}
10044
623a97bc 10045\f
10046/* Length in units of the trampoline instruction code. */
10047
10048#define TRAMPOLINE_CODE_SIZE (TARGET_64BIT ? 24 : (TARGET_PA_20 ? 32 : 40))
10049
10050
10051/* Output assembler code for a block containing the constant parts
10052 of a trampoline, leaving space for the variable parts.\
10053
10054 The trampoline sets the static chain pointer to STATIC_CHAIN_REGNUM
10055 and then branches to the specified routine.
10056
10057 This code template is copied from text segment to stack location
10058 and then patched with pa_trampoline_init to contain valid values,
10059 and then entered as a subroutine.
10060
10061 It is best to keep this as small as possible to avoid having to
10062 flush multiple lines in the cache. */
10063
10064static void
10065pa_asm_trampoline_template (FILE *f)
10066{
10067 if (!TARGET_64BIT)
10068 {
10069 fputs ("\tldw 36(%r22),%r21\n", f);
10070 fputs ("\tbb,>=,n %r21,30,.+16\n", f);
10071 if (ASSEMBLER_DIALECT == 0)
10072 fputs ("\tdepi 0,31,2,%r21\n", f);
10073 else
10074 fputs ("\tdepwi 0,31,2,%r21\n", f);
10075 fputs ("\tldw 4(%r21),%r19\n", f);
10076 fputs ("\tldw 0(%r21),%r21\n", f);
10077 if (TARGET_PA_20)
10078 {
10079 fputs ("\tbve (%r21)\n", f);
10080 fputs ("\tldw 40(%r22),%r29\n", f);
10081 fputs ("\t.word 0\n", f);
10082 fputs ("\t.word 0\n", f);
10083 }
10084 else
10085 {
10086 fputs ("\tldsid (%r21),%r1\n", f);
10087 fputs ("\tmtsp %r1,%sr0\n", f);
10088 fputs ("\tbe 0(%sr0,%r21)\n", f);
10089 fputs ("\tldw 40(%r22),%r29\n", f);
10090 }
10091 fputs ("\t.word 0\n", f);
10092 fputs ("\t.word 0\n", f);
10093 fputs ("\t.word 0\n", f);
10094 fputs ("\t.word 0\n", f);
10095 }
10096 else
10097 {
10098 fputs ("\t.dword 0\n", f);
10099 fputs ("\t.dword 0\n", f);
10100 fputs ("\t.dword 0\n", f);
10101 fputs ("\t.dword 0\n", f);
10102 fputs ("\tmfia %r31\n", f);
10103 fputs ("\tldd 24(%r31),%r1\n", f);
10104 fputs ("\tldd 24(%r1),%r27\n", f);
10105 fputs ("\tldd 16(%r1),%r1\n", f);
10106 fputs ("\tbve (%r1)\n", f);
10107 fputs ("\tldd 32(%r31),%r31\n", f);
10108 fputs ("\t.dword 0 ; fptr\n", f);
10109 fputs ("\t.dword 0 ; static link\n", f);
10110 }
10111}
10112
10113/* Emit RTL insns to initialize the variable parts of a trampoline.
10114 FNADDR is an RTX for the address of the function's pure code.
10115 CXT is an RTX for the static chain value for the function.
10116
10117 Move the function address to the trampoline template at offset 36.
10118 Move the static chain value to trampoline template at offset 40.
10119 Move the trampoline address to trampoline template at offset 44.
10120 Move r19 to trampoline template at offset 48. The latter two
10121 words create a plabel for the indirect call to the trampoline.
10122
10123 A similar sequence is used for the 64-bit port but the plabel is
10124 at the beginning of the trampoline.
10125
10126 Finally, the cache entries for the trampoline code are flushed.
10127 This is necessary to ensure that the trampoline instruction sequence
10128 is written to memory prior to any attempts at prefetching the code
10129 sequence. */
10130
10131static void
10132pa_trampoline_init (rtx m_tramp, tree fndecl, rtx chain_value)
10133{
10134 rtx fnaddr = XEXP (DECL_RTL (fndecl), 0);
10135 rtx start_addr = gen_reg_rtx (Pmode);
10136 rtx end_addr = gen_reg_rtx (Pmode);
10137 rtx line_length = gen_reg_rtx (Pmode);
10138 rtx r_tramp, tmp;
10139
10140 emit_block_move (m_tramp, assemble_trampoline_template (),
10141 GEN_INT (TRAMPOLINE_SIZE), BLOCK_OP_NORMAL);
10142 r_tramp = force_reg (Pmode, XEXP (m_tramp, 0));
10143
10144 if (!TARGET_64BIT)
10145 {
10146 tmp = adjust_address (m_tramp, Pmode, 36);
10147 emit_move_insn (tmp, fnaddr);
10148 tmp = adjust_address (m_tramp, Pmode, 40);
10149 emit_move_insn (tmp, chain_value);
10150
10151 /* Create a fat pointer for the trampoline. */
10152 tmp = adjust_address (m_tramp, Pmode, 44);
10153 emit_move_insn (tmp, r_tramp);
10154 tmp = adjust_address (m_tramp, Pmode, 48);
10155 emit_move_insn (tmp, gen_rtx_REG (Pmode, 19));
10156
10157 /* fdc and fic only use registers for the address to flush,
10158 they do not accept integer displacements. We align the
10159 start and end addresses to the beginning of their respective
10160 cache lines to minimize the number of lines flushed. */
10161 emit_insn (gen_andsi3 (start_addr, r_tramp,
10162 GEN_INT (-MIN_CACHELINE_SIZE)));
29c05e22 10163 tmp = force_reg (Pmode, plus_constant (Pmode, r_tramp,
10164 TRAMPOLINE_CODE_SIZE-1));
623a97bc 10165 emit_insn (gen_andsi3 (end_addr, tmp,
10166 GEN_INT (-MIN_CACHELINE_SIZE)));
10167 emit_move_insn (line_length, GEN_INT (MIN_CACHELINE_SIZE));
10168 emit_insn (gen_dcacheflushsi (start_addr, end_addr, line_length));
10169 emit_insn (gen_icacheflushsi (start_addr, end_addr, line_length,
10170 gen_reg_rtx (Pmode),
10171 gen_reg_rtx (Pmode)));
10172 }
10173 else
10174 {
10175 tmp = adjust_address (m_tramp, Pmode, 56);
10176 emit_move_insn (tmp, fnaddr);
10177 tmp = adjust_address (m_tramp, Pmode, 64);
10178 emit_move_insn (tmp, chain_value);
10179
10180 /* Create a fat pointer for the trampoline. */
10181 tmp = adjust_address (m_tramp, Pmode, 16);
29c05e22 10182 emit_move_insn (tmp, force_reg (Pmode, plus_constant (Pmode,
10183 r_tramp, 32)));
623a97bc 10184 tmp = adjust_address (m_tramp, Pmode, 24);
10185 emit_move_insn (tmp, gen_rtx_REG (Pmode, 27));
10186
10187 /* fdc and fic only use registers for the address to flush,
10188 they do not accept integer displacements. We align the
10189 start and end addresses to the beginning of their respective
10190 cache lines to minimize the number of lines flushed. */
29c05e22 10191 tmp = force_reg (Pmode, plus_constant (Pmode, r_tramp, 32));
623a97bc 10192 emit_insn (gen_anddi3 (start_addr, tmp,
10193 GEN_INT (-MIN_CACHELINE_SIZE)));
29c05e22 10194 tmp = force_reg (Pmode, plus_constant (Pmode, tmp,
10195 TRAMPOLINE_CODE_SIZE - 1));
623a97bc 10196 emit_insn (gen_anddi3 (end_addr, tmp,
10197 GEN_INT (-MIN_CACHELINE_SIZE)));
10198 emit_move_insn (line_length, GEN_INT (MIN_CACHELINE_SIZE));
10199 emit_insn (gen_dcacheflushdi (start_addr, end_addr, line_length));
10200 emit_insn (gen_icacheflushdi (start_addr, end_addr, line_length,
10201 gen_reg_rtx (Pmode),
10202 gen_reg_rtx (Pmode)));
10203 }
01dd1649 10204
10205#ifdef HAVE_ENABLE_EXECUTE_STACK
10206  emit_library_call (gen_rtx_SYMBOL_REF (Pmode, "__enable_execute_stack"),
9e9e5c15 10207 LCT_NORMAL, VOIDmode, XEXP (m_tramp, 0), Pmode);
01dd1649 10208#endif
623a97bc 10209}
10210
10211/* Perform any machine-specific adjustment in the address of the trampoline.
10212 ADDR contains the address that was passed to pa_trampoline_init.
10213 Adjust the trampoline address to point to the plabel at offset 44. */
10214
10215static rtx
10216pa_trampoline_adjust_address (rtx addr)
10217{
10218 if (!TARGET_64BIT)
29c05e22 10219 addr = memory_address (Pmode, plus_constant (Pmode, addr, 46));
623a97bc 10220 return addr;
10221}
c731c4f5 10222
10223static rtx
10224pa_delegitimize_address (rtx orig_x)
10225{
10226 rtx x = delegitimize_mem_from_attrs (orig_x);
10227
10228 if (GET_CODE (x) == LO_SUM
10229 && GET_CODE (XEXP (x, 1)) == UNSPEC
10230 && XINT (XEXP (x, 1), 1) == UNSPEC_DLTIND14R)
10231 return gen_const_mem (Pmode, XVECEXP (XEXP (x, 1), 0, 0));
10232 return x;
10233}
623a97bc 10234\f
68bc9ae6 10235static rtx
10236pa_internal_arg_pointer (void)
10237{
10238 /* The argument pointer and the hard frame pointer are the same in
10239 the 32-bit runtime, so we don't need a copy. */
10240 if (TARGET_64BIT)
10241 return copy_to_reg (virtual_incoming_args_rtx);
10242 else
10243 return virtual_incoming_args_rtx;
10244}
10245
10246/* Given FROM and TO register numbers, say whether this elimination is allowed.
10247 Frame pointer elimination is automatically handled. */
10248
10249static bool
10250pa_can_eliminate (const int from, const int to)
10251{
10252 /* The argument cannot be eliminated in the 64-bit runtime. */
10253 if (TARGET_64BIT && from == ARG_POINTER_REGNUM)
10254 return false;
10255
10256 return (from == HARD_FRAME_POINTER_REGNUM && to == STACK_POINTER_REGNUM
10257 ? ! frame_pointer_needed
10258 : true);
10259}
10260
10261/* Define the offset between two registers, FROM to be eliminated and its
10262 replacement TO, at the start of a routine. */
10263HOST_WIDE_INT
10264pa_initial_elimination_offset (int from, int to)
10265{
10266 HOST_WIDE_INT offset;
10267
10268 if ((from == HARD_FRAME_POINTER_REGNUM || from == FRAME_POINTER_REGNUM)
10269 && to == STACK_POINTER_REGNUM)
e202682d 10270 offset = -pa_compute_frame_size (get_frame_size (), 0);
68bc9ae6 10271 else if (from == FRAME_POINTER_REGNUM && to == HARD_FRAME_POINTER_REGNUM)
10272 offset = 0;
10273 else
10274 gcc_unreachable ();
10275
10276 return offset;
10277}
10278
b2d7ede1 10279static void
10280pa_conditional_register_usage (void)
10281{
10282 int i;
10283
10284 if (!TARGET_64BIT && !TARGET_PA_11)
10285 {
10286 for (i = 56; i <= FP_REG_LAST; i++)
10287 fixed_regs[i] = call_used_regs[i] = 1;
10288 for (i = 33; i < 56; i += 2)
10289 fixed_regs[i] = call_used_regs[i] = 1;
10290 }
10291 if (TARGET_DISABLE_FPREGS || TARGET_SOFT_FLOAT)
10292 {
10293 for (i = FP_REG_FIRST; i <= FP_REG_LAST; i++)
10294 fixed_regs[i] = call_used_regs[i] = 1;
10295 }
10296 if (flag_pic)
10297 fixed_regs[PIC_OFFSET_TABLE_REGNUM] = 1;
10298}
10299
0f9c87cc 10300/* Target hook for c_mode_for_suffix. */
10301
3754d046 10302static machine_mode
0f9c87cc 10303pa_c_mode_for_suffix (char suffix)
10304{
10305 if (HPUX_LONG_DOUBLE_LIBRARY)
10306 {
10307 if (suffix == 'q')
10308 return TFmode;
10309 }
10310
10311 return VOIDmode;
10312}
10313
c9b4a514 10314/* Target hook for function_section. */
10315
10316static section *
10317pa_function_section (tree decl, enum node_frequency freq,
10318 bool startup, bool exit)
10319{
10320 /* Put functions in text section if target doesn't have named sections. */
218e3e4e 10321 if (!targetm_common.have_named_sections)
c9b4a514 10322 return text_section;
10323
10324 /* Force nested functions into the same section as the containing
10325 function. */
10326 if (decl
738a6bda 10327 && DECL_SECTION_NAME (decl) == NULL
c9b4a514 10328 && DECL_CONTEXT (decl) != NULL_TREE
10329 && TREE_CODE (DECL_CONTEXT (decl)) == FUNCTION_DECL
738a6bda 10330 && DECL_SECTION_NAME (DECL_CONTEXT (decl)) == NULL)
c9b4a514 10331 return function_section (DECL_CONTEXT (decl));
10332
10333 /* Otherwise, use the default function section. */
10334 return default_function_section (decl, freq, startup, exit);
10335}
10336
ca316360 10337/* Implement TARGET_LEGITIMATE_CONSTANT_P.
10338
10339 In 64-bit mode, we reject CONST_DOUBLES. We also reject CONST_INTS
10340 that need more than three instructions to load prior to reload. This
10341 limit is somewhat arbitrary. It takes three instructions to load a
10342 CONST_INT from memory but two are memory accesses. It may be better
10343 to increase the allowed range for CONST_INTS. We may also be able
10344 to handle CONST_DOUBLES. */
10345
10346static bool
3754d046 10347pa_legitimate_constant_p (machine_mode mode, rtx x)
ca316360 10348{
10349 if (GET_MODE_CLASS (mode) == MODE_FLOAT && x != CONST0_RTX (mode))
10350 return false;
10351
10352 if (!NEW_HP_ASSEMBLER && !TARGET_GAS && GET_CODE (x) == LABEL_REF)
10353 return false;
10354
f784d2ac 10355 /* TLS_MODEL_GLOBAL_DYNAMIC and TLS_MODEL_LOCAL_DYNAMIC are not
dfb5e2bf 10356 legitimate constants. The other variants can't be handled by
10357 the move patterns after reload starts. */
53ea4c57 10358 if (tls_referenced_p (x))
dfb5e2bf 10359 return false;
f784d2ac 10360
ca316360 10361 if (TARGET_64BIT && GET_CODE (x) == CONST_DOUBLE)
10362 return false;
10363
10364 if (TARGET_64BIT
10365 && HOST_BITS_PER_WIDE_INT > 32
10366 && GET_CODE (x) == CONST_INT
10367 && !reload_in_progress
10368 && !reload_completed
10369 && !LEGITIMATE_64BIT_CONST_INT_P (INTVAL (x))
1e5769bd 10370 && !pa_cint_ok_for_move (UINTVAL (x)))
ca316360 10371 return false;
10372
7949e3eb 10373 if (function_label_operand (x, mode))
10374 return false;
10375
ca316360 10376 return true;
10377}
10378
7949e3eb 10379/* Implement TARGET_SECTION_TYPE_FLAGS. */
10380
10381static unsigned int
10382pa_section_type_flags (tree decl, const char *name, int reloc)
10383{
10384 unsigned int flags;
10385
10386 flags = default_section_type_flags (decl, name, reloc);
10387
10388 /* Function labels are placed in the constant pool. This can
10389 cause a section conflict if decls are put in ".data.rel.ro"
10390 or ".data.rel.ro.local" using the __attribute__ construct. */
10391 if (strcmp (name, ".data.rel.ro") == 0
10392 || strcmp (name, ".data.rel.ro.local") == 0)
10393 flags |= SECTION_WRITE | SECTION_RELRO;
10394
10395 return flags;
10396}
10397
e8248b41 10398/* pa_legitimate_address_p recognizes an RTL expression that is a
10399 valid memory address for an instruction. The MODE argument is the
10400 machine mode for the MEM expression that wants to use this address.
10401
10402 On HP PA-RISC, the legitimate address forms are REG+SMALLINT,
10403 REG+REG, and REG+(REG*SCALE). The indexed address forms are only
10404 available with floating point loads and stores, and integer loads.
10405 We get better code by allowing indexed addresses in the initial
10406 RTL generation.
10407
10408 The acceptance of indexed addresses as legitimate implies that we
10409 must provide patterns for doing indexed integer stores, or the move
10410 expanders must force the address of an indexed store to a register.
10411 We have adopted the latter approach.
10412
10413 Another function of pa_legitimate_address_p is to ensure that
10414 the base register is a valid pointer for indexed instructions.
10415 On targets that have non-equivalent space registers, we have to
10416 know at the time of assembler output which register in a REG+REG
10417 pair is the base register. The REG_POINTER flag is sometimes lost
10418 in reload and the following passes, so it can't be relied on during
10419 code generation. Thus, we either have to canonicalize the order
10420 of the registers in REG+REG indexed addresses, or treat REG+REG
10421 addresses separately and provide patterns for both permutations.
10422
10423 The latter approach requires several hundred additional lines of
10424 code in pa.md. The downside to canonicalizing is that a PLUS
10425 in the wrong order can't combine to form to make a scaled indexed
10426 memory operand. As we won't need to canonicalize the operands if
10427 the REG_POINTER lossage can be fixed, it seems better canonicalize.
10428
10429 We initially break out scaled indexed addresses in canonical order
10430 in pa_emit_move_sequence. LEGITIMIZE_ADDRESS also canonicalizes
10431 scaled indexed addresses during RTL generation. However, fold_rtx
10432 has its own opinion on how the operands of a PLUS should be ordered.
10433 If one of the operands is equivalent to a constant, it will make
10434 that operand the second operand. As the base register is likely to
10435 be equivalent to a SYMBOL_REF, we have made it the second operand.
10436
10437 pa_legitimate_address_p accepts REG+REG as legitimate when the
10438 operands are in the order INDEX+BASE on targets with non-equivalent
10439 space registers, and in any order on targets with equivalent space
10440 registers. It accepts both MULT+BASE and BASE+MULT for scaled indexing.
10441
10442 We treat a SYMBOL_REF as legitimate if it is part of the current
10443 function's constant-pool, because such addresses can actually be
10444 output as REG+SMALLINT. */
10445
10446static bool
3754d046 10447pa_legitimate_address_p (machine_mode mode, rtx x, bool strict)
e8248b41 10448{
10449 if ((REG_P (x)
10450 && (strict ? STRICT_REG_OK_FOR_BASE_P (x)
10451 : REG_OK_FOR_BASE_P (x)))
10452 || ((GET_CODE (x) == PRE_DEC || GET_CODE (x) == POST_DEC
10453 || GET_CODE (x) == PRE_INC || GET_CODE (x) == POST_INC)
10454 && REG_P (XEXP (x, 0))
10455 && (strict ? STRICT_REG_OK_FOR_BASE_P (XEXP (x, 0))
10456 : REG_OK_FOR_BASE_P (XEXP (x, 0)))))
10457 return true;
10458
10459 if (GET_CODE (x) == PLUS)
10460 {
10461 rtx base, index;
10462
10463 /* For REG+REG, the base register should be in XEXP (x, 1),
10464 so check it first. */
10465 if (REG_P (XEXP (x, 1))
10466 && (strict ? STRICT_REG_OK_FOR_BASE_P (XEXP (x, 1))
10467 : REG_OK_FOR_BASE_P (XEXP (x, 1))))
10468 base = XEXP (x, 1), index = XEXP (x, 0);
10469 else if (REG_P (XEXP (x, 0))
10470 && (strict ? STRICT_REG_OK_FOR_BASE_P (XEXP (x, 0))
10471 : REG_OK_FOR_BASE_P (XEXP (x, 0))))
10472 base = XEXP (x, 0), index = XEXP (x, 1);
10473 else
10474 return false;
10475
10476 if (GET_CODE (index) == CONST_INT)
10477 {
10478 if (INT_5_BITS (index))
10479 return true;
10480
10481 /* When INT14_OK_STRICT is false, a secondary reload is needed
10482 to adjust the displacement of SImode and DImode floating point
e59aa434 10483 instructions but this may fail when the register also needs
10484 reloading. So, we return false when STRICT is true. We
e8248b41 10485 also reject long displacements for float mode addresses since
10486 the majority of accesses will use floating point instructions
10487 that don't support 14-bit offsets. */
10488 if (!INT14_OK_STRICT
e59aa434 10489 && (strict || !(reload_in_progress || reload_completed))
172258a4 10490 && mode != QImode
10491 && mode != HImode)
10492 return false;
e8248b41 10493
172258a4 10494 return base14_operand (index, mode);
e8248b41 10495 }
10496
10497 if (!TARGET_DISABLE_INDEXING
10498 /* Only accept the "canonical" INDEX+BASE operand order
10499 on targets with non-equivalent space registers. */
10500 && (TARGET_NO_SPACE_REGS
10501 ? REG_P (index)
10502 : (base == XEXP (x, 1) && REG_P (index)
10503 && (reload_completed
10504 || (reload_in_progress && HARD_REGISTER_P (base))
10505 || REG_POINTER (base))
10506 && (reload_completed
10507 || (reload_in_progress && HARD_REGISTER_P (index))
10508 || !REG_POINTER (index))))
10509 && MODE_OK_FOR_UNSCALED_INDEXING_P (mode)
10510 && (strict ? STRICT_REG_OK_FOR_INDEX_P (index)
10511 : REG_OK_FOR_INDEX_P (index))
10512 && borx_reg_operand (base, Pmode)
10513 && borx_reg_operand (index, Pmode))
10514 return true;
10515
10516 if (!TARGET_DISABLE_INDEXING
10517 && GET_CODE (index) == MULT
1f62aff1 10518 /* Only accept base operands with the REG_POINTER flag prior to
10519 reload on targets with non-equivalent space registers. */
10520 && (TARGET_NO_SPACE_REGS
10521 || (base == XEXP (x, 1)
10522 && (reload_completed
10523 || (reload_in_progress && HARD_REGISTER_P (base))
10524 || REG_POINTER (base))))
e8248b41 10525 && REG_P (XEXP (index, 0))
10526 && GET_MODE (XEXP (index, 0)) == Pmode
1f62aff1 10527 && MODE_OK_FOR_SCALED_INDEXING_P (mode)
e8248b41 10528 && (strict ? STRICT_REG_OK_FOR_INDEX_P (XEXP (index, 0))
10529 : REG_OK_FOR_INDEX_P (XEXP (index, 0)))
10530 && GET_CODE (XEXP (index, 1)) == CONST_INT
10531 && INTVAL (XEXP (index, 1))
10532 == (HOST_WIDE_INT) GET_MODE_SIZE (mode)
10533 && borx_reg_operand (base, Pmode))
10534 return true;
10535
10536 return false;
10537 }
10538
10539 if (GET_CODE (x) == LO_SUM)
10540 {
10541 rtx y = XEXP (x, 0);
10542
10543 if (GET_CODE (y) == SUBREG)
10544 y = SUBREG_REG (y);
10545
10546 if (REG_P (y)
10547 && (strict ? STRICT_REG_OK_FOR_BASE_P (y)
10548 : REG_OK_FOR_BASE_P (y)))
10549 {
10550 /* Needed for -fPIC */
10551 if (mode == Pmode
10552 && GET_CODE (XEXP (x, 1)) == UNSPEC)
10553 return true;
10554
10555 if (!INT14_OK_STRICT
e59aa434 10556 && (strict || !(reload_in_progress || reload_completed))
172258a4 10557 && mode != QImode
10558 && mode != HImode)
10559 return false;
e8248b41 10560
10561 if (CONSTANT_P (XEXP (x, 1)))
10562 return true;
10563 }
10564 return false;
10565 }
10566
10567 if (GET_CODE (x) == CONST_INT && INT_5_BITS (x))
10568 return true;
10569
10570 return false;
10571}
10572
10573/* Look for machine dependent ways to make the invalid address AD a
10574 valid address.
10575
10576 For the PA, transform:
10577
10578 memory(X + <large int>)
10579
10580 into:
10581
10582 if (<large int> & mask) >= 16
10583 Y = (<large int> & ~mask) + mask + 1 Round up.
10584 else
10585 Y = (<large int> & ~mask) Round down.
10586 Z = X + Y
10587 memory (Z + (<large int> - Y));
10588
10589 This makes reload inheritance and reload_cse work better since Z
10590 can be reused.
10591
10592 There may be more opportunities to improve code with this hook. */
10593
10594rtx
3754d046 10595pa_legitimize_reload_address (rtx ad, machine_mode mode,
e8248b41 10596 int opnum, int type,
10597 int ind_levels ATTRIBUTE_UNUSED)
10598{
10599 long offset, newoffset, mask;
10600 rtx new_rtx, temp = NULL_RTX;
10601
10602 mask = (GET_MODE_CLASS (mode) == MODE_FLOAT
10603 && !INT14_OK_STRICT ? 0x1f : 0x3fff);
10604
10605 if (optimize && GET_CODE (ad) == PLUS)
10606 temp = simplify_binary_operation (PLUS, Pmode,
10607 XEXP (ad, 0), XEXP (ad, 1));
10608
10609 new_rtx = temp ? temp : ad;
10610
10611 if (optimize
10612 && GET_CODE (new_rtx) == PLUS
10613 && GET_CODE (XEXP (new_rtx, 0)) == REG
10614 && GET_CODE (XEXP (new_rtx, 1)) == CONST_INT)
10615 {
10616 offset = INTVAL (XEXP ((new_rtx), 1));
10617
10618 /* Choose rounding direction. Round up if we are >= halfway. */
10619 if ((offset & mask) >= ((mask + 1) / 2))
10620 newoffset = (offset & ~mask) + mask + 1;
10621 else
10622 newoffset = offset & ~mask;
10623
10624 /* Ensure that long displacements are aligned. */
10625 if (mask == 0x3fff
10626 && (GET_MODE_CLASS (mode) == MODE_FLOAT
10627 || (TARGET_64BIT && (mode) == DImode)))
10628 newoffset &= ~(GET_MODE_SIZE (mode) - 1);
10629
10630 if (newoffset != 0 && VAL_14_BITS_P (newoffset))
10631 {
10632 temp = gen_rtx_PLUS (Pmode, XEXP (new_rtx, 0),
10633 GEN_INT (newoffset));
10634 ad = gen_rtx_PLUS (Pmode, temp, GEN_INT (offset - newoffset));
10635 push_reload (XEXP (ad, 0), 0, &XEXP (ad, 0), 0,
10636 BASE_REG_CLASS, Pmode, VOIDmode, 0, 0,
10637 opnum, (enum reload_type) type);
10638 return ad;
10639 }
10640 }
10641
10642 return NULL_RTX;
10643}
10644
f4d21d1e 10645/* Output address vector. */
10646
10647void
10648pa_output_addr_vec (rtx lab, rtx body)
10649{
10650 int idx, vlen = XVECLEN (body, 0);
10651
6b4c81cc 10652 if (!TARGET_SOM)
10653 fputs ("\t.align 4\n", asm_out_file);
f4d21d1e 10654 targetm.asm_out.internal_label (asm_out_file, "L", CODE_LABEL_NUMBER (lab));
10655 if (TARGET_GAS)
10656 fputs ("\t.begin_brtab\n", asm_out_file);
10657 for (idx = 0; idx < vlen; idx++)
10658 {
10659 ASM_OUTPUT_ADDR_VEC_ELT
10660 (asm_out_file, CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 0, idx), 0)));
10661 }
10662 if (TARGET_GAS)
10663 fputs ("\t.end_brtab\n", asm_out_file);
10664}
10665
10666/* Output address difference vector. */
10667
10668void
10669pa_output_addr_diff_vec (rtx lab, rtx body)
10670{
10671 rtx base = XEXP (XEXP (body, 0), 0);
10672 int idx, vlen = XVECLEN (body, 1);
10673
10674 targetm.asm_out.internal_label (asm_out_file, "L", CODE_LABEL_NUMBER (lab));
10675 if (TARGET_GAS)
10676 fputs ("\t.begin_brtab\n", asm_out_file);
10677 for (idx = 0; idx < vlen; idx++)
10678 {
10679 ASM_OUTPUT_ADDR_DIFF_ELT
10680 (asm_out_file,
10681 body,
10682 CODE_LABEL_NUMBER (XEXP (XVECEXP (body, 1, idx), 0)),
10683 CODE_LABEL_NUMBER (base));
10684 }
10685 if (TARGET_GAS)
10686 fputs ("\t.end_brtab\n", asm_out_file);
10687}
10688
8ef0dc80 10689/* This is a helper function for the other atomic operations. This function
10690 emits a loop that contains SEQ that iterates until a compare-and-swap
10691 operation at the end succeeds. MEM is the memory to be modified. SEQ is
10692 a set of instructions that takes a value from OLD_REG as an input and
10693 produces a value in NEW_REG as an output. Before SEQ, OLD_REG will be
10694 set to the current contents of MEM. After SEQ, a compare-and-swap will
10695 attempt to update MEM with NEW_REG. The function returns true when the
10696 loop was generated successfully. */
10697
10698static bool
10699pa_expand_compare_and_swap_loop (rtx mem, rtx old_reg, rtx new_reg, rtx seq)
10700{
10701 machine_mode mode = GET_MODE (mem);
10702 rtx_code_label *label;
10703 rtx cmp_reg, success, oldval;
10704
10705 /* The loop we want to generate looks like
10706
10707 cmp_reg = mem;
10708 label:
10709 old_reg = cmp_reg;
10710 seq;
10711 (success, cmp_reg) = compare-and-swap(mem, old_reg, new_reg)
10712 if (success)
10713 goto label;
10714
10715 Note that we only do the plain load from memory once. Subsequent
10716 iterations use the value loaded by the compare-and-swap pattern. */
10717
10718 label = gen_label_rtx ();
10719 cmp_reg = gen_reg_rtx (mode);
10720
10721 emit_move_insn (cmp_reg, mem);
10722 emit_label (label);
10723 emit_move_insn (old_reg, cmp_reg);
10724 if (seq)
10725 emit_insn (seq);
10726
10727 success = NULL_RTX;
10728 oldval = cmp_reg;
10729 if (!expand_atomic_compare_and_swap (&success, &oldval, mem, old_reg,
10730 new_reg, false, MEMMODEL_SYNC_SEQ_CST,
10731 MEMMODEL_RELAXED))
10732 return false;
10733
10734 if (oldval != cmp_reg)
10735 emit_move_insn (cmp_reg, oldval);
10736
10737 /* Mark this jump predicted not taken. */
10738 emit_cmp_and_jump_insns (success, const0_rtx, EQ, const0_rtx,
ee7022c3 10739 GET_MODE (success), 1, label,
10740 profile_probability::guessed_never ());
8ef0dc80 10741 return true;
10742}
10743
10744/* This function tries to implement an atomic exchange operation using a
10745 compare_and_swap loop. VAL is written to *MEM. The previous contents of
10746 *MEM are returned, using TARGET if possible. No memory model is required
10747 since a compare_and_swap loop is seq-cst. */
10748
10749rtx
10750pa_maybe_emit_compare_and_swap_exchange_loop (rtx target, rtx mem, rtx val)
10751{
10752 machine_mode mode = GET_MODE (mem);
10753
10754 if (can_compare_and_swap_p (mode, true))
10755 {
10756 if (!target || !register_operand (target, mode))
10757 target = gen_reg_rtx (mode);
10758 if (pa_expand_compare_and_swap_loop (mem, target, val, NULL_RTX))
10759 return target;
10760 }
10761
10762 return NULL_RTX;
10763}
10764
90bc9464 10765/* Implement TARGET_CALLEE_COPIES. The callee is responsible for copying
10766 arguments passed by hidden reference in the 32-bit HP runtime. Users
10767 can override this behavior for better compatibility with openmp at the
10768 risk of library incompatibilities. Arguments are always passed by value
10769 in the 64-bit HP runtime. */
10770
10771static bool
10772pa_callee_copies (cumulative_args_t cum ATTRIBUTE_UNUSED,
10773 machine_mode mode ATTRIBUTE_UNUSED,
10774 const_tree type ATTRIBUTE_UNUSED,
10775 bool named ATTRIBUTE_UNUSED)
10776{
10777 return !TARGET_CALLER_COPIES;
10778}
10779
74f68e49 10780/* Implement TARGET_HARD_REGNO_NREGS. */
10781
10782static unsigned int
10783pa_hard_regno_nregs (unsigned int regno ATTRIBUTE_UNUSED, machine_mode mode)
10784{
10785 return PA_HARD_REGNO_NREGS (regno, mode);
10786}
10787
b395382f 10788/* Implement TARGET_HARD_REGNO_MODE_OK. */
10789
10790static bool
10791pa_hard_regno_mode_ok (unsigned int regno, machine_mode mode)
10792{
10793 return PA_HARD_REGNO_MODE_OK (regno, mode);
10794}
10795
8374586c 10796/* Implement TARGET_STARTING_FRAME_OFFSET.
10797
10798 On the 32-bit ports, we reserve one slot for the previous frame
10799 pointer and one fill slot. The fill slot is for compatibility
10800 with HP compiled programs. On the 64-bit ports, we reserve one
10801 slot for the previous frame pointer. */
10802
10803static HOST_WIDE_INT
10804pa_starting_frame_offset (void)
10805{
10806 return 8;
10807}
10808
b692070f 10809/* Figure out the size in words of the function argument. The size
10810 returned by this function should always be greater than zero because
10811 we pass variable and zero sized objects by reference. */
10812
10813HOST_WIDE_INT
10814pa_function_arg_size (machine_mode mode, const_tree type)
10815{
55711d60 10816 HOST_WIDE_INT size;
10817
10818 size = mode != BLKmode ? GET_MODE_SIZE (mode) : int_size_in_bytes (type);
10819 return CEIL (size, UNITS_PER_WORD);
b692070f 10820}
10821
1f3233d1 10822#include "gt-pa.h"